From d0a591ca95914d5b70072a8c657826e626db5dbf Mon Sep 17 00:00:00 2001 From: Kartheek Palla Date: Mon, 11 Sep 2023 14:53:34 +0530 Subject: [PATCH] Merge Release 5.4.0 into Master (#141) * Issue #KN-617 feat: Video Player angular version update from 12 to 13 * Issue #KN-617 feat: Video Player tslint update to eslint * Issue #KN-617 feat: Video Player tslint update to eslint * Issue #KN-617 feat: Video Player angular version update from 12 to 13 * Issue #KN-617 feat: Video Player readme file updated with different integration steps * Issue #KN-617 feat: Video Player readme file updated with different integration steps * Issue #KN-617 feat: Video Player angular version update from 12 to 13 * Issue #KN-617 feat: Video Player angular version update from 13 to 14 * Issue #KN-617 feat: updated script for single css and js file for web component * Issue #KN-617 feat: Video Player angular version update from 13 to 14 * Issue #KN-617 feat: Minified the css and js files * Issue #KN-617 feat: updated script for single css and js file for web component * Issue #KN-733 feat: visited length issue fixed * Issue KN-733 feat: updated web component * Issue #733 feat: visited length issue fix * Issue #733 feat: added unique visited length * Issue #733 fix: updated visited time spent * Issue #733 fix: updated visited time spent * Issue #KN-710 fix: updated visited time spent * Issue #KN-710 fix: test cases * Issue #KN-710 feat: updated the summary key name * Issue #KN-710 fix: summary event data * Issue #710 fix: config warning fix --------- Co-authored-by: Santosh Mattikoppa Co-authored-by: harishkumar gangula --- .eslintrc.json | 51 + .gitignore | 1 + README.md | 152 +- angular.json | 64 +- build-wc.js | 12 +- package-lock.json | 18256 ++++++++-------- package.json | 46 +- projects/sunbird-video-player/.eslintrc.json | 44 + projects/sunbird-video-player/karma.conf.js | 2 +- projects/sunbird-video-player/ng-package.json | 2 +- .../sunbird-video-player/package-lock.json | 2 +- projects/sunbird-video-player/package.json | 6 +- .../video-player.component.data.ts | 6 +- .../video-player.component.spec.ts | 2 +- .../video-player/video-player.component.ts | 15 +- .../src/lib/playerInterfaces.ts | 2 +- .../src/lib/services/util.service.spec.ts | 4 +- .../src/lib/services/util.service.ts | 4 +- .../lib/services/viewer.service.spec.data.ts | 2 +- .../src/lib/services/viewer.service.spec.ts | 20 +- .../src/lib/services/viewer.service.ts | 69 +- ...unbird-video-player.component.spec.data.ts | 2 +- .../sunbird-video-player.component.spec.ts | 3 +- .../src/lib/sunbird-video-player.component.ts | 13 +- .../lib/sunbird-video-player.service.spec.ts | 12 +- .../src/lib/sunbird-video-player.service.ts | 13 +- projects/sunbird-video-player/src/test.ts | 4 +- .../sunbird-video-player/tsconfig.lib.json | 5 +- projects/sunbird-video-player/tslint.json | 15 - projects/video-player-wc/.eslintrc.json | 45 + .../video-player-wc/src/app/app.module.ts | 31 +- projects/video-player-wc/src/polyfills.ts | 10 - projects/video-player-wc/src/test.ts | 4 +- projects/video-player-wc/tslint.json | 17 - src/polyfills.ts | 10 - src/test.ts | 4 +- tsconfig.json | 4 +- tslint.json | 138 - web-component/styles.css | 15 +- web-component/sunbird-video-player.js | 2088 +- 40 files changed, 11343 insertions(+), 9852 deletions(-) create mode 100644 .eslintrc.json create mode 100644 projects/sunbird-video-player/.eslintrc.json delete mode 100644 projects/sunbird-video-player/tslint.json create mode 100644 projects/video-player-wc/.eslintrc.json delete mode 100644 projects/video-player-wc/tslint.json delete mode 100644 tslint.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 00000000..1e4624e6 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,51 @@ +{ + "root": true, + "ignorePatterns": [ + "projects/**/*" + ], + "overrides": [ + { + "files": [ + "*.ts" + ], + "parserOptions": { + "project": [ + "tsconfig.json", + "e2e/tsconfig.json" + ], + "createDefaultProgram": true + }, + "extends": [ + "plugin:@angular-eslint/recommended", + "plugin:@angular-eslint/template/process-inline-templates" + ], + "rules": { + "@angular-eslint/component-selector": [ + "error", + { + "prefix": "app", + "style": "kebab-case", + "type": "element" + } + ], + "@angular-eslint/directive-selector": [ + "error", + { + "prefix": "app", + "style": "camelCase", + "type": "attribute" + } + ] + } + }, + { + "files": [ + "*.html" + ], + "extends": [ + "plugin:@angular-eslint/template/recommended" + ], + "rules": {} + } + ] +} diff --git a/.gitignore b/.gitignore index 0dc174b2..e4e61ec9 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,7 @@ speed-measure-plugin.json .history/* # misc +/.angular/cache /.sass-cache /connect.lock /coverage diff --git a/README.md b/README.md index e2098f2b..407b60fc 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,105 @@ # Video player library for Sunbird platform! Contains Video player library components powered by angular. These components are designed to be used in sunbird consumption platforms *(mobile app, web portal, offline desktop app)* to drive reusability, maintainability hence reducing the redundant development effort significantly. -# Getting Started -For help getting started with a new Angular app, check out the [Angular CLI](https://angular.io/cli). -If you have an Angular ≥ 9 CLI project, you could simply use our schematics to add sunbird-video-player library to it. +# Getting Started with different integrations steps + The Video player can be integrated as web component in plain javascript projects and as web component in angular apps and also as angular library in angular and mobile applications. + +# Use as web components +Any web application can use this library as a web component. It accepts couple of inputs and triggers some events back to the application. + +Import this library in any web application and use the custom component. + +Follow below-mentioned steps to use it in plain javascript project: + +- Insert [library](https://github.com/project-sunbird/sunbird-video-player/blob/release-4.3.0/web-component/sunbird-video-player.js) as below: + ```javascript + + ``` +- Create a asset folder and copy all the files from [here](https://github.com/project-sunbird/sunbird-video-player/tree/release-4.3.0/web-component/assets), library requires these assets internally to work well. +- Get sample playerConfig from here: [playerConfig](https://github.com/project-sunbird/sunbird-video-player/blob/release-4.3.0/src/app/data.ts) + +- Pass the QuestionListAPI baseUrl for eg. + ```javascript + window.questionListUrl = 'https://staging.sunbirded.org/api/question/v1/list'; + window.questionSetBaseUrl = 'https://staging.sunbirded.org/api/questionset'; + ``` + +- Create a custom html element: `sunbird-video-player` + ```javascript + const videoElement = document.createElement('sunbird-video-player'); + ``` + +- Pass data using `player-config` + ```javascript + videoElement.setAttribute('player-config', JSON.stringify(playerConfig)); + ``` + + **Note:** Attribute should be in **string** type + +- Listen for the output events: **playerEvent** and **telemetryEvent** + + ```javascript + videoElement.addEventListener('playerEvent', (event) => { + console.log("On playerEvent", event); + }); + videoElement.addEventListener('telemetryEvent', (event) => { + console.log("On telemetryEvent", event); + }); + ``` + +- Append this element to existing element + ```javascript + const myPlayer = document.getElementById("my-player"); + myPlayer.appendChild(qumlPlayerElement); + ``` +- Refer demo [example](https://github.com/project-sunbird/sunbird-video-player/blob/release-4.3.0/web-component/index.html) + +# Use as Web component in the Angular app + +- Copy the assets files from web component folder + [assets](https://github.com/project-sunbird/sunbird-video-player/tree/release-5.3.0/web-component/assets) to assets folder + +- Create libs/sunbird-video-player folder inside assets folder, and copy [sunbird-video-player.js](https://github.com/project-sunbird/sunbird-video-player/blob/release-5.3.0/web-component/sunbird-video-player.js) and [styles.css](https://github.com/project-sunbird/sunbird-video-player/blob/release-5.3.0/web-component/styles.css). and Add/import these entries in angular json file inside scripts and styles respectively. + +- Add the reflect-metadata script to index.html file + ```javascript + + ``` + +- Import jquery in package json file(in dependencies) and do npm i + + ```javascript + "jquery": "^3.6.1", + ``` + +- Import jquery in angular.json file inside scripts array + + ```javascript + "node_modules/jquery/dist/jquery.min.js" + ``` + +- Import CUSTOM_ELEMENTS_SCHEMA in app module + + ```javascript + import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; + ``` + +- Import sunbird-video-player in component + ```bash + + ``` + +- Provide input to render VIDEO player + +Use the mock config in your component to send input to VIDEO player +Click to see the mock - [playerConfig](https://github.com/project-sunbird/sunbird-video-player/blob/release-5.3.0/src/app/data.ts) +**Note:** : Send input config as string + +# Use as Angular library in angular app ## Step 1: Installation Just run the following: @@ -227,7 +322,10 @@ var playerConfig = {

-# Mobile app integration steps +# Use as Web component in Mobile app +For existing apps, follow these steps [steps](README.md#use-as-web-component--in-the-angular-app) to begin using. + +# Use as Angular library in Mobile app For existing apps, follow these steps to begin using. ## Step 1: Install the packages @@ -257,50 +355,4 @@ Click to see the input data - [playerConfig](README.md#step-4-send-input-to-rend Click to see the sample code - [sampleCode](https://github.com/Sunbird-Ed/SunbirdEd-mobile-app/blob/release-4.8.0/src/app/player/player.page.html)

-# Use as web components - -Import this library in any web application and use the custom component. - -Follow below-mentioned steps to use it in plain javascript project: - -- Insert [library](https://github.com/project-sunbird/sunbird-video-player/blob/release-4.3.0/web-component/sunbird-video-player.js) as below: - ```javascript - - ``` -- Create a asset folder and copy all the files from [here](https://github.com/project-sunbird/sunbird-video-player/tree/release-4.3.0/web-component/assets), library requires these assets internally to work well. -- Get sample playerConfig from here: [playerConfig](https://github.com/project-sunbird/sunbird-video-player/blob/release-4.3.0/src/app/data.ts) - -- Pass the QuestionListAPI baseUrl for eg. - ```javascript - window.questionListUrl = 'https://staging.sunbirded.org/api/question/v1/list'; - window.questionSetBaseUrl = 'https://staging.sunbirded.org/api/questionset'; - ``` - -- Create a custom html element: `sunbird-video-player` - ```javascript - const videoElement = document.createElement('sunbird-video-player'); - ``` - -- Pass data using `player-config` - ```javascript - videoElement.setAttribute('player-config', JSON.stringify(playerConfig)); - ``` - - **Note:** Attribute should be in **string** type - -- Listen for the output events: **playerEvent** and **telemetryEvent** - ```javascript - videoElement.addEventListener('playerEvent', (event) => { - console.log("On playerEvent", event); - }); - videoElement.addEventListener('telemetryEvent', (event) => { - console.log("On telemetryEvent", event); - }); - ``` -- Append this element to existing element - ```javascript - const myPlayer = document.getElementById("my-player"); - myPlayer.appendChild(qumlPlayerElement); - ``` -- Refer demo [example](https://github.com/project-sunbird/sunbird-video-player/blob/release-4.3.0/web-component/index.html) diff --git a/angular.json b/angular.json index 9ded464d..be27a5fe 100644 --- a/angular.json +++ b/angular.json @@ -125,18 +125,6 @@ "src/assets" ] } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "src/tsconfig.app.json", - "src/tsconfig.spec.json" - ], - "exclude": [ - "**/node_modules/**" - ] - } } } }, @@ -156,15 +144,6 @@ "devServerTarget": "sunbird-video-player-app:serve:production" } } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": "e2e/tsconfig.e2e.json", - "exclude": [ - "**/node_modules/**" - ] - } } } }, @@ -190,14 +169,11 @@ } }, "lint": { - "builder": "@angular-devkit/build-angular:tslint", + "builder": "@angular-eslint/builder:lint", "options": { - "tsConfig": [ - "projects/sunbird-video-player/tsconfig.lib.json", - "projects/sunbird-video-player/tsconfig.spec.json" - ], - "exclude": [ - "**/node_modules/**" + "lintFilePatterns": [ + "projects/sunbird-video-player/**/*.ts", + "projects/sunbird-video-player/**/*.html" ] } } @@ -245,7 +221,7 @@ "dist/sunbird-video-player/lib/assets/videojs-markers.js", "node_modules/videojs-contrib-quality-levels/dist/videojs-contrib-quality-levels.min.js", "node_modules/videojs-http-source-selector/dist/videojs-http-source-selector.min.js", - "dist/sunbird-video-player/lib/assets/videojs-transcript-click.min.js" + "dist/sunbird-video-player/lib/assets/videojs-transcript-click.min.js" ], "vendorChunk": true, "extractLicenses": false, @@ -319,19 +295,6 @@ "scripts": [] } }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [ - "projects/video-player-wc/tsconfig.app.json", - "projects/video-player-wc/tsconfig.spec.json", - "projects/video-player-wc/e2e/tsconfig.json" - ], - "exclude": [ - "**/node_modules/**" - ] - } - }, "e2e": { "builder": "@angular-devkit/build-angular:protractor", "options": { @@ -343,12 +306,23 @@ "devServerTarget": "video-player-wc:serve:production" } } + }, + "lint": { + "builder": "@angular-eslint/builder:lint", + "options": { + "lintFilePatterns": [ + "projects/video-player-wc/**/*.ts", + "projects/video-player-wc/**/*.html" + ] + } } } } }, - "defaultProject": "sunbird-video-player-app", "cli": { - "analytics": "931de5e9-e583-4631-b69f-cd0c4f7c2030" + "analytics": "931de5e9-e583-4631-b69f-cd0c4f7c2030", + "schematicCollections": [ + "@angular-eslint/schematics" + ] } -} \ No newline at end of file +} diff --git a/build-wc.js b/build-wc.js index 134d183d..d199da9f 100644 --- a/build-wc.js +++ b/build-wc.js @@ -4,17 +4,23 @@ const concat = require("concat"); const build = async () => { const files = [ "./dist/video-player-wc/runtime.js", - "./dist/video-player-wc/polyfills-es5.js", "./dist/video-player-wc/polyfills.js", "./dist/video-player-wc/scripts.js", "./dist/video-player-wc/vendor.js", "./dist/video-player-wc/main.js", + "web-component/assets/videojs-markers.js", + "web-component/assets/videojs-transcript-click.min.js", + ]; + const cssFiles = [ + "./dist/video-player-wc/styles.css", + "web-component/assets/videojs.markers.min.css", ]; - await fs.ensureDir("dist/video-player-wc"); + // make signle js file for web component await concat(files, "web-component/sunbird-video-player.js"); await fs.copy("./dist/video-player-wc/assets", "web-component/assets"); - await fs.copy("./dist/video-player-wc/styles.css", "web-component/styles.css") + // make signle css file for web component + await concat(cssFiles, "web-component/styles.css"); console.log("Files concatenated successfully!!!"); }; build(); diff --git a/package-lock.json b/package-lock.json index 3baecea4..5c8af837 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,113 +4,103 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@adobe/css-tools": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.1.0.tgz", + "integrity": "sha512-mMVJ/j/GbZ/De4ZHWbQAQO1J6iVnjtZLc9WEdkUQb8S/Bu2cAF2bETXUgMAdvMG3/ngtKmcNBe+Zms9bg6jnQQ==", + "dev": true + }, "@ampproject/remapping": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-1.0.1.tgz", - "integrity": "sha512-Ta9bMA3EtUHDaZJXqUoT5cn/EecwOp+SXpKJqxDbDuMbLvEMu6YTyDDuvTWeStODfdmXyfMo7LymQyPkN3BicA==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", "dev": true, "requires": { - "@jridgewell/resolve-uri": "1.0.0", - "sourcemap-codec": "1.4.8" + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" } }, "@angular-devkit/architect": { - "version": "0.1202.18", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.18.tgz", - "integrity": "sha512-C4ASKe+xBjl91MJyHDLt3z7ICPF9FU6B0CeJ1phwrlSHK9lmFG99WGxEj/Tc82+vHyPhajqS5XJ38KyVAPBGzA==", + "version": "0.1402.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1402.10.tgz", + "integrity": "sha512-/6YmPrgataj1jD2Uqd1ED+CG4DaZGacoeZd/89hH7hF76Nno8K18DrSOqJAEmDnOWegpSRGVLd0qP09IHmaG5w==", "dev": true, "requires": { - "@angular-devkit/core": "12.2.18", + "@angular-devkit/core": "14.2.10", "rxjs": "6.6.7" } }, "@angular-devkit/build-angular": { - "version": "12.2.18", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-12.2.18.tgz", - "integrity": "sha512-Hf3s7etN7zkHc7lhZZx3Bsm6hfLozuvN3z2aI39RDSlHOA83SoYpltnD9UV4B4d3cxU4PLUzpirb96QeS+E53Q==", - "dev": true, - "requires": { - "@ampproject/remapping": "1.0.1", - "@angular-devkit/architect": "0.1202.18", - "@angular-devkit/build-optimizer": "0.1202.18", - "@angular-devkit/build-webpack": "0.1202.18", - "@angular-devkit/core": "12.2.18", - "@babel/core": "7.14.8", - "@babel/generator": "7.14.8", - "@babel/helper-annotate-as-pure": "7.14.5", - "@babel/plugin-proposal-async-generator-functions": "7.14.7", - "@babel/plugin-transform-async-to-generator": "7.14.5", - "@babel/plugin-transform-runtime": "7.14.5", - "@babel/preset-env": "7.14.8", - "@babel/runtime": "7.14.8", - "@babel/template": "7.14.5", - "@discoveryjs/json-ext": "0.5.3", - "@jsdevtools/coverage-istanbul-loader": "3.0.5", - "@ngtools/webpack": "12.2.18", - "ansi-colors": "4.1.1", - "babel-loader": "8.2.2", + "version": "14.2.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-14.2.10.tgz", + "integrity": "sha512-VCeZAyq4uPCJukKInaSiD4i/GgxgcU4jFlLFQtoYNmaBS4xbPOymL19forRIihiV0dwNEa2L694vRTAPMBxIfw==", + "dev": true, + "requires": { + "@ampproject/remapping": "2.2.0", + "@angular-devkit/architect": "0.1402.10", + "@angular-devkit/build-webpack": "0.1402.10", + "@angular-devkit/core": "14.2.10", + "@babel/core": "7.18.10", + "@babel/generator": "7.18.12", + "@babel/helper-annotate-as-pure": "7.18.6", + "@babel/plugin-proposal-async-generator-functions": "7.18.10", + "@babel/plugin-transform-async-to-generator": "7.18.6", + "@babel/plugin-transform-runtime": "7.18.10", + "@babel/preset-env": "7.18.10", + "@babel/runtime": "7.18.9", + "@babel/template": "7.18.10", + "@discoveryjs/json-ext": "0.5.7", + "@ngtools/webpack": "14.2.10", + "ansi-colors": "4.1.3", + "babel-loader": "8.2.5", + "babel-plugin-istanbul": "6.1.1", "browserslist": "^4.9.1", - "cacache": "15.2.0", - "caniuse-lite": "^1.0.30001032", - "circular-dependency-plugin": "5.2.2", - "copy-webpack-plugin": "9.0.1", - "core-js": "3.16.0", - "critters": "0.0.12", - "css-loader": "6.2.0", - "css-minimizer-webpack-plugin": "3.0.2", - "esbuild": "0.13.8", - "esbuild-wasm": "0.13.8", - "find-cache-dir": "3.3.1", - "glob": "7.1.7", - "https-proxy-agent": "5.0.0", - "inquirer": "8.1.2", + "cacache": "16.1.2", + "copy-webpack-plugin": "11.0.0", + "critters": "0.0.16", + "css-loader": "6.7.1", + "esbuild": "0.15.5", + "esbuild-wasm": "0.15.5", + "glob": "8.0.3", + "https-proxy-agent": "5.0.1", + "inquirer": "8.2.4", + "jsonc-parser": "3.1.0", "karma-source-map-support": "1.4.0", - "less": "4.1.1", - "less-loader": "10.0.1", - "license-webpack-plugin": "2.3.20", - "loader-utils": "2.0.0", - "mini-css-extract-plugin": "2.4.2", - "minimatch": "3.0.4", - "open": "8.2.1", + "less": "4.1.3", + "less-loader": "11.0.0", + "license-webpack-plugin": "4.0.2", + "loader-utils": "3.2.1", + "mini-css-extract-plugin": "2.6.1", + "minimatch": "5.1.0", + "open": "8.4.0", "ora": "5.4.1", "parse5-html-rewriting-stream": "6.0.1", - "piscina": "3.1.0", - "postcss": "8.3.6", - "postcss-import": "14.0.2", - "postcss-loader": "6.1.1", - "postcss-preset-env": "6.7.0", + "piscina": "3.2.0", + "postcss": "8.4.16", + "postcss-import": "15.0.0", + "postcss-loader": "7.0.1", + "postcss-preset-env": "7.8.0", "regenerator-runtime": "0.13.9", - "resolve-url-loader": "4.0.0", + "resolve-url-loader": "5.0.0", "rxjs": "6.6.7", - "sass": "1.36.0", - "sass-loader": "12.1.0", - "semver": "7.3.5", - "source-map-loader": "3.0.0", - "source-map-support": "0.5.19", - "style-loader": "3.2.1", - "stylus": "0.54.8", - "stylus-loader": "6.1.0", + "sass": "1.54.4", + "sass-loader": "13.0.2", + "semver": "7.3.7", + "source-map-loader": "4.0.0", + "source-map-support": "0.5.21", + "stylus": "0.59.0", + "stylus-loader": "7.0.0", "terser": "5.14.2", - "terser-webpack-plugin": "5.1.4", "text-table": "0.2.0", "tree-kill": "1.2.2", - "tslib": "2.3.0", - "webpack": "5.50.0", - "webpack-dev-middleware": "5.0.0", - "webpack-dev-server": "3.11.3", + "tslib": "2.4.0", + "webpack": "5.74.0", + "webpack-dev-middleware": "5.3.3", + "webpack-dev-server": "4.11.0", "webpack-merge": "5.8.0", - "webpack-subresource-integrity": "1.5.2" + "webpack-subresource-integrity": "5.1.0" }, "dependencies": { - "@babel/runtime": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz", - "integrity": "sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, "agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", @@ -120,11 +110,14 @@ "debug": "4" } }, - "core-js": { - "version": "3.16.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.16.0.tgz", - "integrity": "sha512-5+5VxRFmSf97nM8Jr2wzOwLqRo6zphH2aX+7KsAUONObyzakDNq2G/bgbhinxB4PoV9L3aXQYhiDKyIKWd2c8g==", - "dev": true + "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, + "requires": { + "balanced-match": "^1.0.0" + } }, "debug": { "version": "4.3.4", @@ -136,49 +129,52 @@ } }, "esbuild": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.13.8.tgz", - "integrity": "sha512-A4af7G7YZLfG5OnARJRMtlpEsCkq/zHZQXewgPA864l9D6VjjbH1SuFYK/OSV6BtHwDGkdwyRrX0qQFLnMfUcw==", + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.15.5.tgz", + "integrity": "sha512-VSf6S1QVqvxfIsSKb3UKr3VhUCis7wgDbtF4Vd9z84UJr05/Sp2fRKmzC+CSPG/dNAPPJZ0BTBLTT1Fhd6N9Gg==", "dev": true, "optional": true, "requires": { - "esbuild-android-arm64": "0.13.8", - "esbuild-darwin-64": "0.13.8", - "esbuild-darwin-arm64": "0.13.8", - "esbuild-freebsd-64": "0.13.8", - "esbuild-freebsd-arm64": "0.13.8", - "esbuild-linux-32": "0.13.8", - "esbuild-linux-64": "0.13.8", - "esbuild-linux-arm": "0.13.8", - "esbuild-linux-arm64": "0.13.8", - "esbuild-linux-mips64le": "0.13.8", - "esbuild-linux-ppc64le": "0.13.8", - "esbuild-netbsd-64": "0.13.8", - "esbuild-openbsd-64": "0.13.8", - "esbuild-sunos-64": "0.13.8", - "esbuild-windows-32": "0.13.8", - "esbuild-windows-64": "0.13.8", - "esbuild-windows-arm64": "0.13.8" + "@esbuild/linux-loong64": "0.15.5", + "esbuild-android-64": "0.15.5", + "esbuild-android-arm64": "0.15.5", + "esbuild-darwin-64": "0.15.5", + "esbuild-darwin-arm64": "0.15.5", + "esbuild-freebsd-64": "0.15.5", + "esbuild-freebsd-arm64": "0.15.5", + "esbuild-linux-32": "0.15.5", + "esbuild-linux-64": "0.15.5", + "esbuild-linux-arm": "0.15.5", + "esbuild-linux-arm64": "0.15.5", + "esbuild-linux-mips64le": "0.15.5", + "esbuild-linux-ppc64le": "0.15.5", + "esbuild-linux-riscv64": "0.15.5", + "esbuild-linux-s390x": "0.15.5", + "esbuild-netbsd-64": "0.15.5", + "esbuild-openbsd-64": "0.15.5", + "esbuild-sunos-64": "0.15.5", + "esbuild-windows-32": "0.15.5", + "esbuild-windows-64": "0.15.5", + "esbuild-windows-arm64": "0.15.5" } }, "glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", + "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", "dev": true, "requires": { "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" + "minimatch": "^5.0.1", + "once": "^1.3.0" } }, "https-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", - "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, "requires": { "agent-base": "6", @@ -195,12 +191,12 @@ } }, "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", "dev": true, "requires": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" } }, "ms": { @@ -210,30 +206,14 @@ "dev": true }, "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", "dev": true, "requires": { "lru-cache": "^6.0.0" } }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "tslib": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", - "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==", - "dev": true - }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -242,59 +222,33 @@ } } }, - "@angular-devkit/build-optimizer": { - "version": "0.1202.18", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-optimizer/-/build-optimizer-0.1202.18.tgz", - "integrity": "sha512-8ANaqa66IuaSRqJT3zTNUoeRDyLanE56tkNWqgYDPyZUsafEsomh9/fGVIkazymP1hReDLw+RoxSVxUsaRSsTA==", - "dev": true, - "requires": { - "source-map": "0.7.3", - "tslib": "2.3.0", - "typescript": "4.3.5" - }, - "dependencies": { - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "dev": true - }, - "tslib": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", - "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==", - "dev": true - } - } - }, "@angular-devkit/build-webpack": { - "version": "0.1202.18", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1202.18.tgz", - "integrity": "sha512-656TIHb820Sb3ILHqcqoGJOPTsx2aUdeRrK8f7e6mxR4/kvQZQAevxP9C0TY+LUqQQqekzjKFq3+aYWOfzdR4Q==", + "version": "0.1402.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1402.10.tgz", + "integrity": "sha512-h+2MaSY7QSvoJ3R+Hvin21jVCfPGOTLdASIUk4Jmq6J3y5BSku3KSSaV8dWoBOBkFCwQyPQMRjiHoHKLpC1K7g==", "dev": true, "requires": { - "@angular-devkit/architect": "0.1202.18", + "@angular-devkit/architect": "0.1402.10", "rxjs": "6.6.7" } }, "@angular-devkit/core": { - "version": "12.2.18", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.18.tgz", - "integrity": "sha512-GDLHGe9HEY5SRS+NrKr14C8aHsRCiBFkBFSSbeohgLgcgSXzZHFoU84nDWrl3KZNP8oqcUSv5lHu6dLcf2fnww==", + "version": "14.2.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-14.2.10.tgz", + "integrity": "sha512-K4AO7mROTdbhQ7chtyQd6oPwmuL+BPUh+wn6Aq1qrmYJK4UZYFOPp8fi/Ehs8meCEeywtrssOPfrOE4Gsre9dg==", "dev": true, "requires": { - "ajv": "8.6.2", - "ajv-formats": "2.1.0", - "fast-json-stable-stringify": "2.1.0", - "magic-string": "0.25.7", + "ajv": "8.11.0", + "ajv-formats": "2.1.1", + "jsonc-parser": "3.1.0", "rxjs": "6.6.7", - "source-map": "0.7.3" + "source-map": "0.7.4" }, "dependencies": { "ajv": { - "version": "8.6.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.2.tgz", - "integrity": "sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", @@ -310,72 +264,189 @@ "dev": true }, "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true } } }, "@angular-devkit/schematics": { - "version": "12.2.18", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.18.tgz", - "integrity": "sha512-bZ9NS5PgoVfetRC6WeQBHCY5FqPZ9y2TKHUo12sOB2YSL3tgWgh1oXyP8PtX34gasqsLjNULxEQsAQYEsiX/qQ==", + "version": "14.2.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.2.10.tgz", + "integrity": "sha512-MMp31KpJTwKHisXOq+6VOXYApq97hZxFaFmZk396X5aIFTCELUwjcezQDk+u2nEs5iK/COUfnN3plGcfJxYhQA==", "dev": true, "requires": { - "@angular-devkit/core": "12.2.18", + "@angular-devkit/core": "14.2.10", + "jsonc-parser": "3.1.0", + "magic-string": "0.26.2", "ora": "5.4.1", "rxjs": "6.6.7" } }, + "@angular-eslint/builder": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-13.5.0.tgz", + "integrity": "sha512-IYY/HYS4fSddJLs2pAkMkKhHL07driUILPxGnGLblfWuoJBhRspyrVL3uZc3Q4iJXc1RJfaOno9oRw11FGyL6Q==", + "dev": true, + "requires": { + "@nrwl/devkit": "13.1.3" + } + }, + "@angular-eslint/bundled-angular-compiler": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-13.5.0.tgz", + "integrity": "sha512-7M/5ilxqPD3ydgqqdLsYs3kBwZgNg2Y6C01B5SEHZNLqLT9kAJa7I4y6GlxCZqejCIh554kdXGeV3abIxFccSg==", + "dev": true + }, + "@angular-eslint/eslint-plugin": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-13.5.0.tgz", + "integrity": "sha512-k9o9WIqUkdO8tdYFCJ54PUWsNd9HHflih/GmA13EWciBYx8QxciwBh0u4NSAnbtOwp4Y7juGZ/Dta5ZrT/2VBA==", + "dev": true, + "requires": { + "@angular-eslint/utils": "13.5.0", + "@typescript-eslint/experimental-utils": "5.27.1" + } + }, + "@angular-eslint/eslint-plugin-template": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-13.5.0.tgz", + "integrity": "sha512-ZVSXayn8MqYOhYomH2Cjc0azhuUQbY9fp9dKjJZOD64KhP8BYHw8+Ogc9E/FU5oZQ9fKw6A+23NAYKmLNqSAgA==", + "dev": true, + "requires": { + "@angular-eslint/bundled-angular-compiler": "13.5.0", + "@typescript-eslint/experimental-utils": "5.27.1", + "aria-query": "^4.2.2", + "axobject-query": "^2.2.0" + }, + "dependencies": { + "aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + } + }, + "axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==", + "dev": true + } + } + }, + "@angular-eslint/schematics": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-13.5.0.tgz", + "integrity": "sha512-0LvdalNpYb0oWwptwkeK2PVokfQ9itMIp8/aMjbOLH1RQ3eHFZgBtVvVm3G5EpPKzbL0llaeTifZvH2z70qVYQ==", + "dev": true, + "requires": { + "@angular-eslint/eslint-plugin": "13.5.0", + "@angular-eslint/eslint-plugin-template": "13.5.0", + "ignore": "5.2.0", + "strip-json-comments": "3.1.1", + "tmp": "0.2.1" + }, + "dependencies": { + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } + } + } + }, + "@angular-eslint/template-parser": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-13.5.0.tgz", + "integrity": "sha512-k+24+kBjaOuthfp9RBQB0zH6UqeizZuFQFEuZEQbvirPbdQ2SqNBw7IcmW2Qw1v7fjFe6/6gqK7wm2g7o9ZZvA==", + "dev": true, + "requires": { + "@angular-eslint/bundled-angular-compiler": "13.5.0", + "eslint-scope": "^5.1.0" + } + }, + "@angular-eslint/utils": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-13.5.0.tgz", + "integrity": "sha512-wX3W6STSDJDJ7ZyEsUdBp4HUPwmillMmKcdnFsy+qxbpJFzFOxOFpK1zet4ELsq1XpB89i9vRvC3vYbpHn3CSw==", + "dev": true, + "requires": { + "@angular-eslint/bundled-angular-compiler": "13.5.0", + "@typescript-eslint/experimental-utils": "5.27.1" + } + }, "@angular/animations": { - "version": "12.2.16", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-12.2.16.tgz", - "integrity": "sha512-Kf6C7Ta+fCMq5DvT9JNVhBkcECrqFa3wumiC6ssGo5sNaEzXz+tlep9ZgEbqfxSn7gAN7L1DgsbS9u0O6tbUkg==", + "version": "14.2.12", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-14.2.12.tgz", + "integrity": "sha512-gwdnFZkvVUr+enUNfhfCGRGGqNHn1+vTA81apLfHYhJxgjiLUtETc4KTOrQevtDm022pEd+LSrvr8r+7ag+jkw==", "requires": { - "tslib": "^2.2.0" + "tslib": "^2.3.0" } }, "@angular/cli": { - "version": "12.2.18", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-12.2.18.tgz", - "integrity": "sha512-AvHi6DsxavxXJgEoFrrlYDtGGgCpofPDmOwHmxpIFNAeG1xdGYtK1zJhGbfu5acn8/5cGoJoBgDY+SEI+WOjxA==", + "version": "14.2.10", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-14.2.10.tgz", + "integrity": "sha512-gX9sAKOwq4lKdPWeABB7TzKDHdjQXvkUU8NmPJA6mEAVXvm3lhQtFvHDalZstwK8au2LY0LaXTcEtcKYOt3AXQ==", "dev": true, "requires": { - "@angular-devkit/architect": "0.1202.18", - "@angular-devkit/core": "12.2.18", - "@angular-devkit/schematics": "12.2.18", - "@schematics/angular": "12.2.18", + "@angular-devkit/architect": "0.1402.10", + "@angular-devkit/core": "14.2.10", + "@angular-devkit/schematics": "14.2.10", + "@schematics/angular": "14.2.10", "@yarnpkg/lockfile": "1.1.0", - "ansi-colors": "4.1.1", - "debug": "4.3.2", - "ini": "2.0.0", - "inquirer": "8.1.2", - "jsonc-parser": "3.0.0", - "npm-package-arg": "8.1.5", - "npm-pick-manifest": "6.1.1", - "open": "8.2.1", + "ansi-colors": "4.1.3", + "debug": "4.3.4", + "ini": "3.0.0", + "inquirer": "8.2.4", + "jsonc-parser": "3.1.0", + "npm-package-arg": "9.1.0", + "npm-pick-manifest": "7.0.1", + "open": "8.4.0", "ora": "5.4.1", - "pacote": "12.0.2", - "resolve": "1.20.0", - "semver": "7.3.5", + "pacote": "13.6.2", + "resolve": "1.22.1", + "semver": "7.3.7", "symbol-observable": "4.0.0", - "uuid": "8.3.2" + "uuid": "8.3.2", + "yargs": "17.5.1" }, "dependencies": { "debug": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { "ms": "2.1.2" } }, "ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.0.tgz", + "integrity": "sha512-TxYQaeNW/N8ymDvwAxPyRbhMBtnEwuvaTYpOQkFx1nSeusgezHniEc/l35Vo4iCq/mMiTJbpD7oYxN98hFlfmw==", "dev": true }, "lru-cache": { @@ -393,20 +464,10 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "dev": true, - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -418,71 +479,79 @@ "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true + }, + "yargs": { + "version": "17.5.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz", + "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.0.0" + } + }, + "yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true } } }, "@angular/common": { - "version": "12.2.16", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-12.2.16.tgz", - "integrity": "sha512-FEqTXTEsnbDInqV1yFlm97Tz1OFqZS5t0TUkm8gzXRgpIce/F/jLwAg0u1VQkgOsno6cNm0xTWPoZgu85NI4ug==", + "version": "14.2.12", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-14.2.12.tgz", + "integrity": "sha512-oZunh9wfInFWhNO1P8uoEs/o4u8kerKMhw8GruywKm1TV7gHDP2Fi5WHGjFqq3XYptgBTPCTSEfyLX6Cwq1PUw==", "requires": { - "tslib": "^2.2.0" + "tslib": "^2.3.0" } }, "@angular/compiler": { - "version": "12.2.16", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-12.2.16.tgz", - "integrity": "sha512-nsYEw+yu8QyeqPf9nAmG419i1mtGM4v8+U+S3eQHQFXTgJzLymMykWHYu2ETdjUpNSLK6xcIQDBWtWnWSfJjAA==", + "version": "14.2.12", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-14.2.12.tgz", + "integrity": "sha512-u2MH9+NRwbbFDRNiPWPexed9CnCq9+pGHLuyACSP2uR6Ik68cE6cayeZbIeoEV5vWpda/XsLmJgPJysw7dAZLQ==", "requires": { - "tslib": "^2.2.0" + "tslib": "^2.3.0" } }, "@angular/compiler-cli": { - "version": "12.2.16", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-12.2.16.tgz", - "integrity": "sha512-tlalh8SJvdCWbUPRUR5GamaP+wSc/GuCsoUZpSbcczGKgSlbaEVXUYtVXm8/wuT6Slk2sSEbRs7tXGF2i7qxVw==", + "version": "14.2.12", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-14.2.12.tgz", + "integrity": "sha512-9Gkb9KFkaQPz8XaS8ZwwTioRZ4ywykdAWyceICEi78/Y9ConYrTX2SbFogzI2dPUZU8a04tMlbqTSmHjVbJftQ==", "dev": true, "requires": { - "@babel/core": "^7.8.6", - "@babel/types": "^7.8.6", - "canonical-path": "1.0.0", + "@babel/core": "^7.17.2", "chokidar": "^3.0.0", "convert-source-map": "^1.5.1", "dependency-graph": "^0.11.0", - "magic-string": "^0.25.0", - "minimist": "^1.2.0", + "magic-string": "^0.26.0", "reflect-metadata": "^0.1.2", "semver": "^7.0.0", - "source-map": "^0.6.1", "sourcemap-codec": "^1.4.8", - "tslib": "^2.2.0", - "yargs": "^17.0.0" + "tslib": "^2.3.0", + "yargs": "^17.2.1" }, "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "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, - "requires": { - "color-convert": "^2.0.1" - } - }, "anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "requires": { "normalize-path": "^3.0.0", @@ -520,32 +589,6 @@ "readdirp": "~3.6.0" } }, - "cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - } - }, - "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, - "requires": { - "color-name": "~1.1.4" - } - }, - "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 - }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -613,15 +656,6 @@ "lru-cache": "^6.0.0" } }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -631,111 +665,66 @@ "is-number": "^7.0.0" } }, - "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, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true - }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true - }, - "yargs": { - "version": "17.6.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.0.tgz", - "integrity": "sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==", - "dev": true, - "requires": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.0.0" - } - }, - "yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true } } }, "@angular/core": { - "version": "12.2.16", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-12.2.16.tgz", - "integrity": "sha512-jsmvaRdAfng99z2a9mAmkfcsCE1wm+tBYVDxnc5JquSXznwtncjzcoc2X0J0dzrkCDvzFfpTsZ9vehylytBc+A==", + "version": "14.2.12", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-14.2.12.tgz", + "integrity": "sha512-sGQxU5u4uawwvJa6jOTmGoisJiQ5HIN/RoBw99CmoqZIVyUSg9IRJJC1KVdH8gbpWBNLkElZv21lwJTL/msWyg==", "requires": { - "tslib": "^2.2.0" + "tslib": "^2.3.0" } }, "@angular/elements": { - "version": "12.2.16", - "resolved": "https://registry.npmjs.org/@angular/elements/-/elements-12.2.16.tgz", - "integrity": "sha512-tOTf6FvnxZg/TjrmsbowHjrTYVl6WhTOQk3G4aYicrf+57a67L12F44Illr7I6preIvH5NepHivMTKN5rNBAmg==", + "version": "14.2.12", + "resolved": "https://registry.npmjs.org/@angular/elements/-/elements-14.2.12.tgz", + "integrity": "sha512-FSAM5wz/Vi0DZZ9do4tuo1m8XyioBH9htsv1E2vStr6NXaq13U6TImQs9RcLIAOoKFV+pSuxSqHpT/Wfs9G30Q==", "requires": { - "tslib": "^2.2.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } + "tslib": "^2.3.0" } }, "@angular/forms": { - "version": "12.2.16", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-12.2.16.tgz", - "integrity": "sha512-sb+gpNun5aN7CZfHXS6X7vJcd/0A1P/gRBZpYtQTzBYnqEFCOFIvR62eb05aHQ4JhgKaSPpIXrbz/bAwY/njZw==", + "version": "14.2.12", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-14.2.12.tgz", + "integrity": "sha512-7abYlGIT2JnAtutQUlH3fQS6QEpbfftgvsVcZJCyvX0rXL3u2w2vUQkDHJH4YJJp3AHFVCH4/l7R4VcaPnrwvA==", "requires": { - "tslib": "^2.2.0" + "tslib": "^2.3.0" } }, "@angular/language-service": { - "version": "12.2.16", - "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-12.2.16.tgz", - "integrity": "sha512-eDOd46Lu+4Nc/UA9q4G1xUTeIT2JXDdpedSRCk1fM+trYUZm7Xy2FZasP3pUSdtz04wt0kV9Mi5i3oCxfqU2Wg==", + "version": "14.2.12", + "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-14.2.12.tgz", + "integrity": "sha512-YmW6simyEVmpDmbYVUhZ2IxSP6pmsWrV120rB9Y21/BeM39WIXA4NCNirVWlAd/KAKY9O7Sbn1nXI6rSDfhopQ==", "dev": true }, "@angular/platform-browser": { - "version": "12.2.16", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-12.2.16.tgz", - "integrity": "sha512-T855ppLeQO6hRHi7lGf5fwPoUVt+c0h2rgkV5jHElc3ylaGnhecmZc6fnWLX4pw82TMJUgUV88CY8JCFabJWwg==", + "version": "14.2.12", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-14.2.12.tgz", + "integrity": "sha512-vOarWym8ucl1gjYWCzdwyBha+MTvL381mvTTUu8aUx6nVhHFjv4bvpjlZnZgojecqUPyxOwmPLLHvCZPJVHZYg==", "requires": { - "tslib": "^2.2.0" + "tslib": "^2.3.0" } }, "@angular/platform-browser-dynamic": { - "version": "12.2.16", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-12.2.16.tgz", - "integrity": "sha512-XGxoACAMW/bc3atiVRpaiYwU4LkobYwVzwlxTT/BxOfsdt8ILb5wU8Fx1TMKNECOQHSGdK0qqhch4pTBZ3cb2g==", + "version": "14.2.12", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-14.2.12.tgz", + "integrity": "sha512-oZhNJeaBmgw8+KBSYpKz2RYqEDyETC+HJXH8dwIFcP6BqqwL2NE70FdSR7EnOa5c41MEtTmMCGhrJSFR60x5/w==", "requires": { - "tslib": "^2.2.0" + "tslib": "^2.3.0" } }, "@angular/router": { - "version": "12.2.16", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-12.2.16.tgz", - "integrity": "sha512-LuFXSMIvX/VrB4jbYhigG2Y2pGQ9ULsSBUwDWwQCf4kr0eVI37LBJ2Vr74GBEznjgQ0UmWE89E+XYI80UhERTw==", + "version": "14.2.12", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-14.2.12.tgz", + "integrity": "sha512-r5tVus5RJDNc4U2v0jMtjPiAS1xDsVsJ70lS313DgZmBDHIVZP1cWIehdxwgNlGwQQtAA36eG7toBwqUU3gb/A==", "requires": { - "tslib": "^2.2.0" + "tslib": "^2.3.0" } }, "@assemblyscript/loader": { @@ -754,32 +743,32 @@ } }, "@babel/compat-data": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.3.tgz", - "integrity": "sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw==", + "version": "7.20.14", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz", + "integrity": "sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==", "dev": true }, "@babel/core": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.14.8.tgz", - "integrity": "sha512-/AtaeEhT6ErpDhInbXmjHcUQXH0L0TEgscfcxk1qbOvLuKCa5aZT0SOOtDKFY96/CLROwbLSKyFor6idgNaU4Q==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.14.8", - "@babel/helper-compilation-targets": "^7.14.5", - "@babel/helper-module-transforms": "^7.14.8", - "@babel/helpers": "^7.14.8", - "@babel/parser": "^7.14.8", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.8", - "@babel/types": "^7.14.8", + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.10.tgz", + "integrity": "sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.10", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-module-transforms": "^7.18.9", + "@babel/helpers": "^7.18.9", + "@babel/parser": "^7.18.10", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.18.10", + "@babel/types": "^7.18.10", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" + "json5": "^2.2.1", + "semver": "^6.3.0" }, "dependencies": { "debug": { @@ -796,41 +785,40 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true } } }, "@babel/generator": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.14.8.tgz", - "integrity": "sha512-cYDUpvIzhBVnMzRoY1fkSEhK/HmwEVwlyULYgn/tMQYd6Obag3ylCjONle3gdErfXBW61SVTlR9QR7uWlgeIkg==", + "version": "7.18.12", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.12.tgz", + "integrity": "sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==", "dev": true, "requires": { - "@babel/types": "^7.14.8", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" + "@babel/types": "^7.18.10", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" }, "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } } } }, "@babel/helper-annotate-as-pure": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz", - "integrity": "sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", "dev": true, "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.18.6" } }, "@babel/helper-builder-binary-assignment-operator-visitor": { @@ -844,74 +832,69 @@ } }, "@babel/helper-compilation-targets": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz", - "integrity": "sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", + "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", "dev": true, "requires": { - "@babel/compat-data": "^7.19.3", + "@babel/compat-data": "^7.20.5", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", "semver": "^6.3.0" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } } }, "@babel/helper-create-class-features-plugin": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz", - "integrity": "sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==", + "version": "7.20.12", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz", + "integrity": "sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.20.7", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/helper-split-export-declaration": "^7.18.6" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "dev": true, - "requires": { - "@babel/types": "^7.18.6" - } - } } }, "@babel/helper-create-regexp-features-plugin": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", - "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", + "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.1.0" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "dev": true, - "requires": { - "@babel/types": "^7.18.6" - } - } + "regexpu-core": "^5.2.1" } }, "@babel/helper-define-polyfill-provider": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.4.tgz", - "integrity": "sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", "dev": true, "requires": { - "@babel/helper-compilation-targets": "^7.13.0", - "@babel/helper-module-imports": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/traverse": "^7.13.0", + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2", @@ -958,19 +941,6 @@ "requires": { "@babel/template": "^7.18.10", "@babel/types": "^7.19.0" - }, - "dependencies": { - "@babel/template": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", - "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" - } - } } }, "@babel/helper-hoist-variables": { @@ -983,12 +953,12 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", - "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz", + "integrity": "sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==", "dev": true, "requires": { - "@babel/types": "^7.18.9" + "@babel/types": "^7.20.7" } }, "@babel/helper-module-imports": { @@ -1001,30 +971,30 @@ } }, "@babel/helper-module-transforms": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz", - "integrity": "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==", + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", + "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.18.6", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.10", + "@babel/types": "^7.20.7" }, "dependencies": { "@babel/template": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", - "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", "dev": true, "requires": { "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" } } } @@ -1039,9 +1009,9 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz", - "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", "dev": true }, "@babel/helper-remap-async-to-generator": { @@ -1054,48 +1024,51 @@ "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-wrap-function": "^7.18.9", "@babel/types": "^7.18.9" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "dev": true, - "requires": { - "@babel/types": "^7.18.6" - } - } } }, "@babel/helper-replace-supers": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz", - "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", + "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.20.7", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.19.1", - "@babel/types": "^7.19.0" + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "dependencies": { + "@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + } + } } }, "@babel/helper-simple-access": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", - "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", "dev": true, "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.20.2" } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", - "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", "dev": true, "requires": { - "@babel/types": "^7.18.9" + "@babel/types": "^7.20.0" } }, "@babel/helper-split-export-declaration": { @@ -1108,15 +1081,15 @@ } }, "@babel/helper-string-parser": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", - "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==", + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", "dev": true }, "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", "dev": true }, "@babel/helper-validator-option": { @@ -1126,50 +1099,37 @@ "dev": true }, "@babel/helper-wrap-function": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", - "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", + "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", "dev": true, "requires": { "@babel/helper-function-name": "^7.19.0", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" - }, - "dependencies": { - "@babel/template": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", - "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" - } - } + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" } }, "@babel/helpers": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz", - "integrity": "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==", + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz", + "integrity": "sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==", "dev": true, "requires": { - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.13", + "@babel/types": "^7.20.7" }, "dependencies": { "@babel/template": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", - "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", "dev": true, "requires": { "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" } } } @@ -1186,30 +1146,40 @@ } }, "@babel/parser": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.3.tgz", - "integrity": "sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==", + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.13.tgz", + "integrity": "sha512-gFDLKMfpiXCsjt4za2JA9oTMn70CeseCehb11kRZgvd7+F67Hih3OHOK24cRrWECJ/ljfPGac6ygXAs/C8kIvw==", "dev": true }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.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.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", - "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", + "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", - "@babel/plugin-proposal-optional-chaining": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.7" } }, "@babel/plugin-proposal-async-generator-functions": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.7.tgz", - "integrity": "sha512-RK8Wj7lXLY3bqei69/cc25gwS5puEc3dknoFPFbqfy3XxYQBQFvu4ioWpafMBAB+L9NyptQK4nMOa5Xz16og8Q==", + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.10.tgz", + "integrity": "sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-remap-async-to-generator": "^7.14.5", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-remap-async-to-generator": "^7.18.9", "@babel/plugin-syntax-async-generators": "^7.8.4" } }, @@ -1224,13 +1194,13 @@ } }, "@babel/plugin-proposal-class-static-block": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz", - "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz", + "integrity": "sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-class-static-block": "^7.14.5" } }, @@ -1265,12 +1235,12 @@ } }, "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", - "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, @@ -1295,16 +1265,16 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", - "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", "dev": true, "requires": { - "@babel/compat-data": "^7.18.8", - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9", + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.8" + "@babel/plugin-transform-parameters": "^7.20.7" } }, "@babel/plugin-proposal-optional-catch-binding": { @@ -1318,13 +1288,13 @@ } }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", - "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", + "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, @@ -1339,26 +1309,15 @@ } }, "@babel/plugin-proposal-private-property-in-object": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", - "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", + "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "dev": true, - "requires": { - "@babel/types": "^7.18.6" - } - } } }, "@babel/plugin-proposal-unicode-property-regex": { @@ -1416,6 +1375,15 @@ "@babel/helper-plugin-utils": "^7.8.3" } }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", + "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.19.0" + } + }, "@babel/plugin-syntax-json-strings": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", @@ -1498,23 +1466,23 @@ } }, "@babel/plugin-transform-arrow-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz", - "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", + "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-async-to-generator": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz", - "integrity": "sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz", + "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-remap-async-to-generator": "^7.14.5" + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-remap-async-to-generator": "^7.18.6" } }, "@babel/plugin-transform-block-scoped-functions": { @@ -1527,58 +1495,61 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", - "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", + "version": "7.20.14", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.14.tgz", + "integrity": "sha512-sMPepQtsOs5fM1bwNvuJJHvaCfOEQfmc01FGw0ELlTpTJj5Ql/zuNRRldYhAPys4ghXdBIQJbRVYi44/7QflQQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-classes": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz", - "integrity": "sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz", + "integrity": "sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-compilation-targets": "^7.19.0", + "@babel/helper-compilation-targets": "^7.20.7", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.20.7", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", + "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/template": "^7.20.7" }, "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", "dev": true, "requires": { - "@babel/types": "^7.18.6" + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" } } } }, - "@babel/plugin-transform-computed-properties": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", - "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, "@babel/plugin-transform-destructuring": { - "version": "7.18.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz", - "integrity": "sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz", + "integrity": "sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-dotall-regex": { @@ -1649,39 +1620,36 @@ } }, "@babel/plugin-transform-modules-amd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", - "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", + "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", - "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz", + "integrity": "sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-simple-access": "^7.20.2" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.0.tgz", - "integrity": "sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==", + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", + "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", "dev": true, "requires": { "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.19.0", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-validator-identifier": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-identifier": "^7.19.1" } }, "@babel/plugin-transform-modules-umd": { @@ -1695,13 +1663,13 @@ } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz", - "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", + "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.19.0", - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-create-regexp-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-new-target": { @@ -1724,12 +1692,12 @@ } }, "@babel/plugin-transform-parameters": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", - "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz", + "integrity": "sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-property-literals": { @@ -1742,13 +1710,13 @@ } }, "@babel/plugin-transform-regenerator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", - "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", + "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "regenerator-transform": "^0.15.0" + "@babel/helper-plugin-utils": "^7.20.2", + "regenerator-transform": "^0.15.1" } }, "@babel/plugin-transform-reserved-words": { @@ -1761,16 +1729,16 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.5.tgz", - "integrity": "sha512-fPMBhh1AV8ZyneiCIA+wYYUH1arzlXR1UMcApjvchDhfKxhy2r2lReJv8uHEyihi4IFIGlr1Pdx7S5fkESDQsg==", + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.10.tgz", + "integrity": "sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", - "babel-plugin-polyfill-corejs2": "^0.2.2", - "babel-plugin-polyfill-corejs3": "^0.2.2", - "babel-plugin-polyfill-regenerator": "^0.2.2", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "babel-plugin-polyfill-corejs2": "^0.3.2", + "babel-plugin-polyfill-corejs3": "^0.5.3", + "babel-plugin-polyfill-regenerator": "^0.4.0", "semver": "^6.3.0" } }, @@ -1784,13 +1752,13 @@ } }, "@babel/plugin-transform-spread": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz", - "integrity": "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", + "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" } }, "@babel/plugin-transform-sticky-regex": { @@ -1840,36 +1808,38 @@ } }, "@babel/preset-env": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.8.tgz", - "integrity": "sha512-a9aOppDU93oArQ51H+B8M1vH+tayZbuBqzjOhntGetZVa+4tTu5jp+XTwqHGG2lxslqomPYVSjIxQkFwXzgnxg==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.14.7", - "@babel/helper-compilation-targets": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.14.5", - "@babel/plugin-proposal-async-generator-functions": "^7.14.7", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-class-static-block": "^7.14.5", - "@babel/plugin-proposal-dynamic-import": "^7.14.5", - "@babel/plugin-proposal-export-namespace-from": "^7.14.5", - "@babel/plugin-proposal-json-strings": "^7.14.5", - "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", - "@babel/plugin-proposal-numeric-separator": "^7.14.5", - "@babel/plugin-proposal-object-rest-spread": "^7.14.7", - "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", - "@babel/plugin-proposal-optional-chaining": "^7.14.5", - "@babel/plugin-proposal-private-methods": "^7.14.5", - "@babel/plugin-proposal-private-property-in-object": "^7.14.5", - "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.10.tgz", + "integrity": "sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-async-generator-functions": "^7.18.10", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.9", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", "@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.18.6", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", @@ -1879,44 +1849,44 @@ "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.14.5", - "@babel/plugin-transform-async-to-generator": "^7.14.5", - "@babel/plugin-transform-block-scoped-functions": "^7.14.5", - "@babel/plugin-transform-block-scoping": "^7.14.5", - "@babel/plugin-transform-classes": "^7.14.5", - "@babel/plugin-transform-computed-properties": "^7.14.5", - "@babel/plugin-transform-destructuring": "^7.14.7", - "@babel/plugin-transform-dotall-regex": "^7.14.5", - "@babel/plugin-transform-duplicate-keys": "^7.14.5", - "@babel/plugin-transform-exponentiation-operator": "^7.14.5", - "@babel/plugin-transform-for-of": "^7.14.5", - "@babel/plugin-transform-function-name": "^7.14.5", - "@babel/plugin-transform-literals": "^7.14.5", - "@babel/plugin-transform-member-expression-literals": "^7.14.5", - "@babel/plugin-transform-modules-amd": "^7.14.5", - "@babel/plugin-transform-modules-commonjs": "^7.14.5", - "@babel/plugin-transform-modules-systemjs": "^7.14.5", - "@babel/plugin-transform-modules-umd": "^7.14.5", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.7", - "@babel/plugin-transform-new-target": "^7.14.5", - "@babel/plugin-transform-object-super": "^7.14.5", - "@babel/plugin-transform-parameters": "^7.14.5", - "@babel/plugin-transform-property-literals": "^7.14.5", - "@babel/plugin-transform-regenerator": "^7.14.5", - "@babel/plugin-transform-reserved-words": "^7.14.5", - "@babel/plugin-transform-shorthand-properties": "^7.14.5", - "@babel/plugin-transform-spread": "^7.14.6", - "@babel/plugin-transform-sticky-regex": "^7.14.5", - "@babel/plugin-transform-template-literals": "^7.14.5", - "@babel/plugin-transform-typeof-symbol": "^7.14.5", - "@babel/plugin-transform-unicode-escapes": "^7.14.5", - "@babel/plugin-transform-unicode-regex": "^7.14.5", - "@babel/preset-modules": "^0.1.4", - "@babel/types": "^7.14.8", - "babel-plugin-polyfill-corejs2": "^0.2.2", - "babel-plugin-polyfill-corejs3": "^0.2.2", - "babel-plugin-polyfill-regenerator": "^0.2.2", - "core-js-compat": "^3.15.0", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.9", + "@babel/plugin-transform-classes": "^7.18.9", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.18.9", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.18.6", + "@babel/plugin-transform-modules-commonjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.18.9", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.8", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.18.9", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.18.10", + "babel-plugin-polyfill-corejs2": "^0.3.2", + "babel-plugin-polyfill-corejs3": "^0.5.3", + "babel-plugin-polyfill-regenerator": "^0.4.0", + "core-js-compat": "^3.22.1", "semver": "^6.3.0" } }, @@ -1941,46 +1911,75 @@ "regenerator-runtime": "^0.13.4" } }, + "@babel/runtime-corejs3": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.13.tgz", + "integrity": "sha512-p39/6rmY9uvlzRiLZBIB3G9/EBr66LBMcYm7fIDeSBNdRjF2AGD3rFZucUyAgGHC2N+7DdLvVi33uTjSE44FIw==", + "dev": true, + "requires": { + "core-js-pure": "^3.25.1", + "regenerator-runtime": "^0.13.11" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + } + } + }, "@babel/template": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz", - "integrity": "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==", + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", + "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", "dev": true, "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.10", + "@babel/types": "^7.18.10" } }, "@babel/traverse": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.3.tgz", - "integrity": "sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==", + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz", + "integrity": "sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==", "dev": true, "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.19.3", + "@babel/generator": "^7.20.7", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.19.3", - "@babel/types": "^7.19.3", + "@babel/parser": "^7.20.13", + "@babel/types": "^7.20.7", "debug": "^4.1.0", "globals": "^11.1.0" }, "dependencies": { "@babel/generator": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.3.tgz", - "integrity": "sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==", + "version": "7.20.14", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz", + "integrity": "sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==", "dev": true, "requires": { - "@babel/types": "^7.19.3", + "@babel/types": "^7.20.7", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" } }, + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -1999,22 +1998,14 @@ } }, "@babel/types": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz", - "integrity": "sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==", + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", + "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", "dev": true, "requires": { - "@babel/helper-string-parser": "^7.18.10", + "@babel/helper-string-parser": "^7.19.4", "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", - "dev": true - } } }, "@colors/colors": { @@ -2023,108 +2014,370 @@ "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", "dev": true }, - "@csstools/convert-colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", - "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==", - "dev": true - }, - "@digitalbazaar/http-client": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@digitalbazaar/http-client/-/http-client-1.2.0.tgz", - "integrity": "sha512-W9KQQ5pUJcaR0I4c2HPJC0a7kRbZApIorZgPnEDwMBgj16iQzutGLrCXYaZOmxqVLVNqqlQ4aUJh+HBQZy4W6Q==", + "@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "dev": true, "requires": { - "esm": "^3.2.22", - "ky": "^0.25.1", - "ky-universal": "^0.8.2" + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" } }, - "@discoveryjs/json-ext": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz", - "integrity": "sha512-Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g==", - "dev": true - }, - "@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", "dev": true, "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" } }, - "@jridgewell/resolve-uri": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-1.0.0.tgz", - "integrity": "sha512-9oLAnygRMi8Q5QkYEU4XWK04B+nuoXoxjRvRxgjuChkLZFBja0YPSgdZ7dZtwhncLBcQe/I/E+fLuk5qxcYVJA==", - "dev": true - }, - "@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==", - "dev": true - }, - "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", "dev": true, "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "postcss-value-parser": "^4.2.0" } }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, - "@jridgewell/trace-mapping": { - "version": "0.3.15", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", - "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", + "@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", "dev": true, "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "dev": true, + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "dev": true, + "requires": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + } + }, + "@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "dev": true, + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "dev": true + }, + "@csstools/selector-specificity": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz", + "integrity": "sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==", + "dev": true + }, + "@digitalbazaar/http-client": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@digitalbazaar/http-client/-/http-client-1.2.0.tgz", + "integrity": "sha512-W9KQQ5pUJcaR0I4c2HPJC0a7kRbZApIorZgPnEDwMBgj16iQzutGLrCXYaZOmxqVLVNqqlQ4aUJh+HBQZy4W6Q==", + "requires": { + "esm": "^3.2.22", + "ky": "^0.25.1", + "ky-universal": "^0.8.2" + } + }, + "@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true + }, + "@esbuild/android-arm": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.18.tgz", + "integrity": "sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.5.tgz", + "integrity": "sha512-UHkDFCfSGTuXq08oQltXxSZmH1TXyWsL+4QhZDWvvLl6mEJQqk3u7/wq1LjhrrAXYIllaTtRSzUXl4Olkf2J8A==", + "dev": true, + "optional": true + }, + "@eslint/eslintrc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", + "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.4.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" }, "dependencies": { - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "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 + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "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, + "requires": { + "argparse": "^2.0.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "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 } } }, - "@jsdevtools/coverage-istanbul-loader": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@jsdevtools/coverage-istanbul-loader/-/coverage-istanbul-loader-3.0.5.tgz", - "integrity": "sha512-EUCPEkaRPvmHjWAAZkWMT7JDzpw7FKB00WTISaiXsbNOd5hCHg77XLA8sLYLFDo1zepYLo2w7GstN8YBqRXZfA==", + "@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "dev": true + }, + "@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", "dev": true, "requires": { - "convert-source-map": "^1.7.0", - "istanbul-lib-instrument": "^4.0.3", - "loader-utils": "^2.0.0", - "merge-source-map": "^1.1.0", - "schema-utils": "^2.7.0" + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true + }, + "@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@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==", + "dev": true + }, + "@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } }, + "@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==", + "dev": true + }, "@ngtools/webpack": { - "version": "12.2.18", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-12.2.18.tgz", - "integrity": "sha512-6h/QSG6oZDs2BGfrozdOKqtM5daoCu05q+0gyb3owHz1u9FtMeXXKQ3sQfyFC/GNT3dTMlH6YFxsJPvMPwuy9A==", + "version": "14.2.10", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-14.2.10.tgz", + "integrity": "sha512-sLHapZLVub6mEz5b19tf1VfIV1w3tYfg7FNPLeni79aldxu1FbP1v2WmiFAnMzrswqyK0bhTtxrl+Z/CLKqyoQ==", "dev": true }, "@nodelib/fs.scandir": { @@ -2153,20 +2406,14 @@ "fastq": "^1.6.0" } }, - "@npmcli/git": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz", - "integrity": "sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==", + "@npmcli/fs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", + "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", "dev": true, "requires": { - "@npmcli/promise-spawn": "^1.3.2", - "lru-cache": "^6.0.0", - "mkdirp": "^1.0.4", - "npm-pick-manifest": "^6.1.1", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", - "semver": "^7.3.5", - "which": "^2.0.2" + "@gar/promisify": "^1.1.3", + "semver": "^7.3.5" }, "dependencies": { "lru-cache": { @@ -2178,6 +2425,46 @@ "yallist": "^4.0.0" } }, + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@npmcli/git": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-3.0.2.tgz", + "integrity": "sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==", + "dev": true, + "requires": { + "@npmcli/promise-spawn": "^3.0.0", + "lru-cache": "^7.4.4", + "mkdirp": "^1.0.4", + "npm-pick-manifest": "^7.0.0", + "proc-log": "^2.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^2.0.2" + }, + "dependencies": { + "lru-cache": { + "version": "7.14.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.14.1.tgz", + "integrity": "sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==", + "dev": true + }, "mkdirp": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", @@ -2191,6 +2478,17 @@ "dev": true, "requires": { "lru-cache": "^6.0.0" + }, + "dependencies": { + "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, + "requires": { + "yallist": "^4.0.0" + } + } } }, "which": { @@ -2221,9 +2519,9 @@ } }, "@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", + "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", "dev": true, "requires": { "mkdirp": "^1.0.4", @@ -2248,1761 +2546,1207 @@ } }, "@npmcli/node-gyp": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz", - "integrity": "sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-2.0.0.tgz", + "integrity": "sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==", "dev": true }, "@npmcli/promise-spawn": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz", - "integrity": "sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-3.0.0.tgz", + "integrity": "sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==", "dev": true, "requires": { "infer-owner": "^1.0.4" } }, "@npmcli/run-script": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-2.0.0.tgz", - "integrity": "sha512-fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-4.2.1.tgz", + "integrity": "sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==", "dev": true, "requires": { - "@npmcli/node-gyp": "^1.0.2", - "@npmcli/promise-spawn": "^1.3.2", - "node-gyp": "^8.2.0", - "read-package-json-fast": "^2.0.1" - } - }, - "@project-sunbird/client-services": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/@project-sunbird/client-services/-/client-services-4.9.1.tgz", - "integrity": "sha512-qrtPOKrSckbrPUrk9CDAqHpdVBdcq6VzCiecw71Vl+lr+9eoY0uOC47mprSdIBDYVO9BWRp0wZeoZmPpBKMwrQ==", - "requires": { - "@project-sunbird/telemetry-sdk": "0.0.26", - "inversify": "^5.0.1", - "jsonld": "^5.2.0", - "jsonld-signatures": "^6.0.0", - "jszip": "^3.7.1", - "node-fetch": "2.6.5", - "qs": "^6.9.4", - "reflect-metadata": "^0.1.13", - "whatwg-fetch": "^3.1.0" - } - }, - "@project-sunbird/sb-styles": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@project-sunbird/sb-styles/-/sb-styles-0.0.7.tgz", - "integrity": "sha512-XirxDLdQnaKJC+tFh4IAD05ULHS7DE9ZkNsPRHglWzly8erTXe6M1DAL+XWKYVFLf+GK9U6HVKlvvxIUpRCiVw==" - }, - "@project-sunbird/sunbird-player-sdk-v9": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/@project-sunbird/sunbird-player-sdk-v9/-/sunbird-player-sdk-v9-4.8.0.tgz", - "integrity": "sha512-8qj3Gg027eT6dqLw9iPGJ1GApoytvnglHSOb7p5E0lwZH+pneGh1iESP0avX98klg5CkHn0Sh+V/m4tP0/f4Gw==", - "requires": { - "ally.js": "1.4.1" - } - }, - "@project-sunbird/sunbird-quml-player-v9": { - "version": "4.9.7", - "resolved": "https://registry.npmjs.org/@project-sunbird/sunbird-quml-player-v9/-/sunbird-quml-player-v9-4.9.7.tgz", - "integrity": "sha512-mZQmevigSrvVG6JsIixRfbnr1+eh0AuR8dcZU6jXprpm4Z+qceCJUr9P5mELdB9pHsrm7VFMGPLqgodbqz4Hag==", - "requires": { - "@project-sunbird/sunbird-player-sdk-v9": "4.8.0" + "@npmcli/node-gyp": "^2.0.0", + "@npmcli/promise-spawn": "^3.0.0", + "node-gyp": "^9.0.0", + "read-package-json-fast": "^2.0.3", + "which": "^2.0.2" + }, + "dependencies": { + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } } }, - "@project-sunbird/telemetry-sdk": { - "version": "0.0.26", - "resolved": "https://registry.npmjs.org/@project-sunbird/telemetry-sdk/-/telemetry-sdk-0.0.26.tgz", - "integrity": "sha512-8r8tf+YN+z8A4KHBmL8/wxDIKGkASDHMMxyhlI9/iWv83sueoN5qHB6QnqgtIRyEdFjt4Tum5u18/oB71Bb0PQ==", + "@nrwl/cli": { + "version": "15.6.3", + "resolved": "https://registry.npmjs.org/@nrwl/cli/-/cli-15.6.3.tgz", + "integrity": "sha512-K4E0spofThZXMnhA6R8hkUTdfqmwSnUE2+DlD5Y3jqsvKTAgwF5U41IFkEouFZCf+dWjy0RA20bWoX48EVFtmQ==", + "dev": true, "requires": { - "grunt-karma": "^0.12.2", - "karma": "^3.0.0" + "nx": "15.6.3" }, "dependencies": { - "base64-arraybuffer": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz", - "integrity": "sha512-437oANT9tP582zZMwSvZGy2nmSeAb8DW2me3y+Uv1Wp2Rulr8Mqlyrv3E7MLxmsiaPSMMDmiDVzgE+e8zlMx9g==" - }, - "base64id": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz", - "integrity": "sha512-rz8L+d/xByiB/vLVftPkyY215fqNrmasrcJsYkVcm4TgJNz+YXKrFaFAWibSaHkiKoSgMDCb+lipOIRQNGYesw==" - }, - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha512-jPatnhd33viNplKjqXKRkGU345p263OIWzDL2wH3LGIGp5Kojo+uXizHmOADRvhGFFTnJqX3jBAKP6vvmSDKcA==" - }, - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==" - }, - "date-format": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-1.2.0.tgz", - "integrity": "sha512-lAJqBmFzCLcDJdI9cEnJ7loSkLTh1PbIgZUndlzvYbf6NyFEr5n9rQhOwr6CIGwZqyQ3sYeQQiP9NOVQmgmRMA==" - }, - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - }, - "engine.io": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.2.1.tgz", - "integrity": "sha512-+VlKzHzMhaU+GsCIg4AoXF1UdDFjHHwMmMKqMJNDNLlUlejz58FCy4LBqB2YVJskHGYl06BatYWKP2TVdVXE5w==", + "@nrwl/tao": { + "version": "15.6.3", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-15.6.3.tgz", + "integrity": "sha512-bDZbPIbU5Mf2BvX0q8GjPxrm1WkYyfW+gp7mLuuJth2sEpZiCr47mSwuGko/y4CKXvIX46VQcAS0pKQMKugXsg==", + "dev": true, "requires": { - "accepts": "~1.3.4", - "base64id": "1.0.0", - "cookie": "0.3.1", - "debug": "~3.1.0", - "engine.io-parser": "~2.1.0", - "ws": "~3.3.1" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } + "nx": "15.6.3" } }, - "engine.io-client": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz", - "integrity": "sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw==", + "@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==", + "dev": true, "requires": { - "component-emitter": "1.2.1", - "component-inherit": "0.0.3", - "debug": "~3.1.0", - "engine.io-parser": "~2.1.1", - "has-cors": "1.1.0", - "indexof": "0.0.1", - "parseqs": "0.0.5", - "parseuri": "0.0.5", - "ws": "~3.3.1", - "xmlhttprequest-ssl": "~1.5.4", - "yeast": "0.1.2" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } + "argparse": "^2.0.1" } }, - "engine.io-parser": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.3.tgz", - "integrity": "sha512-6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA==", + "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, "requires": { - "after": "0.8.2", - "arraybuffer.slice": "~0.0.7", - "base64-arraybuffer": "0.1.5", - "blob": "0.0.5", - "has-binary2": "~1.0.2" + "color-convert": "^2.0.1" } }, - "isarray": { + "argparse": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz", - "integrity": "sha512-c2cu3UxbI+b6kR3fy0nRnAhodsvR9dx7U5+znCOzdj6IfP3upFURTr0Xl5BlQZNKZjEtxrmVyfSdeE3O57smoQ==" + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true }, - "isbinaryfile": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", - "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, "requires": { - "buffer-alloc": "^1.2.0" + "fill-range": "^7.0.1" } }, - "karma": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/karma/-/karma-3.1.4.tgz", - "integrity": "sha512-31Vo8Qr5glN+dZEVIpnPCxEGleqE0EY6CtC2X9TagRV3rRQ3SNrvfhddICkJgUK3AgqpeKSZau03QumTGhGoSw==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, "requires": { - "bluebird": "^3.3.0", - "body-parser": "^1.16.1", - "chokidar": "^2.0.3", - "colors": "^1.1.0", - "combine-lists": "^1.0.0", - "connect": "^3.6.0", - "core-js": "^2.2.0", - "di": "^0.0.1", - "dom-serialize": "^2.2.0", - "expand-braces": "^0.1.1", - "flatted": "^2.0.0", - "glob": "^7.1.1", - "graceful-fs": "^4.1.2", - "http-proxy": "^1.13.0", - "isbinaryfile": "^3.0.0", - "lodash": "^4.17.5", - "log4js": "^3.0.0", - "mime": "^2.3.1", - "minimatch": "^3.0.2", - "optimist": "^0.6.1", - "qjobs": "^1.1.4", - "range-parser": "^1.2.0", - "rimraf": "^2.6.0", - "safe-buffer": "^5.0.1", - "socket.io": "2.1.1", - "source-map": "^0.6.1", - "tmp": "0.0.33", - "useragent": "2.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "cli-spinners": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", + "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", + "dev": true }, - "log4js": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/log4js/-/log4js-3.0.6.tgz", - "integrity": "sha512-ezXZk6oPJCWL483zj64pNkMuY/NcRX5MPiB0zE6tjZM137aeusrOnW1ecxgF9cmwMWkBMhjteQxBPoZBh9FDxQ==", + "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, "requires": { - "circular-json": "^0.5.5", - "date-format": "^1.2.0", - "debug": "^3.1.0", - "rfdc": "^1.1.2", - "streamroller": "0.7.0" + "color-name": "~1.1.4" } }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + "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 }, - "parseqs": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz", - "integrity": "sha512-B3Nrjw2aL7aI4TDujOzfA4NsEc4u1lVcIRE0xesutH8kjeWF70uk+W5cBlIQx04zUH9NTBvuN36Y9xLRPK6Jjw==", + "fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "dev": true, "requires": { - "better-assert": "~1.0.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" } }, - "parseuri": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz", - "integrity": "sha512-ijhdxJu6l5Ru12jF0JvzXVPvsC+VibqeaExlNoMhWN6VQ79PGjkmc7oA4W1lp00sFkNyj0fx6ivPLdV51/UMog==", + "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==", + "dev": true, "requires": { - "better-assert": "~1.0.0" + "to-regex-range": "^5.0.1" } }, - "socket.io": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz", - "integrity": "sha512-rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA==", + "fs-extra": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "dev": true, "requires": { - "debug": "~3.1.0", - "engine.io": "~3.2.0", - "has-binary2": "~1.0.2", - "socket.io-adapter": "~1.1.0", - "socket.io-client": "2.1.1", - "socket.io-parser": "~3.2.0" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" } }, - "socket.io-client": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz", - "integrity": "sha512-jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ==", + "glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, "requires": { - "backo2": "1.0.2", - "base64-arraybuffer": "0.1.5", - "component-bind": "1.0.0", - "component-emitter": "1.2.1", - "debug": "~3.1.0", - "engine.io-client": "~3.2.0", - "has-binary2": "~1.0.2", - "has-cors": "1.1.0", - "indexof": "0.0.1", - "object-component": "0.0.3", - "parseqs": "0.0.5", - "parseuri": "0.0.5", - "socket.io-parser": "~3.2.0", - "to-array": "0.1.4" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } + "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" } }, - "socket.io-parser": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "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 + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "jsonc-parser": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz", - "integrity": "sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA==", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, "requires": { - "component-emitter": "1.2.1", - "debug": "~3.1.0", - "isarray": "2.0.1" + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "lines-and-columns": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", + "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", + "dev": true + }, + "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, + "requires": { + "yallist": "^4.0.0" + } + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "nx": { + "version": "15.6.3", + "resolved": "https://registry.npmjs.org/nx/-/nx-15.6.3.tgz", + "integrity": "sha512-3t0A0GPLNen1yPAyE+VGZ3nkAzZYb5nfXtAcx8SHBlKq4u42yBY3khBmP1y4Og3jhIwFIj7J7Npeh8ZKrthmYQ==", + "dev": true, + "requires": { + "@nrwl/cli": "15.6.3", + "@nrwl/tao": "15.6.3", + "@parcel/watcher": "2.0.4", + "@yarnpkg/lockfile": "^1.1.0", + "@yarnpkg/parsers": "^3.0.0-rc.18", + "@zkochan/js-yaml": "0.0.6", + "axios": "^1.0.0", + "chalk": "^4.1.0", + "cli-cursor": "3.1.0", + "cli-spinners": "2.6.1", + "cliui": "^7.0.2", + "dotenv": "~10.0.0", + "enquirer": "~2.3.6", + "fast-glob": "3.2.7", + "figures": "3.2.0", + "flat": "^5.0.2", + "fs-extra": "^11.1.0", + "glob": "7.1.4", + "ignore": "^5.0.4", + "js-yaml": "4.1.0", + "jsonc-parser": "3.2.0", + "lines-and-columns": "~2.0.3", + "minimatch": "3.0.5", + "npm-run-path": "^4.0.1", + "open": "^8.4.0", + "semver": "7.3.4", + "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" }, "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "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, "requires": { - "ms": "2.0.0" + "argparse": "^2.0.1" } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" } } }, - "streamroller": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz", - "integrity": "sha512-WREzfy0r0zUqp3lGO096wRuUp7ho1X6uo/7DJfTlEi0Iv/4gT7YHqXDjKC2ioVGBZtE8QzsQD9nx1nIuoZ57jQ==", + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, "requires": { - "date-format": "^1.2.0", - "debug": "^3.1.0", - "mkdirp": "^0.5.1", - "readable-stream": "^2.3.0" + "glob": "^7.1.3" } }, - "ws": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", - "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, "requires": { - "async-limiter": "~1.0.0", - "safe-buffer": "~5.1.0", - "ultron": "~1.1.0" - }, - "dependencies": { - "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==" - } + "lru-cache": "^6.0.0" } }, - "xmlhttprequest-ssl": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz", - "integrity": "sha512-/bFPLUgJrfGUL10AIv4Y7/CUt6so9CLtB/oFxQSHseSDNNCdC6vwwKEqwLN6wNPBg9YWXAiMu8jkf6RPRS/75Q==" + "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, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true } } }, - "@rollup/plugin-commonjs": { - "version": "20.0.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-20.0.0.tgz", - "integrity": "sha512-5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==", - "dev": true, - "requires": { - "@rollup/pluginutils": "^3.1.0", - "commondir": "^1.0.1", - "estree-walker": "^2.0.1", - "glob": "^7.1.6", - "is-reference": "^1.2.1", - "magic-string": "^0.25.7", - "resolve": "^1.17.0" - } - }, - "@rollup/plugin-json": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz", - "integrity": "sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==", + "@nrwl/devkit": { + "version": "13.1.3", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-13.1.3.tgz", + "integrity": "sha512-TAAsZJvVc/obeH0rZKY6miVhyM2GHGb8qIWp9MAIdLlXf4VDcNC7rxwb5OrGVSwuTTjqGYBGPUx0yEogOOJthA==", "dev": true, "requires": { - "@rollup/pluginutils": "^3.0.8" - } - }, - "@rollup/plugin-node-resolve": { - "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz", - "integrity": "sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==", - "dev": true, - "requires": { - "@rollup/pluginutils": "^3.1.0", - "@types/resolve": "1.17.1", - "deepmerge": "^4.2.2", - "is-builtin-module": "^3.1.0", - "is-module": "^1.0.0", - "resolve": "^1.19.0" + "@nrwl/tao": "13.1.3", + "ejs": "^3.1.5", + "ignore": "^5.0.4", + "rxjs": "^6.5.4", + "semver": "7.3.4", + "tslib": "^2.0.0" + }, + "dependencies": { + "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, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } } }, - "@rollup/pluginutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", - "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "@nrwl/tao": { + "version": "13.1.3", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-13.1.3.tgz", + "integrity": "sha512-/IwJgSgCBD1SaF+n8RuXX2OxDAh8ut/+P8pMswjm8063ac30UlAHjQ4XTYyskLH8uoUmNi2hNaGgHUrkwt7tQA==", "dev": true, "requires": { - "@types/estree": "0.0.39", - "estree-walker": "^1.0.1", - "picomatch": "^2.2.2" + "chalk": "4.1.0", + "enquirer": "~2.3.6", + "fs-extra": "^9.1.0", + "jsonc-parser": "3.0.0", + "nx": "13.1.3", + "rxjs": "^6.5.4", + "rxjs-for-await": "0.0.2", + "semver": "7.3.4", + "tmp": "~0.2.1", + "tslib": "^2.0.0", + "yargs-parser": "20.0.0" }, "dependencies": { - "@types/estree": { - "version": "0.0.39", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", - "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "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, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "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, + "requires": { + "color-name": "~1.1.4" + } + }, + "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 }, - "estree-walker": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", - "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "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 + }, + "jsonc-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", + "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", + "dev": true + }, + "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, + "requires": { + "yallist": "^4.0.0" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "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, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true } } }, - "@schematics/angular": { - "version": "12.2.18", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.18.tgz", - "integrity": "sha512-niRS9Ly9y8uI0YmTSbo8KpdqCCiZ/ATMZWeS2id5M8JZvfXbngwiqJvojdSol0SWU+n1W4iA+lJBdt4gSKlD5w==", - "dev": true, - "requires": { - "@angular-devkit/core": "12.2.18", - "@angular-devkit/schematics": "12.2.18", - "jsonc-parser": "3.0.0" - } - }, - "@socket.io/component-emitter": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", - "integrity": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==", - "dev": true - }, - "@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true - }, - "@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "dev": true - }, - "@types/cookie": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", - "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==", - "dev": true - }, - "@types/cors": { - "version": "2.8.12", - "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", - "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==", - "dev": true - }, - "@types/eslint": { - "version": "8.4.6", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.6.tgz", - "integrity": "sha512-/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g==", + "@parcel/watcher": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.4.tgz", + "integrity": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==", "dev": true, "requires": { - "@types/estree": "*", - "@types/json-schema": "*" + "node-addon-api": "^3.2.1", + "node-gyp-build": "^4.3.0" } }, - "@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", - "dev": true, + "@project-sunbird/client-services": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@project-sunbird/client-services/-/client-services-4.9.1.tgz", + "integrity": "sha512-qrtPOKrSckbrPUrk9CDAqHpdVBdcq6VzCiecw71Vl+lr+9eoY0uOC47mprSdIBDYVO9BWRp0wZeoZmPpBKMwrQ==", "requires": { - "@types/eslint": "*", - "@types/estree": "*" + "@project-sunbird/telemetry-sdk": "0.0.26", + "inversify": "^5.0.1", + "jsonld": "^5.2.0", + "jsonld-signatures": "^6.0.0", + "jszip": "^3.7.1", + "node-fetch": "2.6.5", + "qs": "^6.9.4", + "reflect-metadata": "^0.1.13", + "whatwg-fetch": "^3.1.0" } }, - "@types/estree": { - "version": "0.0.50", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", - "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", - "dev": true + "@project-sunbird/sb-styles": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@project-sunbird/sb-styles/-/sb-styles-0.0.7.tgz", + "integrity": "sha512-XirxDLdQnaKJC+tFh4IAD05ULHS7DE9ZkNsPRHglWzly8erTXe6M1DAL+XWKYVFLf+GK9U6HVKlvvxIUpRCiVw==" }, - "@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, + "@project-sunbird/sunbird-player-sdk-v9": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/@project-sunbird/sunbird-player-sdk-v9/-/sunbird-player-sdk-v9-4.8.0.tgz", + "integrity": "sha512-8qj3Gg027eT6dqLw9iPGJ1GApoytvnglHSOb7p5E0lwZH+pneGh1iESP0avX98klg5CkHn0Sh+V/m4tP0/f4Gw==", "requires": { - "@types/minimatch": "*", - "@types/node": "*" + "ally.js": "1.4.1" } }, - "@types/jasmine": { - "version": "3.6.11", - "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-3.6.11.tgz", - "integrity": "sha512-S6pvzQDvMZHrkBz2Mcn/8Du7cpr76PlRJBAoHnSDNbulULsH5dp0Gns+WRyNX5LHejz/ljxK4/vIHK/caHt6SQ==", - "dev": true - }, - "@types/jasminewd2": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@types/jasminewd2/-/jasminewd2-2.0.10.tgz", - "integrity": "sha512-J7mDz7ovjwjc+Y9rR9rY53hFWKATcIkrr9DwQWmOas4/pnIPJTXawnzjwpHm3RSxz/e3ZVUvQ7cRbd5UQLo10g==", - "dev": true, + "@project-sunbird/sunbird-quml-player-v9": { + "version": "4.9.7", + "resolved": "https://registry.npmjs.org/@project-sunbird/sunbird-quml-player-v9/-/sunbird-quml-player-v9-4.9.7.tgz", + "integrity": "sha512-mZQmevigSrvVG6JsIixRfbnr1+eh0AuR8dcZU6jXprpm4Z+qceCJUr9P5mELdB9pHsrm7VFMGPLqgodbqz4Hag==", "requires": { - "@types/jasmine": "*" + "@project-sunbird/sunbird-player-sdk-v9": "4.8.0" } }, - "@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", - "dev": true - }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, - "@types/node": { - "version": "8.9.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.9.5.tgz", - "integrity": "sha512-jRHfWsvyMtXdbhnz5CVHxaBgnV6duZnPlQuRSo/dm/GnmikNcmZhxIES4E9OZjUmQ8C+HCl4KJux+cXN/ErGDQ==", - "dev": true - }, - "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "dev": true - }, - "@types/resolve": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", - "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", - "dev": true, + "@project-sunbird/telemetry-sdk": { + "version": "0.0.26", + "resolved": "https://registry.npmjs.org/@project-sunbird/telemetry-sdk/-/telemetry-sdk-0.0.26.tgz", + "integrity": "sha512-8r8tf+YN+z8A4KHBmL8/wxDIKGkASDHMMxyhlI9/iWv83sueoN5qHB6QnqgtIRyEdFjt4Tum5u18/oB71Bb0PQ==", "requires": { - "@types/node": "*" - } - }, - "@types/selenium-webdriver": { - "version": "3.0.20", - "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-3.0.20.tgz", - "integrity": "sha512-6d8Q5fqS9DWOXEhMDiF6/2FjyHdmP/jSTAUyeQR7QwrFeNmYyzmvGxD5aLIHL445HjWgibs0eAig+KPnbaesXA==", - "dev": true - }, - "@types/source-list-map": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", - "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", - "dev": true - }, - "@types/video.js": { - "version": "7.3.11", - "resolved": "https://registry.npmjs.org/@types/video.js/-/video.js-7.3.11.tgz", - "integrity": "sha512-9KpJkt6zsy6xRiHZjzjKxCEySqt3TgPgl0XegszwJfaLO4+n4rELS5rbsHUgLJxZaMgbJtyTPXk1HkCsJ5kRiA==", - "dev": true - }, - "@types/webpack-sources": { - "version": "0.1.9", - "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.9.tgz", - "integrity": "sha512-bvzMnzqoK16PQIC8AYHNdW45eREJQMd6WG/msQWX5V2+vZmODCOPb4TJcbgRljTZZTwTM4wUMcsI8FftNA7new==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/source-list-map": "*", - "source-map": "^0.6.1" - } - }, - "@videojs/http-streaming": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/@videojs/http-streaming/-/http-streaming-2.13.1.tgz", - "integrity": "sha512-1x3fkGSPyL0+iaS3/lTvfnPTtfqzfgG+ELQtPPtTvDwqGol9Mx3TNyZwtSTdIufBrqYRn7XybB/3QNMsyjq13A==", - "requires": { - "@babel/runtime": "^7.12.5", - "@videojs/vhs-utils": "3.0.4", - "aes-decrypter": "3.1.2", - "global": "^4.4.0", - "m3u8-parser": "4.7.0", - "mpd-parser": "0.21.0", - "mux.js": "6.0.1", - "video.js": "^6 || ^7" - }, - "dependencies": { - "@videojs/vhs-utils": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@videojs/vhs-utils/-/vhs-utils-3.0.4.tgz", - "integrity": "sha512-hui4zOj2I1kLzDgf8QDVxD3IzrwjS/43KiS8IHQO0OeeSsb4pB/lgNt1NG7Dv0wMQfCccUpMVLGcK618s890Yg==", - "requires": { - "@babel/runtime": "^7.12.5", - "global": "^4.4.0", - "url-toolkit": "^2.2.1" - } - } - } - }, - "@videojs/vhs-utils": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@videojs/vhs-utils/-/vhs-utils-3.0.5.tgz", - "integrity": "sha512-PKVgdo8/GReqdx512F+ombhS+Bzogiofy1LgAj4tN8PfdBx3HSS7V5WfJotKTqtOWGwVfSWsrYN/t09/DSryrw==", - "requires": { - "@babel/runtime": "^7.12.5", - "global": "^4.4.0", - "url-toolkit": "^2.2.1" - } - }, - "@videojs/xhr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@videojs/xhr/-/xhr-2.6.0.tgz", - "integrity": "sha512-7J361GiN1tXpm+gd0xz2QWr3xNWBE+rytvo8J3KuggFaLg+U37gZQ2BuPLcnkfGffy2e+ozY70RHC8jt7zjA6Q==", - "requires": { - "@babel/runtime": "^7.5.5", - "global": "~4.4.0", - "is-function": "^1.0.1" - } - }, - "@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", - "dev": true, - "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", - "dev": true - }, - "@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", - "dev": true - }, - "@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", - "dev": true - }, - "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", - "dev": true, - "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", - "dev": true - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", - "dev": true, - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", - "dev": true, - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", - "dev": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "@xmldom/xmldom": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz", - "integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==" - }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "@yarnpkg/lockfile": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", - "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", - "dev": true - }, - "abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "dev": true - }, - "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 - }, - "abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", - "requires": { - "event-target-shim": "^5.0.0" - } - }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", - "dev": true - }, - "acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", - "dev": true - }, - "adjust-sourcemap-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", - "dev": true, - "requires": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" - } - }, - "adm-zip": { - "version": "0.4.16", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.16.tgz", - "integrity": "sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==", - "dev": true - }, - "aes-decrypter": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/aes-decrypter/-/aes-decrypter-3.1.2.tgz", - "integrity": "sha512-42nRwfQuPRj9R1zqZBdoxnaAmnIFyDi0MNyTVhjdFOd8fifXKKRfwIHIZ6AMn1or4x5WONzjwRTbTWcsIQ0O4A==", - "requires": { - "@babel/runtime": "^7.12.5", - "@videojs/vhs-utils": "^3.0.0", - "global": "^4.4.0", - "pkcs7": "^1.0.4" - } - }, - "after": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", - "integrity": "sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA==" - }, - "agent-base": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", - "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", - "dev": true, - "requires": { - "es6-promisify": "^5.0.0" - } - }, - "agentkeepalive": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", - "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", - "dev": true, - "requires": { - "debug": "^4.1.0", - "depd": "^1.1.2", - "humanize-ms": "^1.2.1" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", - "dev": true - }, - "ajv-formats": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.0.tgz", - "integrity": "sha512-USH2jBb+C/hIpwD2iRjp0pe0k+MvzG0mlSn/FIdCgQhUb9ALPRjt2KIQdfZDS9r0ZIeUAg7gOu9KL0PFqGqr5Q==", - "dev": true, - "requires": { - "ajv": "^8.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } - } - }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true - }, - "ally.js": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/ally.js/-/ally.js-1.4.1.tgz", - "integrity": "sha512-ZewdfuwP6VewtMN36QY0gmiyvBfMnmEaNwbVu2nTS6zRt069viTgkYgaDiqu6vRJ1VJCriNqV0jGMu44R8zNbA==", - "requires": { - "css.escape": "^1.5.0", - "platform": "1.3.3" - } - }, - "ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "dev": true - }, - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "requires": { - "type-fest": "^0.21.3" - }, - "dependencies": { - "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true - } - } - }, - "ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", - "dev": true - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" + "grunt-karma": "^0.12.2", + "karma": "^3.0.0" }, "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "base64-arraybuffer": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz", + "integrity": "sha512-437oANT9tP582zZMwSvZGy2nmSeAb8DW2me3y+Uv1Wp2Rulr8Mqlyrv3E7MLxmsiaPSMMDmiDVzgE+e8zlMx9g==" + }, + "base64id": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz", + "integrity": "sha512-rz8L+d/xByiB/vLVftPkyY215fqNrmasrcJsYkVcm4TgJNz+YXKrFaFAWibSaHkiKoSgMDCb+lipOIRQNGYesw==" + }, + "component-emitter": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", + "integrity": "sha512-jPatnhd33viNplKjqXKRkGU345p263OIWzDL2wH3LGIGp5Kojo+uXizHmOADRvhGFFTnJqX3jBAKP6vvmSDKcA==" + }, + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==" + }, + "date-format": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-1.2.0.tgz", + "integrity": "sha512-lAJqBmFzCLcDJdI9cEnJ7loSkLTh1PbIgZUndlzvYbf6NyFEr5n9rQhOwr6CIGwZqyQ3sYeQQiP9NOVQmgmRMA==" + }, + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "requires": { - "remove-trailing-separator": "^1.0.1" + "ms": "^2.1.1" } - } - } - }, - "app-root-path": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-3.1.0.tgz", - "integrity": "sha512-biN3PwB2gUtjaYy/isrU3aNWI5w+fAfvHkSvCKeQGxhmYpwKFUxudR3Yya+KqVRHBmEDYh+/lTozYCFbmzX4nA==", - "dev": true - }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, + }, + "engine.io": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.2.1.tgz", + "integrity": "sha512-+VlKzHzMhaU+GsCIg4AoXF1UdDFjHHwMmMKqMJNDNLlUlejz58FCy4LBqB2YVJskHGYl06BatYWKP2TVdVXE5w==", "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "accepts": "~1.3.4", + "base64id": "1.0.0", + "cookie": "0.3.1", + "debug": "~3.1.0", + "engine.io-parser": "~2.1.0", + "ws": "~3.3.1" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } } - } - } - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "aria-query": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz", - "integrity": "sha512-majUxHgLehQTeSA+hClx+DY09OVUqG3GtezWkF1krgLGNdlDu9l9V8DaqNMWbq4Eddc8wsyDA0hpDUtnYxQEXw==", - "dev": true, - "requires": { - "ast-types-flow": "0.0.7", - "commander": "^2.11.0" - } - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==" - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==" - }, - "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 - }, - "array-slice": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", - "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==" - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==" - }, - "arraybuffer.slice": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz", - "integrity": "sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==" - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true - }, - "asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==" - }, - "ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", - "dev": true - }, - "async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dev": true, - "requires": { - "lodash": "^4.17.14" - }, - "dependencies": { + }, + "engine.io-client": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz", + "integrity": "sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw==", + "requires": { + "component-emitter": "1.2.1", + "component-inherit": "0.0.3", + "debug": "~3.1.0", + "engine.io-parser": "~2.1.1", + "has-cors": "1.1.0", + "indexof": "0.0.1", + "parseqs": "0.0.5", + "parseuri": "0.0.5", + "ws": "~3.3.1", + "xmlhttprequest-ssl": "~1.5.4", + "yeast": "0.1.2" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "engine.io-parser": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.3.tgz", + "integrity": "sha512-6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA==", + "requires": { + "after": "0.8.2", + "arraybuffer.slice": "~0.0.7", + "base64-arraybuffer": "0.1.5", + "blob": "0.0.5", + "has-binary2": "~1.0.2" + } + }, + "isarray": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz", + "integrity": "sha512-c2cu3UxbI+b6kR3fy0nRnAhodsvR9dx7U5+znCOzdj6IfP3upFURTr0Xl5BlQZNKZjEtxrmVyfSdeE3O57smoQ==" + }, + "isbinaryfile": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", + "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", + "requires": { + "buffer-alloc": "^1.2.0" + } + }, + "karma": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/karma/-/karma-3.1.4.tgz", + "integrity": "sha512-31Vo8Qr5glN+dZEVIpnPCxEGleqE0EY6CtC2X9TagRV3rRQ3SNrvfhddICkJgUK3AgqpeKSZau03QumTGhGoSw==", + "requires": { + "bluebird": "^3.3.0", + "body-parser": "^1.16.1", + "chokidar": "^2.0.3", + "colors": "^1.1.0", + "combine-lists": "^1.0.0", + "connect": "^3.6.0", + "core-js": "^2.2.0", + "di": "^0.0.1", + "dom-serialize": "^2.2.0", + "expand-braces": "^0.1.1", + "flatted": "^2.0.0", + "glob": "^7.1.1", + "graceful-fs": "^4.1.2", + "http-proxy": "^1.13.0", + "isbinaryfile": "^3.0.0", + "lodash": "^4.17.5", + "log4js": "^3.0.0", + "mime": "^2.3.1", + "minimatch": "^3.0.2", + "optimist": "^0.6.1", + "qjobs": "^1.1.4", + "range-parser": "^1.2.0", + "rimraf": "^2.6.0", + "safe-buffer": "^5.0.1", + "socket.io": "2.1.1", + "source-map": "^0.6.1", + "tmp": "0.0.33", + "useragent": "2.3.0" + } + }, "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - } - } - }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" - }, - "async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" - }, - "autoprefixer": { - "version": "9.8.8", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", - "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", - "dev": true, - "requires": { - "browserslist": "^4.12.0", - "caniuse-lite": "^1.0.30001109", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "picocolors": "^0.2.1", - "postcss": "^7.0.32", - "postcss-value-parser": "^4.1.0" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, + "log4js": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-3.0.6.tgz", + "integrity": "sha512-ezXZk6oPJCWL483zj64pNkMuY/NcRX5MPiB0zE6tjZM137aeusrOnW1ecxgF9cmwMWkBMhjteQxBPoZBh9FDxQ==", "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "circular-json": "^0.5.5", + "date-format": "^1.2.0", + "debug": "^3.1.0", + "rfdc": "^1.1.2", + "streamroller": "0.7.0" } - } - } - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" - }, - "aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" - }, - "axobject-query": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.0.2.tgz", - "integrity": "sha512-MCeek8ZH7hKyO1rWUbKNQBbl4l2eY0ntk7OGi+q0RlafrCnfPxC06WZA+uebCfmYp4mNU9jRBP1AhGyf8+W3ww==", - "dev": true, - "requires": { - "ast-types-flow": "0.0.7" - } - }, - "babel-loader": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", - "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", - "dev": true, - "requires": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^1.4.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "parseqs": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz", + "integrity": "sha512-B3Nrjw2aL7aI4TDujOzfA4NsEc4u1lVcIRE0xesutH8kjeWF70uk+W5cBlIQx04zUH9NTBvuN36Y9xLRPK6Jjw==", + "requires": { + "better-assert": "~1.0.0" + } + }, + "parseuri": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz", + "integrity": "sha512-ijhdxJu6l5Ru12jF0JvzXVPvsC+VibqeaExlNoMhWN6VQ79PGjkmc7oA4W1lp00sFkNyj0fx6ivPLdV51/UMog==", + "requires": { + "better-assert": "~1.0.0" + } + }, + "socket.io": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz", + "integrity": "sha512-rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA==", + "requires": { + "debug": "~3.1.0", + "engine.io": "~3.2.0", + "has-binary2": "~1.0.2", + "socket.io-adapter": "~1.1.0", + "socket.io-client": "2.1.1", + "socket.io-parser": "~3.2.0" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "socket.io-client": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz", + "integrity": "sha512-jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ==", + "requires": { + "backo2": "1.0.2", + "base64-arraybuffer": "0.1.5", + "component-bind": "1.0.0", + "component-emitter": "1.2.1", + "debug": "~3.1.0", + "engine.io-client": "~3.2.0", + "has-binary2": "~1.0.2", + "has-cors": "1.1.0", + "indexof": "0.0.1", + "object-component": "0.0.3", + "parseqs": "0.0.5", + "parseuri": "0.0.5", + "socket.io-parser": "~3.2.0", + "to-array": "0.1.4" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "socket.io-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz", + "integrity": "sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA==", "requires": { - "minimist": "^1.2.0" + "component-emitter": "1.2.1", + "debug": "~3.1.0", + "isarray": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } } }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "dev": true, + "streamroller": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz", + "integrity": "sha512-WREzfy0r0zUqp3lGO096wRuUp7ho1X6uo/7DJfTlEi0Iv/4gT7YHqXDjKC2ioVGBZtE8QzsQD9nx1nIuoZ57jQ==", "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" + "date-format": "^1.2.0", + "debug": "^3.1.0", + "mkdirp": "^0.5.1", + "readable-stream": "^2.3.0" } }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, + "ws": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", + "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", "requires": { - "semver": "^6.0.0" + "async-limiter": "~1.0.0", + "safe-buffer": "~5.1.0", + "ultron": "~1.1.0" + }, + "dependencies": { + "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==" + } } + }, + "xmlhttprequest-ssl": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz", + "integrity": "sha512-/bFPLUgJrfGUL10AIv4Y7/CUt6so9CLtB/oFxQSHseSDNNCdC6vwwKEqwLN6wNPBg9YWXAiMu8jkf6RPRS/75Q==" } } }, - "babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", - "dev": true, - "requires": { - "object.assign": "^4.1.0" - } - }, - "babel-plugin-polyfill-corejs2": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.3.tgz", - "integrity": "sha512-NDZ0auNRzmAfE1oDDPW2JhzIMXUk+FFe2ICejmt5T4ocKgiQx3e0VCRx9NCAidcMtL2RUZaWtXnmjTCkx0tcbA==", + "@rollup/plugin-json": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz", + "integrity": "sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==", "dev": true, "requires": { - "@babel/compat-data": "^7.13.11", - "@babel/helper-define-polyfill-provider": "^0.2.4", - "semver": "^6.1.1" + "@rollup/pluginutils": "^3.0.8" } }, - "babel-plugin-polyfill-corejs3": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz", - "integrity": "sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==", + "@rollup/plugin-node-resolve": { + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz", + "integrity": "sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==", "dev": true, "requires": { - "@babel/helper-define-polyfill-provider": "^0.2.2", - "core-js-compat": "^3.16.2" + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "deepmerge": "^4.2.2", + "is-builtin-module": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.19.0" } }, - "babel-plugin-polyfill-regenerator": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.3.tgz", - "integrity": "sha512-JVE78oRZPKFIeUqFGrSORNzQnrDwZR16oiWeGM8ZyjBn2XAT5OjP+wXx5ESuo33nUsFUEJYjtklnsKbxW5L+7g==", + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", "dev": true, "requires": { - "@babel/helper-define-polyfill-provider": "^0.2.4" - } - }, - "backo2": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", - "integrity": "sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA==" - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" }, "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true } } }, - "base-x": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz", - "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true - }, - "base64id": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", - "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", - "dev": true - }, - "base64url": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/base64url/-/base64url-3.0.1.tgz", - "integrity": "sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==" - }, - "base64url-universal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/base64url-universal/-/base64url-universal-1.1.0.tgz", - "integrity": "sha512-WyftvZqye29YQ10ZnuiBeEj0lk8SN8xHU9hOznkLc85wS1cLTp6RpzlMrHxMPD9nH7S55gsBqMqgGyz93rqmkA==", - "requires": { - "base64url": "^3.0.0" - } - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "better-assert": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", - "integrity": "sha512-bYeph2DFlpK1XmGs6fvlLRUN29QISM3GBuUwSFsMY2XRx4AvC0WNCS57j4c/xGrK2RS24C1w3YoBOsw9fT46tQ==", - "requires": { - "callsite": "1.0.0" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" - }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "optional": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "@schematics/angular": { + "version": "14.2.10", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-14.2.10.tgz", + "integrity": "sha512-YFTc/9QJdx422XcApizEcVLKoyknu8b9zHIlAepZCu7WkV8GPT0hvVEHQ7KBWys5aQ7pPZMT0JpZLeAz0F2xYQ==", "dev": true, "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } + "@angular-devkit/core": "14.2.10", + "@angular-devkit/schematics": "14.2.10", + "jsonc-parser": "3.1.0" } }, - "blob": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz", - "integrity": "sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==" + "@socket.io/component-emitter": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", + "integrity": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==", + "dev": true }, - "blocking-proxy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/blocking-proxy/-/blocking-proxy-1.0.1.tgz", - "integrity": "sha512-KE8NFMZr3mN2E0HcvCgRtX7DjhiIQrwle+nSVJVC/yqFb9+xznHl2ZcoBp2L9qzkI4t4cBFJ1efXF8Dwi132RA==", + "@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true + }, + "@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, "requires": { - "minimist": "^1.2.0" + "@types/connect": "*", + "@types/node": "*" } }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + "@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dev": true, + "requires": { + "@types/node": "*" + } }, - "body-parser": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", - "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.10.3", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", - "requires": { - "side-channel": "^1.0.4" - } - } + "@types/node": "*" } }, - "bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", + "@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", "dev": true, "requires": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", - "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" + "@types/express-serve-static-core": "*", + "@types/node": "*" } }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "@types/cookie": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==", "dev": true }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } + "@types/cors": { + "version": "2.8.12", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", + "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==", + "dev": true }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "@types/eslint": { + "version": "8.4.10", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz", + "integrity": "sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==", + "dev": true, "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } + "@types/estree": "*", + "@types/json-schema": "*" } }, - "browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "@types/eslint": "*", + "@types/estree": "*" } }, - "browserstack": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/browserstack/-/browserstack-1.6.1.tgz", - "integrity": "sha512-GxtFjpIaKdbAyzHfFDKixKO8IBT7wR3NjbzrGc78nNs/Ciys9wU3/nBtsqsWv5nDSrdI5tz0peKuzCPuNXNUiw==", + "@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true + }, + "@types/express": { + "version": "4.17.16", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.16.tgz", + "integrity": "sha512-LkKpqRZ7zqXJuvoELakaFYuETHjZkSol8EV6cNnyishutDBCCdv6+dsKPbKkCcIk57qRphOLY5sEgClw1bO3gA==", "dev": true, "requires": { - "https-proxy-agent": "^2.2.1" + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.31", + "@types/qs": "*", + "@types/serve-static": "*" } }, - "bs58": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", - "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==", + "@types/express-serve-static-core": { + "version": "4.17.33", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", + "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", + "dev": true, "requires": { - "base-x": "^3.0.2" + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" } }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "@types/http-proxy": { + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", "dev": true, "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "@types/node": "*" } }, - "buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "@types/jasmine": { + "version": "3.6.11", + "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-3.6.11.tgz", + "integrity": "sha512-S6pvzQDvMZHrkBz2Mcn/8Du7cpr76PlRJBAoHnSDNbulULsH5dp0Gns+WRyNX5LHejz/ljxK4/vIHK/caHt6SQ==", + "dev": true + }, + "@types/jasminewd2": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/@types/jasminewd2/-/jasminewd2-2.0.10.tgz", + "integrity": "sha512-J7mDz7ovjwjc+Y9rR9rY53hFWKATcIkrr9DwQWmOas4/pnIPJTXawnzjwpHm3RSxz/e3ZVUvQ7cRbd5UQLo10g==", + "dev": true, "requires": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" + "@types/jasmine": "*" } }, - "buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true }, - "buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==" + "@types/mime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", + "dev": true }, - "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==", + "@types/node": { + "version": "8.9.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-8.9.5.tgz", + "integrity": "sha512-jRHfWsvyMtXdbhnz5CVHxaBgnV6duZnPlQuRSo/dm/GnmikNcmZhxIES4E9OZjUmQ8C+HCl4KJux+cXN/ErGDQ==", "dev": true }, - "buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", "dev": true }, - "builtin-modules": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", "dev": true }, - "builtins": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", - "integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==", + "@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", "dev": true }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "dev": true, + "requires": { + "@types/node": "*" + } }, - "cacache": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.2.0.tgz", - "integrity": "sha512-uKoJSHmnrqXgthDFx/IU6ED/5xd+NNGe+Bb+kLZy7Ku4P+BaiWEUflAKPZ7eAzsYGcsAGASJZsybXp+quEcHTw==", + "@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true + }, + "@types/selenium-webdriver": { + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-3.0.20.tgz", + "integrity": "sha512-6d8Q5fqS9DWOXEhMDiF6/2FjyHdmP/jSTAUyeQR7QwrFeNmYyzmvGxD5aLIHL445HjWgibs0eAig+KPnbaesXA==", + "dev": true + }, + "@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", "dev": true, "requires": { - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" + "@types/express": "*" + } + }, + "@types/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", + "dev": true, + "requires": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/video.js": { + "version": "7.3.11", + "resolved": "https://registry.npmjs.org/@types/video.js/-/video.js-7.3.11.tgz", + "integrity": "sha512-9KpJkt6zsy6xRiHZjzjKxCEySqt3TgPgl0XegszwJfaLO4+n4rELS5rbsHUgLJxZaMgbJtyTPXk1HkCsJ5kRiA==", + "dev": true + }, + "@types/ws": { + "version": "8.5.4", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz", + "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.27.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.27.1.tgz", + "integrity": "sha512-6dM5NKT57ZduNnJfpY81Phe9nc9wolnMCnknb1im6brWi1RYv84nbMS3olJa27B6+irUVV1X/Wb+Am0FjJdGFw==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "5.27.1", + "@typescript-eslint/type-utils": "5.27.1", + "@typescript-eslint/utils": "5.27.1", + "debug": "^4.3.4", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.2.0", + "regexpp": "^3.2.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -4012,19 +3756,34 @@ "yallist": "^4.0.0" } }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { - "glob": "^7.1.3" + "lru-cache": "^6.0.0" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" } }, "yallist": { @@ -4035,301 +3794,169 @@ } } }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsite": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", - "integrity": "sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ==" - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "@typescript-eslint/experimental-utils": { + "version": "5.27.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.27.1.tgz", + "integrity": "sha512-Vd8uewIixGP93sEnmTRIH6jHZYRQRkGPDPpapACMvitJKX8335VHNyqKTE+mZ+m3E2c5VznTZfSsSsS5IF7vUA==", "dev": true, "requires": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "@typescript-eslint/utils": "5.27.1" } }, - "caniuse-lite": { - "version": "1.0.30001418", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001418.tgz", - "integrity": "sha512-oIs7+JL3K9JRQ3jPZjlH6qyYDp+nBTCais7hjh0s+fuBwufc7uZ7hPYMXrDOJhV360KGMTcczMRObk0/iMqZRg==", - "dev": true - }, - "canonical-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/canonical-path/-/canonical-path-1.0.0.tgz", - "integrity": "sha512-feylzsbDxi1gPZ1IjystzIQZagYYLvfKrSuygUCgf7z6x790VEzze5QEkdSV1U58RA7Hi0+v6fv4K54atOzATg==", - "dev": true - }, - "canonicalize": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/canonicalize/-/canonicalize-1.0.8.tgz", - "integrity": "sha512-0CNTVCLZggSh7bc5VkX5WWPWO+cyZbNd07IHIsSXLia/eAq+r836hgk+8BKoEh7949Mda87VUOitx5OddVj64A==" - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "@typescript-eslint/parser": { + "version": "5.27.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.27.1.tgz", + "integrity": "sha512-7Va2ZOkHi5NP+AZwb5ReLgNF6nWLGTeUJfxdkVUAPPSaAdbWNnFZzLZ4EGGmmiCTg+AwlbE1KyUYTBglosSLHQ==", "dev": true, "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "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==", - "dev": true - }, - "circular-dependency-plugin": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.2.2.tgz", - "integrity": "sha512-g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ==", - "dev": true - }, - "circular-json": { - "version": "0.5.9", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.9.tgz", - "integrity": "sha512-4ivwqHpIFJZBuhN3g/pEcdbnGUywkBblloGbkglyloVjjR3uT6tieI89MVOfbP2tHX5sgb01FuLgAOzebNlJNQ==" - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" + "@typescript-eslint/scope-manager": "5.27.1", + "@typescript-eslint/types": "5.27.1", + "@typescript-eslint/typescript-estree": "5.27.1", + "debug": "^4.3.4" }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, "requires": { - "is-descriptor": "^0.1.0" + "ms": "2.1.2" } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true } } }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true - }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "@typescript-eslint/scope-manager": { + "version": "5.27.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.27.1.tgz", + "integrity": "sha512-fQEOSa/QroWE6fAEg+bJxtRZJTH8NTskggybogHt4H9Da8zd4cJji76gA5SBlR0MgtwF7rebxTbDKB49YUCpAg==", "dev": true, "requires": { - "restore-cursor": "^3.1.0" + "@typescript-eslint/types": "5.27.1", + "@typescript-eslint/visitor-keys": "5.27.1" } }, - "cli-spinners": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", - "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", - "dev": true - }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, - "cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "@typescript-eslint/type-utils": { + "version": "5.27.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.27.1.tgz", + "integrity": "sha512-+UC1vVUWaDHRnC2cQrCJ4QtVjpjjCgjNFpg8b03nERmkHv9JV9X5M19D7UFMd+/G7T/sgFwX2pGmWK38rqyvXw==", "dev": true, "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" + "@typescript-eslint/utils": "5.27.1", + "debug": "^4.3.4", + "tsutils": "^3.21.0" }, "dependencies": { - "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, "requires": { - "ansi-regex": "^4.1.0" + "tslib": "^1.8.1" } } } }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "@typescript-eslint/types": { + "version": "5.27.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.27.1.tgz", + "integrity": "sha512-LgogNVkBhCTZU/m8XgEYIWICD6m4dmEDbKXESCbqOXfKZxRKeqpiJXQIErv66sdopRKZPo5l32ymNqibYEH/xg==", "dev": true }, - "clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - } - }, - "codelyzer": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/codelyzer/-/codelyzer-6.0.2.tgz", - "integrity": "sha512-v3+E0Ucu2xWJMOJ2fA/q9pDT/hlxHftHGPUay1/1cTgyPV5JTHFdO9hqo837Sx2s9vKBMTt5gO+lhF95PO6J+g==", + "@typescript-eslint/typescript-estree": { + "version": "5.27.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.1.tgz", + "integrity": "sha512-DnZvvq3TAJ5ke+hk0LklvxwYsnXpRdqUY5gaVS0D4raKtbznPz71UJGnPTHEFo0GDxqLOLdMkkmVZjSpET1hFw==", "dev": true, "requires": { - "@angular/compiler": "9.0.0", - "@angular/core": "9.0.0", - "app-root-path": "^3.0.0", - "aria-query": "^3.0.0", - "axobject-query": "2.0.2", - "css-selector-tokenizer": "^0.7.1", - "cssauron": "^1.4.0", - "damerau-levenshtein": "^1.0.4", - "rxjs": "^6.5.3", - "semver-dsl": "^1.0.1", - "source-map": "^0.5.7", - "sprintf-js": "^1.1.2", - "tslib": "^1.10.0", - "zone.js": "~0.10.3" + "@typescript-eslint/types": "5.27.1", + "@typescript-eslint/visitor-keys": "5.27.1", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, "dependencies": { - "@angular/compiler": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-9.0.0.tgz", - "integrity": "sha512-ctjwuntPfZZT2mNj2NDIVu51t9cvbhl/16epc5xEwyzyDt76pX9UgwvY+MbXrf/C/FWwdtmNtfP698BKI+9leQ==", - "dev": true + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } }, - "@angular/core": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-9.0.0.tgz", - "integrity": "sha512-6Pxgsrf0qF9iFFqmIcWmjJGkkCaCm6V5QNnxMy2KloO3SDq6QuMVRbN9RtC8Urmo25LP+eZ6ZgYqFYpdD8Hd9w==", - "dev": true + "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, + "requires": { + "yallist": "^4.0.0" + } }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "sprintf-js": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", - "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true }, "tslib": { @@ -4338,1934 +3965,2246 @@ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, - "zone.js": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.10.3.tgz", - "integrity": "sha512-LXVLVEq0NNOqK/fLJo3d0kfzd4sxwn2/h67/02pjCjfKDxgx1i9QqpvtHD8CrBnSSwMw5+dy11O7FRX5mkO7Cg==", + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true } } }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "@typescript-eslint/utils": { + "version": "5.27.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.27.1.tgz", + "integrity": "sha512-mZ9WEn1ZLDaVrhRaYgzbkXBkTPghPFsup8zDbbsYTxC5OmqrFE7skkKS/sraVsLP3TcT3Ki5CSyEFBRkLH/H/w==", + "dev": true, "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.27.1", + "@typescript-eslint/types": "5.27.1", + "@typescript-eslint/typescript-estree": "5.27.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" } }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "@typescript-eslint/visitor-keys": { + "version": "5.27.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.1.tgz", + "integrity": "sha512-xYs6ffo01nhdJgPieyk7HAOpjhTsx7r/oB9LWEhwAXgwn33tkr+W8DI2ChboqhZlC4q3TC6geDYPoiX8ROqyOQ==", "dev": true, "requires": { - "color-name": "1.1.3" + "@typescript-eslint/types": "5.27.1", + "eslint-visitor-keys": "^3.3.0" } }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true - }, - "colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "colorette": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", - "dev": true - }, - "colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" - }, - "combine-lists": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/combine-lists/-/combine-lists-1.0.1.tgz", - "integrity": "sha512-4Mi0V7N48B9KzC8Zl/U7wiWuxMFEHf44N3/PSoAvWDu8IOPrddNo1y1tC/kXbP7IvVMhgCFMMNzgKb0pWoin9w==", + "@videojs/http-streaming": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/@videojs/http-streaming/-/http-streaming-2.13.1.tgz", + "integrity": "sha512-1x3fkGSPyL0+iaS3/lTvfnPTtfqzfgG+ELQtPPtTvDwqGol9Mx3TNyZwtSTdIufBrqYRn7XybB/3QNMsyjq13A==", "requires": { - "lodash": "^4.5.0" + "@babel/runtime": "^7.12.5", + "@videojs/vhs-utils": "3.0.4", + "aes-decrypter": "3.1.2", + "global": "^4.4.0", + "m3u8-parser": "4.7.0", + "mpd-parser": "0.21.0", + "mux.js": "6.0.1", + "video.js": "^6 || ^7" }, "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "@videojs/vhs-utils": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@videojs/vhs-utils/-/vhs-utils-3.0.4.tgz", + "integrity": "sha512-hui4zOj2I1kLzDgf8QDVxD3IzrwjS/43KiS8IHQO0OeeSsb4pB/lgNt1NG7Dv0wMQfCccUpMVLGcK618s890Yg==", + "requires": { + "@babel/runtime": "^7.12.5", + "global": "^4.4.0", + "url-toolkit": "^2.2.1" + } } } }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "@videojs/vhs-utils": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@videojs/vhs-utils/-/vhs-utils-3.0.5.tgz", + "integrity": "sha512-PKVgdo8/GReqdx512F+ombhS+Bzogiofy1LgAj4tN8PfdBx3HSS7V5WfJotKTqtOWGwVfSWsrYN/t09/DSryrw==", "requires": { - "delayed-stream": "~1.0.0" + "@babel/runtime": "^7.12.5", + "global": "^4.4.0", + "url-toolkit": "^2.2.1" } }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true - }, - "component-bind": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz", - "integrity": "sha512-WZveuKPeKAG9qY+FkYDeADzdHyTYdIboXS59ixDeRJL5ZhxpqUnxSOwop4FQjMsiYm3/Or8cegVbpAHNA7pHxw==" - }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" - }, - "component-inherit": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz", - "integrity": "sha512-w+LhYREhatpVqTESyGFg3NlP6Iu0kEKUHETY9GoZP/pQyW4mHFZuFWRUCIqVPZ36ueVLtoOEZaAqbCF2RDndaA==" - }, - "compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "dev": true, + "@videojs/xhr": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@videojs/xhr/-/xhr-2.6.0.tgz", + "integrity": "sha512-7J361GiN1tXpm+gd0xz2QWr3xNWBE+rytvo8J3KuggFaLg+U37gZQ2BuPLcnkfGffy2e+ozY70RHC8jt7zjA6Q==", "requires": { - "mime-db": ">= 1.43.0 < 2" + "@babel/runtime": "^7.5.5", + "global": "~4.4.0", + "is-function": "^1.0.1" } }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", "dev": true, "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" } }, - "concat": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/concat/-/concat-1.0.3.tgz", - "integrity": "sha512-f/ZaH1aLe64qHgTILdldbvyfGiGF4uzeo9IuXUloIOLQzFmIPloy9QbZadNsuVv0j5qbKQvQb/H/UYf2UsKTpw==", - "dev": true, - "requires": { - "commander": "^2.9.0" - } + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + "@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true }, - "connect": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", - "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, "requires": { - "debug": "2.6.9", - "finalhandler": "1.1.2", - "parseurl": "~1.3.3", - "utils-merge": "1.0.1" + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" } }, - "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==", + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", "dev": true }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", "dev": true, "requires": { - "safe-buffer": "5.2.1" + "@xtuc/ieee754": "^1.2.0" } }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - }, - "convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", "dev": true, "requires": { - "safe-buffer": "~5.1.1" - }, - "dependencies": { - "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 - } + "@xtuc/long": "4.2.2" } }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", "dev": true }, - "copy-anything": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", - "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", "dev": true, "requires": { - "is-what": "^3.14.1" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" } }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==" + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } }, - "copy-webpack-plugin": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.0.1.tgz", - "integrity": "sha512-14gHKKdYIxF84jCEgPgYXCPpldbwpxxLbCmA7LReY7gvbaT555DgeBWBgBZM116tv/fO6RRJrsivBqRyRlukhw==", + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", "dev": true, "requires": { - "fast-glob": "^3.2.5", - "glob-parent": "^6.0.0", - "globby": "^11.0.3", - "normalize-path": "^3.0.0", - "p-limit": "^3.1.0", - "schema-utils": "^3.0.0", - "serialize-javascript": "^6.0.0" - }, - "dependencies": { - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" } }, - "copyfiles": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/copyfiles/-/copyfiles-2.4.1.tgz", - "integrity": "sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==", + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", "dev": true, "requires": { - "glob": "^7.0.5", - "minimatch": "^3.0.3", - "mkdirp": "^1.0.4", - "noms": "0.0.0", - "through2": "^2.0.1", - "untildify": "^4.0.0", - "yargs": "^16.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "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, - "requires": { - "color-convert": "^2.0.1" - } - }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "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, - "requires": { - "color-name": "~1.1.4" - } - }, - "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 - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "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, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true - }, - "yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "requires": { - "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" - } - }, - "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 - } + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" } }, - "core-js": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", - "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + "@xmldom/xmldom": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz", + "integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==" }, - "core-js-compat": { - "version": "3.25.5", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.5.tgz", - "integrity": "sha512-ovcyhs2DEBUIE0MGEKHP4olCUW/XYte3Vroyxuh38rD1wAO4dHohsovUC4eAOuzFxE6b+RXvBU3UZ9o0YhUTkA==", + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "dev": true + }, + "@yarnpkg/parsers": { + "version": "3.0.0-rc.37", + "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.37.tgz", + "integrity": "sha512-MPKHrD11PgNExFMCXcgA/MnfYbITbiHYQjB8TNZmE4t9Z+zRCB1RTJKOppp8K8QOf+OEo8CybufVNcZZMLt2tw==", "dev": true, "requires": { - "browserslist": "^4.21.4" + "js-yaml": "^3.10.0", + "tslib": "^2.4.0" } }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + "abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true }, - "cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "dev": true, + "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 + }, + "abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "requires": { - "object-assign": "^4", - "vary": "^1" + "event-target-shim": "^5.0.0" } }, - "cosmiconfig": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", - "dev": true, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" } }, - "critters": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.12.tgz", - "integrity": "sha512-ujxKtKc/mWpjrOKeaACTaQ1aP0O31M0ZPWhfl85jZF1smPU4Ivb9va5Ox2poif4zVJQQo0LCFlzGtEZAsCAPcw==", + "acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true + }, + "acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true + }, + "adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", "dev": true, "requires": { - "chalk": "^4.1.0", - "css-select": "^4.1.3", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "postcss": "^8.3.7", - "pretty-bytes": "^5.3.0" + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" }, "dependencies": { - "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, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" } - }, - "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==", + } + } + }, + "adm-zip": { + "version": "0.4.16", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.16.tgz", + "integrity": "sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==", + "dev": true + }, + "aes-decrypter": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/aes-decrypter/-/aes-decrypter-3.1.2.tgz", + "integrity": "sha512-42nRwfQuPRj9R1zqZBdoxnaAmnIFyDi0MNyTVhjdFOd8fifXKKRfwIHIZ6AMn1or4x5WONzjwRTbTWcsIQ0O4A==", + "requires": { + "@babel/runtime": "^7.12.5", + "@videojs/vhs-utils": "^3.0.0", + "global": "^4.4.0", + "pkcs7": "^1.0.4" + } + }, + "after": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", + "integrity": "sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA==" + }, + "agent-base": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", + "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", + "dev": true, + "requires": { + "es6-promisify": "^5.0.0" + } + }, + "agentkeepalive": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", + "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { - "color-name": "~1.1.4" + "ms": "2.1.2" } }, - "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==", + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "dev": true }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true - }, - "postcss": { - "version": "8.4.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.17.tgz", - "integrity": "sha512-UNxNOLQydcOFi41yHNMcKRZ39NeXlr8AxGuZJsdub8vIb12fHzcq37DTU/QtbI6WLxNg2gF9Z+8qtRwTj1UI1Q==", + } + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "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, + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "requires": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "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, - "requires": { - "has-flag": "^4.0.0" - } + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true } } }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true + }, + "ally.js": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/ally.js/-/ally.js-1.4.1.tgz", + "integrity": "sha512-ZewdfuwP6VewtMN36QY0gmiyvBfMnmEaNwbVu2nTS6zRt069viTgkYgaDiqu6vRJ1VJCriNqV0jGMu44R8zNbA==", + "requires": { + "css.escape": "^1.5.0", + "platform": "1.3.3" + } + }, + "ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "type-fest": "^0.21.3" }, "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true } } }, - "crypto-ld": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/crypto-ld/-/crypto-ld-3.9.0.tgz", - "integrity": "sha512-PFE7V6A2QNnUp6iiPVEZI4p8wsztkEWLbY1BAXVnclm/aw4KGwpJ+1Ds4vQUCJ5BsWxj15fwE5rHQ8AWaWB2nw==", - "requires": { - "base64url-universal": "^1.0.1", - "bs58": "^4.0.1", - "node-forge": "~0.10.0", - "semver": "^6.2.0", - "sodium-native": "^3.2.0" - } + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true }, - "css": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", - "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "inherits": "^2.0.3", - "source-map": "^0.6.1", - "source-map-resolve": "^0.5.2", - "urix": "^0.1.0" + "color-convert": "^1.9.0" } }, - "css-blank-pseudo": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", - "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", - "dev": true, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "requires": { - "postcss": "^7.0.5" + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" }, "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "remove-trailing-separator": "^1.0.1" } } } }, - "css-declaration-sorter": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", - "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", + "aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", "dev": true }, - "css-has-pseudo": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", - "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", + "are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", "dev": true, "requires": { - "postcss": "^7.0.6", - "postcss-selector-parser": "^5.0.0-rc.4" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" }, "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", - "dev": true - }, - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } } } }, - "css-loader": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.2.0.tgz", - "integrity": "sha512-/rvHfYRjIpymZblf49w8jYcRo2y9gj6rV8UroHGmBxKrIyGLokpycyKzp9OkitvqT29ZSpzJ0Ic7SpnJX3sC8g==", + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "requires": { - "icss-utils": "^5.1.0", - "postcss": "^8.2.15", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.1.0", - "semver": "^7.3.5" + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==" + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==" + }, + "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 + }, + "array-slice": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", + "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==" + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==" + }, + "arraybuffer.slice": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz", + "integrity": "sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==" + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true + }, + "asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==" + }, + "async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "dev": true + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + }, + "autoprefixer": { + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "dev": true, + "requires": { + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, + "axios": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.2.6.tgz", + "integrity": "sha512-rC/7F08XxZwjMV4iuWv+JpD3E0Ksqg9nac4IIg6RwNuF0JTeWoCo/mBNG54+tNhhI11G3/VDRbdDQTs9hGp4pQ==", + "dev": true, + "requires": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" }, "dependencies": { - "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, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "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, "requires": { - "lru-cache": "^6.0.0" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, - "css-minimizer-webpack-plugin": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.0.2.tgz", - "integrity": "sha512-B3I5e17RwvKPJwsxjjWcdgpU/zqylzK1bPVghcmpFHRL48DXiBgrtqz1BJsn68+t/zzaLp9kYAaEDvQ7GyanFQ==", + "babel-loader": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", + "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", "dev": true, "requires": { - "cssnano": "^5.0.6", - "jest-worker": "^27.0.2", - "p-limit": "^3.0.2", - "postcss": "^8.3.5", - "schema-utils": "^3.0.0", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1" + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" }, "dependencies": { - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { - "yocto-queue": "^0.1.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" } }, - "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "semver": "^6.0.0" } } } }, - "css-parse": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/css-parse/-/css-parse-2.0.0.tgz", - "integrity": "sha512-UNIFik2RgSbiTwIW1IsFwXWn6vs+bYdq83LKTSOsx7NJR7WII9dxewkHLltfTLVppoUApHV0118a4RZRI9FLwA==", + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "requires": { - "css": "^2.0.0" + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" } }, - "css-prefers-color-scheme": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", - "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", + "babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz", + "integrity": "sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==", "dev": true, "requires": { - "postcss": "^7.0.5" + "@babel/helper-define-polyfill-provider": "^0.3.2", + "core-js-compat": "^3.21.0" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + } + }, + "backo2": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", + "integrity": "sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA==" + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" }, "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "requires": { + "is-descriptor": "^1.0.0" + } }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } } } }, - "css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "dev": true, + "base-x": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz", + "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==", "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" + "safe-buffer": "^5.0.1" } }, - "css-selector-tokenizer": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz", - "integrity": "sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==", - "dev": true, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "base64id": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", + "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", + "dev": true + }, + "base64url": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/base64url/-/base64url-3.0.1.tgz", + "integrity": "sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==" + }, + "base64url-universal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/base64url-universal/-/base64url-universal-1.1.0.tgz", + "integrity": "sha512-WyftvZqye29YQ10ZnuiBeEj0lk8SN8xHU9hOznkLc85wS1cLTp6RpzlMrHxMPD9nH7S55gsBqMqgGyz93rqmkA==", "requires": { - "cssesc": "^3.0.0", - "fastparse": "^1.1.2" + "base64url": "^3.0.0" } }, - "css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "dev": true, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "requires": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" + "tweetnacl": "^0.14.3" } }, - "css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "better-assert": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", + "integrity": "sha512-bYeph2DFlpK1XmGs6fvlLRUN29QISM3GBuUwSFsMY2XRx4AvC0WNCS57j4c/xGrK2RS24C1w3YoBOsw9fT46tQ==", + "requires": { + "callsite": "1.0.0" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true }, - "css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" }, - "cssauron": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/cssauron/-/cssauron-1.4.0.tgz", - "integrity": "sha512-Ht70DcFBh+/ekjVrYS2PlDMdSQEl3OFNmjK6lcn49HptBgilXf/Zwg4uFh9Xn0pX3Q8YOkSjIFOfK2osvdqpBw==", + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "requires": { - "through": "X.X.X" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } } }, - "cssdb": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", - "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==", - "dev": true + "blob": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz", + "integrity": "sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==" }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true + "blocking-proxy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/blocking-proxy/-/blocking-proxy-1.0.1.tgz", + "integrity": "sha512-KE8NFMZr3mN2E0HcvCgRtX7DjhiIQrwle+nSVJVC/yqFb9+xznHl2ZcoBp2L9qzkI4t4cBFJ1efXF8Dwi132RA==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } }, - "cssnano": { - "version": "5.1.13", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.13.tgz", - "integrity": "sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==", - "dev": true, - "requires": { - "cssnano-preset-default": "^5.2.12", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" - } - }, - "cssnano-preset-default": { - "version": "5.2.12", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz", - "integrity": "sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==", - "dev": true, - "requires": { - "css-declaration-sorter": "^6.3.0", - "cssnano-utils": "^3.1.0", - "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.0", - "postcss-convert-values": "^5.1.2", - "postcss-discard-comments": "^5.1.2", - "postcss-discard-duplicates": "^5.1.0", - "postcss-discard-empty": "^5.1.1", - "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.6", - "postcss-merge-rules": "^5.1.2", - "postcss-minify-font-values": "^5.1.0", - "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.3", - "postcss-minify-selectors": "^5.2.1", - "postcss-normalize-charset": "^5.1.0", - "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.1", - "postcss-normalize-repeat-style": "^5.1.1", - "postcss-normalize-string": "^5.1.0", - "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.0", - "postcss-normalize-url": "^5.1.0", - "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.0", - "postcss-reduce-transforms": "^5.1.0", - "postcss-svgo": "^5.1.0", - "postcss-unique-selectors": "^5.1.1" - } - }, - "cssnano-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", - "dev": true + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "requires": { + "side-channel": "^1.0.4" + } + } + } }, - "csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "bonjour-service": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.0.tgz", + "integrity": "sha512-LVRinRB3k1/K0XzZ2p58COnWvkQknIY6sf0zF2rpErvcJXpMBttEPQSxK+HEXSS9VmpZlDoDnQWv8ftJT20B0Q==", "dev": true, "requires": { - "css-tree": "^1.1.2" + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" } }, - "cuint": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", - "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", - "dev": true - }, - "custom-event": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz", - "integrity": "sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==" - }, - "damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "requires": { - "assert-plus": "^1.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "data-uri-to-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", - "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==" - }, - "date-format": { - "version": "4.0.14", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.14.tgz", - "integrity": "sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "requires": { - "ms": "2.0.0" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "requires": { + "is-extendable": "^0.1.0" + } + } } }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==" + "browserslist": { + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.9" + } }, - "deep-equal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "browserstack": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/browserstack/-/browserstack-1.6.1.tgz", + "integrity": "sha512-GxtFjpIaKdbAyzHfFDKixKO8IBT7wR3NjbzrGc78nNs/Ciys9wU3/nBtsqsWv5nDSrdI5tz0peKuzCPuNXNUiw==", "dev": true, "requires": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.2.0" + "https-proxy-agent": "^2.2.1" } }, - "deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", - "dev": true + "bs58": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", + "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==", + "requires": { + "base-x": "^3.0.2" + } }, - "default-gateway": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", - "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "requires": { - "execa": "^1.0.0", - "ip-regex": "^2.1.0" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", - "dev": true, + "buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", "requires": { - "clone": "^1.0.2" + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" } }, - "define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" + }, + "buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==" + }, + "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==", "dev": true }, - "define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", - "dev": true, - "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } + "builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "dev": true, "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" + "semver": "^7.0.0" }, "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "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, "requires": { - "kind-of": "^6.0.0" + "yallist": "^4.0.0" } }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, "requires": { - "kind-of": "^6.0.0" + "lru-cache": "^6.0.0" } }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } }, - "del": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", - "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "cacache": { + "version": "16.1.2", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.2.tgz", + "integrity": "sha512-Xx+xPlfCZIUHagysjjOAje9nRo8pRDczQCcXb4J2O0BLtH+xeVue6ba4y1kfJfQMAnM2mkcoMIAyOctlaRGWYA==", "dev": true, "requires": { - "@types/glob": "^7.1.1", - "globby": "^6.1.0", - "is-path-cwd": "^2.0.0", - "is-path-in-cwd": "^2.0.0", - "p-map": "^2.0.0", - "pify": "^4.0.1", - "rimraf": "^2.6.3" + "@npmcli/fs": "^2.1.0", + "@npmcli/move-file": "^2.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "infer-owner": "^1.0.4", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11", + "unique-filename": "^1.1.1" }, "dependencies": { - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "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, "requires": { - "array-uniq": "^1.0.1" + "balanced-match": "^1.0.0" } }, - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + } + }, + "lru-cache": { + "version": "7.14.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.14.1.tgz", + "integrity": "sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==", + "dev": true + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" + "glob": "^7.1.3" }, "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true + "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, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } } } - }, - "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true } } }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - }, - "dependency-graph": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", - "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", - "dev": true - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - }, - "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 - }, - "di": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", - "integrity": "sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==" - }, - "diff": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", - "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", - "dev": true - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "requires": { - "path-type": "^4.0.0" + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" } }, - "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 - }, - "dns-packet": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", - "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", - "dev": true, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "requires": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" } }, - "dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", - "dev": true, - "requires": { - "buffer-indexof": "^1.0.0" - } + "callsite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ==" }, - "document-register-element": { - "version": "1.14.10", - "resolved": "https://registry.npmjs.org/document-register-element/-/document-register-element-1.14.10.tgz", - "integrity": "sha512-w5UA37hEIrs+9pruo2yR5UD13c4UHDlkqqjt4qurnp7QsBI9b1IOi8WXUim+aCqKBsENX3Z/cso7XMOuwJH1Yw==" + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true }, - "dom-serialize": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", - "integrity": "sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==", - "requires": { - "custom-event": "~1.0.0", - "ent": "~2.2.0", - "extend": "^3.0.0", - "void-elements": "^2.0.0" - } + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true }, - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "dev": true, - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - } + "caniuse-lite": { + "version": "1.0.30001449", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001449.tgz", + "integrity": "sha512-CPB+UL9XMT/Av+pJxCKGhdx+yg1hzplvFJQlJ2n68PyQGMz9L/E2zCyLdOL8uasbouTUgnPl+y0tccI/se+BEw==", + "dev": true }, - "dom-walk": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", - "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" + "canonicalize": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/canonicalize/-/canonicalize-1.0.8.tgz", + "integrity": "sha512-0CNTVCLZggSh7bc5VkX5WWPWO+cyZbNd07IHIsSXLia/eAq+r836hgk+8BKoEh7949Mda87VUOitx5OddVj64A==" }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" }, - "domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { - "domelementtype": "^2.2.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" } }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "dev": true, - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - } + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" } }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "electron-to-chromium": { - "version": "1.4.275", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.275.tgz", - "integrity": "sha512-aJeQQ+Hl9Jyyzv4chBqYJwmVRY46N5i2BEX5Cuyk/5gFCUZ5F3i7Hnba6snZftWla7Gglwc5pIgcd+E7cW+rPg==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "dev": true }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "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==", "dev": true }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + "circular-json": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.9.tgz", + "integrity": "sha512-4ivwqHpIFJZBuhN3g/pEcdbnGUywkBblloGbkglyloVjjR3uT6tieI89MVOfbP2tHX5sgb01FuLgAOzebNlJNQ==" }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "requires": { - "iconv-lite": "^0.6.2" + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" }, "dependencies": { - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "is-descriptor": "^0.1.0" } } } }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "requires": { - "once": "^1.4.0" + "restore-cursor": "^3.1.0" } }, - "engine.io": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.0.tgz", - "integrity": "sha512-4KzwW3F3bk+KlzSOY57fj/Jx6LyRQ1nbcyIadehl+AnXjKT7gDO0ORdRi/84ixvMKTym6ZKuxvbzN62HDDU1Lg==", + "cli-spinners": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", + "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", + "dev": true + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "requires": { - "@types/cookie": "^0.4.1", - "@types/cors": "^2.8.12", - "@types/node": ">=10.0.0", - "accepts": "~1.3.4", - "base64id": "2.0.0", - "cookie": "~0.4.1", - "cors": "~2.8.5", - "debug": "~4.3.1", - "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" }, "dependencies": { - "@types/node": { - "version": "18.7.23", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.23.tgz", - "integrity": "sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg==", - "dev": true - }, - "cookie": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", - "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "requires": { - "ms": "2.1.2" + "ansi-regex": "^5.0.1" } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", - "dev": true } } }, - "engine.io-parser": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.4.tgz", - "integrity": "sha512-+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg==", + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", "dev": true }, - "enhanced-resolve": { - "version": "5.10.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz", - "integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==", + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" } }, - "ent": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz", - "integrity": "sha512-GHrMyVZQWvTIdDtpiEXdHZnFQKzeO09apj8Cbl4pKWy4i0Oprcq17usfDt5aO63swf0JOeMWjWQE/LzgSRuWpA==" - }, - "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true - }, - "err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "dev": true, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", "requires": { - "prr": "~1.0.1" + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" } }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "requires": { - "is-arrayish": "^0.2.1" + "color-name": "1.1.3" } }, - "es-module-lexer": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz", - "integrity": "sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==", + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, - "es6-promise": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", - "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" - }, - "es6-promisify": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", - "integrity": "sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==", - "dev": true, - "requires": { - "es6-promise": "^4.0.3" - } - }, - "esbuild-android-arm64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.13.8.tgz", - "integrity": "sha512-AilbChndywpk7CdKkNSZ9klxl+9MboLctXd9LwLo3b0dawmOF/i/t2U5d8LM6SbT1Xw36F8yngSUPrd8yPs2RA==", - "dev": true, - "optional": true - }, - "esbuild-darwin-64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.13.8.tgz", - "integrity": "sha512-b6sdiT84zV5LVaoF+UoMVGJzR/iE2vNUfUDfFQGrm4LBwM/PWXweKpuu6RD9mcyCq18cLxkP6w/LD/w9DtX3ng==", - "dev": true, - "optional": true - }, - "esbuild-darwin-arm64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.13.8.tgz", - "integrity": "sha512-R8YuPiiJayuJJRUBG4H0VwkEKo6AvhJs2m7Tl0JaIer3u1FHHXwGhMxjJDmK+kXwTFPriSysPvcobXC/UrrZCQ==", - "dev": true, - "optional": true - }, - "esbuild-freebsd-64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.13.8.tgz", - "integrity": "sha512-zBn6urrn8FnKC+YSgDxdof9jhPCeU8kR/qaamlV4gI8R3KUaUK162WYM7UyFVAlj9N0MyD3AtB+hltzu4cysTw==", - "dev": true, - "optional": true - }, - "esbuild-freebsd-arm64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.13.8.tgz", - "integrity": "sha512-pWW2slN7lGlkx0MOEBoUGwRX5UgSCLq3dy2c8RIOpiHtA87xAUpDBvZK10MykbT+aMfXc0NI2lu1X+6kI34xng==", - "dev": true, - "optional": true - }, - "esbuild-linux-32": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.13.8.tgz", - "integrity": "sha512-T0I0ueeKVO/Is0CAeSEOG9s2jeNNb8jrrMwG9QBIm3UU18MRB60ERgkS2uV3fZ1vP2F8i3Z2e3Zju4lg9dhVmw==", - "dev": true, - "optional": true - }, - "esbuild-linux-64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.13.8.tgz", - "integrity": "sha512-Bm8SYmFtvfDCIu9sjKppFXzRXn2BVpuCinU1ChTuMtdKI/7aPpXIrkqBNOgPTOQO9AylJJc1Zw6EvtKORhn64w==", - "dev": true, - "optional": true - }, - "esbuild-linux-arm": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.13.8.tgz", - "integrity": "sha512-4/HfcC40LJ4GPyboHA+db0jpFarTB628D1ifU+/5bunIgY+t6mHkJWyxWxAAE8wl/ZIuRYB9RJFdYpu1AXGPdg==", - "dev": true, - "optional": true - }, - "esbuild-linux-arm64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.13.8.tgz", - "integrity": "sha512-X4pWZ+SL+FJ09chWFgRNO3F+YtvAQRcWh0uxKqZSWKiWodAB20flsW/OWFYLXBKiVCTeoGMvENZS/GeVac7+tQ==", - "dev": true, - "optional": true - }, - "esbuild-linux-mips64le": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.13.8.tgz", - "integrity": "sha512-o7e0D+sqHKT31v+mwFircJFjwSKVd2nbkHEn4l9xQ1hLR+Bv8rnt3HqlblY3+sBdlrOTGSwz0ReROlKUMJyldA==", - "dev": true, - "optional": true - }, - "esbuild-linux-ppc64le": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.13.8.tgz", - "integrity": "sha512-eZSQ0ERsWkukJp2px/UWJHVNuy0lMoz/HZcRWAbB6reoaBw7S9vMzYNUnflfL3XA6WDs+dZn3ekHE4Y2uWLGig==", - "dev": true, - "optional": true - }, - "esbuild-netbsd-64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.13.8.tgz", - "integrity": "sha512-gZX4kP7gVvOrvX0ZwgHmbuHczQUwqYppxqtoyC7VNd80t5nBHOFXVhWo2Ad/Lms0E8b+wwgI/WjZFTCpUHOg9Q==", - "dev": true, - "optional": true - }, - "esbuild-openbsd-64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.13.8.tgz", - "integrity": "sha512-afzza308X4WmcebexbTzAgfEWt9MUkdTvwIa8xOu4CM2qGbl2LanqEl8/LUs8jh6Gqw6WsicEK52GPrS9wvkcw==", - "dev": true, - "optional": true - }, - "esbuild-sunos-64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.13.8.tgz", - "integrity": "sha512-mWPZibmBbuMKD+LDN23LGcOZ2EawMYBONMXXHmbuxeT0XxCNwadbCVwUQ/2p5Dp5Kvf6mhrlIffcnWOiCBpiVw==", - "dev": true, - "optional": true + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true }, - "esbuild-wasm": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.13.8.tgz", - "integrity": "sha512-UbD+3nloiSpJWXTCInZQrqPe8Y+RLfDkY/5kEHiXsw/lmaEvibe69qTzQu16m5R9je/0bF7VYQ5jaEOq0z9lLA==", + "colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", "dev": true }, - "esbuild-windows-32": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.13.8.tgz", - "integrity": "sha512-QsZ1HnWIcnIEApETZWw8HlOhDSWqdZX2SylU7IzGxOYyVcX7QI06ety/aDcn437mwyO7Ph4RrbhB+2ntM8kX8A==", - "dev": true, - "optional": true + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" + }, + "combine-lists": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/combine-lists/-/combine-lists-1.0.1.tgz", + "integrity": "sha512-4Mi0V7N48B9KzC8Zl/U7wiWuxMFEHf44N3/PSoAvWDu8IOPrddNo1y1tC/kXbP7IvVMhgCFMMNzgKb0pWoin9w==", + "requires": { + "lodash": "^4.5.0" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + } }, - "esbuild-windows-64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.13.8.tgz", - "integrity": "sha512-76Fb57B9eE/JmJi1QmUW0tRLQZfGo0it+JeYoCDTSlbTn7LV44ecOHIMJSSgZADUtRMWT9z0Kz186bnaB3amSg==", - "dev": true, - "optional": true + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } }, - "esbuild-windows-arm64": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.13.8.tgz", - "integrity": "sha512-HW6Mtq5eTudllxY2YgT62MrVcn7oq2o8TAoAvDUhyiEmRmDY8tPwAhb1vxw5/cdkbukM3KdMYtksnUhF/ekWeg==", - "dev": true, - "optional": true + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + "component-bind": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz", + "integrity": "sha512-WZveuKPeKAG9qY+FkYDeADzdHyTYdIboXS59ixDeRJL5ZhxpqUnxSOwop4FQjMsiYm3/Or8cegVbpAHNA7pHxw==" }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "component-inherit": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz", + "integrity": "sha512-w+LhYREhatpVqTESyGFg3NlP6Iu0kEKUHETY9GoZP/pQyW4mHFZuFWRUCIqVPZ36ueVLtoOEZaAqbCF2RDndaA==" + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "mime-db": ">= 1.43.0 < 2" } }, - "esm": { - "version": "3.2.25", - "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz", - "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" - }, - "esprima": { - "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 - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", "dev": true, "requires": { - "estraverse": "^5.2.0" + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" }, "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true } } }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true + "concat": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/concat/-/concat-1.0.3.tgz", + "integrity": "sha512-f/ZaH1aLe64qHgTILdldbvyfGiGF4uzeo9IuXUloIOLQzFmIPloy9QbZadNsuVv0j5qbKQvQb/H/UYf2UsKTpw==", + "dev": true, + "requires": { + "commander": "^2.9.0" + } }, - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "requires": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + } + }, + "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==", "dev": true }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", "dev": true }, - "event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "requires": { + "safe-buffer": "5.2.1" + } }, - "eventemitter-asyncresource": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", - "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", - "dev": true + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" }, - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + "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==", + "dev": true }, - "events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "dev": true }, - "eventsource": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", - "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", "dev": true, "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "is-what": "^3.14.1" } }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==" }, - "expand-braces": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz", - "integrity": "sha512-zOOsEnAhvIxxd0esCNbYG2xerGf46niZ1egS43eV7Fu4t7VIScgPXMcMabCLaPrqkzwvwo6zZipDiX3t0ILF2w==", + "copy-webpack-plugin": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", + "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", + "dev": true, "requires": { - "array-slice": "^0.2.3", - "array-unique": "^0.2.1", - "braces": "^0.1.2" + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.1", + "globby": "^13.1.1", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" }, "dependencies": { - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha512-G2n5bG5fSUCpnsXz4+8FUkYsGPkNfLn9YvS66U5qbTIXI2Ynnlo4Bi42bWv+omKUCqz+ejzfClwne0alJWJPhg==" + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } }, - "braces": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz", - "integrity": "sha512-EIMHIv2UXHWFY2xubUGKz+hq9hNkENj4Pjvr7h58cmJgpkK2yMlKA8I484f7MSttkzVAy/lL7X9xDaILd6avzA==", + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, "requires": { - "expand-range": "^0.1.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" } } } }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "copyfiles": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/copyfiles/-/copyfiles-2.4.1.tgz", + "integrity": "sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==", + "dev": true, "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "glob": "^7.0.5", + "minimatch": "^3.0.3", + "mkdirp": "^1.0.4", + "noms": "0.0.0", + "through2": "^2.0.1", + "untildify": "^4.0.0", + "yargs": "^16.1.0" }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "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, "requires": { - "is-descriptor": "^0.1.0" + "color-convert": "^2.0.1" } }, - "extend-shallow": { + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "requires": { - "is-extendable": "^0.1.0" + "color-name": "~1.1.4" + } + }, + "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 + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "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, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "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" } + }, + "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 } } }, - "expand-range": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz", - "integrity": "sha512-busOHJ0t7t5UcutcyNDqmaDX+1cb0XlqsAUgTlmplVv0rIqBaMcBSZRLlkDm0nxtl8O3o/EvRRrdQ/WnyPERLQ==", + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + }, + "core-js-compat": { + "version": "3.27.2", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.27.2.tgz", + "integrity": "sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==", + "dev": true, "requires": { - "is-number": "^0.1.1", - "repeat-string": "^0.2.2" - }, - "dependencies": { - "is-number": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz", - "integrity": "sha512-la5kPULwIgkSSaZj9w7/A1uHqOBAgOhDUKQ5CkfL8LZ4Si6r4+2D0hI6b4o60MW4Uj2yNJARWIZUDPxlvOYQcw==" - }, - "repeat-string": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz", - "integrity": "sha512-yHeI3F9v20MY+8/5WAUgIWseMZwpLD+l9h5hGyzh6fQjhle2AwjjRDao1m5IozSDuVvMw09/mvE8AU1oDmZKpQ==" - } + "browserslist": "^4.21.4" } }, - "express": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "core-js-pure": { + "version": "3.27.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.27.2.tgz", + "integrity": "sha512-Cf2jqAbXgWH3VVzjyaaFkY1EBazxugUepGymDoeteyYr9ByX51kD2jdHZlsEF/xnJMyN3Prua7mQuzwMg6Zc9A==", + "dev": true + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dev": true, "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.0", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.10.3", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" + "object-assign": "^4", + "vary": "^1" + } + }, + "cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "critters": { + "version": "0.0.16", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.16.tgz", + "integrity": "sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "css-select": "^4.2.0", + "parse5": "^6.0.1", + "parse5-htmlparser2-tree-adapter": "^6.0.1", + "postcss": "^8.3.7", + "pretty-bytes": "^5.3.0" }, "dependencies": { - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true + "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, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "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, "requires": { - "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" + "color-name": "~1.1.4" } }, - "qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "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 + }, + "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 + }, + "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, "requires": { - "side-channel": "^1.0.4" + "has-flag": "^4.0.0" } } } }, - "express-http-proxy": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/express-http-proxy/-/express-http-proxy-1.6.3.tgz", - "integrity": "sha512-/l77JHcOUrDUX8V67E287VEUQT0lbm71gdGVoodnlWBziarYKgMcpqT7xvh/HM8Jv52phw8Bd8tY+a7QjOr7Yg==", + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, "requires": { - "debug": "^3.0.1", - "es6-promise": "^4.1.1", - "raw-body": "^2.3.0" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, "requires": { - "ms": "^2.1.1" + "isexe": "^2.0.0" } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" } } }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + "crypto-ld": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/crypto-ld/-/crypto-ld-3.9.0.tgz", + "integrity": "sha512-PFE7V6A2QNnUp6iiPVEZI4p8wsztkEWLbY1BAXVnclm/aw4KGwpJ+1Ds4vQUCJ5BsWxj15fwE5rHQ8AWaWB2nw==", + "requires": { + "base64url-universal": "^1.0.1", + "bs58": "^4.0.1", + "node-forge": "~0.10.0", + "semver": "^6.2.0", + "sodium-native": "^3.2.0" + } }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "dev": true, "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "postcss-selector-parser": "^6.0.9" + } + }, + "css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.9" + } + }, + "css-loader": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", + "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", + "dev": true, + "requires": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.7", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.5" }, "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "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, "requires": { - "is-plain-object": "^2.0.4" + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "dev": true + }, + "css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dev": true, "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" } }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true + }, + "css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "cssdb": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.4.1.tgz", + "integrity": "sha512-0Q8NOMpXJ3iTDDbUv9grcmQAfdDx4qz+fN/+Md2FGbevT+6+bJNQ2LjB2YIUlLbpBTM32idU1Sb+tb/uGt6/XQ==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "cuint": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", + "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", + "dev": true + }, + "custom-event": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz", + "integrity": "sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-uri-to-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", + "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==" + }, + "date-format": { + "version": "4.0.14", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.14.tgz", + "integrity": "sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==" + }, + "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==", + "dev": true + }, + "deepmerge": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", + "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "dev": true + }, + "default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, + "requires": { + "execa": "^5.0.0" + } + }, + "defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, + "define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" }, "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - }, "is-accessor-descriptor": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", @@ -6294,361 +6233,578 @@ } } }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true }, - "fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "dependency-graph": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", + "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", + "dev": true + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "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 + }, + "di": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", + "integrity": "sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==" + }, + "diff": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", + "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "path-type": "^4.0.0" + } + }, + "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 + }, + "dns-packet": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", + "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", + "dev": true, + "requires": { + "@leichtgewicht/ip-codec": "^2.0.1" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "document-register-element": { + "version": "1.14.10", + "resolved": "https://registry.npmjs.org/document-register-element/-/document-register-element-1.14.10.tgz", + "integrity": "sha512-w5UA37hEIrs+9pruo2yR5UD13c4UHDlkqqjt4qurnp7QsBI9b1IOi8WXUim+aCqKBsENX3Z/cso7XMOuwJH1Yw==" + }, + "dom-serialize": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", + "integrity": "sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==", + "requires": { + "custom-event": "~1.0.0", + "ent": "~2.2.0", + "extend": "^3.0.0", + "void-elements": "^2.0.0" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "dom-walk": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", + "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "dev": true + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "ejs": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", + "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", + "dev": true, + "requires": { + "jake": "^10.8.5" + } + }, + "electron-to-chromium": { + "version": "1.4.284", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + }, + "encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "optional": true, + "requires": { + "iconv-lite": "^0.6.2" }, "dependencies": { - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "optional": true, "requires": { - "fill-range": "^7.0.1" + "safer-buffer": ">= 2.1.2 < 3.0.0" } + } + } + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "engine.io": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.0.tgz", + "integrity": "sha512-4KzwW3F3bk+KlzSOY57fj/Jx6LyRQ1nbcyIadehl+AnXjKT7gDO0ORdRi/84ixvMKTym6ZKuxvbzN62HDDU1Lg==", + "dev": true, + "requires": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", + "accepts": "~1.3.4", + "base64id": "2.0.0", + "cookie": "~0.4.1", + "cors": "~2.8.5", + "debug": "~4.3.1", + "engine.io-parser": "~5.0.3", + "ws": "~8.2.3" + }, + "dependencies": { + "@types/node": { + "version": "18.7.23", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.23.tgz", + "integrity": "sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg==", + "dev": true }, - "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==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } + "cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "dev": true }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { - "is-glob": "^4.0.1" + "ms": "2.1.2" } }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - } - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } + "ws": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", + "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "dev": true } } }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fastparse": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz", - "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==", + "engine.io-parser": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.4.tgz", + "integrity": "sha512-+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg==", "dev": true }, - "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "enhanced-resolve": { + "version": "5.12.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", + "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", "dev": true, "requires": { - "reusify": "^1.0.4" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" } }, - "faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, "requires": { - "websocket-driver": ">=0.5.1" + "ansi-colors": "^4.1.1" } }, - "fetch-blob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-2.1.2.tgz", - "integrity": "sha512-YKqtUDwqLyfyMnmbw8XD6Q8j9i/HggKtPEI+pZ1+8bvheBu78biSmNaXWusx1TauGqtUUGx/cBb1mKdq2rLYow==" + "ent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz", + "integrity": "sha512-GHrMyVZQWvTIdDtpiEXdHZnFQKzeO09apj8Cbl4pKWy4i0Oprcq17usfDt5aO63swf0JOeMWjWQE/LzgSRuWpA==" }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "optional": true + "env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } + "err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true }, - "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "optional": true, "requires": { - "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" - }, - "dependencies": { - "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==", - "requires": { - "ee-first": "1.1.1" - } - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - } + "prr": "~1.0.1" } }, - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "dependencies": { - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - } + "is-arrayish": "^0.2.1" } }, - "find-parent-dir": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/find-parent-dir/-/find-parent-dir-0.3.1.tgz", - "integrity": "sha512-o4UcykWV/XN9wm+jMEtWLPlV8RXCZnMhQI6F6OdHeSez7iiJWePw8ijOlskJZMsaQoGR/b7dH6lO02HhaTN7+A==", + "es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", "dev": true }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + }, + "es6-promisify": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", + "integrity": "sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==", "dev": true, "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "es6-promise": "^4.0.3" } }, - "flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==" + "esbuild-android-64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.5.tgz", + "integrity": "sha512-dYPPkiGNskvZqmIK29OPxolyY3tp+c47+Fsc2WYSOVjEPWNCHNyqhtFqQadcXMJDQt8eN0NMDukbyQgFcHquXg==", + "dev": true, + "optional": true }, - "flatten": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", - "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==", - "dev": true + "esbuild-android-arm64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.5.tgz", + "integrity": "sha512-YyEkaQl08ze3cBzI/4Cm1S+rVh8HMOpCdq8B78JLbNFHhzi4NixVN93xDrHZLztlocEYqi45rHHCgA8kZFidFg==", + "dev": true, + "optional": true + }, + "esbuild-darwin-64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.5.tgz", + "integrity": "sha512-Cr0iIqnWKx3ZTvDUAzG0H/u9dWjLE4c2gTtRLz4pqOBGjfjqdcZSfAObFzKTInLLSmD0ZV1I/mshhPoYSBMMCQ==", + "dev": true, + "optional": true + }, + "esbuild-darwin-arm64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.5.tgz", + "integrity": "sha512-WIfQkocGtFrz7vCu44ypY5YmiFXpsxvz2xqwe688jFfSVCnUsCn2qkEVDo7gT8EpsLOz1J/OmqjExePL1dr1Kg==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.5.tgz", + "integrity": "sha512-M5/EfzV2RsMd/wqwR18CELcenZ8+fFxQAAEO7TJKDmP3knhWSbD72ILzrXFMMwshlPAS1ShCZ90jsxkm+8FlaA==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-arm64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.5.tgz", + "integrity": "sha512-2JQQ5Qs9J0440F/n/aUBNvY6lTo4XP/4lt1TwDfHuo0DY3w5++anw+jTjfouLzbJmFFiwmX7SmUhMnysocx96w==", + "dev": true, + "optional": true + }, + "esbuild-linux-32": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.5.tgz", + "integrity": "sha512-gO9vNnIN0FTUGjvTFucIXtBSr1Woymmx/aHQtuU+2OllGU6YFLs99960UD4Dib1kFovVgs59MTXwpFdVoSMZoQ==", + "dev": true, + "optional": true + }, + "esbuild-linux-64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.5.tgz", + "integrity": "sha512-ne0GFdNLsm4veXbTnYAWjbx3shpNKZJUd6XpNbKNUZaNllDZfYQt0/zRqOg0sc7O8GQ+PjSMv9IpIEULXVTVmg==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.5.tgz", + "integrity": "sha512-wvAoHEN+gJ/22gnvhZnS/+2H14HyAxM07m59RSLn3iXrQsdS518jnEWRBnJz3fR6BJa+VUTo0NxYjGaNt7RA7Q==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.5.tgz", + "integrity": "sha512-7EgFyP2zjO065XTfdCxiXVEk+f83RQ1JsryN1X/VSX2li9rnHAt2swRbpoz5Vlrl6qjHrCmq5b6yxD13z6RheA==", + "dev": true, + "optional": true + }, + "esbuild-linux-mips64le": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.5.tgz", + "integrity": "sha512-KdnSkHxWrJ6Y40ABu+ipTZeRhFtc8dowGyFsZY5prsmMSr1ZTG9zQawguN4/tunJ0wy3+kD54GaGwdcpwWAvZQ==", + "dev": true, + "optional": true }, - "follow-redirects": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", - "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==" + "esbuild-linux-ppc64le": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.5.tgz", + "integrity": "sha512-QdRHGeZ2ykl5P0KRmfGBZIHmqcwIsUKWmmpZTOq573jRWwmpfRmS7xOhmDHBj9pxv+6qRMH8tLr2fe+ZKQvCYw==", + "dev": true, + "optional": true }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==" + "esbuild-linux-riscv64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.5.tgz", + "integrity": "sha512-p+WE6RX+jNILsf+exR29DwgV6B73khEQV0qWUbzxaycxawZ8NE0wA6HnnTxbiw5f4Gx9sJDUBemh9v49lKOORA==", + "dev": true, + "optional": true }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" + "esbuild-linux-s390x": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.5.tgz", + "integrity": "sha512-J2ngOB4cNzmqLHh6TYMM/ips8aoZIuzxJnDdWutBw5482jGXiOzsPoEF4j2WJ2mGnm7FBCO4StGcwzOgic70JQ==", + "dev": true, + "optional": true }, - "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==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } + "esbuild-netbsd-64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.5.tgz", + "integrity": "sha512-MmKUYGDizYjFia0Rwt8oOgmiFH7zaYlsoQ3tIOfPxOqLssAsEgG0MUdRDm5lliqjiuoog8LyDu9srQk5YwWF3w==", + "dev": true, + "optional": true }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true + "esbuild-openbsd-64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.5.tgz", + "integrity": "sha512-2mMFfkLk3oPWfopA9Plj4hyhqHNuGyp5KQyTT9Rc8hFd8wAn5ZrbJg+gNcLMo2yzf8Uiu0RT6G9B15YN9WQyMA==", + "dev": true, + "optional": true }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", - "requires": { - "map-cache": "^0.2.2" - } + "esbuild-sunos-64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.5.tgz", + "integrity": "sha512-2sIzhMUfLNoD+rdmV6AacilCHSxZIoGAU2oT7XmJ0lXcZWnCvCtObvO6D4puxX9YRE97GodciRGDLBaiC6x1SA==", + "dev": true, + "optional": true }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "esbuild-wasm": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.15.5.tgz", + "integrity": "sha512-lTJOEKekN/4JI/eOEq0wLcx53co2N6vaT/XjBz46D1tvIVoUEyM0o2K6txW6gEotf31szFD/J1PbxmnbkGlK9A==", "dev": true }, - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "esbuild-windows-32": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.5.tgz", + "integrity": "sha512-e+duNED9UBop7Vnlap6XKedA/53lIi12xv2ebeNS4gFmu7aKyTrok7DPIZyU5w/ftHD4MUDs5PJUkQPP9xJRzg==", "dev": true, - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "dependencies": { - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } - } + "optional": true }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "esbuild-windows-64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.5.tgz", + "integrity": "sha512-v+PjvNtSASHOjPDMIai9Yi+aP+Vwox+3WVdg2JB8N9aivJ7lyhp4NVU+J0MV2OkWFPnVO8AE/7xH+72ibUUEnw==", "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "fs-monkey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", - "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", - "dev": true + "optional": true }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + "esbuild-windows-arm64": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.5.tgz", + "integrity": "sha512-Yz8w/D8CUPYstvVQujByu6mlf48lKmXkq6bkeSZZxTA626efQOJb26aDGLzmFWx6eg/FwrXgt6SZs9V8Pwy/aA==", + "dev": true, + "optional": true }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true }, - "gauge": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", - "dev": true, - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", + "eslint": { + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.33.0.tgz", + "integrity": "sha512-WjOpFQgKK8VrCnAtl8We0SUOy/oVZ5NHykyMiagV1M9r8IFpIJX7DduK6n1mpfhlG7T1NLWm2SuD8QB7KFySaA==", + "dev": true, + "requires": { + "@eslint/eslintrc": "^1.4.1", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.4.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" }, "dependencies": { "ansi-regex": { @@ -6657,6 +6813,153 @@ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true }, + "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, + "requires": { + "color-convert": "^2.0.1" + } + }, + "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 + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "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, + "requires": { + "color-name": "~1.1.4" + } + }, + "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 + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "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 + }, + "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, + "requires": { + "argparse": "^2.0.1" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, "strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -6665,443 +6968,356 @@ "requires": { "ansi-regex": "^5.0.1" } - } - } - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-intrinsic": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", - "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - } - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==" - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + }, + "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, "requires": { - "is-extglob": "^2.1.0" + "has-flag": "^4.0.0" } + }, + "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 } } }, - "glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true - }, - "global": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", - "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", - "requires": { - "min-document": "^2.19.0", - "process": "^0.11.10" - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - }, - "grunt-karma": { - "version": "0.12.2", - "resolved": "https://registry.npmjs.org/grunt-karma/-/grunt-karma-0.12.2.tgz", - "integrity": "sha512-houkUR8sks8uliJ5khwvV4Cf2vrxSPkvCt+w9uwOOHhDOCLZ9ZE4/MeDmC7GgSajGK+h/svpacbKFHyjNbCsng==", - "requires": { - "lodash": "^3.10.1" - } - }, - "handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "dev": true - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==" - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" } }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "requires": { - "ansi-regex": "^2.0.0" - } - }, - "has-binary2": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz", - "integrity": "sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==", - "requires": { - "isarray": "2.0.1" + "eslint-visitor-keys": "^2.0.0" }, "dependencies": { - "isarray": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz", - "integrity": "sha512-c2cu3UxbI+b6kR3fy0nRnAhodsvR9dx7U5+znCOzdj6IfP3upFURTr0Xl5BlQZNKZjEtxrmVyfSdeE3O57smoQ==" + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true } } }, - "has-cors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", - "integrity": "sha512-g5VNKdkFuUuVCP9gYfDJHjK2nqdQJ7aDLTnycnc2+RvsOQbuLdF5pm7vuE5J76SEBIQjs4kQY/BWq74JUmjbXA==" - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" - } - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } + "esm": { + "version": "3.2.25", + "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz", + "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" }, - "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==", + "espree": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", "dev": true, "requires": { - "@assemblyscript/loader": "^0.10.1", - "base64-js": "^1.2.0", - "pako": "^1.0.3" + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" } }, - "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==", + "esprima": { + "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 }, - "hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, "requires": { - "lru-cache": "^6.0.0" + "estraverse": "^5.1.0" }, "dependencies": { - "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, - "requires": { - "yallist": "^4.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true } } }, - "hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } } }, - "html-entities": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", - "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true }, - "html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", "dev": true }, - "http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true }, - "http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true }, - "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==", + "event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" + }, + "eventemitter-asyncresource": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", + "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", + "dev": true + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" } }, - "http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "expand-braces": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz", + "integrity": "sha512-zOOsEnAhvIxxd0esCNbYG2xerGf46niZ1egS43eV7Fu4t7VIScgPXMcMabCLaPrqkzwvwo6zZipDiX3t0ILF2w==", "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" + "array-slice": "^0.2.3", + "array-unique": "^0.2.1", + "braces": "^0.1.2" + }, + "dependencies": { + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha512-G2n5bG5fSUCpnsXz4+8FUkYsGPkNfLn9YvS66U5qbTIXI2Ynnlo4Bi42bWv+omKUCqz+ejzfClwne0alJWJPhg==" + }, + "braces": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz", + "integrity": "sha512-EIMHIv2UXHWFY2xubUGKz+hq9hNkENj4Pjvr7h58cmJgpkK2yMlKA8I484f7MSttkzVAy/lL7X9xDaILd6avzA==", + "requires": { + "expand-range": "^0.1.0" + } + } } }, - "http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", "requires": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "dependencies": { - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "requires": { - "debug": "4" + "is-descriptor": "^0.1.0" } }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "requires": { - "ms": "2.1.2" + "is-extendable": "^0.1.0" } + } + } + }, + "expand-range": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz", + "integrity": "sha512-busOHJ0t7t5UcutcyNDqmaDX+1cb0XlqsAUgTlmplVv0rIqBaMcBSZRLlkDm0nxtl8O3o/EvRRrdQ/WnyPERLQ==", + "requires": { + "is-number": "^0.1.1", + "repeat-string": "^0.2.2" + }, + "dependencies": { + "is-number": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz", + "integrity": "sha512-la5kPULwIgkSSaZj9w7/A1uHqOBAgOhDUKQ5CkfL8LZ4Si6r4+2D0hI6b4o60MW4Uj2yNJARWIZUDPxlvOYQcw==" }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "repeat-string": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz", + "integrity": "sha512-yHeI3F9v20MY+8/5WAUgIWseMZwpLD+l9h5hGyzh6fQjhle2AwjjRDao1m5IozSDuVvMw09/mvE8AU1oDmZKpQ==" } } }, - "http-proxy-middleware": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", - "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dev": true, "requires": { - "http-proxy": "^1.17.0", - "is-glob": "^4.0.0", - "lodash": "^4.17.11", - "micromatch": "^3.1.10" + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" }, "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true + }, + "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==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "requires": { + "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" + } } } }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-proxy-agent": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", - "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", - "dev": true, + "express-http-proxy": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/express-http-proxy/-/express-http-proxy-1.6.3.tgz", + "integrity": "sha512-/l77JHcOUrDUX8V67E287VEUQT0lbm71gdGVoodnlWBziarYKgMcpqT7xvh/HM8Jv52phw8Bd8tY+a7QjOr7Yg==", "requires": { - "agent-base": "^4.3.0", - "debug": "^3.1.0" + "debug": "^3.0.1", + "es6-promise": "^4.1.1", + "raw-body": "^2.3.0" }, "dependencies": { "debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, "requires": { "ms": "^2.1.1" } @@ -7109,1043 +7325,932 @@ "ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" } } }, - "humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", - "dev": true, - "requires": { - "ms": "^2.0.0" - } + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "requires": { - "safer-buffer": ">= 2.1.2 < 3" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } } }, - "icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true - }, - "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", - "dev": true - }, - "ignore-walk": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-4.0.1.tgz", - "integrity": "sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==", + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, "requires": { - "minimatch": "^3.0.4" + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" } }, - "image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", - "dev": true, - "optional": true - }, - "immediate": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", - "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } } }, - "import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, "requires": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "requires": { - "locate-path": "^3.0.0" + "fill-range": "^7.0.1" } }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "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==", "dev": true, "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "to-regex-range": "^5.0.1" } }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "requires": { - "p-limit": "^2.0.0" + "is-glob": "^4.0.1" } }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "requires": { - "find-up": "^3.0.0" + "braces": "^3.0.2", + "picomatch": "^2.3.1" } - } - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true - }, - "indexes-of": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==", - "dev": true - }, - "indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==" + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + } + } }, - "individual": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/individual/-/individual-2.0.0.tgz", - "integrity": "sha512-pWt8hBCqJsUWI/HtcfWod7+N9SgAqyPEaF7JQjwzjn5vGrpg6aQ5qeAFQ7dx//UH4J1O+7xqew+gCeeFt6xN/g==" + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, "requires": { - "once": "^1.3.0", - "wrappy": "1" + "reusify": "^1.0.4" } }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true + "fetch-blob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-2.1.2.tgz", + "integrity": "sha512-YKqtUDwqLyfyMnmbw8XD6Q8j9i/HggKtPEI+pZ1+8bvheBu78biSmNaXWusx1TauGqtUUGx/cBb1mKdq2rLYow==" }, - "injection-js": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/injection-js/-/injection-js-2.4.0.tgz", - "integrity": "sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==", + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, "requires": { - "tslib": "^2.0.0" + "escape-string-regexp": "^1.0.5" } }, - "inquirer": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.1.2.tgz", - "integrity": "sha512-DHLKJwLPNgkfwNmsuEUKSejJFbkv0FMO9SMiQbjI3n5NQuCrSIBqP66ggqyz2a6t2qEolKrMjhQ3+W/xXgUQ+Q==", + "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==", "dev": true, "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.3.0", - "run-async": "^2.4.0", - "rxjs": "^7.2.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6" + "flat-cache": "^3.0.4" + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, + "filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dev": true, + "requires": { + "minimatch": "^5.0.1" }, "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "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, "requires": { - "color-convert": "^2.0.1" + "balanced-match": "^1.0.0" } }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "brace-expansion": "^2.0.1" } - }, - "color-convert": { + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { "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, + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "requires": { - "color-name": "~1.1.4" + "is-extendable": "^0.1.0" } - }, - "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 - }, - "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 - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "rxjs": { - "version": "7.5.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", - "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", - "dev": true, + } + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "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" + }, + "dependencies": { + "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==", "requires": { - "tslib": "^2.1.0" + "ee-first": "1.1.1" } }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + } + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": { + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "requires": { - "ansi-regex": "^5.0.1" + "semver": "^6.0.0" } + } + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "dependencies": { + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true }, - "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==", + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "glob": "^7.1.3" } } } }, - "internal-ip": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", - "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", - "dev": true, + "flatted": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==" + }, + "follow-redirects": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" + }, + "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==", "requires": { - "default-gateway": "^4.2.0", - "ipaddr.js": "^1.9.0" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" } }, - "inversify": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/inversify/-/inversify-5.1.1.tgz", - "integrity": "sha512-j8grHGDzv1v+8T1sAQ+3boTCntFPfvxLCkNcxB1J8qA0lUN+fAlSyYd+RXKvaPRL4AGyPxViutBEJHNXOyUdFQ==" - }, - "ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true }, - "ip-regex": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", "dev": true }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true }, - "is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "dev": true }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, "requires": { - "kind-of": "^3.0.2" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, "requires": { - "is-buffer": "^1.1.5" + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true } } }, - "is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "minipass": "^3.0.0" } }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", "dev": true }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, "requires": { - "binary-extensions": "^1.0.0" + "bindings": "^1.5.0", + "nan": "^2.12.1" } }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, - "is-builtin-module": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.0.tgz", - "integrity": "sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==", - "dev": true, - "requires": { - "builtin-modules": "^3.3.0" - } + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true }, - "is-core-module": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", - "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", "dev": true, "requires": { - "has": "^1.0.3" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "requires": { - "kind-of": "^3.0.2" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" }, "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, "requires": { - "is-buffer": "^1.1.5" + "ansi-regex": "^5.0.1" } } } }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", + "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" - } + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" } }, - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true }, - "is-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", - "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==" }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "requires": { - "is-extglob": "^2.1.1" + "assert-plus": "^1.0.0" } }, - "is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true - }, - "is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", - "dev": true - }, - "is-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", - "dev": true + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", "requires": { - "kind-of": "^3.0.2" + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" }, "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", "requires": { - "is-buffer": "^1.1.5" + "is-extglob": "^2.1.0" } } } }, - "is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, - "is-path-in-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", - "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", - "dev": true, - "requires": { - "is-path-inside": "^2.1.0" - } - }, - "is-path-inside": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", - "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", - "dev": true, - "requires": { - "path-is-inside": "^1.0.2" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "global": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", "requires": { - "isobject": "^3.0.1" + "min-document": "^2.19.0", + "process": "^0.11.10" } }, - "is-reference": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", - "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", - "dev": true, - "requires": { - "@types/estree": "*" - } + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "globby": { + "version": "13.1.3", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", + "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^4.0.0" } }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "dev": true - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" - }, - "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 + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" }, - "is-what": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", "dev": true }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - }, - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, + "grunt-karma": { + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/grunt-karma/-/grunt-karma-0.12.2.tgz", + "integrity": "sha512-houkUR8sks8uliJ5khwvV4Cf2vrxSPkvCt+w9uwOOHhDOCLZ9ZE4/MeDmC7GgSajGK+h/svpacbKFHyjNbCsng==", "requires": { - "is-docker": "^2.0.0" + "lodash": "^3.10.1" } }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "isbinaryfile": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", - "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", "dev": true }, - "isexe": { + "har-schema": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - }, - "istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", - "dev": true - }, - "istanbul-lib-instrument": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", - "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", - "dev": true, - "requires": { - "@babel/core": "^7.7.5", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.0.0", - "semver": "^6.3.0" - } + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==" }, - "istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", - "dev": true, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", "requires": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "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 - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "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, - "requires": { - "has-flag": "^4.0.0" - } - } + "ajv": "^6.12.3", + "har-schema": "^2.0.0" } }, - "istanbul-lib-source-maps": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", - "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", - "dev": true, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^2.0.5", - "make-dir": "^2.1.0", - "rimraf": "^2.6.3", - "source-map": "^0.6.1" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "istanbul-lib-coverage": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", - "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } + "function-bind": "^1.1.1" } }, - "istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", "dev": true, "requires": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" + "ansi-regex": "^2.0.0" } }, - "jasmine": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/jasmine/-/jasmine-2.8.0.tgz", - "integrity": "sha512-KbdGQTf5jbZgltoHs31XGiChAPumMSY64OZMWLNYnEnMfG5uwGBhffePwuskexjT+/Jea/gU3qAU8344hNohSw==", - "dev": true, + "has-binary2": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz", + "integrity": "sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==", "requires": { - "exit": "^0.1.2", - "glob": "^7.0.6", - "jasmine-core": "~2.8.0" - }, - "dependencies": { - "jasmine-core": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-2.8.0.tgz", - "integrity": "sha512-SNkOkS+/jMZvLhuSx1fjhcNWUC/KG6oVyFUGkSBEr9n1axSNduWU8GlI7suaHXr4yxjet6KjrUZxUTE5WzzWwQ==", - "dev": true + "isarray": "2.0.1" + }, + "dependencies": { + "isarray": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz", + "integrity": "sha512-c2cu3UxbI+b6kR3fy0nRnAhodsvR9dx7U5+znCOzdj6IfP3upFURTr0Xl5BlQZNKZjEtxrmVyfSdeE3O57smoQ==" } } }, - "jasmine-core": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-3.6.0.tgz", - "integrity": "sha512-8uQYa7zJN8hq9z+g8z1bqCfdC8eoDAeVnM5sfqs7KHv9/ifoJ500m018fpFc7RDaO6SWCLCXwo/wPSNcdYTgcw==", + "has-cors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", + "integrity": "sha512-g5VNKdkFuUuVCP9gYfDJHjK2nqdQJ7aDLTnycnc2+RvsOQbuLdF5pm7vuE5J76SEBIQjs4kQY/BWq74JUmjbXA==" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true }, - "jasmine-spec-reporter": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/jasmine-spec-reporter/-/jasmine-spec-reporter-5.0.2.tgz", - "integrity": "sha512-6gP1LbVgJ+d7PKksQBc2H0oDGNRQI3gKUsWlswKaQ2fif9X5gzhQcgM5+kiJGCQVurOG09jqNhk7payggyp5+g==", - "dev": true, - "requires": { - "colors": "1.4.0" - } + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" }, - "jasminewd2": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/jasminewd2/-/jasminewd2-2.2.0.tgz", - "integrity": "sha512-Rn0nZe4rfDhzA63Al3ZGh0E+JTmM6ESZYXJGKuqKGZObsAB9fwXPD03GjtIEvJBDOhN94T5MzbwZSqzFHSQPzg==", + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", "dev": true }, - "jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "dev": true, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" }, "dependencies": { - "has-flag": { + "kind-of": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", "requires": { - "has-flag": "^4.0.0" + "is-buffer": "^1.1.5" } } } }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "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, "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "@assemblyscript/loader": "^0.10.1", + "base64-js": "^1.2.0", + "pako": "^1.0.3" } }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "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 - }, - "json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" - }, - "json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", - "dev": true - }, - "jsonc-parser": { + "hdr-histogram-percentiles-obj": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", - "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", + "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", + "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", "dev": true }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "hosted-git-info": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-5.2.1.tgz", + "integrity": "sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==", "dev": true, "requires": { - "graceful-fs": "^4.1.6" - } - }, - "jsonld": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/jsonld/-/jsonld-5.2.0.tgz", - "integrity": "sha512-JymgT6Xzk5CHEmHuEyvoTNviEPxv6ihLWSPu1gFdtjSAyM6cFqNrv02yS/SIur3BBIkCf0HjizRc24d8/FfQKw==", - "requires": { - "@digitalbazaar/http-client": "^1.1.0", - "canonicalize": "^1.0.1", - "lru-cache": "^6.0.0", - "rdf-canonize": "^3.0.0" + "lru-cache": "^7.5.1" }, "dependencies": { "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==", - "requires": { - "yallist": "^4.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "version": "7.14.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.14.1.tgz", + "integrity": "sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==", + "dev": true } } }, - "jsonld-signatures": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/jsonld-signatures/-/jsonld-signatures-6.0.0.tgz", - "integrity": "sha512-GIh5DCZ5g5vQBAFcjSDHmYyTaD/fYh5KwlAiKgx83VRzcQNNgzeG7DsLdXcgyCxEai9qIM9u2frZAInKDN5+og==", + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, "requires": { - "base64url": "^3.0.1", - "crypto-ld": "^3.7.0", - "jsonld": "^2.0.2", - "node-forge": "^0.10.0", - "security-context": "^4.0.0", - "serialize-error": "^5.0.0" - }, - "dependencies": { - "jsonld": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/jsonld/-/jsonld-2.0.2.tgz", - "integrity": "sha512-/TQzRe75/3h2khu57IUojha5oat+M82bm8RYw0jLhlmmPrW/kTWAZ9nGzKPfZWnPYnVVJJMQVc/pU8HCmpv9xg==", - "requires": { - "canonicalize": "^1.0.1", - "lru-cache": "^5.1.1", - "rdf-canonize": "^1.0.2", - "request": "^2.88.0", - "semver": "^6.3.0", - "xmldom": "0.1.19" - } - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "requires": { - "yallist": "^3.0.2" - } - }, - "rdf-canonize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/rdf-canonize/-/rdf-canonize-1.2.0.tgz", - "integrity": "sha512-MQdcRDz4+82nUrEb3hNQangBDpmep15uMmnWclGi/1KS0bNVc8oHpoNI0PFLHZsvwgwRzH31bO1JAScqUAstvw==", - "requires": { - "node-forge": "^0.10.0", - "semver": "^6.3.0" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" } }, - "jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "html-entities": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", "dev": true }, - "jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "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==", "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" } }, - "jszip": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", - "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "requires": { - "lie": "~3.3.0", - "pako": "~1.0.2", - "readable-stream": "~2.3.6", - "setimmediate": "^1.0.5" + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" } }, - "karma": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.1.tgz", - "integrity": "sha512-Cj57NKOskK7wtFWSlMvZf459iX+kpYIPXmkNUzP2WAFcA7nhr/ALn5R7sw3w+1udFDcpMx/tuB8d5amgm3ijaA==", + "http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, "requires": { - "@colors/colors": "1.5.0", - "body-parser": "^1.19.0", - "braces": "^3.0.2", - "chokidar": "^3.5.1", - "connect": "^3.7.0", - "di": "^0.0.1", - "dom-serialize": "^2.2.1", - "glob": "^7.1.7", - "graceful-fs": "^4.2.6", - "http-proxy": "^1.18.1", - "isbinaryfile": "^4.0.8", - "lodash": "^4.17.21", - "log4js": "^6.4.1", - "mime": "^2.5.2", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.5", - "qjobs": "^1.2.0", - "range-parser": "^1.2.1", - "rimraf": "^3.0.2", - "socket.io": "^4.4.1", - "source-map": "^0.6.1", - "tmp": "^0.2.1", - "ua-parser-js": "^0.7.30", - "yargs": "^16.1.1" + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" }, "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, "requires": { - "color-convert": "^2.0.1" + "debug": "4" } }, - "anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "ms": "2.1.2" } }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true - }, + } + } + }, + "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, + "requires": { + "@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" + }, + "dependencies": { "braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", @@ -8155,48 +8260,6 @@ "fill-range": "^7.0.1" } }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "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, - "requires": { - "color-name": "~1.1.4" - } - }, - "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 - }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -8206,77 +8269,20 @@ "to-regex-range": "^5.0.1" } }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "tmp": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "requires": { - "rimraf": "^3.0.0" + "braces": "^3.0.2", + "picomatch": "^2.3.1" } }, "to-regex-range": { @@ -8287,321 +8293,238 @@ "requires": { "is-number": "^7.0.0" } - }, - "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, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true - }, - "yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-proxy-agent": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", + "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", + "dev": true, + "requires": { + "agent-base": "^4.3.0", + "debug": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { - "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" + "ms": "^2.1.1" } }, - "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==", + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true } } }, - "karma-chrome-launcher": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-3.1.1.tgz", - "integrity": "sha512-hsIglcq1vtboGPAN+DGCISCFOxW+ZVnIqhDQcCMqqCp+4dmJ0Qpq5QAjkbA0X2L9Mi6OBkHi2Srrbmm7pUKkzQ==", - "dev": true, - "requires": { - "which": "^1.2.1" - } + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true }, - "karma-coverage-istanbul-reporter": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-3.0.3.tgz", - "integrity": "sha512-wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw==", + "humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", "dev": true, "requires": { - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^3.0.6", - "istanbul-reports": "^3.0.2", - "minimatch": "^3.0.4" + "ms": "^2.0.0" } }, - "karma-jasmine": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-4.0.2.tgz", - "integrity": "sha512-ggi84RMNQffSDmWSyyt4zxzh2CQGwsxvYYsprgyR1j8ikzIduEdOlcLvXjZGwXG/0j41KUXOWsUCBfbEHPWP9g==", - "dev": true, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "requires": { - "jasmine-core": "^3.6.0" - }, - "dependencies": { - "jasmine-core": { - "version": "3.99.1", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-3.99.1.tgz", - "integrity": "sha512-Hu1dmuoGcZ7AfyynN3LsfruwMbxMALMka+YtZeGoLuDEySVmVAPaonkNoBRIw/ectu8b9tVQCJNgp4a4knp+tg==", - "dev": true - } + "safer-buffer": ">= 2.1.2 < 3" } }, - "karma-jasmine-html-reporter": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.7.0.tgz", - "integrity": "sha512-pzum1TL7j90DTE86eFt48/s12hqwQuiD+e5aXx2Dc9wDEn2LfGq6RoAxEZZjFiN0RDSCOnosEKRZWxbQ+iMpQQ==", + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "dev": true }, - "karma-mocha-reporter": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/karma-mocha-reporter/-/karma-mocha-reporter-2.2.5.tgz", - "integrity": "sha512-Hr6nhkIp0GIJJrvzY8JFeHpQZNseuIakGac4bpw8K1+5F0tLb6l7uvXRa8mt2Z+NVwYgCct4QAfp2R2QP6o00w==", + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true + }, + "ignore-walk": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz", + "integrity": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==", "dev": true, "requires": { - "chalk": "^2.1.0", - "log-symbols": "^2.1.0", - "strip-ansi": "^4.0.0" + "minimatch": "^5.0.1" }, "dependencies": { - "ansi-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", - "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", - "dev": true - }, - "log-symbols": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", - "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "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, "requires": { - "chalk": "^2.0.1" + "balanced-match": "^1.0.0" } }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, "requires": { - "ansi-regex": "^3.0.0" + "brace-expansion": "^2.0.1" } } } }, - "karma-source-map-support": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", - "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", "dev": true, - "requires": { - "source-map-support": "^0.5.5" - } - }, - "keycode": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/keycode/-/keycode-2.2.1.tgz", - "integrity": "sha512-Rdgz9Hl9Iv4QKi8b0OlCRQEzp4AgVxyCtz5S/+VIHezDmrDhkp2N2TqBWOLz0/gbeREXOOiI9/4b8BY9uw2vFg==" - }, - "killable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", - "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", - "dev": true + "optional": true }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + "immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" }, - "klona": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", - "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "immutable": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.2.2.tgz", + "integrity": "sha512-fTMKDwtbvO5tldky9QZ2fMX7slR0mYpY5nbnFWYp0fOzDhHqhgIw9KoYgxLWsoNTS9ZHGauHj18DTyEw6BK3Og==", "dev": true }, - "ky": { - "version": "0.25.1", - "resolved": "https://registry.npmjs.org/ky/-/ky-0.25.1.tgz", - "integrity": "sha512-PjpCEWlIU7VpiMVrTwssahkYXX1by6NCT0fhTUX34F3DTinARlgMpriuroolugFPcMgpPWrOW4mTb984Qm1RXA==" - }, - "ky-universal": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/ky-universal/-/ky-universal-0.8.2.tgz", - "integrity": "sha512-xe0JaOH9QeYxdyGLnzUOVGK4Z6FGvDVzcXFTdrYA1f33MZdEa45sUDaMBy98xQMcsd2XIBrTXRrRYnegcSdgVQ==", - "requires": { - "abort-controller": "^3.0.0", - "node-fetch": "3.0.0-beta.9" - }, - "dependencies": { - "node-fetch": { - "version": "3.0.0-beta.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.0.0-beta.9.tgz", - "integrity": "sha512-RdbZCEynH2tH46+tj0ua9caUHVWrd/RHnRfvly2EVdqGmI3ndS1Vn/xjm5KuGejDt2RNDQsVRLPNd2QPwcewVg==", - "requires": { - "data-uri-to-buffer": "^3.0.1", - "fetch-blob": "^2.1.1" - } - } - } - }, - "less": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/less/-/less-4.1.1.tgz", - "integrity": "sha512-w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw==", + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "requires": { - "copy-anything": "^2.0.1", - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "make-dir": "^2.1.0", - "mime": "^1.4.1", - "needle": "^2.5.2", - "parse-node-version": "^1.0.1", - "source-map": "~0.6.0", - "tslib": "^1.10.0" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "dependencies": { - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "optional": true - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true } } }, - "less-loader": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-10.0.1.tgz", - "integrity": "sha512-Crln//HpW9M5CbtdfWm3IO66Cvx1WhZQvNybXgfB2dD/6Sav9ppw+IWqs/FQKPBFO4B6X0X28Z0WNznshgwUzA==", - "dev": true, - "requires": { - "klona": "^2.0.4" - } - }, - "license-webpack-plugin": { - "version": "2.3.20", - "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-2.3.20.tgz", - "integrity": "sha512-AHVueg9clOKACSHkhmEI+PCC9x8+qsQVuKECZD3ETxETK5h/PCv5/MUzyG1gm8OMcip/s1tcNxqo9Qb7WhjGsg==", - "dev": true, - "requires": { - "@types/webpack-sources": "^0.1.5", - "webpack-sources": "^1.2.0" - } - }, - "lie": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", - "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", - "requires": { - "immediate": "~3.0.5" - } - }, - "lilconfig": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", - "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true }, - "lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true }, - "loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "dev": true + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==" }, - "loader-utils": { + "individual": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } + "resolved": "https://registry.npmjs.org/individual/-/individual-2.0.0.tgz", + "integrity": "sha512-pWt8hBCqJsUWI/HtcfWod7+N9SgAqyPEaF7JQjwzjn5vGrpg6aQ5qeAFQ7dx//UH4J1O+7xqew+gCeeFt6xN/g==" }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "requires": { - "p-locate": "^4.1.0" + "once": "^1.3.0", + "wrappy": "1" } }, - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha512-9mDDwqVIma6OZX79ZlDACZl8sBm0TEnkf99zV3iMA4GzkIT/9hiqP5mY0HoT1iNLCrKc/R1HByV+yJfRWVJryQ==" - }, - "lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, - "lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true + "injection-js": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/injection-js/-/injection-js-2.4.0.tgz", + "integrity": "sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==", + "dev": true, + "requires": { + "tslib": "^2.0.0" + } }, - "log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "inquirer": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", + "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", "dev": true, "requires": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" }, "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -8642,6 +8565,30 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "rxjs": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", + "integrity": "sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==", + "dev": true, + "requires": { + "tslib": "^2.1.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -8653,655 +8600,731 @@ } } }, - "log4js": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.6.1.tgz", - "integrity": "sha512-J8VYFH2UQq/xucdNu71io4Fo+purYYudyErgBbswWKO0MC6QVOERRomt5su/z6d3RJSmLyTGmXl3Q/XjKCf+/A==", - "dev": true, - "requires": { - "date-format": "^4.0.13", - "debug": "^4.3.4", - "flatted": "^3.2.6", - "rfdc": "^1.3.0", - "streamroller": "^3.1.2" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } + "inversify": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/inversify/-/inversify-5.1.1.tgz", + "integrity": "sha512-j8grHGDzv1v+8T1sAQ+3boTCntFPfvxLCkNcxB1J8qA0lUN+fAlSyYd+RXKvaPRL4AGyPxViutBEJHNXOyUdFQ==" }, - "loglevel": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", - "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", "dev": true }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "m3u8-parser": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/m3u8-parser/-/m3u8-parser-4.7.0.tgz", - "integrity": "sha512-48l/OwRyjBm+QhNNigEEcRcgbRvnUjL7rxs597HmW9QSNbyNvt+RcZ9T/d9vxi9A9z7EZrB1POtZYhdRlwYQkQ==", - "requires": { - "@babel/runtime": "^7.12.5", - "@videojs/vhs-utils": "^3.0.0", - "global": "^4.4.0" - } - }, - "magic-string": { - "version": "0.25.7", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", - "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", - "dev": true, - "requires": { - "sourcemap-codec": "^1.4.4" - } + "ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "dev": true }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "kind-of": "^3.0.2" }, "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "requires": { + "is-buffer": "^1.1.5" + } } } }, - "make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, - "make-fetch-happen": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", - "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", - "dev": true, - "requires": { - "agentkeepalive": "^4.1.3", - "cacache": "^15.2.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^6.0.0", - "minipass": "^3.1.3", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^1.3.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.2", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^6.0.0", - "ssri": "^8.0.0" - }, - "dependencies": { - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "requires": { - "debug": "4" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "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, - "requires": { - "yallist": "^4.0.0" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "requires": { + "binary-extensions": "^1.0.0" } }, - "map-age-cleaner": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", - "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-builtin-module": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.0.tgz", + "integrity": "sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==", "dev": true, "requires": { - "p-defer": "^1.0.0" + "builtin-modules": "^3.3.0" } }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==" - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "dev": true, "requires": { - "object-visit": "^1.0.0" + "has": "^1.0.3" } }, - "mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", - "dev": true - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" - }, - "mem": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/mem/-/mem-8.1.1.tgz", - "integrity": "sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==", - "dev": true, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", "requires": { - "map-age-cleaner": "^0.1.3", - "mimic-fn": "^3.1.0" + "kind-of": "^3.0.2" }, "dependencies": { - "mimic-fn": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz", - "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==", - "dev": true + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "requires": { + "is-buffer": "^1.1.5" + } } } }, - "memfs": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", - "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", - "dev": true, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { - "fs-monkey": "^1.0.3" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } } }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", - "dev": true, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", + "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" + "is-extglob": "^2.1.1" } }, - "merge-descriptors": { + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, + "is-lambda": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", "dev": true }, - "merge-source-map": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", - "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", - "dev": true, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "dev": true + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "requires": { - "source-map": "^0.6.1" + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "requires": { + "is-buffer": "^1.1.5" + } + } } }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "dev": true }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" + "isobject": "^3.0.1" } }, - "mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "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 + }, + "is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, "requires": { - "mime-db": "1.52.0" + "is-docker": "^2.0.0" } }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "isbinaryfile": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", + "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", "dev": true }, - "min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, "requires": { - "dom-walk": "^0.1.0" + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" } }, - "mini-css-extract-plugin": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.4.2.tgz", - "integrity": "sha512-ZmqShkn79D36uerdED+9qdo1ZYG8C1YsWvXu0UMJxurZnSdgz7gQKO2EGv8T55MhDqG3DYmGtizZNpM/UbTlcA==", + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, "requires": { - "schema-utils": "^3.1.0" + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" }, "dependencies": { - "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "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 + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "semver": "^6.0.0" + } + }, + "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, + "requires": { + "has-flag": "^4.0.0" } } } }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" - }, - "minipass": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", - "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "istanbul-lib-source-maps": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", + "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", "dev": true, "requires": { - "yallist": "^4.0.0" + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" }, "dependencies": { - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true } } }, - "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==", + "istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", "dev": true, "requires": { - "minipass": "^3.0.0" + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" } }, - "minipass-fetch": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", - "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", + "jake": { + "version": "10.8.5", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", + "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", "dev": true, "requires": { - "encoding": "^0.1.12", - "minipass": "^3.1.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.0.0" + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "dependencies": { + "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, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "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, + "requires": { + "color-name": "~1.1.4" + } + }, + "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 + }, + "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 + }, + "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, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "jasmine": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/jasmine/-/jasmine-2.8.0.tgz", + "integrity": "sha512-KbdGQTf5jbZgltoHs31XGiChAPumMSY64OZMWLNYnEnMfG5uwGBhffePwuskexjT+/Jea/gU3qAU8344hNohSw==", "dev": true, "requires": { - "minipass": "^3.0.0" + "exit": "^0.1.2", + "glob": "^7.0.6", + "jasmine-core": "~2.8.0" + }, + "dependencies": { + "jasmine-core": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-2.8.0.tgz", + "integrity": "sha512-SNkOkS+/jMZvLhuSx1fjhcNWUC/KG6oVyFUGkSBEr9n1axSNduWU8GlI7suaHXr4yxjet6KjrUZxUTE5WzzWwQ==", + "dev": true + } } }, - "minipass-json-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", - "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", - "dev": true, - "requires": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" - } + "jasmine-core": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-3.6.0.tgz", + "integrity": "sha512-8uQYa7zJN8hq9z+g8z1bqCfdC8eoDAeVnM5sfqs7KHv9/ifoJ500m018fpFc7RDaO6SWCLCXwo/wPSNcdYTgcw==", + "dev": true }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "jasmine-spec-reporter": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/jasmine-spec-reporter/-/jasmine-spec-reporter-5.0.2.tgz", + "integrity": "sha512-6gP1LbVgJ+d7PKksQBc2H0oDGNRQI3gKUsWlswKaQ2fif9X5gzhQcgM5+kiJGCQVurOG09jqNhk7payggyp5+g==", "dev": true, "requires": { - "minipass": "^3.0.0" + "colors": "1.4.0" } }, - "minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } + "jasminewd2": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/jasminewd2/-/jasminewd2-2.2.0.tgz", + "integrity": "sha512-Rn0nZe4rfDhzA63Al3ZGh0E+JTmM6ESZYXJGKuqKGZObsAB9fwXPD03GjtIEvJBDOhN94T5MzbwZSqzFHSQPzg==", + "dev": true }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "dependencies": { - "yallist": { + "has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, "requires": { - "is-plain-object": "^2.0.4" + "has-flag": "^4.0.0" } } } }, - "mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "requires": { - "minimist": "^1.2.6" - } - }, - "mpd-parser": { - "version": "0.21.0", - "resolved": "https://registry.npmjs.org/mpd-parser/-/mpd-parser-0.21.0.tgz", - "integrity": "sha512-NbpMJ57qQzFmfCiP1pbL7cGMbVTD0X1hqNgL0VYP1wLlZXLf/HtmvQpNkOA1AHkPVeGQng+7/jEtSvNUzV7Gdg==", - "requires": { - "@babel/runtime": "^7.12.5", - "@videojs/vhs-utils": "^3.0.2", - "@xmldom/xmldom": "^0.7.2", - "global": "^4.4.0" - } + "js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", + "dev": true }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, - "multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "requires": { - "dns-packet": "^1.3.1", - "thunky": "^1.0.2" + "argparse": "^1.0.7", + "esprima": "^4.0.0" } }, - "multicast-dns-service-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "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 }, - "mux.js": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/mux.js/-/mux.js-6.0.1.tgz", - "integrity": "sha512-22CHb59rH8pWGcPGW5Og7JngJ9s+z4XuSlYvnxhLuc58cA1WqGDQPzuG8I+sPm1/p0CdgpzVTaKW408k5DNn8w==", - "requires": { - "@babel/runtime": "^7.11.2", - "global": "^4.4.0" - } + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" }, - "nan": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", - "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==", - "optional": true + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, - "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true + }, + "jsonc-parser": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.1.0.tgz", + "integrity": "sha512-DRf0QjnNeCUds3xTjKlQQ3DpJD51GvDjJfnxUVWg6PZTo2otSm+slzNAxU/35hF8/oJIKoG9slq30JYOsF2azg==", + "dev": true + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "graceful-fs": "^4.1.6" } }, - "needle": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", - "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", - "dev": true, - "optional": true, + "jsonld": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/jsonld/-/jsonld-5.2.0.tgz", + "integrity": "sha512-JymgT6Xzk5CHEmHuEyvoTNviEPxv6ihLWSPu1gFdtjSAyM6cFqNrv02yS/SIur3BBIkCf0HjizRc24d8/FfQKw==", "requires": { - "debug": "^3.2.6", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" + "@digitalbazaar/http-client": "^1.1.0", + "canonicalize": "^1.0.1", + "lru-cache": "^6.0.0", + "rdf-canonize": "^3.0.0" }, "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "optional": true, + "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==", "requires": { - "ms": "^2.1.1" + "yallist": "^4.0.0" } }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true, - "optional": true + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } } }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + "jsonld-signatures": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/jsonld-signatures/-/jsonld-signatures-6.0.0.tgz", + "integrity": "sha512-GIh5DCZ5g5vQBAFcjSDHmYyTaD/fYh5KwlAiKgx83VRzcQNNgzeG7DsLdXcgyCxEai9qIM9u2frZAInKDN5+og==", + "requires": { + "base64url": "^3.0.1", + "crypto-ld": "^3.7.0", + "jsonld": "^2.0.2", + "node-forge": "^0.10.0", + "security-context": "^4.0.0", + "serialize-error": "^5.0.0" + }, + "dependencies": { + "jsonld": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/jsonld/-/jsonld-2.0.2.tgz", + "integrity": "sha512-/TQzRe75/3h2khu57IUojha5oat+M82bm8RYw0jLhlmmPrW/kTWAZ9nGzKPfZWnPYnVVJJMQVc/pU8HCmpv9xg==", + "requires": { + "canonicalize": "^1.0.1", + "lru-cache": "^5.1.1", + "rdf-canonize": "^1.0.2", + "request": "^2.88.0", + "semver": "^6.3.0", + "xmldom": "0.1.19" + } + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "requires": { + "yallist": "^3.0.2" + } + }, + "rdf-canonize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/rdf-canonize/-/rdf-canonize-1.2.0.tgz", + "integrity": "sha512-MQdcRDz4+82nUrEb3hNQangBDpmep15uMmnWclGi/1KS0bNVc8oHpoNI0PFLHZsvwgwRzH31bO1JAScqUAstvw==", + "requires": { + "node-forge": "^0.10.0", + "semver": "^6.3.0" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + } }, - "neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", "dev": true }, - "ng-packagr": { - "version": "12.2.7", - "resolved": "https://registry.npmjs.org/ng-packagr/-/ng-packagr-12.2.7.tgz", - "integrity": "sha512-ccNeboOdLGOmqk3hvN/4tUO+e7VXZM5f/uj4SYVRtaLT9DuOR63Ln4kn4NOhlxkcmVgqJM8Iwd3M1hSn215nSg==", + "jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } + }, + "jszip": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "requires": { + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "setimmediate": "^1.0.5" + } + }, + "karma": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.1.tgz", + "integrity": "sha512-Cj57NKOskK7wtFWSlMvZf459iX+kpYIPXmkNUzP2WAFcA7nhr/ALn5R7sw3w+1udFDcpMx/tuB8d5amgm3ijaA==", "dev": true, "requires": { - "@rollup/plugin-commonjs": "^20.0.0", - "@rollup/plugin-json": "^4.1.0", - "@rollup/plugin-node-resolve": "^13.0.0", - "ajv": "^8.0.0", - "ansi-colors": "^4.1.1", - "browserslist": "^4.16.1", - "cacache": "^15.0.6", - "chokidar": "^3.5.1", - "commander": "^8.0.0", - "dependency-graph": "^0.11.0", - "esbuild": "0.13.8", - "esbuild-wasm": "0.13.8", - "find-cache-dir": "^3.3.1", - "glob": "^7.1.6", - "injection-js": "^2.4.0", - "jsonc-parser": "^3.0.0", - "less": "^4.1.0", - "node-sass-tilde-importer": "^1.0.2", - "ora": "^5.1.0", - "postcss": "^8.2.4", - "postcss-preset-env": "^6.7.0", - "postcss-url": "^10.1.1", - "rollup": "^2.45.1", - "rollup-plugin-sourcemaps": "^0.6.3", - "rxjs": "^6.5.0", - "sass": "^1.32.8", - "stylus": "^0.54.8" + "@colors/colors": "1.5.0", + "body-parser": "^1.19.0", + "braces": "^3.0.2", + "chokidar": "^3.5.1", + "connect": "^3.7.0", + "di": "^0.0.1", + "dom-serialize": "^2.2.1", + "glob": "^7.1.7", + "graceful-fs": "^4.2.6", + "http-proxy": "^1.18.1", + "isbinaryfile": "^4.0.8", + "lodash": "^4.17.21", + "log4js": "^6.4.1", + "mime": "^2.5.2", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.5", + "qjobs": "^1.2.0", + "range-parser": "^1.2.1", + "rimraf": "^3.0.2", + "socket.io": "^4.4.1", + "source-map": "^0.6.1", + "tmp": "^0.2.1", + "ua-parser-js": "^0.7.30", + "yargs": "^16.1.1" }, "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "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, "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "color-convert": "^2.0.1" } }, "anymatch": { @@ -9345,38 +9368,32 @@ "readdirp": "~3.6.0" } }, - "commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", - "dev": true + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } }, - "esbuild": { - "version": "0.13.8", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.13.8.tgz", - "integrity": "sha512-A4af7G7YZLfG5OnARJRMtlpEsCkq/zHZQXewgPA864l9D6VjjbH1SuFYK/OSV6BtHwDGkdwyRrX0qQFLnMfUcw==", + "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, - "optional": true, "requires": { - "esbuild-android-arm64": "0.13.8", - "esbuild-darwin-64": "0.13.8", - "esbuild-darwin-arm64": "0.13.8", - "esbuild-freebsd-64": "0.13.8", - "esbuild-freebsd-arm64": "0.13.8", - "esbuild-linux-32": "0.13.8", - "esbuild-linux-64": "0.13.8", - "esbuild-linux-arm": "0.13.8", - "esbuild-linux-arm64": "0.13.8", - "esbuild-linux-mips64le": "0.13.8", - "esbuild-linux-ppc64le": "0.13.8", - "esbuild-netbsd-64": "0.13.8", - "esbuild-openbsd-64": "0.13.8", - "esbuild-sunos-64": "0.13.8", - "esbuild-windows-32": "0.13.8", - "esbuild-windows-64": "0.13.8", - "esbuild-windows-arm64": "0.13.8" + "color-name": "~1.1.4" } }, + "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 + }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -9417,10 +9434,10 @@ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, "readdirp": { @@ -9432,6 +9449,33 @@ "picomatch": "^2.2.1" } }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } + }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -9440,2243 +9484,2654 @@ "requires": { "is-number": "^7.0.0" } + }, + "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, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "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" + } + }, + "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 } } }, - "ngx-bootstrap": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/ngx-bootstrap/-/ngx-bootstrap-6.2.0.tgz", - "integrity": "sha512-5WKHo6/ltkenw4UyXZwED8rODCgp2RGbWurzYzZsF/gH1JO5SN7TJ+AL6kXYk6XM42sDA2WhN9Db+ZPNjiyHnA==" - }, - "nice-napi": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", - "integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==", + "karma-chrome-launcher": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-3.1.1.tgz", + "integrity": "sha512-hsIglcq1vtboGPAN+DGCISCFOxW+ZVnIqhDQcCMqqCp+4dmJ0Qpq5QAjkbA0X2L9Mi6OBkHi2Srrbmm7pUKkzQ==", "dev": true, - "optional": true, "requires": { - "node-addon-api": "^3.0.0", - "node-gyp-build": "^4.2.2" + "which": "^1.2.1" } }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true - }, - "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==", + "karma-coverage-istanbul-reporter": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-3.0.3.tgz", + "integrity": "sha512-wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw==", "dev": true, - "optional": true + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^3.0.6", + "istanbul-reports": "^3.0.2", + "minimatch": "^3.0.4" + } }, - "node-fetch": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.5.tgz", - "integrity": "sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==", + "karma-jasmine": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-4.0.2.tgz", + "integrity": "sha512-ggi84RMNQffSDmWSyyt4zxzh2CQGwsxvYYsprgyR1j8ikzIduEdOlcLvXjZGwXG/0j41KUXOWsUCBfbEHPWP9g==", + "dev": true, "requires": { - "whatwg-url": "^5.0.0" + "jasmine-core": "^3.6.0" + }, + "dependencies": { + "jasmine-core": { + "version": "3.99.1", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-3.99.1.tgz", + "integrity": "sha512-Hu1dmuoGcZ7AfyynN3LsfruwMbxMALMka+YtZeGoLuDEySVmVAPaonkNoBRIw/ectu8b9tVQCJNgp4a4knp+tg==", + "dev": true + } } }, - "node-forge": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", - "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" + "karma-jasmine-html-reporter": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.7.0.tgz", + "integrity": "sha512-pzum1TL7j90DTE86eFt48/s12hqwQuiD+e5aXx2Dc9wDEn2LfGq6RoAxEZZjFiN0RDSCOnosEKRZWxbQ+iMpQQ==", + "dev": true }, - "node-gyp": { - "version": "8.4.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", - "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", + "karma-mocha-reporter": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/karma-mocha-reporter/-/karma-mocha-reporter-2.2.5.tgz", + "integrity": "sha512-Hr6nhkIp0GIJJrvzY8JFeHpQZNseuIakGac4bpw8K1+5F0tLb6l7uvXRa8mt2Z+NVwYgCct4QAfp2R2QP6o00w==", "dev": true, "requires": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^9.1.0", - "nopt": "^5.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" + "chalk": "^2.1.0", + "log-symbols": "^2.1.0", + "strip-ansi": "^4.0.0" }, "dependencies": { - "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, - "requires": { - "yallist": "^4.0.0" - } - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } + "ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", "dev": true, "requires": { - "isexe": "^2.0.0" + "chalk": "^2.0.1" } }, - "yallist": { + "strip-ansi": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } } } }, - "node-gyp-build": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", - "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==", - "optional": true + "karma-source-map-support": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", + "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", + "dev": true, + "requires": { + "source-map-support": "^0.5.5" + } }, - "node-releases": { + "keycode": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/keycode/-/keycode-2.2.1.tgz", + "integrity": "sha512-Rdgz9Hl9Iv4QKi8b0OlCRQEzp4AgVxyCtz5S/+VIHezDmrDhkp2N2TqBWOLz0/gbeREXOOiI9/4b8BY9uw2vFg==" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "klona": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", "dev": true }, - "node-sass-tilde-importer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/node-sass-tilde-importer/-/node-sass-tilde-importer-1.0.2.tgz", - "integrity": "sha512-Swcmr38Y7uB78itQeBm3mThjxBy9/Ah/ykPIaURY/L6Nec9AyRoL/jJ7ECfMR+oZeCTVQNxVMu/aHU+TLRVbdg==", - "dev": true, + "ky": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/ky/-/ky-0.25.1.tgz", + "integrity": "sha512-PjpCEWlIU7VpiMVrTwssahkYXX1by6NCT0fhTUX34F3DTinARlgMpriuroolugFPcMgpPWrOW4mTb984Qm1RXA==" + }, + "ky-universal": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/ky-universal/-/ky-universal-0.8.2.tgz", + "integrity": "sha512-xe0JaOH9QeYxdyGLnzUOVGK4Z6FGvDVzcXFTdrYA1f33MZdEa45sUDaMBy98xQMcsd2XIBrTXRrRYnegcSdgVQ==", "requires": { - "find-parent-dir": "^0.3.0" + "abort-controller": "^3.0.0", + "node-fetch": "3.0.0-beta.9" + }, + "dependencies": { + "node-fetch": { + "version": "3.0.0-beta.9", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.0.0-beta.9.tgz", + "integrity": "sha512-RdbZCEynH2tH46+tj0ua9caUHVWrd/RHnRfvly2EVdqGmI3ndS1Vn/xjm5KuGejDt2RNDQsVRLPNd2QPwcewVg==", + "requires": { + "data-uri-to-buffer": "^3.0.1", + "fetch-blob": "^2.1.1" + } + } } }, - "noms": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/noms/-/noms-0.0.0.tgz", - "integrity": "sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==", + "less": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", + "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", "dev": true, "requires": { - "inherits": "^2.0.1", - "readable-stream": "~1.0.31" + "copy-anything": "^2.0.1", + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^3.1.0", + "parse-node-version": "^1.0.1", + "source-map": "~0.6.0", + "tslib": "^2.3.0" }, "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "dev": true - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "dev": true + "optional": true } } }, - "nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "less-loader": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.0.0.tgz", + "integrity": "sha512-9+LOWWjuoectIEx3zrfN83NAGxSUB5pWEabbbidVQVgZhN+wN68pOvuyirVlH1IK4VT1f3TmlyvAnCXh8O5KEw==", "dev": true, "requires": { - "abbrev": "1" + "klona": "^2.0.4" } }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "license-webpack-plugin": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", + "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", + "dev": true, + "requires": { + "webpack-sources": "^3.0.0" + } + }, + "lie": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "requires": { + "immediate": "~3.0.5" + } + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, - "normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "dev": true }, - "npm-bundled": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", - "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", + "loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "dev": true + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { - "npm-normalize-package-bin": "^1.0.1" + "p-locate": "^4.1.0" } }, - "npm-install-checks": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-4.0.0.tgz", - "integrity": "sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==", + "lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha512-9mDDwqVIma6OZX79ZlDACZl8sBm0TEnkf99zV3iMA4GzkIT/9hiqP5mY0HoT1iNLCrKc/R1HByV+yJfRWVJryQ==" + }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, "requires": { - "semver": "^7.1.1" + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" }, "dependencies": { - "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==", + "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, "requires": { - "yallist": "^4.0.0" + "color-convert": "^2.0.1" } }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { - "lru-cache": "^6.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "npm-normalize-package-bin": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", - "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", - "dev": true - }, - "npm-package-arg": { - "version": "8.1.5", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.5.tgz", - "integrity": "sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==", - "dev": true, - "requires": { - "hosted-git-info": "^4.0.1", - "semver": "^7.3.4", - "validate-npm-package-name": "^3.0.0" - }, - "dependencies": { - "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==", + "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, "requires": { - "yallist": "^4.0.0" + "color-name": "~1.1.4" } }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "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 + }, + "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 + }, + "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, "requires": { - "lru-cache": "^6.0.0" + "has-flag": "^4.0.0" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, - "npm-packlist": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-3.0.0.tgz", - "integrity": "sha512-L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ==", - "dev": true, - "requires": { - "glob": "^7.1.6", - "ignore-walk": "^4.0.1", - "npm-bundled": "^1.1.1", - "npm-normalize-package-bin": "^1.0.1" - } - }, - "npm-pick-manifest": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz", - "integrity": "sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==", + "log4js": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.6.1.tgz", + "integrity": "sha512-J8VYFH2UQq/xucdNu71io4Fo+purYYudyErgBbswWKO0MC6QVOERRomt5su/z6d3RJSmLyTGmXl3Q/XjKCf+/A==", "dev": true, "requires": { - "npm-install-checks": "^4.0.0", - "npm-normalize-package-bin": "^1.0.1", - "npm-package-arg": "^8.1.2", - "semver": "^7.3.4" + "date-format": "^4.0.13", + "debug": "^4.3.4", + "flatted": "^3.2.6", + "rfdc": "^1.3.0", + "streamroller": "^3.1.2" }, "dependencies": { - "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==", + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { - "yallist": "^4.0.0" + "ms": "2.1.2" } }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true } } }, - "npm-registry-fetch": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz", - "integrity": "sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA==", - "dev": true, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "requires": { - "make-fetch-happen": "^9.0.1", - "minipass": "^3.1.3", - "minipass-fetch": "^1.3.0", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.0.0", - "npm-package-arg": "^8.0.0" + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" } }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dev": true, + "m3u8-parser": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/m3u8-parser/-/m3u8-parser-4.7.0.tgz", + "integrity": "sha512-48l/OwRyjBm+QhNNigEEcRcgbRvnUjL7rxs597HmW9QSNbyNvt+RcZ9T/d9vxi9A9z7EZrB1POtZYhdRlwYQkQ==", "requires": { - "path-key": "^2.0.0" + "@babel/runtime": "^7.12.5", + "@videojs/vhs-utils": "^3.0.0", + "global": "^4.4.0" } }, - "npmlog": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", - "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "magic-string": { + "version": "0.26.2", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.2.tgz", + "integrity": "sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==", "dev": true, "requires": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" + "sourcemap-codec": "^1.4.8" } }, - "nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, "requires": { - "boolbase": "^1.0.0" + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, - "num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==", - "dev": true - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, - "object-component": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz", - "integrity": "sha512-S0sN3agnVh2SZNEIGc0N1X4Z5K0JeFbGBrnuZpsxuUh5XLF0BnvWkMjRXo/zGKLd/eghvNIKcx1pQkmUjXIyrA==" - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "make-fetch-happen": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", + "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", + "dev": true, "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" + "agentkeepalive": "^4.2.1", + "cacache": "^16.1.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^2.0.3", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^9.0.0" }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, "requires": { - "is-descriptor": "^0.1.0" + "debug": "4" } }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, "requires": { - "is-buffer": "^1.1.5" + "ms": "2.1.2" + } + }, + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "requires": { + "agent-base": "6", + "debug": "4" } + }, + "lru-cache": { + "version": "7.14.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.14.1.tgz", + "integrity": "sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true } } }, - "object-inspect": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", - "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==" }, - "object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "dev": true, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "object-visit": "^1.0.0" } }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", - "requires": { - "isobject": "^3.0.0" - } + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "memfs": { + "version": "3.4.13", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz", + "integrity": "sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", - "requires": { - "isobject": "^3.0.1" + "fs-monkey": "^1.0.3" } }, - "obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", "dev": true }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "requires": { - "ee-first": "1.1.1" - } + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "requires": { - "wrappy": "1" - } + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "requires": { - "mimic-fn": "^2.1.0" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" } }, - "open": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/open/-/open-8.2.1.tgz", - "integrity": "sha512-rXILpcQlkF/QuFez2BJDf3GsqpjGKbkUUToAIGo9A0Q6ZkoSGogZJulrUdwRkrAsoQvoZsrjCYt8+zblOk7JQQ==", - "dev": true, - "requires": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - } + "mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" }, - "opn": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", - "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", - "dev": true, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "requires": { - "is-wsl": "^1.1.0" - }, - "dependencies": { - "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 - } + "mime-db": "1.52.0" } }, - "optimist": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", - "integrity": "sha512-snN4O4TkigujZphWLN0E//nQmm7790RYaE53DdL7ZYwee2D8DDo9/EyYiKUfN3rneWUjhJnueija3G9I2i0h3g==", + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", "requires": { - "minimist": "~0.0.1", - "wordwrap": "~0.0.2" - }, - "dependencies": { - "minimist": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", - "integrity": "sha512-iotkTvxc+TwOm5Ieim8VnSNvCDjCK9S8G3scJ50ZthspSxa7jx50jkhYduuAtAjvfDUwSgOwf8+If99AlOEhyw==" - } + "dom-walk": "^0.1.0" } }, - "ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "mini-css-extract-plugin": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz", + "integrity": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==", "dev": true, "requires": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" + "schema-utils": "^4.0.0" }, "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "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, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "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==", + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "requires": { - "color-name": "~1.1.4" + "fast-deep-equal": "^3.1.3" } }, - "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==", + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "has-flag": { + "schema-utils": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "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==", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" } } } }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" - }, - "p-defer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", - "dev": true - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "p-retry": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", - "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", - "dev": true, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "requires": { - "retry": "^0.12.0" + "brace-expansion": "^1.1.7" } }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, - "pacote": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-12.0.2.tgz", - "integrity": "sha512-Ar3mhjcxhMzk+OVZ8pbnXdb0l8+pimvlsqBGRNkble2NVgyqOGE3yrCGi/lAYq7E7NRDMz89R1Wx5HIMCGgeYg==", + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "requires": { - "@npmcli/git": "^2.1.0", - "@npmcli/installed-package-contents": "^1.0.6", - "@npmcli/promise-spawn": "^1.2.0", - "@npmcli/run-script": "^2.0.0", - "cacache": "^15.0.5", - "chownr": "^2.0.0", - "fs-minipass": "^2.1.0", - "infer-owner": "^1.0.4", - "minipass": "^3.1.3", - "mkdirp": "^1.0.3", - "npm-package-arg": "^8.0.1", - "npm-packlist": "^3.0.0", - "npm-pick-manifest": "^6.0.0", - "npm-registry-fetch": "^11.0.0", - "promise-retry": "^2.0.1", - "read-package-json-fast": "^2.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.1.0" + "yallist": "^4.0.0" }, "dependencies": { - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } } } }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + "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==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "minipass-fetch": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", + "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", "dev": true, "requires": { - "callsites": "^3.0.0" + "encoding": "^0.1.13", + "minipass": "^3.1.6", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" } }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", "dev": true, "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" + "minipass": "^3.0.0" } }, - "parse-node-version": { + "minipass-json-stream": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", - "dev": true - }, - "parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true - }, - "parse5-html-rewriting-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-6.0.1.tgz", - "integrity": "sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", "dev": true, "requires": { - "parse5": "^6.0.1", - "parse5-sax-parser": "^6.0.1" + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" } }, - "parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", - "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", "dev": true, "requires": { - "parse5": "^6.0.1" + "minipass": "^3.0.0" } }, - "parse5-sax-parser": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-6.0.1.tgz", - "integrity": "sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==", + "minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", "dev": true, "requires": { - "parse5": "^6.0.1" + "minipass": "^3.0.0" } }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==" + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==" + "mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "requires": { + "minimist": "^1.2.6" + } }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true + "mpd-parser": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/mpd-parser/-/mpd-parser-0.21.0.tgz", + "integrity": "sha512-NbpMJ57qQzFmfCiP1pbL7cGMbVTD0X1hqNgL0VYP1wLlZXLf/HtmvQpNkOA1AHkPVeGQng+7/jEtSvNUzV7Gdg==", + "requires": { + "@babel/runtime": "^7.12.5", + "@videojs/vhs-utils": "^3.0.2", + "@xmldom/xmldom": "^0.7.2", + "global": "^4.4.0" + } }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", - "dev": true + "multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dev": true, + "requires": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + } }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, - "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==", - "dev": true + "mux.js": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/mux.js/-/mux.js-6.0.1.tgz", + "integrity": "sha512-22CHb59rH8pWGcPGW5Og7JngJ9s+z4XuSlYvnxhLuc58cA1WqGDQPzuG8I+sPm1/p0CdgpzVTaKW408k5DNn8w==", + "requires": { + "@babel/runtime": "^7.11.2", + "global": "^4.4.0" + } }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true + "nan": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", + "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==", + "optional": true }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", "dev": true }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true + "needle": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", + "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", + "dev": true, + "optional": true, + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.6.3", + "sax": "^1.2.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "optional": true, + "requires": { + "ms": "^2.1.1" + } + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "optional": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "optional": true + } + } }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "ng-packagr": { + "version": "14.2.2", + "resolved": "https://registry.npmjs.org/ng-packagr/-/ng-packagr-14.2.2.tgz", + "integrity": "sha512-AqwHcMM6x+JkCHT++IsbulnTdyoXcC2Cr4tbPamuieacc77+fFbB195hdcqEFwsKX5410cymx/ZUyHird9rxlg==", "dev": true, "requires": { - "pinkie": "^2.0.0" + "@rollup/plugin-json": "^4.1.0", + "@rollup/plugin-node-resolve": "^13.1.3", + "ajv": "^8.10.0", + "ansi-colors": "^4.1.1", + "browserslist": "^4.20.0", + "cacache": "^16.0.0", + "chokidar": "^3.5.3", + "commander": "^9.0.0", + "dependency-graph": "^0.11.0", + "esbuild": "^0.15.0", + "esbuild-wasm": "^0.15.0", + "find-cache-dir": "^3.3.2", + "glob": "^8.0.0", + "injection-js": "^2.4.0", + "jsonc-parser": "^3.0.0", + "less": "^4.1.2", + "ora": "^5.1.0", + "postcss": "^8.4.8", + "postcss-preset-env": "^7.4.2", + "postcss-url": "^10.1.3", + "rollup": "^2.70.0", + "rollup-plugin-sourcemaps": "^0.6.3", + "rxjs": "^7.5.5", + "sass": "^1.49.9", + "stylus": "^0.59.0" + }, + "dependencies": { + "@esbuild/linux-loong64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.18.tgz", + "integrity": "sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==", + "dev": true, + "optional": true + }, + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "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, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true + }, + "esbuild": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.15.18.tgz", + "integrity": "sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==", + "dev": true, + "optional": true, + "requires": { + "@esbuild/android-arm": "0.15.18", + "@esbuild/linux-loong64": "0.15.18", + "esbuild-android-64": "0.15.18", + "esbuild-android-arm64": "0.15.18", + "esbuild-darwin-64": "0.15.18", + "esbuild-darwin-arm64": "0.15.18", + "esbuild-freebsd-64": "0.15.18", + "esbuild-freebsd-arm64": "0.15.18", + "esbuild-linux-32": "0.15.18", + "esbuild-linux-64": "0.15.18", + "esbuild-linux-arm": "0.15.18", + "esbuild-linux-arm64": "0.15.18", + "esbuild-linux-mips64le": "0.15.18", + "esbuild-linux-ppc64le": "0.15.18", + "esbuild-linux-riscv64": "0.15.18", + "esbuild-linux-s390x": "0.15.18", + "esbuild-netbsd-64": "0.15.18", + "esbuild-openbsd-64": "0.15.18", + "esbuild-sunos-64": "0.15.18", + "esbuild-windows-32": "0.15.18", + "esbuild-windows-64": "0.15.18", + "esbuild-windows-arm64": "0.15.18" + } + }, + "esbuild-android-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.18.tgz", + "integrity": "sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==", + "dev": true, + "optional": true + }, + "esbuild-android-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.18.tgz", + "integrity": "sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==", + "dev": true, + "optional": true + }, + "esbuild-darwin-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.18.tgz", + "integrity": "sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==", + "dev": true, + "optional": true + }, + "esbuild-darwin-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.18.tgz", + "integrity": "sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.18.tgz", + "integrity": "sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.18.tgz", + "integrity": "sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==", + "dev": true, + "optional": true + }, + "esbuild-linux-32": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.18.tgz", + "integrity": "sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==", + "dev": true, + "optional": true + }, + "esbuild-linux-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.18.tgz", + "integrity": "sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.18.tgz", + "integrity": "sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.18.tgz", + "integrity": "sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==", + "dev": true, + "optional": true + }, + "esbuild-linux-mips64le": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.18.tgz", + "integrity": "sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==", + "dev": true, + "optional": true + }, + "esbuild-linux-ppc64le": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.18.tgz", + "integrity": "sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==", + "dev": true, + "optional": true + }, + "esbuild-linux-riscv64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.18.tgz", + "integrity": "sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==", + "dev": true, + "optional": true + }, + "esbuild-linux-s390x": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.18.tgz", + "integrity": "sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==", + "dev": true, + "optional": true + }, + "esbuild-netbsd-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.18.tgz", + "integrity": "sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==", + "dev": true, + "optional": true + }, + "esbuild-openbsd-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.18.tgz", + "integrity": "sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==", + "dev": true, + "optional": true + }, + "esbuild-sunos-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.18.tgz", + "integrity": "sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==", + "dev": true, + "optional": true + }, + "esbuild-windows-32": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.18.tgz", + "integrity": "sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==", + "dev": true, + "optional": true + }, + "esbuild-windows-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.18.tgz", + "integrity": "sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==", + "dev": true, + "optional": true + }, + "esbuild-windows-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.18.tgz", + "integrity": "sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==", + "dev": true, + "optional": true + }, + "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==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "rxjs": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", + "integrity": "sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==", + "dev": true, + "requires": { + "tslib": "^2.1.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + } } }, - "piscina": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/piscina/-/piscina-3.1.0.tgz", - "integrity": "sha512-KTW4sjsCD34MHrUbx9eAAbuUSpVj407hQSgk/6Epkg0pbRBmv4a3UX7Sr8wxm9xYqQLnsN4mFOjqGDzHAdgKQg==", - "dev": true, - "requires": { - "eventemitter-asyncresource": "^1.0.0", - "hdr-histogram-js": "^2.0.1", - "hdr-histogram-percentiles-obj": "^3.0.0", - "nice-napi": "^1.0.2" - } + "ngx-bootstrap": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/ngx-bootstrap/-/ngx-bootstrap-6.2.0.tgz", + "integrity": "sha512-5WKHo6/ltkenw4UyXZwED8rODCgp2RGbWurzYzZsF/gH1JO5SN7TJ+AL6kXYk6XM42sDA2WhN9Db+ZPNjiyHnA==" }, - "pkcs7": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/pkcs7/-/pkcs7-1.0.4.tgz", - "integrity": "sha512-afRERtHn54AlwaF2/+LFszyAANTCggGilmcmILUzEjvs3XgFZT+xE6+QWQcAGmu4xajy+Xtj7acLOPdx5/eXWQ==", + "nice-napi": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", + "integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==", + "dev": true, + "optional": true, "requires": { - "@babel/runtime": "^7.5.5" + "node-addon-api": "^3.0.0", + "node-gyp-build": "^4.2.2" } }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, + "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 + }, + "node-fetch": { + "version": "2.6.5", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.5.tgz", + "integrity": "sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==", "requires": { - "find-up": "^4.0.0" + "whatwg-url": "^5.0.0" } }, - "platform": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.3.tgz", - "integrity": "sha512-VJK1SRmXBpjwsB4YOHYSturx48rLKMzHgCqDH2ZDa6ZbMS/N5huoNqyQdK5Fj/xayu3fqbXckn5SeCS1EbMDZg==" + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" }, - "portfinder": { - "version": "1.0.32", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", - "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "node-gyp": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.3.1.tgz", + "integrity": "sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==", "dev": true, "requires": { - "async": "^2.6.4", - "debug": "^3.2.7", - "mkdirp": "^0.5.6" + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^10.0.3", + "nopt": "^6.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" }, "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "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, "requires": { - "ms": "^2.1.1" + "yallist": "^4.0.0" } }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true } } }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==" + "node-gyp-build": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", + "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" }, - "postcss": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.6.tgz", - "integrity": "sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==", + "node-releases": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.8.tgz", + "integrity": "sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==", + "dev": true + }, + "noms": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/noms/-/noms-0.0.0.tgz", + "integrity": "sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==", "dev": true, "requires": { - "colorette": "^1.2.2", - "nanoid": "^3.1.23", - "source-map-js": "^0.6.2" + "inherits": "^2.0.1", + "readable-stream": "~1.0.31" }, "dependencies": { - "source-map-js": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz", - "integrity": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==", + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", "dev": true } } }, - "postcss-attribute-case-insensitive": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", - "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", + "nopt": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", + "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", + "dev": true, + "requires": { + "abbrev": "^1.0.0" + } + }, + "normalize-package-data": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-4.0.1.tgz", + "integrity": "sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==", "dev": true, "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^6.0.2" + "hosted-git-info": "^5.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" }, "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true + "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, + "requires": { + "yallist": "^4.0.0" + } }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "lru-cache": "^6.0.0" } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } }, - "postcss-calc": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true + }, + "npm-bundled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", "dev": true, "requires": { - "postcss-selector-parser": "^6.0.9", - "postcss-value-parser": "^4.2.0" + "npm-normalize-package-bin": "^1.0.1" } }, - "postcss-color-functional-notation": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", - "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "npm-install-checks": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-5.0.0.tgz", + "integrity": "sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==", "dev": true, "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" + "semver": "^7.1.1" }, "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true + "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, + "requires": { + "yallist": "^4.0.0" + } }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "lru-cache": "^6.0.0" } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } }, - "postcss-color-gray": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", - "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", + "npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true + }, + "npm-package-arg": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-9.1.0.tgz", + "integrity": "sha512-4J0GL+u2Nh6OnhvUKXRr2ZMG4lR8qtLp+kv7UiV00Y+nGiSxtttCyIRHCt5L5BNkXQld/RceYItau3MDOoGiBw==", "dev": true, "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.5", - "postcss-values-parser": "^2.0.0" + "hosted-git-info": "^5.0.0", + "proc-log": "^2.0.1", + "semver": "^7.3.5", + "validate-npm-package-name": "^4.0.0" }, "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "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, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true + } + } + }, + "npm-packlist": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.1.3.tgz", + "integrity": "sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==", + "dev": true, + "requires": { + "glob": "^8.0.1", + "ignore-walk": "^5.0.1", + "npm-bundled": "^2.0.0", + "npm-normalize-package-bin": "^2.0.0" + }, + "dependencies": { + "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, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + } }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "brace-expansion": "^2.0.1" } - } - } - }, - "postcss-color-hex-alpha": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", - "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", - "dev": true, - "requires": { - "postcss": "^7.0.14", - "postcss-values-parser": "^2.0.1" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "npm-bundled": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-2.0.1.tgz", + "integrity": "sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==", "dev": true, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "npm-normalize-package-bin": "^2.0.0" } + }, + "npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "dev": true } } }, - "postcss-color-mod-function": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", - "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "npm-pick-manifest": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-7.0.1.tgz", + "integrity": "sha512-IA8+tuv8KujbsbLQvselW2XQgmXWS47t3CB0ZrzsRZ82DbDfkcFunOaPm4X7qNuhMfq+FmV7hQT4iFVpHqV7mg==", "dev": true, "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" + "npm-install-checks": "^5.0.0", + "npm-normalize-package-bin": "^1.0.1", + "npm-package-arg": "^9.0.0", + "semver": "^7.3.5" }, "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "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, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "yallist": "^4.0.0" } - } - } - }, - "postcss-color-rebeccapurple": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", - "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", - "dev": true, - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "lru-cache": "^6.0.0" } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } }, - "postcss-colormin": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", - "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", + "npm-registry-fetch": { + "version": "13.3.1", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-13.3.1.tgz", + "integrity": "sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==", "dev": true, "requires": { - "browserslist": "^4.16.6", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" + "make-fetch-happen": "^10.0.6", + "minipass": "^3.1.6", + "minipass-fetch": "^2.0.3", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^9.0.1", + "proc-log": "^2.0.0" } }, - "postcss-convert-values": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz", - "integrity": "sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==", + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "requires": { - "browserslist": "^4.20.3", - "postcss-value-parser": "^4.2.0" + "path-key": "^3.0.0" } }, - "postcss-custom-media": { - "version": "7.0.8", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", - "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", + "npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", "dev": true, "requires": { - "postcss": "^7.0.14" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" } }, - "postcss-custom-properties": { - "version": "8.0.11", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", - "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", + "nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, "requires": { - "postcss": "^7.0.17", - "postcss-values-parser": "^2.0.1" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "boolbase": "^1.0.0" } }, - "postcss-custom-selectors": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", - "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "nx": { + "version": "13.1.3", + "resolved": "https://registry.npmjs.org/nx/-/nx-13.1.3.tgz", + "integrity": "sha512-clM0NQhQKYkqcNz2E3uYRMLwhp2L/9dBhJhQi9XBX4IAyA2gWAomhRIlLm5Xxg3g4h1xwSpP3eJ5t89VikY8Pw==", "dev": true, "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" - }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", - "dev": true - }, - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "dev": true, - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "@nrwl/cli": "*" } }, - "postcss-dir-pseudo-class": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", - "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", - "dev": true, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, + "object-component": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz", + "integrity": "sha512-S0sN3agnVh2SZNEIGc0N1X4Z5K0JeFbGBrnuZpsxuUh5XLF0BnvWkMjRXo/zGKLd/eghvNIKcx1pQkmUjXIyrA==" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" }, "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", - "dev": true - }, - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "is-descriptor": "^0.1.0" } }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "dev": true, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "is-buffer": "^1.1.5" } } } }, - "postcss-discard-comments": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", - "dev": true + "object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" }, - "postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "dev": true + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "requires": { + "isobject": "^3.0.0" + } }, - "postcss-discard-empty": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "requires": { + "isobject": "^3.0.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", "dev": true }, - "postcss-discard-overridden": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", "dev": true }, - "postcss-double-position-gradients": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", - "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", "dev": true, "requires": { - "postcss": "^7.0.5", - "postcss-values-parser": "^2.0.0" + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + } + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha512-snN4O4TkigujZphWLN0E//nQmm7790RYaE53DdL7ZYwee2D8DDo9/EyYiKUfN3rneWUjhJnueija3G9I2i0h3g==", + "requires": { + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" }, "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha512-iotkTvxc+TwOm5Ieim8VnSNvCDjCK9S8G3scJ50ZthspSxa7jx50jkhYduuAtAjvfDUwSgOwf8+If99AlOEhyw==" } } }, - "postcss-env-function": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", - "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" }, "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "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, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "color-convert": "^2.0.1" } - } - } - }, - "postcss-focus-visible": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", - "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", - "dev": true, - "requires": { - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } - } - } - }, - "postcss-focus-within": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", - "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", - "dev": true, - "requires": { - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "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, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "color-name": "~1.1.4" } - } - } - }, - "postcss-font-variant": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", - "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", - "dev": true, - "requires": { - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + }, + "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 + }, + "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 }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "ansi-regex": "^5.0.1" } - } - } - }, - "postcss-gap-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", - "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", - "dev": true, - "requires": { - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "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, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "has-flag": "^4.0.0" } } } }, - "postcss-image-set-function": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", - "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "p-try": "^2.0.0" } }, - "postcss-import": { - "version": "14.0.2", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.0.2.tgz", - "integrity": "sha512-BJ2pVK4KhUyMcqjuKs9RijV5tatNzNa73e/32aBVE/ejYPe37iH+6vAu9WvqUkB5OAYgLHzbSvzHnorybJCm9g==", + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "requires": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" + "p-limit": "^2.2.0" } }, - "postcss-initial": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz", - "integrity": "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==", + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "dev": true, "requires": { - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "aggregate-error": "^3.0.0" } }, - "postcss-lab-function": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", - "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", + "p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dev": true, + "requires": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "pacote": { + "version": "13.6.2", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-13.6.2.tgz", + "integrity": "sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==", "dev": true, "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" + "@npmcli/git": "^3.0.0", + "@npmcli/installed-package-contents": "^1.0.7", + "@npmcli/promise-spawn": "^3.0.0", + "@npmcli/run-script": "^4.1.0", + "cacache": "^16.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "infer-owner": "^1.0.4", + "minipass": "^3.1.6", + "mkdirp": "^1.0.4", + "npm-package-arg": "^9.0.0", + "npm-packlist": "^5.1.0", + "npm-pick-manifest": "^7.0.0", + "npm-registry-fetch": "^13.0.1", + "proc-log": "^2.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^5.0.0", + "read-package-json-fast": "^2.0.3", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11" }, "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "glob": "^7.1.3" } } } }, - "postcss-loader": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.1.1.tgz", - "integrity": "sha512-lBmJMvRh1D40dqpWKr9Rpygwxn8M74U9uaCSeYGNKLGInbk9mXBt1ultHf2dH9Ghk6Ue4UXlXWwGMH9QdUJ5ug==", + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "requires": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.4", - "semver": "^7.3.5" - }, - "dependencies": { - "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, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } + "callsites": "^3.0.0" } }, - "postcss-logical": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", - "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "requires": { - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" } }, - "postcss-media-minmax": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", - "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "parse5-html-rewriting-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-6.0.1.tgz", + "integrity": "sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==", "dev": true, "requires": { - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "parse5": "^6.0.1", + "parse5-sax-parser": "^6.0.1" } }, - "postcss-merge-longhand": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz", - "integrity": "sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==", + "parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", "dev": true, "requires": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.0" + "parse5": "^6.0.1" } }, - "postcss-merge-rules": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz", - "integrity": "sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==", + "parse5-sax-parser": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-6.0.1.tgz", + "integrity": "sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==", "dev": true, "requires": { - "browserslist": "^4.16.6", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" + "parse5": "^6.0.1" } }, - "postcss-minify-font-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==" + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==" + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "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==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "dev": true, "requires": { - "postcss-value-parser": "^4.2.0" + "pinkie": "^2.0.0" } }, - "postcss-minify-gradients": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "piscina": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/piscina/-/piscina-3.2.0.tgz", + "integrity": "sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==", "dev": true, "requires": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "eventemitter-asyncresource": "^1.0.0", + "hdr-histogram-js": "^2.0.1", + "hdr-histogram-percentiles-obj": "^3.0.0", + "nice-napi": "^1.0.2" } }, - "postcss-minify-params": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz", - "integrity": "sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==", - "dev": true, + "pkcs7": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/pkcs7/-/pkcs7-1.0.4.tgz", + "integrity": "sha512-afRERtHn54AlwaF2/+LFszyAANTCggGilmcmILUzEjvs3XgFZT+xE6+QWQcAGmu4xajy+Xtj7acLOPdx5/eXWQ==", "requires": { - "browserslist": "^4.16.6", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "@babel/runtime": "^7.5.5" } }, - "postcss-minify-selectors": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "requires": { - "postcss-selector-parser": "^6.0.5" + "find-up": "^4.0.0" } }, - "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==", - "dev": true + "platform": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.3.tgz", + "integrity": "sha512-VJK1SRmXBpjwsB4YOHYSturx48rLKMzHgCqDH2ZDa6ZbMS/N5huoNqyQdK5Fj/xayu3fqbXckn5SeCS1EbMDZg==" }, - "postcss-modules-local-by-default": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", - "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==" + }, + "postcss": { + "version": "8.4.16", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz", + "integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==", "dev": true, "requires": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" } }, - "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==", + "postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", "dev": true, "requires": { - "postcss-selector-parser": "^6.0.4" + "postcss-selector-parser": "^6.0.10" } }, - "postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", "dev": true, "requires": { - "icss-utils": "^5.0.0" + "postcss-value-parser": "^4.2.0" } }, - "postcss-nesting": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", - "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", + "postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", "dev": true, "requires": { - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "postcss-value-parser": "^4.2.0" } }, - "postcss-normalize-charset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", - "dev": true - }, - "postcss-normalize-display-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, - "postcss-normalize-positions": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, - "postcss-normalize-repeat-style": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, - "postcss-normalize-string": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, - "postcss-normalize-timing-functions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", "dev": true, "requires": { - "postcss-value-parser": "^4.2.0" + "postcss-selector-parser": "^6.0.4" } }, - "postcss-normalize-unicode": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz", - "integrity": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==", + "postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", "dev": true, "requires": { - "browserslist": "^4.16.6", - "postcss-value-parser": "^4.2.0" + "postcss-selector-parser": "^6.0.10" } }, - "postcss-normalize-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", "dev": true, "requires": { - "normalize-url": "^6.0.1", + "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" } }, - "postcss-normalize-whitespace": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, - "postcss-ordered-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", "dev": true, "requires": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "postcss-selector-parser": "^6.0.9" } }, - "postcss-overflow-shorthand": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", - "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", + "postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", "dev": true, "requires": { - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "postcss-selector-parser": "^6.0.9" } }, - "postcss-page-break": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", - "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "dev": true + }, + "postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "dev": true + }, + "postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", "dev": true, "requires": { - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "postcss-value-parser": "^4.2.0" } }, - "postcss-place": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", - "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "postcss-import": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.0.0.tgz", + "integrity": "sha512-Y20shPQ07RitgBGv2zvkEAu9bqvrD77C9axhj/aA1BQj4czape2MdClCExvB27EwYEJdGgKZBpKanb0t1rK2Kg==", "dev": true, "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" } }, - "postcss-preset-env": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", - "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", - "dev": true, - "requires": { - "autoprefixer": "^9.6.1", - "browserslist": "^4.6.4", - "caniuse-lite": "^1.0.30000981", - "css-blank-pseudo": "^0.1.4", - "css-has-pseudo": "^0.10.0", - "css-prefers-color-scheme": "^3.1.1", - "cssdb": "^4.4.0", - "postcss": "^7.0.17", - "postcss-attribute-case-insensitive": "^4.0.1", - "postcss-color-functional-notation": "^2.0.1", - "postcss-color-gray": "^5.0.0", - "postcss-color-hex-alpha": "^5.0.3", - "postcss-color-mod-function": "^3.0.3", - "postcss-color-rebeccapurple": "^4.0.1", - "postcss-custom-media": "^7.0.8", - "postcss-custom-properties": "^8.0.11", - "postcss-custom-selectors": "^5.1.2", - "postcss-dir-pseudo-class": "^5.0.0", - "postcss-double-position-gradients": "^1.0.0", - "postcss-env-function": "^2.0.2", - "postcss-focus-visible": "^4.0.0", - "postcss-focus-within": "^3.0.0", - "postcss-font-variant": "^4.0.0", - "postcss-gap-properties": "^2.0.0", - "postcss-image-set-function": "^3.0.1", - "postcss-initial": "^3.0.0", - "postcss-lab-function": "^2.0.1", - "postcss-logical": "^3.0.0", - "postcss-media-minmax": "^4.0.0", - "postcss-nesting": "^7.0.0", - "postcss-overflow-shorthand": "^2.0.0", - "postcss-page-break": "^2.0.0", - "postcss-place": "^4.0.1", - "postcss-pseudo-class-any-link": "^6.0.0", - "postcss-replace-overflow-wrap": "^3.0.0", - "postcss-selector-matches": "^4.0.0", - "postcss-selector-not": "^4.0.0" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "dev": true + }, + "postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "dev": true, + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" } }, - "postcss-pseudo-class-any-link": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", - "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", + "postcss-loader": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.0.1.tgz", + "integrity": "sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==", "dev": true, "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.7" }, "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", - "dev": true - }, - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "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, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "yallist": "^4.0.0" } }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "lru-cache": "^6.0.0" } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } }, - "postcss-reduce-initial": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz", - "integrity": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==", + "postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "dev": true + }, + "postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "dev": true + }, + "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==", + "dev": true + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", "dev": true, "requires": { - "browserslist": "^4.16.6", - "caniuse-api": "^3.0.0" + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" } }, - "postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "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==", "dev": true, "requires": { - "postcss-value-parser": "^4.2.0" + "postcss-selector-parser": "^6.0.4" } }, - "postcss-replace-overflow-wrap": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", - "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dev": true, "requires": { - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "icss-utils": "^5.0.0" } }, - "postcss-selector-matches": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", - "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", "dev": true, "requires": { - "balanced-match": "^1.0.0", - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" } }, - "postcss-selector-not": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", - "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", + "postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "dev": true + }, + "postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", "dev": true, "requires": { - "balanced-match": "^1.0.0", - "postcss": "^7.0.2" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } + "postcss-value-parser": "^4.2.0" } }, - "postcss-selector-parser": { - "version": "6.0.10", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "dev": true + }, + "postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", "dev": true, "requires": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "postcss-value-parser": "^4.2.0" } }, - "postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "postcss-preset-env": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.0.tgz", + "integrity": "sha512-leqiqLOellpLKfbHkD06E04P6d9ZQ24mat6hu4NSqun7WG0UhspHR5Myiv/510qouCjoo4+YJtNOqg5xHaFnCA==", + "dev": true, + "requires": { + "@csstools/postcss-cascade-layers": "^1.0.5", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.8", + "browserslist": "^4.21.3", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.0.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.8", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.1.10", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", "dev": true, "requires": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" + "postcss-selector-parser": "^6.0.10" } }, - "postcss-unique-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "dev": true + }, + "postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-selector-parser": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", + "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", "dev": true, "requires": { - "postcss-selector-parser": "^6.0.5" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" } }, "postcss-url": { @@ -11723,16 +12178,11 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, - "postcss-values-parser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", - "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", - "dev": true, - "requires": { - "flatten": "^1.0.2", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true }, "pretty-bytes": { "version": "5.6.0", @@ -11740,6 +12190,12 @@ "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "dev": true }, + "proc-log": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-2.0.1.tgz", + "integrity": "sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==", + "dev": true + }, "process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", @@ -11764,6 +12220,14 @@ "requires": { "err-code": "^2.0.2", "retry": "^0.12.0" + }, + "dependencies": { + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true + } } }, "protractor": { @@ -12115,13 +12579,28 @@ "requires": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" + }, + "dependencies": { + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + } } }, + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, "prr": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true + "dev": true, + "optional": true }, "pseudomap": { "version": "1.0.2", @@ -12133,16 +12612,6 @@ "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", @@ -12161,18 +12630,6 @@ "side-channel": "^1.0.4" } }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", - "dev": true - }, - "querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -12229,6 +12686,57 @@ } } }, + "read-package-json": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-5.0.2.tgz", + "integrity": "sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==", + "dev": true, + "requires": { + "glob": "^8.0.1", + "json-parse-even-better-errors": "^2.3.1", + "normalize-package-data": "^4.0.0", + "npm-normalize-package-bin": "^2.0.0" + }, + "dependencies": { + "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, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + } + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "dev": true + } + } + }, "read-package-json-fast": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz", @@ -12296,9 +12804,9 @@ "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" }, "regenerator-transform": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", - "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", "dev": true, "requires": { "@babel/runtime": "^7.8.4" @@ -12319,21 +12827,16 @@ "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", "dev": true }, - "regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - } + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true }, "regexpu-core": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz", - "integrity": "sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz", + "integrity": "sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==", "dev": true, "requires": { "regenerate": "^1.4.2", @@ -12341,7 +12844,7 @@ "regjsgen": "^0.7.1", "regjsparser": "^0.9.1", "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.0.0" + "unicode-match-property-value-ecmascript": "^2.1.0" } }, "regjsgen": { @@ -12450,27 +12953,10 @@ "supports-preserve-symlinks-flag": "^1.0.0" } }, - "resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", - "dev": true, - "requires": { - "resolve-from": "^3.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", - "dev": true - } - } - }, "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true }, "resolve-url": { @@ -12479,32 +12965,27 @@ "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==" }, "resolve-url-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", - "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", + "integrity": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==", "dev": true, "requires": { "adjust-sourcemap-loader": "^4.0.0", "convert-source-map": "^1.7.0", "loader-utils": "^2.0.0", - "postcss": "^7.0.35", + "postcss": "^8.2.14", "source-map": "0.6.1" }, "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" } } } @@ -12525,9 +13006,9 @@ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" }, "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "dev": true }, "reusify": { @@ -12627,6 +13108,12 @@ } } }, + "rxjs-for-await": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/rxjs-for-await/-/rxjs-for-await-0.0.2.tgz", + "integrity": "sha512-IJ8R/ZCFMHOcDIqoABs82jal00VrZx8Xkgfe7TOKoaRPAW5nH/VFlG23bXpeGdrmtqI9UobFPgUKgCuFc7Lncw==", + "dev": true + }, "safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -12654,18 +13141,20 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sass": { - "version": "1.36.0", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.36.0.tgz", - "integrity": "sha512-fQzEjipfOv5kh930nu3Imzq3ie/sGDc/4KtQMJlt7RRdrkQSfe37Bwi/Rf/gfuYHsIuE1fIlDMvpyMcEwjnPvg==", + "version": "1.54.4", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.54.4.tgz", + "integrity": "sha512-3tmF16yvnBwtlPrNBHw/H907j8MlOX8aTBnlNX1yrKx24RKcJGPyLhFUwkoKBKesR3unP93/2z14Ll8NicwQUA==", "dev": true, "requires": { - "chokidar": ">=3.0.0 <4.0.0" + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" }, "dependencies": { "anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "requires": { "normalize-path": "^3.0.0", @@ -12764,9 +13253,9 @@ } }, "sass-loader": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.1.0.tgz", - "integrity": "sha512-FVJZ9kxVRYNZTIe2xhw93n3xJNYZADr+q69/s98l9nTCrWASo+DR2Ot0s5xTKQDDEosUkatsGeHxcH4QBp5bSg==", + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.0.2.tgz", + "integrity": "sha512-BbiqbVmbfJaWVeOOAu2o7DhYWtcNmTfvroVgFXa6k2hHheMxNAeDHLNoDy/Q5aoaVlz0LH+MbMktKwm9vN/j8Q==", "dev": true, "requires": { "klona": "^2.0.4", @@ -12834,36 +13323,27 @@ } }, "selfsigned": { - "version": "1.10.14", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", - "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", - "dev": true, - "requires": { - "node-forge": "^0.10.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - }, - "semver-dsl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/semver-dsl/-/semver-dsl-1.0.1.tgz", - "integrity": "sha512-e8BOaTo007E3dMuQQTnPdalbKTABKNS7UxoBIDnwOqRa+QwMrCPjynB8zAlPF6xlqUfdLPPLIJ13hJNmhtq8Ng==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", "dev": true, "requires": { - "semver": "^5.3.0" + "node-forge": "^1" }, "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "dev": true } } }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, "send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", @@ -12908,9 +13388,9 @@ } }, "serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "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==", "dev": true, "requires": { "randombytes": "^2.1.0" @@ -13028,18 +13508,18 @@ } }, "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "requires": { - "shebang-regex": "^1.0.0" + "shebang-regex": "^3.0.0" } }, "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, "side-channel": { @@ -13059,9 +13539,9 @@ "dev": true }, "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "dev": true }, "smart-buffer": { @@ -13260,36 +13740,6 @@ } } }, - "sockjs-client": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", - "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", - "dev": true, - "requires": { - "debug": "^3.2.7", - "eventsource": "^2.0.2", - "faye-websocket": "^0.11.4", - "inherits": "^2.0.4", - "url-parse": "^1.5.10" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, "socks": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", @@ -13298,20 +13748,12 @@ "requires": { "ip": "^2.0.0", "smart-buffer": "^4.2.0" - }, - "dependencies": { - "ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - } } }, "socks-proxy-agent": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz", - "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", "dev": true, "requires": { "agent-base": "^6.0.2", @@ -13354,12 +13796,6 @@ "node-gyp-build": "^4.3.0" } }, - "source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", - "dev": true - }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -13372,14 +13808,14 @@ "dev": true }, "source-map-loader": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.0.tgz", - "integrity": "sha512-GKGWqWvYr04M7tn8dryIWvb0s8YM41z82iQv01yBtIylgxax0CwvSy6gc2Y02iuXwEfGWRlMicH0nvms9UZphw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-4.0.0.tgz", + "integrity": "sha512-i3KVgM3+QPAHNbGavK+VBq03YoJl24m9JWNbLgsjTj8aJzXG9M61bantBTNBt7CNwY2FYf+RJRYJ3pzalKjIrw==", "dev": true, "requires": { - "abab": "^2.0.5", - "iconv-lite": "^0.6.2", - "source-map-js": "^0.6.2" + "abab": "^2.0.6", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.2" }, "dependencies": { "iconv-lite": { @@ -13390,12 +13826,6 @@ "requires": { "safer-buffer": ">= 2.1.2 < 3.0.0" } - }, - "source-map-js": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz", - "integrity": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==", - "dev": true } } }, @@ -13432,6 +13862,38 @@ "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", "dev": true }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "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==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", + "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==", + "dev": true + }, "spdy": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", @@ -13535,20 +13997,14 @@ } }, "ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", + "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", "dev": true, "requires": { "minipass": "^3.1.1" } }, - "stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "dev": true - }, "static-extend": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", @@ -13664,57 +14120,61 @@ "ansi-regex": "^2.0.0" } }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true }, - "style-loader": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.2.1.tgz", - "integrity": "sha512-1k9ZosJCRFaRbY6hH49JFlRB0fVSbmnyq1iTPjNxUmGVjBNEmwrrHPenhlp+Lgo51BojHSf6pl2FcqYaN3PfVg==", + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true }, - "stylehacks": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz", - "integrity": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==", + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "strong-log-transformer": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", + "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", "dev": true, "requires": { - "browserslist": "^4.16.6", - "postcss-selector-parser": "^6.0.4" + "duplexer": "^0.1.1", + "minimist": "^1.2.0", + "through": "^2.3.4" } }, "stylus": { - "version": "0.54.8", - "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.54.8.tgz", - "integrity": "sha512-vr54Or4BZ7pJafo2mpf0ZcwA74rpuYCZbxrHBsH8kbcXOwSfvBFwsRfpGO5OD5fhG5HDCFW737PKaawI7OqEAg==", + "version": "0.59.0", + "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.59.0.tgz", + "integrity": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==", "dev": true, "requires": { - "css-parse": "~2.0.0", - "debug": "~3.1.0", + "@adobe/css-tools": "^4.0.1", + "debug": "^4.3.2", "glob": "^7.1.6", - "mkdirp": "~1.0.4", - "safer-buffer": "^2.1.2", "sax": "~1.2.4", - "semver": "^6.3.0", "source-map": "^0.7.3" }, "dependencies": { "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { - "ms": "2.0.0" + "ms": "2.1.2" } }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "source-map": { @@ -13726,13 +14186,13 @@ } }, "stylus-loader": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-6.1.0.tgz", - "integrity": "sha512-qKO34QCsOtSJrXxQQmXsPeaVHh6hMumBAFIoJTcsSr2VzrA6o/CW9HCGR8spCjzJhN8oKQHdj/Ytx0wwXyElkw==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-7.0.0.tgz", + "integrity": "sha512-WTbtLrNfOfLgzTaR9Lj/BPhQroKk/LC1hfTXSUbrxmxgfUo3Y3LpmKRVA2R1XbjvTAvOfaian9vOyfv1z99E+A==", "dev": true, "requires": { - "fast-glob": "^3.2.5", - "klona": "^2.0.4", + "fast-glob": "^3.2.11", + "klona": "^2.0.5", "normalize-path": "^3.0.0" } }, @@ -13751,29 +14211,6 @@ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true }, - "svgo": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", - "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", - "dev": true, - "requires": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^4.1.3", - "css-tree": "^1.1.3", - "csso": "^4.2.0", - "picocolors": "^1.0.0", - "stable": "^0.1.8" - }, - "dependencies": { - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true - } - } - }, "symbol-observable": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", @@ -13787,19 +14224,28 @@ "dev": true }, "tar": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", - "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "version": "6.1.13", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.13.tgz", + "integrity": "sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==", "dev": true, "requires": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", - "minipass": "^3.0.0", + "minipass": "^4.0.0", "minizlib": "^2.1.1", "mkdirp": "^1.0.3", "yallist": "^4.0.0" }, "dependencies": { + "minipass": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.0.0.tgz", + "integrity": "sha512-g2Uuh2jEKoht+zvO6vJqXmYpflPqzRBT+Th2h01DKh5z7wbY/AZ2gCQ78cP70YoHPyFdY30YBV5WxgLOEwOykw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, "mkdirp": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", @@ -13814,6 +14260,32 @@ } } }, + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "requires": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, "terser": { "version": "5.14.2", "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", @@ -13827,28 +14299,18 @@ } }, "terser-webpack-plugin": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.4.tgz", - "integrity": "sha512-C2WkFwstHDhVEmsmlCxrXUtVklS+Ir1A7twrYzrDrQQOIMOaVAYykaoo/Aq1K0QRkMoY2hhvDQY1cm4jnIMFwA==", + "version": "5.3.6", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", + "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", "dev": true, "requires": { - "jest-worker": "^27.0.2", - "p-limit": "^3.1.0", - "schema-utils": "^3.0.0", + "@jridgewell/trace-mapping": "^0.3.14", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1", - "terser": "^5.7.0" + "terser": "^5.14.1" }, "dependencies": { - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, "schema-utils": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", @@ -13862,6 +14324,17 @@ } } }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", @@ -13988,6 +14461,17 @@ "yn": "^2.0.0" } }, + "tsconfig-paths": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.1.2.tgz", + "integrity": "sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==", + "dev": true, + "requires": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, "tsickle": { "version": "0.39.1", "resolved": "https://registry.npmjs.org/tsickle/-/tsickle-0.39.1.tgz", @@ -13999,70 +14483,6 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, - "tslint": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.3.tgz", - "integrity": "sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "builtin-modules": "^1.1.1", - "chalk": "^2.3.0", - "commander": "^2.12.1", - "diff": "^4.0.1", - "glob": "^7.1.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.3", - "resolve": "^1.3.2", - "semver": "^5.3.0", - "tslib": "^1.13.0", - "tsutils": "^2.29.0" - }, - "dependencies": { - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha512-wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ==", - "dev": true - }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - } - } - }, - "tsutils": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", - "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - } - } - }, "tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", @@ -14076,6 +14496,15 @@ "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, "type-fest": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", @@ -14090,10 +14519,16 @@ "mime-types": "~2.1.24" } }, + "typed-assert": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/typed-assert/-/typed-assert-1.0.9.tgz", + "integrity": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==", + "dev": true + }, "typescript": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", - "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", + "version": "4.6.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", + "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", "dev": true }, "ua-parser-js": { @@ -14124,9 +14559,9 @@ } }, "unicode-match-property-value-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", - "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", "dev": true }, "unicode-property-aliases-ecmascript": { @@ -14146,12 +14581,6 @@ "set-value": "^2.0.1" } }, - "uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==", - "dev": true - }, "unique-filename": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", @@ -14251,34 +14680,6 @@ "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==" }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", - "dev": true, - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", - "dev": true - } - } - }, - "url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "dev": true, - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, "url-toolkit": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/url-toolkit/-/url-toolkit-2.2.5.tgz", @@ -14313,13 +14714,29 @@ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" }, + "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 + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, "validate-npm-package-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", - "integrity": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz", + "integrity": "sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==", "dev": true, "requires": { - "builtins": "^1.0.3" + "builtins": "^5.0.0" } }, "vary": { @@ -14446,35 +14863,35 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.50.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.50.0.tgz", - "integrity": "sha512-hqxI7t/KVygs0WRv/kTgUW8Kl3YC81uyWQSo/7WUs5LsuRw0htH/fCwbVBGCuiX/t4s7qzjXFcf41O8Reiypag==", + "version": "5.74.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.74.0.tgz", + "integrity": "sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==", "dev": true, "requires": { - "@types/eslint-scope": "^3.7.0", - "@types/estree": "^0.0.50", + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/wasm-edit": "1.11.1", "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.4.1", + "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.8.0", - "es-module-lexer": "^0.7.1", + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.4", - "json-parse-better-errors": "^1.0.2", + "graceful-fs": "^4.2.9", + "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.1.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.2.0", - "webpack-sources": "^3.2.0" + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" }, "dependencies": { "schema-utils": { @@ -14487,148 +14904,246 @@ "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } - }, - "webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "dev": true } } }, "webpack-dev-middleware": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.0.0.tgz", - "integrity": "sha512-9zng2Z60pm6A98YoRcA0wSxw1EYn7B7y5owX/Tckyt9KGyULTkLtiavjaXlWqOMkM0YtqGgL3PvMOFgyFLq8vw==", + "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==", "dev": true, "requires": { - "colorette": "^1.2.2", - "mem": "^8.1.1", - "memfs": "^3.2.2", + "colorette": "^2.0.10", + "memfs": "^3.4.3", "mime-types": "^2.1.31", "range-parser": "^1.2.1", - "schema-utils": "^3.0.0" + "schema-utils": "^4.0.0" }, "dependencies": { - "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "dev": true, "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" } } } }, "webpack-dev-server": { - "version": "3.11.3", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", - "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", - "dev": true, - "requires": { - "ansi-html-community": "0.0.8", - "bonjour": "^3.5.0", - "chokidar": "^2.1.8", + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.0.tgz", + "integrity": "sha512-L5S4Q2zT57SK7tazgzjMiSMBdsw+rGYIX27MgPgx7LDhWO0lViPrHKoLS7jo5In06PWYAhlYu3PbyoC6yAThbw==", + "dev": true, + "requires": { + "@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.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", - "debug": "^4.1.1", - "del": "^4.1.1", - "express": "^4.17.1", - "html-entities": "^1.3.1", - "http-proxy-middleware": "0.19.1", - "import-local": "^2.0.0", - "internal-ip": "^4.3.0", - "ip": "^1.1.5", - "is-absolute-url": "^3.0.3", - "killable": "^1.0.1", - "loglevel": "^1.6.8", - "opn": "^5.5.0", - "p-retry": "^3.0.1", - "portfinder": "^1.0.26", - "schema-utils": "^1.0.0", - "selfsigned": "^1.10.8", - "semver": "^6.3.0", + "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", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.0.1", "serve-index": "^1.9.1", - "sockjs": "^0.3.21", - "sockjs-client": "^1.5.0", + "sockjs": "^0.3.24", "spdy": "^4.0.2", - "strip-ansi": "^3.0.1", - "supports-color": "^6.1.0", - "url": "^0.11.0", - "webpack-dev-middleware": "^3.7.2", - "webpack-log": "^2.0.0", - "ws": "^6.2.1", - "yargs": "^13.3.2" + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" }, "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "requires": { - "ms": "2.1.2" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "fill-range": "^7.0.1" } }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "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==", "dev": true, "requires": { - "has-flag": "^3.0.0" + "to-regex-range": "^5.0.1" } }, - "webpack-dev-middleware": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", - "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "requires": { - "memory-fs": "^0.4.1", - "mime": "^2.4.4", - "mkdirp": "^0.5.1", - "range-parser": "^1.2.1", - "webpack-log": "^2.0.0" + "is-glob": "^4.0.1" } - } - } - }, - "webpack-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", - "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", - "dev": true, - "requires": { - "ansi-colors": "^3.0.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } } } }, @@ -14643,22 +15158,18 @@ } }, "webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "dev": true, - "requires": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - } + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true }, "webpack-subresource-integrity": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-1.5.2.tgz", - "integrity": "sha512-GBWYBoyalbo5YClwWop9qe6Zclp8CIXYGIz12OPclJhIrSplDxs1Ls1JDMH8xBPPrg1T6ISaTW9Y6zOrwEiAzw==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz", + "integrity": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==", "dev": true, "requires": { - "webpack-sources": "^1.3.0" + "typed-assert": "^1.0.8" } }, "websocket-driver": { @@ -14722,58 +15233,65 @@ "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", "dev": true }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, "wordwrap": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", "integrity": "sha512-1tMA907+V4QmxV7dbRvb4/8MaRALK6q9Abid3ndMYnbyo8piisCmeONVqVSXqQA3KaP4SLt5b7ud6E2sqP8TFw==" }, "wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "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, "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "dependencies": { "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true - }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", - "dev": true + "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, + "requires": { + "color-convert": "^2.0.1" + } }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "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, "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" + "color-name": "~1.1.4" } }, + "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 + }, "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "requires": { - "ansi-regex": "^4.1.0" + "ansi-regex": "^5.0.1" } } } @@ -14784,13 +15302,10 @@ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", - "dev": true, - "requires": { - "async-limiter": "~1.0.0" - } + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.12.0.tgz", + "integrity": "sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==", + "dev": true }, "xml2js": { "version": "0.4.23", @@ -14846,106 +15361,65 @@ "dev": true }, "yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "version": "17.6.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", + "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", "dev": true, "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" }, "dependencies": { "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true - }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" } }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "requires": { - "p-limit": "^2.0.0" + "ansi-regex": "^5.0.1" } }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } + "yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true } } }, "yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } + "version": "20.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.0.0.tgz", + "integrity": "sha512-8eblPHTL7ZWRkyjIZJjnGf+TijiKJSwA24svzLRVvtgoi/RZiKa9fFQTrlx0OKLnyHSdt/enrdadji6WFfESVA==", + "dev": true }, "yeast": { "version": "0.1.2", diff --git a/package.json b/package.json index 73544f5f..1e6b2cf5 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,9 @@ "version": "0.0.0", "scripts": { "ng": "ng", - "start": "ng serve", + "start": "ng serve --project=sunbird-video-player-app", "build": "ng build sunbird-video-player --watch=true", - "test": "ng test sunbird-video-player --code-coverage --watch=false --sourceMap=false", + "test": "ng test sunbird-video-player --code-coverage --watch=false", "lint": "ng lint", "e2e": "ng e2e", "link-sdk": "npm link @project-sunbird/sunbird-player-sdk && cd projects/sunbird-video-player && npm link @project-sunbird/sunbird-player-sdk && cd ../..", @@ -21,15 +21,15 @@ }, "private": true, "dependencies": { - "@angular/animations": "12.2.16", - "@angular/common": "12.2.16", - "@angular/compiler": "12.2.16", - "@angular/core": "12.2.16", - "@angular/elements": "^12.2.4", - "@angular/forms": "12.2.16", - "@angular/platform-browser": "12.2.16", - "@angular/platform-browser-dynamic": "12.2.16", - "@angular/router": "12.2.16", + "@angular/animations": "14.2.12", + "@angular/common": "14.2.12", + "@angular/compiler": "14.2.12", + "@angular/core": "14.2.12", + "@angular/elements": "^14.2.12", + "@angular/forms": "14.2.12", + "@angular/platform-browser": "14.2.12", + "@angular/platform-browser-dynamic": "14.2.12", + "@angular/router": "14.2.12", "@project-sunbird/client-services": "^4.0.1", "@project-sunbird/sb-styles": "0.0.7", "@project-sunbird/sunbird-quml-player-v9": "4.9.7", @@ -48,17 +48,24 @@ "zone.js": "~0.11.4" }, "devDependencies": { - "@angular-devkit/build-angular": "12.2.18", - "@angular/cli": "12.2.18", - "@angular/compiler-cli": "12.2.16", - "@angular/language-service": "12.2.16", + "@angular-devkit/build-angular": "14.2.10", + "@angular-eslint/builder": "13.5.0", + "@angular-eslint/eslint-plugin": "13.5.0", + "@angular-eslint/eslint-plugin-template": "13.5.0", + "@angular-eslint/schematics": "13.5.0", + "@angular-eslint/template-parser": "13.5.0", + "@angular/cli": "14.2.10", + "@angular/compiler-cli": "14.2.12", + "@angular/language-service": "14.2.12", "@types/jasmine": "~3.6.0", "@types/jasminewd2": "~2.0.3", "@types/node": "~8.9.4", "@types/video.js": "7.3.11", - "codelyzer": "^6.0.0", + "@typescript-eslint/eslint-plugin": "5.27.1", + "@typescript-eslint/parser": "5.27.1", "concat": "^1.0.3", "copyfiles": "^2.4.1", + "eslint": "^8.17.0", "fs-extra": "^9.1.0", "jasmine-core": "~3.6.0", "jasmine-spec-reporter": "~5.0.0", @@ -66,13 +73,12 @@ "karma-chrome-launcher": "~3.1.0", "karma-coverage-istanbul-reporter": "~3.0.2", "karma-jasmine": "~4.0.0", - "karma-mocha-reporter": "2.2.5", "karma-jasmine-html-reporter": "^1.5.0", - "ng-packagr": "^12.2.7", + "karma-mocha-reporter": "2.2.5", + "ng-packagr": "^14.2.2", "protractor": "~7.0.0", "ts-node": "~7.0.0", "tsickle": "^0.39.1", - "tslint": "~6.1.0", - "typescript": "~4.3.5" + "typescript": "~4.6.4" } } diff --git a/projects/sunbird-video-player/.eslintrc.json b/projects/sunbird-video-player/.eslintrc.json new file mode 100644 index 00000000..eee94025 --- /dev/null +++ b/projects/sunbird-video-player/.eslintrc.json @@ -0,0 +1,44 @@ +{ + "extends": "../../.eslintrc.json", + "ignorePatterns": [ + "!**/*" + ], + "overrides": [ + { + "files": [ + "*.ts" + ], + "parserOptions": { + "project": [ + "projects/sunbird-video-player/tsconfig.lib.json", + "projects/sunbird-video-player/tsconfig.spec.json" + ], + "createDefaultProgram": true + }, + "rules": { + "@angular-eslint/directive-selector": [ + "error", + { + "type": "attribute", + "prefix": "", + "style": "camelCase" + } + ], + "@angular-eslint/component-selector": [ + "error", + { + "type": "element", + "prefix": "", + "style": "kebab-case" + } + ] + } + }, + { + "files": [ + "*.html" + ], + "rules": {} + } + ] +} diff --git a/projects/sunbird-video-player/karma.conf.js b/projects/sunbird-video-player/karma.conf.js index fb9e2c65..4371adb7 100644 --- a/projects/sunbird-video-player/karma.conf.js +++ b/projects/sunbird-video-player/karma.conf.js @@ -28,7 +28,7 @@ module.exports = function (config) { fixWebpackSourcePaths: true }, - reporters: ['mocha'], + reporters: ['mocha', 'coverage-istanbul'], mochaReporter: { symbols: { success: '+', diff --git a/projects/sunbird-video-player/ng-package.json b/projects/sunbird-video-player/ng-package.json index cfd98431..2c446629 100644 --- a/projects/sunbird-video-player/ng-package.json +++ b/projects/sunbird-video-player/ng-package.json @@ -4,7 +4,7 @@ "lib": { "entryFile": "src/public-api.ts" }, - "whitelistedNonPeerDependencies": [ + "allowedNonPeerDependencies": [ "tslib", "video.js", "@project-sunbird/sunbird-player-sdk-v9" diff --git a/projects/sunbird-video-player/package-lock.json b/projects/sunbird-video-player/package-lock.json index 4d38a9fc..99469e37 100644 --- a/projects/sunbird-video-player/package-lock.json +++ b/projects/sunbird-video-player/package-lock.json @@ -1,6 +1,6 @@ { "name": "@project-sunbird/sunbird-video-player-v9", - "version": "5.2.0", + "version": "5.4.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/projects/sunbird-video-player/package.json b/projects/sunbird-video-player/package.json index 7d5589cc..4b54d9dc 100644 --- a/projects/sunbird-video-player/package.json +++ b/projects/sunbird-video-player/package.json @@ -1,9 +1,9 @@ { "name": "@project-sunbird/sunbird-video-player-v9", - "version": "5.2.4", + "version": "5.4.5", "peerDependencies": { - "@angular/common": ">= 12.2.16", - "@angular/core": ">= 12.2.16", + "@angular/common": ">= 14.2.12", + "@angular/core": ">= 14.2.12", "@types/video.js": "7.5.5", "video.js": "7.18.1", "@project-sunbird/client-services": "^3.4.11", diff --git a/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.data.ts b/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.data.ts index e8c4377a..2e49bb82 100644 --- a/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.data.ts +++ b/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.data.ts @@ -4,21 +4,21 @@ export const mockData = { language: 'Bengali', languageCode: 'bn', identifier: 'do_11353887890259968011412', - // tslint:disable-next-line:max-line-length + // eslint-disable-next-line max-len artifactUrl: 'https://cdn.jsdelivr.net/gh/tombyrer/videojs-transcript-click@1.0/demo/captions.sv.vtt' }, { language: 'English', languageCode: 'en', identifier: 'do_11353887890285363211413', - // tslint:disable-next-line:max-line-length + // eslint-disable-next-line max-len artifactUrl: 'https://dockstorage.blob.core.windows.net/sunbird-content-dock/content/assets/do_11353887890285363211413/titanic.1997.3d.720p.bluray.x264.-yts.mx-english.srt' }, { language: 'Assamese', languageCode: 'as', identifier: 'do_11353887890287820811414', - // tslint:disable-next-line:max-line-length + // eslint-disable-next-line max-len artifactUrl: 'https://cdn.jsdelivr.net/gh/tombyrer/videojs-transcript-click@1.0/demo/captions.ar.vtt' } ], diff --git a/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.spec.ts b/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.spec.ts index cd11abd6..febbb531 100644 --- a/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.spec.ts +++ b/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.spec.ts @@ -79,7 +79,7 @@ describe('VideoPlayerComponent', () => { component.startTime = 0; component.handleVideoControls({ type: 'ended' }); expect(component.totalSpentTime).toString(); - expect(component.viewerService.visitedLength).toEqual(component.totalSpentTime); + expect(component.viewerService.visitedLength).toEqual(component.viewerService.getVisitedLength()); }); it('should call handleVideoControls for playing and setPreMetaDataConfig', () => { component.setMetaDataConfig = true; diff --git a/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.ts b/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.ts index 78b76b20..ff70c257 100644 --- a/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.ts +++ b/projects/sunbird-video-player/src/lib/components/video-player/video-player.component.ts @@ -42,6 +42,7 @@ export class VideoPlayerComponent implements AfterViewInit, OnInit, OnDestroy, O setMetaDataConfig = false; totalDuration = 0; + constructor(public viewerService: ViewerService, private renderer2: Renderer2, @Optional()public questionCursor: QuestionCursor, private http: HttpClient, public cdr: ChangeDetectorRef ) { } ngOnInit() { @@ -222,7 +223,8 @@ export class VideoPlayerComponent implements AfterViewInit, OnInit, OnDestroy, O this.handleVideoControls(data); this.viewerService.playerEvent.emit(data); this.viewerService.currentlength = this.viewerService.metaData.currentDuration; - this.viewerService.visitedLength = this.totalSpentTime; + this.totalSpentTime += new Date().getTime() - this.startTime; + this.startTime = new Date().getTime(); const remainingTime = Math.floor(this.totalDuration - this.player.currentTime()); if (remainingTime <= 0) { this.viewerService.metaData.currentDuration = 0; @@ -355,19 +357,25 @@ export class VideoPlayerComponent implements AfterViewInit, OnInit, OnDestroy, O } if (type === 'ended') { this.totalSpentTime += new Date().getTime() - this.startTime; - this.viewerService.visitedLength = this.totalSpentTime; if (this.player) { this.viewerService.currentlength = this.player.currentTime(); } this.viewerService.totalLength = this.totalDuration; this.updatePlayerEventsMetadata({ type }); + this.viewerService.playBitEndTime = this.totalDuration; + this.viewerService.playerTimeSlots.push([this.viewerService.playBitStartTime, this.viewerService.playBitEndTime]) } if (type === 'pause') { this.totalSpentTime += new Date().getTime() - this.startTime; this.updatePlayerEventsMetadata({ type }); + this.viewerService.playBitEndTime = this.previousTime + this.viewerService.playerTimeSlots.push([this.viewerService.playBitStartTime, this.viewerService.playBitEndTime]) } if (type === 'play') { this.startTime = new Date().getTime(); + if(this.player?.currentTime()) { + this.viewerService.playBitStartTime = this.player?.currentTime() + } this.updatePlayerEventsMetadata({ type }); } @@ -404,7 +412,7 @@ export class VideoPlayerComponent implements AfterViewInit, OnInit, OnDestroy, O score: 0, isSkipped: false }; - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation document.querySelector(`[data-marker-time="${marker.time}"]`)['style'].backgroundColor = 'red'; } }); @@ -418,6 +426,7 @@ export class VideoPlayerComponent implements AfterViewInit, OnInit, OnDestroy, O } if (_.get(this.config, 'currentDuration')) { this.player.currentTime(_.get(this.config, 'currentDuration')); + this.viewerService.playBitStartTime = _.get(this.config, 'currentDuration') } if (!_.isEmpty(_.get(this.config, 'playBackSpeeds'))) { this.player.playbackRate(_.last(_.get(this.config, 'playBackSpeeds'))); diff --git a/projects/sunbird-video-player/src/lib/playerInterfaces.ts b/projects/sunbird-video-player/src/lib/playerInterfaces.ts index 670efbc8..e9b2cf9c 100644 --- a/projects/sunbird-video-player/src/lib/playerInterfaces.ts +++ b/projects/sunbird-video-player/src/lib/playerInterfaces.ts @@ -45,7 +45,7 @@ export interface Context { }; } -// tslint:disable-next-line:no-empty-interface +// eslint-disable-next-line @typescript-eslint/no-empty-interface export interface Config { toolBar?: { showZoomButtons?: boolean; diff --git a/projects/sunbird-video-player/src/lib/services/util.service.spec.ts b/projects/sunbird-video-player/src/lib/services/util.service.spec.ts index 880615ff..faf94f44 100644 --- a/projects/sunbird-video-player/src/lib/services/util.service.spec.ts +++ b/projects/sunbird-video-player/src/lib/services/util.service.spec.ts @@ -11,12 +11,12 @@ describe('UtilService', () => { }); it('should call getTimeSpentText for 1 minute ', () => { const service = TestBed.inject(UtilService); - const timeFormat = service.getTimeSpentText(60000); // passing data in milli seconds + const timeFormat = service.getTimeSpentText(60); // passing data in milli seconds expect(timeFormat).toEqual('1:00'); }); it('should call getTimeSpentText for 10 minute', () => { const service = TestBed.inject(UtilService); - const timeFormat = service.getTimeSpentText(600000); // passing data in milli seconds + const timeFormat = service.getTimeSpentText(600); // passing data in milli seconds expect(timeFormat).toEqual('10:00'); }); it('should call uniqueId', () => { diff --git a/projects/sunbird-video-player/src/lib/services/util.service.ts b/projects/sunbird-video-player/src/lib/services/util.service.ts index 080b076e..a37771ab 100644 --- a/projects/sunbird-video-player/src/lib/services/util.service.ts +++ b/projects/sunbird-video-player/src/lib/services/util.service.ts @@ -16,8 +16,8 @@ export class UtilService { } public getTimeSpentText(duration) { - const minutes = Math.floor(duration / 60000); - const seconds = Number(((duration % 60000) / 1000).toFixed(0)); + const minutes = Math.floor(duration / 60); + const seconds = Number(((duration % 60)).toFixed(0)); return (minutes + ':' + (seconds < 10 ? '0' : '') + seconds); } } diff --git a/projects/sunbird-video-player/src/lib/services/viewer.service.spec.data.ts b/projects/sunbird-video-player/src/lib/services/viewer.service.spec.data.ts index 90b31c6a..9f16ef09 100644 --- a/projects/sunbird-video-player/src/lib/services/viewer.service.spec.data.ts +++ b/projects/sunbird-video-player/src/lib/services/viewer.service.spec.data.ts @@ -26,7 +26,7 @@ export const mockData = { traceId: 'afhjgh', sideMenu: {} }, - // tslint:disable-next-line:max-line-length + // eslint-disable-next-line max-len metadata: { compatibilityLevel: 2, copyright: 'EKSTEP', keywords: ['upload video file', 'upload video', 'Learning / Study material'], subject: ['Other'], channel: '0123221758376673287017', language: ['English'], mimeType: 'video/mp4', objectType: 'Content', gradeLevel: ['Other'], appIcon: 'https://ntpproductionall.blob.core.windows.net/ntp-content-production/content/do_3123348589584056322405/artifact/icon-upload-video-file_video_1505720087818.png', primaryCategory: 'Explanation Content', artifactUrl: 'https://ntpproductionall.blob.core.windows.net/ntp-content-production/assets/do_3123348586389995521449/upload_a_video_file.mp4', contentType: 'Resource', identifier: 'do_3123348586389995521449', audience: ['Teacher'], visibility: 'Default', author: 'EKSTEP', mediaType: 'content', osId: 'org.ekstep.quiz.app', languageCode: ['en'], license: 'CC BY 4.0', concepts: [{ identifier: 'LO46', name: 'Comprehension Of Stories', description: 'Comprehension Of Stories', objectType: 'Concept', relation: 'associatedTo', status: 'Live' }], name: 'Upload a Video file - Video', attributions: ['DIKSHA'], status: 'Live', code: '09d39baa-2610-4b85-bee7-73c2b00a5abb', description: 'In this video, you will learn how to upload a video file.', createdOn: '2017-09-18T07:34:08.706+0000', copyrightYear: 2019, lastUpdatedOn: '2019-09-04T05:18:16.520+0000', pkgVersion: 1, versionKey: '1567574296520', framework: 'NCF', createdBy: '96d1f6be-a79e-430f-b136-23c22b818911', board: 'NCTE', resourceType: 'Learn', orgDetails: {}, licenseDetails: { name: 'CC BY 4.0', url: 'https://creativecommons.org/licenses/by/4.0/legalcode', description: 'For details see below:' } }, data: {} }, diff --git a/projects/sunbird-video-player/src/lib/services/viewer.service.spec.ts b/projects/sunbird-video-player/src/lib/services/viewer.service.spec.ts index d4633969..e77ea4af 100644 --- a/projects/sunbird-video-player/src/lib/services/viewer.service.spec.ts +++ b/projects/sunbird-video-player/src/lib/services/viewer.service.spec.ts @@ -22,7 +22,7 @@ describe('ViewerService', () => { it('should call raiseExceptionLog', () => { const service = TestBed.inject(ViewerService); spyOn(service.playerEvent, 'emit').and.callThrough(); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation spyOn(service['videoPlayerService'], 'error').and.callFake(() => 'true'); const exceptionLogEvent = { eid: 'ERROR', @@ -36,15 +36,15 @@ describe('ViewerService', () => { service.raiseExceptionLog(exceptionLogEvent.edata.err, exceptionLogEvent.edata.errtype, exceptionLogEvent.edata.stacktrace, exceptionLogEvent.edata.requestid); expect(service.playerEvent.emit).toHaveBeenCalledWith(exceptionLogEvent); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation expect(service['videoPlayerService']['error']).toHaveBeenCalled(); }); it('should call raiseHeartBeatEvent for REPLAY', () => { const service = TestBed.inject(ViewerService); spyOn(service.playerEvent, 'emit').and.callThrough(); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation spyOn(service['videoPlayerService'], 'heartBeat').and.callFake(() => 'true'); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation spyOn(service['videoPlayerService'], 'interact').and.callFake(() => 'true'); service.raiseHeartBeatEvent('REPLAY'); expect(service.showScore).toBeFalsy(); @@ -60,7 +60,7 @@ describe('ViewerService', () => { it('should call raiseHeartBeatEvent for REPLAY', () => { const service = TestBed.inject(ViewerService); spyOn(service.playerEvent, 'emit').and.callThrough(); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation spyOn(service['videoPlayerService'], 'start').and.callFake(() => 'true'); service.raiseStartEvent(''); expect(service.PlayerLoadStartedAt).toBeDefined(); @@ -77,10 +77,10 @@ describe('ViewerService', () => { service.isEndEventRaised = true; service.visitedLength = 60000; spyOn(service, 'calculateScore').and.callThrough(); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation spyOn(service['utilService'], 'getTimeSpentText').and.callFake(() => 'true'); service.raiseEndEvent(); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation expect(service['utilService'].getTimeSpentText).not.toHaveBeenCalledWith(service.visitedLength); expect(service.calculateScore).not.toHaveBeenCalled(); }); @@ -115,7 +115,7 @@ describe('ViewerService', () => { it('should call getPlayerOptions for streamingUrl ', () => { const service = TestBed.inject(ViewerService); service.streamingUrl = 'abc.com'; - // tslint:disable-next-line:max-line-length + // eslint-disable-next-line max-len service.artifactUrl = 'https://ntpproductionall.blob.core.windows.net/ntp-content-production/assets/do_3123348586389995521449/upload_a_video_file.mp4'; service.artifactMimeType = 'video/mp4'; const returnValue = service.getPlayerOptions(); @@ -124,10 +124,10 @@ describe('ViewerService', () => { it('should call getPlayerOptions for null streamingUrl', () => { const service = TestBed.inject(ViewerService); service.streamingUrl = null; - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation spyOn(service['http'], 'head').and.returnValue(of(false)); spyOn(service, 'raiseExceptionLog').and.callThrough(); - // tslint:disable-next-line:max-line-length + // eslint-disable-next-line max-len service.artifactUrl = 'https://ntpproductionall.blob.core.windows.net/ntp-content-production/assets/do_3123348586389995521449/upload_a_video_file.mp4'; service.artifactMimeType = 'video/mp4'; const returnValue = service.getPlayerOptions(); diff --git a/projects/sunbird-video-player/src/lib/services/viewer.service.ts b/projects/sunbird-video-player/src/lib/services/viewer.service.ts index 749d03df..2fdff5b0 100644 --- a/projects/sunbird-video-player/src/lib/services/viewer.service.ts +++ b/projects/sunbird-video-player/src/lib/services/viewer.service.ts @@ -28,9 +28,10 @@ export class ViewerService { public PlayerLoadStartedAt: number; public totalLength; public currentlength; - public totalSeekedLength; + public totalSeekedLength = 0; public artifactUrl; - public visitedLength; + public visitedLength = 0; + public uniqueVisitedLength; public sidebarMenuEvent = new EventEmitter(); public traceId: string; public isAvailableLocally = false; @@ -41,8 +42,11 @@ export class ViewerService { public maxScore: number; public playerInstance: any; public contentMap = {}; + public playerTimeSlots = []; public isEndEventRaised = false; public transcripts: Transcripts; + public playBitStartTime = 0; + public playBitEndTime = 0; constructor(private videoPlayerService: SunbirdVideoPlayerService, private utilService: UtilService, private http: HttpClient, @@ -108,7 +112,7 @@ export class ViewerService { return [{ src: this.artifactUrl, type: this.artifactMimeType }]; } else { const data = await this.http.head(this.streamingUrl, { responseType: 'blob' }).toPromise().catch(error => { - // tslint:disable-next-line:max-line-length + // eslint-disable-next-line max-len this.raiseExceptionLog(errorCode.streamingUrlSupport , errorMessage.streamingUrlSupport , new Error(`Streaming Url Not Supported ${this.streamingUrl}`), this.traceId); }); if (data) { @@ -162,6 +166,40 @@ export class ViewerService { } } + getUniqueVisitedLength() { + const uniqSecondsList = []; + for (let slot of this.playerTimeSlots) { + if(slot[0] < slot[1]) { + let sec = slot[0]; + while ( sec <= slot[1]) { + sec = Math.floor(sec) + if(uniqSecondsList.indexOf(sec) == -1 && sec != 0) { + uniqSecondsList.push(sec) + } + sec += 1 + } + } + } + return uniqSecondsList.length; + } + + getVisitedLength() { + const secondsList = []; + for (let slot of this.playerTimeSlots) { + if(slot[0] < slot[1]) { + let sec = slot[0]; + while ( sec <= slot[1]) { + sec = Math.floor(sec) + if(sec != 0) { + secondsList.push(sec) + } + sec += 1 + } + } + } + return secondsList.length; + } + getNextMarker() { const currentTime = this.playerInstance.currentTime(); const markersList = this.getMarkers(); @@ -192,11 +230,12 @@ export class ViewerService { calculateScore() { this.scoreObtained = Object.values(this.interceptionResponses).reduce( - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation (acc, response) => acc + response['score'] , 0); } - raiseEndEvent() { + raiseEndEvent(isOnPlayInterrupt = false) { + if (!this.isEndEventRaised) { this.calculateScore(); const duration = new Date().getTime() - this.PlayerLoadStartedAt; @@ -212,15 +251,26 @@ export class ViewerService { metaData: this.metaData }; this.playerEvent.emit(endEvent); + + if(isOnPlayInterrupt) { + this.playerTimeSlots.push([this.playBitStartTime, this.currentlength]); + } + this.uniqueVisitedLength = this.getUniqueVisitedLength(); + if(this.uniqueVisitedLength > this.totalLength) { + this.uniqueVisitedLength = this.totalLength; + } + this.visitedLength = this.getVisitedLength(); this.timeSpent = this.utilService.getTimeSpentText(this.visitedLength); + this.videoPlayerService.end( duration, this.totalLength, this.currentlength, this.endPageSeen, this.totalSeekedLength, - this.visitedLength / 1000, - this.scoreObtained + this.visitedLength, + this.scoreObtained, + this.uniqueVisitedLength ); this.isEndEventRaised = true; } @@ -232,6 +282,9 @@ export class ViewerService { this.interceptionResponses = {}; this.showScore = false; this.scoreObtained = 0; + this.playerTimeSlots = []; + this.playBitEndTime = 0; + this.playBitStartTime = 0; } const hearBeatEvent = { eid: 'HEARTBEAT', @@ -260,7 +313,7 @@ export class ViewerService { this.videoPlayerService.impression(pageId, cdata); } - // tslint:disable-next-line:no-shadowed-variable + // eslint-disable-next-line @typescript-eslint/no-shadow raiseExceptionLog(errorCode: string, errorType: string, stacktrace, traceId) { const exceptionLogEvent = { eid: 'ERROR', diff --git a/projects/sunbird-video-player/src/lib/sunbird-video-player.component.spec.data.ts b/projects/sunbird-video-player/src/lib/sunbird-video-player.component.spec.data.ts index 42f93d4a..0b44640e 100644 --- a/projects/sunbird-video-player/src/lib/sunbird-video-player.component.spec.data.ts +++ b/projects/sunbird-video-player/src/lib/sunbird-video-player.component.spec.data.ts @@ -26,7 +26,7 @@ export const mockData = { traceId: 'afhjgh', sideMenu: {} }, - // tslint:disable-next-line:max-line-length + // eslint-disable-next-line max-len metadata: { compatibilityLevel: 2, copyright: 'EKSTEP', keywords: ['upload video file', 'upload video', 'Learning / Study material'], subject: ['Other'], channel: '0123221758376673287017', language: ['English'], mimeType: 'video/mp4', objectType: 'Content', gradeLevel: ['Other'], appIcon: 'https://ntpproductionall.blob.core.windows.net/ntp-content-production/content/do_3123348589584056322405/artifact/icon-upload-video-file_video_1505720087818.png', primaryCategory: 'Explanation Content', artifactUrl: 'https://ntpproductionall.blob.core.windows.net/ntp-content-production/assets/do_3123348586389995521449/upload_a_video_file.mp4', contentType: 'Resource', identifier: 'do_3123348586389995521449', audience: ['Teacher'], visibility: 'Default', author: 'EKSTEP', mediaType: 'content', osId: 'org.ekstep.quiz.app', languageCode: ['en'], license: 'CC BY 4.0', concepts: [{ identifier: 'LO46', name: 'Comprehension Of Stories', description: 'Comprehension Of Stories', objectType: 'Concept', relation: 'associatedTo', status: 'Live' }], name: 'Upload a Video file - Video', attributions: ['DIKSHA'], status: 'Live', code: '09d39baa-2610-4b85-bee7-73c2b00a5abb', description: 'In this video, you will learn how to upload a video file.', createdOn: '2017-09-18T07:34:08.706+0000', copyrightYear: 2019, lastUpdatedOn: '2019-09-04T05:18:16.520+0000', pkgVersion: 1, versionKey: '1567574296520', framework: 'NCF', createdBy: '96d1f6be-a79e-430f-b136-23c22b818911', board: 'NCTE', resourceType: 'Learn', orgDetails: {}, licenseDetails: { name: 'CC BY 4.0', url: 'https://creativecommons.org/licenses/by/4.0/legalcode', description: 'For details see below:' } }, data: {} }, diff --git a/projects/sunbird-video-player/src/lib/sunbird-video-player.component.spec.ts b/projects/sunbird-video-player/src/lib/sunbird-video-player.component.spec.ts index 5217a8b7..761f8820 100644 --- a/projects/sunbird-video-player/src/lib/sunbird-video-player.component.spec.ts +++ b/projects/sunbird-video-player/src/lib/sunbird-video-player.component.spec.ts @@ -32,7 +32,6 @@ describe('SunbirdVideoPlayerComponent', () => { jasmine.clock().install(); }); - // tslint:disable-next-line:only-arrow-functions afterEach(function() { jasmine.clock().uninstall(); }); @@ -141,7 +140,7 @@ describe('SunbirdVideoPlayerComponent', () => { expect(component.traceId).toEqual(component.playerConfig.config.traceId); }); it('should call raiseInternetDisconnectionError', () => { - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation component.videoPlayerService['context'] = { channel: '12345' }; diff --git a/projects/sunbird-video-player/src/lib/sunbird-video-player.component.ts b/projects/sunbird-video-player/src/lib/sunbird-video-player.component.ts index dd7db135..1c4fbbfb 100644 --- a/projects/sunbird-video-player/src/lib/sunbird-video-player.component.ts +++ b/projects/sunbird-video-player/src/lib/sunbird-video-player.component.ts @@ -1,4 +1,3 @@ -import { ThrowStmt } from '@angular/compiler'; import { ChangeDetectorRef, Component, EventEmitter, Input, OnInit, Output, OnChanges, SimpleChanges, HostListener, ElementRef, ViewChild, AfterViewInit, Renderer2, OnDestroy @@ -70,7 +69,7 @@ export class SunbirdVideoPlayerComponent implements OnInit, AfterViewInit, OnDes this.cdr.detectChanges(); } if (event.type === 'error') { - // tslint:disable-next-line:one-variable-per-declaration + // eslint-disable-next-line one-var let code = errorCode.contentLoadFails, message = errorMessage.contentLoadFails; if (this.viewerService.isAvailableLocally) { @@ -83,7 +82,7 @@ export class SunbirdVideoPlayerComponent implements OnInit, AfterViewInit, OnDes this.viewerService.raiseExceptionLog(code, message, event, this.traceId); } - // tslint:disable-next-line:max-line-length + // eslint-disable-next-line max-len const events = [{ type: 'volumechange', telemetryEvent: 'VOLUME_CHANGE' }, { type: 'seeking', telemetryEvent: 'DRAG' }, { type: 'fullscreen', telemetryEvent: 'FULLSCREEN' }, { type: 'ratechange', telemetryEvent: 'RATE_CHANGE' }]; events.forEach(data => { @@ -116,8 +115,8 @@ export class SunbirdVideoPlayerComponent implements OnInit, AfterViewInit, OnDes } }, 5000); - /* tslint:disable:no-string-literal */ - this.nextContent = this.playerConfig.config.nextContent; + /* eslint-disable @typescript-eslint/dot-notation */ + this.nextContent = this.playerConfig?.config?.nextContent; this.traceId = this.playerConfig.config['traceId']; this.sideMenuConfig = { ...this.sideMenuConfig, ...this.playerConfig.config.sideMenu }; this.videoPlayerService.initialize(this.playerConfig); @@ -162,7 +161,7 @@ export class SunbirdVideoPlayerComponent implements OnInit, AfterViewInit, OnDes if (contentCompabilityLevel) { const checkContentCompatible = this.errorService.checkContentCompatibility(contentCompabilityLevel); if (!checkContentCompatible['isCompitable']) { - // tslint:disable-next-line:max-line-length + // eslint-disable-next-line max-len this.viewerService.raiseExceptionLog(errorCode.contentCompatibility, errorMessage.contentCompatibility, checkContentCompatible['error']['message'], this.traceId); } } @@ -276,7 +275,7 @@ export class SunbirdVideoPlayerComponent implements OnInit, AfterViewInit, OnDes @HostListener('window:beforeunload') ngOnDestroy() { - this.viewerService.raiseEndEvent(); + this.viewerService.raiseEndEvent(true); this.unlistenTouchStart(); this.unlistenMouseMove(); this.viewerService.isEndEventRaised = false; diff --git a/projects/sunbird-video-player/src/lib/sunbird-video-player.service.spec.ts b/projects/sunbird-video-player/src/lib/sunbird-video-player.service.spec.ts index 899063cc..51272098 100644 --- a/projects/sunbird-video-player/src/lib/sunbird-video-player.service.spec.ts +++ b/projects/sunbird-video-player/src/lib/sunbird-video-player.service.spec.ts @@ -15,19 +15,19 @@ describe('SunbirdVideoPlayerService', () => { const service = TestBed.inject(SunbirdVideoPlayerService); service.initialize(mockData.playerConfig); expect(CsTelemetryModule.instance.isInitialised).toBeTruthy(); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation expect(service['telemetryObject']).toBeDefined(); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation expect(service['context']).toBeDefined(); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation expect(service['config']).toBeDefined(); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation expect(service['playSessionId']).toBeDefined(); }); it('should raise start telemetry event', () => { const service = TestBed.inject(SunbirdVideoPlayerService); spyOn(CsTelemetryModule.instance.telemetryService, 'raiseStartTelemetry').and.callFake(() => 'true'); - // tslint:disable-next-line:no-string-literal + // eslint-disable-next-line @typescript-eslint/dot-notation service['context'] = { channel: '12345' }; @@ -38,7 +38,7 @@ describe('SunbirdVideoPlayerService', () => { const service = TestBed.inject(SunbirdVideoPlayerService); service.initialize(mockData.playerConfig); spyOn(CsTelemetryModule.instance.telemetryService, 'raiseEndTelemetry'); - service.end(10, 5, 10, 5, 3, 4, 5); + service.end(10, 5, 10, 5, 3, 4, 5, 10); expect(CsTelemetryModule.instance.telemetryService.raiseEndTelemetry).toHaveBeenCalled(); }); it('should raise interact telemetry event', () => { diff --git a/projects/sunbird-video-player/src/lib/sunbird-video-player.service.ts b/projects/sunbird-video-player/src/lib/sunbird-video-player.service.ts index 537ec9f8..d9c119f7 100644 --- a/projects/sunbird-video-player/src/lib/sunbird-video-player.service.ts +++ b/projects/sunbird-video-player/src/lib/sunbird-video-player.service.ts @@ -69,8 +69,12 @@ export class SunbirdVideoPlayerService { } - public end(duration, totallength, currentlength, endpageseen, totalseekedlength, visitedlength, score) { + public end(duration, totallength, currentlength, endpageseen, totalseekedlength, visitedlength, score, uniqueVisitedLength) { const durationSec = Number((duration / 1e3).toFixed(2)); + let progress = Number(((uniqueVisitedLength / totallength) * 100).toFixed(0)); + if(totallength - uniqueVisitedLength < 5) { + progress = 100; + } CsTelemetryModule.instance.telemetryService.raiseEndTelemetry({ edata: { type: 'content', @@ -78,7 +82,7 @@ export class SunbirdVideoPlayerService { pageid: 'sunbird-player-Endpage', summary: [ { - progress: Number(((currentlength / totallength) * 100).toFixed(0)) + progress }, { totallength @@ -87,7 +91,7 @@ export class SunbirdVideoPlayerService { visitedlength }, { - visitedcontentend: (totallength === currentlength) + visitedcontentend: endpageseen }, { totalseekedlength @@ -97,6 +101,9 @@ export class SunbirdVideoPlayerService { }, { score + }, + { + uniquevisitedlength: uniqueVisitedLength } ], duration: durationSec diff --git a/projects/sunbird-video-player/src/test.ts b/projects/sunbird-video-player/src/test.ts index b1cc186b..8bc9acb8 100644 --- a/projects/sunbird-video-player/src/test.ts +++ b/projects/sunbird-video-player/src/test.ts @@ -14,7 +14,9 @@ declare const require: any; // First, initialize the Angular testing environment. getTestBed().initTestEnvironment( BrowserDynamicTestingModule, - platformBrowserDynamicTesting() + platformBrowserDynamicTesting(), { + teardown: { destroyAfterEach: false } +} ); // Then we find all the tests. const context = require.context('./', true, /\.spec\.ts$/); diff --git a/projects/sunbird-video-player/tsconfig.lib.json b/projects/sunbird-video-player/tsconfig.lib.json index fcfd0e39..9c52f28d 100644 --- a/projects/sunbird-video-player/tsconfig.lib.json +++ b/projects/sunbird-video-player/tsconfig.lib.json @@ -2,7 +2,7 @@ "extends": "../../tsconfig.json", "compilerOptions": { "outDir": "../../out-tsc/lib", - "target": "es2015", + "target": "es2020", "module": "es2015", "moduleResolution": "node", "declaration": true, @@ -23,7 +23,8 @@ "fullTemplateTypeCheck": true, "strictInjectionParameters": true, "enableResourceInlining": true, - "preserveSymlinks": true + "preserveSymlinks": true, + "enableIvy": true }, "exclude": [ "src/test.ts", diff --git a/projects/sunbird-video-player/tslint.json b/projects/sunbird-video-player/tslint.json deleted file mode 100644 index fc9ea97b..00000000 --- a/projects/sunbird-video-player/tslint.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "extends": "../../tslint.json", - "rules": { - "directive-selector": [ - true, - "attribute", - "camelCase" - ], - "component-selector": [ - true, - "element", - "kebab-case" - ] - } -} diff --git a/projects/video-player-wc/.eslintrc.json b/projects/video-player-wc/.eslintrc.json new file mode 100644 index 00000000..31455079 --- /dev/null +++ b/projects/video-player-wc/.eslintrc.json @@ -0,0 +1,45 @@ +{ + "extends": "../../.eslintrc.json", + "ignorePatterns": [ + "!**/*" + ], + "overrides": [ + { + "files": [ + "*.ts" + ], + "parserOptions": { + "project": [ + "projects/video-player-wc/tsconfig.app.json", + "projects/video-player-wc/tsconfig.spec.json", + "projects/video-player-wc/e2e/tsconfig.json" + ], + "createDefaultProgram": true + }, + "rules": { + "@angular-eslint/directive-selector": [ + "error", + { + "type": "attribute", + "prefix": "app", + "style": "camelCase" + } + ], + "@angular-eslint/component-selector": [ + "error", + { + "type": "element", + "prefix": "app", + "style": "kebab-case" + } + ] + } + }, + { + "files": [ + "*.html" + ], + "rules": {} + } + ] +} diff --git a/projects/video-player-wc/src/app/app.module.ts b/projects/video-player-wc/src/app/app.module.ts index fd18e409..6c2c3301 100644 --- a/projects/video-player-wc/src/app/app.module.ts +++ b/projects/video-player-wc/src/app/app.module.ts @@ -11,22 +11,21 @@ import { SunbirdVideoPlayerComponent } from '../../../sunbird-video-player/src/l import { QCImplementationService } from './QCImplementationService'; @NgModule({ - declarations: [ - SunbirdVideoPlayerComponent, - VideoPlayerComponent - ], - imports: [ - BrowserModule, - CommonModule, - FormsModule, - HttpClientModule, - SunbirdPlayerSdkModule, - QumlLibraryModule, - ], - providers: [ErrorService, - { provide: QuestionCursor, useClass: QCImplementationService } - ], - entryComponents: [SunbirdVideoPlayerComponent] + declarations: [ + SunbirdVideoPlayerComponent, + VideoPlayerComponent + ], + imports: [ + BrowserModule, + CommonModule, + FormsModule, + HttpClientModule, + SunbirdPlayerSdkModule, + QumlLibraryModule, + ], + providers: [ErrorService, + { provide: QuestionCursor, useClass: QCImplementationService } + ] }) export class AppModule implements DoBootstrap { constructor(private injector: Injector) { } diff --git a/projects/video-player-wc/src/polyfills.ts b/projects/video-player-wc/src/polyfills.ts index 7de35190..a922edef 100644 --- a/projects/video-player-wc/src/polyfills.ts +++ b/projects/video-player-wc/src/polyfills.ts @@ -18,16 +18,6 @@ * BROWSER POLYFILLS */ -/** IE10 and IE11 requires the following for NgClass support on SVG elements */ -// import 'classlist.js'; // Run `npm install --save classlist.js`. - -/** - * Web Animations `@angular/platform-browser/animations` - * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari. - * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0). - */ -// import 'web-animations-js'; // Run `npm install --save web-animations-js`. - /** * By default, zone.js will patch all possible macroTask and DomEvents * user can disable parts of macroTask/DomEvents patch by setting following flags diff --git a/projects/video-player-wc/src/test.ts b/projects/video-player-wc/src/test.ts index 20423564..4bf4afba 100644 --- a/projects/video-player-wc/src/test.ts +++ b/projects/video-player-wc/src/test.ts @@ -17,7 +17,9 @@ declare const require: { // First, initialize the Angular testing environment. getTestBed().initTestEnvironment( BrowserDynamicTestingModule, - platformBrowserDynamicTesting() + platformBrowserDynamicTesting(), { + teardown: { destroyAfterEach: false } +} ); // Then we find all the tests. const context = require.context('./', true, /\.spec\.ts$/); diff --git a/projects/video-player-wc/tslint.json b/projects/video-player-wc/tslint.json deleted file mode 100644 index 19e8161a..00000000 --- a/projects/video-player-wc/tslint.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "extends": "../../tslint.json", - "rules": { - "directive-selector": [ - true, - "attribute", - "app", - "camelCase" - ], - "component-selector": [ - true, - "element", - "app", - "kebab-case" - ] - } -} diff --git a/src/polyfills.ts b/src/polyfills.ts index 9cd9a23c..e1816126 100644 --- a/src/polyfills.ts +++ b/src/polyfills.ts @@ -18,16 +18,6 @@ * BROWSER POLYFILLS */ -/** IE10 and IE11 requires the following for NgClass support on SVG elements */ -// import 'classlist.js'; // Run `npm install --save classlist.js`. - -/** - * Web Animations `@angular/platform-browser/animations` - * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari. - * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0). - */ -// import 'web-animations-js'; // Run `npm install --save web-animations-js`. - /** * By default, zone.js will patch all possible macroTask and DomEvents * user can disable parts of macroTask/DomEvents patch by setting following flags diff --git a/src/test.ts b/src/test.ts index a6f15af3..6b03dbe8 100644 --- a/src/test.ts +++ b/src/test.ts @@ -12,7 +12,9 @@ declare const require: any; // First, initialize the Angular testing environment. getTestBed().initTestEnvironment( BrowserDynamicTestingModule, - platformBrowserDynamicTesting() + platformBrowserDynamicTesting(), { + teardown: { destroyAfterEach: false } +} ); // Then we find all the tests. const context = require.context('./', true, /\.spec\.ts$/); diff --git a/tsconfig.json b/tsconfig.json index 5f730c53..c8fe0a51 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compileOnSave": false, "angularCompilerOptions": { - "enableIvy": false + "enableIvy": true }, "compilerOptions": { "baseUrl": "./", @@ -13,7 +13,7 @@ "experimentalDecorators": true, "importHelpers": true, "skipLibCheck": true, - "target": "es5", + "target": "es2020", "typeRoots": [ "node_modules/@types" ], diff --git a/tslint.json b/tslint.json deleted file mode 100644 index bf80068e..00000000 --- a/tslint.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "extends": "tslint:recommended", - "rulesDirectory": [ - "codelyzer" - ], - "rules": { - "align": { - "options": [ - "parameters", - "statements" - ] - }, - "array-type": false, - "arrow-parens": false, - "arrow-return-shorthand": true, - "deprecation": { - "severity": "warn" - }, - "curly": true, - "import-blacklist": [ - true, - "rxjs/Rx" - ], - "interface-name": false, - "eofline": true, - "max-classes-per-file": false, - "import-spacing": true, - "indent": { - "options": [ - "spaces" - ] - }, - "max-line-length": [ - true, - 140 - ], - "member-access": false, - "member-ordering": [ - true, - { - "order": [ - "static-field", - "instance-field", - "static-method", - "instance-method" - ] - } - ], - "no-consecutive-blank-lines": false, - "no-console": [ - true, - "debug", - "info", - "time", - "timeEnd", - "trace" - ], - "no-empty": false, - "no-inferrable-types": [ - true, - "ignore-params" - ], - "no-non-null-assertion": true, - "no-redundant-jsdoc": true, - "no-switch-case-fall-through": true, - "no-var-requires": false, - "object-literal-key-quotes": [ - true, - "as-needed" - ], - "object-literal-sort-keys": false, - "ordered-imports": false, - "quotemark": [ - true, - "single" - ], - "trailing-comma": false, - "no-output-on-prefix": true, - "use-input-property-decorator": true, - "use-output-property-decorator": true, - "use-host-property-decorator": true, - "semicolon": { - "options": [ - "always" - ] - }, - "space-before-function-paren": { - "options": { - "anonymous": "never", - "asyncArrow": "always", - "constructor": "never", - "method": "never", - "named": "never" - } - }, - "no-input-rename": true, - "typedef-whitespace": { - "options": [ - { - "call-signature": "nospace", - "index-signature": "nospace", - "parameter": "nospace", - "property-declaration": "nospace", - "variable-declaration": "nospace" - }, - { - "call-signature": "onespace", - "index-signature": "onespace", - "parameter": "onespace", - "property-declaration": "onespace", - "variable-declaration": "onespace" - } - ] - }, - "no-output-rename": true, - "use-life-cycle-interface": true, - "use-pipe-transform-interface": true, - "component-class-suffix": true, - "directive-class-suffix": true, - "variable-name": { - "options": [ - "ban-keywords", - "check-format", - "allow-pascal-case" - ] - }, - "whitespace": { - "options": [ - "check-branch", - "check-decl", - "check-operator", - "check-separator", - "check-type", - "check-typecast" - ] - } - } -} diff --git a/web-component/styles.css b/web-component/styles.css index 0db3efbc..db130c83 100644 --- a/web-component/styles.css +++ b/web-component/styles.css @@ -1,4 +1,13 @@ -@charset "UTF-8";.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;align-items:center;width:100%;transition:transform .6s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:1000px}@media screen and (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{transform:translateX(0)}@supports (transform-style: preserve-3d){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{transform:translateZ(0)}}.active.carousel-item-right,.carousel-item-next{transform:translateX(100%)}@supports (transform-style: preserve-3d){.active.carousel-item-right,.carousel-item-next{transform:translate3d(100%,0,0)}}.active.carousel-item-left,.carousel-item-prev{transform:translateX(-100%)}@supports (transform-style: preserve-3d){.active.carousel-item-left,.carousel-item-prev{transform:translate3d(-100%,0,0)}}.carousel-fade .carousel-item{opacity:0;transition-duration:.6s;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{transform:translateX(0)}@supports (transform-style: preserve-3d){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{transform:translateZ(0)}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat 50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:hsla(0,0%,100%,.5)}.carousel-indicators li:before{top:-10px}.carousel-indicators li:after,.carousel-indicators li:before{position:absolute;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li:after{bottom:-10px}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}[class*=sb-icon-],[class^=sb-icon-]{font-family:icomoon!important;speak:none;font-style:normal;font-weight:400;font-feature-settings:normal;font-variant:normal;font-size:inherit;text-transform:none;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.sb-icon-preview:before{content:""}.sb-icon-refresh:before{content:""}.sb-icon-reviewer:before{content:""}.sb-icon-folder:before{content:""}.sb-icon-comment:before{content:""}.sb-icon-send:before{content:""}.sb-icon-book:before{content:""}.sb-icon-content:before{content:""}.sb-icon-collection:before{content:""}.sb-icon-doc:before{content:""}.sb-icon-mp3:before{content:""}.sb-icon-open-book:before{content:""}.sb-icon-video:before{content:""}.sb-lock-icon{cursor:pointer}[class*=sb-icon-primary]{background-color:#024f9d;background-color:var(--primary-color)}[class*=sb-icon-secondary]{background-color:#008840;background-color:var(--secondary-color)}[class*=sb-icon-warning]{background-color:#e55a28;background-color:var(--tertiary-color)}[class*=sb-icon-error]{background-color:#ff4558;background-color:var(--red)}.info-icon{background-color:#666;background-color:var(--gray-400);-webkit-mask-size:contain;-webkit-mask-position:50% 50%;-webkit-mask-repeat:no-repeat;mask-size:contain;mask-position:50% 50%;mask-repeat:no-repeat;width:1rem;height:1rem;margin-left:.25rem;display:inline-block;vertical-align:bottom}.icon-arrow-round-down{transform:rotate(90deg)}.icon-svg{position:relative;top:.0625rem;display:inline-block;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;opacity:1}.icon-svg svg.icon{width:100%;height:inherit}.icon-svg--xxs{width:.75rem;width:var(--icon-svg-xxs);height:.75rem;height:var(--icon-svg-xxs)}.icon-svg--xs{width:calc(.5rem * 2);width:var(--icon-svg-xs);height:calc(.5rem * 2);height:var(--icon-svg-xs)}.icon-svg--sm{width:calc(.5rem * 3);width:var(--icon-svg-sm);height:calc(.5rem * 3);height:var(--icon-svg-sm)}.icon-svg--md{width:calc(.5rem * 4);width:var(--icon-svg-md);height:calc(.5rem * 4);height:var(--icon-svg-md)}.icon-svg--lg{width:calc(.5rem * 5);width:var(--icon-svg-lg);height:calc(.5rem * 5);height:var(--icon-svg-lg)}.icon-svg--xl{width:calc(.5rem * 6);width:var(--icon-svg-xl);height:calc(.5rem * 6);height:var(--icon-svg-xl)}.icon-svg--white{fill:#fff;fill:var(--white)}.icon-svg--primary{fill:#024f9d;fill:var(--primary-color)}.icon-svg--secondary{fill:#008840;fill:var(--secondary-color)}.icon-svg--tertiary{fill:#e55a28;fill:var(--tertiary-color)}.icon-svg--red{fill:#ff4558;fill:var(--red-400)}.icon-svg--gray{fill:#333;fill:var(--gray-800)}*,:after,:before{box-sizing:border-box}html{font-family:inherit;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:Noto Sans,Noto Sans Devanagari,Noto Sans Tamil,Noto Sans Bengali,Noto Sans Malayalam,Noto Sans Gurmukhi,Noto Sans Gujarati,Noto Sans Telugu,Noto Sans Kannada,Noto Sans Oriya,Noto Nastaliq Urdu,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-family:var(--font-stack-en);font-size:1rem;font-weight:400;line-height:1.5;color:#333;color:var(--gray-800);text-align:left;background:#e5edf5}[tabindex="-1"]:focus{outline:none!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:theme-color("primary");text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea{touch-action:manipulation}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#868e96;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:0 dotted;outline:0 auto transparent}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item}template{display:none}[hidden]{display:none!important}.sb-bg-color-gray-hs{background:0,0!important;background:var(--gray-hs)!important}.sb-color-gray-hs{color:0,0!important;color:var(--gray-hs)!important}.sb-bg-color-gray{background:#333!important;background:var(--gray)!important}.sb-color-gray{color:#333!important;color:var(--gray)!important}.sb-bg-color-gray-0{background:#f2f2f2!important;background:var(--gray-0)!important}.sb-color-gray-0{color:#f2f2f2!important;color:var(--gray-0)!important}.sb-bg-color-gray-100{background:#ccc!important;background:var(--gray-100)!important}.sb-color-gray-100{color:#ccc!important;color:var(--gray-100)!important}.sb-bg-color-gray-200{background:#999!important;background:var(--gray-200)!important}.sb-color-gray-200{color:#999!important;color:var(--gray-200)!important}.sb-bg-color-gray-300{background:#969696!important;background:var(--gray-300)!important}.sb-color-gray-300{color:#969696!important;color:var(--gray-300)!important}.sb-bg-color-gray-400{background:#666!important;background:var(--gray-400)!important}.sb-color-gray-400{color:#666!important;color:var(--gray-400)!important}.sb-bg-color-gray-800{background:#333!important;background:var(--gray-800)!important}.sb-color-gray-800{color:#333!important;color:var(--gray-800)!important}.sb-bg-color-primary{background:#024f9d!important;background:var(--primary-400)!important}.sb-color-primary{color:#024f9d!important;color:var(--primary-400)!important}.sb-bg-color-primary-0{background:#f3f7fa!important;background:var(--primary-0)!important}.sb-color-primary-0{color:#f3f7fa!important;color:var(--primary-0)!important}.sb-bg-color-primary-100{background:#edf4f9!important;background:var(--primary-100)!important}.sb-color-primary-100{color:#edf4f9!important;color:var(--primary-100)!important}.sb-bg-color-primary-200{background:#80a7ce!important;background:var(--primary-200)!important}.sb-color-primary-200{color:#80a7ce!important;color:var(--primary-200)!important}.sb-bg-color-primary-250{background:#d3e7f4!important;background:var(--primary-250)!important}.sb-color-primary-250{color:#d3e7f4!important;color:var(--primary-250)!important}.sb-bg-color-primary-300{background:#7ab4ee!important;background:var(--primary-300)!important}.sb-color-primary-300{color:#7ab4ee!important;color:var(--primary-300)!important}.sb-bg-color-primary-400{background:#024f9d!important;background:var(--primary-400)!important}.sb-color-primary-400{color:#024f9d!important;color:var(--primary-400)!important}.sb-bg-color-primary-600{background:#005391!important;background:var(--primary-600)!important}.sb-color-primary-600{color:#005391!important;color:var(--primary-600)!important}.sb-bg-color-primary-800{background:#002e50!important;background:var(--primary-800)!important}.sb-color-primary-800{color:#002e50!important;color:var(--primary-800)!important}.sb-bg-color-secondary{background:#008840!important;background:var(--green)!important}.sb-color-secondary{color:#008840!important;color:var(--green)!important}.sb-bg-color-secondary-0{background:#e1ffdf!important;background:var(--secondary-0)!important}.sb-color-secondary-0{color:#e1ffdf!important;color:var(--secondary-0)!important}.sb-bg-color-secondary-100{background:#00c786!important;background:var(--secondary-100)!important}.sb-color-secondary-100{color:#00c786!important;color:var(--secondary-100)!important}.sb-bg-color-secondary-200{background:#07bc81!important;background:var(--secondary-200)!important}.sb-color-secondary-200{color:#07bc81!important;color:var(--secondary-200)!important}.sb-bg-color-secondary-400{background:#008840!important;background:var(--secondary-400)!important}.sb-color-secondary-400{color:#008840!important;color:var(--secondary-400)!important}.sb-bg-color-tertiary{background:#e55a28!important;background:var(--orange)!important}.sb-color-tertiary{color:#e55a28!important;color:var(--orange)!important}.sb-bg-color-tertiary-0{background:#feedd7!important;background:var(--tertiary-0)!important}.sb-color-tertiary-0{color:#feedd7!important;color:var(--tertiary-0)!important}.sb-bg-color-tertiary-100{background:#ffa11d!important;background:var(--tertiary-100)!important}.sb-color-tertiary-100{color:#ffa11d!important;color:var(--tertiary-100)!important}.sb-bg-color-tertiary-400{background:#e55a28!important;background:var(--tertiary-400)!important}.sb-color-tertiary-400{color:#e55a28!important;color:var(--tertiary-400)!important}.sb-bg-color-red{background:#ff4558!important;background:var(--red)!important}.sb-color-red{color:#ff4558!important;color:var(--red)!important}.sb-bg-color-red-0{background:#fbccd1!important;background:var(--red-0)!important}.sb-color-red-0{color:#fbccd1!important;color:var(--red-0)!important}.sb-bg-color-red-100{background:#ff6979!important;background:var(--red-100)!important}.sb-color-red-100{color:#ff6979!important;color:var(--red-100)!important}.sb-bg-color-red-400{background:#ff4558!important;background:var(--red-400)!important}.sb-color-red-400{color:#ff4558!important;color:var(--red-400)!important}.sb-bg-color-info{background:#024f9d!important;background:var(--primary-400)!important}.sb-color-info{color:#024f9d!important;color:var(--primary-400)!important}.sb-bg-color-success{background:#07bc81!important;background:var(--secondary-200)!important}.sb-color-success{color:#07bc81!important;color:var(--secondary-200)!important}.sb-bg-color-warning{background:#e55a28!important;background:var(--tertiary-400)!important}.sb-color-warning{color:#e55a28!important;color:var(--tertiary-400)!important}.sb-bg-color-error{background:#ff4558!important;background:var(--red-400)!important}.sb-color-error{color:#ff4558!important;color:var(--red-400)!important}.sb-bg-color-white{background:#fff!important;background:var(--white)!important}.sb-color-white{color:#fff!important;color:var(--white)!important}.sb-bg-color-black{background:#000!important;background:var(--black)!important}.sb-color-black{color:#000!important;color:var(--black)!important}.sb-bg-white{background:#fff;background:var(--white)}.sb-bg-none{background:none!important}.color-3,.sb-text-gray-800{color:#333;color:var(--gray-800)}.sb-bg-color-black{background-color:#000;background-color:var(--black)}.bg-contain{background-position:50%;background-repeat:no-repeat;background-size:contain}.opacity0{opacity:0!important;opacity:var(--alpha0)!important}.opacity10{opacity:var(--alpha10)!important}.opacity20{opacity:var(--alpha20)!important}.opacity25{opacity:.25!important;opacity:var(--alpha25)!important}.opacity30{opacity:var(--alpha30)!important}.opacity40{opacity:var(--alpha40)!important}.opacity50{opacity:.5!important;opacity:var(--alpha50)!important}.opacity60{opacity:var(--alpha60)!important}.opacity70{opacity:var(--alpha70)!important}.opacity75{opacity:.75!important;opacity:var(--alpha75)!important}.opacity80{opacity:var(--alpha80)!important}.opacity90{opacity:var(--alpha90)!important}.opacity100{opacity:var(--alpha100)!important}.w-100{width:100%;max-width:100%}.w-90{width:90%;max-width:90%}.w-80{width:80%;max-width:80%}.w-75{width:75%;max-width:75%}.w-70{width:70%;max-width:70%}.w-60{width:60%;max-width:60%}.w-50{width:50%;max-width:50%}.w-40{width:40%;max-width:40%}.w-30{width:30%;max-width:30%}.w-25{width:25%;max-width:25%}.w-20{width:20%;max-width:20%}.w-auto{width:auto;max-width:auto}.h-100{height:100%;max-height:100%}.height-auto{height:auto!important}.sb-mw-100{max-width:100%!important}.min-height-auto{min-height:auto!important}:root{--font-stack-en:"Noto Sans","Noto Sans Devanagari","Noto Sans Tamil","Noto Sans Bengali","Noto Sans Malayalam","Noto Sans Gurmukhi","Noto Sans Gujarati","Noto Sans Telugu","Noto Sans Kannada","Noto Sans Oriya","Noto Nastaliq Urdu",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--font-stack-hi:"Noto Sans Devanagari","Noto Sans","Noto Sans Tamil","Noto Sans Bengali","Noto Sans Malayalam","Noto Sans Gurmukhi","Noto Sans Gujarati","Noto Sans Telugu","Noto Sans Kannada","Noto Sans Oriya","Noto Nastaliq Urdu",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--font-stack-ur:"Noto Sans","Noto Nastaliq Urdu","Noto Sans Devanagari","Noto Sans Tamil","Noto Sans Bengali","Noto Sans Malayalam","Noto Sans Gurmukhi","Noto Sans Gujarati","Noto Sans Telugu","Noto Sans Kannada","Noto Sans Oriya",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--blue:#024f9d;--green:#008840;--orange:#e55a28;--red:#ff4558;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--yellow:#ffc107;--teal:#20c997;--cyan:#17a2b8;--black:#000;--white:#fff;--gray-hs:0,0%;--gray:hsl(var(--gray-hs),20%);--gray-0:hsl(var(--gray-hs),95%);--gray-100:hsl(var(--gray-hs),80%);--gray-200:hsl(var(--gray-hs),60%);--gray-300:hsl(var(--gray-hs),59%);--gray-400:hsl(var(--gray-hs),40%);--gray-800:var(--gray);--primary-color:#024f9d;--secondary-color:#008840;--tertiary-color:#e55a28;--primary-0:#f3f7fa;--primary-100:#edf4f9;--primary-200:#80a7ce;--primary-250:#d3e7f4;--primary-300:#7ab4ee;--primary-400:var(--primary-color);--primary-600:#005391;--primary-800:#002e50;--secondary-0:#e1ffdf;--secondary-100:#00c786;--secondary-200:#07bc81;--secondary-400:var(--secondary-color);--tertiary-0:#feedd7;--tertiary-100:#ffa11d;--tertiary-400:var(--tertiary-color);--red-0:#fbccd1;--red-100:#ff6979;--red-400:var(--red);--info-color:var(--blue);--success-color:var(--green);--warning-color:var(--orange);--danger-color:var(--red);--body-background-color:var(--primary-0);--default-text-color:var(--gray-800);--bg-body:var(--primary-0);--body-color:var(--gray-800);--alpha0:0;--alpha25:0.25;--alpha50:0.5;--alpha75:0.75;--font-default-size:0.875rem;--font-size-base:var(--font-default-size);--font-weight-light:300;--font-weight-normal:400;--font-weight-bold:700;--font-weight-base:var(--font-weight-normal);--line-height-base:calc(var(--font-size-base) * 1.61803398875);--h1-font-size:2rem;--h2-font-size:1.75rem;--h3-font-size:1.5rem;--h4-font-size:1.2rem;--h5-font-size:1rem;--h6-font-size:var(--font-size-base);--font-size-lg:var(--h4-font-size);--font-size-md:var(--h5-font-size);--font-size-normal:var(--font-size-base);--font-size-sm:0.75rem;--font-size-xs:0.625rem;--p-font-size:var(--font-size-base);--base-font-size:0.875rem;--base-block-space:0.5rem;--icon-svg-xxs:0.75rem;--icon-svg-xs:calc(var(--base-block-space) * 2);--icon-svg-sm:calc(var(--base-block-space) * 3);--icon-svg-md:calc(var(--base-block-space) * 4);--icon-svg-lg:calc(var(--base-block-space) * 5);--icon-svg-xl:calc(var(--base-block-space) * 6);--rc-96C8DA:#96c8da;--rc-0076FE:#0076fe;--rc-E5EDF5:#e5edf5;--rc-7c7b7b:#7c7b7b;--rc-f5f5f5:#f5f5f5;--rc-fdfdfd:#fdfdfd;--rc-dedede:#dedede;--rc-F5F9FC:#f5f9fc;--rc-c4c4c4:#c4c4c4;--rc-d8d8d8:#d8d8d8;--rc-e9e5e5:#e9e5e5;--rc-dddddd:#ddd;--rc-7b86f4:#7b86f4;--rc-d0d0d0:#d0d0d0;--rc-5c8db7:#5c8db7;--rc-91aecc:#91aecc;--rc-f9f9f9:#f9f9f9;--rc-d4d3d3:#d4d3d3;--rc-FAFAFA:#fafafa;--rc-866A6A:#866a6a;--rc-979797:#979797;--rc-e0e1e2:#e0e1e2;--rc-00BD7F:#00bd7f;--rc-9F9F9F:#9f9f9f;--rc-F3F8FF:#f3f8ff;--rc-80A7CE:#80a7ce;--rc-9b9b9b:#9b9b9b;--rc-2ca58d:#2ca58d;--rc-007AFF:#007aff;--rc-bdbdbd:#bdbdbd;--rc-cecece:#cecece;--rc-2972a4:#2972a4;--rc-E0F1FD:#e0f1fd;--rc-C8D6EA:#c8d6ea;--rc-e2e3e5:#e2e3e5;--rc-BCBEC0:#bcbec0;--rc-d4d4d5:#d4d4d5;--rc-d4d8da:#d4d8da;--rc-bfe1cf:#bfe1cf;--rc-289fd9:#289fd9;--rc-e68900:#e68900;--rc-2f4272:#2f4272;--rc-e0e0e0:#e0e0e0;--rc-2361ff:#2361ff;--rc-ffb300:#ffb300;--rc-d8dee2:#d8dee2;--rc-252525:#252525;--rc-fcf2d6:#fcf2d6;--rc-add8e6:#add8e6;--rc-afd9e7:#afd9e7;--rc-D9E4F2:#d9e4f2;--rc-88B7E6:#88b7e6;--rc-4a4a4a:#4a4a4a;--rc-fff6f6:#fff6f6;--rc-f7f7f7:#f7f7f7;--rc-66c7f4:#66c7f4;--rc-1B4785:#1b4785;--rc-a9a9a9:#a9a9a9;--rc-1b1c1d:#1b1c1d;--rc-dededf:#dededf;--rc-aaaaaa:#aaa;--rc-042D55:#042d55;--rc-eeeeee:#eee;--rc-bbbbbb:#bbb;--rc-009D53:#009d53;--rc-E0EFFF:#e0efff;--rc-196DAB:#196dab;--rc-c2c2c2:#c2c2c2;--rc-e5e5e5:#e5e5e5;--rc-c3c3c3:#c3c3c3;--rc-00abc7:#00abc7;--rc-FCE6E6:#fce6e6;--rc-DECACA:#decaca;--rc-424242:#424242;--rc-F5D7D7:#f5d7d7;--rc-F7FFF5:#f7fff5;--rc-D3DED1:#d3ded1;--rc-EBF6E0:#ebf6e0;--rc-F6F6F6:#f6f6f6;--rc-33B6CC:#33b6cc;--rc-2dadc2:#2dadc2;--rc-0fbad6:#0fbad6;--rc-f7ffec:#f7ffec;--rc-d2ddc7:#d2ddc7;--rc-ffe1e1:#ffe1e1;--rc-e6c8c8:#e6c8c8;--rc-f56b56:#f56b56;--rc-dc523d:#dc523d;--rc-e65c47:#e65c47;--rc-565c70:#565c70;--rc-rgba-black:0,0,0;--rc-rgba-white:255,255,255;--rc-rgba-gray:51,51,51;--rc-rgba-primary:2,79,157;--rc-rgba-primary-300:41,114,164;--rc-rgba-gray-300:34,36,38;--rc-rgba-866a6a:134,106,106;--rc-rgba-d0d0d0:208,208,208;--rc-rgba-7b86f4:123,134,244;--rc-rgba-C8D6EA:200,214,234;--primary-theme:#ffd954;--sbt-theme-bg:var(--primary-theme);--sbt-header-bg:var(--primary-theme);--sbt-body-bg:#f2f2ea;--sbt-body-bg2:#e9e8d9;--sbt-primary-bg:var(--primary-theme);--sbt-border-chapter:#e4e8ee;--lazyload-bg:#f6f7f8;--grey-nuance-lighter:#eee;--grey-nuance-darker:#ddd;--fade-grey:#e8e8e8}.sb-h1,h1{font-size:2rem;font-size:var(--h1-font-size);line-height:calc(2rem * $line-height-value);line-height:calc(var(--h1-font-size) * $line-height-value);margin:0;padding:0}.sb-h2,h2{font-size:1.75rem;font-size:var(--h2-font-size);line-height:calc(1.75rem * $line-height-value);line-height:calc(var(--h2-font-size) * $line-height-value);margin:0;padding:0}.sb-h3,h3{font-size:1.5rem;font-size:var(--h3-font-size);line-height:calc(1.5rem * $line-height-value);line-height:calc(var(--h3-font-size) * $line-height-value);margin:0;padding:0}.sb-h4,h4{font-size:1.2rem;font-size:var(--h4-font-size);line-height:calc(1.2rem * $line-height-value);line-height:calc(var(--h4-font-size) * $line-height-value);margin:0;padding:0}.sb-h5,h5{font-size:1rem;font-size:var(--h5-font-size);line-height:calc(1rem * $line-height-value);line-height:calc(var(--h5-font-size) * $line-height-value);margin:0;padding:0}.sb-h6,h6{font-size:.875rem;font-size:var(--h6-font-size);line-height:calc(.875rem * $line-height-value);line-height:calc(var(--h6-font-size) * $line-height-value);margin:0;padding:0}.fmedium{font-size:1rem!important;font-size:var(--font-size-md)!important}.fnormal{font-size:.875rem!important;font-size:var(--font-size-normal)!important}.fsmall{font-size:.75rem!important;font-size:var(--font-size-sm)!important}.fxsmall{font-size:.625rem!important;font-size:var(--font-size-xs)!important}.fs-0-785{font-size:.785rem!important}.fs-0-92{font-size:.9286rem!important}.fs-1{font-size:1rem!important}.fs-1-143{font-size:1.143rem!important}.fs-1-16{font-size:1.16rem!important}.fs-1-286{font-size:1.286rem!important}.fs-1-3{font-size:1.3rem!important}.fs-1-429{font-size:1.429rem!important}.fs-1-5{font-size:1.5rem!important}.fs-1-7{font-size:1.7rem!important}.fs-2{font-size:2rem!important}.fs-2-5{font-size:2.5rem!important}.fs-2-57{font-size:2.571rem!important}.fs-3{font-size:3rem!important}.fs-3-5{font-size:3.5rem!important}.text-capitalize{text-transform:capitalize!important}.text-uppercase{text-transform:uppercase!important}.text-lowercase,.text-sentencecase{text-transform:lowercase!important}.text-inherit{text-transform:inherit!important}.text-sentencecase:first-letter{text-transform:uppercase!important}.font-weight-bold{font-weight:700!important}.font-weight-normal{font-weight:400!important}.break-word{word-break:break-word!important}.break-all{word-break:break-all!important}.cursor-pointer{cursor:pointer!important}.cursor-text{cursor:text!important}.va-bottom{vertical-align:bottom!important}.va-middle{vertical-align:middle!important}.va-top{vertical-align:top!important}.sb-para,p{font-size:.875rem;font-size:var(--p-font-size);line-height:calc(.875rem * 1.61803398875);line-height:calc(var(--p-font-size) * 1.61803398875)}.font-italic{font-style:italic}a,a:hover{color:#024f9d;color:var(--primary-color)}a:focus{outline:0}.white-space-nowrap{white-space:nowrap!important}.text-center{text-align:center!important}.text-right{text-align:right!important}.text-left,html[dir=rtl] .text-right{text-align:left!important}html[dir=rtl] .text-left{text-align:right!important}.text-underline{text-decoration:underline!important}.lineHeight-normal{line-height:normal!important}.sb__ellipsis{-webkit-box-orient:vertical;display:-webkit-box;-webkit-line-clamp:1;overflow:hidden;text-overflow:ellipsis;word-break:break-word}.sb__ellipsis--two{-webkit-line-clamp:2}.sb__ellipsis--three{-webkit-line-clamp:3}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;cursor:pointer}.d-inline-block{display:inline-block!important}.d-block,.show{display:block!important}.d-flex,.flex-ai-jc-center,.flex-jc-ai-center{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none,.hide{display:none!important}@media only screen and (max-width: 1023px){[class*="computer only"]:not(.mobile),[class*="large screen only"]:not(.mobile),[class*="mobile hidden"],[class*="or lower hidden"],[class*="tablet only"]:not(.mobile),[class*="widescreen only"]:not(.mobile){display:none!important}}@media only screen and (min-width: 1024px){[class*="computer hidden"],[class*="large screen only"]:not(.computer),[class*="mobile only"]:not(.computer),[class*="or lower hidden"]:not(.tablet):not(.mobile),[class*="tablet only"]:not(.computer),[class*="widescreen only"]:not(.computer){display:none!important}}.relative{position:relative!important}.absolute{position:absolute!important}.fixed{position:fixed!important}.right-0{right:0!important}.left-0,html[dir=rtl] .right-0{left:0!important}html[dir=rtl] .left-0{right:0!important}.top-50{top:50%!important;transform:translateY(-50%)}.bottom-0{bottom:0!important}.bottom-5{bottom:5px!important}.sb-sticky-bottom,.sb-sticky-top{position:sticky;z-index:999999}.sb-sticky-bottom{bottom:0}.sb-sticky-top{top:0}.zindex-1{z-index:1!important}.zindex-2{z-index:2!important}.zindex-9{z-index:9!important}.zindex-99{z-index:99!important}.zindex-999{z-index:999!important}.zindex-9999{z-index:9999!important}.zindex-99999{z-index:99999!important}.m-0{margin:0!important}.mt-0{margin-top:0!important}.mb-0,.my-0{margin-bottom:0!important}.my-0{margin-top:0!important}.mx-0{margin-right:0!important}.ml-0,.mx-0,html[dir=rtl] .ml-0{margin-left:0!important}.mr-0,html[dir=rtl] .ml-0,html[dir=rtl] .mr-0{margin-right:0!important}html[dir=rtl] .mr-0{margin-left:0!important}.m-2{margin:.125rem!important}.mt-2{margin-top:.125rem!important}.mb-2,.my-2{margin-bottom:.125rem!important}.my-2{margin-top:.125rem!important}.mx-2{margin-right:.125rem!important}.ml-2,.mx-2{margin-left:.125rem!important}html[dir=rtl] .ml-2{margin-left:0!important}.mr-2,html[dir=rtl] .ml-2{margin-right:.125rem!important}html[dir=rtl] .mr-2{margin-left:.125rem!important;margin-right:0!important}.m-3{margin:.1875rem!important}.mt-3{margin-top:.1875rem!important}.mb-3,.my-3{margin-bottom:.1875rem!important}.my-3{margin-top:.1875rem!important}.mx-3{margin-right:.1875rem!important}.ml-3,.mx-3{margin-left:.1875rem!important}html[dir=rtl] .ml-3{margin-left:0!important}.mr-3,html[dir=rtl] .ml-3{margin-right:.1875rem!important}html[dir=rtl] .mr-3{margin-left:.1875rem!important;margin-right:0!important}.m-4{margin:.25rem!important}.mt-4{margin-top:.25rem!important}.mb-4,.my-4{margin-bottom:.25rem!important}.my-4{margin-top:.25rem!important}.mx-4{margin-right:.25rem!important}.ml-4,.mx-4{margin-left:.25rem!important}html[dir=rtl] .ml-4{margin-left:0!important}.mr-4,html[dir=rtl] .ml-4{margin-right:.25rem!important}html[dir=rtl] .mr-4{margin-left:.25rem!important;margin-right:0!important}.m-5{margin:.3125rem!important}.mt-5{margin-top:.3125rem!important}.mb-5,.my-5{margin-bottom:.3125rem!important}.my-5{margin-top:.3125rem!important}.mx-5{margin-right:.3125rem!important}.ml-5,.mx-5{margin-left:.3125rem!important}html[dir=rtl] .ml-5{margin-left:0!important}.mr-5,html[dir=rtl] .ml-5{margin-right:.3125rem!important}html[dir=rtl] .mr-5{margin-left:.3125rem!important;margin-right:0!important}.m-8{margin:.5rem!important}.mt-8{margin-top:.5rem!important}.mb-8,.my-8{margin-bottom:.5rem!important}.my-8{margin-top:.5rem!important}.mx-8{margin-right:.5rem!important}.ml-8,.mx-8{margin-left:.5rem!important}html[dir=rtl] .ml-8{margin-left:0!important}.mr-8,html[dir=rtl] .ml-8{margin-right:.5rem!important}html[dir=rtl] .mr-8{margin-left:.5rem!important;margin-right:0!important}.m-10{margin:.625rem!important}.mt-10{margin-top:.625rem!important}.mb-10,.my-10{margin-bottom:.625rem!important}.my-10{margin-top:.625rem!important}.mx-10{margin-right:.625rem!important}.ml-10,.mx-10{margin-left:.625rem!important}html[dir=rtl] .ml-10{margin-left:0!important}.mr-10,html[dir=rtl] .ml-10{margin-right:.625rem!important}html[dir=rtl] .mr-10{margin-left:.625rem!important;margin-right:0!important}.m-12{margin:.75rem!important}.mt-12{margin-top:.75rem!important}.mb-12,.my-12{margin-bottom:.75rem!important}.my-12{margin-top:.75rem!important}.mx-12{margin-right:.75rem!important}.ml-12,.mx-12{margin-left:.75rem!important}html[dir=rtl] .ml-12{margin-left:0!important}.mr-12,html[dir=rtl] .ml-12{margin-right:.75rem!important}html[dir=rtl] .mr-12{margin-left:.75rem!important;margin-right:0!important}.m-15{margin:.9375rem!important}.mt-15{margin-top:.9375rem!important}.mb-15,.my-15{margin-bottom:.9375rem!important}.my-15{margin-top:.9375rem!important}.mx-15{margin-right:.9375rem!important}.ml-15,.mx-15{margin-left:.9375rem!important}html[dir=rtl] .ml-15{margin-left:0!important}.mr-15,html[dir=rtl] .ml-15{margin-right:.9375rem!important}html[dir=rtl] .mr-15{margin-left:.9375rem!important;margin-right:0!important}.m-16{margin:1rem!important}.mt-16{margin-top:1rem!important}.mb-16,.my-16{margin-bottom:1rem!important}.my-16{margin-top:1rem!important}.mx-16{margin-right:1rem!important}.ml-16,.mx-16{margin-left:1rem!important}html[dir=rtl] .ml-16{margin-left:0!important}.mr-16,html[dir=rtl] .ml-16{margin-right:1rem!important}html[dir=rtl] .mr-16{margin-left:1rem!important;margin-right:0!important}.m-20{margin:1.25rem!important}.mt-20{margin-top:1.25rem!important}.mb-20,.my-20{margin-bottom:1.25rem!important}.my-20{margin-top:1.25rem!important}.mx-20{margin-right:1.25rem!important}.ml-20,.mx-20{margin-left:1.25rem!important}html[dir=rtl] .ml-20{margin-left:0!important}.mr-20,html[dir=rtl] .ml-20{margin-right:1.25rem!important}html[dir=rtl] .mr-20{margin-left:1.25rem!important;margin-right:0!important}.m-24{margin:1.5rem!important}.mt-24{margin-top:1.5rem!important}.mb-24,.my-24{margin-bottom:1.5rem!important}.my-24{margin-top:1.5rem!important}.mx-24{margin-right:1.5rem!important}.ml-24,.mx-24{margin-left:1.5rem!important}html[dir=rtl] .ml-24{margin-left:0!important}.mr-24,html[dir=rtl] .ml-24{margin-right:1.5rem!important}html[dir=rtl] .mr-24{margin-left:1.5rem!important;margin-right:0!important}.m-30{margin:1.875rem!important}.mt-30{margin-top:1.875rem!important}.mb-30,.my-30{margin-bottom:1.875rem!important}.my-30{margin-top:1.875rem!important}.mx-30{margin-right:1.875rem!important}.ml-30,.mx-30{margin-left:1.875rem!important}html[dir=rtl] .ml-30{margin-left:0!important}.mr-30,html[dir=rtl] .ml-30{margin-right:1.875rem!important}html[dir=rtl] .mr-30{margin-left:1.875rem!important;margin-right:0!important}.m-32{margin:2rem!important}.mt-32{margin-top:2rem!important}.mb-32,.my-32{margin-bottom:2rem!important}.my-32{margin-top:2rem!important}.mx-32{margin-right:2rem!important}.ml-32,.mx-32{margin-left:2rem!important}html[dir=rtl] .ml-32{margin-left:0!important}.mr-32,html[dir=rtl] .ml-32{margin-right:2rem!important}html[dir=rtl] .mr-32{margin-left:2rem!important;margin-right:0!important}.m-40{margin:2.5rem!important}.mt-40{margin-top:2.5rem!important}.mb-40,.my-40{margin-bottom:2.5rem!important}.my-40{margin-top:2.5rem!important}.mx-40{margin-right:2.5rem!important}.ml-40,.mx-40{margin-left:2.5rem!important}html[dir=rtl] .ml-40{margin-left:0!important}.mr-40,html[dir=rtl] .ml-40{margin-right:2.5rem!important}html[dir=rtl] .mr-40{margin-left:2.5rem!important;margin-right:0!important}.m-48{margin:3rem!important}.mt-48{margin-top:3rem!important}.mb-48,.my-48{margin-bottom:3rem!important}.my-48{margin-top:3rem!important}.mx-48{margin-right:3rem!important}.ml-48,.mx-48{margin-left:3rem!important}html[dir=rtl] .ml-48{margin-left:0!important}.mr-48,html[dir=rtl] .ml-48{margin-right:3rem!important}html[dir=rtl] .mr-48{margin-left:3rem!important;margin-right:0!important}.m-50{margin:3.125rem!important}.mt-50{margin-top:3.125rem!important}.mb-50,.my-50{margin-bottom:3.125rem!important}.my-50{margin-top:3.125rem!important}.mx-50{margin-right:3.125rem!important}.ml-50,.mx-50{margin-left:3.125rem!important}html[dir=rtl] .ml-50{margin-left:0!important}.mr-50,html[dir=rtl] .ml-50{margin-right:3.125rem!important}html[dir=rtl] .mr-50{margin-left:3.125rem!important;margin-right:0!important}.m-52{margin:3.25rem!important}.mt-52{margin-top:3.25rem!important}.mb-52,.my-52{margin-bottom:3.25rem!important}.my-52{margin-top:3.25rem!important}.mx-52{margin-right:3.25rem!important}.ml-52,.mx-52{margin-left:3.25rem!important}html[dir=rtl] .ml-52{margin-left:0!important}.mr-52,html[dir=rtl] .ml-52{margin-right:3.25rem!important}html[dir=rtl] .mr-52{margin-left:3.25rem!important;margin-right:0!important}.m-56{margin:3.5rem!important}.mt-56{margin-top:3.5rem!important}.mb-56,.my-56{margin-bottom:3.5rem!important}.my-56{margin-top:3.5rem!important}.mx-56{margin-right:3.5rem!important}.ml-56,.mx-56{margin-left:3.5rem!important}html[dir=rtl] .ml-56{margin-left:0!important}.mr-56,html[dir=rtl] .ml-56{margin-right:3.5rem!important}html[dir=rtl] .mr-56{margin-left:3.5rem!important;margin-right:0!important}.m-60{margin:3.75rem!important}.mt-60{margin-top:3.75rem!important}.mb-60,.my-60{margin-bottom:3.75rem!important}.my-60{margin-top:3.75rem!important}.mx-60{margin-right:3.75rem!important}.ml-60,.mx-60{margin-left:3.75rem!important}html[dir=rtl] .ml-60{margin-left:0!important}.mr-60,html[dir=rtl] .ml-60{margin-right:3.75rem!important}html[dir=rtl] .mr-60{margin-left:3.75rem!important;margin-right:0!important}.m-64{margin:4rem!important}.mt-64{margin-top:4rem!important}.mb-64,.my-64{margin-bottom:4rem!important}.my-64{margin-top:4rem!important}.mx-64{margin-right:4rem!important}.ml-64,.mx-64{margin-left:4rem!important}html[dir=rtl] .ml-64{margin-left:0!important}.mr-64,html[dir=rtl] .ml-64{margin-right:4rem!important}html[dir=rtl] .mr-64{margin-left:4rem!important;margin-right:0!important}.m-68{margin:4.25rem!important}.mt-68{margin-top:4.25rem!important}.mb-68,.my-68{margin-bottom:4.25rem!important}.my-68{margin-top:4.25rem!important}.mx-68{margin-right:4.25rem!important}.ml-68,.mx-68{margin-left:4.25rem!important}html[dir=rtl] .ml-68{margin-left:0!important}.mr-68,html[dir=rtl] .ml-68{margin-right:4.25rem!important}html[dir=rtl] .mr-68{margin-left:4.25rem!important;margin-right:0!important}.m-72{margin:4.5rem!important}.mt-72{margin-top:4.5rem!important}.mb-72,.my-72{margin-bottom:4.5rem!important}.my-72{margin-top:4.5rem!important}.mx-72{margin-right:4.5rem!important}.ml-72,.mx-72{margin-left:4.5rem!important}html[dir=rtl] .ml-72{margin-left:0!important}.mr-72,html[dir=rtl] .ml-72{margin-right:4.5rem!important}html[dir=rtl] .mr-72{margin-left:4.5rem!important;margin-right:0!important}.m-76{margin:4.75rem!important}.mt-76{margin-top:4.75rem!important}.mb-76,.my-76{margin-bottom:4.75rem!important}.my-76{margin-top:4.75rem!important}.mx-76{margin-right:4.75rem!important}.ml-76,.mx-76{margin-left:4.75rem!important}html[dir=rtl] .ml-76{margin-left:0!important}.mr-76,html[dir=rtl] .ml-76{margin-right:4.75rem!important}html[dir=rtl] .mr-76{margin-left:4.75rem!important;margin-right:0!important}.m-80{margin:5rem!important}.mt-80{margin-top:5rem!important}.mb-80,.my-80{margin-bottom:5rem!important}.my-80{margin-top:5rem!important}.mx-80{margin-right:5rem!important}.ml-80,.mx-80{margin-left:5rem!important}html[dir=rtl] .ml-80{margin-left:0!important}.mr-80,html[dir=rtl] .ml-80{margin-right:5rem!important}html[dir=rtl] .mr-80{margin-left:5rem!important;margin-right:0!important}.m-84{margin:5.25rem!important}.mt-84{margin-top:5.25rem!important}.mb-84,.my-84{margin-bottom:5.25rem!important}.my-84{margin-top:5.25rem!important}.mx-84{margin-right:5.25rem!important}.ml-84,.mx-84{margin-left:5.25rem!important}html[dir=rtl] .ml-84{margin-left:0!important}.mr-84,html[dir=rtl] .ml-84{margin-right:5.25rem!important}html[dir=rtl] .mr-84{margin-left:5.25rem!important;margin-right:0!important}.m-88{margin:5.5rem!important}.mt-88{margin-top:5.5rem!important}.mb-88,.my-88{margin-bottom:5.5rem!important}.my-88{margin-top:5.5rem!important}.mx-88{margin-right:5.5rem!important}.ml-88,.mx-88{margin-left:5.5rem!important}html[dir=rtl] .ml-88{margin-left:0!important}.mr-88,html[dir=rtl] .ml-88{margin-right:5.5rem!important}html[dir=rtl] .mr-88{margin-left:5.5rem!important;margin-right:0!important}.m-96{margin:6rem!important}.mt-96{margin-top:6rem!important}.mb-96,.my-96{margin-bottom:6rem!important}.my-96{margin-top:6rem!important}.mx-96{margin-right:6rem!important}.ml-96,.mx-96{margin-left:6rem!important}html[dir=rtl] .ml-96{margin-left:0!important}.mr-96,html[dir=rtl] .ml-96{margin-right:6rem!important}html[dir=rtl] .mr-96{margin-left:6rem!important;margin-right:0!important}.m-192{margin:12rem!important}.mt-192{margin-top:12rem!important}.mb-192,.my-192{margin-bottom:12rem!important}.my-192{margin-top:12rem!important}.mx-192{margin-right:12rem!important}.ml-192,.mx-192{margin-left:12rem!important}html[dir=rtl] .ml-192{margin-left:0!important}.mr-192,html[dir=rtl] .ml-192{margin-right:12rem!important}html[dir=rtl] .mr-192{margin-left:12rem!important;margin-right:0!important}.m-auto{margin:0 auto!important}.mt-auto{margin-top:auto!important}.mb-auto{margin-bottom:auto!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.ml-auto{margin-left:auto!important}html[dir=rtl] .ml-auto{margin-left:0!important}.mr-auto,html[dir=rtl] .ml-auto{margin-right:auto!important}html[dir=rtl] .mr-auto{margin-left:auto!important;margin-right:0!important}@media screen and (min-width: 768px){.mx--20{margin:0 -1.25rem!important}}.p-0{padding:0!important}.pt-0{padding-top:0!important}.pb-0,.py-0{padding-bottom:0!important}.py-0{padding-top:0!important}.px-0{padding-right:0!important}.pl-0,.px-0,html[dir=rtl] .pl-0{padding-left:0!important}.pr-0,html[dir=rtl] .pl-0,html[dir=rtl] .pr-0{padding-right:0!important}html[dir=rtl] .pr-0{padding-left:0!important}.p-2{padding:.125rem!important}.pt-2{padding-top:.125rem!important}.pb-2,.py-2{padding-bottom:.125rem!important}.py-2{padding-top:.125rem!important}.px-2{padding-right:.125rem!important}.pl-2,.px-2{padding-left:.125rem!important}html[dir=rtl] .pl-2{padding-left:0!important}.pr-2,html[dir=rtl] .pl-2{padding-right:.125rem!important}html[dir=rtl] .pr-2{padding-left:.125rem!important;padding-right:0!important}.p-3{padding:.1875rem!important}.pt-3{padding-top:.1875rem!important}.pb-3,.py-3{padding-bottom:.1875rem!important}.py-3{padding-top:.1875rem!important}.px-3{padding-right:.1875rem!important}.pl-3,.px-3{padding-left:.1875rem!important}html[dir=rtl] .pl-3{padding-left:0!important}.pr-3,html[dir=rtl] .pl-3{padding-right:.1875rem!important}html[dir=rtl] .pr-3{padding-left:.1875rem!important;padding-right:0!important}.p-4{padding:.25rem!important}.pt-4{padding-top:.25rem!important}.pb-4,.py-4{padding-bottom:.25rem!important}.py-4{padding-top:.25rem!important}.px-4{padding-right:.25rem!important}.pl-4,.px-4{padding-left:.25rem!important}html[dir=rtl] .pl-4{padding-left:0!important}.pr-4,html[dir=rtl] .pl-4{padding-right:.25rem!important}html[dir=rtl] .pr-4{padding-left:.25rem!important;padding-right:0!important}.p-5{padding:.3125rem!important}.pt-5{padding-top:.3125rem!important}.pb-5,.py-5{padding-bottom:.3125rem!important}.py-5{padding-top:.3125rem!important}.px-5{padding-right:.3125rem!important}.pl-5,.px-5{padding-left:.3125rem!important}html[dir=rtl] .pl-5{padding-left:0!important}.pr-5,html[dir=rtl] .pl-5{padding-right:.3125rem!important}html[dir=rtl] .pr-5{padding-left:.3125rem!important;padding-right:0!important}.p-8{padding:.5rem!important}.pt-8{padding-top:.5rem!important}.pb-8,.py-8{padding-bottom:.5rem!important}.py-8{padding-top:.5rem!important}.px-8{padding-right:.5rem!important}.pl-8,.px-8{padding-left:.5rem!important}html[dir=rtl] .pl-8{padding-left:0!important}.pr-8,html[dir=rtl] .pl-8{padding-right:.5rem!important}html[dir=rtl] .pr-8{padding-left:.5rem!important;padding-right:0!important}.p-10{padding:.625rem!important}.pt-10{padding-top:.625rem!important}.pb-10,.py-10{padding-bottom:.625rem!important}.py-10{padding-top:.625rem!important}.px-10{padding-right:.625rem!important}.pl-10,.px-10{padding-left:.625rem!important}html[dir=rtl] .pl-10{padding-left:0!important}.pr-10,html[dir=rtl] .pl-10{padding-right:.625rem!important}html[dir=rtl] .pr-10{padding-left:.625rem!important;padding-right:0!important}.p-12{padding:.75rem!important}.pt-12{padding-top:.75rem!important}.pb-12,.py-12{padding-bottom:.75rem!important}.py-12{padding-top:.75rem!important}.px-12{padding-right:.75rem!important}.pl-12,.px-12{padding-left:.75rem!important}html[dir=rtl] .pl-12{padding-left:0!important}.pr-12,html[dir=rtl] .pl-12{padding-right:.75rem!important}html[dir=rtl] .pr-12{padding-left:.75rem!important;padding-right:0!important}.p-15{padding:.9375rem!important}.pt-15{padding-top:.9375rem!important}.pb-15,.py-15{padding-bottom:.9375rem!important}.py-15{padding-top:.9375rem!important}.px-15{padding-right:.9375rem!important}.pl-15,.px-15{padding-left:.9375rem!important}html[dir=rtl] .pl-15{padding-left:0!important}.pr-15,html[dir=rtl] .pl-15{padding-right:.9375rem!important}html[dir=rtl] .pr-15{padding-left:.9375rem!important;padding-right:0!important}.p-16{padding:1rem!important}.pt-16{padding-top:1rem!important}.pb-16,.py-16{padding-bottom:1rem!important}.py-16{padding-top:1rem!important}.px-16{padding-right:1rem!important}.pl-16,.px-16{padding-left:1rem!important}html[dir=rtl] .pl-16{padding-left:0!important}.pr-16,html[dir=rtl] .pl-16{padding-right:1rem!important}html[dir=rtl] .pr-16{padding-left:1rem!important;padding-right:0!important}.p-20{padding:1.25rem!important}.pt-20{padding-top:1.25rem!important}.pb-20,.py-20{padding-bottom:1.25rem!important}.py-20{padding-top:1.25rem!important}.px-20{padding-right:1.25rem!important}.pl-20,.px-20{padding-left:1.25rem!important}html[dir=rtl] .pl-20{padding-left:0!important}.pr-20,html[dir=rtl] .pl-20{padding-right:1.25rem!important}html[dir=rtl] .pr-20{padding-left:1.25rem!important;padding-right:0!important}.p-24{padding:1.5rem!important}.pt-24{padding-top:1.5rem!important}.pb-24,.py-24{padding-bottom:1.5rem!important}.py-24{padding-top:1.5rem!important}.px-24{padding-right:1.5rem!important}.pl-24,.px-24{padding-left:1.5rem!important}html[dir=rtl] .pl-24{padding-left:0!important}.pr-24,html[dir=rtl] .pl-24{padding-right:1.5rem!important}html[dir=rtl] .pr-24{padding-left:1.5rem!important;padding-right:0!important}.p-30{padding:1.875rem!important}.pt-30{padding-top:1.875rem!important}.pb-30,.py-30{padding-bottom:1.875rem!important}.py-30{padding-top:1.875rem!important}.px-30{padding-right:1.875rem!important}.pl-30,.px-30{padding-left:1.875rem!important}html[dir=rtl] .pl-30{padding-left:0!important}.pr-30,html[dir=rtl] .pl-30{padding-right:1.875rem!important}html[dir=rtl] .pr-30{padding-left:1.875rem!important;padding-right:0!important}.p-32{padding:2rem!important}.pt-32{padding-top:2rem!important}.pb-32,.py-32{padding-bottom:2rem!important}.py-32{padding-top:2rem!important}.px-32{padding-right:2rem!important}.pl-32,.px-32{padding-left:2rem!important}html[dir=rtl] .pl-32{padding-left:0!important}.pr-32,html[dir=rtl] .pl-32{padding-right:2rem!important}html[dir=rtl] .pr-32{padding-left:2rem!important;padding-right:0!important}.p-40{padding:2.5rem!important}.pt-40{padding-top:2.5rem!important}.pb-40,.py-40{padding-bottom:2.5rem!important}.py-40{padding-top:2.5rem!important}.px-40{padding-right:2.5rem!important}.pl-40,.px-40{padding-left:2.5rem!important}html[dir=rtl] .pl-40{padding-left:0!important}.pr-40,html[dir=rtl] .pl-40{padding-right:2.5rem!important}html[dir=rtl] .pr-40{padding-left:2.5rem!important;padding-right:0!important}.p-48{padding:3rem!important}.pt-48{padding-top:3rem!important}.pb-48,.py-48{padding-bottom:3rem!important}.py-48{padding-top:3rem!important}.px-48{padding-right:3rem!important}.pl-48,.px-48{padding-left:3rem!important}html[dir=rtl] .pl-48{padding-left:0!important}.pr-48,html[dir=rtl] .pl-48{padding-right:3rem!important}html[dir=rtl] .pr-48{padding-left:3rem!important;padding-right:0!important}.p-52{padding:3.25rem!important}.pt-52{padding-top:3.25rem!important}.pb-52,.py-52{padding-bottom:3.25rem!important}.py-52{padding-top:3.25rem!important}.px-52{padding-right:3.25rem!important}.pl-52,.px-52{padding-left:3.25rem!important}html[dir=rtl] .pl-52{padding-left:0!important}.pr-52,html[dir=rtl] .pl-52{padding-right:3.25rem!important}html[dir=rtl] .pr-52{padding-left:3.25rem!important;padding-right:0!important}.p-56{padding:3.5rem!important}.pt-56{padding-top:3.5rem!important}.pb-56,.py-56{padding-bottom:3.5rem!important}.py-56{padding-top:3.5rem!important}.px-56{padding-right:3.5rem!important}.pl-56,.px-56{padding-left:3.5rem!important}html[dir=rtl] .pl-56{padding-left:0!important}.pr-56,html[dir=rtl] .pl-56{padding-right:3.5rem!important}html[dir=rtl] .pr-56{padding-left:3.5rem!important;padding-right:0!important}.p-60{padding:3.75rem!important}.pt-60{padding-top:3.75rem!important}.pb-60,.py-60{padding-bottom:3.75rem!important}.py-60{padding-top:3.75rem!important}.px-60{padding-right:3.75rem!important}.pl-60,.px-60{padding-left:3.75rem!important}html[dir=rtl] .pl-60{padding-left:0!important}.pr-60,html[dir=rtl] .pl-60{padding-right:3.75rem!important}html[dir=rtl] .pr-60{padding-left:3.75rem!important;padding-right:0!important}.p-64{padding:4rem!important}.pt-64{padding-top:4rem!important}.pb-64,.py-64{padding-bottom:4rem!important}.py-64{padding-top:4rem!important}.px-64{padding-right:4rem!important}.pl-64,.px-64{padding-left:4rem!important}html[dir=rtl] .pl-64{padding-left:0!important}.pr-64,html[dir=rtl] .pl-64{padding-right:4rem!important}html[dir=rtl] .pr-64{padding-left:4rem!important;padding-right:0!important}.p-68{padding:4.25rem!important}.pt-68{padding-top:4.25rem!important}.pb-68,.py-68{padding-bottom:4.25rem!important}.py-68{padding-top:4.25rem!important}.px-68{padding-right:4.25rem!important}.pl-68,.px-68{padding-left:4.25rem!important}html[dir=rtl] .pl-68{padding-left:0!important}.pr-68,html[dir=rtl] .pl-68{padding-right:4.25rem!important}html[dir=rtl] .pr-68{padding-left:4.25rem!important;padding-right:0!important}.p-72{padding:4.5rem!important}.pt-72{padding-top:4.5rem!important}.pb-72,.py-72{padding-bottom:4.5rem!important}.py-72{padding-top:4.5rem!important}.px-72{padding-right:4.5rem!important}.pl-72,.px-72{padding-left:4.5rem!important}html[dir=rtl] .pl-72{padding-left:0!important}.pr-72,html[dir=rtl] .pl-72{padding-right:4.5rem!important}html[dir=rtl] .pr-72{padding-left:4.5rem!important;padding-right:0!important}.p-76{padding:4.75rem!important}.pt-76{padding-top:4.75rem!important}.pb-76,.py-76{padding-bottom:4.75rem!important}.py-76{padding-top:4.75rem!important}.px-76{padding-right:4.75rem!important}.pl-76,.px-76{padding-left:4.75rem!important}html[dir=rtl] .pl-76{padding-left:0!important}.pr-76,html[dir=rtl] .pl-76{padding-right:4.75rem!important}html[dir=rtl] .pr-76{padding-left:4.75rem!important;padding-right:0!important}.p-80{padding:5rem!important}.pt-80{padding-top:5rem!important}.pb-80,.py-80{padding-bottom:5rem!important}.py-80{padding-top:5rem!important}.px-80{padding-right:5rem!important}.pl-80,.px-80{padding-left:5rem!important}html[dir=rtl] .pl-80{padding-left:0!important}.pr-80,html[dir=rtl] .pl-80{padding-right:5rem!important}html[dir=rtl] .pr-80{padding-left:5rem!important;padding-right:0!important}.p-84{padding:5.25rem!important}.pt-84{padding-top:5.25rem!important}.pb-84,.py-84{padding-bottom:5.25rem!important}.py-84{padding-top:5.25rem!important}.px-84{padding-right:5.25rem!important}.pl-84,.px-84{padding-left:5.25rem!important}html[dir=rtl] .pl-84{padding-left:0!important}.pr-84,html[dir=rtl] .pl-84{padding-right:5.25rem!important}html[dir=rtl] .pr-84{padding-left:5.25rem!important;padding-right:0!important}.p-88{padding:5.5rem!important}.pt-88{padding-top:5.5rem!important}.pb-88,.py-88{padding-bottom:5.5rem!important}.py-88{padding-top:5.5rem!important}.px-88{padding-right:5.5rem!important}.pl-88,.px-88{padding-left:5.5rem!important}html[dir=rtl] .pl-88{padding-left:0!important}.pr-88,html[dir=rtl] .pl-88{padding-right:5.5rem!important}html[dir=rtl] .pr-88{padding-left:5.5rem!important;padding-right:0!important}.p-96{padding:6rem!important}.pt-96{padding-top:6rem!important}.pb-96,.py-96{padding-bottom:6rem!important}.py-96{padding-top:6rem!important}.px-96{padding-right:6rem!important}.pl-96,.px-96{padding-left:6rem!important}html[dir=rtl] .pl-96{padding-left:0!important}.pr-96,html[dir=rtl] .pl-96{padding-right:6rem!important}html[dir=rtl] .pr-96{padding-left:6rem!important;padding-right:0!important}.p-192{padding:12rem!important}.pt-192{padding-top:12rem!important}.pb-192,.py-192{padding-bottom:12rem!important}.py-192{padding-top:12rem!important}.px-192{padding-right:12rem!important}.pl-192,.px-192{padding-left:12rem!important}html[dir=rtl] .pl-192{padding-left:0!important}.pr-192,html[dir=rtl] .pl-192{padding-right:12rem!important}html[dir=rtl] .pr-192{padding-left:12rem!important;padding-right:0!important}@media screen and (min-width: 768px){.px--20{padding:0 -1.25rem}}.o-x-auto{overflow-x:auto!important}.o-x-visible{overflow-x:visible!important}.o-x-hide{overflow-x:hidden!important}.o-x-scroll{overflow-x:scroll!important}.o-y-auto{overflow-y:auto!important}.o-y-visible{overflow-y:visible!important}.o-y-hide{overflow-y:hidden!important}.o-y-scroll{overflow-y:scroll!important}.flex-ai-center,.flex-ai-jc-center,.flex-jc-ai-center{align-items:center!important}.flex-as-center{align-self:center!important}.flex-ai-jc-center,.flex-jc-ai-center,.flex-jc-center{justify-content:center!important}.flex-ai-flex-start{align-items:flex-start!important}.flex-as-flex-start{align-self:flex-start!important}.flex-jc-flex-start{justify-content:flex-start!important}.flex-ai-flex-end{align-items:flex-end!important}.flex-as-flex-end{align-self:flex-end!important}.flex-jc-flex-end{justify-content:flex-end!important}.flex-jc-space-between{justify-content:space-between!important}.flex-jc-space-around{justify-content:space-around!important}.flex-jc-space-evenly{justify-content:space-evenly!important}.flex-dr{flex-direction:row!important}.flex-dc{flex-direction:column!important}.flex-ai-baseline{align-items:baseline!important}.flex-ai-end{align-items:flex-end!important}.flex-w-wrap{flex-wrap:wrap!important}.flex-basis-1{flex:1}.flex-basis-100{flex-basis:100%}.flex-none{flex:none}.b-0{border:0 solid #666!important;border:0 solid var(--gray-400)!important}.bl-0{border-left:none!important}.br-0{border-right:none!important}.br-4{border-radius:4px!important}.bt-0{border-top:none!important}.bb-0{border-bottom:none!important}.b-1{border:1px solid #666!important;border:1px solid var(--gray-400)!important}.b-2{border:2px solid #666!important;border:2px solid var(--gray-400)!important}.b-4{border:4px solid #666!important;border:4px solid var(--gray-400)!important}.b-8{border:8px solid #666!important;border:8px solid var(--gray-400)!important}.bs-0{box-shadow:none!important}.bs-1{box-shadow:0 3px 6px 0 rgba(0,0,0,.29)!important}.bs-1:hover{box-shadow:0 4px 9px 0 rgba(0,0,0,.29)!important}.bs-2{box-shadow:0 0 20px 0 rgba(0,0,0,.29)!important}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}a.sb-btn{text-align:center;display:inline-flex;justify-content:center;align-items:center;flex-wrap:wrap}.sb-btn{white-space:nowrap;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;user-select:none;outline:0;display:inline-block;border:1px solid;cursor:pointer;min-width:4rem;border-radius:.125rem;-webkit-border-radius:.125rem;-moz-border-radius:.125rem;position:relative;line-height:1.15;text-transform:inherit;text-decoration:none}.sb-btn:hover{opacity:1}.sb-btn:after{content:"";position:absolute;top:50%;left:50%;width:3px;height:3px;background:#005391;background:var(--primary-600);opacity:0;border-radius:50%;transform:scale(1) translate(-50%);transform-origin:50% 50%}.sb-btn.flat{border-radius:0}.sb-btn.sb-btn-radius{border-radius:2rem}.sb-btn-gray{background-color:#999;background-color:var(--gray-200);border-color:#999;border-color:var(--gray-200);color:#fff;color:var(--white)}.sb-btn-gray.active,.sb-btn-gray:active,.sb-btn-gray:hover{background-color:#666;background-color:var(--gray-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-gray{background-color:#fff;background-color:var(--white);color:#999;color:var(--gray-200);border-color:#999;border-color:var(--gray-200)}.sb-btn-outline-gray.active,.sb-btn-outline-gray:active,.sb-btn-outline-gray:hover{color:#666;color:var(--gray-400);background-color:#ccc;background-color:var(--gray-100)}.sb-btn-dashed-gray{background-color:#fff;border:1px dashed #999;border-color:var(--gray-200);color:#999;color:var(--gray-200)}.sb-btn-dashed-gray.active,.sb-btn-dashed-gray:active,.sb-btn-dashed-gray:hover{background-color:#ccc;background-color:var(--gray-100)}.sb-btn-link-gray{background:none;border:0;color:#999;color:var(--gray-200)}.sb-btn-link-gray.active,.sb-btn-link-gray:active,.sb-btn-link-gray:hover{background-color:#ccc;background-color:var(--gray-100)}.sb-btn-primary{background-color:#024f9d;background-color:var(--primary-400);border-color:#024f9d;border-color:var(--primary-400);color:#fff;color:var(--white)}.sb-btn-primary.active,.sb-btn-primary:active,.sb-btn-primary:hover{background-color:#002e50;background-color:var(--primary-800);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-primary{background-color:#fff;background-color:var(--white);color:#024f9d;color:var(--primary-400);border-color:#024f9d;border-color:var(--primary-400)}.sb-btn-outline-primary.active,.sb-btn-outline-primary:active,.sb-btn-outline-primary:hover{color:#002e50;color:var(--primary-800);background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-dashed-primary{background-color:#fff;border:1px dashed #024f9d;border-color:var(--primary-400);color:#024f9d;color:var(--primary-400)}.sb-btn-dashed-primary.active,.sb-btn-dashed-primary:active,.sb-btn-dashed-primary:hover{background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-link-primary{background:none;border:0;color:#024f9d;color:var(--primary-400)}.sb-btn-link-primary.active,.sb-btn-link-primary:active,.sb-btn-link-primary:hover{background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-secondary{background-color:#07bc81;background-color:var(--secondary-200);border-color:#07bc81;border-color:var(--secondary-200);color:#fff;color:var(--white)}.sb-btn-secondary.active,.sb-btn-secondary:active,.sb-btn-secondary:hover{background-color:#008840;background-color:var(--secondary-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-secondary{background-color:#fff;background-color:var(--white);color:#07bc81;color:var(--secondary-200);border-color:#07bc81;border-color:var(--secondary-200)}.sb-btn-outline-secondary.active,.sb-btn-outline-secondary:active,.sb-btn-outline-secondary:hover{color:#008840;color:var(--secondary-400);background-color:#e1ffdf;background-color:var(--secondary-0)}.sb-btn-dashed-secondary{background-color:#fff;border:1px dashed #07bc81;border-color:var(--secondary-200);color:#07bc81;color:var(--secondary-200)}.sb-btn-dashed-secondary.active,.sb-btn-dashed-secondary:active,.sb-btn-dashed-secondary:hover{background-color:#e1ffdf;background-color:var(--secondary-0)}.sb-btn-link-secondary{background:none;border:0;color:#07bc81;color:var(--secondary-200)}.sb-btn-link-secondary.active,.sb-btn-link-secondary:active,.sb-btn-link-secondary:hover{background-color:#e1ffdf;background-color:var(--secondary-0)}.sb-btn-tertiary{background-color:#ffa11d;background-color:var(--tertiary-100);border-color:#ffa11d;border-color:var(--tertiary-100);color:#fff;color:var(--white)}.sb-btn-tertiary.active,.sb-btn-tertiary:active,.sb-btn-tertiary:hover{background-color:#e55a28;background-color:var(--tertiary-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-tertiary{background-color:#fff;background-color:var(--white);color:#ffa11d;color:var(--tertiary-100);border-color:#ffa11d;border-color:var(--tertiary-100)}.sb-btn-outline-tertiary.active,.sb-btn-outline-tertiary:active,.sb-btn-outline-tertiary:hover{color:#e55a28;color:var(--tertiary-400);background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-dashed-tertiary{background-color:#fff;border:1px dashed #ffa11d;border-color:var(--tertiary-100);color:#ffa11d;color:var(--tertiary-100)}.sb-btn-dashed-tertiary.active,.sb-btn-dashed-tertiary:active,.sb-btn-dashed-tertiary:hover{background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-link-tertiary{background:none;border:0;color:#ffa11d;color:var(--tertiary-100)}.sb-btn-link-tertiary.active,.sb-btn-link-tertiary:active,.sb-btn-link-tertiary:hover{background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-red{background-color:#ff6979;background-color:var(--red-100);border-color:#ff6979;border-color:var(--red-100);color:#fff;color:var(--white)}.sb-btn-red.active,.sb-btn-red:active,.sb-btn-red:hover{background-color:#ff4558;background-color:var(--red-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-red{background-color:#fff;background-color:var(--white);color:#ff6979;color:var(--red-100);border-color:#ff6979;border-color:var(--red-100)}.sb-btn-outline-red.active,.sb-btn-outline-red:active,.sb-btn-outline-red:hover{color:#ff4558;color:var(--red-400);background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-dashed-red{background-color:#fff;border:1px dashed #ff6979;border-color:var(--red-100);color:#ff6979;color:var(--red-100)}.sb-btn-dashed-red.active,.sb-btn-dashed-red:active,.sb-btn-dashed-red:hover{background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-link-red{background:none;border:0;color:#ff6979;color:var(--red-100)}.sb-btn-link-red.active,.sb-btn-link-red:active,.sb-btn-link-red:hover{background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-info{background-color:#024f9d;background-color:var(--primary-400);border-color:#024f9d;border-color:var(--primary-400);color:#fff;color:var(--white)}.sb-btn-info.active,.sb-btn-info:active,.sb-btn-info:hover{background-color:#002e50;background-color:var(--primary-800);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-info{background-color:#fff;background-color:var(--white);color:#024f9d;color:var(--primary-400);border-color:#024f9d;border-color:var(--primary-400)}.sb-btn-outline-info.active,.sb-btn-outline-info:active,.sb-btn-outline-info:hover{color:#002e50;color:var(--primary-800);background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-dashed-info{background-color:#fff;border:1px dashed #024f9d;border-color:var(--primary-400);color:#024f9d;color:var(--primary-400)}.sb-btn-dashed-info.active,.sb-btn-dashed-info:active,.sb-btn-dashed-info:hover{background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-link-info{background:none;border:0;color:#024f9d;color:var(--primary-400)}.sb-btn-link-info.active,.sb-btn-link-info:active,.sb-btn-link-info:hover{background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-success{background-color:#07bc81;background-color:var(--secondary-200);border-color:#07bc81;border-color:var(--secondary-200);color:#fff;color:var(--white)}.sb-btn-success.active,.sb-btn-success:active,.sb-btn-success:hover{background-color:#008840;background-color:var(--secondary-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-success{background-color:#fff;background-color:var(--white);color:#07bc81;color:var(--secondary-200);border-color:#07bc81;border-color:var(--secondary-200)}.sb-btn-outline-success.active,.sb-btn-outline-success:active,.sb-btn-outline-success:hover{color:#008840;color:var(--secondary-400);background-color:#00c786;background-color:var(--secondary-100)}.sb-btn-dashed-success{background-color:#fff;border:1px dashed #07bc81;border-color:var(--secondary-200);color:#07bc81;color:var(--secondary-200)}.sb-btn-dashed-success.active,.sb-btn-dashed-success:active,.sb-btn-dashed-success:hover{background-color:#00c786;background-color:var(--secondary-100)}.sb-btn-link-success{background:none;border:0;color:#07bc81;color:var(--secondary-200)}.sb-btn-link-success.active,.sb-btn-link-success:active,.sb-btn-link-success:hover{background-color:#00c786;background-color:var(--secondary-100)}.sb-btn-warning{background-color:#ffa11d;background-color:var(--tertiary-100);border-color:#ffa11d;border-color:var(--tertiary-100);color:#fff;color:var(--white)}.sb-btn-warning.active,.sb-btn-warning:active,.sb-btn-warning:hover{background-color:#e55a28;background-color:var(--tertiary-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-warning{background-color:#fff;background-color:var(--white);color:#ffa11d;color:var(--tertiary-100);border-color:#ffa11d;border-color:var(--tertiary-100)}.sb-btn-outline-warning.active,.sb-btn-outline-warning:active,.sb-btn-outline-warning:hover{color:#e55a28;color:var(--tertiary-400);background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-dashed-warning{background-color:#fff;border:1px dashed #ffa11d;border-color:var(--tertiary-100);color:#ffa11d;color:var(--tertiary-100)}.sb-btn-dashed-warning.active,.sb-btn-dashed-warning:active,.sb-btn-dashed-warning:hover{background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-link-warning{background:none;border:0;color:#ffa11d;color:var(--tertiary-100)}.sb-btn-link-warning.active,.sb-btn-link-warning:active,.sb-btn-link-warning:hover{background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-error{background-color:#ff6979;background-color:var(--red-100);border-color:#ff6979;border-color:var(--red-100);color:#fff;color:var(--white)}.sb-btn-error.active,.sb-btn-error:active,.sb-btn-error:hover{background-color:#ff4558;background-color:var(--red-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-error{background-color:#fff;background-color:var(--white);color:#ff6979;color:var(--red-100);border-color:#ff6979;border-color:var(--red-100)}.sb-btn-outline-error.active,.sb-btn-outline-error:active,.sb-btn-outline-error:hover{color:#ff4558;color:var(--red-400);background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-dashed-error{background-color:#fff;border:1px dashed #ff6979;border-color:var(--red-100);color:#ff6979;color:var(--red-100)}.sb-btn-dashed-error.active,.sb-btn-dashed-error:active,.sb-btn-dashed-error:hover{background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-link-error{background:none;border:0;color:#ff6979;color:var(--red-100)}.sb-btn-link-error.active,.sb-btn-link-error:active,.sb-btn-link-error:hover{background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-xs{height:1.5rem;padding:.25rem .5rem;font-size:.75rem}.sb-btn-normal{height:2rem;padding:.5rem 1rem;font-size:.75rem}.sb-btn-sm{height:2.5rem}.sb-btn-md,.sb-btn-sm{padding:.5rem 1rem;font-size:1rem}.sb-btn-md{height:3rem}.sb-btn-lg{height:3.5rem;padding:1rem 1.5rem;font-size:1.25rem}.sb-btn-full{height:1.5rem;padding:.5rem 1rem;font-size:1.25rem;width:100%}.sb-btn-square.sb-btn-xs{height:1.5rem;width:1.5rem;font-size:1rem}.sb-btn-square.sb-btn-xs i.icon{margin:0;font-size:2em}.sb-btn-square.sb-btn-xs span{margin:.5rem 0 0}.sb-btn-square.sb-btn-normal{height:4rem;width:4rem;font-size:.75rem}.sb-btn-square.sb-btn-normal i.icon{margin:0;font-size:2em}.sb-btn-square.sb-btn-normal span{margin:.5rem 0 0}.sb-btn-square.sb-btn-sm{height:3rem;width:3rem;font-size:.75rem}.sb-btn-square.sb-btn-sm i.icon{margin:0;font-size:2em}.sb-btn-square.sb-btn-sm span{margin:.5rem 0 0}.sb-btn-square.sb-btn-md{height:4rem;width:4rem;font-size:1rem}.sb-btn-square.sb-btn-md i.icon{margin:0;font-size:2em}.sb-btn-square.sb-btn-md span{margin:.5rem 0 0}.sb-btn-square.sb-btn-lg{height:8rem;width:8rem;font-size:1.25rem}.sb-btn-square.sb-btn-lg i.icon{margin:0;font-size:2em}.sb-btn-square.sb-btn-lg span{margin:.5rem 0 0}.sb-btn-white{box-shadow:0 -.0625rem .25rem 0 rgba(0,0,0,.1),0 3px 4px 0 rgba(0,0,0,.2);border:0 solid #ddd}.sb-btn-square{display:inline-flex;flex-direction:column;align-items:center;justify-content:space-evenly;font-size:.75rem;padding:.5rem}.sb-btn-disabled{background-color:#ccc;background-color:var(--gray-100)}.sb-btn-disabled,.sb-btn-outline-disabled{border:1px solid #ccc;border:1px solid var(--gray-100);color:#999;color:var(--gray-200);cursor:default}.sb-btn-outline-disabled{background-color:#fff;background-color:var(--white);font-weight:400}.sb-btn-link{background:none;border:0}.sb-btn-download{transition:all 1.2s ease-in-out}.sb-btn-download i:after{content:"";font-size:.8125rem;color:#fff;color:var(--white)}.sb-btn-download:hover{animation:pulse .2s 2 both}.sb-btn-download.loading i{animation:loading 2s linear infinite}.sb-btn-download.loading i:after{content:""}.sb-btn-download.success i:after{content:"";color:transparent;animation:change-icon 1s linear .6s both}.sb-right-icon-btn{padding:.5rem}.sb-right-icon-btn i.icon{margin-left:.25rem}html[dir=rtl] .sb-right-icon-btn i.icon{margin-right:.25rem;margin-left:0}.sb-left-icon-btn{padding:.5rem}.sb-left-icon-btn i.icon{margin-left:.25rem}html[dir=rtl] .sb-left-icon-btn i.icon{margin-right:.25rem;margin-left:0}.sb-left-icon-btn.sb-btn-xs{padding:.5rem}.ui.toggle.checkbox.sb-toggle{min-height:1.5rem;position:relative;display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;vertical-align:baseline;font-style:normal;min-height:1rem;font-size:1rem;min-width:1rem}.ui.toggle.checkbox.sb-toggle input{width:4rem;height:1.5rem;cursor:pointer;position:absolute;top:0;left:0;opacity:0;outline:0;z-index:3}.ui.toggle.checkbox.sb-toggle input:checked~.box:before,.ui.toggle.checkbox.sb-toggle input:checked~label:before,.ui.toggle.checkbox.sb-toggle input:focus:checked~.box:before,.ui.toggle.checkbox.sb-toggle input:focus:checked~label:before{background-color:#024f9d!important}.ui.toggle.checkbox.sb-toggle label{min-height:1rem;padding-left:4.5rem;color:rgba(0,0,0,.87);position:relative;display:block;outline:0;font-size:1rem}.ui.toggle.checkbox.sb-toggle label:before{display:block;position:absolute;content:"";z-index:1;transform:none;top:1px;left:0;background:rgba(0,0,0,.05);box-shadow:none;width:4rem;height:1.5rem;border-radius:500rem;border:#024f9d;border-color:var(--primary-color);background-color:#024f9d;background-color:var(--primary-color);color:#fff;color:var(--white);transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease}.ui.toggle.checkbox.sb-toggle label:after{background:#fff linear-gradient(transparent,rgba(0,0,0,.05));background:var(--white) linear-gradient(transparent,rgba(0,0,0,.05));position:absolute;content:""!important;opacity:1;z-index:2;border:none;width:-2.5rem;height:-2.5rem;top:3px;left:0;border-radius:500rem;transition:background .3s ease,left .3s ease}.ui.toggle.checkbox.sb-toggle input~label:after{left:.1rem;box-shadow:none}.ui.toggle.checkbox.sb-toggle input:checked~label:after{left:2.5625rem;box-shadow:none}.btn-group{border:1px solid #ccc;border:1px solid var(--gray-100);display:inline-flex;flex-direction:row;font-size:0;vertical-align:baseline}.btn-group .sb-btn{background:#fff;background:var(--white);flex:1 0 auto;border-radius:0;margin:0;border:0;color:#024f9d;color:var(--primary-400);min-width:2.5rem}.btn-group .sb-btn:first-child{border-left:none;margin-left:0}.btn-group .sb-btn.active,.btn-group .sb-btn:active{background-color:#edf4f9;background-color:var(--primary-100);color:#024f9d;color:var(--primary-400)}.btn-group .sb-btn .icon{margin:0;vertical-align:top}.sb-btn-icon-fix{display:flex;align-items:center;line-height:normal}.sb-btn-grow{background:none;border:0 solid #fff;font-size:12px;color:#fff;cursor:pointer;transition:all .2s ease-in-out}.sb-btn-grow:disabled{opacity:.4;cursor:default}.sb-btn-grow:hover:not([disabled]){background:none;transform:scale(1.15)}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-modal-dialog,.vjs-button>.vjs-icon-placeholder:before,.vjs-modal-dialog .vjs-modal-dialog-content{position:absolute;top:0;left:0;width:100%;height:100%}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.vjs-button>.vjs-icon-placeholder:before{text-align:center}@font-face{font-family:VideoJS;src:url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");font-weight:400;font-style:normal}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-play-control .vjs-icon-placeholder,.vjs-icon-play{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-play-control .vjs-icon-placeholder:before,.vjs-icon-play:before{content:"\f101"}.vjs-icon-play-circle{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-play-circle:before{content:"\f102"}.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder,.vjs-icon-pause{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,.vjs-icon-pause:before{content:"\f103"}.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder,.vjs-icon-volume-mute{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,.vjs-icon-volume-mute:before{content:"\f104"}.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder,.vjs-icon-volume-low{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,.vjs-icon-volume-low:before{content:"\f105"}.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder,.vjs-icon-volume-mid{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,.vjs-icon-volume-mid:before{content:"\f106"}.video-js .vjs-mute-control .vjs-icon-placeholder,.vjs-icon-volume-high{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control .vjs-icon-placeholder:before,.vjs-icon-volume-high:before{content:"\f107"}.video-js .vjs-fullscreen-control .vjs-icon-placeholder,.vjs-icon-fullscreen-enter{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,.vjs-icon-fullscreen-enter:before{content:"\f108"}.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder,.vjs-icon-fullscreen-exit{font-family:VideoJS;font-weight:400;font-style:normal}.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before,.vjs-icon-fullscreen-exit:before{content:"\f109"}.vjs-icon-square{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-square:before{content:"\f10a"}.vjs-icon-spinner{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-spinner:before{content:"\f10b"}.video-js .vjs-subs-caps-button .vjs-icon-placeholder,.video-js .vjs-subtitles-button .vjs-icon-placeholder,.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,.vjs-icon-subtitles{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js .vjs-subtitles-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,.vjs-icon-subtitles:before{content:"\f10c"}.video-js .vjs-captions-button .vjs-icon-placeholder,.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,.vjs-icon-captions{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-captions-button .vjs-icon-placeholder:before,.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,.vjs-icon-captions:before{content:"\f10d"}.video-js .vjs-chapters-button .vjs-icon-placeholder,.vjs-icon-chapters{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-chapters-button .vjs-icon-placeholder:before,.vjs-icon-chapters:before{content:"\f10e"}.vjs-icon-share{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-share:before{content:"\f10f"}.vjs-icon-cog{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-cog:before{content:"\f110"}.video-js .vjs-play-progress,.video-js .vjs-volume-level,.vjs-icon-circle,.vjs-seek-to-live-control .vjs-icon-placeholder{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-progress:before,.video-js .vjs-volume-level:before,.vjs-icon-circle:before,.vjs-seek-to-live-control .vjs-icon-placeholder:before{content:"\f111"}.vjs-icon-circle-outline{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-circle-outline:before{content:"\f112"}.vjs-icon-circle-inner-circle{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-circle-inner-circle:before{content:"\f113"}.vjs-icon-hd{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-hd:before{content:"\f114"}.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder,.vjs-icon-cancel{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before,.vjs-icon-cancel:before{content:"\f115"}.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder,.vjs-icon-replay{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,.vjs-icon-replay:before{content:"\f116"}.vjs-icon-facebook{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-facebook:before{content:"\f117"}.vjs-icon-gplus{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-gplus:before{content:"\f118"}.vjs-icon-linkedin{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-linkedin:before{content:"\f119"}.vjs-icon-twitter{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-twitter:before{content:"\f11a"}.vjs-icon-tumblr{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-tumblr:before{content:"\f11b"}.vjs-icon-pinterest{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-pinterest:before{content:"\f11c"}.video-js .vjs-descriptions-button .vjs-icon-placeholder,.vjs-icon-audio-description{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-descriptions-button .vjs-icon-placeholder:before,.vjs-icon-audio-description:before{content:"\f11d"}.video-js .vjs-audio-button .vjs-icon-placeholder,.vjs-icon-audio{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-audio-button .vjs-icon-placeholder:before,.vjs-icon-audio:before{content:"\f11e"}.vjs-icon-next-item{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-next-item:before{content:"\f11f"}.vjs-icon-previous-item{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-previous-item:before{content:"\f120"}.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder,.vjs-icon-picture-in-picture-enter{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before,.vjs-icon-picture-in-picture-enter:before{content:"\f121"}.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder,.vjs-icon-picture-in-picture-exit{font-family:VideoJS;font-weight:400;font-style:normal}.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before,.vjs-icon-picture-in-picture-exit:before{content:"\f122"}.video-js{display:block;vertical-align:top;box-sizing:border-box;color:#fff;background-color:#000;position:relative;padding:0;font-size:10px;line-height:1;font-weight:400;font-style:normal;font-family:Arial,Helvetica,sans-serif;word-break:normal}.video-js:-moz-full-screen{position:absolute}.video-js:-webkit-full-screen{width:100%!important;height:100%!important}.video-js[tabindex="-1"]{outline:0}.video-js *,.video-js :after,.video-js :before{box-sizing:inherit}.video-js ul{font-family:inherit;font-size:inherit;line-height:inherit;list-style-position:outside;margin:0}.video-js.vjs-1-1,.video-js.vjs-16-9,.video-js.vjs-4-3,.video-js.vjs-9-16,.video-js.vjs-fluid{width:100%;max-width:100%;height:0}.video-js.vjs-16-9{padding-top:56.25%}.video-js.vjs-4-3{padding-top:75%}.video-js.vjs-9-16{padding-top:177.7777777778%}.video-js.vjs-1-1{padding-top:100%}.video-js .vjs-tech,.video-js.vjs-fill{width:100%;height:100%}.video-js .vjs-tech{position:absolute;top:0;left:0}body.vjs-full-window{padding:0;margin:0;height:100%}.vjs-full-window .video-js.vjs-fullscreen{position:fixed;overflow:hidden;z-index:1000;left:0;top:0;bottom:0;right:0}.video-js.vjs-fullscreen:not(.vjs-ios-native-fs){width:100%!important;height:100%!important;padding-top:0!important}.video-js.vjs-fullscreen.vjs-user-inactive{cursor:none}.vjs-hidden{display:none!important}.vjs-disabled{opacity:.5;cursor:default}.video-js .vjs-offscreen{height:1px;left:-9999px;position:absolute;top:0;width:1px}.vjs-lock-showing{display:block!important;opacity:1!important;visibility:visible!important}.vjs-no-js{padding:20px;color:#fff;background-color:#000;font-size:18px;font-family:Arial,Helvetica,sans-serif;text-align:center;width:300px;height:150px;margin:0 auto}.vjs-no-js a,.vjs-no-js a:visited{color:#66a8cc}.video-js .vjs-big-play-button{font-size:3em;line-height:1.5em;height:1.63332em;width:3em;display:block;position:absolute;top:10px;left:10px;padding:0;cursor:pointer;opacity:1;border:.06666em solid #fff;background-color:#2b333f;background-color:rgba(43,51,63,.7);border-radius:.3em;transition:all .4s}.vjs-big-play-centered .vjs-big-play-button{top:50%;left:50%;margin-top:-.81666em;margin-left:-1.5em}.video-js .vjs-big-play-button:focus,.video-js:hover .vjs-big-play-button{border-color:#fff;background-color:#73859f;background-color:rgba(115,133,159,.5);transition:all 0s}.vjs-controls-disabled .vjs-big-play-button,.vjs-error .vjs-big-play-button,.vjs-has-started .vjs-big-play-button,.vjs-using-native-controls .vjs-big-play-button{display:none}.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button{display:block}.video-js button{background:0 0;border:none;color:inherit;display:inline-block;font-size:inherit;line-height:inherit;text-transform:none;text-decoration:none;transition:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.vjs-control .vjs-button{width:100%;height:100%}.video-js .vjs-control.vjs-close-button{cursor:pointer;height:3em;position:absolute;right:0;top:.5em;z-index:2}.video-js .vjs-modal-dialog{background:rgba(0,0,0,.8);background:linear-gradient(180deg,rgba(0,0,0,.8),hsla(0,0%,100%,0));overflow:auto}.video-js .vjs-modal-dialog>*{box-sizing:border-box}.vjs-modal-dialog .vjs-modal-dialog-content{font-size:1.2em;line-height:1.5;padding:20px 24px;z-index:1}.vjs-menu-button{cursor:pointer}.vjs-menu-button.vjs-disabled{cursor:default}.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu{display:none}.vjs-menu .vjs-menu-content{display:block;padding:0;margin:0;font-family:Arial,Helvetica,sans-serif;overflow:auto}.vjs-menu .vjs-menu-content>*{box-sizing:border-box}.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu{display:none}.vjs-menu li{list-style:none;margin:0;padding:.2em 0;line-height:1.4em;font-size:1.2em;text-align:center;text-transform:lowercase}.js-focus-visible .vjs-menu li.vjs-menu-item:hover,.vjs-menu li.vjs-menu-item:focus,.vjs-menu li.vjs-menu-item:hover{background-color:#73859f;background-color:rgba(115,133,159,.5)}.js-focus-visible .vjs-menu li.vjs-selected:hover,.vjs-menu li.vjs-selected,.vjs-menu li.vjs-selected:focus,.vjs-menu li.vjs-selected:hover{background-color:#fff;color:#2b333f}.js-focus-visible .vjs-menu :not(.vjs-selected):focus:not(.focus-visible),.video-js .vjs-menu :not(.vjs-selected):focus:not(:focus-visible){background:0 0}.vjs-menu li.vjs-menu-title{text-align:center;text-transform:uppercase;font-size:1em;line-height:2em;padding:0;margin:0 0 .3em;font-weight:700;cursor:default}.vjs-menu-button-popup .vjs-menu{display:none;position:absolute;bottom:0;width:10em;left:-3em;height:0;margin-bottom:1.5em;border-top-color:rgba(43,51,63,.7)}.vjs-menu-button-popup .vjs-menu .vjs-menu-content{background-color:#2b333f;background-color:rgba(43,51,63,.7);position:absolute;width:100%;bottom:1.5em;max-height:15em}.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:5em}.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:10em}.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:14em}.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:25em}.vjs-menu-button-popup .vjs-menu.vjs-lock-showing,.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu{display:block}.video-js .vjs-menu-button-inline{transition:all .4s;overflow:hidden}.video-js .vjs-menu-button-inline:before{width:2.222222222em}.video-js .vjs-menu-button-inline.vjs-slider-active,.video-js .vjs-menu-button-inline:focus,.video-js .vjs-menu-button-inline:hover,.video-js.vjs-no-flex .vjs-menu-button-inline{width:12em}.vjs-menu-button-inline .vjs-menu{opacity:0;height:100%;width:auto;position:absolute;left:4em;top:0;padding:0;margin:0;transition:all .4s}.vjs-menu-button-inline.vjs-slider-active .vjs-menu,.vjs-menu-button-inline:focus .vjs-menu,.vjs-menu-button-inline:hover .vjs-menu{display:block;opacity:1}.vjs-no-flex .vjs-menu-button-inline .vjs-menu{display:block;opacity:1;position:relative;width:auto}.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu,.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu{width:auto}.vjs-menu-button-inline .vjs-menu-content{width:auto;height:100%;margin:0;overflow:hidden}.video-js .vjs-control-bar{display:none;width:100%;position:absolute;bottom:0;left:0;right:0;height:3em;background-color:#2b333f;background-color:rgba(43,51,63,.7)}.vjs-has-started .vjs-control-bar{display:flex;visibility:visible;opacity:1;transition:visibility .1s,opacity .1s}.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar{visibility:visible;opacity:0;pointer-events:none;transition:visibility 1s,opacity 1s}.vjs-controls-disabled .vjs-control-bar,.vjs-error .vjs-control-bar,.vjs-using-native-controls .vjs-control-bar{display:none!important}.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar{opacity:1;visibility:visible}.vjs-has-started.vjs-no-flex .vjs-control-bar{display:table}.video-js .vjs-control{position:relative;text-align:center;margin:0;padding:0;height:100%;width:4em;flex:none}.vjs-button>.vjs-icon-placeholder:before{font-size:1.8em;line-height:1.67}.vjs-button>.vjs-icon-placeholder{display:block}.video-js .vjs-control:focus,.video-js .vjs-control:focus:before,.video-js .vjs-control:hover:before{text-shadow:0 0 1em #fff}.video-js .vjs-control-text{border:0;clip:rect(0 0 0 0);height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.vjs-no-flex .vjs-control{display:table-cell;vertical-align:middle}.video-js .vjs-custom-control-spacer{display:none}.video-js .vjs-progress-control{cursor:pointer;flex:auto;display:flex;align-items:center;min-width:4em;touch-action:none}.video-js .vjs-progress-control.disabled{cursor:default}.vjs-live .vjs-progress-control{display:none}.vjs-liveui .vjs-progress-control{display:flex;align-items:center}.vjs-no-flex .vjs-progress-control{width:auto}.video-js .vjs-progress-holder{flex:auto;transition:all .2s;height:.3em}.video-js .vjs-progress-control .vjs-progress-holder{margin:0 10px}.video-js .vjs-progress-control:hover .vjs-progress-holder{font-size:1.6666666667em}.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled{font-size:1em}.video-js .vjs-progress-holder .vjs-load-progress,.video-js .vjs-progress-holder .vjs-load-progress div,.video-js .vjs-progress-holder .vjs-play-progress{position:absolute;display:block;height:100%;margin:0;padding:0;width:0}.video-js .vjs-play-progress{background-color:#fff}.video-js .vjs-play-progress:before{font-size:.9em;position:absolute;right:-.5em;top:-.3333333333em;z-index:1}.video-js .vjs-load-progress{background:rgba(115,133,159,.5)}.video-js .vjs-load-progress div{background:rgba(115,133,159,.75)}.video-js .vjs-time-tooltip{background-color:#fff;background-color:hsla(0,0%,100%,.8);border-radius:.3em;color:#000;float:right;font-family:Arial,Helvetica,sans-serif;font-size:1em;padding:6px 8px 8px;pointer-events:none;position:absolute;top:-3.4em;visibility:hidden;z-index:1}.video-js .vjs-progress-holder:focus .vjs-time-tooltip{display:none}.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,.video-js .vjs-progress-control:hover .vjs-time-tooltip{display:block;font-size:.6em;visibility:visible}.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip{font-size:1em}.video-js .vjs-progress-control .vjs-mouse-display{display:none;position:absolute;width:1px;height:100%;background-color:#000;z-index:1}.vjs-no-flex .vjs-progress-control .vjs-mouse-display{z-index:0}.video-js .vjs-progress-control:hover .vjs-mouse-display{display:block}.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display{visibility:hidden;opacity:0;transition:visibility 1s,opacity 1s}.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display{display:none}.vjs-mouse-display .vjs-time-tooltip{color:#fff;background-color:#000;background-color:rgba(0,0,0,.8)}.video-js .vjs-slider{position:relative;cursor:pointer;padding:0;margin:0 .45em;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:#73859f;background-color:rgba(115,133,159,.5)}.video-js .vjs-slider.disabled{cursor:default}.video-js .vjs-slider:focus{text-shadow:0 0 1em #fff;box-shadow:0 0 1em #fff}.video-js .vjs-mute-control{cursor:pointer;flex:none}.video-js .vjs-volume-control{cursor:pointer;margin-right:1em;display:flex}.video-js .vjs-volume-control.vjs-volume-horizontal{width:5em}.video-js .vjs-volume-panel .vjs-volume-control{visibility:visible;opacity:0;width:1px;height:1px;margin-left:-1px}.video-js .vjs-volume-panel{transition:width 1s}.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active,.video-js .vjs-volume-panel .vjs-volume-control:active,.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,.video-js .vjs-volume-panel:active .vjs-volume-control,.video-js .vjs-volume-panel:focus .vjs-volume-control{visibility:visible;opacity:1;position:relative;transition:visibility .1s,opacity .1s,height .1s,width .1s,left 0s,top 0s}.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal{width:5em;height:3em;margin-right:0}.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical,.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical{left:-3.5em;transition:left 0s}.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active{width:10em;transition:width .1s}.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only{width:4em}.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical{height:8em;width:3em;left:-3000em;transition:visibility 1s,opacity 1s,height 1s 1s,width 1s 1s,left 1s 1s,top 1s 1s}.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal{transition:visibility 1s,opacity 1s,height 1s 1s,width 1s,left 1s 1s,top 1s 1s}.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal{width:5em;height:3em;visibility:visible;opacity:1;position:relative;transition:none}.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical{position:absolute;bottom:3em;left:.5em}.video-js .vjs-volume-panel{display:flex}.video-js .vjs-volume-bar{margin:1.35em .45em}.vjs-volume-bar.vjs-slider-horizontal{width:5em;height:.3em}.vjs-volume-bar.vjs-slider-vertical{width:.3em;height:5em;margin:1.35em auto}.video-js .vjs-volume-level{position:absolute;bottom:0;left:0;background-color:#fff}.video-js .vjs-volume-level:before{position:absolute;font-size:.9em;z-index:1}.vjs-slider-vertical .vjs-volume-level{width:.3em}.vjs-slider-vertical .vjs-volume-level:before{top:-.5em;left:-.3em;z-index:1}.vjs-slider-horizontal .vjs-volume-level{height:.3em}.vjs-slider-horizontal .vjs-volume-level:before{top:-.3em;right:-.5em}.video-js .vjs-volume-panel.vjs-volume-panel-vertical{width:4em}.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level{height:100%}.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level{width:100%}.video-js .vjs-volume-vertical{width:3em;height:8em;bottom:8em;background-color:#2b333f;background-color:rgba(43,51,63,.7)}.video-js .vjs-volume-horizontal .vjs-menu{left:-2em}.video-js .vjs-volume-tooltip{background-color:#fff;background-color:hsla(0,0%,100%,.8);border-radius:.3em;color:#000;float:right;font-family:Arial,Helvetica,sans-serif;font-size:1em;padding:6px 8px 8px;pointer-events:none;position:absolute;top:-3.4em;visibility:hidden;z-index:1}.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip,.video-js .vjs-volume-control:hover .vjs-volume-tooltip{display:block;font-size:1em;visibility:visible}.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip,.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip{left:1em;top:-12px}.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip{font-size:1em}.video-js .vjs-volume-control .vjs-mouse-display{display:none;position:absolute;width:100%;height:1px;background-color:#000;z-index:1}.video-js .vjs-volume-horizontal .vjs-mouse-display{width:1px;height:100%}.vjs-no-flex .vjs-volume-control .vjs-mouse-display{z-index:0}.video-js .vjs-volume-control:hover .vjs-mouse-display{display:block}.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display{visibility:hidden;opacity:0;transition:visibility 1s,opacity 1s}.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display{display:none}.vjs-mouse-display .vjs-volume-tooltip{color:#fff;background-color:#000;background-color:rgba(0,0,0,.8)}.vjs-poster{display:inline-block;vertical-align:middle;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;background-color:#000;cursor:pointer;margin:0;padding:0;position:absolute;top:0;right:0;bottom:0;left:0;height:100%}.vjs-has-started .vjs-poster{display:none}.vjs-audio.vjs-has-started .vjs-poster{display:block}.vjs-using-native-controls .vjs-poster{display:none}.video-js .vjs-live-control{display:flex;align-items:flex-start;flex:auto;font-size:1em;line-height:3em}.vjs-no-flex .vjs-live-control{display:table-cell;width:auto;text-align:left}.video-js.vjs-liveui .vjs-live-control,.video-js:not(.vjs-live) .vjs-live-control{display:none}.video-js .vjs-seek-to-live-control{align-items:center;cursor:pointer;flex:none;display:inline-flex;height:100%;padding-left:.5em;padding-right:.5em;font-size:1em;line-height:3em;width:auto;min-width:4em}.vjs-no-flex .vjs-seek-to-live-control{display:table-cell;width:auto;text-align:left}.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,.video-js:not(.vjs-live) .vjs-seek-to-live-control{display:none}.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge{cursor:auto}.vjs-seek-to-live-control .vjs-icon-placeholder{margin-right:.5em;color:#888}.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder{color:red}.video-js .vjs-time-control{flex:none;font-size:1em;line-height:3em;min-width:2em;width:auto;padding-left:1em;padding-right:1em}.video-js .vjs-current-time,.video-js .vjs-duration,.vjs-live .vjs-time-control,.vjs-no-flex .vjs-current-time,.vjs-no-flex .vjs-duration{display:none}.vjs-time-divider{display:none;line-height:3em}.vjs-live .vjs-time-divider{display:none}.video-js .vjs-play-control{cursor:pointer}.video-js .vjs-play-control .vjs-icon-placeholder{flex:none}.vjs-text-track-display{position:absolute;bottom:3em;left:0;right:0;top:0;pointer-events:none}.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display{bottom:1em}.video-js .vjs-text-track{font-size:1.4em;text-align:center;margin-bottom:.1em}.vjs-subtitles{color:#fff}.vjs-captions{color:#fc6}.vjs-tt-cue{display:block}video::-webkit-media-text-track-display{transform:translateY(-3em)}.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display{transform:translateY(-1.5em)}.video-js .vjs-fullscreen-control,.video-js .vjs-picture-in-picture-control{cursor:pointer;flex:none}.vjs-playback-rate .vjs-playback-rate-value,.vjs-playback-rate>.vjs-menu-button{position:absolute;top:0;left:0;width:100%;height:100%}.vjs-playback-rate .vjs-playback-rate-value{pointer-events:none;font-size:1.5em;line-height:2;text-align:center}.vjs-playback-rate .vjs-menu{width:4em;left:0}.vjs-error .vjs-error-display .vjs-modal-dialog-content{font-size:1.4em;text-align:center}.vjs-error .vjs-error-display:before{color:#fff;content:"X";font-family:Arial,Helvetica,sans-serif;font-size:4em;left:0;line-height:1;margin-top:-.5em;position:absolute;text-shadow:.05em .05em .1em #000;text-align:center;top:50%;vertical-align:middle;width:100%}.vjs-loading-spinner{display:none;position:absolute;top:50%;left:50%;margin:-25px 0 0 -25px;opacity:.85;text-align:left;border:6px solid rgba(43,51,63,.7);box-sizing:border-box;background-clip:padding-box;width:50px;height:50px;border-radius:25px;visibility:hidden}.vjs-seeking .vjs-loading-spinner,.vjs-waiting .vjs-loading-spinner{display:block;animation:vjs-spinner-show 0s linear .3s forwards}.vjs-loading-spinner:after,.vjs-loading-spinner:before{content:"";position:absolute;margin:-6px;box-sizing:inherit;width:inherit;height:inherit;border-radius:inherit;opacity:1;border:inherit;border-color:#fff transparent transparent}.vjs-seeking .vjs-loading-spinner:after,.vjs-seeking .vjs-loading-spinner:before,.vjs-waiting .vjs-loading-spinner:after,.vjs-waiting .vjs-loading-spinner:before{animation:vjs-spinner-spin 1.1s cubic-bezier(.6,.2,0,.8) infinite,vjs-spinner-fade 1.1s linear infinite}.vjs-seeking .vjs-loading-spinner:before,.vjs-waiting .vjs-loading-spinner:before{border-top-color:#fff}.vjs-seeking .vjs-loading-spinner:after,.vjs-waiting .vjs-loading-spinner:after{border-top-color:#fff;animation-delay:.44s}@keyframes vjs-spinner-show{to{visibility:visible}}@keyframes vjs-spinner-spin{to{transform:rotate(1turn)}}@keyframes vjs-spinner-fade{0%{border-top-color:#73859f}20%{border-top-color:#73859f}35%{border-top-color:#fff}60%{border-top-color:#73859f}to{border-top-color:#73859f}}.vjs-chapters-button .vjs-menu ul{width:24em}.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder{vertical-align:middle;display:inline-block;margin-bottom:-.1em}.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before{font-family:VideoJS;content:"";font-size:1.5em;line-height:inherit}.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder{vertical-align:middle;display:inline-block;margin-bottom:-.1em}.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before{font-family:VideoJS;content:" ";font-size:1.5em;line-height:inherit}.video-js.vjs-layout-small .vjs-current-time,.video-js.vjs-layout-small .vjs-duration,.video-js.vjs-layout-small .vjs-playback-rate,.video-js.vjs-layout-small .vjs-remaining-time,.video-js.vjs-layout-small .vjs-time-divider,.video-js.vjs-layout-small .vjs-volume-control,.video-js.vjs-layout-tiny .vjs-current-time,.video-js.vjs-layout-tiny .vjs-duration,.video-js.vjs-layout-tiny .vjs-playback-rate,.video-js.vjs-layout-tiny .vjs-remaining-time,.video-js.vjs-layout-tiny .vjs-time-divider,.video-js.vjs-layout-tiny .vjs-volume-control,.video-js.vjs-layout-x-small .vjs-current-time,.video-js.vjs-layout-x-small .vjs-duration,.video-js.vjs-layout-x-small .vjs-playback-rate,.video-js.vjs-layout-x-small .vjs-remaining-time,.video-js.vjs-layout-x-small .vjs-time-divider,.video-js.vjs-layout-x-small .vjs-volume-control{display:none}.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover{width:auto}.video-js.vjs-layout-tiny .vjs-progress-control,.video-js.vjs-layout-x-small .vjs-progress-control{display:none}.video-js.vjs-layout-x-small .vjs-custom-control-spacer{flex:auto;display:block}.video-js.vjs-layout-x-small.vjs-no-flex .vjs-custom-control-spacer{width:auto}.vjs-modal-dialog.vjs-text-track-settings{background-color:#2b333f;background-color:rgba(43,51,63,.75);color:#fff;height:70%}.vjs-text-track-settings .vjs-modal-dialog-content{display:table}.vjs-text-track-settings .vjs-track-settings-colors,.vjs-text-track-settings .vjs-track-settings-controls,.vjs-text-track-settings .vjs-track-settings-font{display:table-cell}.vjs-text-track-settings .vjs-track-settings-controls{text-align:right;vertical-align:bottom}@supports (display:grid){.vjs-text-track-settings .vjs-modal-dialog-content{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr;padding:20px 24px 0}.vjs-track-settings-controls .vjs-default-button{margin-bottom:20px}.vjs-text-track-settings .vjs-track-settings-controls{grid-column:1/-1}.vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,.vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content,.vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content{grid-template-columns:1fr}}.vjs-track-setting>select{margin-right:1em;margin-bottom:.5em}.vjs-text-track-settings fieldset{margin:5px;padding:3px;border:none}.vjs-text-track-settings fieldset span{display:inline-block}.vjs-text-track-settings fieldset span>select{max-width:7.3em}.vjs-text-track-settings legend{color:#fff;margin:0 0 5px}.vjs-text-track-settings .vjs-label{position:absolute;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);display:block;margin:0 0 5px;padding:0;border:0;height:1px;width:1px;overflow:hidden}.vjs-track-settings-controls button:active,.vjs-track-settings-controls button:focus{outline-style:solid;outline-width:medium;background-image:linear-gradient(0deg,#fff 88%,#73859f)}.vjs-track-settings-controls button:hover{color:rgba(43,51,63,.75)}.vjs-track-settings-controls button{background-color:#fff;background-image:linear-gradient(-180deg,#fff 88%,#73859f);color:#2b333f;cursor:pointer;border-radius:2px}.vjs-track-settings-controls .vjs-default-button{margin-right:1em}@media print{.video-js>:not(.vjs-tech):not(.vjs-poster){visibility:hidden}}.vjs-resize-manager{position:absolute;top:0;left:0;width:100%;height:100%;border:none;z-index:-1000}.js-focus-visible .video-js :focus:not(.focus-visible){outline:0}.video-js :focus:not(:focus-visible){outline:0} +.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;align-items:center;width:100%;transition:transform .6s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:1000px}@media screen and (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{transform:translate(0)}@supports (transform-style: preserve-3d){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{transform:translateZ(0)}}.carousel-item-next,.active.carousel-item-right{transform:translate(100%)}@supports (transform-style: preserve-3d){.carousel-item-next,.active.carousel-item-right{transform:translate3d(100%,0,0)}}.carousel-item-prev,.active.carousel-item-left{transform:translate(-100%)}@supports (transform-style: preserve-3d){.carousel-item-prev,.active.carousel-item-left{transform:translate3d(-100%,0,0)}}.carousel-fade .carousel-item{opacity:0;transition-duration:.6s;transition-property:opacity}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0}.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active,.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev{transform:translate(0)}@supports (transform-style: preserve-3d){.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active,.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev{transform:translateZ(0)}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#ffffff80}.carousel-indicators li:before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li:after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}:root{--font-stack-en: "Noto Sans", "Noto Sans Devanagari", "Noto Sans Tamil", "Noto Sans Bengali", "Noto Sans Malayalam", "Noto Sans Gurmukhi", "Noto Sans Gujarati", "Noto Sans Telugu", "Noto Sans Kannada", "Noto Sans Oriya", "Noto Nastaliq Urdu", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;--font-stack-hi: "Noto Sans Devanagari", "Noto Sans", "Noto Sans Tamil", "Noto Sans Bengali", "Noto Sans Malayalam", "Noto Sans Gurmukhi", "Noto Sans Gujarati", "Noto Sans Telugu", "Noto Sans Kannada", "Noto Sans Oriya", "Noto Nastaliq Urdu", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;--font-stack-ur: "Noto Sans", "Noto Nastaliq Urdu", "Noto Sans Devanagari", "Noto Sans Tamil", "Noto Sans Bengali", "Noto Sans Malayalam", "Noto Sans Gurmukhi", "Noto Sans Gujarati", "Noto Sans Telugu", "Noto Sans Kannada", "Noto Sans Oriya", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;--blue: #024f9d;--green: #008840;--orange: #e55a28;--red: #ff4558;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--yellow: #ffc107;--teal: #20c997;--cyan: #17a2b8;--black: #000000;--white: #ffffff;--gray-hs: 0, 0%;--gray: hsl(var(--gray-hs), 20%);--gray-0: hsl(var(--gray-hs), 95%);--gray-100: hsl(var(--gray-hs), 80%);--gray-200: hsl(var(--gray-hs), 60%);--gray-300: hsl(var(--gray-hs), 59%);--gray-400: hsl(var(--gray-hs), 40%);--gray-800: var(--gray);--primary-color: #024f9d;--secondary-color: #008840;--tertiary-color: #e55a28;--primary-0: #f3f7fa;--primary-100: #edf4f9;--primary-200: #80a7ce;--primary-250: #d3e7f4;--primary-300: #7ab4ee;--primary-400: var(--primary-color);--primary-600: #005391;--primary-800: #002e50;--secondary-0: #e1ffdf;--secondary-100: #00c786;--secondary-200: #07bc81;--secondary-400: var(--secondary-color);--tertiary-0: #feedd7;--tertiary-100: #ffa11d;--tertiary-400: var(--tertiary-color);--red-0: #fbccd1;--red-100: #ff6979;--red-400: var(--red);--info-color: var(--blue);--success-color: var(--green);--warning-color: var(--orange);--danger-color: var(--red);--body-background-color: var(--primary-0);--default-text-color: var(--gray-800);--bg-body: var(--primary-0);--body-color: var(--gray-800);--alpha0: 0;--alpha25: .25;--alpha50: .5;--alpha75: .75;--font-default-size: .875rem;--font-size-base: var(--font-default-size);--font-weight-light: 300;--font-weight-normal: 400;--font-weight-bold: 700;--font-weight-base: var(--font-weight-normal);--line-height-base: calc(var(--font-size-base) * 1.61803398875);--h1-font-size: 2rem;--h2-font-size: 1.75rem;--h3-font-size: 1.5rem;--h4-font-size: 1.2rem;--h5-font-size: 1rem;--h6-font-size: var(--font-size-base);--font-size-lg: var(--h4-font-size);--font-size-md: var(--h5-font-size);--font-size-normal: var(--font-size-base);--font-size-sm: .75rem;--font-size-xs: .625rem;--p-font-size: var(--font-size-base);--base-font-size: .875rem;--base-block-space: .5rem;--icon-svg-xxs: .75rem;--icon-svg-xs: calc(var(--base-block-space) * 2);--icon-svg-sm: calc(var(--base-block-space) * 3);--icon-svg-md: calc(var(--base-block-space) * 4);--icon-svg-lg: calc(var(--base-block-space) * 5);--icon-svg-xl: calc(var(--base-block-space) * 6);--rc-96C8DA: #96C8DA;--rc-0076FE: #0076FE;--rc-E5EDF5: #E5EDF5;--rc-7c7b7b: #7c7b7b;--rc-f5f5f5: #f5f5f5;--rc-fdfdfd: #fdfdfd;--rc-dedede: #dedede;--rc-F5F9FC: #F5F9FC;--rc-c4c4c4: #c4c4c4;--rc-d8d8d8: #d8d8d8;--rc-e9e5e5: #e9e5e5;--rc-dddddd: #dddddd;--rc-7b86f4: #7b86f4;--rc-d0d0d0: #d0d0d0;--rc-5c8db7: #5c8db7;--rc-91aecc: #91aecc;--rc-f9f9f9: #f9f9f9;--rc-d4d3d3: #d4d3d3;--rc-FAFAFA: #FAFAFA;--rc-866A6A: #866a6a;--rc-979797: #979797;--rc-e0e1e2: #e0e1e2;--rc-00BD7F: #00BD7F;--rc-9F9F9F: #9F9F9F;--rc-F3F8FF: #F3F8FF;--rc-80A7CE: #80A7CE;--rc-9b9b9b: #9b9b9b;--rc-2ca58d: #2ca58d;--rc-007AFF: #007AFF;--rc-bdbdbd: #bdbdbd;--rc-cecece: #cecece;--rc-2972a4: #2972a4;--rc-E0F1FD: #E0F1FD;--rc-C8D6EA: #C8D6EA;--rc-e2e3e5: #e2e3e5;--rc-BCBEC0: #BCBEC0;--rc-d4d4d5: #d4d4d5;--rc-d4d8da: #d4d8da;--rc-bfe1cf: #bfe1cf;--rc-289fd9: #289fd9;--rc-e68900: #e68900;--rc-2f4272: #2f4272;--rc-e0e0e0: #e0e0e0;--rc-2361ff: #2361ff;--rc-ffb300: #ffb300;--rc-d8dee2: #d8dee2;--rc-252525: #252525;--rc-fcf2d6: #fcf2d6;--rc-add8e6: #add8e6;--rc-afd9e7: #afd9e7;--rc-D9E4F2: #D9E4F2;--rc-88B7E6: #88B7E6;--rc-4a4a4a: #4a4a4a;--rc-fff6f6: #fff6f6;--rc-f7f7f7: #f7f7f7;--rc-66c7f4: #66c7f4;--rc-1B4785: #1B4785;--rc-a9a9a9: #a9a9a9;--rc-1b1c1d: #1b1c1d;--rc-dededf: #dededf;--rc-aaaaaa: #aaaaaa;--rc-042D55: #042D55;--rc-eeeeee: #eeeeee;--rc-bbbbbb: #bbbbbb;--rc-009D53: #009D53;--rc-E0EFFF: #E0EFFF;--rc-196DAB: #196DAB;--rc-c2c2c2: #c2c2c2;--rc-e5e5e5: #e5e5e5;--rc-c3c3c3: #c3c3c3;--rc-00abc7:#00abc7;--rc-FCE6E6:#FCE6E6;--rc-DECACA:#DECACA;--rc-424242:#424242;--rc-F5D7D7:#F5D7D7;--rc-F7FFF5:#F7FFF5;--rc-D3DED1:#D3DED1;--rc-EBF6E0:#EBF6E0;--rc-F6F6F6:#F6F6F6;--rc-33B6CC:#33B6CC;--rc-2dadc2:#2dadc2;--rc-0fbad6:#0fbad6;--rc-f7ffec:#f7ffec;--rc-d2ddc7:#d2ddc7;--rc-ffe1e1:#ffe1e1;--rc-e6c8c8:#e6c8c8;--rc-f56b56:#f56b56;--rc-dc523d:#dc523d;--rc-e65c47:#e65c47;--rc-565c70:#565c70;--rc-rgba-black: 0, 0, 0;--rc-rgba-white: 255, 255, 255;--rc-rgba-gray: 51, 51, 51;--rc-rgba-primary: 2, 79, 157;--rc-rgba-primary-300: 41, 114, 164;--rc-rgba-gray-300: 34, 36, 38;--rc-rgba-866a6a: 134, 106, 106;--rc-rgba-d0d0d0: 208, 208, 208;--rc-rgba-7b86f4: 123, 134, 244;--rc-rgba-C8D6EA: 200, 214, 234;--primary-theme: #FFD954;--sbt-theme-bg: var(--primary-theme);--sbt-header-bg: var(--primary-theme);--sbt-body-bg: #F2F2EA;--sbt-body-bg2: #E9E8D9;--sbt-primary-bg: var(--primary-theme);--sbt-border-chapter: #E4E8EE;--lazyload-bg:#f6f7f8;--grey-nuance-lighter: #eeeeee;--grey-nuance-darker: #dddddd;--fade-grey: #e8e8e8}[class^=sb-icon-],[class*=sb-icon-]{font-family:icomoon!important;speak:none;font-style:normal;font-weight:400;font-feature-settings:normal;font-variant:normal;font-size:inherit;text-transform:none;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.sb-icon-preview:before{content:"\e909"}.sb-icon-refresh:before{content:"\e90c"}.sb-icon-reviewer:before{content:"\e90a"}.sb-icon-folder:before{content:"\e902"}.sb-icon-comment:before{content:"\e908"}.sb-icon-send:before{content:"\e90b"}.sb-icon-book:before{content:"\e900"}.sb-icon-content:before{content:"\e901"}.sb-icon-collection:before{content:"\e903"}.sb-icon-doc:before{content:"\e904"}.sb-icon-mp3:before{content:"\e905"}.sb-icon-open-book:before{content:"\e906"}.sb-icon-video:before{content:"\e907"}.sb-lock-icon{cursor:pointer}[class*=sb-icon-primary]{background-color:#024f9d;background-color:var(--primary-color)}[class*=sb-icon-secondary]{background-color:#008840;background-color:var(--secondary-color)}[class*=sb-icon-warning]{background-color:#e55a28;background-color:var(--tertiary-color)}[class*=sb-icon-error]{background-color:#ff4558;background-color:var(--red)}.info-icon{background-color:#666;background-color:var(--gray-400);-webkit-mask-size:contain;-webkit-mask-position:50% 50%;-webkit-mask-repeat:no-repeat;mask-size:contain;mask-position:50% 50%;mask-repeat:no-repeat;width:1rem;height:1rem;margin-left:.25rem;display:inline-block;vertical-align:bottom}.icon-arrow-round-down{transform:rotate(90deg)}.icon-svg{position:relative;top:.0625rem;display:inline-block;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;opacity:1}.icon-svg svg.icon{width:100%;height:inherit}.icon-svg--xxs{width:.75rem;width:var(--icon-svg-xxs);height:.75rem;height:var(--icon-svg-xxs)}.icon-svg--xs{width:1rem;width:var(--icon-svg-xs);height:1rem;height:var(--icon-svg-xs)}.icon-svg--sm{width:1.5rem;width:var(--icon-svg-sm);height:1.5rem;height:var(--icon-svg-sm)}.icon-svg--md{width:2rem;width:var(--icon-svg-md);height:2rem;height:var(--icon-svg-md)}.icon-svg--lg{width:2.5rem;width:var(--icon-svg-lg);height:2.5rem;height:var(--icon-svg-lg)}.icon-svg--xl{width:3rem;width:var(--icon-svg-xl);height:3rem;height:var(--icon-svg-xl)}.icon-svg--white{fill:#fff;fill:var(--white)}.icon-svg--primary{fill:#024f9d;fill:var(--primary-color)}.icon-svg--secondary{fill:#008840;fill:var(--secondary-color)}.icon-svg--tertiary{fill:#e55a28;fill:var(--tertiary-color)}.icon-svg--red{fill:#ff4558;fill:var(--red-400)}.icon-svg--gray{fill:#333;fill:var(--gray-800)}*,*:before,*:after{box-sizing:border-box}html{font-family:inherit;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:Noto Sans,Noto Sans Devanagari,Noto Sans Tamil,Noto Sans Bengali,Noto Sans Malayalam,Noto Sans Gurmukhi,Noto Sans Gujarati,Noto Sans Telugu,Noto Sans Kannada,Noto Sans Oriya,Noto Nastaliq Urdu,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-family:var(--font-stack-en);font-size:1rem;font-weight:400;line-height:1.5;color:#333;color:var(--gray-800);text-align:left;background:#E5EDF5}[tabindex="-1"]:focus{outline:none!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:theme-color("primary");text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):hover,a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}pre,code,kbd,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}a,area,button,[role=button],input:not([type=range]),label,select,summary,textarea{touch-action:manipulation}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#868e96;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:0px dotted;outline:0px auto transparent}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{box-sizing:border-box;padding:0}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item}template{display:none}[hidden]{display:none!important}.sb-bg-color-gray-hs{background:0,0%!important;background:var(--gray-hs)!important}.sb-color-gray-hs{color:0,0%!important;color:var(--gray-hs)!important}.sb-bg-color-gray{background:hsl(0,0%,20%)!important;background:var(--gray)!important}.sb-color-gray{color:#333!important;color:var(--gray)!important}.sb-bg-color-gray-0{background:hsl(0,0%,95%)!important;background:var(--gray-0)!important}.sb-color-gray-0{color:#f2f2f2!important;color:var(--gray-0)!important}.sb-bg-color-gray-100{background:hsl(0,0%,80%)!important;background:var(--gray-100)!important}.sb-color-gray-100{color:#ccc!important;color:var(--gray-100)!important}.sb-bg-color-gray-200{background:hsl(0,0%,60%)!important;background:var(--gray-200)!important}.sb-color-gray-200{color:#999!important;color:var(--gray-200)!important}.sb-bg-color-gray-300{background:hsl(0,0%,59%)!important;background:var(--gray-300)!important}.sb-color-gray-300{color:#969696!important;color:var(--gray-300)!important}.sb-bg-color-gray-400{background:hsl(0,0%,40%)!important;background:var(--gray-400)!important}.sb-color-gray-400{color:#666!important;color:var(--gray-400)!important}.sb-bg-color-gray-800{background:hsl(0,0%,20%)!important;background:var(--gray-800)!important}.sb-color-gray-800{color:#333!important;color:var(--gray-800)!important}.sb-bg-color-primary{background:#024f9d!important;background:var(--primary-400)!important}.sb-color-primary{color:#024f9d!important;color:var(--primary-400)!important}.sb-bg-color-primary-0{background:#f3f7fa!important;background:var(--primary-0)!important}.sb-color-primary-0{color:#f3f7fa!important;color:var(--primary-0)!important}.sb-bg-color-primary-100{background:#edf4f9!important;background:var(--primary-100)!important}.sb-color-primary-100{color:#edf4f9!important;color:var(--primary-100)!important}.sb-bg-color-primary-200{background:#80a7ce!important;background:var(--primary-200)!important}.sb-color-primary-200{color:#80a7ce!important;color:var(--primary-200)!important}.sb-bg-color-primary-250{background:#d3e7f4!important;background:var(--primary-250)!important}.sb-color-primary-250{color:#d3e7f4!important;color:var(--primary-250)!important}.sb-bg-color-primary-300{background:#7ab4ee!important;background:var(--primary-300)!important}.sb-color-primary-300{color:#7ab4ee!important;color:var(--primary-300)!important}.sb-bg-color-primary-400{background:#024f9d!important;background:var(--primary-400)!important}.sb-color-primary-400{color:#024f9d!important;color:var(--primary-400)!important}.sb-bg-color-primary-600{background:#005391!important;background:var(--primary-600)!important}.sb-color-primary-600{color:#005391!important;color:var(--primary-600)!important}.sb-bg-color-primary-800{background:#002e50!important;background:var(--primary-800)!important}.sb-color-primary-800{color:#002e50!important;color:var(--primary-800)!important}.sb-bg-color-secondary{background:#008840!important;background:var(--green)!important}.sb-color-secondary{color:#008840!important;color:var(--green)!important}.sb-bg-color-secondary-0{background:#e1ffdf!important;background:var(--secondary-0)!important}.sb-color-secondary-0{color:#e1ffdf!important;color:var(--secondary-0)!important}.sb-bg-color-secondary-100{background:#00c786!important;background:var(--secondary-100)!important}.sb-color-secondary-100{color:#00c786!important;color:var(--secondary-100)!important}.sb-bg-color-secondary-200{background:#07bc81!important;background:var(--secondary-200)!important}.sb-color-secondary-200{color:#07bc81!important;color:var(--secondary-200)!important}.sb-bg-color-secondary-400{background:#008840!important;background:var(--secondary-400)!important}.sb-color-secondary-400{color:#008840!important;color:var(--secondary-400)!important}.sb-bg-color-tertiary{background:#e55a28!important;background:var(--orange)!important}.sb-color-tertiary{color:#e55a28!important;color:var(--orange)!important}.sb-bg-color-tertiary-0{background:#feedd7!important;background:var(--tertiary-0)!important}.sb-color-tertiary-0{color:#feedd7!important;color:var(--tertiary-0)!important}.sb-bg-color-tertiary-100{background:#ffa11d!important;background:var(--tertiary-100)!important}.sb-color-tertiary-100{color:#ffa11d!important;color:var(--tertiary-100)!important}.sb-bg-color-tertiary-400{background:#e55a28!important;background:var(--tertiary-400)!important}.sb-color-tertiary-400{color:#e55a28!important;color:var(--tertiary-400)!important}.sb-bg-color-red{background:#ff4558!important;background:var(--red)!important}.sb-color-red{color:#ff4558!important;color:var(--red)!important}.sb-bg-color-red-0{background:#fbccd1!important;background:var(--red-0)!important}.sb-color-red-0{color:#fbccd1!important;color:var(--red-0)!important}.sb-bg-color-red-100{background:#ff6979!important;background:var(--red-100)!important}.sb-color-red-100{color:#ff6979!important;color:var(--red-100)!important}.sb-bg-color-red-400{background:#ff4558!important;background:var(--red-400)!important}.sb-color-red-400{color:#ff4558!important;color:var(--red-400)!important}.sb-bg-color-info{background:#024f9d!important;background:var(--primary-400)!important}.sb-color-info{color:#024f9d!important;color:var(--primary-400)!important}.sb-bg-color-success{background:#07bc81!important;background:var(--secondary-200)!important}.sb-color-success{color:#07bc81!important;color:var(--secondary-200)!important}.sb-bg-color-warning{background:#e55a28!important;background:var(--tertiary-400)!important}.sb-color-warning{color:#e55a28!important;color:var(--tertiary-400)!important}.sb-bg-color-error{background:#ff4558!important;background:var(--red-400)!important}.sb-color-error{color:#ff4558!important;color:var(--red-400)!important}.sb-bg-color-white{background:#ffffff!important;background:var(--white)!important}.sb-color-white{color:#fff!important;color:var(--white)!important}.sb-bg-color-black{background:#000000!important;background:var(--black)!important}.sb-color-black{color:#000!important;color:var(--black)!important}.sb-bg-white{background:#ffffff;background:var(--white)}.sb-bg-none{background:none!important}.color-3,.sb-text-gray-800{color:#333;color:var(--gray-800)}.sb-bg-color-black{background-color:#000;background-color:var(--black)}.bg-contain{background-position:center;background-repeat:no-repeat;background-size:contain}.opacity0{opacity:0!important;opacity:var(--alpha0)!important}.opacity10{opacity:var(--alpha10)!important}.opacity20{opacity:var(--alpha20)!important}.opacity25{opacity:.25!important;opacity:var(--alpha25)!important}.opacity30{opacity:var(--alpha30)!important}.opacity40{opacity:var(--alpha40)!important}.opacity50{opacity:.5!important;opacity:var(--alpha50)!important}.opacity60{opacity:var(--alpha60)!important}.opacity70{opacity:var(--alpha70)!important}.opacity75{opacity:.75!important;opacity:var(--alpha75)!important}.opacity80{opacity:var(--alpha80)!important}.opacity90{opacity:var(--alpha90)!important}.opacity100{opacity:var(--alpha100)!important}.w-100{width:100%;max-width:100%}.w-90{width:90%;max-width:90%}.w-80{width:80%;max-width:80%}.w-75{width:75%;max-width:75%}.w-70{width:70%;max-width:70%}.w-60{width:60%;max-width:60%}.w-50{width:50%;max-width:50%}.w-40{width:40%;max-width:40%}.w-30{width:30%;max-width:30%}.w-25{width:25%;max-width:25%}.w-20{width:20%;max-width:20%}.w-auto{width:auto;max-width:auto}.h-100{height:100%;max-height:100%}.height-auto{height:auto!important}.sb-mw-100{max-width:100%!important}.min-height-auto{min-height:auto!important}:root{--font-stack-en: "Noto Sans", "Noto Sans Devanagari", "Noto Sans Tamil", "Noto Sans Bengali", "Noto Sans Malayalam", "Noto Sans Gurmukhi", "Noto Sans Gujarati", "Noto Sans Telugu", "Noto Sans Kannada", "Noto Sans Oriya", "Noto Nastaliq Urdu", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;--font-stack-hi: "Noto Sans Devanagari", "Noto Sans", "Noto Sans Tamil", "Noto Sans Bengali", "Noto Sans Malayalam", "Noto Sans Gurmukhi", "Noto Sans Gujarati", "Noto Sans Telugu", "Noto Sans Kannada", "Noto Sans Oriya", "Noto Nastaliq Urdu", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;--font-stack-ur: "Noto Sans", "Noto Nastaliq Urdu", "Noto Sans Devanagari", "Noto Sans Tamil", "Noto Sans Bengali", "Noto Sans Malayalam", "Noto Sans Gurmukhi", "Noto Sans Gujarati", "Noto Sans Telugu", "Noto Sans Kannada", "Noto Sans Oriya", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;--blue: #024f9d;--green: #008840;--orange: #e55a28;--red: #ff4558;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--yellow: #ffc107;--teal: #20c997;--cyan: #17a2b8;--black: #000000;--white: #ffffff;--gray-hs: 0, 0%;--gray: hsl(var(--gray-hs), 20%);--gray-0: hsl(var(--gray-hs), 95%);--gray-100: hsl(var(--gray-hs), 80%);--gray-200: hsl(var(--gray-hs), 60%);--gray-300: hsl(var(--gray-hs), 59%);--gray-400: hsl(var(--gray-hs), 40%);--gray-800: var(--gray);--primary-color: #024f9d;--secondary-color: #008840;--tertiary-color: #e55a28;--primary-0: #f3f7fa;--primary-100: #edf4f9;--primary-200: #80a7ce;--primary-250: #d3e7f4;--primary-300: #7ab4ee;--primary-400: var(--primary-color);--primary-600: #005391;--primary-800: #002e50;--secondary-0: #e1ffdf;--secondary-100: #00c786;--secondary-200: #07bc81;--secondary-400: var(--secondary-color);--tertiary-0: #feedd7;--tertiary-100: #ffa11d;--tertiary-400: var(--tertiary-color);--red-0: #fbccd1;--red-100: #ff6979;--red-400: var(--red);--info-color: var(--blue);--success-color: var(--green);--warning-color: var(--orange);--danger-color: var(--red);--body-background-color: var(--primary-0);--default-text-color: var(--gray-800);--bg-body: var(--primary-0);--body-color: var(--gray-800);--alpha0: 0;--alpha25: .25;--alpha50: .5;--alpha75: .75;--font-default-size: .875rem;--font-size-base: var(--font-default-size);--font-weight-light: 300;--font-weight-normal: 400;--font-weight-bold: 700;--font-weight-base: var(--font-weight-normal);--line-height-base: calc(var(--font-size-base) * 1.61803398875);--h1-font-size: 2rem;--h2-font-size: 1.75rem;--h3-font-size: 1.5rem;--h4-font-size: 1.2rem;--h5-font-size: 1rem;--h6-font-size: var(--font-size-base);--font-size-lg: var(--h4-font-size);--font-size-md: var(--h5-font-size);--font-size-normal: var(--font-size-base);--font-size-sm: .75rem;--font-size-xs: .625rem;--p-font-size: var(--font-size-base);--base-font-size: .875rem;--base-block-space: .5rem;--icon-svg-xxs: .75rem;--icon-svg-xs: calc(var(--base-block-space) * 2);--icon-svg-sm: calc(var(--base-block-space) * 3);--icon-svg-md: calc(var(--base-block-space) * 4);--icon-svg-lg: calc(var(--base-block-space) * 5);--icon-svg-xl: calc(var(--base-block-space) * 6);--rc-96C8DA: #96C8DA;--rc-0076FE: #0076FE;--rc-E5EDF5: #E5EDF5;--rc-7c7b7b: #7c7b7b;--rc-f5f5f5: #f5f5f5;--rc-fdfdfd: #fdfdfd;--rc-dedede: #dedede;--rc-F5F9FC: #F5F9FC;--rc-c4c4c4: #c4c4c4;--rc-d8d8d8: #d8d8d8;--rc-e9e5e5: #e9e5e5;--rc-dddddd: #dddddd;--rc-7b86f4: #7b86f4;--rc-d0d0d0: #d0d0d0;--rc-5c8db7: #5c8db7;--rc-91aecc: #91aecc;--rc-f9f9f9: #f9f9f9;--rc-d4d3d3: #d4d3d3;--rc-FAFAFA: #FAFAFA;--rc-866A6A: #866a6a;--rc-979797: #979797;--rc-e0e1e2: #e0e1e2;--rc-00BD7F: #00BD7F;--rc-9F9F9F: #9F9F9F;--rc-F3F8FF: #F3F8FF;--rc-80A7CE: #80A7CE;--rc-9b9b9b: #9b9b9b;--rc-2ca58d: #2ca58d;--rc-007AFF: #007AFF;--rc-bdbdbd: #bdbdbd;--rc-cecece: #cecece;--rc-2972a4: #2972a4;--rc-E0F1FD: #E0F1FD;--rc-C8D6EA: #C8D6EA;--rc-e2e3e5: #e2e3e5;--rc-BCBEC0: #BCBEC0;--rc-d4d4d5: #d4d4d5;--rc-d4d8da: #d4d8da;--rc-bfe1cf: #bfe1cf;--rc-289fd9: #289fd9;--rc-e68900: #e68900;--rc-2f4272: #2f4272;--rc-e0e0e0: #e0e0e0;--rc-2361ff: #2361ff;--rc-ffb300: #ffb300;--rc-d8dee2: #d8dee2;--rc-252525: #252525;--rc-fcf2d6: #fcf2d6;--rc-add8e6: #add8e6;--rc-afd9e7: #afd9e7;--rc-D9E4F2: #D9E4F2;--rc-88B7E6: #88B7E6;--rc-4a4a4a: #4a4a4a;--rc-fff6f6: #fff6f6;--rc-f7f7f7: #f7f7f7;--rc-66c7f4: #66c7f4;--rc-1B4785: #1B4785;--rc-a9a9a9: #a9a9a9;--rc-1b1c1d: #1b1c1d;--rc-dededf: #dededf;--rc-aaaaaa: #aaaaaa;--rc-042D55: #042D55;--rc-eeeeee: #eeeeee;--rc-bbbbbb: #bbbbbb;--rc-009D53: #009D53;--rc-E0EFFF: #E0EFFF;--rc-196DAB: #196DAB;--rc-c2c2c2: #c2c2c2;--rc-e5e5e5: #e5e5e5;--rc-c3c3c3: #c3c3c3;--rc-00abc7:#00abc7;--rc-FCE6E6:#FCE6E6;--rc-DECACA:#DECACA;--rc-424242:#424242;--rc-F5D7D7:#F5D7D7;--rc-F7FFF5:#F7FFF5;--rc-D3DED1:#D3DED1;--rc-EBF6E0:#EBF6E0;--rc-F6F6F6:#F6F6F6;--rc-33B6CC:#33B6CC;--rc-2dadc2:#2dadc2;--rc-0fbad6:#0fbad6;--rc-f7ffec:#f7ffec;--rc-d2ddc7:#d2ddc7;--rc-ffe1e1:#ffe1e1;--rc-e6c8c8:#e6c8c8;--rc-f56b56:#f56b56;--rc-dc523d:#dc523d;--rc-e65c47:#e65c47;--rc-565c70:#565c70;--rc-rgba-black: 0, 0, 0;--rc-rgba-white: 255, 255, 255;--rc-rgba-gray: 51, 51, 51;--rc-rgba-primary: 2, 79, 157;--rc-rgba-primary-300: 41, 114, 164;--rc-rgba-gray-300: 34, 36, 38;--rc-rgba-866a6a: 134, 106, 106;--rc-rgba-d0d0d0: 208, 208, 208;--rc-rgba-7b86f4: 123, 134, 244;--rc-rgba-C8D6EA: 200, 214, 234;--primary-theme: #FFD954;--sbt-theme-bg: var(--primary-theme);--sbt-header-bg: var(--primary-theme);--sbt-body-bg: #F2F2EA;--sbt-body-bg2: #E9E8D9;--sbt-primary-bg: var(--primary-theme);--sbt-border-chapter: #E4E8EE;--lazyload-bg:#f6f7f8;--grey-nuance-lighter: #eeeeee;--grey-nuance-darker: #dddddd;--fade-grey: #e8e8e8}h1,.sb-h1{font-size:2rem;font-size:var(--h1-font-size);line-height:calc(2rem * 1.6180339888);line-height:calc(var(--h1-font-size) * 1.6180339888);margin:0;padding:0}h2,.sb-h2{font-size:1.75rem;font-size:var(--h2-font-size);line-height:calc(1.75rem * 1.6180339888);line-height:calc(var(--h2-font-size) * 1.6180339888);margin:0;padding:0}h3,.sb-h3{font-size:1.5rem;font-size:var(--h3-font-size);line-height:calc(1.5rem * 1.6180339888);line-height:calc(var(--h3-font-size) * 1.6180339888);margin:0;padding:0}h4,.sb-h4{font-size:1.2rem;font-size:var(--h4-font-size);line-height:calc(1.2rem * 1.6180339888);line-height:calc(var(--h4-font-size) * 1.6180339888);margin:0;padding:0}h5,.sb-h5{font-size:1rem;font-size:var(--h5-font-size);line-height:calc(1rem * 1.6180339888);line-height:calc(var(--h5-font-size) * 1.6180339888);margin:0;padding:0}h6,.sb-h6{font-size:.875rem;font-size:var(--h6-font-size);line-height:calc(.875rem * 1.6180339888);line-height:calc(var(--h6-font-size) * 1.6180339888);margin:0;padding:0}.fmedium{font-size:1rem!important;font-size:var(--font-size-md)!important}.fnormal{font-size:.875rem!important;font-size:var(--font-size-normal)!important}.fsmall{font-size:.75rem!important;font-size:var(--font-size-sm)!important}.fxsmall{font-size:.625rem!important;font-size:var(--font-size-xs)!important}.fs-0-785{font-size:.785rem!important}.fs-0-92{font-size:.9286rem!important}.fs-1{font-size:1rem!important}.fs-1-143{font-size:1.143rem!important}.fs-1-16{font-size:1.16rem!important}.fs-1-286{font-size:1.286rem!important}.fs-1-3{font-size:1.3rem!important}.fs-1-429{font-size:1.429rem!important}.fs-1-5{font-size:1.5rem!important}.fs-1-7{font-size:1.7rem!important}.fs-2{font-size:2rem!important}.fs-2-5{font-size:2.5rem!important}.fs-2-57{font-size:2.571rem!important}.fs-3{font-size:3rem!important}.fs-3-5{font-size:3.5rem!important}.text-capitalize{text-transform:capitalize!important}.text-uppercase{text-transform:uppercase!important}.text-lowercase,.text-sentencecase{text-transform:lowercase!important}.text-inherit{text-transform:inherit!important}.text-sentencecase:first-letter{text-transform:uppercase!important}.font-weight-bold{font-weight:700!important}.font-weight-normal{font-weight:400!important}.break-word{word-break:break-word!important}.break-all{word-break:break-all!important}.cursor-pointer{cursor:pointer!important}.cursor-text{cursor:text!important}.va-bottom{vertical-align:bottom!important}.va-middle{vertical-align:middle!important}.va-top{vertical-align:top!important}p,.sb-para{font-size:.875rem;font-size:var(--p-font-size);line-height:calc(.875rem * 1.6180339888);line-height:calc(var(--p-font-size) * 1.6180339888)}.font-italic{font-style:italic}a,a:hover{color:#024f9d;color:var(--primary-color)}a:focus{outline:0}.white-space-nowrap{white-space:nowrap!important}.text-center{text-align:center!important}.text-right{text-align:right!important}html[dir=rtl] .text-right,.text-left{text-align:left!important}html[dir=rtl] .text-left{text-align:right!important}.text-underline{text-decoration:underline!important}.lineHeight-normal{line-height:normal!important}.sb__ellipsis{-webkit-box-orient:vertical;display:-webkit-box;-webkit-line-clamp:1;overflow:hidden;text-overflow:ellipsis;word-break:break-word}.sb__ellipsis--two{-webkit-line-clamp:2}.sb__ellipsis--three{-webkit-line-clamp:3}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;cursor:pointer}.d-inline-block{display:inline-block!important}.d-block,.show{display:block!important}.d-flex,.flex-ai-jc-center,.flex-jc-ai-center{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none,.hide{display:none!important}@media only screen and (max-width: 1023px){[class*="mobile hidden"],[class*="tablet only"]:not(.mobile),[class*="computer only"]:not(.mobile),[class*="large screen only"]:not(.mobile),[class*="widescreen only"]:not(.mobile),[class*="or lower hidden"]{display:none!important}}@media only screen and (min-width: 1024px){[class*="mobile only"]:not(.computer),[class*="tablet only"]:not(.computer),[class*="computer hidden"],[class*="large screen only"]:not(.computer),[class*="widescreen only"]:not(.computer),[class*="or lower hidden"]:not(.tablet):not(.mobile){display:none!important}}.relative{position:relative!important}.absolute{position:absolute!important}.fixed{position:fixed!important}.right-0{right:0!important}html[dir=rtl] .right-0,.left-0{left:0!important}html[dir=rtl] .left-0{right:0!important}.top-50{top:50%!important;transform:translateY(-50%)}.bottom-0{bottom:0!important}.bottom-5{bottom:5px!important}.sb-sticky-bottom,.sb-sticky-top{position:sticky;z-index:999999}.sb-sticky-bottom{bottom:0}.sb-sticky-top{top:0}.zindex-1{z-index:1!important}.zindex-2{z-index:2!important}.zindex-9{z-index:9!important}.zindex-99{z-index:99!important}.zindex-999{z-index:999!important}.zindex-9999{z-index:9999!important}.zindex-99999{z-index:99999!important}.m-0{margin:0rem!important}.mt-0{margin-top:0rem!important}.mb-0{margin-bottom:0rem!important}.my-0{margin-top:0rem!important;margin-bottom:0rem!important}.mx-0{margin-left:0rem!important;margin-right:0rem!important}.ml-0{margin-left:0rem!important}html[dir=rtl] .ml-0{margin-right:0rem!important;margin-left:0!important}.mr-0{margin-right:0rem!important}html[dir=rtl] .mr-0{margin-left:0rem!important;margin-right:0!important}.m-2{margin:.125rem!important}.mt-2{margin-top:.125rem!important}.mb-2{margin-bottom:.125rem!important}.my-2{margin-top:.125rem!important;margin-bottom:.125rem!important}.mx-2{margin-left:.125rem!important;margin-right:.125rem!important}.ml-2{margin-left:.125rem!important}html[dir=rtl] .ml-2{margin-right:.125rem!important;margin-left:0!important}.mr-2{margin-right:.125rem!important}html[dir=rtl] .mr-2{margin-left:.125rem!important;margin-right:0!important}.m-3{margin:.1875rem!important}.mt-3{margin-top:.1875rem!important}.mb-3{margin-bottom:.1875rem!important}.my-3{margin-top:.1875rem!important;margin-bottom:.1875rem!important}.mx-3{margin-left:.1875rem!important;margin-right:.1875rem!important}.ml-3{margin-left:.1875rem!important}html[dir=rtl] .ml-3{margin-right:.1875rem!important;margin-left:0!important}.mr-3{margin-right:.1875rem!important}html[dir=rtl] .mr-3{margin-left:.1875rem!important;margin-right:0!important}.m-4{margin:.25rem!important}.mt-4{margin-top:.25rem!important}.mb-4{margin-bottom:.25rem!important}.my-4{margin-top:.25rem!important;margin-bottom:.25rem!important}.mx-4{margin-left:.25rem!important;margin-right:.25rem!important}.ml-4{margin-left:.25rem!important}html[dir=rtl] .ml-4{margin-right:.25rem!important;margin-left:0!important}.mr-4{margin-right:.25rem!important}html[dir=rtl] .mr-4{margin-left:.25rem!important;margin-right:0!important}.m-5{margin:.3125rem!important}.mt-5{margin-top:.3125rem!important}.mb-5{margin-bottom:.3125rem!important}.my-5{margin-top:.3125rem!important;margin-bottom:.3125rem!important}.mx-5{margin-left:.3125rem!important;margin-right:.3125rem!important}.ml-5{margin-left:.3125rem!important}html[dir=rtl] .ml-5{margin-right:.3125rem!important;margin-left:0!important}.mr-5{margin-right:.3125rem!important}html[dir=rtl] .mr-5{margin-left:.3125rem!important;margin-right:0!important}.m-8{margin:.5rem!important}.mt-8{margin-top:.5rem!important}.mb-8{margin-bottom:.5rem!important}.my-8{margin-top:.5rem!important;margin-bottom:.5rem!important}.mx-8{margin-left:.5rem!important;margin-right:.5rem!important}.ml-8{margin-left:.5rem!important}html[dir=rtl] .ml-8{margin-right:.5rem!important;margin-left:0!important}.mr-8{margin-right:.5rem!important}html[dir=rtl] .mr-8{margin-left:.5rem!important;margin-right:0!important}.m-10{margin:.625rem!important}.mt-10{margin-top:.625rem!important}.mb-10{margin-bottom:.625rem!important}.my-10{margin-top:.625rem!important;margin-bottom:.625rem!important}.mx-10{margin-left:.625rem!important;margin-right:.625rem!important}.ml-10{margin-left:.625rem!important}html[dir=rtl] .ml-10{margin-right:.625rem!important;margin-left:0!important}.mr-10{margin-right:.625rem!important}html[dir=rtl] .mr-10{margin-left:.625rem!important;margin-right:0!important}.m-12{margin:.75rem!important}.mt-12{margin-top:.75rem!important}.mb-12{margin-bottom:.75rem!important}.my-12{margin-top:.75rem!important;margin-bottom:.75rem!important}.mx-12{margin-left:.75rem!important;margin-right:.75rem!important}.ml-12{margin-left:.75rem!important}html[dir=rtl] .ml-12{margin-right:.75rem!important;margin-left:0!important}.mr-12{margin-right:.75rem!important}html[dir=rtl] .mr-12{margin-left:.75rem!important;margin-right:0!important}.m-15{margin:.9375rem!important}.mt-15{margin-top:.9375rem!important}.mb-15{margin-bottom:.9375rem!important}.my-15{margin-top:.9375rem!important;margin-bottom:.9375rem!important}.mx-15{margin-left:.9375rem!important;margin-right:.9375rem!important}.ml-15{margin-left:.9375rem!important}html[dir=rtl] .ml-15{margin-right:.9375rem!important;margin-left:0!important}.mr-15{margin-right:.9375rem!important}html[dir=rtl] .mr-15{margin-left:.9375rem!important;margin-right:0!important}.m-16{margin:1rem!important}.mt-16{margin-top:1rem!important}.mb-16{margin-bottom:1rem!important}.my-16{margin-top:1rem!important;margin-bottom:1rem!important}.mx-16{margin-left:1rem!important;margin-right:1rem!important}.ml-16{margin-left:1rem!important}html[dir=rtl] .ml-16{margin-right:1rem!important;margin-left:0!important}.mr-16{margin-right:1rem!important}html[dir=rtl] .mr-16{margin-left:1rem!important;margin-right:0!important}.m-20{margin:1.25rem!important}.mt-20{margin-top:1.25rem!important}.mb-20{margin-bottom:1.25rem!important}.my-20{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.mx-20{margin-left:1.25rem!important;margin-right:1.25rem!important}.ml-20{margin-left:1.25rem!important}html[dir=rtl] .ml-20{margin-right:1.25rem!important;margin-left:0!important}.mr-20{margin-right:1.25rem!important}html[dir=rtl] .mr-20{margin-left:1.25rem!important;margin-right:0!important}.m-24{margin:1.5rem!important}.mt-24{margin-top:1.5rem!important}.mb-24{margin-bottom:1.5rem!important}.my-24{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.mx-24{margin-left:1.5rem!important;margin-right:1.5rem!important}.ml-24{margin-left:1.5rem!important}html[dir=rtl] .ml-24{margin-right:1.5rem!important;margin-left:0!important}.mr-24{margin-right:1.5rem!important}html[dir=rtl] .mr-24{margin-left:1.5rem!important;margin-right:0!important}.m-30{margin:1.875rem!important}.mt-30{margin-top:1.875rem!important}.mb-30{margin-bottom:1.875rem!important}.my-30{margin-top:1.875rem!important;margin-bottom:1.875rem!important}.mx-30{margin-left:1.875rem!important;margin-right:1.875rem!important}.ml-30{margin-left:1.875rem!important}html[dir=rtl] .ml-30{margin-right:1.875rem!important;margin-left:0!important}.mr-30{margin-right:1.875rem!important}html[dir=rtl] .mr-30{margin-left:1.875rem!important;margin-right:0!important}.m-32{margin:2rem!important}.mt-32{margin-top:2rem!important}.mb-32{margin-bottom:2rem!important}.my-32{margin-top:2rem!important;margin-bottom:2rem!important}.mx-32{margin-left:2rem!important;margin-right:2rem!important}.ml-32{margin-left:2rem!important}html[dir=rtl] .ml-32{margin-right:2rem!important;margin-left:0!important}.mr-32{margin-right:2rem!important}html[dir=rtl] .mr-32{margin-left:2rem!important;margin-right:0!important}.m-40{margin:2.5rem!important}.mt-40{margin-top:2.5rem!important}.mb-40{margin-bottom:2.5rem!important}.my-40{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.mx-40{margin-left:2.5rem!important;margin-right:2.5rem!important}.ml-40{margin-left:2.5rem!important}html[dir=rtl] .ml-40{margin-right:2.5rem!important;margin-left:0!important}.mr-40{margin-right:2.5rem!important}html[dir=rtl] .mr-40{margin-left:2.5rem!important;margin-right:0!important}.m-48{margin:3rem!important}.mt-48{margin-top:3rem!important}.mb-48{margin-bottom:3rem!important}.my-48{margin-top:3rem!important;margin-bottom:3rem!important}.mx-48{margin-left:3rem!important;margin-right:3rem!important}.ml-48{margin-left:3rem!important}html[dir=rtl] .ml-48{margin-right:3rem!important;margin-left:0!important}.mr-48{margin-right:3rem!important}html[dir=rtl] .mr-48{margin-left:3rem!important;margin-right:0!important}.m-50{margin:3.125rem!important}.mt-50{margin-top:3.125rem!important}.mb-50{margin-bottom:3.125rem!important}.my-50{margin-top:3.125rem!important;margin-bottom:3.125rem!important}.mx-50{margin-left:3.125rem!important;margin-right:3.125rem!important}.ml-50{margin-left:3.125rem!important}html[dir=rtl] .ml-50{margin-right:3.125rem!important;margin-left:0!important}.mr-50{margin-right:3.125rem!important}html[dir=rtl] .mr-50{margin-left:3.125rem!important;margin-right:0!important}.m-52{margin:3.25rem!important}.mt-52{margin-top:3.25rem!important}.mb-52{margin-bottom:3.25rem!important}.my-52{margin-top:3.25rem!important;margin-bottom:3.25rem!important}.mx-52{margin-left:3.25rem!important;margin-right:3.25rem!important}.ml-52{margin-left:3.25rem!important}html[dir=rtl] .ml-52{margin-right:3.25rem!important;margin-left:0!important}.mr-52{margin-right:3.25rem!important}html[dir=rtl] .mr-52{margin-left:3.25rem!important;margin-right:0!important}.m-56{margin:3.5rem!important}.mt-56{margin-top:3.5rem!important}.mb-56{margin-bottom:3.5rem!important}.my-56{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.mx-56{margin-left:3.5rem!important;margin-right:3.5rem!important}.ml-56{margin-left:3.5rem!important}html[dir=rtl] .ml-56{margin-right:3.5rem!important;margin-left:0!important}.mr-56{margin-right:3.5rem!important}html[dir=rtl] .mr-56{margin-left:3.5rem!important;margin-right:0!important}.m-60{margin:3.75rem!important}.mt-60{margin-top:3.75rem!important}.mb-60{margin-bottom:3.75rem!important}.my-60{margin-top:3.75rem!important;margin-bottom:3.75rem!important}.mx-60{margin-left:3.75rem!important;margin-right:3.75rem!important}.ml-60{margin-left:3.75rem!important}html[dir=rtl] .ml-60{margin-right:3.75rem!important;margin-left:0!important}.mr-60{margin-right:3.75rem!important}html[dir=rtl] .mr-60{margin-left:3.75rem!important;margin-right:0!important}.m-64{margin:4rem!important}.mt-64{margin-top:4rem!important}.mb-64{margin-bottom:4rem!important}.my-64{margin-top:4rem!important;margin-bottom:4rem!important}.mx-64{margin-left:4rem!important;margin-right:4rem!important}.ml-64{margin-left:4rem!important}html[dir=rtl] .ml-64{margin-right:4rem!important;margin-left:0!important}.mr-64{margin-right:4rem!important}html[dir=rtl] .mr-64{margin-left:4rem!important;margin-right:0!important}.m-68{margin:4.25rem!important}.mt-68{margin-top:4.25rem!important}.mb-68{margin-bottom:4.25rem!important}.my-68{margin-top:4.25rem!important;margin-bottom:4.25rem!important}.mx-68{margin-left:4.25rem!important;margin-right:4.25rem!important}.ml-68{margin-left:4.25rem!important}html[dir=rtl] .ml-68{margin-right:4.25rem!important;margin-left:0!important}.mr-68{margin-right:4.25rem!important}html[dir=rtl] .mr-68{margin-left:4.25rem!important;margin-right:0!important}.m-72{margin:4.5rem!important}.mt-72{margin-top:4.5rem!important}.mb-72{margin-bottom:4.5rem!important}.my-72{margin-top:4.5rem!important;margin-bottom:4.5rem!important}.mx-72{margin-left:4.5rem!important;margin-right:4.5rem!important}.ml-72{margin-left:4.5rem!important}html[dir=rtl] .ml-72{margin-right:4.5rem!important;margin-left:0!important}.mr-72{margin-right:4.5rem!important}html[dir=rtl] .mr-72{margin-left:4.5rem!important;margin-right:0!important}.m-76{margin:4.75rem!important}.mt-76{margin-top:4.75rem!important}.mb-76{margin-bottom:4.75rem!important}.my-76{margin-top:4.75rem!important;margin-bottom:4.75rem!important}.mx-76{margin-left:4.75rem!important;margin-right:4.75rem!important}.ml-76{margin-left:4.75rem!important}html[dir=rtl] .ml-76{margin-right:4.75rem!important;margin-left:0!important}.mr-76{margin-right:4.75rem!important}html[dir=rtl] .mr-76{margin-left:4.75rem!important;margin-right:0!important}.m-80{margin:5rem!important}.mt-80{margin-top:5rem!important}.mb-80{margin-bottom:5rem!important}.my-80{margin-top:5rem!important;margin-bottom:5rem!important}.mx-80{margin-left:5rem!important;margin-right:5rem!important}.ml-80{margin-left:5rem!important}html[dir=rtl] .ml-80{margin-right:5rem!important;margin-left:0!important}.mr-80{margin-right:5rem!important}html[dir=rtl] .mr-80{margin-left:5rem!important;margin-right:0!important}.m-84{margin:5.25rem!important}.mt-84{margin-top:5.25rem!important}.mb-84{margin-bottom:5.25rem!important}.my-84{margin-top:5.25rem!important;margin-bottom:5.25rem!important}.mx-84{margin-left:5.25rem!important;margin-right:5.25rem!important}.ml-84{margin-left:5.25rem!important}html[dir=rtl] .ml-84{margin-right:5.25rem!important;margin-left:0!important}.mr-84{margin-right:5.25rem!important}html[dir=rtl] .mr-84{margin-left:5.25rem!important;margin-right:0!important}.m-88{margin:5.5rem!important}.mt-88{margin-top:5.5rem!important}.mb-88{margin-bottom:5.5rem!important}.my-88{margin-top:5.5rem!important;margin-bottom:5.5rem!important}.mx-88{margin-left:5.5rem!important;margin-right:5.5rem!important}.ml-88{margin-left:5.5rem!important}html[dir=rtl] .ml-88{margin-right:5.5rem!important;margin-left:0!important}.mr-88{margin-right:5.5rem!important}html[dir=rtl] .mr-88{margin-left:5.5rem!important;margin-right:0!important}.m-96{margin:6rem!important}.mt-96{margin-top:6rem!important}.mb-96{margin-bottom:6rem!important}.my-96{margin-top:6rem!important;margin-bottom:6rem!important}.mx-96{margin-left:6rem!important;margin-right:6rem!important}.ml-96{margin-left:6rem!important}html[dir=rtl] .ml-96{margin-right:6rem!important;margin-left:0!important}.mr-96{margin-right:6rem!important}html[dir=rtl] .mr-96{margin-left:6rem!important;margin-right:0!important}.m-192{margin:12rem!important}.mt-192{margin-top:12rem!important}.mb-192{margin-bottom:12rem!important}.my-192{margin-top:12rem!important;margin-bottom:12rem!important}.mx-192{margin-left:12rem!important;margin-right:12rem!important}.ml-192{margin-left:12rem!important}html[dir=rtl] .ml-192{margin-right:12rem!important;margin-left:0!important}.mr-192{margin-right:12rem!important}html[dir=rtl] .mr-192{margin-left:12rem!important;margin-right:0!important}.m-auto{margin:0 auto!important}.mt-auto{margin-top:auto!important}.mb-auto{margin-bottom:auto!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.ml-auto{margin-left:auto!important}html[dir=rtl] .ml-auto{margin-right:auto!important;margin-left:0!important}.mr-auto{margin-right:auto!important}html[dir=rtl] .mr-auto{margin-left:auto!important;margin-right:0!important}@media screen and (min-width: 768px){.mx--20{margin:0 -1.25rem!important}}.p-0{padding:0rem!important}.pt-0{padding-top:0rem!important}.pb-0{padding-bottom:0rem!important}.py-0{padding-top:0rem!important;padding-bottom:0rem!important}.px-0{padding-left:0rem!important;padding-right:0rem!important}.pl-0{padding-left:0rem!important}html[dir=rtl] .pl-0{padding-right:0rem!important;padding-left:0!important}.pr-0{padding-right:0rem!important}html[dir=rtl] .pr-0{padding-left:0rem!important;padding-right:0!important}.p-2{padding:.125rem!important}.pt-2{padding-top:.125rem!important}.pb-2{padding-bottom:.125rem!important}.py-2{padding-top:.125rem!important;padding-bottom:.125rem!important}.px-2{padding-left:.125rem!important;padding-right:.125rem!important}.pl-2{padding-left:.125rem!important}html[dir=rtl] .pl-2{padding-right:.125rem!important;padding-left:0!important}.pr-2{padding-right:.125rem!important}html[dir=rtl] .pr-2{padding-left:.125rem!important;padding-right:0!important}.p-3{padding:.1875rem!important}.pt-3{padding-top:.1875rem!important}.pb-3{padding-bottom:.1875rem!important}.py-3{padding-top:.1875rem!important;padding-bottom:.1875rem!important}.px-3{padding-left:.1875rem!important;padding-right:.1875rem!important}.pl-3{padding-left:.1875rem!important}html[dir=rtl] .pl-3{padding-right:.1875rem!important;padding-left:0!important}.pr-3{padding-right:.1875rem!important}html[dir=rtl] .pr-3{padding-left:.1875rem!important;padding-right:0!important}.p-4{padding:.25rem!important}.pt-4{padding-top:.25rem!important}.pb-4{padding-bottom:.25rem!important}.py-4{padding-top:.25rem!important;padding-bottom:.25rem!important}.px-4{padding-left:.25rem!important;padding-right:.25rem!important}.pl-4{padding-left:.25rem!important}html[dir=rtl] .pl-4{padding-right:.25rem!important;padding-left:0!important}.pr-4{padding-right:.25rem!important}html[dir=rtl] .pr-4{padding-left:.25rem!important;padding-right:0!important}.p-5{padding:.3125rem!important}.pt-5{padding-top:.3125rem!important}.pb-5{padding-bottom:.3125rem!important}.py-5{padding-top:.3125rem!important;padding-bottom:.3125rem!important}.px-5{padding-left:.3125rem!important;padding-right:.3125rem!important}.pl-5{padding-left:.3125rem!important}html[dir=rtl] .pl-5{padding-right:.3125rem!important;padding-left:0!important}.pr-5{padding-right:.3125rem!important}html[dir=rtl] .pr-5{padding-left:.3125rem!important;padding-right:0!important}.p-8{padding:.5rem!important}.pt-8{padding-top:.5rem!important}.pb-8{padding-bottom:.5rem!important}.py-8{padding-top:.5rem!important;padding-bottom:.5rem!important}.px-8{padding-left:.5rem!important;padding-right:.5rem!important}.pl-8{padding-left:.5rem!important}html[dir=rtl] .pl-8{padding-right:.5rem!important;padding-left:0!important}.pr-8{padding-right:.5rem!important}html[dir=rtl] .pr-8{padding-left:.5rem!important;padding-right:0!important}.p-10{padding:.625rem!important}.pt-10{padding-top:.625rem!important}.pb-10{padding-bottom:.625rem!important}.py-10{padding-top:.625rem!important;padding-bottom:.625rem!important}.px-10{padding-left:.625rem!important;padding-right:.625rem!important}.pl-10{padding-left:.625rem!important}html[dir=rtl] .pl-10{padding-right:.625rem!important;padding-left:0!important}.pr-10{padding-right:.625rem!important}html[dir=rtl] .pr-10{padding-left:.625rem!important;padding-right:0!important}.p-12{padding:.75rem!important}.pt-12{padding-top:.75rem!important}.pb-12{padding-bottom:.75rem!important}.py-12{padding-top:.75rem!important;padding-bottom:.75rem!important}.px-12{padding-left:.75rem!important;padding-right:.75rem!important}.pl-12{padding-left:.75rem!important}html[dir=rtl] .pl-12{padding-right:.75rem!important;padding-left:0!important}.pr-12{padding-right:.75rem!important}html[dir=rtl] .pr-12{padding-left:.75rem!important;padding-right:0!important}.p-15{padding:.9375rem!important}.pt-15{padding-top:.9375rem!important}.pb-15{padding-bottom:.9375rem!important}.py-15{padding-top:.9375rem!important;padding-bottom:.9375rem!important}.px-15{padding-left:.9375rem!important;padding-right:.9375rem!important}.pl-15{padding-left:.9375rem!important}html[dir=rtl] .pl-15{padding-right:.9375rem!important;padding-left:0!important}.pr-15{padding-right:.9375rem!important}html[dir=rtl] .pr-15{padding-left:.9375rem!important;padding-right:0!important}.p-16{padding:1rem!important}.pt-16{padding-top:1rem!important}.pb-16{padding-bottom:1rem!important}.py-16{padding-top:1rem!important;padding-bottom:1rem!important}.px-16{padding-left:1rem!important;padding-right:1rem!important}.pl-16{padding-left:1rem!important}html[dir=rtl] .pl-16{padding-right:1rem!important;padding-left:0!important}.pr-16{padding-right:1rem!important}html[dir=rtl] .pr-16{padding-left:1rem!important;padding-right:0!important}.p-20{padding:1.25rem!important}.pt-20{padding-top:1.25rem!important}.pb-20{padding-bottom:1.25rem!important}.py-20{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.px-20{padding-left:1.25rem!important;padding-right:1.25rem!important}.pl-20{padding-left:1.25rem!important}html[dir=rtl] .pl-20{padding-right:1.25rem!important;padding-left:0!important}.pr-20{padding-right:1.25rem!important}html[dir=rtl] .pr-20{padding-left:1.25rem!important;padding-right:0!important}.p-24{padding:1.5rem!important}.pt-24{padding-top:1.5rem!important}.pb-24{padding-bottom:1.5rem!important}.py-24{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.px-24{padding-left:1.5rem!important;padding-right:1.5rem!important}.pl-24{padding-left:1.5rem!important}html[dir=rtl] .pl-24{padding-right:1.5rem!important;padding-left:0!important}.pr-24{padding-right:1.5rem!important}html[dir=rtl] .pr-24{padding-left:1.5rem!important;padding-right:0!important}.p-30{padding:1.875rem!important}.pt-30{padding-top:1.875rem!important}.pb-30{padding-bottom:1.875rem!important}.py-30{padding-top:1.875rem!important;padding-bottom:1.875rem!important}.px-30{padding-left:1.875rem!important;padding-right:1.875rem!important}.pl-30{padding-left:1.875rem!important}html[dir=rtl] .pl-30{padding-right:1.875rem!important;padding-left:0!important}.pr-30{padding-right:1.875rem!important}html[dir=rtl] .pr-30{padding-left:1.875rem!important;padding-right:0!important}.p-32{padding:2rem!important}.pt-32{padding-top:2rem!important}.pb-32{padding-bottom:2rem!important}.py-32{padding-top:2rem!important;padding-bottom:2rem!important}.px-32{padding-left:2rem!important;padding-right:2rem!important}.pl-32{padding-left:2rem!important}html[dir=rtl] .pl-32{padding-right:2rem!important;padding-left:0!important}.pr-32{padding-right:2rem!important}html[dir=rtl] .pr-32{padding-left:2rem!important;padding-right:0!important}.p-40{padding:2.5rem!important}.pt-40{padding-top:2.5rem!important}.pb-40{padding-bottom:2.5rem!important}.py-40{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.px-40{padding-left:2.5rem!important;padding-right:2.5rem!important}.pl-40{padding-left:2.5rem!important}html[dir=rtl] .pl-40{padding-right:2.5rem!important;padding-left:0!important}.pr-40{padding-right:2.5rem!important}html[dir=rtl] .pr-40{padding-left:2.5rem!important;padding-right:0!important}.p-48{padding:3rem!important}.pt-48{padding-top:3rem!important}.pb-48{padding-bottom:3rem!important}.py-48{padding-top:3rem!important;padding-bottom:3rem!important}.px-48{padding-left:3rem!important;padding-right:3rem!important}.pl-48{padding-left:3rem!important}html[dir=rtl] .pl-48{padding-right:3rem!important;padding-left:0!important}.pr-48{padding-right:3rem!important}html[dir=rtl] .pr-48{padding-left:3rem!important;padding-right:0!important}.p-52{padding:3.25rem!important}.pt-52{padding-top:3.25rem!important}.pb-52{padding-bottom:3.25rem!important}.py-52{padding-top:3.25rem!important;padding-bottom:3.25rem!important}.px-52{padding-left:3.25rem!important;padding-right:3.25rem!important}.pl-52{padding-left:3.25rem!important}html[dir=rtl] .pl-52{padding-right:3.25rem!important;padding-left:0!important}.pr-52{padding-right:3.25rem!important}html[dir=rtl] .pr-52{padding-left:3.25rem!important;padding-right:0!important}.p-56{padding:3.5rem!important}.pt-56{padding-top:3.5rem!important}.pb-56{padding-bottom:3.5rem!important}.py-56{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.px-56{padding-left:3.5rem!important;padding-right:3.5rem!important}.pl-56{padding-left:3.5rem!important}html[dir=rtl] .pl-56{padding-right:3.5rem!important;padding-left:0!important}.pr-56{padding-right:3.5rem!important}html[dir=rtl] .pr-56{padding-left:3.5rem!important;padding-right:0!important}.p-60{padding:3.75rem!important}.pt-60{padding-top:3.75rem!important}.pb-60{padding-bottom:3.75rem!important}.py-60{padding-top:3.75rem!important;padding-bottom:3.75rem!important}.px-60{padding-left:3.75rem!important;padding-right:3.75rem!important}.pl-60{padding-left:3.75rem!important}html[dir=rtl] .pl-60{padding-right:3.75rem!important;padding-left:0!important}.pr-60{padding-right:3.75rem!important}html[dir=rtl] .pr-60{padding-left:3.75rem!important;padding-right:0!important}.p-64{padding:4rem!important}.pt-64{padding-top:4rem!important}.pb-64{padding-bottom:4rem!important}.py-64{padding-top:4rem!important;padding-bottom:4rem!important}.px-64{padding-left:4rem!important;padding-right:4rem!important}.pl-64{padding-left:4rem!important}html[dir=rtl] .pl-64{padding-right:4rem!important;padding-left:0!important}.pr-64{padding-right:4rem!important}html[dir=rtl] .pr-64{padding-left:4rem!important;padding-right:0!important}.p-68{padding:4.25rem!important}.pt-68{padding-top:4.25rem!important}.pb-68{padding-bottom:4.25rem!important}.py-68{padding-top:4.25rem!important;padding-bottom:4.25rem!important}.px-68{padding-left:4.25rem!important;padding-right:4.25rem!important}.pl-68{padding-left:4.25rem!important}html[dir=rtl] .pl-68{padding-right:4.25rem!important;padding-left:0!important}.pr-68{padding-right:4.25rem!important}html[dir=rtl] .pr-68{padding-left:4.25rem!important;padding-right:0!important}.p-72{padding:4.5rem!important}.pt-72{padding-top:4.5rem!important}.pb-72{padding-bottom:4.5rem!important}.py-72{padding-top:4.5rem!important;padding-bottom:4.5rem!important}.px-72{padding-left:4.5rem!important;padding-right:4.5rem!important}.pl-72{padding-left:4.5rem!important}html[dir=rtl] .pl-72{padding-right:4.5rem!important;padding-left:0!important}.pr-72{padding-right:4.5rem!important}html[dir=rtl] .pr-72{padding-left:4.5rem!important;padding-right:0!important}.p-76{padding:4.75rem!important}.pt-76{padding-top:4.75rem!important}.pb-76{padding-bottom:4.75rem!important}.py-76{padding-top:4.75rem!important;padding-bottom:4.75rem!important}.px-76{padding-left:4.75rem!important;padding-right:4.75rem!important}.pl-76{padding-left:4.75rem!important}html[dir=rtl] .pl-76{padding-right:4.75rem!important;padding-left:0!important}.pr-76{padding-right:4.75rem!important}html[dir=rtl] .pr-76{padding-left:4.75rem!important;padding-right:0!important}.p-80{padding:5rem!important}.pt-80{padding-top:5rem!important}.pb-80{padding-bottom:5rem!important}.py-80{padding-top:5rem!important;padding-bottom:5rem!important}.px-80{padding-left:5rem!important;padding-right:5rem!important}.pl-80{padding-left:5rem!important}html[dir=rtl] .pl-80{padding-right:5rem!important;padding-left:0!important}.pr-80{padding-right:5rem!important}html[dir=rtl] .pr-80{padding-left:5rem!important;padding-right:0!important}.p-84{padding:5.25rem!important}.pt-84{padding-top:5.25rem!important}.pb-84{padding-bottom:5.25rem!important}.py-84{padding-top:5.25rem!important;padding-bottom:5.25rem!important}.px-84{padding-left:5.25rem!important;padding-right:5.25rem!important}.pl-84{padding-left:5.25rem!important}html[dir=rtl] .pl-84{padding-right:5.25rem!important;padding-left:0!important}.pr-84{padding-right:5.25rem!important}html[dir=rtl] .pr-84{padding-left:5.25rem!important;padding-right:0!important}.p-88{padding:5.5rem!important}.pt-88{padding-top:5.5rem!important}.pb-88{padding-bottom:5.5rem!important}.py-88{padding-top:5.5rem!important;padding-bottom:5.5rem!important}.px-88{padding-left:5.5rem!important;padding-right:5.5rem!important}.pl-88{padding-left:5.5rem!important}html[dir=rtl] .pl-88{padding-right:5.5rem!important;padding-left:0!important}.pr-88{padding-right:5.5rem!important}html[dir=rtl] .pr-88{padding-left:5.5rem!important;padding-right:0!important}.p-96{padding:6rem!important}.pt-96{padding-top:6rem!important}.pb-96{padding-bottom:6rem!important}.py-96{padding-top:6rem!important;padding-bottom:6rem!important}.px-96{padding-left:6rem!important;padding-right:6rem!important}.pl-96{padding-left:6rem!important}html[dir=rtl] .pl-96{padding-right:6rem!important;padding-left:0!important}.pr-96{padding-right:6rem!important}html[dir=rtl] .pr-96{padding-left:6rem!important;padding-right:0!important}.p-192{padding:12rem!important}.pt-192{padding-top:12rem!important}.pb-192{padding-bottom:12rem!important}.py-192{padding-top:12rem!important;padding-bottom:12rem!important}.px-192{padding-left:12rem!important;padding-right:12rem!important}.pl-192{padding-left:12rem!important}html[dir=rtl] .pl-192{padding-right:12rem!important;padding-left:0!important}.pr-192{padding-right:12rem!important}html[dir=rtl] .pr-192{padding-left:12rem!important;padding-right:0!important}@media screen and (min-width: 768px){.px--20{padding:0 -1.25rem}}.o-x-auto{overflow-x:auto!important}.o-x-visible{overflow-x:visible!important}.o-x-hide{overflow-x:hidden!important}.o-x-scroll{overflow-x:scroll!important}.o-y-auto{overflow-y:auto!important}.o-y-visible{overflow-y:visible!important}.o-y-hide{overflow-y:hidden!important}.o-y-scroll{overflow-y:scroll!important}.flex-ai-center,.flex-ai-jc-center,.flex-jc-ai-center{align-items:center!important}.flex-as-center{align-self:center!important}.flex-jc-center,.flex-ai-jc-center,.flex-jc-ai-center{justify-content:center!important}.flex-ai-flex-start{align-items:flex-start!important}.flex-as-flex-start{align-self:flex-start!important}.flex-jc-flex-start{justify-content:flex-start!important}.flex-ai-flex-end{align-items:flex-end!important}.flex-as-flex-end{align-self:flex-end!important}.flex-jc-flex-end{justify-content:flex-end!important}.flex-jc-space-between{justify-content:space-between!important}.flex-jc-space-around{justify-content:space-around!important}.flex-jc-space-evenly{justify-content:space-evenly!important}.flex-dr{flex-direction:row!important}.flex-dc{flex-direction:column!important}.flex-ai-baseline{align-items:baseline!important}.flex-ai-end{align-items:flex-end!important}.flex-w-wrap{flex-wrap:wrap!important}.flex-basis-1{flex:1}.flex-basis-100{flex-basis:100%}.flex-none{flex:none}.b-0{border:0px solid hsl(0,0%,40%)!important;border:0px solid var(--gray-400)!important}.bl-0{border-left:none!important}.br-0{border-right:none!important}.br-4{border-radius:4px!important}.bt-0{border-top:none!important}.bb-0{border-bottom:none!important}.b-1{border:1px solid hsl(0,0%,40%)!important;border:1px solid var(--gray-400)!important}.b-2{border:2px solid hsl(0,0%,40%)!important;border:2px solid var(--gray-400)!important}.b-4{border:4px solid hsl(0,0%,40%)!important;border:4px solid var(--gray-400)!important}.b-8{border:8px solid hsl(0,0%,40%)!important;border:8px solid var(--gray-400)!important}.bs-0{box-shadow:none!important}.bs-1{box-shadow:0 3px 6px #0000004a!important}.bs-1:hover{box-shadow:0 4px 9px #0000004a!important}.bs-2{box-shadow:0 0 20px #0000004a!important}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}a.sb-btn{text-align:center;display:inline-flex;justify-content:center;align-items:center;flex-wrap:wrap}.sb-btn{white-space:nowrap;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;user-select:none;outline:0;display:inline-block;border:1px solid;cursor:pointer;min-width:4rem;border-radius:.125rem;-webkit-border-radius:.125rem;-moz-border-radius:.125rem;position:relative;line-height:1.15;text-transform:inherit;text-decoration:none}.sb-btn:hover{opacity:1}.sb-btn:after{content:"";position:absolute;top:50%;left:50%;width:3px;height:3px;background:#005391;background:var(--primary-600);opacity:0;border-radius:50%;transform:scale(1) translate(-50%);transform-origin:50% 50%}.sb-btn.flat{border-radius:0}.sb-btn.sb-btn-radius{border-radius:2rem}.sb-btn-gray{background-color:#999;background-color:var(--gray-200);border-color:#999;border-color:var(--gray-200);color:#fff;color:var(--white)}.sb-btn-gray:hover,.sb-btn-gray:active,.sb-btn-gray.active{background-color:#666;background-color:var(--gray-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-gray{background-color:#fff;background-color:var(--white);color:#999;color:var(--gray-200);border-color:#999;border-color:var(--gray-200)}.sb-btn-outline-gray:hover,.sb-btn-outline-gray:active,.sb-btn-outline-gray.active{color:#666;color:var(--gray-400);background-color:#ccc;background-color:var(--gray-100)}.sb-btn-dashed-gray{border-style:dashed;border-width:1px;background-color:#fff;border-color:#999;border-color:var(--gray-200);color:#999;color:var(--gray-200)}.sb-btn-dashed-gray:hover,.sb-btn-dashed-gray:active,.sb-btn-dashed-gray.active{background-color:#ccc;background-color:var(--gray-100)}.sb-btn-link-gray{background:none;border:0px;color:#999;color:var(--gray-200)}.sb-btn-link-gray:hover,.sb-btn-link-gray:active,.sb-btn-link-gray.active{background-color:#ccc;background-color:var(--gray-100)}.sb-btn-primary{background-color:#024f9d;background-color:var(--primary-400);border-color:#024f9d;border-color:var(--primary-400);color:#fff;color:var(--white)}.sb-btn-primary:hover,.sb-btn-primary:active,.sb-btn-primary.active{background-color:#002e50;background-color:var(--primary-800);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-primary{background-color:#fff;background-color:var(--white);color:#024f9d;color:var(--primary-400);border-color:#024f9d;border-color:var(--primary-400)}.sb-btn-outline-primary:hover,.sb-btn-outline-primary:active,.sb-btn-outline-primary.active{color:#002e50;color:var(--primary-800);background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-dashed-primary{border-style:dashed;border-width:1px;background-color:#fff;border-color:#024f9d;border-color:var(--primary-400);color:#024f9d;color:var(--primary-400)}.sb-btn-dashed-primary:hover,.sb-btn-dashed-primary:active,.sb-btn-dashed-primary.active{background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-link-primary{background:none;border:0px;color:#024f9d;color:var(--primary-400)}.sb-btn-link-primary:hover,.sb-btn-link-primary:active,.sb-btn-link-primary.active{background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-secondary{background-color:#07bc81;background-color:var(--secondary-200);border-color:#07bc81;border-color:var(--secondary-200);color:#fff;color:var(--white)}.sb-btn-secondary:hover,.sb-btn-secondary:active,.sb-btn-secondary.active{background-color:#008840;background-color:var(--secondary-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-secondary{background-color:#fff;background-color:var(--white);color:#07bc81;color:var(--secondary-200);border-color:#07bc81;border-color:var(--secondary-200)}.sb-btn-outline-secondary:hover,.sb-btn-outline-secondary:active,.sb-btn-outline-secondary.active{color:#008840;color:var(--secondary-400);background-color:#e1ffdf;background-color:var(--secondary-0)}.sb-btn-dashed-secondary{border-style:dashed;border-width:1px;background-color:#fff;border-color:#07bc81;border-color:var(--secondary-200);color:#07bc81;color:var(--secondary-200)}.sb-btn-dashed-secondary:hover,.sb-btn-dashed-secondary:active,.sb-btn-dashed-secondary.active{background-color:#e1ffdf;background-color:var(--secondary-0)}.sb-btn-link-secondary{background:none;border:0px;color:#07bc81;color:var(--secondary-200)}.sb-btn-link-secondary:hover,.sb-btn-link-secondary:active,.sb-btn-link-secondary.active{background-color:#e1ffdf;background-color:var(--secondary-0)}.sb-btn-tertiary{background-color:#ffa11d;background-color:var(--tertiary-100);border-color:#ffa11d;border-color:var(--tertiary-100);color:#fff;color:var(--white)}.sb-btn-tertiary:hover,.sb-btn-tertiary:active,.sb-btn-tertiary.active{background-color:#e55a28;background-color:var(--tertiary-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-tertiary{background-color:#fff;background-color:var(--white);color:#ffa11d;color:var(--tertiary-100);border-color:#ffa11d;border-color:var(--tertiary-100)}.sb-btn-outline-tertiary:hover,.sb-btn-outline-tertiary:active,.sb-btn-outline-tertiary.active{color:#e55a28;color:var(--tertiary-400);background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-dashed-tertiary{border-style:dashed;border-width:1px;background-color:#fff;border-color:#ffa11d;border-color:var(--tertiary-100);color:#ffa11d;color:var(--tertiary-100)}.sb-btn-dashed-tertiary:hover,.sb-btn-dashed-tertiary:active,.sb-btn-dashed-tertiary.active{background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-link-tertiary{background:none;border:0px;color:#ffa11d;color:var(--tertiary-100)}.sb-btn-link-tertiary:hover,.sb-btn-link-tertiary:active,.sb-btn-link-tertiary.active{background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-red{background-color:#ff6979;background-color:var(--red-100);border-color:#ff6979;border-color:var(--red-100);color:#fff;color:var(--white)}.sb-btn-red:hover,.sb-btn-red:active,.sb-btn-red.active{background-color:#ff4558;background-color:var(--red-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-red{background-color:#fff;background-color:var(--white);color:#ff6979;color:var(--red-100);border-color:#ff6979;border-color:var(--red-100)}.sb-btn-outline-red:hover,.sb-btn-outline-red:active,.sb-btn-outline-red.active{color:#ff4558;color:var(--red-400);background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-dashed-red{border-style:dashed;border-width:1px;background-color:#fff;border-color:#ff6979;border-color:var(--red-100);color:#ff6979;color:var(--red-100)}.sb-btn-dashed-red:hover,.sb-btn-dashed-red:active,.sb-btn-dashed-red.active{background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-link-red{background:none;border:0px;color:#ff6979;color:var(--red-100)}.sb-btn-link-red:hover,.sb-btn-link-red:active,.sb-btn-link-red.active{background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-info{background-color:#024f9d;background-color:var(--primary-400);border-color:#024f9d;border-color:var(--primary-400);color:#fff;color:var(--white)}.sb-btn-info:hover,.sb-btn-info:active,.sb-btn-info.active{background-color:#002e50;background-color:var(--primary-800);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-info{background-color:#fff;background-color:var(--white);color:#024f9d;color:var(--primary-400);border-color:#024f9d;border-color:var(--primary-400)}.sb-btn-outline-info:hover,.sb-btn-outline-info:active,.sb-btn-outline-info.active{color:#002e50;color:var(--primary-800);background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-dashed-info{border-style:dashed;border-width:1px;background-color:#fff;border-color:#024f9d;border-color:var(--primary-400);color:#024f9d;color:var(--primary-400)}.sb-btn-dashed-info:hover,.sb-btn-dashed-info:active,.sb-btn-dashed-info.active{background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-link-info{background:none;border:0px;color:#024f9d;color:var(--primary-400)}.sb-btn-link-info:hover,.sb-btn-link-info:active,.sb-btn-link-info.active{background-color:#edf4f9;background-color:var(--primary-100)}.sb-btn-success{background-color:#07bc81;background-color:var(--secondary-200);border-color:#07bc81;border-color:var(--secondary-200);color:#fff;color:var(--white)}.sb-btn-success:hover,.sb-btn-success:active,.sb-btn-success.active{background-color:#008840;background-color:var(--secondary-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-success{background-color:#fff;background-color:var(--white);color:#07bc81;color:var(--secondary-200);border-color:#07bc81;border-color:var(--secondary-200)}.sb-btn-outline-success:hover,.sb-btn-outline-success:active,.sb-btn-outline-success.active{color:#008840;color:var(--secondary-400);background-color:#00c786;background-color:var(--secondary-100)}.sb-btn-dashed-success{border-style:dashed;border-width:1px;background-color:#fff;border-color:#07bc81;border-color:var(--secondary-200);color:#07bc81;color:var(--secondary-200)}.sb-btn-dashed-success:hover,.sb-btn-dashed-success:active,.sb-btn-dashed-success.active{background-color:#00c786;background-color:var(--secondary-100)}.sb-btn-link-success{background:none;border:0px;color:#07bc81;color:var(--secondary-200)}.sb-btn-link-success:hover,.sb-btn-link-success:active,.sb-btn-link-success.active{background-color:#00c786;background-color:var(--secondary-100)}.sb-btn-warning{background-color:#ffa11d;background-color:var(--tertiary-100);border-color:#ffa11d;border-color:var(--tertiary-100);color:#fff;color:var(--white)}.sb-btn-warning:hover,.sb-btn-warning:active,.sb-btn-warning.active{background-color:#e55a28;background-color:var(--tertiary-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-warning{background-color:#fff;background-color:var(--white);color:#ffa11d;color:var(--tertiary-100);border-color:#ffa11d;border-color:var(--tertiary-100)}.sb-btn-outline-warning:hover,.sb-btn-outline-warning:active,.sb-btn-outline-warning.active{color:#e55a28;color:var(--tertiary-400);background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-dashed-warning{border-style:dashed;border-width:1px;background-color:#fff;border-color:#ffa11d;border-color:var(--tertiary-100);color:#ffa11d;color:var(--tertiary-100)}.sb-btn-dashed-warning:hover,.sb-btn-dashed-warning:active,.sb-btn-dashed-warning.active{background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-link-warning{background:none;border:0px;color:#ffa11d;color:var(--tertiary-100)}.sb-btn-link-warning:hover,.sb-btn-link-warning:active,.sb-btn-link-warning.active{background-color:#feedd7;background-color:var(--tertiary-0)}.sb-btn-error{background-color:#ff6979;background-color:var(--red-100);border-color:#ff6979;border-color:var(--red-100);color:#fff;color:var(--white)}.sb-btn-error:hover,.sb-btn-error:active,.sb-btn-error.active{background-color:#ff4558;background-color:var(--red-400);border:1px solid transparent;color:#fff;color:var(--white)}.sb-btn-outline-error{background-color:#fff;background-color:var(--white);color:#ff6979;color:var(--red-100);border-color:#ff6979;border-color:var(--red-100)}.sb-btn-outline-error:hover,.sb-btn-outline-error:active,.sb-btn-outline-error.active{color:#ff4558;color:var(--red-400);background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-dashed-error{border-style:dashed;border-width:1px;background-color:#fff;border-color:#ff6979;border-color:var(--red-100);color:#ff6979;color:var(--red-100)}.sb-btn-dashed-error:hover,.sb-btn-dashed-error:active,.sb-btn-dashed-error.active{background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-link-error{background:none;border:0px;color:#ff6979;color:var(--red-100)}.sb-btn-link-error:hover,.sb-btn-link-error:active,.sb-btn-link-error.active{background-color:#fbccd1;background-color:var(--red-0)}.sb-btn-xs{height:1.5rem;padding:.25rem .5rem;font-size:.75rem}.sb-btn-normal{height:2rem;padding:.5rem 1rem;font-size:.75rem}.sb-btn-sm{height:2.5rem;padding:.5rem 1rem;font-size:1rem}.sb-btn-md{height:3rem;padding:.5rem 1rem;font-size:1rem}.sb-btn-lg{height:3.5rem;padding:1rem 1.5rem;font-size:1.25rem}.sb-btn-full{height:1.5rem;padding:.5rem 1rem;font-size:1.25rem;width:100%}.sb-btn-square.sb-btn-xs{height:1.5rem;width:1.5rem;font-size:1rem}.sb-btn-square.sb-btn-xs i.icon{margin:0;font-size:2em}.sb-btn-square.sb-btn-xs span{margin:.5rem 0 0}.sb-btn-square.sb-btn-normal{height:4rem;width:4rem;font-size:.75rem}.sb-btn-square.sb-btn-normal i.icon{margin:0;font-size:2em}.sb-btn-square.sb-btn-normal span{margin:.5rem 0 0}.sb-btn-square.sb-btn-sm{height:3rem;width:3rem;font-size:.75rem}.sb-btn-square.sb-btn-sm i.icon{margin:0;font-size:2em}.sb-btn-square.sb-btn-sm span{margin:.5rem 0 0}.sb-btn-square.sb-btn-md{height:4rem;width:4rem;font-size:1rem}.sb-btn-square.sb-btn-md i.icon{margin:0;font-size:2em}.sb-btn-square.sb-btn-md span{margin:.5rem 0 0}.sb-btn-square.sb-btn-lg{height:8rem;width:8rem;font-size:1.25rem}.sb-btn-square.sb-btn-lg i.icon{margin:0;font-size:2em}.sb-btn-square.sb-btn-lg span{margin:.5rem 0 0}.sb-btn-white{box-shadow:0 -.0625rem .25rem #0000001a,0 3px 4px #0003;border:0px solid #ddd}.sb-btn-square{display:inline-flex;flex-direction:column;align-items:center;justify-content:space-evenly;font-size:.75rem;padding:.5rem}.sb-btn-disabled{background-color:#ccc;background-color:var(--gray-100);border:1px solid hsl(0,0%,80%);border:1px solid var(--gray-100);color:#999;color:var(--gray-200);cursor:default}.sb-btn-outline-disabled{background-color:#fff;background-color:var(--white);border:1px solid hsl(0,0%,80%);border:1px solid var(--gray-100);color:#999;color:var(--gray-200);cursor:default;font-weight:400}.sb-btn-link{background:none;border:0}.sb-btn-download{transition:all 1.2s ease-in-out}.sb-btn-download i:after{content:"\f019";font-size:.8125rem;color:#fff;color:var(--white)}.sb-btn-download:hover{animation:pulse .2s 2 both}.sb-btn-download.loading i{animation:loading 2s infinite linear}.sb-btn-download.loading i:after{content:"\f1ce"}.sb-btn-download.success i:after{content:"\f00c";color:transparent;animation:change-icon 1s .6s linear both}.sb-right-icon-btn{padding:.5rem}.sb-right-icon-btn i.icon{margin-left:.25rem}html[dir=rtl] .sb-right-icon-btn i.icon{margin-right:.25rem;margin-left:0}.sb-left-icon-btn{padding:.5rem}.sb-left-icon-btn i.icon{margin-left:.25rem}html[dir=rtl] .sb-left-icon-btn i.icon{margin-right:.25rem;margin-left:0}.sb-left-icon-btn.sb-btn-xs{padding:.5rem}.ui.toggle.checkbox.sb-toggle{min-height:1.5rem;position:relative;display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;vertical-align:baseline;font-style:normal;min-height:1rem;font-size:1rem;min-width:1rem}.ui.toggle.checkbox.sb-toggle input{width:4rem;height:1.5rem;cursor:pointer;position:absolute;top:0;left:0;opacity:0;outline:0;z-index:3}.ui.toggle.checkbox.sb-toggle input:focus:checked~label:before,.ui.toggle.checkbox.sb-toggle input:focus:checked~.box:before,.ui.toggle.checkbox.sb-toggle input:checked~.box:before,.ui.toggle.checkbox.sb-toggle input:checked~label:before{background-color:#024f9d!important}.ui.toggle.checkbox.sb-toggle label{min-height:1rem;padding-left:4.5rem;color:#000000de;position:relative;display:block;outline:0;font-size:1rem}.ui.toggle.checkbox.sb-toggle label:before{display:block;position:absolute;content:"";z-index:1;transform:none;border:none;top:1px;left:0;background:rgba(0,0,0,.05);box-shadow:none;width:4rem;height:1.5rem;border-radius:500rem;border-color:#024f9d;border-color:var(--primary-color);background-color:#024f9d;background-color:var(--primary-color);color:#fff;color:var(--white);transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease}.ui.toggle.checkbox.sb-toggle label:after{background:#ffffff linear-gradient(transparent,rgba(0,0,0,.05));background:var(--white) linear-gradient(transparent,rgba(0,0,0,.05));position:absolute;content:""!important;opacity:1;z-index:2;border:none;width:-2.5rem;height:-2.5rem;top:3px;left:0;border-radius:500rem;transition:background .3s ease,left .3s ease}.ui.toggle.checkbox.sb-toggle input~label:after{left:.1rem;box-shadow:none}.ui.toggle.checkbox.sb-toggle input:checked~label:after{left:2.5625rem;box-shadow:none}.btn-group{border:1px solid hsl(0,0%,80%);border:1px solid var(--gray-100);display:inline-flex;flex-direction:row;font-size:0;vertical-align:baseline}.btn-group .sb-btn{background:#ffffff;background:var(--white);border-left:1px solid hsl(0,0%,80%);border-left:1px solid var(--gray-100);flex:1 0 auto;border-radius:0;margin:0;border:0;color:#024f9d;color:var(--primary-400);min-width:2.5rem}.btn-group .sb-btn:first-child{border-left:none;margin-left:0}.btn-group .sb-btn:active,.btn-group .sb-btn.active{background-color:#edf4f9;background-color:var(--primary-100);color:#024f9d;color:var(--primary-400)}.btn-group .sb-btn .icon{margin:0;vertical-align:top}.sb-btn-icon-fix{display:flex;align-items:center;line-height:normal}.sb-btn-grow{background:none;border:0px solid #fff;font-size:12px;color:#fff;cursor:pointer;transition:all .2s ease-in-out}.sb-btn-grow:disabled{opacity:.4;cursor:default}.sb-btn-grow:hover:not([disabled]){background:none;transform:scale(1.15)}@charset "UTF-8";.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-modal-dialog,.vjs-button>.vjs-icon-placeholder:before,.vjs-modal-dialog .vjs-modal-dialog-content{position:absolute;top:0;left:0;width:100%;height:100%}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.vjs-button>.vjs-icon-placeholder:before{text-align:center}@font-face{font-family:VideoJS;src:url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");font-weight:400;font-style:normal}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-play-control .vjs-icon-placeholder,.vjs-icon-play{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-play-control .vjs-icon-placeholder:before,.vjs-icon-play:before{content:"\f101"}.vjs-icon-play-circle{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-play-circle:before{content:"\f102"}.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder,.vjs-icon-pause{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,.vjs-icon-pause:before{content:"\f103"}.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder,.vjs-icon-volume-mute{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,.vjs-icon-volume-mute:before{content:"\f104"}.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder,.vjs-icon-volume-low{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,.vjs-icon-volume-low:before{content:"\f105"}.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder,.vjs-icon-volume-mid{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,.vjs-icon-volume-mid:before{content:"\f106"}.video-js .vjs-mute-control .vjs-icon-placeholder,.vjs-icon-volume-high{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control .vjs-icon-placeholder:before,.vjs-icon-volume-high:before{content:"\f107"}.video-js .vjs-fullscreen-control .vjs-icon-placeholder,.vjs-icon-fullscreen-enter{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,.vjs-icon-fullscreen-enter:before{content:"\f108"}.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder,.vjs-icon-fullscreen-exit{font-family:VideoJS;font-weight:400;font-style:normal}.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before,.vjs-icon-fullscreen-exit:before{content:"\f109"}.vjs-icon-square{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-square:before{content:"\f10a"}.vjs-icon-spinner{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-spinner:before{content:"\f10b"}.video-js .vjs-subs-caps-button .vjs-icon-placeholder,.video-js .vjs-subtitles-button .vjs-icon-placeholder,.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,.vjs-icon-subtitles{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js .vjs-subtitles-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,.vjs-icon-subtitles:before{content:"\f10c"}.video-js .vjs-captions-button .vjs-icon-placeholder,.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,.vjs-icon-captions{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-captions-button .vjs-icon-placeholder:before,.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,.vjs-icon-captions:before{content:"\f10d"}.video-js .vjs-chapters-button .vjs-icon-placeholder,.vjs-icon-chapters{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-chapters-button .vjs-icon-placeholder:before,.vjs-icon-chapters:before{content:"\f10e"}.vjs-icon-share{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-share:before{content:"\f10f"}.vjs-icon-cog{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-cog:before{content:"\f110"}.video-js .vjs-play-progress,.video-js .vjs-volume-level,.vjs-icon-circle,.vjs-seek-to-live-control .vjs-icon-placeholder{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-progress:before,.video-js .vjs-volume-level:before,.vjs-icon-circle:before,.vjs-seek-to-live-control .vjs-icon-placeholder:before{content:"\f111"}.vjs-icon-circle-outline{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-circle-outline:before{content:"\f112"}.vjs-icon-circle-inner-circle{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-circle-inner-circle:before{content:"\f113"}.vjs-icon-hd{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-hd:before{content:"\f114"}.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder,.vjs-icon-cancel{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before,.vjs-icon-cancel:before{content:"\f115"}.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder,.vjs-icon-replay{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,.vjs-icon-replay:before{content:"\f116"}.vjs-icon-facebook{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-facebook:before{content:"\f117"}.vjs-icon-gplus{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-gplus:before{content:"\f118"}.vjs-icon-linkedin{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-linkedin:before{content:"\f119"}.vjs-icon-twitter{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-twitter:before{content:"\f11a"}.vjs-icon-tumblr{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-tumblr:before{content:"\f11b"}.vjs-icon-pinterest{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-pinterest:before{content:"\f11c"}.video-js .vjs-descriptions-button .vjs-icon-placeholder,.vjs-icon-audio-description{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-descriptions-button .vjs-icon-placeholder:before,.vjs-icon-audio-description:before{content:"\f11d"}.video-js .vjs-audio-button .vjs-icon-placeholder,.vjs-icon-audio{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-audio-button .vjs-icon-placeholder:before,.vjs-icon-audio:before{content:"\f11e"}.vjs-icon-next-item{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-next-item:before{content:"\f11f"}.vjs-icon-previous-item{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-previous-item:before{content:"\f120"}.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder,.vjs-icon-picture-in-picture-enter{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before,.vjs-icon-picture-in-picture-enter:before{content:"\f121"}.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder,.vjs-icon-picture-in-picture-exit{font-family:VideoJS;font-weight:400;font-style:normal}.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before,.vjs-icon-picture-in-picture-exit:before{content:"\f122"}.video-js{display:block;vertical-align:top;box-sizing:border-box;color:#fff;background-color:#000;position:relative;padding:0;font-size:10px;line-height:1;font-weight:400;font-style:normal;font-family:Arial,Helvetica,sans-serif;word-break:initial}.video-js:-moz-full-screen{position:absolute}.video-js:-webkit-full-screen{width:100%!important;height:100%!important}.video-js[tabindex="-1"]{outline:0}.video-js *,.video-js :after,.video-js :before{box-sizing:inherit}.video-js ul{font-family:inherit;font-size:inherit;line-height:inherit;list-style-position:outside;margin:0}.video-js.vjs-1-1,.video-js.vjs-16-9,.video-js.vjs-4-3,.video-js.vjs-9-16,.video-js.vjs-fluid{width:100%;max-width:100%;height:0}.video-js.vjs-16-9{padding-top:56.25%}.video-js.vjs-4-3{padding-top:75%}.video-js.vjs-9-16{padding-top:177.7777777778%}.video-js.vjs-1-1{padding-top:100%}.video-js.vjs-fill{width:100%;height:100%}.video-js .vjs-tech{position:absolute;top:0;left:0;width:100%;height:100%}body.vjs-full-window{padding:0;margin:0;height:100%}.vjs-full-window .video-js.vjs-fullscreen{position:fixed;overflow:hidden;z-index:1000;inset:0}.video-js.vjs-fullscreen:not(.vjs-ios-native-fs){width:100%!important;height:100%!important;padding-top:0!important}.video-js.vjs-fullscreen.vjs-user-inactive{cursor:none}.vjs-hidden{display:none!important}.vjs-disabled{opacity:.5;cursor:default}.video-js .vjs-offscreen{height:1px;left:-9999px;position:absolute;top:0;width:1px}.vjs-lock-showing{display:block!important;opacity:1!important;visibility:visible!important}.vjs-no-js{padding:20px;color:#fff;background-color:#000;font-size:18px;font-family:Arial,Helvetica,sans-serif;text-align:center;width:300px;height:150px;margin:0 auto}.vjs-no-js a,.vjs-no-js a:visited{color:#66a8cc}.video-js .vjs-big-play-button{font-size:3em;line-height:1.5em;height:1.63332em;width:3em;display:block;position:absolute;top:10px;left:10px;padding:0;cursor:pointer;opacity:1;border:.06666em solid #fff;background-color:#2b333f;background-color:#2b333fb3;border-radius:.3em;transition:all .4s}.vjs-big-play-centered .vjs-big-play-button{top:50%;left:50%;margin-top:-.81666em;margin-left:-1.5em}.video-js .vjs-big-play-button:focus,.video-js:hover .vjs-big-play-button{border-color:#fff;background-color:#73859f;background-color:#73859f80;transition:all 0s}.vjs-controls-disabled .vjs-big-play-button,.vjs-error .vjs-big-play-button,.vjs-has-started .vjs-big-play-button,.vjs-using-native-controls .vjs-big-play-button{display:none}.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button{display:block}.video-js button{background:0 0;border:none;color:inherit;display:inline-block;font-size:inherit;line-height:inherit;text-transform:none;text-decoration:none;transition:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.vjs-control .vjs-button{width:100%;height:100%}.video-js .vjs-control.vjs-close-button{cursor:pointer;height:3em;position:absolute;right:0;top:.5em;z-index:2}.video-js .vjs-modal-dialog{background:rgba(0,0,0,.8);background:linear-gradient(180deg,rgba(0,0,0,.8),rgba(255,255,255,0));overflow:auto}.video-js .vjs-modal-dialog>*{box-sizing:border-box}.vjs-modal-dialog .vjs-modal-dialog-content{font-size:1.2em;line-height:1.5;padding:20px 24px;z-index:1}.vjs-menu-button{cursor:pointer}.vjs-menu-button.vjs-disabled{cursor:default}.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu{display:none}.vjs-menu .vjs-menu-content{display:block;padding:0;margin:0;font-family:Arial,Helvetica,sans-serif;overflow:auto}.vjs-menu .vjs-menu-content>*{box-sizing:border-box}.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu{display:none}.vjs-menu li{list-style:none;margin:0;padding:.2em 0;line-height:1.4em;font-size:1.2em;text-align:center;text-transform:lowercase}.js-focus-visible .vjs-menu li.vjs-menu-item:hover,.vjs-menu li.vjs-menu-item:focus,.vjs-menu li.vjs-menu-item:hover{background-color:#73859f;background-color:#73859f80}.js-focus-visible .vjs-menu li.vjs-selected:hover,.vjs-menu li.vjs-selected,.vjs-menu li.vjs-selected:focus,.vjs-menu li.vjs-selected:hover{background-color:#fff;color:#2b333f}.js-focus-visible .vjs-menu :not(.vjs-selected):focus:not(.focus-visible),.video-js .vjs-menu :not(.vjs-selected):focus:not(:focus-visible){background:0 0}.vjs-menu li.vjs-menu-title{text-align:center;text-transform:uppercase;font-size:1em;line-height:2em;padding:0;margin:0 0 .3em;font-weight:700;cursor:default}.vjs-menu-button-popup .vjs-menu{display:none;position:absolute;bottom:0;width:10em;left:-3em;height:0;margin-bottom:1.5em;border-top-color:#2b333fb3}.vjs-menu-button-popup .vjs-menu .vjs-menu-content{background-color:#2b333f;background-color:#2b333fb3;position:absolute;width:100%;bottom:1.5em;max-height:15em}.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:5em}.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:10em}.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:14em}.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:25em}.vjs-menu-button-popup .vjs-menu.vjs-lock-showing,.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu{display:block}.video-js .vjs-menu-button-inline{transition:all .4s;overflow:hidden}.video-js .vjs-menu-button-inline:before{width:2.222222222em}.video-js .vjs-menu-button-inline.vjs-slider-active,.video-js .vjs-menu-button-inline:focus,.video-js .vjs-menu-button-inline:hover,.video-js.vjs-no-flex .vjs-menu-button-inline{width:12em}.vjs-menu-button-inline .vjs-menu{opacity:0;height:100%;width:auto;position:absolute;left:4em;top:0;padding:0;margin:0;transition:all .4s}.vjs-menu-button-inline.vjs-slider-active .vjs-menu,.vjs-menu-button-inline:focus .vjs-menu,.vjs-menu-button-inline:hover .vjs-menu{display:block;opacity:1}.vjs-no-flex .vjs-menu-button-inline .vjs-menu{display:block;opacity:1;position:relative;width:auto}.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu,.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu{width:auto}.vjs-menu-button-inline .vjs-menu-content{width:auto;height:100%;margin:0;overflow:hidden}.video-js .vjs-control-bar{display:none;width:100%;position:absolute;bottom:0;left:0;right:0;height:3em;background-color:#2b333f;background-color:#2b333fb3}.vjs-has-started .vjs-control-bar{display:flex;visibility:visible;opacity:1;transition:visibility .1s,opacity .1s}.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar{visibility:visible;opacity:0;pointer-events:none;transition:visibility 1s,opacity 1s}.vjs-controls-disabled .vjs-control-bar,.vjs-error .vjs-control-bar,.vjs-using-native-controls .vjs-control-bar{display:none!important}.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar{opacity:1;visibility:visible}.vjs-has-started.vjs-no-flex .vjs-control-bar{display:table}.video-js .vjs-control{position:relative;text-align:center;margin:0;padding:0;height:100%;width:4em;flex:none}.vjs-button>.vjs-icon-placeholder:before{font-size:1.8em;line-height:1.67}.vjs-button>.vjs-icon-placeholder{display:block}.video-js .vjs-control:focus,.video-js .vjs-control:focus:before,.video-js .vjs-control:hover:before{text-shadow:0 0 1em #fff}.video-js .vjs-control-text{border:0;clip:rect(0 0 0 0);height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.vjs-no-flex .vjs-control{display:table-cell;vertical-align:middle}.video-js .vjs-custom-control-spacer{display:none}.video-js .vjs-progress-control{cursor:pointer;flex:auto;display:flex;align-items:center;min-width:4em;touch-action:none}.video-js .vjs-progress-control.disabled{cursor:default}.vjs-live .vjs-progress-control{display:none}.vjs-liveui .vjs-progress-control{display:flex;align-items:center}.vjs-no-flex .vjs-progress-control{width:auto}.video-js .vjs-progress-holder{flex:auto;transition:all .2s;height:.3em}.video-js .vjs-progress-control .vjs-progress-holder{margin:0 10px}.video-js .vjs-progress-control:hover .vjs-progress-holder{font-size:1.6666666667em}.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled{font-size:1em}.video-js .vjs-progress-holder .vjs-load-progress,.video-js .vjs-progress-holder .vjs-load-progress div,.video-js .vjs-progress-holder .vjs-play-progress{position:absolute;display:block;height:100%;margin:0;padding:0;width:0}.video-js .vjs-play-progress{background-color:#fff}.video-js .vjs-play-progress:before{font-size:.9em;position:absolute;right:-.5em;top:-.3333333333em;z-index:1}.video-js .vjs-load-progress{background:rgba(115,133,159,.5)}.video-js .vjs-load-progress div{background:rgba(115,133,159,.75)}.video-js .vjs-time-tooltip{background-color:#fff;background-color:#fffc;border-radius:.3em;color:#000;float:right;font-family:Arial,Helvetica,sans-serif;font-size:1em;padding:6px 8px 8px;pointer-events:none;position:absolute;top:-3.4em;visibility:hidden;z-index:1}.video-js .vjs-progress-holder:focus .vjs-time-tooltip{display:none}.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,.video-js .vjs-progress-control:hover .vjs-time-tooltip{display:block;font-size:.6em;visibility:visible}.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip{font-size:1em}.video-js .vjs-progress-control .vjs-mouse-display{display:none;position:absolute;width:1px;height:100%;background-color:#000;z-index:1}.vjs-no-flex .vjs-progress-control .vjs-mouse-display{z-index:0}.video-js .vjs-progress-control:hover .vjs-mouse-display{display:block}.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display{visibility:hidden;opacity:0;transition:visibility 1s,opacity 1s}.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display{display:none}.vjs-mouse-display .vjs-time-tooltip{color:#fff;background-color:#000;background-color:#000c}.video-js .vjs-slider{position:relative;cursor:pointer;padding:0;margin:0 .45em;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:#73859f;background-color:#73859f80}.video-js .vjs-slider.disabled{cursor:default}.video-js .vjs-slider:focus{text-shadow:0 0 1em #fff;box-shadow:0 0 1em #fff}.video-js .vjs-mute-control{cursor:pointer;flex:none}.video-js .vjs-volume-control{cursor:pointer;margin-right:1em;display:flex}.video-js .vjs-volume-control.vjs-volume-horizontal{width:5em}.video-js .vjs-volume-panel .vjs-volume-control{visibility:visible;opacity:0;width:1px;height:1px;margin-left:-1px}.video-js .vjs-volume-panel{transition:width 1s}.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active,.video-js .vjs-volume-panel .vjs-volume-control:active,.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,.video-js .vjs-volume-panel:active .vjs-volume-control,.video-js .vjs-volume-panel:focus .vjs-volume-control{visibility:visible;opacity:1;position:relative;transition:visibility .1s,opacity .1s,height .1s,width .1s,left 0s,top 0s}.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal{width:5em;height:3em;margin-right:0}.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical,.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical{left:-3.5em;transition:left 0s}.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active{width:10em;transition:width .1s}.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only{width:4em}.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical{height:8em;width:3em;left:-3000em;transition:visibility 1s,opacity 1s,height 1s 1s,width 1s 1s,left 1s 1s,top 1s 1s}.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal{transition:visibility 1s,opacity 1s,height 1s 1s,width 1s,left 1s 1s,top 1s 1s}.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal{width:5em;height:3em;visibility:visible;opacity:1;position:relative;transition:none}.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical{position:absolute;bottom:3em;left:.5em}.video-js .vjs-volume-panel{display:flex}.video-js .vjs-volume-bar{margin:1.35em .45em}.vjs-volume-bar.vjs-slider-horizontal{width:5em;height:.3em}.vjs-volume-bar.vjs-slider-vertical{width:.3em;height:5em;margin:1.35em auto}.video-js .vjs-volume-level{position:absolute;bottom:0;left:0;background-color:#fff}.video-js .vjs-volume-level:before{position:absolute;font-size:.9em;z-index:1}.vjs-slider-vertical .vjs-volume-level{width:.3em}.vjs-slider-vertical .vjs-volume-level:before{top:-.5em;left:-.3em;z-index:1}.vjs-slider-horizontal .vjs-volume-level{height:.3em}.vjs-slider-horizontal .vjs-volume-level:before{top:-.3em;right:-.5em}.video-js .vjs-volume-panel.vjs-volume-panel-vertical{width:4em}.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level{height:100%}.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level{width:100%}.video-js .vjs-volume-vertical{width:3em;height:8em;bottom:8em;background-color:#2b333f;background-color:#2b333fb3}.video-js .vjs-volume-horizontal .vjs-menu{left:-2em}.video-js .vjs-volume-tooltip{background-color:#fff;background-color:#fffc;border-radius:.3em;color:#000;float:right;font-family:Arial,Helvetica,sans-serif;font-size:1em;padding:6px 8px 8px;pointer-events:none;position:absolute;top:-3.4em;visibility:hidden;z-index:1}.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip,.video-js .vjs-volume-control:hover .vjs-volume-tooltip{display:block;font-size:1em;visibility:visible}.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip,.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip{left:1em;top:-12px}.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip{font-size:1em}.video-js .vjs-volume-control .vjs-mouse-display{display:none;position:absolute;width:100%;height:1px;background-color:#000;z-index:1}.video-js .vjs-volume-horizontal .vjs-mouse-display{width:1px;height:100%}.vjs-no-flex .vjs-volume-control .vjs-mouse-display{z-index:0}.video-js .vjs-volume-control:hover .vjs-mouse-display{display:block}.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display{visibility:hidden;opacity:0;transition:visibility 1s,opacity 1s}.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display{display:none}.vjs-mouse-display .vjs-volume-tooltip{color:#fff;background-color:#000;background-color:#000c}.vjs-poster{display:inline-block;vertical-align:middle;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;background-color:#000;cursor:pointer;margin:0;padding:0;position:absolute;inset:0;height:100%}.vjs-has-started .vjs-poster{display:none}.vjs-audio.vjs-has-started .vjs-poster{display:block}.vjs-using-native-controls .vjs-poster{display:none}.video-js .vjs-live-control{display:flex;align-items:flex-start;flex:auto;font-size:1em;line-height:3em}.vjs-no-flex .vjs-live-control{display:table-cell;width:auto;text-align:left}.video-js.vjs-liveui .vjs-live-control,.video-js:not(.vjs-live) .vjs-live-control{display:none}.video-js .vjs-seek-to-live-control{align-items:center;cursor:pointer;flex:none;display:inline-flex;height:100%;padding-left:.5em;padding-right:.5em;font-size:1em;line-height:3em;width:auto;min-width:4em}.vjs-no-flex .vjs-seek-to-live-control{display:table-cell;width:auto;text-align:left}.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,.video-js:not(.vjs-live) .vjs-seek-to-live-control{display:none}.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge{cursor:auto}.vjs-seek-to-live-control .vjs-icon-placeholder{margin-right:.5em;color:#888}.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder{color:red}.video-js .vjs-time-control{flex:none;font-size:1em;line-height:3em;min-width:2em;width:auto;padding-left:1em;padding-right:1em}.vjs-live .vjs-time-control,.video-js .vjs-current-time,.vjs-no-flex .vjs-current-time,.video-js .vjs-duration,.vjs-no-flex .vjs-duration{display:none}.vjs-time-divider{display:none;line-height:3em}.vjs-live .vjs-time-divider{display:none}.video-js .vjs-play-control{cursor:pointer}.video-js .vjs-play-control .vjs-icon-placeholder{flex:none}.vjs-text-track-display{position:absolute;inset:0 0 3em;pointer-events:none}.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display{bottom:1em}.video-js .vjs-text-track{font-size:1.4em;text-align:center;margin-bottom:.1em}.vjs-subtitles{color:#fff}.vjs-captions{color:#fc6}.vjs-tt-cue{display:block}video::-webkit-media-text-track-display{transform:translateY(-3em)}.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display{transform:translateY(-1.5em)}.video-js .vjs-picture-in-picture-control,.video-js .vjs-fullscreen-control{cursor:pointer;flex:none}.vjs-playback-rate .vjs-playback-rate-value,.vjs-playback-rate>.vjs-menu-button{position:absolute;top:0;left:0;width:100%;height:100%}.vjs-playback-rate .vjs-playback-rate-value{pointer-events:none;font-size:1.5em;line-height:2;text-align:center}.vjs-playback-rate .vjs-menu{width:4em;left:0}.vjs-error .vjs-error-display .vjs-modal-dialog-content{font-size:1.4em;text-align:center}.vjs-error .vjs-error-display:before{color:#fff;content:"X";font-family:Arial,Helvetica,sans-serif;font-size:4em;left:0;line-height:1;margin-top:-.5em;position:absolute;text-shadow:.05em .05em .1em #000;text-align:center;top:50%;vertical-align:middle;width:100%}.vjs-loading-spinner{display:none;position:absolute;top:50%;left:50%;margin:-25px 0 0 -25px;opacity:.85;text-align:left;border:6px solid rgba(43,51,63,.7);box-sizing:border-box;background-clip:padding-box;width:50px;height:50px;border-radius:25px;visibility:hidden}.vjs-seeking .vjs-loading-spinner,.vjs-waiting .vjs-loading-spinner{display:block;animation:vjs-spinner-show 0s linear .3s forwards}.vjs-loading-spinner:after,.vjs-loading-spinner:before{content:"";position:absolute;margin:-6px;box-sizing:inherit;width:inherit;height:inherit;border-radius:inherit;opacity:1;border:inherit;border-color:transparent;border-top-color:#fff}.vjs-seeking .vjs-loading-spinner:after,.vjs-seeking .vjs-loading-spinner:before,.vjs-waiting .vjs-loading-spinner:after,.vjs-waiting .vjs-loading-spinner:before{animation:vjs-spinner-spin 1.1s cubic-bezier(.6,.2,0,.8) infinite,vjs-spinner-fade 1.1s linear infinite}.vjs-seeking .vjs-loading-spinner:before,.vjs-waiting .vjs-loading-spinner:before{border-top-color:#fff}.vjs-seeking .vjs-loading-spinner:after,.vjs-waiting .vjs-loading-spinner:after{border-top-color:#fff;animation-delay:.44s}@keyframes vjs-spinner-show{to{visibility:visible}}@keyframes vjs-spinner-spin{to{transform:rotate(360deg)}}@keyframes vjs-spinner-fade{0%{border-top-color:#73859f}20%{border-top-color:#73859f}35%{border-top-color:#fff}60%{border-top-color:#73859f}to{border-top-color:#73859f}}.vjs-chapters-button .vjs-menu ul{width:24em}.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder{vertical-align:middle;display:inline-block;margin-bottom:-.1em}.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before{font-family:VideoJS;content:"\f10d";font-size:1.5em;line-height:inherit}.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder{vertical-align:middle;display:inline-block;margin-bottom:-.1em}.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before{font-family:VideoJS;content:" \f11d";font-size:1.5em;line-height:inherit}.video-js.vjs-layout-small .vjs-current-time,.video-js.vjs-layout-small .vjs-duration,.video-js.vjs-layout-small .vjs-playback-rate,.video-js.vjs-layout-small .vjs-remaining-time,.video-js.vjs-layout-small .vjs-time-divider,.video-js.vjs-layout-small .vjs-volume-control,.video-js.vjs-layout-tiny .vjs-current-time,.video-js.vjs-layout-tiny .vjs-duration,.video-js.vjs-layout-tiny .vjs-playback-rate,.video-js.vjs-layout-tiny .vjs-remaining-time,.video-js.vjs-layout-tiny .vjs-time-divider,.video-js.vjs-layout-tiny .vjs-volume-control,.video-js.vjs-layout-x-small .vjs-current-time,.video-js.vjs-layout-x-small .vjs-duration,.video-js.vjs-layout-x-small .vjs-playback-rate,.video-js.vjs-layout-x-small .vjs-remaining-time,.video-js.vjs-layout-x-small .vjs-time-divider,.video-js.vjs-layout-x-small .vjs-volume-control{display:none}.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover{width:auto;width:initial}.video-js.vjs-layout-tiny .vjs-progress-control,.video-js.vjs-layout-x-small .vjs-progress-control{display:none}.video-js.vjs-layout-x-small .vjs-custom-control-spacer{flex:auto;display:block}.video-js.vjs-layout-x-small.vjs-no-flex .vjs-custom-control-spacer{width:auto}.vjs-modal-dialog.vjs-text-track-settings{background-color:#2b333f;background-color:#2b333fbf;color:#fff;height:70%}.vjs-text-track-settings .vjs-modal-dialog-content{display:table}.vjs-text-track-settings .vjs-track-settings-colors,.vjs-text-track-settings .vjs-track-settings-controls,.vjs-text-track-settings .vjs-track-settings-font{display:table-cell}.vjs-text-track-settings .vjs-track-settings-controls{text-align:right;vertical-align:bottom}@supports (display:grid){.vjs-text-track-settings .vjs-modal-dialog-content{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr;padding:20px 24px 0}.vjs-track-settings-controls .vjs-default-button{margin-bottom:20px}.vjs-text-track-settings .vjs-track-settings-controls{grid-column:1/-1}.vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,.vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content,.vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content{grid-template-columns:1fr}}.vjs-track-setting>select{margin-right:1em;margin-bottom:.5em}.vjs-text-track-settings fieldset{margin:5px;padding:3px;border:none}.vjs-text-track-settings fieldset span{display:inline-block}.vjs-text-track-settings fieldset span>select{max-width:7.3em}.vjs-text-track-settings legend{color:#fff;margin:0 0 5px}.vjs-text-track-settings .vjs-label{position:absolute;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);display:block;margin:0 0 5px;padding:0;border:0;height:1px;width:1px;overflow:hidden}.vjs-track-settings-controls button:active,.vjs-track-settings-controls button:focus{outline-style:solid;outline-width:medium;background-image:linear-gradient(0deg,#fff 88%,#73859f 100%)}.vjs-track-settings-controls button:hover{color:#2b333fbf}.vjs-track-settings-controls button{background-color:#fff;background-image:linear-gradient(-180deg,#fff 88%,#73859f 100%);color:#2b333f;cursor:pointer;border-radius:2px}.vjs-track-settings-controls .vjs-default-button{margin-right:1em}@media print{.video-js>:not(.vjs-tech):not(.vjs-poster){visibility:hidden}}.vjs-resize-manager{position:absolute;top:0;left:0;width:100%;height:100%;border:none;z-index:-1000}.js-focus-visible .video-js :focus:not(.focus-visible){outline:0}.video-js :focus:not(:focus-visible){outline:0}/*! videojs-markers - v0.5.0 - 2015-08-01 +* Copyright (c) 2015 ; Licensed */.vjs-marker{position:absolute;left:0;bottom:0;opacity:1;height:100%;transition:opacity .2s ease;-webkit-transition:opacity .2s ease;-moz-transition:opacity .2s ease}.vjs-marker:hover{cursor:pointer;transform:scale(1.3)}.vjs-tip{visibility:hidden;display:block;opacity:.8;padding:5px;font-size:10px;position:absolute;bottom:14px;z-index:100000}.vjs-tip .vjs-tip-arrow{background:url(data:image/gif;base64,R0lGODlhCQAJAIABAAAAAAAAACH5BAEAAAEALAAAAAAJAAkAAAIRjAOnwIrcDJxvwkplPtchVQAAOw==) bottom left no-repeat;bottom:0;left:50%;margin-left:-4px;position:absolute;width:9px;height:5px}.vjs-tip .vjs-tip-inner{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;padding:5px 8px 4px;background-color:#000;color:#fff;max-width:200px;text-align:center}.vjs-break-overlay{visibility:hidden;position:absolute;z-index:100000;top:0}.vjs-break-overlay .vjs-break-overlay-text{padding:9px;text-align:center}/** + * videojs-http-source-selector + * @version 1.1.6 + * @copyright 2019 Justin Fujita + * @license MIT + */.video-js.vjs-http-source-selector{display:block} + +/*# sourceMappingURL=styles.css.map*/ /*! videojs-markers - v0.5.0 - 2015-08-01 -* Copyright (c) 2015 ; Licensed */.vjs-marker{position:absolute;left:0;bottom:0;opacity:1;height:100%;transition:opacity .2s ease;-webkit-transition:opacity .2s ease;-moz-transition:opacity .2s ease}.vjs-marker:hover{cursor:pointer;transform:scale(1.3)}.vjs-tip{visibility:hidden;display:block;opacity:.8;padding:5px;font-size:10px;position:absolute;bottom:14px;z-index:100000}.vjs-tip .vjs-tip-arrow{background:url(data:image/gif;base64,R0lGODlhCQAJAIABAAAAAAAAACH5BAEAAAEALAAAAAAJAAkAAAIRjAOnwIrcDJxvwkplPtchVQAAOw==) 0 100% no-repeat;bottom:0;left:50%;margin-left:-4px;position:absolute;width:9px;height:5px}.vjs-tip .vjs-tip-inner{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;padding:5px 8px 4px;background-color:#000;color:#fff;max-width:200px;text-align:center}.vjs-break-overlay{visibility:hidden;position:absolute;z-index:100000;top:0}.vjs-break-overlay .vjs-break-overlay-text{padding:9px;text-align:center}.video-js.vjs-http-source-selector{display:block} -/*# sourceMappingURL=styles.css.map*/ \ No newline at end of file +* Copyright (c) 2015 ; Licensed */ + +.vjs-marker{position:absolute;left:0;bottom:0;opacity:1;height:100%;transition:opacity .2s ease;-webkit-transition:opacity .2s ease;-moz-transition:opacity .2s ease}.vjs-marker:hover{cursor:pointer;-webkit-transform:scale(1.3,1.3);-moz-transform:scale(1.3,1.3);-o-transform:scale(1.3,1.3);-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.vjs-tip{visibility:hidden;display:block;opacity:.8;padding:5px;font-size:10px;position:absolute;bottom:14px;z-index:100000}.vjs-tip .vjs-tip-arrow{background:url(data:image/gif;base64,R0lGODlhCQAJAIABAAAAAAAAACH5BAEAAAEALAAAAAAJAAkAAAIRjAOnwIrcDJxvwkplPtchVQAAOw==) bottom left no-repeat;bottom:0;left:50%;margin-left:-4px;position:absolute;width:9px;height:5px}.vjs-tip .vjs-tip-inner{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;padding:5px 8px 4px;background-color:#000;color:#fff;max-width:200px;text-align:center}.vjs-break-overlay{visibility:hidden;position:absolute;z-index:100000;top:0}.vjs-break-overlay .vjs-break-overlay-text{padding:9px;text-align:center} \ No newline at end of file diff --git a/web-component/sunbird-video-player.js b/web-component/sunbird-video-player.js index d28d91bc..db0998b6 100644 --- a/web-component/sunbird-video-player.js +++ b/web-component/sunbird-video-player.js @@ -1,15 +1,8 @@ -!function(){"use strict";var n,v={},_={};function e(n){var t=_[n];if(void 0!==t)return t.exports;var r=_[n]={id:n,loaded:!1,exports:{}};return v[n].call(r.exports,r,r.exports,e),r.loaded=!0,r.exports}e.m=v,n=[],e.O=function(t,r,c,a){if(!r){var i=1/0;for(u=0;u=a)&&Object.keys(e.O).every(function(d){return e.O[d](r[f])})?r.splice(f--,1):(l=!1,a0&&n[u-1][2]>a;u--)n[u]=n[u-1];n[u]=[r,c,a]},e.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return e.d(t,{a:t}),t},e.d=function(n,t){for(var r in t)e.o(t,r)&&!e.o(n,r)&&Object.defineProperty(n,r,{enumerable:!0,get:t[r]})},e.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},e.nmd=function(n){return n.paths=[],n.children||(n.children=[]),n},function(){var n={runtime:0};e.O.j=function(c){return 0===n[c]};var t=function(c,a){var f,o,u=a[0],i=a[1],l=a[2],s=0;for(f in i)e.o(i,f)&&(e.m[f]=i[f]);if(l)var p=l(e);for(c&&c(a);s{"use strict";var e,i={},_={};function a(e){var n=_[e];if(void 0!==n)return n.exports;var r=_[e]={id:e,loaded:!1,exports:{}};return i[e].call(r.exports,r,r.exports,a),r.loaded=!0,r.exports}a.m=i,e=[],a.O=(n,r,c,t)=>{if(!r){var u=1/0;for(l=0;l=t)&&Object.keys(a.O).every(h=>a.O[h](r[f]))?r.splice(f--,1):(o=!1,t0&&e[l-1][2]>t;l--)e[l]=e[l-1];e[l]=[r,c,t]},a.n=e=>{var n=e&&e.__esModule?()=>e.default:()=>e;return a.d(n,{a:n}),n},a.d=(e,n)=>{for(var r in n)a.o(n,r)&&!a.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:n[r]})},a.o=(e,n)=>Object.prototype.hasOwnProperty.call(e,n),a.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e={runtime:0};a.O.j=c=>0===e[c];var n=(c,t)=>{var f,s,[l,u,o]=t,v=0;if(l.some(p=>0!==e[p])){for(f in u)a.o(u,f)&&(a.m[f]=u[f]);if(o)var d=o(a)}for(c&&c(t);v=0;--z){var J=this.tryEntries[z],nt=J.completion;if("root"===J.tryLoc)return Y("end");if(J.tryLoc<=this.prev){var mt=r.call(J,"catchLoc"),ht=r.call(J,"finallyLoc");if(mt&&ht){if(this.prev=0;--Y){var z=this.tryEntries[Y];if(z.tryLoc<=this.prev&&r.call(z,"finallyLoc")&&this.prev=0;--G){var Y=this.tryEntries[G];if(Y.finallyLoc===A)return this.complete(Y.completion,Y.afterLoc),H(Y),_}},catch:function(A){for(var G=this.tryEntries.length-1;G>=0;--G){var Y=this.tryEntries[G];if(Y.tryLoc===A){var z=Y.completion;if("throw"===z.type){var J=z.arg;H(Y)}return J}}throw new Error("illegal catch attempt")},delegateYield:function(A,G,Y){return this.delegate={iterator:rt(A),resultName:G,nextLoc:Y},"next"===this.method&&(this.arg=n),_}},t}(o.exports);try{regeneratorRuntime=c}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=c:Function("r","regeneratorRuntime = r")(c)}},99:function(o,c,t){"use strict";t(1871),t(492),t(1827),t(4469),t(5983),t(4404),t(8932),t(3229),t(9525),t(6650),t(4018),t(6637),t(9662),t(382),t(1295),t(1287),t(4690),t(6802),t(3046),t(6803),t(4405),t(7673),t(2322),t(7177),t(6042),t(596),t(9560),t(564),t(721),t(6395),t(2825),t(746),t(6011),t(9657),t(2526),t(6487),t(6203),t(4693),t(176),t(3548),t(3340),t(6280),t(2877),t(1970),t(8609),t(2480),t(9407),t(465),t(3196),t(6976),t(9019),t(2770),t(1041),t(8780),t(2713),t(4460),t(4657),t(3191),t(9715),t(7694),t(4623),t(2799),t(976),t(8491),t(8937),t(9273),t(9783),t(895),t(630),t(4734),t(4566),t(83),t(8427),t(3474),t(9286),t(3161),t(840),t(6461),t(5367),t(7397),t(789),t(8600),t(2514),t(7332),t(7732),t(4053),t(4118),t(7903),t(1901),t(3400),t(3612),t(3534),t(9664) -/** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */},7581:function(){ +(self.webpackChunkvideo_player_wc=self.webpackChunkvideo_player_wc||[]).push([["polyfills"],{1312:(W,ye,Ne)=>{"use strict";Ne(4924),Ne(7586)},7586:()=>{ /*! (C) Andrea Giammarchi - @WebReflection - ISC Style License */ -!function(o,c){"use strict";function t(){var h=b.splice(0,b.length);for(qt=0;h.length;)h.shift().call(null,h.shift())}function e(h,D){for(var B=0,Q=h.length;B1)&&j(this)}}}),re(st,xt,{value:function(At){-1>0,z="__"+G+Y,J="addEventListener",nt="attached",mt="Callback",ht="detached",Tt="extends",xt="attributeChanged"+mt,Wt=nt+mt,St="connected"+mt,Ct="disconnected"+mt,wt="created"+mt,le=ht+mt,Jt="ADDITION",fe="REMOVAL",ae="DOMAttrModified",ue="DOMContentLoaded",he="DOMSubtreeModified",ce="<",pe="=",me=/^[A-Z][._A-Z0-9]*-[-._A-Z0-9]*$/,ye=["ANNOTATION-XML","COLOR-PROFILE","FONT-FACE","FONT-FACE-SRC","FONT-FACE-URI","FONT-FACE-FORMAT","FONT-FACE-NAME","MISSING-GLYPH"],ne=[],ve=[],Xt="",oe=m.documentElement,se=ne.indexOf||function(h){for(var D=this.length;D--&&this[D]!==h;);return D},Oe=F.prototype,ge=Oe.hasOwnProperty,I=Oe.isPrototypeOf,x=F.defineProperty,$=[],V=F.getOwnPropertyDescriptor,y=F.getOwnPropertyNames,S=F.getPrototypeOf,U=F.setPrototypeOf,Z=!!F.__proto__,at="__dreCEv1",ut=o.customElements,pt=!/^force/.test(c.type)&&!!(ut&&ut.define&&ut.get&&ut.whenDefined),yt=F.create||F,bt=o.Map||function(){var h,D=[],B=[];return{get:function(X){return B[se.call(D,X)]},set:function(X,st){(h=se.call(D,X))<0?B[D.push(X)-1]=st:B[h]=st}}},_t=o.Promise||function(h){function D(st){for(Q=!0;B.length;)B.shift()(st)}var B=[],Q=!1,X={catch:function(){return X},then:function(lt){return B.push(lt),Q&&setTimeout(D,1),X}};return h(D),X},Nt=!1,ee=yt(null),Kt=yt(null),Gt=new bt,Qt=function(D){return D.toLowerCase()},dt=F.create||function h(D){return D?(h.prototype=D,new h):this},Yt=U||(Z?function(h,D){return h.__proto__=D,h}:y&&V?function(){function h(D,B){for(var Q,X=y(B),st=0,lt=X.length;st
",new Zt(function(h,D){if(h[0]&&"childList"==h[0].type&&!h[0].removedNodes[0].childNodes.length){var B=(A=V(jt,"innerHTML"))&&A.set;B&&x(jt,"innerHTML",{set:function(X){for(;this.lastChild;)this.removeChild(this.lastChild);B.call(this,X)}})}D.disconnect(),A=null}).observe(A,{childList:!0,subtree:!0}),A.innerHTML=""),ot||(U||Z?(tt=function(D,B){I.call(B,D)||d(D,B)},K=d):(tt=function(D,B){D[z]||(D[z]=F(!0),d(D,B))},K=tt),Pt?(ft=!1,h=V(jt,J),D=h.value,B=function(lt){var gt=new CustomEvent(ae,{bubbles:!0});gt.attrName=lt,gt.prevValue=de.call(this,lt),gt.newValue=null,gt[fe]=gt.attrChange=2,ie.call(this,lt),zt.call(this,gt)},Q=function(lt,gt){var Lt=Ee.call(this,lt),At=Lt&&de.call(this,lt),Ft=new CustomEvent(ae,{bubbles:!0});Et.call(this,lt,gt),Ft.attrName=lt,Ft.prevValue=Lt?At:null,Ft.newValue=gt,Lt?Ft.MODIFICATION=Ft.attrChange=1:Ft[Jt]=Ft.attrChange=0,zt.call(this,Ft)},X=function(lt){var gt,Lt=lt.currentTarget,At=Lt[z],Ft=lt.propertyName;At.hasOwnProperty(Ft)&&(At=At[Ft],(gt=new CustomEvent(ae,{bubbles:!0})).attrName=At.name,gt.prevValue=At.value||null,gt.newValue=At.value=Lt[Ft]||null,null==gt.prevValue?gt[Jt]=gt.attrChange=0:gt.MODIFICATION=gt.attrChange=1,zt.call(Lt,gt))},h.value=function(st,lt,gt){st===ae&&this[xt]&&this.setAttribute!==Q&&(this[z]={className:{name:"class",value:this.className}},this.setAttribute=Q,this.removeAttribute=B,D.call(this,"propertychange",X)),D.call(this,st,lt,gt)},x(jt,J,h)):Zt||(oe[J](ae,It),oe.setAttribute(z,1),oe.removeAttribute(z),ft&&(W=function(D){var B,Q,X,st=this;if(st===D.target){for(X in B=st[z],st[z]=Q=H(st),Q){if(!(X in B))return N(0,st,X,B[X],Q[X],Jt);if(Q[X]!==B[X])return N(1,st,X,B[X],Q[X],"MODIFICATION")}for(X in B)if(!(X in Q))return N(2,st,X,B[X],Q[X],fe)}},N=function(D,B,Q,X,st,lt){var gt={attrChange:D,currentTarget:B,attrName:Q,prevValue:X,newValue:st};gt[lt]=D,i(gt)},H=function(D){for(var B,Q,X={},st=D.attributes,lt=0,gt=st.length;lt$");if(D[Tt]="a",h.prototype=dt(Vt.prototype),h.prototype.constructor=h,o.customElements.define(B,h,D),!Q.test(m.createElement("a",{is:B}).outerHTML)||!Q.test((new h).outerHTML))throw D}(function h(){return Reflect.construct(Vt,[],h)},{},"document-register-element-a"+Y)}catch(h){E()}if(!c.noBuiltIn)try{if(it.call(m,"a","a").outerHTML.indexOf("is")<0)throw{}}catch(h){Qt=function(B){return{is:B.toLowerCase()}}}}(window)},9664:function(o,c,t){"use strict"; +!function(W,ye){"use strict";function Ne(){var t=ze.splice(0,ze.length);for(v=0;t.length;)t.shift().call(null,t.shift())}function Ve(t,s){for(var f=0,h=t.length;f1)&<(this)}}}),pe(C,He,{value:function(Z){-1>0,Se="__"+Fe+mt,_e="addEventListener",Ae="attached",de="Callback",we="detached",Be="extends",He="attributeChanged"+de,Et=Ae+de,Tt="connected"+de,ut="disconnected"+de,$e="created"+de,gt=we+de,Ke="ADDITION",it="REMOVAL",Ie="DOMAttrModified",_t="DOMContentLoaded",ct="DOMSubtreeModified",De="<",at="=",yt=/^[A-Z][._A-Z0-9]*-[-._A-Z0-9]*$/,vt=["ANNOTATION-XML","COLOR-PROFILE","FONT-FACE","FONT-FACE-SRC","FONT-FACE-URI","FONT-FACE-FORMAT","FONT-FACE-NAME","MISSING-GLYPH"],e=[],n=[],a="",i=U.documentElement,u=e.indexOf||function(t){for(var s=this.length;s--&&this[s]!==t;);return s},d=Te.prototype,k=d.hasOwnProperty,g=d.isPrototypeOf,P=Te.defineProperty,O=[],M=Te.getOwnPropertyDescriptor,B=Te.getOwnPropertyNames,j=Te.getPrototypeOf,F=Te.setPrototypeOf,re=!!Te.__proto__,he="__dreCEv1",z=W.customElements,N=!/^force/.test(ye.type)&&!!(z&&z.define&&z.get&&z.whenDefined),b=Te.create||Te,me=W.Map||function(){var t,s=[],f=[];return{get:function(h){return f[u.call(s,h)]},set:function(h,_){(t=u.call(s,h))<0?f[s.push(h)-1]=_:f[t]=_}}},Y=W.Promise||function(t){function s(C){for(h=!0;f.length;)f.shift()(C)}var f=[],h=!1,_={catch:function(){return _},then:function(C){return f.push(C),h&&setTimeout(s,1),_}};return t(s),_},ce=!1,G=b(null),y=b(null),$=new me,p=function(t){return t.toLowerCase()},V=Te.create||function t(s){return s?(t.prototype=s,new t):this},R=F||(re?function(t,s){return t.__proto__=s,t}:B&&M?function(){function t(s,f){for(var h,_=B(f),C=0,w=_.length;C
",new ue(function(t,s){if(t[0]&&"childList"==t[0].type&&!t[0].removedNodes[0].childNodes.length){var f=(Re=M(x,"innerHTML"))&&Re.set;f&&P(x,"innerHTML",{set:function(h){for(;this.lastChild;)this.removeChild(this.lastChild);f.call(this,h)}})}s.disconnect(),Re=null}).observe(Re,{childList:!0,subtree:!0}),Re.innerHTML=""),S||(F||re?(st=function(t,s){g.call(s,t)||We(t,s)},ke=We):(st=function(t,s){t[Se]||(t[Se]=Te(!0),We(t,s))},ke=st),Q?(J=!1,t=M(x,_e),s=t.value,f=function(C){var w=new CustomEvent(Ie,{bubbles:!0});w.attrName=C,w.prevValue=H.call(this,C),w.newValue=null,w[it]=w.attrChange=2,be.call(this,C),c.call(this,w)},h=function(C,w){var ae=ne.call(this,C),Z=ae&&H.call(this,C),se=new CustomEvent(Ie,{bubbles:!0});m.call(this,C,w),se.attrName=C,se.prevValue=ae?Z:null,se.newValue=w,ae?se.MODIFICATION=se.attrChange=1:se[Ke]=se.attrChange=0,c.call(this,se)},_=function(C){var w,ae=C.currentTarget,Z=ae[Se],se=C.propertyName;Z.hasOwnProperty(se)&&(Z=Z[se],(w=new CustomEvent(Ie,{bubbles:!0})).attrName=Z.name,w.prevValue=Z.value||null,w.newValue=Z.value=ae[se]||null,null==w.prevValue?w[Ke]=w.attrChange=0:w.MODIFICATION=w.attrChange=1,c.call(ae,w))},t.value=function(C,w,ae){C===Ie&&this[He]&&this.setAttribute!==h&&(this[Se]={className:{name:"class",value:this.className}},this.setAttribute=h,this.removeAttribute=f,s.call(this,"propertychange",_)),s.call(this,C,w,ae)},P(x,_e,t)):ue||(i[_e](Ie,D),i.setAttribute(Se,1),i.removeAttribute(Se),J&&(ot=function(t){var s,f,h,_=this;if(_===t.target){for(h in s=_[Se],_[Se]=f=ve(_),f){if(!(h in s))return Ye(0,_,h,s[h],f[h],Ke);if(f[h]!==s[h])return Ye(1,_,h,s[h],f[h],"MODIFICATION")}for(h in s)if(!(h in f))return Ye(2,_,h,s[h],f[h],it)}},Ye=function(t,s,f,h,_,C){var w={attrChange:t,currentTarget:s,attrName:f,prevValue:h,newValue:_};w[C]=t,Qe(w)},ve=function(t){for(var s,f,h={},_=t.attributes,C=0,w=_.length;C$");if(s[Be]="a",t.prototype=V(Ce.prototype),t.prototype.constructor=t,W.customElements.define(f,t,s),!h.test(U.createElement("a",{is:f}).outerHTML)||!h.test((new t).outerHTML))throw s}(function t(){return Reflect.construct(Ce,[],t)},{},"document-register-element-a"+mt)}catch{Xe()}if(!ye.noBuiltIn)try{if(E.call(U,"a","a").outerHTML.indexOf("is")<0)throw{}}catch{p=function(s){return{is:s.toLowerCase()}}}}(window)},4924:()=>{"use strict"; /** * @license Angular v14.2.0-next.0 * (c) 2010-2022 Google LLC. https://angular.io/ @@ -21,14 +14,7 @@ * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var r,n,a,s,i,e=t(6466).default;function u(N,H,k){var rt=k.configurable;return d(N,H,k=v(N,H,k),rt)}function f(N,H){return N&&N[i]&&N[i][H]}function v(N,H,k){return Object.isFrozen(k)||(k.configurable=!0),k.configurable||(!N[i]&&!Object.isFrozen(N)&&n(N,i,{writable:!0,value:{}}),N[i]&&(N[i][H]=!0)),k}function d(N,H,k,rt){try{return n(N,H,k)}catch(A){if(!k.configurable)throw A;void 0===rt?delete k.configurable:k.configurable=rt;try{return n(N,H,k)}catch(G){var tt=!1;if(("createdCallback"===H||"attachedCallback"===H||"detachedCallback"===H||"attributeChangedCallback"===H)&&(tt=!0),!tt)throw G;var K=null;try{K=JSON.stringify(k)}catch(Y){K=k.toString()}console.log("Attempting to configure '".concat(H,"' with descriptor '").concat(K,"' on object '").concat(N,"' and got error, giving up: ").concat(G))}}} -/** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ + */!function(e){const n=e.performance;function a(K){n&&n.mark&&n.mark(K)}function i(K,o){n&&n.measure&&n.measure(K,o)}a("Zone");const u=e.__Zone_symbol_prefix||"__zone_symbol__";function d(K){return u+K}const k=!0===e[d("forceDuplicateZoneCheck")];if(e.Zone){if(k||"function"!=typeof e.Zone.__symbol__)throw new Error("Zone already loaded.");return e.Zone}class g{constructor(o,r){this._parent=o,this._name=r?r.name||"unnamed":"",this._properties=r&&r.properties||{},this._zoneDelegate=new O(this,this._parent&&this._parent._zoneDelegate,r)}static assertZonePatched(){if(e.Promise!==Ce.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=g.current;for(;o.parent;)o=o.parent;return o}static get current(){return Q.zone}static get currentTask(){return pe}static __load_patch(o,r,c=!1){if(Ce.hasOwnProperty(o)){if(!c&&k)throw Error("Already loaded patch: "+o)}else if(!e["__Zone_disable_"+o]){const H="Zone:"+o;a(H),Ce[o]=r(e,g,x),i(H,H)}}get parent(){return this._parent}get name(){return this._name}get(o){const r=this.getZoneWith(o);if(r)return r._properties[o]}getZoneWith(o){let r=this;for(;r;){if(r._properties.hasOwnProperty(o))return r;r=r._parent}return null}fork(o){if(!o)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,o)}wrap(o,r){if("function"!=typeof o)throw new Error("Expecting function got: "+o);const c=this._zoneDelegate.intercept(this,o,r),H=this;return function(){return H.runGuarded(c,this,arguments,r)}}run(o,r,c,H){Q={parent:Q,zone:this};try{return this._zoneDelegate.invoke(this,o,r,c,H)}finally{Q=Q.parent}}runGuarded(o,r=null,c,H){Q={parent:Q,zone:this};try{try{return this._zoneDelegate.invoke(this,o,r,c,H)}catch(ne){if(this._zoneDelegate.handleError(this,ne))throw ne}}finally{Q=Q.parent}}runTask(o,r,c){if(o.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(o.zone||me).name+"; Execution: "+this.name+")");if(o.state===Y&&(o.type===ue||o.type===R))return;const H=o.state!=y;H&&o._transitionTo(y,G),o.runCount++;const ne=pe;pe=o,Q={parent:Q,zone:this};try{o.type==R&&o.data&&!o.data.isPeriodic&&(o.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,o,r,c)}catch(be){if(this._zoneDelegate.handleError(this,be))throw be}}finally{o.state!==Y&&o.state!==p&&(o.type==ue||o.data&&o.data.isPeriodic?H&&o._transitionTo(G,y):(o.runCount=0,this._updateTaskCount(o,-1),H&&o._transitionTo(Y,y,Y))),Q=Q.parent,pe=ne}}scheduleTask(o){if(o.zone&&o.zone!==this){let c=this;for(;c;){if(c===o.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${o.zone.name}`);c=c.parent}}o._transitionTo(ce,Y);const r=[];o._zoneDelegates=r,o._zone=this;try{o=this._zoneDelegate.scheduleTask(this,o)}catch(c){throw o._transitionTo(p,ce,Y),this._zoneDelegate.handleError(this,c),c}return o._zoneDelegates===r&&this._updateTaskCount(o,1),o.state==ce&&o._transitionTo(G,ce),o}scheduleMicroTask(o,r,c,H){return this.scheduleTask(new M(V,o,r,c,H,void 0))}scheduleMacroTask(o,r,c,H,ne){return this.scheduleTask(new M(R,o,r,c,H,ne))}scheduleEventTask(o,r,c,H,ne){return this.scheduleTask(new M(ue,o,r,c,H,ne))}cancelTask(o){if(o.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(o.zone||me).name+"; Execution: "+this.name+")");o._transitionTo($,G,y);try{this._zoneDelegate.cancelTask(this,o)}catch(r){throw o._transitionTo(p,$),this._zoneDelegate.handleError(this,r),r}return this._updateTaskCount(o,-1),o._transitionTo(Y,$),o.runCount=0,o}_updateTaskCount(o,r){const c=o._zoneDelegates;-1==r&&(o._zoneDelegates=null);for(let H=0;HK.hasTask(r,c),onScheduleTask:(K,o,r,c)=>K.scheduleTask(r,c),onInvokeTask:(K,o,r,c,H,ne)=>K.invokeTask(r,c,H,ne),onCancelTask:(K,o,r,c)=>K.cancelTask(r,c)};class O{constructor(o,r,c){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this.zone=o,this._parentDelegate=r,this._forkZS=c&&(c&&c.onFork?c:r._forkZS),this._forkDlgt=c&&(c.onFork?r:r._forkDlgt),this._forkCurrZone=c&&(c.onFork?this.zone:r._forkCurrZone),this._interceptZS=c&&(c.onIntercept?c:r._interceptZS),this._interceptDlgt=c&&(c.onIntercept?r:r._interceptDlgt),this._interceptCurrZone=c&&(c.onIntercept?this.zone:r._interceptCurrZone),this._invokeZS=c&&(c.onInvoke?c:r._invokeZS),this._invokeDlgt=c&&(c.onInvoke?r:r._invokeDlgt),this._invokeCurrZone=c&&(c.onInvoke?this.zone:r._invokeCurrZone),this._handleErrorZS=c&&(c.onHandleError?c:r._handleErrorZS),this._handleErrorDlgt=c&&(c.onHandleError?r:r._handleErrorDlgt),this._handleErrorCurrZone=c&&(c.onHandleError?this.zone:r._handleErrorCurrZone),this._scheduleTaskZS=c&&(c.onScheduleTask?c:r._scheduleTaskZS),this._scheduleTaskDlgt=c&&(c.onScheduleTask?r:r._scheduleTaskDlgt),this._scheduleTaskCurrZone=c&&(c.onScheduleTask?this.zone:r._scheduleTaskCurrZone),this._invokeTaskZS=c&&(c.onInvokeTask?c:r._invokeTaskZS),this._invokeTaskDlgt=c&&(c.onInvokeTask?r:r._invokeTaskDlgt),this._invokeTaskCurrZone=c&&(c.onInvokeTask?this.zone:r._invokeTaskCurrZone),this._cancelTaskZS=c&&(c.onCancelTask?c:r._cancelTaskZS),this._cancelTaskDlgt=c&&(c.onCancelTask?r:r._cancelTaskDlgt),this._cancelTaskCurrZone=c&&(c.onCancelTask?this.zone:r._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const H=c&&c.onHasTask,ne=r&&r._hasTaskZS;(H||ne)&&(this._hasTaskZS=H?c:P,this._hasTaskDlgt=r,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=o,c.onScheduleTask||(this._scheduleTaskZS=P,this._scheduleTaskDlgt=r,this._scheduleTaskCurrZone=this.zone),c.onInvokeTask||(this._invokeTaskZS=P,this._invokeTaskDlgt=r,this._invokeTaskCurrZone=this.zone),c.onCancelTask||(this._cancelTaskZS=P,this._cancelTaskDlgt=r,this._cancelTaskCurrZone=this.zone))}fork(o,r){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,o,r):new g(o,r)}intercept(o,r,c){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,o,r,c):r}invoke(o,r,c,H,ne){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,o,r,c,H,ne):r.apply(c,H)}handleError(o,r){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,o,r)}scheduleTask(o,r){let c=r;if(this._scheduleTaskZS)this._hasTaskZS&&c._zoneDelegates.push(this._hasTaskDlgtOwner),c=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,o,r),c||(c=r);else if(r.scheduleFn)r.scheduleFn(r);else{if(r.type!=V)throw new Error("Task is missing scheduleFn.");N(r)}return c}invokeTask(o,r,c,H){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,o,r,c,H):r.callback.apply(c,H)}cancelTask(o,r){let c;if(this._cancelTaskZS)c=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,o,r);else{if(!r.cancelFn)throw Error("Task is not cancelable");c=r.cancelFn(r)}return c}hasTask(o,r){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,o,r)}catch(c){this.handleError(o,c)}}_updateTaskCount(o,r){const c=this._taskCounts,H=c[o],ne=c[o]=H+r;if(ne<0)throw new Error("More tasks executed then were scheduled.");if(0==H||0==ne){const be={microTask:c.microTask>0,macroTask:c.macroTask>0,eventTask:c.eventTask>0,change:o};this.hasTask(this.zone,be)}}}class M{constructor(o,r,c,H,ne,be){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state="notScheduled",this.type=o,this.source=r,this.data=H,this.scheduleFn=ne,this.cancelFn=be,!c)throw new Error("callback is not defined");this.callback=c;const m=this;o===ue&&H&&H.useG?this.invoke=M.invokeTask:this.invoke=function(){return M.invokeTask.call(e,m,this,arguments)}}static invokeTask(o,r,c){o||(o=this),ge++;try{return o.runCount++,o.zone.runTask(o,r,c)}finally{1==ge&&b(),ge--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(Y,ce)}_transitionTo(o,r,c){if(this._state!==r&&this._state!==c)throw new Error(`${this.type} '${this.source}': can not transition to '${o}', expecting state '${r}'${c?" or '"+c+"'":""}, was '${this._state}'.`);this._state=o,o==Y&&(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"),j=d("Promise"),F=d("then");let he,re=[],X=!1;function z(K){if(he||e[j]&&(he=e[j].resolve(0)),he){let o=he[F];o||(o=he.then),o.call(he,K)}else e[B](K,0)}function N(K){0===ge&&0===re.length&&z(b),K&&re.push(K)}function b(){if(!X){for(X=!0;re.length;){const K=re;re=[];for(let o=0;oQ,onUnhandledError:te,microtaskDrainDone:te,scheduleMicroTask:N,showUncaughtError:()=>!g[d("ignoreConsoleErrorUncaughtError")],patchEventTarget:()=>[],patchOnProperties:te,patchMethod:()=>te,bindArguments:()=>[],patchThen:()=>te,patchMacroTask:()=>te,patchEventPrototype:()=>te,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>te,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>te,wrapWithCurrentZone:()=>te,filterProperties:()=>[],attachOriginToPatched:()=>te,_redefineProperty:()=>te,patchCallbacks:()=>te,nativeScheduleMicroTask:z};let Q={parent:null,zone:new g(null,null)},pe=null,ge=0;function te(){}i("Zone","Zone"),e.Zone=g}(typeof window<"u"&&window||typeof self<"u"&&self||global); /** * @license * Copyright Google LLC All Rights Reserved. @@ -36,14 +22,14 @@ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function O(N,H){var k=N.getGlobalObjects(),rt=k.isNode,tt=k.isMix;if((!rt||tt)&&!function(N,H){var k=N.getGlobalObjects(),rt=k.isBrowser,tt=k.isMix;if((rt||tt)&&!N.ObjectGetOwnPropertyDescriptor(HTMLElement.prototype,"onclick")&&"undefined"!=typeof Element){var K=N.ObjectGetOwnPropertyDescriptor(Element.prototype,"onclick");if(K&&!K.configurable)return!1;if(K){N.ObjectDefineProperty(Element.prototype,"onclick",{enumerable:!0,configurable:!0,get:function(){return!0}});var G=!!document.createElement("div").onclick;return N.ObjectDefineProperty(Element.prototype,"onclick",K),G}}var Y=H.XMLHttpRequest;if(!Y)return!1;var z="onreadystatechange",J=Y.prototype,nt=N.ObjectGetOwnPropertyDescriptor(J,z);if(nt){N.ObjectDefineProperty(J,z,{enumerable:!0,configurable:!0,get:function(){return!0}});var ht=!!(new Y).onreadystatechange;return N.ObjectDefineProperty(J,z,nt||{}),ht}var Tt=N.symbol("fake");N.ObjectDefineProperty(J,z,{enumerable:!0,configurable:!0,get:function(){return this[Tt]},set:function(wt){this[Tt]=wt}});var xt=new Y,Wt=function(){};xt.onreadystatechange=Wt;var St=xt[Tt]===Wt;return xt.onreadystatechange=null,St}(N,H)){var K="undefined"!=typeof WebSocket;(function(N){for(var H=N.symbol("unbound"),k=function(){var K=C[rt],A="on"+K;self.addEventListener(K,function(G){var z,J,Y=G.target;for(J=Y?Y.constructor.name+"."+A:"unknown."+A;Y;)Y[A]&&!Y[A][H]&&((z=N.wrapWithCurrentZone(Y[A],J))[H]=Y[A],Y[A]=z),Y=Y.parentElement},!0)},rt=0;rt=0;a--)"function"==typeof e[a]&&(e[a]=et(e[a],n+"_"+a));return e}function lt(e){return!e||!1!==e.writable&&!("function"==typeof e.get&&typeof e.set>"u")}const nt=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,Xe=!("nw"in le)&&typeof le.process<"u"&&"[object process]"==={}.toString.call(le.process),U=!Xe&&!nt&&!(!qe||!Ze.HTMLElement),Te=typeof le.process<"u"&&"[object process]"==={}.toString.call(le.process)&&!nt&&!(!qe||!Ze.HTMLElement),rt={},ze=function(e){if(!(e=e||le.event))return;let n=rt[e.type];n||(n=rt[e.type]=q("ON_PROPERTY"+e.type));const a=this||e.target||le,i=a[n];let u;if(U&&a===Ze&&"error"===e.type){const d=e;u=i&&i.call(this,d.message,d.filename,d.lineno,d.colno,d.error),!0===u&&e.preventDefault()}else u=i&&i.apply(this,arguments),null!=u&&!u&&e.preventDefault();return u};function ot(e,n,a){let i=W(e,n);if(!i&&a&&W(a,n)&&(i={enumerable:!0,configurable:!0}),!i||!i.configurable)return;const u=q("on"+n+"patched");if(e.hasOwnProperty(u)&&e[u])return;delete i.writable,delete i.value;const d=i.get,k=i.set,g=n.slice(2);let P=rt[g];P||(P=rt[g]=q("ON_PROPERTY"+g)),i.set=function(O){let M=this;!M&&e===le&&(M=le),M&&("function"==typeof M[P]&&M.removeEventListener(g,ze),k&&k.call(M,null),M[P]=O,"function"==typeof O&&M.addEventListener(g,ze,!1))},i.get=function(){let O=this;if(!O&&e===le&&(O=le),!O)return null;const M=O[P];if(M)return M;if(d){let B=d.call(this);if(B)return i.set.call(this,B),"function"==typeof O.removeAttribute&&O.removeAttribute(n),B}return null},ye(e,n,i),e[u]=!0}function Ye(e,n,a){if(n)for(let i=0;ifunction(k,g){const P=a(k,g);return P.cbIdx>=0&&"function"==typeof g[P.cbIdx]?We(P.name,g[P.cbIdx],P,u):d.apply(k,g)})}function ke(e,n){e[q("OriginalDelegate")]=n}let Re=!1,Fe=!1;function Se(){if(Re)return Fe;Re=!0;try{const e=Ze.navigator.userAgent;(-1!==e.indexOf("MSIE ")||-1!==e.indexOf("Trident/")||-1!==e.indexOf("Edge/"))&&(Fe=!0)}catch{}return Fe} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */)(N),N.patchClass("XMLHttpRequest"),K&& + */Zone.__load_patch("ZoneAwarePromise",(e,n,a)=>{const i=Object.getOwnPropertyDescriptor,u=Object.defineProperty;const k=a.symbol,g=[],P=!0===e[k("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],O=k("Promise"),M=k("then");a.onUnhandledError=m=>{if(a.showUncaughtError()){const E=m&&m.rejection;E?console.error("Unhandled Promise rejection:",E instanceof Error?E.message:E,"; Zone:",m.zone.name,"; Task:",m.task&&m.task.source,"; Value:",E,E instanceof Error?E.stack:void 0):console.error(m)}},a.microtaskDrainDone=()=>{for(;g.length;){const m=g.shift();try{m.zone.runGuarded(()=>{throw m.throwOriginal?m.rejection:m})}catch(E){F(E)}}};const j=k("unhandledPromiseRejectionHandler");function F(m){a.onUnhandledError(m);try{const E=n[j];"function"==typeof E&&E.call(this,m)}catch{}}function re(m){return m&&m.then}function X(m){return m}function he(m){return r.reject(m)}const z=k("state"),N=k("value"),b=k("finally"),me=k("parentPromiseValue"),Y=k("parentPromiseState"),G=null,y=!0,$=!1;function V(m,E){return l=>{try{x(m,E,l)}catch(T){x(m,!1,T)}}}const R=function(){let m=!1;return function(l){return function(){m||(m=!0,l.apply(null,arguments))}}},Ce=k("currentTaskTrace");function x(m,E,l){const T=R();if(m===l)throw new TypeError("Promise resolved with itself");if(m[z]===G){let L=null;try{("object"==typeof l||"function"==typeof l)&&(L=l&&l.then)}catch(D){return T(()=>{x(m,!1,D)})(),m}if(E!==$&&l instanceof r&&l.hasOwnProperty(z)&&l.hasOwnProperty(N)&&l[z]!==G)pe(l),x(m,l[z],l[N]);else if(E!==$&&"function"==typeof L)try{L.call(l,T(V(m,E)),T(V(m,!1)))}catch(D){T(()=>{x(m,!1,D)})()}else{m[z]=E;const D=m[N];if(m[N]=l,m[b]===b&&E===y&&(m[z]=m[Y],m[N]=m[me]),E===$&&l instanceof Error){const v=n.currentTask&&n.currentTask.data&&n.currentTask.data.__creationTrace__;v&&u(l,Ce,{configurable:!0,enumerable:!1,writable:!0,value:v})}for(let v=0;v{try{const S=m[N],I=!!l&&b===l[b];I&&(l[me]=S,l[Y]=D);const A=E.run(v,void 0,I&&v!==he&&v!==X?[]:[S]);x(l,!0,A)}catch(S){x(l,!1,S)}},l)}const K=function(){},o=e.AggregateError;class r{static toString(){return"function ZoneAwarePromise() { [native code] }"}static resolve(E){return x(new this(null),y,E)}static reject(E){return x(new this(null),$,E)}static any(E){if(!E||"function"!=typeof E[Symbol.iterator])return Promise.reject(new o([],"All promises were rejected"));const l=[];let T=0;try{for(let v of E)T++,l.push(r.resolve(v))}catch{return Promise.reject(new o([],"All promises were rejected"))}if(0===T)return Promise.reject(new o([],"All promises were rejected"));let L=!1;const D=[];return new r((v,S)=>{for(let I=0;I{L||(L=!0,v(A))},A=>{D.push(A),T--,0===T&&(L=!0,S(new o(D,"All promises were rejected")))})})}static race(E){let l,T,L=new this((S,I)=>{l=S,T=I});function D(S){l(S)}function v(S){T(S)}for(let S of E)re(S)||(S=this.resolve(S)),S.then(D,v);return L}static all(E){return r.allWithCallback(E)}static allSettled(E){return(this&&this.prototype instanceof r?this:r).allWithCallback(E,{thenCallback:T=>({status:"fulfilled",value:T}),errorCallback:T=>({status:"rejected",reason:T})})}static allWithCallback(E,l){let T,L,D=new this((A,J)=>{T=A,L=J}),v=2,S=0;const I=[];for(let A of E){re(A)||(A=this.resolve(A));const J=S;try{A.then(ee=>{I[J]=l?l.thenCallback(ee):ee,v--,0===v&&T(I)},ee=>{l?(I[J]=l.errorCallback(ee),v--,0===v&&T(I)):L(ee)})}catch(ee){L(ee)}v++,S++}return v-=2,0===v&&T(I),D}constructor(E){const l=this;if(!(l instanceof r))throw new Error("Must be an instanceof Promise.");l[z]=G,l[N]=[];try{const T=R();E&&E(T(V(l,y)),T(V(l,$)))}catch(T){x(l,!1,T)}}get[Symbol.toStringTag](){return"Promise"}get[Symbol.species](){return r}then(E,l){var T;let L=null===(T=this.constructor)||void 0===T?void 0:T[Symbol.species];(!L||"function"!=typeof L)&&(L=this.constructor||r);const D=new L(K),v=n.current;return this[z]==G?this[N].push(v,D,E,l):ge(this,v,D,E,l),D}catch(E){return this.then(null,E)}finally(E){var l;let T=null===(l=this.constructor)||void 0===l?void 0:l[Symbol.species];(!T||"function"!=typeof T)&&(T=r);const L=new T(K);L[b]=b;const D=n.current;return this[z]==G?this[N].push(D,L,E,E):ge(this,D,L,E,E),L}}r.resolve=r.resolve,r.reject=r.reject,r.race=r.race,r.all=r.all;const c=e[O]=e.Promise;e.Promise=r;const H=k("thenPatched");function ne(m){const E=m.prototype,l=i(E,"then");if(l&&(!1===l.writable||!l.configurable))return;const T=E.then;E[M]=T,m.prototype.then=function(L,D){return new r((S,I)=>{T.call(this,S,I)}).then(L,D)},m[H]=!0}return a.patchThen=ne,c&&(ne(c),Le(e,"fetch",m=>function be(m){return function(E,l){let T=m.apply(E,l);if(T instanceof r)return T;let L=T.constructor;return L[H]||ne(L),T}}(m))),Promise[n.__symbol__("uncaughtPromiseErrors")]=g,r}), /** * @license * Copyright Google LLC All Rights Reserved. @@ -51,7 +37,7 @@ function O(N,H){var k=N.getGlobalObjects(),rt=k.isNode,tt=k.isMix;if((!rt||tt)&& * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function(N,H){var k=N.getGlobalObjects(),rt=k.ADD_EVENT_LISTENER_STR,tt=k.REMOVE_EVENT_LISTENER_STR,K=H.WebSocket;H.EventTarget||N.patchEventTarget(H,N,[K.prototype]),H.WebSocket=function(Y,z){var nt,mt,J=arguments.length>1?new K(Y,z):new K(Y),ht=N.ObjectGetOwnPropertyDescriptor(J,"onmessage");return ht&&!1===ht.configurable?(nt=N.ObjectCreate(J),mt=J,[rt,tt,"send","close"].forEach(function(Tt){nt[Tt]=function(){var xt=N.ArraySlice.call(arguments);if(Tt===rt||Tt===tt){var Wt=xt.length>0?xt[0]:void 0;if(Wt){var St=Zone.__symbol__("ON_PROPERTY"+Wt);J[St]=nt[St]}}return J[Tt].apply(J,xt)}})):nt=J,N.patchOnProperties(nt,["close","error","message","open"],mt),nt};var A=H.WebSocket;for(var G in K)A[G]=K[G]}(N,H),Zone[N.symbol("patchEvents")]=!0}}var N,rt,H,C=[].concat(["abort","animationcancel","animationend","animationiteration","auxclick","beforeinput","blur","cancel","canplay","canplaythrough","change","compositionstart","compositionupdate","compositionend","cuechange","click","close","contextmenu","curechange","dblclick","drag","dragend","dragenter","dragexit","dragleave","dragover","drop","durationchange","emptied","ended","error","focus","focusin","focusout","gotpointercapture","input","invalid","keydown","keypress","keyup","load","loadstart","loadeddata","loadedmetadata","lostpointercapture","mousedown","mouseenter","mouseleave","mousemove","mouseout","mouseover","mouseup","mousewheel","orientationchange","pause","play","playing","pointercancel","pointerdown","pointerenter","pointerleave","pointerlockchange","mozpointerlockchange","webkitpointerlockerchange","pointerlockerror","mozpointerlockerror","webkitpointerlockerror","pointermove","pointout","pointerover","pointerup","progress","ratechange","reset","resize","scroll","seeked","seeking","select","selectionchange","selectstart","show","sort","stalled","submit","suspend","timeupdate","volumechange","touchcancel","touchmove","touchstart","touchend","transitioncancel","transitionend","waiting","wheel"],["webglcontextrestored","webglcontextlost","webglcontextcreationerror"],["autocomplete","autocompleteerror"],["toggle"],["afterscriptexecute","beforescriptexecute","DOMContentLoaded","freeze","fullscreenchange","mozfullscreenchange","webkitfullscreenchange","msfullscreenchange","fullscreenerror","mozfullscreenerror","webkitfullscreenerror","msfullscreenerror","readystatechange","visibilitychange","resume"],["absolutedeviceorientation","afterinput","afterprint","appinstalled","beforeinstallprompt","beforeprint","beforeunload","devicelight","devicemotion","deviceorientation","deviceorientationabsolute","deviceproximity","hashchange","languagechange","message","mozbeforepaint","offline","online","paint","pageshow","pagehide","popstate","rejectionhandled","storage","unhandledrejection","unload","userproximity","vrdisplayconnected","vrdisplaydisconnected","vrdisplaypresentchange"],["beforecopy","beforecut","beforepaste","copy","cut","paste","dragstart","loadend","animationstart","search","transitionrun","transitionstart","webkitanimationend","webkitanimationiteration","webkitanimationstart","webkittransitionend"],["activate","afterupdate","ariarequest","beforeactivate","beforedeactivate","beforeeditfocus","beforeupdate","cellchange","controlselect","dataavailable","datasetchanged","datasetcomplete","errorupdate","filterchange","layoutcomplete","losecapture","move","moveend","movestart","propertychange","resizeend","resizestart","rowenter","rowexit","rowsdelete","rowsinserted","command","compassneedscalibration","deactivate","help","mscontentzoom","msmanipulationstatechanged","msgesturechange","msgesturedoubletap","msgestureend","msgesturehold","msgesturestart","msgesturetap","msgotpointercapture","msinertiastart","mslostpointercapture","mspointercancel","mspointerdown","mspointerenter","mspointerhover","mspointerleave","mspointermove","mspointerout","mspointerover","mspointerup","pointerout","mssitemodejumplistitemremoved","msthumbnailclick","stop","storagecommit"]); +Zone.__load_patch("toString",e=>{const n=Function.prototype.toString,a=q("OriginalDelegate"),i=q("Promise"),u=q("Error"),d=function(){if("function"==typeof this){const O=this[a];if(O)return"function"==typeof O?n.call(O):Object.prototype.toString.call(O);if(this===Promise){const M=e[i];if(M)return n.call(M)}if(this===Error){const M=e[u];if(M)return n.call(M)}}return n.call(this)};d[a]=n,Function.prototype.toString=d;const k=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":k.call(this)}}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -59,34 +45,28 @@ function(N,H){var k=N.getGlobalObjects(),rt=k.ADD_EVENT_LISTENER_STR,tt=k.REMOVE * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -N="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},H=N.__Zone_symbol_prefix||"__zone_symbol__",N[(rt="legacyPatch",H+rt)]=function(){var rt=N.Zone;rt.__load_patch("defineProperty",function(tt,K,A){A._redefineProperty=u,r=Zone.__symbol__,n=Object[r("defineProperty")]=Object.defineProperty,a=Object[r("getOwnPropertyDescriptor")]=Object.getOwnPropertyDescriptor,s=Object.create,i=r("unconfigurables"),Object.defineProperty=function(N,H,k){if(f(N,H))throw new TypeError("Cannot assign to read only property '"+H+"' of "+N);var rt=k.configurable;return"prototype"!==H&&(k=v(N,H,k)),d(N,H,k,rt)},Object.defineProperties=function(N,H){Object.keys(H).forEach(function(A){Object.defineProperty(N,A,H[A])});var rt,k=e(Object.getOwnPropertySymbols(H));try{for(k.s();!(rt=k.n()).done;){var tt=rt.value,K=Object.getOwnPropertyDescriptor(H,tt);(null==K?void 0:K.enumerable)&&Object.defineProperty(N,tt,H[tt])}}catch(A){k.e(A)}finally{k.f()}return N},Object.create=function(N,H){return"object"==typeof H&&!Object.isFrozen(H)&&Object.keys(H).forEach(function(k){H[k]=v(N,k,H[k])}),s(N,H)},Object.getOwnPropertyDescriptor=function(N,H){var k=a(N,H);return k&&f(N,H)&&(k.configurable=!1),k}}),rt.__load_patch("registerElement",function(tt,K,A){!function(N,H){var k=H.getGlobalObjects(),rt=k.isBrowser,tt=k.isMix;(rt||tt)&&"registerElement"in N.document&&H.patchCallbacks(H,document,"Document","registerElement",["createdCallback","attachedCallback","detachedCallback","attributeChangedCallback"])}(tt,A)}),rt.__load_patch("EventTargetLegacy",function(tt,K,A){(function(N,H){var k=H.getGlobalObjects(),rt=k.eventNames,tt=k.globalSources,K=k.zoneSymbolEventNames,A=k.TRUE_STR,G=k.FALSE_STR,Y=k.ZONE_SYMBOL_PREFIX,J="ApplicationCache,EventSource,FileReader,InputMethodContext,MediaController,MessagePort,Node,Performance,SVGElementInstance,SharedWorker,TextTrack,TextTrackCue,TextTrackList,WebKitNamedFlow,Window,Worker,WorkerGlobalScope,XMLHttpRequest,XMLHttpRequestEventTarget,XMLHttpRequestUpload,IDBRequest,IDBOpenDBRequest,IDBDatabase,IDBTransaction,IDBCursor,DBIndex,WebSocket".split(","),nt="EventTarget",mt=[],ht=N.wtf,Tt="Anchor,Area,Audio,BR,Base,BaseFont,Body,Button,Canvas,Content,DList,Directory,Div,Embed,FieldSet,Font,Form,Frame,FrameSet,HR,Head,Heading,Html,IFrame,Image,Input,Keygen,LI,Label,Legend,Link,Map,Marquee,Media,Menu,Meta,Meter,Mod,OList,Object,OptGroup,Option,Output,Paragraph,Pre,Progress,Quote,Script,Select,Source,Span,Style,TableCaption,TableCell,TableCol,Table,TableRow,TableSection,TextArea,Title,Track,UList,Unknown,Video".split(",");ht?mt=Tt.map(function(I){return"HTML"+I+"Element"}).concat(J):N[nt]?mt.push(nt):mt=J;for(var xt=N.__Zone_disable_IE_check||!1,Wt=N.__Zone_enable_cross_context_check||!1,St=H.isIEOrEdge(),wt="[object FunctionWrapper]",le="function __BROWSERTOOLS_CONSOLE_SAFEFUNC() { [native code] }",Jt={MSPointerCancel:"pointercancel",MSPointerDown:"pointerdown",MSPointerEnter:"pointerenter",MSPointerHover:"pointerhover",MSPointerLeave:"pointerleave",MSPointerMove:"pointermove",MSPointerOut:"pointerout",MSPointerOver:"pointerover",MSPointerUp:"pointerup"},fe=0;feY.handleEvent(y),N.originalDelegate=Y);try{N.invoke(N,b,[me])}catch(y){ce=y}const G=N.options;if(G&&"object"==typeof G&&G.once){const y=N.originalDelegate?N.originalDelegate:N.callback;b[d].call(b,me.type,y,G)}return ce};function F(N,b,me){if(!(b=b||e.event))return;const Y=N||b.target||e,ce=Y[de[b.type][me?Oe:Me]];if(ce){const G=[];if(1===ce.length){const y=j(ce[0],Y,b);y&&G.push(y)}else{const y=ce.slice();for(let $=0;${throw $})}}}const re=function(N){return F(this,N,!1)},X=function(N){return F(this,N,!0)};function he(N,b){if(!N)return!1;let me=!0;b&&void 0!==b.useG&&(me=b.useG);const Y=b&&b.vh;let ce=!0;b&&void 0!==b.chkDup&&(ce=b.chkDup);let G=!1;b&&void 0!==b.rt&&(G=b.rt);let y=N;for(;y&&!y.hasOwnProperty(u);)y=Ne(y);if(!y&&N[u]&&(y=N),!y||y[P])return!1;const $=b&&b.eventNameToString,p={},V=y[P]=y[u],R=y[q(d)]=y[d],ue=y[q(k)]=y[k],Ce=y[q(g)]=y[g];let x;function Q(l,T){return!_e&&"object"==typeof l&&l?!!l.capture:_e&&T?"boolean"==typeof l?{capture:l,passive:!0}:l?"object"==typeof l&&!1!==l.passive?Object.assign(Object.assign({},l),{passive:!0}):l:{passive:!0}:l}b&&b.prepend&&(x=y[q(b.prepend)]=y[b.prepend]);const r=me?function(l){if(!p.isExisting)return V.call(p.target,p.eventName,p.capture?X:re,p.options)}:function(l){return V.call(p.target,p.eventName,l.invoke,p.options)},c=me?function(l){if(!l.isRemoved){const T=de[l.eventName];let L;T&&(L=T[l.capture?Oe:Me]);const D=L&&l.target[L];if(D)for(let v=0;vfunction(u,d){u[He]=!0,i&&i.apply(u,d)})} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var e=t(6466).default,r=t(1416).default,n=t(5575).default;!function(I){var x=I.performance;function $(Et){x&&x.mark&&x.mark(Et)}function V(Et,it){x&&x.measure&&x.measure(Et,it)}$("Zone");var y=I.__Zone_symbol_prefix||"__zone_symbol__";function S(Et){return y+Et}var U=!0===I[S("forceDuplicateZoneCheck")];if(I.Zone){if(U||"function"!=typeof I.Zone.__symbol__)throw new Error("Zone already loaded.");return I.Zone}var Z=function(){function Et(it,L){r(this,Et),this._parent=it,this._name=L?L.name||"unnamed":"",this._properties=L&&L.properties||{},this._zoneDelegate=new at(this,this._parent&&this._parent._zoneDelegate,L)}return n(Et,[{key:"parent",get:function(){return this._parent}},{key:"name",get:function(){return this._name}},{key:"get",value:function(L){var w=this.getZoneWith(L);if(w)return w._properties[L]}},{key:"getZoneWith",value:function(L){for(var w=this;w;){if(w._properties.hasOwnProperty(L))return w;w=w._parent}return null}},{key:"fork",value:function(L){if(!L)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,L)}},{key:"wrap",value:function(L,w){if("function"!=typeof L)throw new Error("Expecting function got: "+L);var ct=this._zoneDelegate.intercept(this,L,w),It=this;return function(){return It.runGuarded(ct,this,arguments,w)}}},{key:"run",value:function(L,w,ct,It){zt={parent:zt,zone:this};try{return this._zoneDelegate.invoke(this,L,w,ct,It)}finally{zt=zt.parent}}},{key:"runGuarded",value:function(L){var w=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,ct=arguments.length>2?arguments[2]:void 0,It=arguments.length>3?arguments[3]:void 0;zt={parent:zt,zone:this};try{try{return this._zoneDelegate.invoke(this,L,w,ct,It)}catch(qt){if(this._zoneDelegate.handleError(this,qt))throw qt}}finally{zt=zt.parent}}},{key:"runTask",value:function(L,w,ct){if(L.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(L.zone||dt).name+"; Execution: "+this.name+")");if(L.state!==Yt||L.type!==Bt&&L.type!==Mt){var It=L.state!=jt;It&&L._transitionTo(jt,Vt),L.runCount++;var qt=de;de=L,zt={parent:zt,zone:this};try{L.type==Mt&&L.data&&!L.data.isPeriodic&&(L.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,L,w,ct)}catch(ot){if(this._zoneDelegate.handleError(this,ot))throw ot}}finally{L.state!==Yt&&L.state!==re&&(L.type==Bt||L.data&&L.data.isPeriodic?It&&L._transitionTo(Vt,jt):(L.runCount=0,this._updateTaskCount(L,-1),It&&L._transitionTo(Yt,jt,Yt))),zt=zt.parent,de=qt}}}},{key:"scheduleTask",value:function(L){if(L.zone&&L.zone!==this)for(var w=this;w;){if(w===L.zone)throw Error("can not reschedule task to ".concat(this.name," which is descendants of the original zone ").concat(L.zone.name));w=w.parent}L._transitionTo(Zt,Yt);var ct=[];L._zoneDelegates=ct,L._zone=this;try{L=this._zoneDelegate.scheduleTask(this,L)}catch(It){throw L._transitionTo(re,Zt,Yt),this._zoneDelegate.handleError(this,It),It}return L._zoneDelegates===ct&&this._updateTaskCount(L,1),L.state==Zt&&L._transitionTo(Vt,Zt),L}},{key:"scheduleMicroTask",value:function(L,w,ct,It){return this.scheduleTask(new ut(Ut,L,w,ct,It,void 0))}},{key:"scheduleMacroTask",value:function(L,w,ct,It,qt){return this.scheduleTask(new ut(Mt,L,w,ct,It,qt))}},{key:"scheduleEventTask",value:function(L,w,ct,It,qt){return this.scheduleTask(new ut(Bt,L,w,ct,It,qt))}},{key:"cancelTask",value:function(L){if(L.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(L.zone||dt).name+"; Execution: "+this.name+")");L._transitionTo(Pt,Vt,jt);try{this._zoneDelegate.cancelTask(this,L)}catch(w){throw L._transitionTo(re,Pt),this._zoneDelegate.handleError(this,w),w}return this._updateTaskCount(L,-1),L._transitionTo(Yt,Pt),L.runCount=0,L}},{key:"_updateTaskCount",value:function(L,w){var ct=L._zoneDelegates;-1==w&&(L._zoneDelegates=null);for(var It=0;It2&&void 0!==arguments[2]&&arguments[2];if(Rt.hasOwnProperty(L)){if(!ct&&U)throw Error("Already loaded patch: "+L)}else if(!I["__Zone_disable_"+L]){var It="Zone:"+L;$(It),Rt[L]=w(I,Et,kt),V(It,It)}}}]),Et}();Z.__symbol__=S;var ee,q={name:"",onHasTask:function(it,L,w,ct){return it.hasTask(w,ct)},onScheduleTask:function(it,L,w,ct){return it.scheduleTask(w,ct)},onInvokeTask:function(it,L,w,ct,It,qt){return it.invokeTask(w,ct,It,qt)},onCancelTask:function(it,L,w,ct){return it.cancelTask(w,ct)}},at=function(){function Et(it,L,w){r(this,Et),this._taskCounts={microTask:0,macroTask:0,eventTask:0},this.zone=it,this._parentDelegate=L,this._forkZS=w&&(w&&w.onFork?w:L._forkZS),this._forkDlgt=w&&(w.onFork?L:L._forkDlgt),this._forkCurrZone=w&&(w.onFork?this.zone:L._forkCurrZone),this._interceptZS=w&&(w.onIntercept?w:L._interceptZS),this._interceptDlgt=w&&(w.onIntercept?L:L._interceptDlgt),this._interceptCurrZone=w&&(w.onIntercept?this.zone:L._interceptCurrZone),this._invokeZS=w&&(w.onInvoke?w:L._invokeZS),this._invokeDlgt=w&&(w.onInvoke?L:L._invokeDlgt),this._invokeCurrZone=w&&(w.onInvoke?this.zone:L._invokeCurrZone),this._handleErrorZS=w&&(w.onHandleError?w:L._handleErrorZS),this._handleErrorDlgt=w&&(w.onHandleError?L:L._handleErrorDlgt),this._handleErrorCurrZone=w&&(w.onHandleError?this.zone:L._handleErrorCurrZone),this._scheduleTaskZS=w&&(w.onScheduleTask?w:L._scheduleTaskZS),this._scheduleTaskDlgt=w&&(w.onScheduleTask?L:L._scheduleTaskDlgt),this._scheduleTaskCurrZone=w&&(w.onScheduleTask?this.zone:L._scheduleTaskCurrZone),this._invokeTaskZS=w&&(w.onInvokeTask?w:L._invokeTaskZS),this._invokeTaskDlgt=w&&(w.onInvokeTask?L:L._invokeTaskDlgt),this._invokeTaskCurrZone=w&&(w.onInvokeTask?this.zone:L._invokeTaskCurrZone),this._cancelTaskZS=w&&(w.onCancelTask?w:L._cancelTaskZS),this._cancelTaskDlgt=w&&(w.onCancelTask?L:L._cancelTaskDlgt),this._cancelTaskCurrZone=w&&(w.onCancelTask?this.zone:L._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;var ct=w&&w.onHasTask,It=L&&L._hasTaskZS;(ct||It)&&(this._hasTaskZS=ct?w:q,this._hasTaskDlgt=L,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=it,w.onScheduleTask||(this._scheduleTaskZS=q,this._scheduleTaskDlgt=L,this._scheduleTaskCurrZone=this.zone),w.onInvokeTask||(this._invokeTaskZS=q,this._invokeTaskDlgt=L,this._invokeTaskCurrZone=this.zone),w.onCancelTask||(this._cancelTaskZS=q,this._cancelTaskDlgt=L,this._cancelTaskCurrZone=this.zone))}return n(Et,[{key:"fork",value:function(L,w){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,L,w):new Z(L,w)}},{key:"intercept",value:function(L,w,ct){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,L,w,ct):w}},{key:"invoke",value:function(L,w,ct,It,qt){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,L,w,ct,It,qt):w.apply(ct,It)}},{key:"handleError",value:function(L,w){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,L,w)}},{key:"scheduleTask",value:function(L,w){var ct=w;if(this._scheduleTaskZS)this._hasTaskZS&&ct._zoneDelegates.push(this._hasTaskDlgtOwner),(ct=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,L,w))||(ct=w);else if(w.scheduleFn)w.scheduleFn(w);else{if(w.type!=Ut)throw new Error("Task is missing scheduleFn.");Gt(w)}return ct}},{key:"invokeTask",value:function(L,w,ct,It){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,L,w,ct,It):w.callback.apply(ct,It)}},{key:"cancelTask",value:function(L,w){var ct;if(this._cancelTaskZS)ct=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,L,w);else{if(!w.cancelFn)throw Error("Task is not cancelable");ct=w.cancelFn(w)}return ct}},{key:"hasTask",value:function(L,w){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,L,w)}catch(ct){this.handleError(L,ct)}}},{key:"_updateTaskCount",value:function(L,w){var ct=this._taskCounts,It=ct[L],qt=ct[L]=It+w;if(qt<0)throw new Error("More tasks executed then were scheduled.");if(0==It||0==qt){var ot={microTask:ct.microTask>0,macroTask:ct.macroTask>0,eventTask:ct.eventTask>0,change:L};this.hasTask(this.zone,ot)}}}]),Et}(),ut=function(){function Et(it,L,w,ct,It,qt){if(r(this,Et),this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state="notScheduled",this.type=it,this.source=L,this.data=ct,this.scheduleFn=It,this.cancelFn=qt,!w)throw new Error("callback is not defined");this.callback=w;var ot=this;it===Bt&&ct&&ct.useG?this.invoke=Et.invokeTask:this.invoke=function(){return Et.invokeTask.call(I,ot,this,arguments)}}return n(Et,[{key:"zone",get:function(){return this._zone}},{key:"state",get:function(){return this._state}},{key:"cancelScheduleRequest",value:function(){this._transitionTo(Yt,Zt)}},{key:"_transitionTo",value:function(L,w,ct){if(this._state!==w&&this._state!==ct)throw new Error("".concat(this.type," '").concat(this.source,"': can not transition to '").concat(L,"', expecting state '").concat(w,"'").concat(ct?" or '"+ct+"'":"",", was '").concat(this._state,"'."));this._state=L,L==Yt&&(this._zoneDelegates=null)}},{key:"toString",value:function(){return this.data&&void 0!==this.data.handleId?this.data.handleId.toString():Object.prototype.toString.call(this)}},{key:"toJSON",value:function(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}],[{key:"invokeTask",value:function(L,w,ct){L||(L=this),Ee++;try{return L.runCount++,L.zone.runTask(L,w,ct)}finally{1==Ee&&Qt(),Ee--}}}]),Et}(),pt=S("setTimeout"),yt=S("Promise"),bt=S("then"),_t=[],Nt=!1;function Kt(Et){if(ee||I[yt]&&(ee=I[yt].resolve(0)),ee){var it=ee[bt];it||(it=ee.then),it.call(ee,Et)}else I[pt](Et,0)}function Gt(Et){0===Ee&&0===_t.length&&Kt(Qt),Et&&_t.push(Et)}function Qt(){if(!Nt){for(Nt=!0;_t.length;){var Et=_t;_t=[];for(var it=0;it=0;$--)"function"==typeof I[$]&&(I[$]=P(I[$],x+"_"+$));return I}function b(I){return!I||!1!==I.writable&&!("function"==typeof I.get&&void 0===I.set)}var W="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,N=!("nw"in E)&&void 0!==E.process&&"[object process]"==={}.toString.call(E.process),H=!N&&!W&&!(!j||!M.HTMLElement),k=void 0!==E.process&&"[object process]"==={}.toString.call(E.process)&&!W&&!(!j||!M.HTMLElement),rt={},tt=function(x){if(x=x||E.event){var $=rt[x.type];$||($=rt[x.type]=g("ON_PROPERTY"+x.type));var S,V=this||x.target||E,y=V[$];if(H&&V===M&&"error"===x.type){var U=x;!0===(S=y&&y.call(this,U.message,U.filename,U.lineno,U.colno,U.error))&&x.preventDefault()}else null!=(S=y&&y.apply(this,arguments))&&!S&&x.preventDefault();return S}};function K(I,x,$){var V=a(I,x);!V&&$&&(a($,x)&&(V={enumerable:!0,configurable:!0}));if(V&&V.configurable){var S=g("on"+x+"patched");if(!I.hasOwnProperty(S)||!I[S]){delete V.writable,delete V.value;var U=V.get,Z=V.set,q=x.slice(2),at=rt[q];at||(at=rt[q]=g("ON_PROPERTY"+q)),V.set=function(ut){var pt=this;(!pt&&I===E&&(pt=E),pt)&&("function"==typeof pt[at]&&pt.removeEventListener(q,tt),Z&&Z.call(pt,null),pt[at]=ut,"function"==typeof ut&&pt.addEventListener(q,tt,!1))},V.get=function(){var ut=this;if(!ut&&I===E&&(ut=E),!ut)return null;var pt=ut[at];if(pt)return pt;if(U){var yt=U.call(this);if(yt)return V.set.call(this,yt),"function"==typeof ut.removeAttribute&&ut.removeAttribute(x),yt}return null},s(I,x,V),I[S]=!0}}}function A(I,x,$){if(x)for(var V=0;V=0&&"function"==typeof Z[q.cbIdx]?R(q.name,Z[q.cbIdx],q,y):S.apply(U,Z)}})}function nt(I,x){I[g("OriginalDelegate")]=x}var mt=!1,ht=!1;function xt(){if(mt)return ht;mt=!0;try{var I=M.navigator.userAgent;(-1!==I.indexOf("MSIE ")||-1!==I.indexOf("Trident/")||-1!==I.indexOf("Edge/"))&&(ht=!0)}catch(x){}return ht} + */function Ke(e,n,a){if(!a||0===a.length)return n;const i=a.filter(d=>d.target===e);if(!i||0===i.length)return n;const u=i[0].ignoreProperties;return n.filter(d=>-1===u.indexOf(d))}function it(e,n,a,i){if(!e)return;Ye(e,Ke(e,n,a),i)}function Ie(e){return Object.getOwnPropertyNames(e).filter(n=>n.startsWith("on")&&n.length>2).map(n=>n.substring(2))}function _t(e,n){if(Xe&&!Te||Zone[e.symbol("patchEvents")])return;const a=n.__Zone_ignore_on_properties;let i=[];if(U){const u=window;i=i.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]);const d=function mt(){try{const e=Ze.navigator.userAgent;if(-1!==e.indexOf("MSIE ")||-1!==e.indexOf("Trident/"))return!0}catch{}return!1}()?[{target:u,ignoreProperties:["error"]}]:[];it(u,Ie(u),a&&a.concat(d),Ne(u))}i=i.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(let u=0;u{const i=Ie(e);a.patchOnProperties=Ye,a.patchMethod=Le,a.bindArguments=tt,a.patchMacroTask=st;const u=n.__symbol__("BLACK_LISTED_EVENTS"),d=n.__symbol__("UNPATCHED_EVENTS");e[d]&&(e[u]=e[d]),e[u]&&(n[u]=n[d]=e[u]),a.patchEventPrototype=$e,a.patchEventTarget=Tt,a.isIEOrEdge=Se,a.ObjectDefineProperty=ye,a.ObjectGetOwnPropertyDescriptor=W,a.ObjectCreate=Ve,a.ArraySlice=ft,a.patchClass=je,a.wrapWithCurrentZone=et,a.filterProperties=Ke,a.attachOriginToPatched=ke,a._redefineProperty=Object.defineProperty,a.patchCallbacks=gt,a.getGlobalObjects=()=>({globalSources:we,zoneSymbolEventNames:de,eventNames:i,isBrowser:U,isMix:Te,isNode:Xe,TRUE_STR:Oe,FALSE_STR:Me,ZONE_SYMBOL_PREFIX:Ge,ADD_EVENT_LISTENER_STR:xe,REMOVE_EVENT_LISTENER_STR:Ue})}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -94,7 +74,7 @@ var a=Object.getOwnPropertyDescriptor,s=Object.defineProperty,i=Object.getProtot * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -Zone.__load_patch("toString",function(I){var x=Function.prototype.toString,$=g("OriginalDelegate"),V=g("Promise"),y=g("Error"),S=function(){if("function"==typeof this){var at=this[$];if(at)return"function"==typeof at?x.call(at):Object.prototype.toString.call(at);if(this===Promise){var ut=I[V];if(ut)return x.call(ut)}if(this===Error){var pt=I[y];if(pt)return x.call(pt)}}return x.call(this)};S[$]=x,Function.prototype.toString=S;var U=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":U.call(this)}}); +const ct=q("zoneTask");function De(e,n,a,i){let u=null,d=null;a+=i;const k={};function g(O){const M=O.data;return M.args[0]=function(){return O.invoke.apply(this,arguments)},M.handleId=u.apply(e,M.args),O}function P(O){return d.call(e,O.data.handleId)}u=Le(e,n+=i,O=>function(M,B){if("function"==typeof B[0]){const j={isPeriodic:"Interval"===i,delay:"Timeout"===i||"Interval"===i?B[1]||0:void 0,args:B},F=B[0];B[0]=function(){try{return F.apply(this,arguments)}finally{j.isPeriodic||("number"==typeof j.handleId?delete k[j.handleId]:j.handleId&&(j.handleId[ct]=null))}};const re=We(n,B[0],j,g,P);if(!re)return re;const X=re.data.handleId;return"number"==typeof X?k[X]=re:X&&(X[ct]=re),X&&X.ref&&X.unref&&"function"==typeof X.ref&&"function"==typeof X.unref&&(re.ref=X.ref.bind(X),re.unref=X.unref.bind(X)),"number"==typeof X||X?X:re}return O.apply(e,B)}),d=Le(e,a,O=>function(M,B){const j=B[0];let F;"number"==typeof j?F=k[j]:(F=j&&j[ct],F||(F=j)),F&&"string"==typeof F.type?"notScheduled"!==F.state&&(F.cancelFn&&F.data.isPeriodic||0===F.runCount)&&("number"==typeof j?delete k[j]:j&&(j[ct]=null),F.zone.cancelTask(F)):O.apply(e,B)})} /** * @license * Copyright Google LLC All Rights Reserved. @@ -102,213 +82,326 @@ Zone.__load_patch("toString",function(I){var x=Function.prototype.toString,$=g(" * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Wt=!1;if("undefined"!=typeof window)try{var St=Object.defineProperty({},"passive",{get:function(){Wt=!0}});window.addEventListener("test",St,St),window.removeEventListener("test",St,St)}catch(I){Wt=!1}var Ct={useG:!0},wt={},le={},Jt=new RegExp("^"+_+"(\\w+)(true|false)$"),fe=g("propagationStopped");function ae(I,x){var $=(x?x(I):I)+O,V=(x?x(I):I)+T,y=_+$,S=_+V;wt[I]={},wt[I][O]=y,wt[I][T]=S}function ue(I,x,$,V){var y=V&&V.add||f,S=V&&V.rm||v,U=V&&V.listeners||"eventListeners",Z=V&&V.rmAll||"removeAllListeners",q=g(y),at="."+y+":",ut="prependListener",yt=function(dt,Yt,Zt){if(!dt.isRemoved){var jt,Vt=dt.callback;"object"==typeof Vt&&Vt.handleEvent&&(dt.callback=function(Ut){return Vt.handleEvent(Ut)},dt.originalDelegate=Vt);try{dt.invoke(dt,Yt,[Zt])}catch(Ut){jt=Ut}var Pt=dt.options;if(Pt&&"object"==typeof Pt&&Pt.once){var re=dt.originalDelegate?dt.originalDelegate:dt.callback;Yt[S].call(Yt,Zt.type,re,Pt)}return jt}};function bt(Qt,dt,Yt){if(dt=dt||I.event){var Zt=Qt||dt.target||I,Vt=Zt[wt[dt.type][Yt?T:O]];if(Vt){var jt=[];if(1===Vt.length){var Pt=yt(Vt[0],Zt,dt);Pt&&jt.push(Pt)}else for(var re=Vt.slice(),Ut=0;Ut4&&void 0!==arguments[4]&&arguments[4],Q=arguments.length>5&&void 0!==arguments[5]&&arguments[5];return function(){var X=this||I,st=arguments[0];dt&&dt.transferEventName&&(st=dt.transferEventName(st));var lt=arguments[1];if(!lt)return et.apply(this,arguments);if(N&&"uncaughtException"===st)return et.apply(this,arguments);var gt=!1;if("function"!=typeof lt){if(!lt.handleEvent)return et.apply(this,arguments);gt=!0}if(!Zt||Zt(et,lt,X,arguments)){var Lt=Wt&&!!Dt&&-1!==Dt.indexOf(st),At=de(arguments[2],Lt);if(ot)for(var Ft=0;Ft{const n=e[Zone.__symbol__("legacyPatch")];n&&n()}),Zone.__load_patch("queueMicrotask",(e,n,a)=>{a.patchMethod(e,"queueMicrotask",i=>function(u,d){n.current.scheduleMicroTask("queueMicrotask",d[0])})}),Zone.__load_patch("timers",e=>{const n="set",a="clear";De(e,n,a,"Timeout"),De(e,n,a,"Interval"),De(e,n,a,"Immediate")}),Zone.__load_patch("requestAnimationFrame",e=>{De(e,"request","cancel","AnimationFrame"),De(e,"mozRequest","mozCancel","AnimationFrame"),De(e,"webkitRequest","webkitCancel","AnimationFrame")}),Zone.__load_patch("blocking",(e,n)=>{const a=["alert","prompt","confirm"];for(let i=0;ifunction(P,O){return n.current.run(d,e,O,g)})}}),Zone.__load_patch("EventTarget",(e,n,a)=>{(function vt(e,n){n.patchEventPrototype(e,n)})(e,a), /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function me(I,x,$){if(!$||0===$.length)return x;var V=$.filter(function(S){return S.target===I});if(!V||0===V.length)return x;var y=V[0].ignoreProperties;return x.filter(function(S){return-1===y.indexOf(S)})}function ye(I,x,$,V){I&&A(I,me(I,x,$),V)}function ne(I){return Object.getOwnPropertyNames(I).filter(function(x){return x.startsWith("on")&&x.length>2}).map(function(x){return x.substring(2)})}function ve(I,x){if((!N||k)&&!Zone[I.symbol("patchEvents")]){var $=x.__Zone_ignore_on_properties,V=[];if(H){var y=window;V=V.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]);var S=function(){try{var I=M.navigator.userAgent;if(-1!==I.indexOf("MSIE ")||-1!==I.indexOf("Trident/"))return!0}catch(x){}return!1}()?[{target:y,ignoreProperties:["error"]}]:[];ye(y,ne(y),$&&$.concat(S),i(y))}V=V.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(var U=0;U{je("MutationObserver"),je("WebKitMutationObserver")}),Zone.__load_patch("IntersectionObserver",(e,n,a)=>{je("IntersectionObserver")}),Zone.__load_patch("FileReader",(e,n,a)=>{je("FileReader")}),Zone.__load_patch("on_property",(e,n,a)=>{_t(a,e)}),Zone.__load_patch("customElements",(e,n,a)=>{!function at(e,n){const{isBrowser:a,isMix:i}=n.getGlobalObjects();if(!a&&!i||!e.customElements||!("customElements"in e))return;n.patchCallbacks(n,e.customElements,"customElements","define",["connectedCallback","disconnectedCallback","adoptedCallback","attributeChangedCallback"])}(e,a)}),Zone.__load_patch("XHR",(e,n)=>{!function P(O){const M=O.XMLHttpRequest;if(!M)return;const B=M.prototype;let F=B[Je],re=B[Qe];if(!F){const p=O.XMLHttpRequestEventTarget;if(p){const V=p.prototype;F=V[Je],re=V[Qe]}}const X="readystatechange",he="scheduled";function z(p){const V=p.data,R=V.target;R[d]=!1,R[g]=!1;const ue=R[u];F||(F=R[Je],re=R[Qe]),ue&&re.call(R,X,ue);const Ce=R[u]=()=>{if(R.readyState===R.DONE)if(!V.aborted&&R[d]&&p.state===he){const Q=R[n.__symbol__("loadfalse")];if(0!==R.status&&Q&&Q.length>0){const pe=p.invoke;p.invoke=function(){const ge=R[n.__symbol__("loadfalse")];for(let te=0;tefunction(p,V){return p[i]=0==V[2],p[k]=V[1],me.apply(p,V)}),ce=q("fetchTaskAborting"),G=q("fetchTaskScheduling"),y=Le(B,"send",()=>function(p,V){if(!0===n.current[G]||p[i])return y.apply(p,V);{const R={target:p,url:p[k],isPeriodic:!1,args:V,aborted:!1},ue=We("XMLHttpRequest.send",N,R,z,b);p&&!0===p[g]&&!R.aborted&&ue.state===he&&ue.invoke()}}),$=Le(B,"abort",()=>function(p,V){const R=function j(p){return p[a]}(p);if(R&&"string"==typeof R.type){if(null==R.cancelFn||R.data&&R.data.aborted)return;R.zone.cancelTask(R)}else if(!0===n.current[ce])return $.apply(p,V)})}(e);const a=q("xhrTask"),i=q("xhrSync"),u=q("xhrListener"),d=q("xhrScheduled"),k=q("xhrURL"),g=q("xhrErrorBeforeScheduled")}),Zone.__load_patch("geolocation",e=>{e.navigator&&e.navigator.geolocation&&function dt(e,n){const a=e.constructor.name;for(let i=0;i{const P=function(){return g.apply(this,tt(arguments,a+"."+u))};return ke(P,g),P})(d)}}}(e.navigator.geolocation,["getCurrentPosition","watchPosition"])}),Zone.__load_patch("PromiseRejectionEvent",(e,n)=>{function a(i){return function(u){ut(e,i).forEach(k=>{const g=e.PromiseRejectionEvent;if(g){const P=new g(i,{promise:u.promise,reason:u.rejection});k.invoke(P)}})}}e.PromiseRejectionEvent&&(n[q("unhandledPromiseRejectionHandler")]=a("unhandledrejection"),n[q("rejectionHandledHandler")]=a("rejectionhandled"))})}},W=>{var Ve;Ve=1312,W(W.s=Ve)}]); +//# sourceMappingURL=polyfills.js.map +!function(B){"object"==typeof exports&&typeof module<"u"?module.exports=B():"function"==typeof define&&define.amd?define([],B):(typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:this).Ajv=B()}(function(){return function B(G,ge,u){function L(_,C){if(!ge[_]){if(!G[_]){var D="function"==typeof require&&require;if(!C&&D)return D(_,!0);if(H)return H(_,!0);var K=new Error("Cannot find module '"+_+"'");throw K.code="MODULE_NOT_FOUND",K}var j=ge[_]={exports:{}};G[_][0].call(j.exports,function(R){return L(G[_][1][R]||R)},j,j.exports,B,G,ge,u)}return ge[_].exports}for(var H="function"==typeof require&&require,c=0;c%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i,K=/^(?:(?:http[s\u017F]?|ftp):\/\/)(?:(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+(?::(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?@)?(?:(?!10(?:\.[0-9]{1,3}){3})(?!127(?:\.[0-9]{1,3}){3})(?!169\.254(?:\.[0-9]{1,3}){2})(?!192\.168(?:\.[0-9]{1,3}){2})(?!172\.(?:1[6-9]|2[0-9]|3[01])(?:\.[0-9]{1,3}){2})(?:[1-9][0-9]?|1[0-9][0-9]|2[01][0-9]|22[0-3])(?:\.(?:1?[0-9]{1,2}|2[0-4][0-9]|25[0-5])){2}(?:\.(?:[1-9][0-9]?|1[0-9][0-9]|2[0-4][0-9]|25[0-4]))|(?:(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-?)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)(?:\.(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-?)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)*(?:\.(?:(?:[KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]){2,})))(?::[0-9]{2,5})?(?:\/(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?$/i,j=/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,R=/^(?:\/(?:[^~/]|~0|~1)*)*$/,w=/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,M=/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/;function E(oe){return u.copy(E[oe="full"==oe?"full":"fast"])}function O(oe){var me=oe.match(L);if(!me)return!1;var te,N=+me[2],ee=+me[3];return 1<=N&&N<=12&&1<=ee&&ee<=(2!=N||(te=+me[1])%4!=0||te%100==0&&te%400!=0?H[N]:29)}function V(oe,me){var te=oe.match(c);if(!te)return!1;var N=te[1],ee=te[2],le=te[3];return(N<=23&&ee<=59&&le<=59||23==N&&59==ee&&60==le)&&(!me||te[5])}(G.exports=E).fast={date:/^\d\d\d\d-[0-1]\d-[0-3]\d$/,time:/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d:\d\d)?$/i,"date-time":/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d:\d\d)$/i,uri:/^(?:[a-z][a-z0-9+-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,"uri-template":D,url:K,email:/^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i,hostname:_,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:ye,uuid:j,"json-pointer":R,"json-pointer-uri-fragment":w,"relative-json-pointer":M},E.full={date:O,time:V,"date-time":function(oe){var me=oe.split($);return 2==me.length&&O(me[0])&&V(me[1],!0)},uri:function(oe){return Z.test(oe)&&C.test(oe)},"uri-reference":/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,"uri-template":D,url:K,email:/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&''*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,hostname:function(oe){return oe.length<=255&&_.test(oe)},ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:ye,uuid:j,"json-pointer":R,"json-pointer-uri-fragment":w,"relative-json-pointer":M};var $=/t|\s/i,Z=/\/|:/,ue=/[^\\]\\Z/;function ye(oe){if(ue.test(oe))return!1;try{return new RegExp(oe),!0}catch{return!1}}},{"./util":10}],5:[function(B,G,ge){"use strict";var u=B("./resolve"),L=B("./util"),H=B("./error_classes"),c=B("fast-json-stable-stringify"),_=B("../dotjs/validate"),C=L.ucs2length,D=B("fast-deep-equal"),K=H.Validation;function j(V,$,Z){for(var ue=0;ue",ye=O?">":"<",oe=void 0;if(Z){var U,me=u.util.getData($.$data,D,u.dataPathArr),te="exclusive"+C,N="exclType"+C,ee="exclIsNumber"+C,le="' + "+(z="op"+C)+" + '";_+=" var schemaExcl"+C+" = "+me+"; ",oe=V,(U=U||[]).push(_+=" var "+te+"; var "+N+" = typeof "+(me="schemaExcl"+C)+"; if ("+N+" != 'boolean' && "+N+" != 'undefined' && "+N+" != 'number') { "),_="",!1!==u.createErrors?(_+=" { keyword: '"+(oe||"_exclusiveLimit")+"' , dataPath: (dataPath || '') + "+u.errorPath+" , schemaPath: "+u.util.toQuotedString(R)+" , params: {} ",!1!==u.opts.messages&&(_+=" , message: '"+V+" should be boolean' "),u.opts.verbose&&(_+=" , schema: validate.schema"+j+" , parentSchema: validate.schema"+u.schemaPath+" , data: "+M+" "),_+=" } "):_+=" {} ";var W=_;_=U.pop(),_+=!u.compositeRule&&w?u.async?" throw new ValidationError(["+W+"]); ":" validate.errors = ["+W+"]; return false; ":" var err = "+W+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",_+=" } else if ( ",E&&(_+=" ("+c+" !== undefined && typeof "+c+" != 'number') || "),_+=" "+N+" == 'number' ? ( ("+te+" = "+c+" === undefined || "+me+" "+ue+"= "+c+") ? "+M+" "+ye+"= "+me+" : "+M+" "+ye+" "+c+" ) : ( ("+te+" = "+me+" === true) ? "+M+" "+ye+"= "+c+" : "+M+" "+ye+" "+c+" ) || "+M+" !== "+M+") { var op"+C+" = "+te+" ? '"+ue+"' : '"+ue+"='; ",void 0===K&&(R=u.errSchemaPath+"/"+(oe=V),c=me,E=Z)}else if(le=ue,(ee="number"==typeof $)&&E){var z="'"+le+"'";_+=" if ( ",E&&(_+=" ("+c+" !== undefined && typeof "+c+" != 'number') || "),_+=" ( "+c+" === undefined || "+$+" "+ue+"= "+c+" ? "+M+" "+ye+"= "+$+" : "+M+" "+ye+" "+c+" ) || "+M+" !== "+M+") { "}else ee&&void 0===K?(te=!0,R=u.errSchemaPath+"/"+(oe=V),c=$,ye+="="):(ee&&(c=Math[O?"min":"max"]($,K)),$===(!ee||c)?(te=!0,R=u.errSchemaPath+"/"+(oe=V),ye+="="):(te=!1,le+="=")),z="'"+le+"'",_+=" if ( ",E&&(_+=" ("+c+" !== undefined && typeof "+c+" != 'number') || "),_+=" "+M+" "+ye+" "+c+" || "+M+" !== "+M+") { ";return oe=oe||L,(U=U||[]).push(_),_="",!1!==u.createErrors?(_+=" { keyword: '"+(oe||"_limit")+"' , dataPath: (dataPath || '') + "+u.errorPath+" , schemaPath: "+u.util.toQuotedString(R)+" , params: { comparison: "+z+", limit: "+c+", exclusive: "+te+" } ",!1!==u.opts.messages&&(_+=" , message: 'should be "+le+" ",_+=E?"' + "+c:c+"'"),u.opts.verbose&&(_+=" , schema: ",_+=E?"validate.schema"+j:""+K,_+=" , parentSchema: validate.schema"+u.schemaPath+" , data: "+M+" "),_+=" } "):_+=" {} ",W=_,_=U.pop(),_+=!u.compositeRule&&w?u.async?" throw new ValidationError(["+W+"]); ":" validate.errors = ["+W+"]; return false; ":" var err = "+W+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",_+=" } ",w&&(_+=" else { "),_}},{}],13:[function(B,G,ge){"use strict";G.exports=function(u,L,H){var c,_=" ",C=u.level,D=u.dataLevel,K=u.schema[L],j=u.schemaPath+u.util.getProperty(L),R=u.errSchemaPath+"/"+L,w=!u.opts.allErrors,M="data"+(D||""),E=u.opts.$data&&K&&K.$data;E?(_+=" var schema"+C+" = "+u.util.getData(K.$data,D,u.dataPathArr)+"; ",c="schema"+C):c=K,_+="if ( ",E&&(_+=" ("+c+" !== undefined && typeof "+c+" != 'number') || ");var O=L,V=V||[];V.push(_+=" "+M+".length "+("maxItems"==L?">":"<")+" "+c+") { "),_="",!1!==u.createErrors?(_+=" { keyword: '"+(O||"_limitItems")+"' , dataPath: (dataPath || '') + "+u.errorPath+" , schemaPath: "+u.util.toQuotedString(R)+" , params: { limit: "+c+" } ",!1!==u.opts.messages&&(_+=" , message: 'should NOT have ",_+="maxItems"==L?"more":"less",_+=" than ",_+=E?"' + "+c+" + '":""+K,_+=" items' "),u.opts.verbose&&(_+=" , schema: ",_+=E?"validate.schema"+j:""+K,_+=" , parentSchema: validate.schema"+u.schemaPath+" , data: "+M+" "),_+=" } "):_+=" {} ";var $=_;return _=V.pop(),_+=!u.compositeRule&&w?u.async?" throw new ValidationError(["+$+"]); ":" validate.errors = ["+$+"]; return false; ":" var err = "+$+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",_+="} ",w&&(_+=" else { "),_}},{}],14:[function(B,G,ge){"use strict";G.exports=function(u,L,H){var c,_=" ",C=u.level,D=u.dataLevel,K=u.schema[L],j=u.schemaPath+u.util.getProperty(L),R=u.errSchemaPath+"/"+L,w=!u.opts.allErrors,M="data"+(D||""),E=u.opts.$data&&K&&K.$data;E?(_+=" var schema"+C+" = "+u.util.getData(K.$data,D,u.dataPathArr)+"; ",c="schema"+C):c=K,_+="if ( ",E&&(_+=" ("+c+" !== undefined && typeof "+c+" != 'number') || "),_+=!1===u.opts.unicode?" "+M+".length ":" ucs2length("+M+") ";var O=L,V=V||[];V.push(_+=" "+("maxLength"==L?">":"<")+" "+c+") { "),_="",!1!==u.createErrors?(_+=" { keyword: '"+(O||"_limitLength")+"' , dataPath: (dataPath || '') + "+u.errorPath+" , schemaPath: "+u.util.toQuotedString(R)+" , params: { limit: "+c+" } ",!1!==u.opts.messages&&(_+=" , message: 'should NOT be ",_+="maxLength"==L?"longer":"shorter",_+=" than ",_+=E?"' + "+c+" + '":""+K,_+=" characters' "),u.opts.verbose&&(_+=" , schema: ",_+=E?"validate.schema"+j:""+K,_+=" , parentSchema: validate.schema"+u.schemaPath+" , data: "+M+" "),_+=" } "):_+=" {} ";var $=_;return _=V.pop(),_+=!u.compositeRule&&w?u.async?" throw new ValidationError(["+$+"]); ":" validate.errors = ["+$+"]; return false; ":" var err = "+$+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",_+="} ",w&&(_+=" else { "),_}},{}],15:[function(B,G,ge){"use strict";G.exports=function(u,L,H){var c,_=" ",C=u.level,D=u.dataLevel,K=u.schema[L],j=u.schemaPath+u.util.getProperty(L),R=u.errSchemaPath+"/"+L,w=!u.opts.allErrors,M="data"+(D||""),E=u.opts.$data&&K&&K.$data;E?(_+=" var schema"+C+" = "+u.util.getData(K.$data,D,u.dataPathArr)+"; ",c="schema"+C):c=K,_+="if ( ",E&&(_+=" ("+c+" !== undefined && typeof "+c+" != 'number') || ");var O=L,V=V||[];V.push(_+=" Object.keys("+M+").length "+("maxProperties"==L?">":"<")+" "+c+") { "),_="",!1!==u.createErrors?(_+=" { keyword: '"+(O||"_limitProperties")+"' , dataPath: (dataPath || '') + "+u.errorPath+" , schemaPath: "+u.util.toQuotedString(R)+" , params: { limit: "+c+" } ",!1!==u.opts.messages&&(_+=" , message: 'should NOT have ",_+="maxProperties"==L?"more":"less",_+=" than ",_+=E?"' + "+c+" + '":""+K,_+=" properties' "),u.opts.verbose&&(_+=" , schema: ",_+=E?"validate.schema"+j:""+K,_+=" , parentSchema: validate.schema"+u.schemaPath+" , data: "+M+" "),_+=" } "):_+=" {} ";var $=_;return _=V.pop(),_+=!u.compositeRule&&w?u.async?" throw new ValidationError(["+$+"]); ":" validate.errors = ["+$+"]; return false; ":" var err = "+$+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",_+="} ",w&&(_+=" else { "),_}},{}],16:[function(B,G,ge){"use strict";G.exports=function(u,L,H){var c=" ",_=u.schema[L],C=u.schemaPath+u.util.getProperty(L),D=u.errSchemaPath+"/"+L,K=!u.opts.allErrors,j=u.util.copy(u),R="";j.level++;var w="valid"+j.level,M=j.baseId,E=!0,O=_;if(O)for(var V,$=-1,Z=O.length-1;$ "+W+") { ";var re=w+"["+W+"]";O.schema=U,O.schemaPath=K+"["+W+"]",O.errSchemaPath=j+"/"+W,O.errorPath=u.util.getPathExpr(u.errorPath,W,u.opts.jsonPointers,!0),O.dataPathArr[ue]=W;var ce=u.validate(O);O.baseId=oe,u.util.varOccurences(ce,ye)<2?c+=" "+u.util.varReplace(ce,ye,re)+" ":c+=" var "+ye+" = "+re+"; "+ce+" ",c+=" } ",R&&(c+=" if ("+$+") { ",V+="}")}"object"==typeof me&&u.util.schemaHasRules(me,u.RULES.all)&&(O.schema=me,O.schemaPath=u.schemaPath+".additionalItems",O.errSchemaPath=u.errSchemaPath+"/additionalItems",c+=" "+$+" = true; if ("+w+".length > "+D.length+") { for (var "+Z+" = "+D.length+"; "+Z+" < "+w+".length; "+Z+"++) { ",O.errorPath=u.util.getPathExpr(u.errorPath,Z,u.opts.jsonPointers,!0),re=w+"["+Z+"]",O.dataPathArr[ue]=Z,ce=u.validate(O),O.baseId=oe,u.util.varOccurences(ce,ye)<2?c+=" "+u.util.varReplace(ce,ye,re)+" ":c+=" var "+ye+" = "+re+"; "+ce+" ",R&&(c+=" if (!"+$+") break; "),c+=" } } ",R&&(c+=" if ("+$+") { ",V+="}"))}else u.util.schemaHasRules(D,u.RULES.all)&&(O.schema=D,O.schemaPath=K,O.errSchemaPath=j,c+=" for (var "+Z+" = 0; "+Z+" < "+w+".length; "+Z+"++) { ",O.errorPath=u.util.getPathExpr(u.errorPath,Z,u.opts.jsonPointers,!0),re=w+"["+Z+"]",O.dataPathArr[ue]=Z,ce=u.validate(O),O.baseId=oe,u.util.varOccurences(ce,ye)<2?c+=" "+u.util.varReplace(ce,ye,re)+" ":c+=" var "+ye+" = "+re+"; "+ce+" ",R&&(c+=" if (!"+$+") break; "),c+=" }");return R&&(c+=" "+V+" if ("+E+" == errors) {"),u.util.cleanUpCode(c)}},{}],28:[function(B,G,ge){"use strict";G.exports=function(u,L,H){var c,_=" ",C=u.level,D=u.dataLevel,K=u.schema[L],j=u.schemaPath+u.util.getProperty(L),R=u.errSchemaPath+"/"+L,w=!u.opts.allErrors,M="data"+(D||""),E=u.opts.$data&&K&&K.$data;E?(_+=" var schema"+C+" = "+u.util.getData(K.$data,D,u.dataPathArr)+"; ",c="schema"+C):c=K,_+="var division"+C+";if (",E&&(_+=" "+c+" !== undefined && ( typeof "+c+" != 'number' || "),_+=" (division"+C+" = "+M+" / "+c+", ",_+=u.opts.multipleOfPrecision?" Math.abs(Math.round(division"+C+") - division"+C+") > 1e-"+u.opts.multipleOfPrecision+" ":" division"+C+" !== parseInt(division"+C+") ",_+=" ) ",E&&(_+=" ) ");var O=O||[];O.push(_+=" ) { "),_="",!1!==u.createErrors?(_+=" { keyword: 'multipleOf' , dataPath: (dataPath || '') + "+u.errorPath+" , schemaPath: "+u.util.toQuotedString(R)+" , params: { multipleOf: "+c+" } ",!1!==u.opts.messages&&(_+=" , message: 'should be multiple of ",_+=E?"' + "+c:c+"'"),u.opts.verbose&&(_+=" , schema: ",_+=E?"validate.schema"+j:""+K,_+=" , parentSchema: validate.schema"+u.schemaPath+" , data: "+M+" "),_+=" } "):_+=" {} ";var V=_;return _=O.pop(),_+=!u.compositeRule&&w?u.async?" throw new ValidationError(["+V+"]); ":" validate.errors = ["+V+"]; return false; ":" var err = "+V+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",_+="} ",w&&(_+=" else { "),_}},{}],29:[function(B,G,ge){"use strict";G.exports=function(u,L,H){var c=" ",_=u.level,C=u.dataLevel,D=u.schema[L],K=u.schemaPath+u.util.getProperty(L),j=u.errSchemaPath+"/"+L,R=!u.opts.allErrors,w="data"+(C||""),M="errs__"+_,E=u.util.copy(u);E.level++;var O="valid"+E.level;if(u.util.schemaHasRules(D,u.RULES.all)){E.schema=D,E.schemaPath=K,E.errSchemaPath=j,c+=" var "+M+" = errors; ";var V,$=u.compositeRule;u.compositeRule=E.compositeRule=!0,E.createErrors=!1,E.opts.allErrors&&(V=E.opts.allErrors,E.opts.allErrors=!1),c+=" "+u.validate(E)+" ",E.createErrors=!0,V&&(E.opts.allErrors=V),u.compositeRule=E.compositeRule=$;var Z=Z||[];Z.push(c+=" if ("+O+") { "),c="",!1!==u.createErrors?(c+=" { keyword: 'not' , dataPath: (dataPath || '') + "+u.errorPath+" , schemaPath: "+u.util.toQuotedString(j)+" , params: {} ",!1!==u.opts.messages&&(c+=" , message: 'should NOT be valid' "),u.opts.verbose&&(c+=" , schema: validate.schema"+K+" , parentSchema: validate.schema"+u.schemaPath+" , data: "+w+" "),c+=" } "):c+=" {} ";var ue=c;c=Z.pop(),c+=!u.compositeRule&&R?u.async?" throw new ValidationError(["+ue+"]); ":" validate.errors = ["+ue+"]; return false; ":" var err = "+ue+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",c+=" } else { errors = "+M+"; if (vErrors !== null) { if ("+M+") vErrors.length = "+M+"; else vErrors = null; } ",u.opts.allErrors&&(c+=" } ")}else c+=" var err = ",!1!==u.createErrors?(c+=" { keyword: 'not' , dataPath: (dataPath || '') + "+u.errorPath+" , schemaPath: "+u.util.toQuotedString(j)+" , params: {} ",!1!==u.opts.messages&&(c+=" , message: 'should NOT be valid' "),u.opts.verbose&&(c+=" , schema: validate.schema"+K+" , parentSchema: validate.schema"+u.schemaPath+" , data: "+w+" "),c+=" } "):c+=" {} ",c+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",R&&(c+=" if (false) { ");return c}},{}],30:[function(B,G,ge){"use strict";G.exports=function(u,L,H){var c=" ",_=u.level,C=u.dataLevel,D=u.schema[L],K=u.schemaPath+u.util.getProperty(L),j=u.errSchemaPath+"/"+L,R=!u.opts.allErrors,w="data"+(C||""),M="valid"+_,E="errs__"+_,O=u.util.copy(u),V="";O.level++;var $="valid"+O.level,Z=O.baseId,ue="prevValid"+_,ye="passingSchemas"+_;c+="var "+E+" = errors , "+ue+" = false , "+M+" = false , "+ye+" = null; ";var oe=u.compositeRule;u.compositeRule=O.compositeRule=!0;var me=D;if(me)for(var te,N=-1,ee=me.length-1;N 1) { ";var V=u.schema.items&&u.schema.items.type,$=Array.isArray(V);!V||"object"==V||"array"==V||$&&(0<=V.indexOf("object")||0<=V.indexOf("array"))?_+=" outer: for (;i--;) { for (j = i; j--;) { if (equal("+M+"[i], "+M+"[j])) { "+E+" = false; break outer; } } } ":(_+=" var itemIndices = {}, item; for (;i--;) { var item = "+M+"[i]; ",_+=" if ("+u.util["checkDataType"+($?"s":"")](V,"item",!0)+") continue; ",$&&(_+=" if (typeof item == 'string') item = '\"' + item; "),_+=" if (typeof itemIndices[item] == 'number') { "+E+" = false; j = itemIndices[item]; break; } itemIndices[item] = i; } "),_+=" } ",O&&(_+=" } ");var Z=Z||[];Z.push(_+=" if (!"+E+") { "),_="",!1!==u.createErrors?(_+=" { keyword: 'uniqueItems' , dataPath: (dataPath || '') + "+u.errorPath+" , schemaPath: "+u.util.toQuotedString(R)+" , params: { i: i, j: j } ",!1!==u.opts.messages&&(_+=" , message: 'should NOT have duplicate items (items ## ' + j + ' and ' + i + ' are identical)' "),u.opts.verbose&&(_+=" , schema: ",_+=O?"validate.schema"+j:""+K,_+=" , parentSchema: validate.schema"+u.schemaPath+" , data: "+M+" "),_+=" } "):_+=" {} ";var ue=_;_=Z.pop(),_+=!u.compositeRule&&w?u.async?" throw new ValidationError(["+ue+"]); ":" validate.errors = ["+ue+"]; return false; ":" var err = "+ue+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",_+=" } ",w&&(_+=" else { ")}else w&&(_+=" if (true) { ");return _}},{}],37:[function(B,G,ge){"use strict";G.exports=function(u,L,H){var c="",_=!0===u.schema.$async,C=u.util.schemaHasRulesExcept(u.schema,u.RULES.all,"$ref"),D=u.self._getId(u.schema);if(u.isTop&&(c+=" var validate = ",_&&(u.async=!0,c+="async "),c+="function(data, dataPath, parentData, parentDataProperty, rootData) { 'use strict'; ",D&&(u.opts.sourceCode||u.opts.processCode)&&(c+=" /*# sourceURL="+D+" */ ")),"boolean"==typeof u.schema||!C&&!u.schema.$ref){var K=u.level,j=u.dataLevel,R=u.schema[L="false schema"],w=u.schemaPath+u.util.getProperty(L),M=u.errSchemaPath+"/"+L,E=!u.opts.allErrors,O="data"+(j||""),V="valid"+K;if(!1===u.schema){u.isTop?E=!0:c+=" var "+V+" = false; ",(ot=ot||[]).push(c),c="",!1!==u.createErrors?(c+=" { keyword: 'false schema' , dataPath: (dataPath || '') + "+u.errorPath+" , schemaPath: "+u.util.toQuotedString(M)+" , params: {} ",!1!==u.opts.messages&&(c+=" , message: 'boolean schema is false' "),u.opts.verbose&&(c+=" , schema: false , parentSchema: validate.schema"+u.schemaPath+" , data: "+O+" "),c+=" } "):c+=" {} ";var $=c;c=ot.pop(),c+=!u.compositeRule&&E?u.async?" throw new ValidationError(["+$+"]); ":" validate.errors = ["+$+"]; return false; ":" var err = "+$+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}else c+=u.isTop?_?" return data; ":" validate.errors = null; return true; ":" var "+V+" = true; ";return u.isTop&&(c+=" }; return validate; "),c}if(u.isTop){var Z=u.isTop;K=u.level=0,j=u.dataLevel=0,O="data",u.rootId=u.resolve.fullPath(u.self._getId(u.root.schema)),u.baseId=u.baseId||u.rootId,delete u.isTop,u.dataPathArr=[void 0],c+=" var vErrors = null; ",c+=" var errors = 0; ",c+=" if (rootData === undefined) rootData = data; "}else{if(K=u.level,O="data"+((j=u.dataLevel)||""),D&&(u.baseId=u.resolve.url(u.baseId,D)),_&&!u.async)throw new Error("async schema in sync schema");c+=" var errs_"+K+" = errors;"}V="valid"+K,E=!u.opts.allErrors;var ue="",ye="",oe=u.schema.type,me=Array.isArray(oe);if(me&&1==oe.length&&(oe=oe[0],me=!1),u.schema.$ref&&C){if("fail"==u.opts.extendRefs)throw new Error('$ref: validation keywords used in schema at path "'+u.errSchemaPath+'" (see option extendRefs)');!0!==u.opts.extendRefs&&(C=!1,u.logger.warn('$ref: keywords ignored in schema at path "'+u.errSchemaPath+'"'))}if(u.schema.$comment&&u.opts.$comment&&(c+=" "+u.RULES.all.$comment.code(u,"$comment")),oe){if(u.opts.coerceTypes)var te=u.util.coerceToTypes(u.opts.coerceTypes,oe);var N=u.RULES.types[oe];if(te||me||!0===N||N&&!rt(N)){if(w=u.schemaPath+".type",M=u.errSchemaPath+"/type",w=u.schemaPath+".type",M=u.errSchemaPath+"/type",c+=" if ("+u.util[me?"checkDataTypes":"checkDataType"](oe,O,!0)+") { ",te){var ee="dataType"+K,le="coerced"+K;c+=" var "+ee+" = typeof "+O+"; ","array"==u.opts.coerceTypes&&(c+=" if ("+ee+" == 'object' && Array.isArray("+O+")) "+ee+" = 'array'; "),c+=" var "+le+" = undefined; ";var U="",W=te;if(W)for(var z,re=-1,ce=W.length-1;re= 0x80 (not a basic code point)","invalid-input":"Invalid input"},$=Math.floor,Z=String.fromCharCode;function ue(X){throw new RangeError(V[X])}function ye(X,ne){var de=X.split("@"),be="";return 1>1,X+=$(X/ne);455$((w-Pe)/x))&&ue("overflow"),Pe+=se*x;var pe=ie<=et?1:et+26<=ie?26:ie-et;if(se$(w/we)&&ue("overflow"),x*=we}var Ie=de.length+1;et=te(Pe-ut,Ie,0==ut),$(Pe/Ie)>w-Ue&&ue("overflow"),Ue+=$(Pe/Ie),Pe%=Ie,de.splice(Pe++,0,Ue)}return String.fromCodePoint.apply(String,de)},ee=function(X){var ne=[],de=(X=oe(X)).length,be=128,Pe=0,Ue=72,et=!0,ze=!1,tt=void 0;try{for(var ct,ut=X[Symbol.iterator]();!(et=(ct=ut.next()).done);et=!0){var x=ct.value;x<128&&ne.push(Z(x))}}catch(rr){ze=!0,tt=rr}finally{try{!et&&ut.return&&ut.return()}finally{if(ze)throw tt}}var ie=ne.length,se=ie;for(ie&&ne.push("-");se$((w-Pe)/He)&&ue("overflow"),Pe+=(pe-be)*He,be=pe;var Pt=!0,At=!1,Gt=void 0;try{for(var gr,Ut=X[Symbol.iterator]();!(Pt=(gr=Ut.next()).done);Pt=!0){var Ht=gr.value;if(Htw&&ue("overflow"),Ht==be){for(var dr=Pe,pt=36;;pt+=36){var cr=pt<=Ue?1:Ue+26<=pt?26:pt-Ue;if(dr>6|192).toString(16).toUpperCase()+"%"+(63&ne|128).toString(16).toUpperCase():"%"+(ne>>12|224).toString(16).toUpperCase()+"%"+(ne>>6&63|128).toString(16).toUpperCase()+"%"+(63&ne|128).toString(16).toUpperCase()}function z(X){for(var ne="",de=0,be=X.length;deA-Z\\x5E-\\x7E]",'[\\"\\\\]'),Bt=new RegExp(Tt,"g"),Vt=new RegExp(rt,"g"),er=new RegExp(H("[^]","[A-Za-z0-9\\!\\$\\%\\'\\*\\+\\-\\^\\_\\`\\{\\|\\}\\~]","[\\.]",'[\\"]',kt),"g"),Je=new RegExp(H("[^]",Tt,"[\\!\\$\\'\\(\\)\\*\\+\\,\\;\\:\\@]"),"g"),tr=Je;function Fr(X){var ne=z(X);return ne.match(Bt)?ne:X}var lr={scheme:"mailto",parse:function(X,ne){var de=X,be=de.to=de.path?de.path.split(","):[];if(de.path=void 0,de.query){for(var Pe=!1,Ue={},et=de.query.split("&"),ze=0,tt=et.length;ze>>2]|=(E[V>>>2]>>>24-V%4*8&255)<<24-(O+V)%4*8;else if(65535>>2]=E[V>>>2];else M.push.apply(M,E);return this.sigBytes+=w,this},clamp:function(){var w=this.words,M=this.sigBytes;w[M>>>2]&=4294967295<<32-M%4*8,w.length=B.ceil(M/4)},clone:function(){var w=H.clone.call(this);return w.words=this.words.slice(0),w},random:function(w){for(var M=[],E=0;E>>2]>>>24-O%4*8&255;E.push((V>>>4).toString(16)),E.push((15&V).toString(16))}return E.join("")},parse:function(w){for(var M=w.length,E=[],O=0;O>>3]|=parseInt(w.substr(O,2),16)<<24-O%8*4;return new c.init(E,M/2)}},D=_.Latin1={stringify:function(w){var M=w.words;w=w.sigBytes;for(var E=[],O=0;O>>2]>>>24-O%4*8&255));return E.join("")},parse:function(w){for(var M=w.length,E=[],O=0;O>>2]|=(255&w.charCodeAt(O))<<24-O%4*8;return new c.init(E,M)}},K=_.Utf8={stringify:function(w){try{return decodeURIComponent(escape(D.stringify(w)))}catch{throw Error("Malformed UTF-8 data")}},parse:function(w){return D.parse(unescape(encodeURIComponent(w)))}},j=u.BufferedBlockAlgorithm=H.extend({reset:function(){this._data=new c.init,this._nDataBytes=0},_append:function(w){"string"==typeof w&&(w=K.parse(w)),this._data.concat(w),this._nDataBytes+=w.sigBytes},_process:function(w){var M=this._data,E=M.words,O=M.sigBytes,V=this.blockSize,$=O/(4*V);if(w=($=w?B.ceil($):B.max((0|$)-this._minBufferSize,0))*V,O=B.min(4*w,O),w){for(var Z=0;Z>>32-O)+R}function ge(j,R,w,M,E,O,V){return((j=j+(R&M|w&~M)+E+V)<>>32-O)+R}function u(j,R,w,M,E,O,V){return((j=j+(R^w^M)+E+V)<>>32-O)+R}function L(j,R,w,M,E,O,V){return((j=j+(w^(R|~M))+E+V)<>>32-O)+R}for(var H=CryptoJS,c=(C=H.lib).WordArray,_=C.Hasher,C=H.algo,D=[],K=0;64>K;K++)D[K]=4294967296*B.abs(B.sin(K+1))|0;C=C.MD5=_.extend({_doReset:function(){this._hash=new c.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(j,R){for(var w=0;16>w;w++){var E=j[M=R+w];j[M]=16711935&(E<<8|E>>>24)|4278255360&(E<<24|E>>>8)}w=this._hash.words;var M=j[R+0],O=(E=j[R+1],j[R+2]),V=j[R+3],$=j[R+4],Z=j[R+5],ue=j[R+6],ye=j[R+7],oe=j[R+8],me=j[R+9],te=j[R+10],N=j[R+11],ee=j[R+12],le=j[R+13],U=j[R+14],W=j[R+15],z=G(z=w[0],_e=w[1],ce=w[2],re=w[3],M,7,D[0]),re=G(re,z,_e,ce,E,12,D[1]),ce=G(ce,re,z,_e,O,17,D[2]),_e=G(_e,ce,re,z,V,22,D[3]);z=G(z,_e,ce,re,$,7,D[4]),re=G(re,z,_e,ce,Z,12,D[5]),ce=G(ce,re,z,_e,ue,17,D[6]),_e=G(_e,ce,re,z,ye,22,D[7]),z=G(z,_e,ce,re,oe,7,D[8]),re=G(re,z,_e,ce,me,12,D[9]),ce=G(ce,re,z,_e,te,17,D[10]),_e=G(_e,ce,re,z,N,22,D[11]),z=G(z,_e,ce,re,ee,7,D[12]),re=G(re,z,_e,ce,le,12,D[13]),ce=G(ce,re,z,_e,U,17,D[14]),z=ge(z,_e=G(_e,ce,re,z,W,22,D[15]),ce,re,E,5,D[16]),re=ge(re,z,_e,ce,ue,9,D[17]),ce=ge(ce,re,z,_e,N,14,D[18]),_e=ge(_e,ce,re,z,M,20,D[19]),z=ge(z,_e,ce,re,Z,5,D[20]),re=ge(re,z,_e,ce,te,9,D[21]),ce=ge(ce,re,z,_e,W,14,D[22]),_e=ge(_e,ce,re,z,$,20,D[23]),z=ge(z,_e,ce,re,me,5,D[24]),re=ge(re,z,_e,ce,U,9,D[25]),ce=ge(ce,re,z,_e,V,14,D[26]),_e=ge(_e,ce,re,z,oe,20,D[27]),z=ge(z,_e,ce,re,le,5,D[28]),re=ge(re,z,_e,ce,O,9,D[29]),ce=ge(ce,re,z,_e,ye,14,D[30]),z=u(z,_e=ge(_e,ce,re,z,ee,20,D[31]),ce,re,Z,4,D[32]),re=u(re,z,_e,ce,oe,11,D[33]),ce=u(ce,re,z,_e,N,16,D[34]),_e=u(_e,ce,re,z,U,23,D[35]),z=u(z,_e,ce,re,E,4,D[36]),re=u(re,z,_e,ce,$,11,D[37]),ce=u(ce,re,z,_e,ye,16,D[38]),_e=u(_e,ce,re,z,te,23,D[39]),z=u(z,_e,ce,re,le,4,D[40]),re=u(re,z,_e,ce,M,11,D[41]),ce=u(ce,re,z,_e,V,16,D[42]),_e=u(_e,ce,re,z,ue,23,D[43]),z=u(z,_e,ce,re,me,4,D[44]),re=u(re,z,_e,ce,ee,11,D[45]),ce=u(ce,re,z,_e,W,16,D[46]),z=L(z,_e=u(_e,ce,re,z,O,23,D[47]),ce,re,M,6,D[48]),re=L(re,z,_e,ce,ye,10,D[49]),ce=L(ce,re,z,_e,U,15,D[50]),_e=L(_e,ce,re,z,Z,21,D[51]),z=L(z,_e,ce,re,ee,6,D[52]),re=L(re,z,_e,ce,V,10,D[53]),ce=L(ce,re,z,_e,te,15,D[54]),_e=L(_e,ce,re,z,E,21,D[55]),z=L(z,_e,ce,re,oe,6,D[56]),re=L(re,z,_e,ce,W,10,D[57]),ce=L(ce,re,z,_e,ue,15,D[58]),_e=L(_e,ce,re,z,le,21,D[59]),z=L(z,_e,ce,re,$,6,D[60]),re=L(re,z,_e,ce,N,10,D[61]),ce=L(ce,re,z,_e,O,15,D[62]),_e=L(_e,ce,re,z,me,21,D[63]);w[0]=w[0]+z|0,w[1]=w[1]+_e|0,w[2]=w[2]+ce|0,w[3]=w[3]+re|0},_doFinalize:function(){var j=this._data,R=j.words,w=8*this._nDataBytes,M=8*j.sigBytes;R[M>>>5]|=128<<24-M%32;var E=B.floor(w/4294967296);for(R[15+(M+64>>>9<<4)]=16711935&(E<<8|E>>>24)|4278255360&(E<<24|E>>>8),R[14+(M+64>>>9<<4)]=16711935&(w<<8|w>>>24)|4278255360&(w<<24|w>>>8),j.sigBytes=4*(R.length+1),this._process(),R=(j=this._hash).words,w=0;4>w;w++)M=R[w],R[w]=16711935&(M<<8|M>>>24)|4278255360&(M<<24|M>>>8);return j},clone:function(){var j=_.clone.call(this);return j._hash=this._hash.clone(),j}}),H.MD5=_._createHelper(C),H.HmacMD5=_._createHmacHelper(C)}(Math),function(B,G){"use strict";var ge="function",u="undefined",L="object",H="model",c="name",_="type",C="vendor",D="version",K="architecture",j="console",R="mobile",w="tablet",M="smarttv",E="wearable",O={extend:function(me,te){var N={};for(var ee in me)te[ee]&&te[ee].length%2==0?N[ee]=te[ee].concat(me[ee]):N[ee]=me[ee];return N},has:function(me,te){return"string"==typeof me&&-1!==te.toLowerCase().indexOf(me.toLowerCase())},lowerize:function(me){return me.toLowerCase()},major:function(me){return"string"==typeof me?me.replace(/[^\d\.]/g,"").split(".")[0]:G},trim:function(me){return me.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")}},V={rgx:function(me,te){for(var N,ee,le,U,W,z,re=0;re>>16,65535&x[0],x[1]>>>16,65535&x[1]],ie=[ie[0]>>>16,65535&ie[0],ie[1]>>>16,65535&ie[1]];var se=[0,0,0,0];return se[3]+=x[3]+ie[3],se[2]+=se[3]>>>16,se[3]&=65535,se[2]+=x[2]+ie[2],se[1]+=se[2]>>>16,se[2]&=65535,se[1]+=x[1]+ie[1],se[0]+=se[1]>>>16,se[1]&=65535,se[0]+=x[0]+ie[0],se[0]&=65535,[se[0]<<16|se[1],se[2]<<16|se[3]]},G=function(x,ie){x=[x[0]>>>16,65535&x[0],x[1]>>>16,65535&x[1]],ie=[ie[0]>>>16,65535&ie[0],ie[1]>>>16,65535&ie[1]];var se=[0,0,0,0];return se[3]+=x[3]*ie[3],se[2]+=se[3]>>>16,se[3]&=65535,se[2]+=x[2]*ie[3],se[1]+=se[2]>>>16,se[2]&=65535,se[2]+=x[3]*ie[2],se[1]+=se[2]>>>16,se[2]&=65535,se[1]+=x[1]*ie[3],se[0]+=se[1]>>>16,se[1]&=65535,se[1]+=x[2]*ie[2],se[0]+=se[1]>>>16,se[1]&=65535,se[1]+=x[3]*ie[1],se[0]+=se[1]>>>16,se[1]&=65535,se[0]+=x[0]*ie[3]+x[1]*ie[2]+x[2]*ie[1]+x[3]*ie[0],se[0]&=65535,[se[0]<<16|se[1],se[2]<<16|se[3]]},ge=function(x,ie){return 32===(ie%=64)?[x[1],x[0]]:ie<32?[x[0]<>>32-ie,x[1]<>>32-ie]:(ie-=32,[x[1]<>>32-ie,x[0]<>>32-ie])},u=function(x,ie){return 0===(ie%=64)?x:ie<32?[x[0]<>>32-ie,x[1]<>>1]),x=G(x,[4283543511,3981806797]),x=L(x,[0,x[0]>>>1]),x=G(x,[3301882366,444984403]),x=L(x,[0,x[0]>>>1])},c=function(x,ie){ie=ie||0;for(var se=(x=x||"").length%16,pe=x.length-se,we=[0,ie],Ie=[0,ie],Me=[0,0],$e=[0,0],at=[2277735313,289559509],ft=[1291169091,658871167],He=0;He>>0).toString(16)).slice(-8)+("00000000"+(we[1]>>>0).toString(16)).slice(-8)+("00000000"+(Ie[0]>>>0).toString(16)).slice(-8)+("00000000"+(Ie[1]>>>0).toString(16)).slice(-8)},_={preprocessor:null,audio:{timeout:1e3,excludeIOS11:!0},fonts:{swfContainerId:"fingerprintjs2",swfPath:"flash/compiled/FontList.swf",userDefinedFonts:[],extendedJsFonts:!1},screen:{detectScreenOrientation:!0},plugins:{sortPluginsFor:[/palemoon/i],excludeIE:!1},extraComponents:[],excludes:{enumerateDevices:!0,pixelRatio:!0,doNotTrack:!0,fontsFlash:!0},NOT_AVAILABLE:"not available",ERROR:"error",EXCLUDED:"excluded"},C=function(x,ie){if(Array.prototype.forEach&&x.forEach===Array.prototype.forEach)x.forEach(ie);else if(x.length===+x.length)for(var se=0,pe=x.length;seIe.name?1:we.name=0?"Windows Phone":x.indexOf("win")>=0?"Windows":x.indexOf("android")>=0?"Android":x.indexOf("linux")>=0?"Linux":x.indexOf("iphone")>=0||x.indexOf("ipad")>=0?"iOS":x.indexOf("mac")>=0?"Mac":"Other",("ontouchstart"in window||navigator.maxTouchPoints>0||navigator.msMaxTouchPoints>0)&&"Windows Phone"!==pe&&"Android"!==pe&&"iOS"!==pe&&"Other"!==pe)return!0;if(typeof ie<"u"){if((ie=ie.toLowerCase()).indexOf("win")>=0&&"Windows"!==pe&&"Windows Phone"!==pe)return!0;if(ie.indexOf("linux")>=0&&"Linux"!==pe&&"Android"!==pe)return!0;if(ie.indexOf("mac")>=0&&"Mac"!==pe&&"iOS"!==pe)return!0;if((-1===ie.indexOf("win")&&-1===ie.indexOf("linux")&&-1===ie.indexOf("mac"))!=("Other"===pe))return!0}return se.indexOf("win")>=0&&"Windows"!==pe&&"Windows Phone"!==pe||(se.indexOf("linux")>=0||se.indexOf("android")>=0||se.indexOf("pike")>=0)&&"Linux"!==pe&&"Android"!==pe||(se.indexOf("mac")>=0||se.indexOf("ipad")>=0||se.indexOf("ipod")>=0||se.indexOf("iphone")>=0)&&"Mac"!==pe&&"iOS"!==pe||(-1===se.indexOf("win")&&-1===se.indexOf("linux")&&-1===se.indexOf("mac"))!=("Other"===pe)||typeof navigator.plugins>"u"&&"Windows"!==pe&&"Windows Phone"!==pe},X=function(){var se,x=navigator.userAgent.toLowerCase(),ie=navigator.productSub;if(("Chrome"===(se=x.indexOf("firefox")>=0?"Firefox":x.indexOf("opera")>=0||x.indexOf("opr")>=0?"Opera":x.indexOf("chrome")>=0?"Chrome":x.indexOf("safari")>=0?"Safari":x.indexOf("trident")>=0?"Internet Explorer":"Other")||"Safari"===se||"Opera"===se)&&"20030107"!==ie)return!0;var we,pe=eval.toString().length;if(37===pe&&"Safari"!==se&&"Firefox"!==se&&"Other"!==se)return!0;if(39===pe&&"Internet Explorer"!==se&&"Other"!==se)return!0;if(33===pe&&"Chrome"!==se&&"Opera"!==se&&"Other"!==se)return!0;try{throw"a"}catch(Ie){try{Ie.toSource(),we=!0}catch{we=!1}}return we&&"Firefox"!==se&&"Other"!==se},ne=function(){var x=document.createElement("canvas");return!(!x.getContext||!x.getContext("2d"))},de=function(){if(!ne())return!1;var x=tt();return!!window.WebGLRenderingContext&&!!x},be=function(){return"Microsoft Internet Explorer"===navigator.appName||!("Netscape"!==navigator.appName||!/Trident/.test(navigator.userAgent))},Pe=function(){return typeof window.swfobject<"u"},Ue=function(){return window.swfobject.hasFlashPlayerVersion("9.0.0")},ze=function(x,ie){var se="___fp_swf_loaded";window[se]=function(Me){x(Me)};var pe=ie.fonts.swfContainerId;!function(x){var ie=document.createElement("div");ie.setAttribute("id",x.fonts.swfContainerId),document.body.appendChild(ie)}();var we={onReady:se};window.swfobject.embedSWF(ie.fonts.swfPath,pe,"1","1","9.0.0",!1,we,{allowScriptAccess:"always",menu:"false"},{})},tt=function(){var x=document.createElement("canvas"),ie=null;try{ie=x.getContext("webgl")||x.getContext("experimental-webgl")}catch{}return ie||(ie=null),ie},ct=[{key:"userAgent",getData:function(x){x(navigator.userAgent)}},{key:"language",getData:function(x,ie){x(navigator.language||navigator.userLanguage||navigator.browserLanguage||navigator.systemLanguage||ie.NOT_AVAILABLE)}},{key:"colorDepth",getData:function(x,ie){x(window.screen.colorDepth||ie.NOT_AVAILABLE)}},{key:"deviceMemory",getData:function(x,ie){x(navigator.deviceMemory||ie.NOT_AVAILABLE)}},{key:"pixelRatio",getData:function(x,ie){x(window.devicePixelRatio||ie.NOT_AVAILABLE)}},{key:"hardwareConcurrency",getData:function(x,ie){x(kt(ie))}},{key:"screenResolution",getData:function(x,ie){x(ue(ie))}},{key:"availableScreenResolution",getData:function(x,ie){x(oe(ie))}},{key:"timezoneOffset",getData:function(x){x((new Date).getTimezoneOffset())}},{key:"timezone",getData:function(x,ie){window.Intl&&window.Intl.DateTimeFormat?x((new window.Intl.DateTimeFormat).resolvedOptions().timeZone):x(ie.NOT_AVAILABLE)}},{key:"sessionStorage",getData:function(x,ie){x(Tt(ie))}},{key:"localStorage",getData:function(x,ie){x(ot(ie))}},{key:"indexedDb",getData:function(x,ie){x(rt(ie))}},{key:"addBehavior",getData:function(x){x(!(!document.body||!document.body.addBehavior))}},{key:"openDatabase",getData:function(x){x(!!window.openDatabase)}},{key:"cpuClass",getData:function(x,ie){x(Bt(ie))}},{key:"platform",getData:function(x,ie){x(Vt(ie))}},{key:"doNotTrack",getData:function(x,ie){x(er(ie))}},{key:"plugins",getData:function(x,ie){be()?ie.plugins.excludeIE?x(ie.EXCLUDED):x(Ne(ie)):x(qe(ie))}},{key:"canvas",getData:function(x,ie){ne()?x(tr(ie)):x(ie.NOT_AVAILABLE)}},{key:"webgl",getData:function(x,ie){de()?x(Fr()):x(ie.NOT_AVAILABLE)}},{key:"webglVendorAndRenderer",getData:function(x){de()?x(lr()):x()}},{key:"adBlock",getData:function(x){x(zt())}},{key:"hasLiedLanguages",getData:function(x){x(Ar())}},{key:"hasLiedResolution",getData:function(x){x(fi())}},{key:"hasLiedOs",getData:function(x){x(Ir())}},{key:"hasLiedBrowser",getData:function(x){x(X())}},{key:"touchSupport",getData:function(x){x(Je())}},{key:"fonts",getData:function(x,ie){var se=["monospace","sans-serif","serif"],pe=["Andale Mono","Arial","Arial Black","Arial Hebrew","Arial MT","Arial Narrow","Arial Rounded MT Bold","Arial Unicode MS","Bitstream Vera Sans Mono","Book Antiqua","Bookman Old Style","Calibri","Cambria","Cambria Math","Century","Century Gothic","Century Schoolbook","Comic Sans","Comic Sans MS","Consolas","Courier","Courier New","Geneva","Georgia","Helvetica","Helvetica Neue","Impact","Lucida Bright","Lucida Calligraphy","Lucida Console","Lucida Fax","LUCIDA GRANDE","Lucida Handwriting","Lucida Sans","Lucida Sans Typewriter","Lucida Sans Unicode","Microsoft Sans Serif","Monaco","Monotype Corsiva","MS Gothic","MS Outlook","MS PGothic","MS Reference Sans Serif","MS Sans Serif","MS Serif","MYRIAD","MYRIAD PRO","Palatino","Palatino Linotype","Segoe Print","Segoe Script","Segoe UI","Segoe UI Light","Segoe UI Semibold","Segoe UI Symbol","Tahoma","Times","Times New Roman","Times New Roman PS","Trebuchet MS","Verdana","Wingdings","Wingdings 2","Wingdings 3"];if(ie.fonts.extendedJsFonts){pe=pe.concat(["Abadi MT Condensed Light","Academy Engraved LET","ADOBE CASLON PRO","Adobe Garamond","ADOBE GARAMOND PRO","Agency FB","Aharoni","Albertus Extra Bold","Albertus Medium","Algerian","Amazone BT","American Typewriter","American Typewriter Condensed","AmerType Md BT","Andalus","Angsana New","AngsanaUPC","Antique Olive","Aparajita","Apple Chancery","Apple Color Emoji","Apple SD Gothic Neo","Arabic Typesetting","ARCHER","ARNO PRO","Arrus BT","Aurora Cn BT","AvantGarde Bk BT","AvantGarde Md BT","AVENIR","Ayuthaya","Bandy","Bangla Sangam MN","Bank Gothic","BankGothic Md BT","Baskerville","Baskerville Old Face","Batang","BatangChe","Bauer Bodoni","Bauhaus 93","Bazooka","Bell MT","Bembo","Benguiat Bk BT","Berlin Sans FB","Berlin Sans FB Demi","Bernard MT Condensed","BernhardFashion BT","BernhardMod BT","Big Caslon","BinnerD","Blackadder ITC","BlairMdITC TT","Bodoni 72","Bodoni 72 Oldstyle","Bodoni 72 Smallcaps","Bodoni MT","Bodoni MT Black","Bodoni MT Condensed","Bodoni MT Poster Compressed","Bookshelf Symbol 7","Boulder","Bradley Hand","Bradley Hand ITC","Bremen Bd BT","Britannic Bold","Broadway","Browallia New","BrowalliaUPC","Brush Script MT","Californian FB","Calisto MT","Calligrapher","Candara","CaslonOpnface BT","Castellar","Centaur","Cezanne","CG Omega","CG Times","Chalkboard","Chalkboard SE","Chalkduster","Charlesworth","Charter Bd BT","Charter BT","Chaucer","ChelthmITC Bk BT","Chiller","Clarendon","Clarendon Condensed","CloisterBlack BT","Cochin","Colonna MT","Constantia","Cooper Black","Copperplate","Copperplate Gothic","Copperplate Gothic Bold","Copperplate Gothic Light","CopperplGoth Bd BT","Corbel","Cordia New","CordiaUPC","Cornerstone","Coronet","Cuckoo","Curlz MT","DaunPenh","Dauphin","David","DB LCD Temp","DELICIOUS","Denmark","DFKai-SB","Didot","DilleniaUPC","DIN","DokChampa","Dotum","DotumChe","Ebrima","Edwardian Script ITC","Elephant","English 111 Vivace BT","Engravers MT","EngraversGothic BT","Eras Bold ITC","Eras Demi ITC","Eras Light ITC","Eras Medium ITC","EucrosiaUPC","Euphemia","Euphemia UCAS","EUROSTILE","Exotc350 Bd BT","FangSong","Felix Titling","Fixedsys","FONTIN","Footlight MT Light","Forte","FrankRuehl","Fransiscan","Freefrm721 Blk BT","FreesiaUPC","Freestyle Script","French Script MT","FrnkGothITC Bk BT","Fruitger","FRUTIGER","Futura","Futura Bk BT","Futura Lt BT","Futura Md BT","Futura ZBlk BT","FuturaBlack BT","Gabriola","Galliard BT","Gautami","Geeza Pro","Geometr231 BT","Geometr231 Hv BT","Geometr231 Lt BT","GeoSlab 703 Lt BT","GeoSlab 703 XBd BT","Gigi","Gill Sans","Gill Sans MT","Gill Sans MT Condensed","Gill Sans MT Ext Condensed Bold","Gill Sans Ultra Bold","Gill Sans Ultra Bold Condensed","Gisha","Gloucester MT Extra Condensed","GOTHAM","GOTHAM BOLD","Goudy Old Style","Goudy Stout","GoudyHandtooled BT","GoudyOLSt BT","Gujarati Sangam MN","Gulim","GulimChe","Gungsuh","GungsuhChe","Gurmukhi MN","Haettenschweiler","Harlow Solid Italic","Harrington","Heather","Heiti SC","Heiti TC","HELV","Herald","High Tower Text","Hiragino Kaku Gothic ProN","Hiragino Mincho ProN","Hoefler Text","Humanst 521 Cn BT","Humanst521 BT","Humanst521 Lt BT","Imprint MT Shadow","Incised901 Bd BT","Incised901 BT","Incised901 Lt BT","INCONSOLATA","Informal Roman","Informal011 BT","INTERSTATE","IrisUPC","Iskoola Pota","JasmineUPC","Jazz LET","Jenson","Jester","Jokerman","Juice ITC","Kabel Bk BT","Kabel Ult BT","Kailasa","KaiTi","Kalinga","Kannada Sangam MN","Kartika","Kaufmann Bd BT","Kaufmann BT","Khmer UI","KodchiangUPC","Kokila","Korinna BT","Kristen ITC","Krungthep","Kunstler Script","Lao UI","Latha","Leelawadee","Letter Gothic","Levenim MT","LilyUPC","Lithograph","Lithograph Light","Long Island","Lydian BT","Magneto","Maiandra GD","Malayalam Sangam MN","Malgun Gothic","Mangal","Marigold","Marion","Marker Felt","Market","Marlett","Matisse ITC","Matura MT Script Capitals","Meiryo","Meiryo UI","Microsoft Himalaya","Microsoft JhengHei","Microsoft New Tai Lue","Microsoft PhagsPa","Microsoft Tai Le","Microsoft Uighur","Microsoft YaHei","Microsoft Yi Baiti","MingLiU","MingLiU_HKSCS","MingLiU_HKSCS-ExtB","MingLiU-ExtB","Minion","Minion Pro","Miriam","Miriam Fixed","Mistral","Modern","Modern No. 20","Mona Lisa Solid ITC TT","Mongolian Baiti","MONO","MoolBoran","Mrs Eaves","MS LineDraw","MS Mincho","MS PMincho","MS Reference Specialty","MS UI Gothic","MT Extra","MUSEO","MV Boli","Nadeem","Narkisim","NEVIS","News Gothic","News GothicMT","NewsGoth BT","Niagara Engraved","Niagara Solid","Noteworthy","NSimSun","Nyala","OCR A Extended","Old Century","Old English Text MT","Onyx","Onyx BT","OPTIMA","Oriya Sangam MN","OSAKA","OzHandicraft BT","Palace Script MT","Papyrus","Parchment","Party LET","Pegasus","Perpetua","Perpetua Titling MT","PetitaBold","Pickwick","Plantagenet Cherokee","Playbill","PMingLiU","PMingLiU-ExtB","Poor Richard","Poster","PosterBodoni BT","PRINCETOWN LET","Pristina","PTBarnum BT","Pythagoras","Raavi","Rage Italic","Ravie","Ribbon131 Bd BT","Rockwell","Rockwell Condensed","Rockwell Extra Bold","Rod","Roman","Sakkal Majalla","Santa Fe LET","Savoye LET","Sceptre","Script","Script MT Bold","SCRIPTINA","Serifa","Serifa BT","Serifa Th BT","ShelleyVolante BT","Sherwood","Shonar Bangla","Showcard Gothic","Shruti","Signboard","SILKSCREEN","SimHei","Simplified Arabic","Simplified Arabic Fixed","SimSun","SimSun-ExtB","Sinhala Sangam MN","Sketch Rockwell","Skia","Small Fonts","Snap ITC","Snell Roundhand","Socket","Souvenir Lt BT","Staccato222 BT","Steamer","Stencil","Storybook","Styllo","Subway","Swis721 BlkEx BT","Swiss911 XCm BT","Sylfaen","Synchro LET","System","Tamil Sangam MN","Technical","Teletype","Telugu Sangam MN","Tempus Sans ITC","Terminal","Thonburi","Traditional Arabic","Trajan","TRAJAN PRO","Tristan","Tubular","Tunga","Tw Cen MT","Tw Cen MT Condensed","Tw Cen MT Condensed Extra Bold","TypoUpright BT","Unicorn","Univers","Univers CE 55 Medium","Univers Condensed","Utsaah","Vagabond","Vani","Vijaya","Viner Hand ITC","VisualUI","Vivaldi","Vladimir Script","Vrinda","Westminster","WHITNEY","Wide Latin","ZapfEllipt BT","ZapfHumnst BT","ZapfHumnst Dm BT","Zapfino","Zurich BlkEx BT","Zurich Ex BT","ZWAdobeF"])}pe=(pe=pe.concat(ie.fonts.userDefinedFonts)).filter(function(mt,vt){return pe.indexOf(mt)===vt});var $e=document.getElementsByTagName("body")[0],at=document.createElement("div"),ft=document.createElement("div"),He={},Pt={},At=function(){var mt=document.createElement("span");return mt.style.position="absolute",mt.style.left="-9999px",mt.style.fontSize="72px",mt.style.fontStyle="normal",mt.style.fontWeight="normal",mt.style.letterSpacing="normal",mt.style.lineBreak="auto",mt.style.lineHeight="normal",mt.style.textTransform="none",mt.style.textAlign="left",mt.style.textDecoration="none",mt.style.textShadow="none",mt.style.whiteSpace="normal",mt.style.wordBreak="normal",mt.style.wordSpacing="normal",mt.innerHTML="mmmmmmmmmmlli",mt},Gt=function(mt,vt){var bt=At();return bt.style.fontFamily="'"+mt+"',"+vt,bt},Ht=function(mt){for(var vt=!1,bt=0;bt=x.components.length)ie(se.data);else{var Me=x.components[pe];if(x.excludes[Me.key])we(!1);else{if(!Ie&&Me.pauseBefore)return pe-=1,void setTimeout(function(){we(!0)},1);try{Me.getData(function($e){se.addPreprocessedComponent(Me.key,$e),we(!1)},x)}catch($e){se.addPreprocessedComponent(Me.key,String($e)),we(!1)}}}};we(!1)},ut.getPromise=function(x){return new Promise(function(ie,se){ut.get(x,ie)})},ut.getV18=function(x,ie){return null==ie&&(ie=x,x={}),ut.get(x,function(se){for(var pe=[],we=0;we1e3?1e3:u.batchsize:_defaultValue.batchsize,Telemetry.config=Object.assign(_defaultValue,u),Telemetry.initialized=!0,G.dispatcher=Telemetry.config.dispatcher?Telemetry.config.dispatcher:libraryDispatcher,B.updateConfigurations(u),console.info("Telemetry is initialized."))},B._dispatch=function(u){if(u.mid=u.eid+":"+CryptoJS.MD5(JSON.stringify(u)).toString(),G.enableValidation){var L=ajv.getSchema("http://api.ekstep.org/telemetry/"+u.eid.toLowerCase());if(!L(u))return void console.error("Invalid "+u.eid+" Event: "+ajv.errorsText(L.errors))}"client"===G.runningEnv?u.context.did?(u.actor.id=B.getActorId(u.actor.id,u.context.did),dispatcher.dispatch(u)):Telemetry.fingerPrintId?(u.context.did=Telemetry.fingerPrintId,u.actor.id=B.getActorId(u.actor.id,Telemetry.fingerPrintId),dispatcher.dispatch(u)):Telemetry.getFingerPrint(function(c,_){u.context.did=c,u.actor.id=B.getActorId(u.actor.id,c),Telemetry.fingerPrintId=c,dispatcher.dispatch(u)}):dispatcher.dispatch(u)},B.getActorId=function(u,L){return u&&"anonymous"!==u?u:L},B.getEvent=function(u,L){return G.telemetryEnvelop.eid=u,G.telemetryEnvelop.ets=(new Date).getTime()+(1e3*Telemetry.config.timeDiff||0),G.telemetryEnvelop.ver=Telemetry._version,G.telemetryEnvelop.mid="",G.telemetryEnvelop.actor=Object.assign({},{id:Telemetry.config.uid||"anonymous",type:"User"},B.getUpdatedValue("actor")),G.telemetryEnvelop.context=Object.assign({},B.getGlobalContext(),B.getUpdatedValue("context")),G.telemetryEnvelop.object=Object.assign({},B.getGlobalObject(),B.getUpdatedValue("object")),G.telemetryEnvelop.tags=Object.assign([],Telemetry.config.tags,B.getUpdatedValue("tags")),G.telemetryEnvelop.edata=L,G.telemetryEnvelop},B.updateConfigurations=function(u){u.object&&(G._globalObject=u.object),u.channel&&(G._globalContext.channel=u.channel),u.env&&(G._globalContext.env=u.env),u.rollup&&(G._globalContext.rollup=u.rollup),u.sid&&(G._globalContext.sid=u.sid),u.did&&(G._globalContext.did=u.did),u.cdata&&(G._globalContext.cdata=u.cdata),u.pdata&&(G._globalContext.pdata=u.pdata)},B.getGlobalContext=function(){return G._globalContext},B.getGlobalObject=function(){return G._globalObject},B.updateValues=function(u){u&&(u.context&&(G._currentContext=u.context),u.object&&(G._currentObject=u.object),u.actor&&(G._currentActor=u.actor),u.tags&&(G._currentTags=u.tags),u.runningEnv&&(G.runningEnv=u.runningEnv))},B.getUpdatedValue=function(u){switch(u.toLowerCase()){case"context":return G._currentContext||{};case"object":return G._currentObject||{};case"actor":return G._currentActor||{};case"tags":return G._currentTags||[]}},B.objectAssign=function(){Object.assign=function(u){"use strict";if(null==u)throw new TypeError("Cannot convert undefined or null to object");u=Object(u);for(var L=1;L=Telemetry.config.batchsize)&&TelemetrySyncManager.syncEvents()},syncEvents:function(B=!0,G){var ge=EkTelemetry||ge,u=TelemetrySyncManager;if(!G){var L=u._teleData.splice(0,ge.config.batchsize);if(!L.length)return;G={id:"api.sunbird.telemetry",ver:ge._version,params:{msgid:CryptoJS.MD5(JSON.stringify(L)).toString()},ets:(new Date).getTime()+(1e3*ge.config.timeDiff||0),events:L}}var H={};typeof ge.config.authtoken<"u"&&(H.Authorization="Bearer "+ge.config.authtoken);var c=ge.config.host+ge.config.apislug+ge.config.endpoint;H.dataType="json",H["Content-Type"]="application/json",H["x-app-id"]=ge.config.pdata.id,H["x-device-id"]=ge.fingerPrintId,H["x-channel-id"]=ge.config.channel,jQuery.ajax({url:c,type:"POST",headers:H,data:JSON.stringify(G),async:B}).done(function(_){ge.config.telemetryDebugEnabled&&console.log("Telemetry API success",_)}).fail(function(_,C,D){u._failedBatchSize>u._failedBatch.length&&u._failedBatch.push(G),403==_.status?console.error("Authentication error: ",_):console.log("Error while Telemetry sync to server: ",_)})},syncFailedBatch:function(){var B=TelemetrySyncManager;if(B._failedBatch.length){Telemetry.config.telemetryDebugEnabled&&console.log("syncing failed telemetry batch");var G=B._failedBatch.shift();B.syncEvents(!0,G)}}};typeof document<"u"&&(TelemetrySyncManager.init(),setInterval(function(){TelemetrySyncManager.syncFailedBatch()},TelemetrySyncManager._syncRetryInterval)), +/** +* @license +* Video.js 7.18.1 +* Copyright Brightcove, Inc. +* Available under Apache License Version 2.0 +* +* +* Includes vtt.js +* Available under Apache License Version 2.0 +* +*/ +function(B,G){"object"==typeof exports&&typeof module<"u"?module.exports=G():"function"==typeof define&&define.amd?define(G):(B=typeof globalThis<"u"?globalThis:B||self).videojs=G()}(this,function(){"use strict";for(var D,B="7.18.1",G={},ge=function(t,r){return G[t]=G[t]||[],r&&(G[t]=G[t].concat(r)),G[t]},L=function(t,r){var a=ge(t).indexOf(r);return!(a<=-1)&&(G[t]=G[t].slice(),G[t].splice(a,1),!0)},c={prefixed:!0},_=[["requestFullscreen","exitFullscreen","fullscreenElement","fullscreenEnabled","fullscreenchange","fullscreenerror","fullscreen"],["webkitRequestFullscreen","webkitExitFullscreen","webkitFullscreenElement","webkitFullscreenEnabled","webkitfullscreenchange","webkitfullscreenerror","-webkit-full-screen"],["mozRequestFullScreen","mozCancelFullScreen","mozFullScreenElement","mozFullScreenEnabled","mozfullscreenchange","mozfullscreenerror","-moz-full-screen"],["msRequestFullscreen","msExitFullscreen","msFullscreenElement","msFullscreenEnabled","MSFullscreenChange","MSFullscreenError","-ms-fullscreen"]],C=_[0],K=0;K<_.length;K++)if(_[K][1]in document){D=_[K];break}if(D){for(var j=0;j0?l:0)}if(window.console){var d=window.console[a];!d&&"debug"===a&&(d=window.console.info||window.console.log),d&&n&&o.test(a)&&d[Array.isArray(i)?"apply":"call"](window.console,i)}}}(s,a),a.createLogger=function(e){return M(s+": "+e)},a.levels={all:"debug|log|warn|error",off:"",debug:"debug|log|warn|error",info:"log|warn|error",warn:"warn|error",error:"error",DEFAULT:t},a.level=function(e){if("string"==typeof e){if(!a.levels.hasOwnProperty(e))throw new Error('"'+e+'" in not a valid log level');t=e}return t},a.history=function(){return R?[].concat(R):[]},a.history.filter=function(e){return(R||[]).filter(function(i){return new RegExp(".*"+e+".*").test(i[0])})},a.history.clear=function(){R&&(R.length=0)},a.history.disable=function(){null!==R&&(R.length=0,R=null)},a.history.enable=function(){null===R&&(R=[])},a.error=function(){for(var e=arguments.length,i=new Array(e),n=0;n1?t-1:0),a=1;a=0)throw new Error("class has illegal whitespace characters")}function kt(){return document===window.document}function Bt(s){return N(s)&&1===s.nodeType}function Vt(){try{return window.parent!==window.self}catch{return!0}}function er(s){return function(t,r){if(!Tt(t))return document[s](null);Tt(r)&&(r=document.querySelector(r));var a=Bt(r)?r:document;return a[s]&&a[s](t)}}function Je(s,t,r,a){void 0===s&&(s="div"),void 0===t&&(t={}),void 0===r&&(r={});var e=document.createElement(s);return Object.getOwnPropertyNames(t).forEach(function(i){var n=t[i];-1!==i.indexOf("aria-")||"role"===i||"type"===i?(E.warn("Setting attributes in the second argument of createEl()\nhas been deprecated. Use the third argument instead.\ncreateEl(type, properties, attributes). Attempting to set "+i+" to "+n+"."),e.setAttribute(i,n)):"textContent"===i?tr(e,n):(e[i]!==n||"tabIndex"===i)&&(e[i]=n)}),Object.getOwnPropertyNames(r).forEach(function(i){e.setAttribute(i,r[i])}),a&&ie(e,a),e}function tr(s,t){return typeof s.textContent>"u"?s.innerText=t:s.textContent=t,s}function Fr(s,t){t.firstChild?t.insertBefore(s,t.firstChild):t.appendChild(s)}function lr(s,t){return ot(t),s.classList?s.classList.contains(t):function rt(s){return new RegExp("(^|\\s)"+s+"($|\\s)")}(t).test(s.className)}function zt(s,t){return s.classList?s.classList.add(t):lr(s,t)||(s.className=(s.className+" "+t).trim()),s}function Ar(s,t){return s?(s.classList?s.classList.remove(t):(ot(t),s.className=s.className.split(/\s+/).filter(function(r){return r!==t}).join(" ")),s):(E.warn("removeClass was called with an element that doesn't exist"),null)}function fi(s,t,r){var a=lr(s,t);if("function"==typeof r&&(r=r(s,t)),"boolean"!=typeof r&&(r=!a),r!==a)return r?zt(s,t):Ar(s,t),s}function Ir(s,t){Object.getOwnPropertyNames(t).forEach(function(r){var a=t[r];null===a||typeof a>"u"||!1===a?s.removeAttribute(r):s.setAttribute(r,!0===a?"":a)})}function X(s){var t={};if(s&&s.attributes&&s.attributes.length>0)for(var a=s.attributes,e=a.length-1;e>=0;e--){var i=a[e].name,n=a[e].value;("boolean"==typeof s[i]||-1!==",autoplay,controls,playsinline,loop,muted,default,defaultMuted,".indexOf(","+i+","))&&(n=null!==n),t[i]=n}return t}function ne(s,t){return s.getAttribute(t)}function de(s,t,r){s.setAttribute(t,r)}function be(s,t){s.removeAttribute(t)}function Pe(){document.body.focus(),document.onselectstart=function(){return!1}}function Ue(){document.onselectstart=function(){return!0}}function et(s){if(s&&s.getBoundingClientRect&&s.parentNode){var t=s.getBoundingClientRect(),r={};return["bottom","height","left","right","top","width"].forEach(function(a){void 0!==t[a]&&(r[a]=t[a])}),r.height||(r.height=parseFloat(le(s,"height"))),r.width||(r.width=parseFloat(le(s,"width"))),r}}function ze(s){if(!s||s&&!s.offsetParent)return{left:0,top:0,width:0,height:0};for(var t=s.offsetWidth,r=s.offsetHeight,a=0,e=0;s.offsetParent&&s!==document[c.fullscreenElement];)a+=s.offsetLeft,e+=s.offsetTop,s=s.offsetParent;return{left:a,top:e,width:t,height:r}}function tt(s,t){var r={x:0,y:0};if(We)for(var a=s;a&&"html"!==a.nodeName.toLowerCase();){var e=le(a,"transform");if(/^matrix/.test(e)){var i=e.slice(7,-1).split(/,\s/).map(Number);r.x+=i[4],r.y+=i[5]}else if(/^matrix3d/.test(e)){var n=e.slice(9,-1).split(/,\s/).map(Number);r.x+=n[12],r.y+=n[13]}a=a.parentNode}var o={},l=ze(t.target),d=ze(s),h=d.width,y=d.height,v=t.offsetY-(d.top-l.top),S=t.offsetX-(d.left-l.left);return t.changedTouches&&(S=t.changedTouches[0].pageX-d.left,v=t.changedTouches[0].pageY+d.top,We&&(S-=r.x,v-=r.y)),o.y=1-Math.max(0,Math.min(1,v/y)),o.x=Math.max(0,Math.min(1,S/h)),o}function ct(s){return N(s)&&3===s.nodeType}function ut(s){for(;s.firstChild;)s.removeChild(s.firstChild);return s}function x(s){return"function"==typeof s&&(s=s()),(Array.isArray(s)?s:[s]).map(function(t){return"function"==typeof t&&(t=t()),Bt(t)||ct(t)?t:"string"==typeof t&&/\S/.test(t)?document.createTextNode(t):void 0}).filter(function(t){return t})}function ie(s,t){return x(t).forEach(function(r){return s.appendChild(r)}),s}function se(s,t){return ie(ut(s),t)}function pe(s){return void 0===s.button&&void 0===s.buttons||0===s.button&&void 0===s.buttons||"mouseup"===s.type&&0===s.button&&0===s.buttons||!(0!==s.button||1!==s.buttons)}var at,we=er("querySelector"),Ie=er("querySelectorAll"),Me=Object.freeze({__proto__:null,isReal:kt,isEl:Bt,isInFrame:Vt,createEl:Je,textContent:tr,prependTo:Fr,hasClass:lr,addClass:zt,removeClass:Ar,toggleClass:fi,setAttributes:Ir,getAttributes:X,getAttribute:ne,setAttribute:de,removeAttribute:be,blockTextSelection:Pe,unblockTextSelection:Ue,getBoundingClientRect:et,findPosition:ze,getPointerPosition:tt,isTextNode:ct,emptyEl:ut,normalizeContent:x,appendContent:ie,insertContent:se,isSingleLeftClick:pe,$:we,$$:Ie}),$e=!1,ft=function(){if(!1!==at.options.autoSetup){var t=Array.prototype.slice.call(document.getElementsByTagName("video")),r=Array.prototype.slice.call(document.getElementsByTagName("audio")),a=Array.prototype.slice.call(document.getElementsByTagName("video-js")),e=t.concat(r,a);if(e&&e.length>0)for(var i=0,n=e.length;i-1&&(e={passive:!0}),s.addEventListener(t,a.dispatcher,e)}else s.attachEvent&&s.attachEvent("on"+t,a.dispatcher)}function bt(s,t,r){if(pt.has(s)){var a=pt.get(s);if(a.handlers){if(Array.isArray(t))return vr(bt,s,t,r);var e=function(d,h){a.handlers[h]=[],cr(d,h)};if(void 0===t){for(var i in a.handlers)Object.prototype.hasOwnProperty.call(a.handlers||{},i)&&e(s,i);return}var n=a.handlers[t];if(n){if(!r)return void e(s,t);if(r.guid)for(var o=0;o=r&&(t.apply(void 0,arguments),a=n)}},ir=function(){};ir.prototype.allowedEvents_={},ir.prototype.on=function(s,t){var r=this.addEventListener;this.addEventListener=function(){},vt(this,s,t),this.addEventListener=r},ir.prototype.addEventListener=ir.prototype.on,ir.prototype.off=function(s,t){bt(this,s,t)},ir.prototype.removeEventListener=ir.prototype.off,ir.prototype.one=function(s,t){var r=this.addEventListener;this.addEventListener=function(){},hi(this,s,t),this.addEventListener=r},ir.prototype.any=function(s,t){var r=this.addEventListener;this.addEventListener=function(){},Ja(this,s,t),this.addEventListener=r},ir.prototype.trigger=function(s){var t=s.type||s;"string"==typeof s&&(s={type:t}),s=fr(s),this.allowedEvents_[t]&&this["on"+t]&&this["on"+t](s),Dr(this,s)},ir.prototype.dispatchEvent=ir.prototype.trigger,ir.prototype.queueTrigger=function(s){var t=this;ca||(ca=new Map);var r=s.type||s,a=ca.get(this);a||(a=new Map,ca.set(this,a));var e=a.get(r);a.delete(r),window.clearTimeout(e);var i=window.setTimeout(function(){0===a.size&&(a=null,ca.delete(t)),t.trigger(s)},0);a.set(r,i)};var en=function(t){return"function"==typeof t.name?t.name():"string"==typeof t.name?t.name:t.name_?t.name_:t.constructor&&t.constructor.name?t.constructor.name:typeof t},ii=function(t){return t instanceof ir||!!t.eventBusEl_&&["on","one","off","trigger"].every(function(r){return"function"==typeof t[r]})},_s=function(t){return"string"==typeof t&&/\S/.test(t)||Array.isArray(t)&&!!t.length},tn=function(t,r,a){if(!t||!t.nodeName&&!ii(t))throw new Error("Invalid target for "+en(r)+"#"+a+"; must be a DOM node or evented object.")},ku=function(t,r,a){if(!_s(t))throw new Error("Invalid event type for "+en(r)+"#"+a+"; must be a non-empty string or array.")},Au=function(t,r,a){if("function"!=typeof t)throw new Error("Invalid listener for "+en(r)+"#"+a+"; must be a function.")},Ts=function(t,r,a){var i,n,o,e=r.length<3||r[0]===t||r[0]===t.eventBusEl_;return e?(i=t.eventBusEl_,r.length>=3&&r.shift(),n=r[0],o=r[1]):(i=r[0],n=r[1],o=r[2]),tn(i,t,a),ku(n,t,a),Au(o,t,a),{isTargetingSelf:e,target:i,type:n,listener:o=It(t,o)}},vi=function(t,r,a,e){tn(t,t,r),t.nodeName?Za[r](t,a,e):t[r](a,e)},Jf={on:function(){for(var t=this,r=arguments.length,a=new Array(r),e=0;e=0;a--)this.children_[a].dispose&&this.children_[a].dispose();this.children_=null,this.childIndex_=null,this.childNameIndex_=null,this.parentComponent_=null,this.el_&&(this.el_.parentNode&&this.el_.parentNode.removeChild(this.el_),this.el_=null),this.player_=null}},t.isDisposed=function(){return Boolean(this.isDisposed_)},t.player=function(){return this.player_},t.options=function(a){return a?(this.options_=Rt(this.options_,a),this.options_):this.options_},t.el=function(){return this.el_},t.createEl=function(a,e,i){return Je(a,e,i)},t.localize=function(a,e,i){void 0===i&&(i=a);var n=this.player_.language&&this.player_.language(),o=this.player_.languages&&this.player_.languages(),l=o&&o[n],d=n&&n.split("-")[0],h=o&&o[d],y=i;return l&&l[a]?y=l[a]:h&&h[a]&&(y=h[a]),e&&(y=y.replace(/\{(\d+)\}/g,function(v,S){var A=e[S-1],I=A;return typeof A>"u"&&(I=v),I})),y},t.handleLanguagechange=function(){},t.contentEl=function(){return this.contentEl_||this.el_},t.id=function(){return this.id_},t.name=function(){return this.name_},t.children=function(){return this.children_},t.getChildById=function(a){return this.childIndex_[a]},t.getChild=function(a){if(a)return this.childNameIndex_[a]},t.getDescendant=function(){for(var a=arguments.length,e=new Array(a),i=0;i=0;i--)if(this.children_[i]===a){e=!0,this.children_.splice(i,1);break}if(e){a.parentComponent_=null,this.childIndex_[a.id()]=null,this.childNameIndex_[Wt(a.name())]=null,this.childNameIndex_[rn(a.name())]=null;var n=a.el();n&&n.parentNode===this.contentEl()&&this.contentEl().removeChild(a.el())}}},t.initChildren=function(){var a=this,e=this.options_.children;if(e){var o,i=this.options_,l=s.getComponent("Tech");(o=Array.isArray(e)?e:Object.keys(e)).concat(Object.keys(this.options_).filter(function(d){return!o.some(function(h){return"string"==typeof h?d===h:d===h.name})})).map(function(d){var h,y;return"string"==typeof d?y=e[h=d]||a.options_[h]||{}:(h=d.name,y=d),{name:h,opts:y}}).filter(function(d){var h=s.getComponent(d.opts.componentClass||Wt(d.name));return h&&!l.isTech(h)}).forEach(function(h){var y=h.name,v=h.opts;if(void 0!==i[y]&&(v=i[y]),!1!==v){!0===v&&(v={}),v.playerOptions=a.options_.playerOptions;var S=a.addChild(y,v);S&&(a[y]=S)}})}},t.buildCSSClass=function(){return""},t.ready=function(a,e){if(void 0===e&&(e=!1),a){if(!this.isReady_)return this.readyQueue_=this.readyQueue_||[],void this.readyQueue_.push(a);e?a.call(this):this.setTimeout(a,1)}},t.triggerReady=function(){this.isReady_=!0,this.setTimeout(function(){var a=this.readyQueue_;this.readyQueue_=[],a&&a.length>0&&a.forEach(function(e){e.call(this)},this),this.trigger("ready")},1)},t.$=function(a,e){return we(a,e||this.contentEl())},t.$$=function(a,e){return Ie(a,e||this.contentEl())},t.hasClass=function(a){return lr(this.el_,a)},t.addClass=function(a){zt(this.el_,a)},t.removeClass=function(a){Ar(this.el_,a)},t.toggleClass=function(a,e){fi(this.el_,a,e)},t.show=function(){this.removeClass("vjs-hidden")},t.hide=function(){this.addClass("vjs-hidden")},t.lockShowing=function(){this.addClass("vjs-lock-showing")},t.unlockShowing=function(){this.removeClass("vjs-lock-showing")},t.getAttribute=function(a){return ne(this.el_,a)},t.setAttribute=function(a,e){de(this.el_,a,e)},t.removeAttribute=function(a){be(this.el_,a)},t.width=function(a,e){return this.dimension("width",a,e)},t.height=function(a,e){return this.dimension("height",a,e)},t.dimensions=function(a,e){this.width(a,!0),this.height(e)},t.dimension=function(a,e,i){if(void 0!==e)return(null===e||e!=e)&&(e=0),-1!==(""+e).indexOf("%")||-1!==(""+e).indexOf("px")?this.el_.style[a]=e:this.el_.style[a]="auto"===e?"":e+"px",void(i||this.trigger("componentresize"));if(!this.el_)return 0;var n=this.el_.style[a],o=n.indexOf("px");return parseInt(-1!==o?n.slice(0,o):this.el_["offset"+Wt(a)],10)},t.currentDimension=function(a){var e=0;if("width"!==a&&"height"!==a)throw new Error("currentDimension only accepts width or height value");if(e=le(this.el_,a),0===(e=parseFloat(e))||isNaN(e)){var i="offset"+Wt(a);e=this.el_[i]}return e},t.currentDimensions=function(){return{width:this.currentDimension("width"),height:this.currentDimension("height")}},t.currentWidth=function(){return this.currentDimension("width")},t.currentHeight=function(){return this.currentDimension("height")},t.focus=function(){this.el_.focus()},t.blur=function(){this.el_.blur()},t.handleKeyDown=function(a){this.player_&&(Ye.isEventKey(a,"Tab")||a.stopPropagation(),this.player_.handleKeyDown(a))},t.handleKeyPress=function(a){this.handleKeyDown(a)},t.emitTapEvents=function(){var o,a=0,e=null;this.on("touchstart",function(d){1===d.touches.length&&(e={pageX:d.touches[0].pageX,pageY:d.touches[0].pageY},a=window.performance.now(),o=!0)}),this.on("touchmove",function(d){if(d.touches.length>1)o=!1;else if(e){var h=d.touches[0].pageX-e.pageX,y=d.touches[0].pageY-e.pageY;Math.sqrt(h*h+y*y)>10&&(o=!1)}});var l=function(){o=!1};this.on("touchleave",l),this.on("touchcancel",l),this.on("touchend",function(d){(e=null,!0===o)&&(window.performance.now()-a<200&&(d.preventDefault(),this.trigger("tap")))})},t.enableTouchActivity=function(){if(this.player()&&this.player().reportUserActivity){var e,a=It(this.player(),this.player().reportUserActivity);this.on("touchstart",function(){a(),this.clearInterval(e),e=this.setInterval(a,250)});var i=function(o){a(),this.clearInterval(e)};this.on("touchmove",a),this.on("touchend",i),this.on("touchcancel",i)}},t.setTimeout=function(a,e){var n,i=this;return a=It(this,a),this.clearTimersOnDispose_(),n=window.setTimeout(function(){i.setTimeoutIds_.has(n)&&i.setTimeoutIds_.delete(n),a()},e),this.setTimeoutIds_.add(n),n},t.clearTimeout=function(a){return this.setTimeoutIds_.has(a)&&(this.setTimeoutIds_.delete(a),window.clearTimeout(a)),a},t.setInterval=function(a,e){a=It(this,a),this.clearTimersOnDispose_();var i=window.setInterval(a,e);return this.setIntervalIds_.add(i),i},t.clearInterval=function(a){return this.setIntervalIds_.has(a)&&(this.setIntervalIds_.delete(a),window.clearInterval(a)),a},t.requestAnimationFrame=function(a){var i,e=this;return this.supportsRaf_?(this.clearTimersOnDispose_(),a=It(this,a),i=window.requestAnimationFrame(function(){e.rafIds_.has(i)&&e.rafIds_.delete(i),a()}),this.rafIds_.add(i),i):this.setTimeout(a,1e3/60)},t.requestNamedAnimationFrame=function(a,e){var i=this;if(!this.namedRafs_.has(a)){this.clearTimersOnDispose_(),e=It(this,e);var n=this.requestAnimationFrame(function(){e(),i.namedRafs_.has(a)&&i.namedRafs_.delete(a)});return this.namedRafs_.set(a,n),a}},t.cancelNamedAnimationFrame=function(a){!this.namedRafs_.has(a)||(this.cancelAnimationFrame(this.namedRafs_.get(a)),this.namedRafs_.delete(a))},t.cancelAnimationFrame=function(a){return this.supportsRaf_?(this.rafIds_.has(a)&&(this.rafIds_.delete(a),window.cancelAnimationFrame(a)),a):this.clearTimeout(a)},t.clearTimersOnDispose_=function(){var a=this;this.clearingTimersOnDispose_||(this.clearingTimersOnDispose_=!0,this.one("dispose",function(){[["namedRafs_","cancelNamedAnimationFrame"],["rafIds_","cancelAnimationFrame"],["setTimeoutIds_","clearTimeout"],["setIntervalIds_","clearInterval"]].forEach(function(e){var i=e[0],n=e[1];a[i].forEach(function(o,l){return a[n](l)})}),a.clearingTimersOnDispose_=!1}))},s.registerComponent=function(a,e){if("string"!=typeof a||!a)throw new Error('Illegal component name, "'+a+'"; must be a non-empty string.');var l,i=s.getComponent("Tech"),n=i&&i.isTech(e),o=s===e||s.prototype.isPrototypeOf(e.prototype);if(n||!o)throw l=n?"techs must be registered using Tech.registerTech()":"must be a Component subclass",new Error('Illegal component, "'+a+'"; '+l+".");a=Wt(a),s.components_||(s.components_={});var d=s.getComponent("Player");if("Player"===a&&d&&d.players){var h=d.players,y=Object.keys(h);if(h&&y.length>0&&y.map(function(v){return h[v]}).every(Boolean))throw new Error("Can not register Player component after player has been created.")}return s.components_[a]=e,s.components_[rn(a)]=e,e},s.getComponent=function(a){if(a&&s.components_)return s.components_[a]},s}();Ce.prototype.supportsRaf_="function"==typeof window.requestAnimationFrame&&"function"==typeof window.cancelAnimationFrame,Ce.registerComponent("Component",Ce);var Ze=function ah(s){if(void 0===s)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return s};var Oe=function nh(s,t){s.prototype=Object.create(t.prototype),s.prototype.constructor=s,s.__proto__=t};function Du(s,t,r,a){return function sh(s,t,r){if("number"!=typeof t||t<0||t>r)throw new Error("Failed to execute '"+s+"' on 'TimeRanges': The index provided ("+t+") is non-numeric or out of bounds (0-"+r+").")}(s,a,r.length-1),r[a][t]}function xs(s){var t;return t=void 0===s||0===s.length?{length:0,start:function(){throw new Error("This TimeRanges object is empty")},end:function(){throw new Error("This TimeRanges object is empty")}}:{length:s.length,start:Du.bind(null,"start",0,s),end:Du.bind(null,"end",1,s)},window.Symbol&&window.Symbol.iterator&&(t[window.Symbol.iterator]=function(){return(s||[]).values()}),t}function yi(s,t){return Array.isArray(s)?xs(s):void 0===s||void 0===t?xs():xs([[s,t]])}function Ou(s,t){var a,e,r=0;if(!t)return 0;(!s||!s.length)&&(s=yi(0,0));for(var i=0;it&&(e=t),r+=e-a;return r/t}function yr(s){if(s instanceof yr)return s;"number"==typeof s?this.code=s:"string"==typeof s?this.message=s:N(s)&&("number"==typeof s.code&&(this.code=s.code),te(this,s)),this.message||(this.message=yr.defaultMessages[this.code]||"")}yr.prototype.code=0,yr.prototype.message="",yr.prototype.status=null,yr.errorTypes=["MEDIA_ERR_CUSTOM","MEDIA_ERR_ABORTED","MEDIA_ERR_NETWORK","MEDIA_ERR_DECODE","MEDIA_ERR_SRC_NOT_SUPPORTED","MEDIA_ERR_ENCRYPTED"],yr.defaultMessages={1:"You aborted the media playback",2:"A network error caused the media download to fail part-way.",3:"The media playback was aborted due to a corruption problem or because the media used features your browser did not support.",4:"The media could not be loaded, either because the server or network failed or because the format is not supported.",5:"The media is encrypted and we do not have the keys to decrypt it."};for(var Mi=0;Mi=0;i--)if(a[i].enabled){Cs(a,a[i]);break}return(e=s.call(this,a)||this).changing_=!1,e}Oe(t,s);var r=t.prototype;return r.addTrack=function(e){var i=this;e.enabled&&Cs(this,e),s.prototype.addTrack.call(this,e),e.addEventListener&&(e.enabledChange_=function(){i.changing_||(i.changing_=!0,Cs(i,e),i.changing_=!1,i.trigger("change"))},e.addEventListener("enabledchange",e.enabledChange_))},r.removeTrack=function(e){s.prototype.removeTrack.call(this,e),e.removeEventListener&&e.enabledChange_&&(e.removeEventListener("enabledchange",e.enabledChange_),e.enabledChange_=null)},t}(Ni),Ps=function(t,r){for(var a=0;a=0;i--)if(a[i].selected){Ps(a,a[i]);break}return(e=s.call(this,a)||this).changing_=!1,Object.defineProperty(Ze(e),"selectedIndex",{get:function(){for(var o=0;o=400&&e.statusCode<=599){var n=i;if(r)if(Nr.TextDecoder){var o=function xh(s){return void 0===s&&(s=""),s.toLowerCase().split(";").reduce(function(t,r){var a=r.split("="),e=a[0],i=a[1];return"charset"===e.trim()?i.trim():t},"utf-8")}(e.headers&&e.headers["content-type"]);try{n=new TextDecoder(o).decode(i)}catch{}}else n=String.fromCharCode.apply(null,new Uint8Array(i));t({cause:n})}else t(null,i)}};Kr.httpHandler=Eh; /** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */Zone.__load_patch("util",function(I,x,$){var V=ne(I);$.patchOnProperties=A,$.patchMethod=z,$.bindArguments=F,$.patchMacroTask=J;var y=x.__symbol__("BLACK_LISTED_EVENTS"),S=x.__symbol__("UNPATCHED_EVENTS");I[S]&&(I[y]=I[S]),I[y]&&(x[y]=x[S]=I[y]),$.patchEventPrototype=ce,$.patchEventTarget=ue,$.isIEOrEdge=xt,$.ObjectDefineProperty=s,$.ObjectGetOwnPropertyDescriptor=a,$.ObjectCreate=l,$.ArraySlice=u,$.patchClass=Y,$.wrapWithCurrentZone=P,$.filterProperties=me,$.attachOriginToPatched=nt,$._redefineProperty=Object.defineProperty,$.patchCallbacks=pe,$.getGlobalObjects=function(){return{globalSources:le,zoneSymbolEventNames:wt,eventNames:V,isBrowser:H,isMix:k,isNode:N,TRUE_STR:T,FALSE_STR:O,ZONE_SYMBOL_PREFIX:_,ADD_EVENT_LISTENER_STR:f,REMOVE_EVENT_LISTENER_STR:v}}}); + * @license + * slighly modified parse-headers 2.0.2 + * Copyright (c) 2014 David Björklund + * Available under the MIT license + * + */ +var Ds=Kr,Ch=Kr;function Bu(s,t,r){var a=s;return _h(t)?(r=t,"string"==typeof s&&(a={uri:s})):a=Z({},t,{uri:s}),a.callback=r,a}function Kr(s,t,r){return Uu(t=Bu(s,t,r))}function Uu(s){if(typeof s.callback>"u")throw new Error("callback argument missing");var t=!1,r=function(ve,Te,Se){t||(t=!0,s.callback(ve,Te,Se))};function e(){var Y=void 0;if(Y=o.response?o.response:o.responseText||function Ah(s){try{if("document"===s.responseType)return s.responseXML;var t=s.responseXML&&"parsererror"===s.responseXML.documentElement.nodeName;if(""===s.responseType&&!t)return s.responseXML}catch{}return null}(o),I)try{Y=JSON.parse(Y)}catch{}return Y}function i(Y){return clearTimeout(k),Y instanceof Error||(Y=new Error(""+(Y||"Unknown XMLHttpRequest Error"))),Y.statusCode=0,r(Y,Q)}function n(){if(!d){var Y;clearTimeout(k),Y=s.useXDR&&void 0===o.status?200:1223===o.status?204:o.status;var ve=Q,Te=null;return 0!==Y?(ve={body:e(),statusCode:Y,method:y,headers:{},url:h,rawRequest:o},o.getAllResponseHeaders&&(ve.headers=function(t){var r={};return t&&t.trim().split("\n").forEach(function(a){var e=a.indexOf(":"),i=a.slice(0,e).trim().toLowerCase(),n=a.slice(e+1).trim();typeof r[i]>"u"?r[i]=n:Array.isArray(r[i])?r[i].push(n):r[i]=[r[i],n]}),r}(o.getAllResponseHeaders()))):Te=new Error("Internal XMLHttpRequest Error"),r(Te,ve,ve.body)}}var o=s.xhr||null;o||(o=s.cors||s.useXDR?new Kr.XDomainRequest:new Kr.XMLHttpRequest);var l,d,k,h=o.url=s.uri||s.url,y=o.method=s.method||"GET",v=s.body||s.data,S=o.headers=s.headers||{},A=!!s.sync,I=!1,Q={body:void 0,headers:{},statusCode:0,method:y,url:h,rawRequest:o};if("json"in s&&!1!==s.json&&(I=!0,S.accept||S.Accept||(S.Accept="application/json"),"GET"!==y&&"HEAD"!==y&&(S["content-type"]||S["Content-Type"]||(S["Content-Type"]="application/json"),v=JSON.stringify(!0===s.json?v:s.json))),o.onreadystatechange=function a(){4===o.readyState&&setTimeout(n,0)},o.onload=n,o.onerror=i,o.onprogress=function(){},o.onabort=function(){d=!0},o.ontimeout=i,o.open(y,h,!A,s.username,s.password),A||(o.withCredentials=!!s.withCredentials),!A&&s.timeout>0&&(k=setTimeout(function(){if(!d){d=!0,o.abort("timeout");var Y=new Error("XMLHttpRequest timeout");Y.code="ETIMEDOUT",i(Y)}},s.timeout)),o.setRequestHeader)for(l in S)S.hasOwnProperty(l)&&o.setRequestHeader(l,S[l]);else if(s.headers&&!function kh(s){for(var t in s)if(s.hasOwnProperty(t))return!1;return!0}(s.headers))throw new Error("Headers cannot be set on an XDomainRequest object");return"responseType"in s&&(o.responseType=s.responseType),"beforeSend"in s&&"function"==typeof s.beforeSend&&s.beforeSend(o),o.send(v||null),o}Kr.XMLHttpRequest=Nr.XMLHttpRequest||function Ih(){},Kr.XDomainRequest="withCredentials"in new Kr.XMLHttpRequest?Kr.XMLHttpRequest:Nr.XDomainRequest,function Ph(s,t){for(var r=0;r0&&(window.console&&window.console.groupCollapsed&&window.console.groupCollapsed("Text Track parsing errors for "+r.src),e.forEach(function(i){return E.error(i)}),window.console&&window.console.groupEnd&&window.console.groupEnd()),a.flush()},Vu=function(t,r){var a={uri:t},e=an(t);e&&(a.cors=e);var i="use-credentials"===r.tech_.crossOrigin();i&&(a.withCredentials=i),Ds(a,It(this,function(n,o,l){if(n)return E.error(n,o);r.loaded_=!0,"function"!=typeof window.WebVTT?r.tech_&&r.tech_.any(["vttjsloaded","vttjserror"],function(d){if("vttjserror"!==d.type)return ju(l,r);E.error("vttjs failed to load, stopping trying to process "+r.src)}):ju(l,r)}))},pa=function(s){function t(a){var e;if(void 0===a&&(a={}),!a.tech)throw new Error("A tech was not provided.");var i=Rt(a,{kind:vh[a.kind]||"subtitles",language:a.language||a.srclang||""}),n=Fu[i.mode]||"disabled",o=i.default;("metadata"===i.kind||"chapters"===i.kind)&&(n="hidden"),(e=s.call(this,i)||this).tech_=i.tech,e.cues_=[],e.activeCues_=[],e.preload_=!1!==e.tech_.preloadTextTracks;var l=new Mu(e.cues_),d=new Mu(e.activeCues_),h=!1,y=It(Ze(e),function(){!this.tech_.isReady_||this.tech_.isDisposed()||(this.activeCues=this.activeCues,h&&(this.trigger("cuechange"),h=!1))});return e.tech_.one("dispose",function(){e.tech_.off("timeupdate",y)}),"disabled"!==n&&e.tech_.on("timeupdate",y),Object.defineProperties(Ze(e),{default:{get:function(){return o},set:function(){}},mode:{get:function(){return n},set:function(A){!Fu[A]||n!==A&&(n=A,!this.preload_&&"disabled"!==n&&0===this.cues.length&&Vu(this.src,this),this.tech_.off("timeupdate",y),"disabled"!==n&&this.tech_.on("timeupdate",y),this.trigger("modechange"))}},cues:{get:function(){return this.loaded_?l:null},set:function(){}},activeCues:{get:function(){if(!this.loaded_)return null;if(0===this.cues.length)return d;for(var A=this.tech_.currentTime(),I=[],k=0,Q=this.cues.length;k=A||Y.startTime===Y.endTime&&Y.startTime<=A&&Y.startTime+.5>=A)&&I.push(Y)}if(h=!1,I.length!==this.activeCues_.length)h=!0;else for(var ve=0;ve59?t(r[1],r[2],0,r[4]):t(0,r[1],r[2],r[4]):null}function ga(){this.values=Os(null)}function va(s,t,r,a){var e=a?s.split(a):[s];for(var i in e)if("string"==typeof e[i]){var n=e[i].split(r);if(2===n.length)t(n[0],n[1])}}function Rh(s,t,r){var a=s;function e(){var o=Ls(s);if(null===o)throw new Or(Or.Errors.BadTimeStamp,"Malformed timestamp: "+a);return s=s.replace(/^[^\sa-zA-Z-]+/,""),o}function n(){s=s.replace(/^\s+/,"")}if(n(),t.startTime=e(),n(),"--\x3e"!==s.substr(0,3))throw new Or(Or.Errors.BadTimeStamp,"Malformed time stamp (time stamps must be separated by '--\x3e'): "+a);s=s.substr(3),n(),t.endTime=e(),n(),function i(o,l){var d=new ga;va(o,function(h,y){switch(h){case"region":for(var v=r.length-1;v>=0;v--)if(r[v].id===y){d.set(h,r[v].region);break}break;case"vertical":d.alt(h,y,["rl","lr"]);break;case"line":var S=y.split(","),A=S[0];d.integer(h,A),d.percent(h,A)&&d.set("snapToLines",!1),d.alt(h,A,["auto"]),2===S.length&&d.alt("lineAlign",S[1],["start","center","end"]);break;case"position":S=y.split(","),d.percent(h,S[0]),2===S.length&&d.alt("positionAlign",S[1],["start","center","end"]);break;case"size":d.percent(h,y);break;case"align":d.alt(h,y,["start","center","end","left","right"])}},/:/,/\s/),l.region=d.get("region",null),l.vertical=d.get("vertical","");try{l.line=d.get("line","auto")}catch{}l.lineAlign=d.get("lineAlign","start"),l.snapToLines=d.get("snapToLines",!0),l.size=d.get("size",100);try{l.align=d.get("align","center")}catch{l.align=d.get("align","middle")}try{l.position=d.get("position","auto")}catch{l.position=d.get("position",{start:0,left:0,center:50,middle:50,end:100,right:100},l.align)}l.positionAlign=d.get("positionAlign",{start:"start",left:"start",center:"center",middle:"center",end:"end",right:"end"},l.align)}(s,t)}Or.prototype=Os(Error.prototype),Or.prototype.constructor=Or,Or.Errors={BadSignature:{code:0,message:"Malformed WebVTT signature."},BadTimeStamp:{code:1,message:"Malformed time stamp."}},ga.prototype={set:function(t,r){!this.get(t)&&""!==r&&(this.values[t]=r)},get:function(t,r,a){return a?this.has(t)?this.values[t]:r[a]:this.has(t)?this.values[t]:r},has:function(t){return t in this.values},alt:function(t,r,a){for(var e=0;e=0&&r<=100))&&(this.set(t,r),!0)}};var Rs=Wu.createElement&&Wu.createElement("textarea"),Mh={c:"span",i:"i",b:"b",u:"u",ruby:"ruby",rt:"rt",v:"span",lang:"span"},Ku={white:"rgba(255,255,255,1)",lime:"rgba(0,255,0,1)",cyan:"rgba(0,255,255,1)",red:"rgba(255,0,0,1)",yellow:"rgba(255,255,0,1)",magenta:"rgba(255,0,255,1)",blue:"rgba(0,0,255,1)",black:"rgba(0,0,0,1)"},Fh={v:"title",lang:"lang"},Xu={rt:"ruby"};function Qu(s,t){function r(){if(!t)return null;var I=t.match(/^([^<]*)(<[^>]*>?)?/);return function A(k){return t=t.substr(k.length),k}(I[1]?I[1]:I[2])}function a(A){return Rs.innerHTML=A,A=Rs.textContent,Rs.textContent="",A}function i(A,I){var k=Mh[A];if(!k)return null;var Q=s.document.createElement(k),Y=Fh[A];return Y&&I&&(Q[Y]=I.trim()),Q}for(var l,n=s.document.createElement("div"),o=n,d=[];null!==(l=r());)if("<"!==l[0])o.appendChild(s.document.createTextNode(a(l)));else{if("/"===l[1]){d.length&&d[d.length-1]===l.substr(2).replace(">","")&&(d.pop(),o=o.parentNode);continue}var y,h=Ls(l.substr(1,l.length-2));if(h){y=s.document.createProcessingInstruction("timestamp",h),o.appendChild(y);continue}var v=l.match(/^<([^.\s/0-9>]+)(\.[^\s\\>]+)?([^>\\]+)?(\\?)>?$/);if(!v||!(y=i(v[1],v[3]))||(A=o,Xu[(I=y).localName]&&Xu[I.localName]!==A.localName))continue;if(v[2]){var S=v[2].split(".");S.forEach(function(A){var I=/^bg_/.test(A),k=I?A.slice(3):A;if(Ku.hasOwnProperty(k)){var Q=I?"background-color":"color",Y=Ku[k];y.style[Q]=Y}}),y.className=S.join(" ")}d.push(v[1]),o.appendChild(y),o=y}var A,I;return n}var Yu=[[1470,1470],[1472,1472],[1475,1475],[1478,1478],[1488,1514],[1520,1524],[1544,1544],[1547,1547],[1549,1549],[1563,1563],[1566,1610],[1645,1647],[1649,1749],[1765,1766],[1774,1775],[1786,1805],[1807,1808],[1810,1839],[1869,1957],[1969,1969],[1984,2026],[2036,2037],[2042,2042],[2048,2069],[2074,2074],[2084,2084],[2088,2088],[2096,2110],[2112,2136],[2142,2142],[2208,2208],[2210,2220],[8207,8207],[64285,64285],[64287,64296],[64298,64310],[64312,64316],[64318,64318],[64320,64321],[64323,64324],[64326,64449],[64467,64829],[64848,64911],[64914,64967],[65008,65020],[65136,65140],[65142,65276],[67584,67589],[67592,67592],[67594,67637],[67639,67640],[67644,67644],[67647,67669],[67671,67679],[67840,67867],[67872,67897],[67903,67903],[67968,68023],[68030,68031],[68096,68096],[68112,68115],[68117,68119],[68121,68147],[68160,68167],[68176,68184],[68192,68223],[68352,68405],[68416,68437],[68440,68466],[68472,68479],[68608,68680],[126464,126467],[126469,126495],[126497,126498],[126500,126500],[126503,126503],[126505,126514],[126516,126519],[126521,126521],[126523,126523],[126530,126530],[126535,126535],[126537,126537],[126539,126539],[126541,126543],[126545,126546],[126548,126548],[126551,126551],[126553,126553],[126555,126555],[126557,126557],[126559,126559],[126561,126562],[126564,126564],[126567,126570],[126572,126578],[126580,126583],[126585,126588],[126590,126590],[126592,126601],[126603,126619],[126625,126627],[126629,126633],[126635,126651],[1114109,1114109]];function Nh(s){for(var t=0;t=r[0]&&s<=r[1])return!0}return!1}function Bh(s){var t=[],r="";if(!s||!s.childNodes)return"ltr";function e(o,l){for(var d=l.childNodes.length-1;d>=0;d--)o.push(l.childNodes[d])}function i(o){if(!o||!o.length)return null;var l=o.pop(),d=l.textContent||l.innerText;if(d){var h=d.match(/^.*(\n|\r)/);return h?(o.length=0,h[0]):d}return"ruby"===l.tagName?i(o):l.childNodes?(e(o,l),i(o)):void 0}for(e(t,s);r=i(t);)for(var n=0;n=0&&s.line<=100))return s.line;if(!s.track||!s.track.textTrackList||!s.track.textTrackList.mediaElement)return-1;for(var t=s.track,r=t.textTrackList,a=0,e=0;ev&&(y=y<0?-1:1,y*=Math.ceil(v/h)*h),o<0&&(y+=""===n.vertical?r.height:r.width,l=l.reverse()),i.move(S,y)}else{var A=i.lineHeight/r.height*100;switch(n.lineAlign){case"center":o-=A/2;break;case"end":o-=A}switch(n.vertical){case"":t.applyStyles({top:t.formatStyle(o,"%")});break;case"rl":t.applyStyles({left:t.formatStyle(o,"%")});break;case"lr":t.applyStyles({right:t.formatStyle(o,"%")})}l=["+y","-x","+x","-y"],i=new Tr(t)}var I=function e(k,Q){for(var Y,ve=new Tr(k),Te=1,Se=0;Seke&&(Y=new Tr(k),Te=ke),k=new Tr(ve)}return Y||ve}(i,l);t.move(I.toCSSCompatValues(r))}function ji(){}nn.prototype.applyStyles=function(s,t){for(var r in t=t||this.div,s)s.hasOwnProperty(r)&&(t.style[r]=s[r])},nn.prototype.formatStyle=function(s,t){return 0===s?0:s+t},sn.prototype=Os(nn.prototype),sn.prototype.constructor=sn,Tr.prototype.move=function(s,t){switch(t=void 0!==t?t:this.lineHeight,s){case"+x":this.left+=t,this.right+=t;break;case"-x":this.left-=t,this.right-=t;break;case"+y":this.top+=t,this.bottom+=t;break;case"-y":this.top-=t,this.bottom-=t}},Tr.prototype.overlaps=function(s){return this.lefts.left&&this.tops.top},Tr.prototype.overlapsAny=function(s){for(var t=0;t=s.top&&this.bottom<=s.bottom&&this.left>=s.left&&this.right<=s.right},Tr.prototype.overlapsOppositeAxis=function(s,t){switch(t){case"+x":return this.lefts.right;case"+y":return this.tops.bottom}},Tr.prototype.intersectPercentage=function(s){return Math.max(0,Math.min(this.right,s.right)-Math.max(this.left,s.left))*Math.max(0,Math.min(this.bottom,s.bottom)-Math.max(this.top,s.top))/(this.height*this.width)},Tr.prototype.toCSSCompatValues=function(s){return{top:this.top-s.top,bottom:s.bottom-this.bottom,left:this.left-s.left,right:s.right-this.right,height:this.height,width:this.width}},Tr.getSimpleBoxPosition=function(s){var t=s.div?s.div.offsetHeight:s.tagName?s.offsetHeight:0,r=s.div?s.div.offsetWidth:s.tagName?s.offsetWidth:0,a=s.div?s.div.offsetTop:s.tagName?s.offsetTop:0;return{left:(s=s.div?s.div.getBoundingClientRect():s.tagName?s.getBoundingClientRect():s).left,right:s.right,top:s.top||a,height:s.height||t,bottom:s.bottom||a+(s.height||t),width:s.width||r}},ji.StringDecoder=function(){return{decode:function(t){if(!t)return"";if("string"!=typeof t)throw new Error("Error - expected string data.");return decodeURIComponent(encodeURIComponent(t))}}},ji.convertCueToDOMTree=function(s,t){return s&&t?Qu(s,t):null};ji.processCues=function(s,t,r){if(!s||!t||!r)return null;for(;r.firstChild;)r.removeChild(r.firstChild);var a=s.document.createElement("div");if(a.style.position="absolute",a.style.left="0",a.style.right="0",a.style.top="0",a.style.bottom="0",a.style.margin="1.5%",r.appendChild(a),function e(h){for(var y=0;y100)throw new Error("Position must be between 0 and 100.");S=Y,this.hasBeenReset=!0}},positionAlign:{enumerable:!0,get:function(){return A},set:function(Y){var ve=Ms(Y);ve?(A=ve,this.hasBeenReset=!0):console.warn("positionAlign: an invalid or illegal string was specified.")}},size:{enumerable:!0,get:function(){return I},set:function(Y){if(Y<0||Y>100)throw new Error("Size must be between 0 and 100.");I=Y,this.hasBeenReset=!0}},align:{enumerable:!0,get:function(){return k},set:function(Y){var ve=Ms(Y);if(!ve)throw new SyntaxError("align: an invalid or illegal alignment string was specified.");k=ve,this.hasBeenReset=!0}}}),this.displayState=void 0}Ju.prototype.getCueAsHTML=function(){return WebVTT.convertCueToDOMTree(window,this.text)};var Xh=Ju,Qh={"":!0,up:!0};function ya(s){return"number"==typeof s&&s>=0&&s<=100}var Zh=function Jh(){var s=100,t=3,r=0,a=100,e=0,i=100,n="";Object.defineProperties(this,{width:{enumerable:!0,get:function(){return s},set:function(l){if(!ya(l))throw new Error("Width must be between 0 and 100.");s=l}},lines:{enumerable:!0,get:function(){return t},set:function(l){if("number"!=typeof l)throw new TypeError("Lines must be set to a number.");t=l}},regionAnchorY:{enumerable:!0,get:function(){return a},set:function(l){if(!ya(l))throw new Error("RegionAnchorX must be between 0 and 100.");a=l}},regionAnchorX:{enumerable:!0,get:function(){return r},set:function(l){if(!ya(l))throw new Error("RegionAnchorY must be between 0 and 100.");r=l}},viewportAnchorY:{enumerable:!0,get:function(){return i},set:function(l){if(!ya(l))throw new Error("ViewportAnchorY must be between 0 and 100.");i=l}},viewportAnchorX:{enumerable:!0,get:function(){return e},set:function(l){if(!ya(l))throw new Error("ViewportAnchorX must be between 0 and 100.");e=l}},scroll:{enumerable:!0,get:function(){return n},set:function(l){var d=function Yh(s){return"string"==typeof s&&!!Qh[s.toLowerCase()]&&s.toLowerCase()}(l);!1===d?console.warn("Scroll: an invalid or illegal string was specified."):n=d}}})},_a=$(function(s){var t=s.exports={WebVTT:qh,VTTCue:Xh,VTTRegion:Zh};Nr.vttjs=t,Nr.WebVTT=t.WebVTT;var r=t.VTTCue,a=t.VTTRegion,e=Nr.VTTCue,i=Nr.VTTRegion;t.shim=function(){Nr.VTTCue=r,Nr.VTTRegion=a},t.restore=function(){Nr.VTTCue=e,Nr.VTTRegion=i},Nr.VTTCue||t.shim()});_a.WebVTT,_a.VTTCue,_a.VTTRegion;var Dt=function(s){function t(a,e){var i;return void 0===a&&(a={}),void 0===e&&(e=function(){}),a.reportTouchActivity=!1,(i=s.call(this,null,a,e)||this).onDurationChange_=function(n){return i.onDurationChange(n)},i.trackProgress_=function(n){return i.trackProgress(n)},i.trackCurrentTime_=function(n){return i.trackCurrentTime(n)},i.stopTrackingCurrentTime_=function(n){return i.stopTrackingCurrentTime(n)},i.disposeSourceHandler_=function(n){return i.disposeSourceHandler(n)},i.hasStarted_=!1,i.on("playing",function(){this.hasStarted_=!0}),i.on("loadstart",function(){this.hasStarted_=!1}),_r.names.forEach(function(n){var o=_r[n];a&&a[o.getterName]&&(i[o.privateName]=a[o.getterName])}),i.featuresProgressEvents||i.manualProgressOn(),i.featuresTimeupdateEvents||i.manualTimeUpdatesOn(),["Text","Audio","Video"].forEach(function(n){!1===a["native"+n+"Tracks"]&&(i["featuresNative"+n+"Tracks"]=!1)}),!1===a.nativeCaptions||!1===a.nativeTextTracks?i.featuresNativeTextTracks=!1:(!0===a.nativeCaptions||!0===a.nativeTextTracks)&&(i.featuresNativeTextTracks=!0),i.featuresNativeTextTracks||i.emulateTextTracks(),i.preloadTextTracks=!1!==a.preloadTextTracks,i.autoRemoteTextTracks_=new _r.text.ListClass,i.initTrackListeners(),a.nativeControlsForTouch||i.emitTapEvents(),i.constructor&&(i.name_=i.constructor.name||"Unknown Tech"),i}Oe(t,s);var r=t.prototype;return r.triggerSourceset=function(e){var i=this;this.isReady_||this.one("ready",function(){return i.setTimeout(function(){return i.triggerSourceset(e)},1)}),this.trigger({src:e,type:"sourceset"})},r.manualProgressOn=function(){this.on("durationchange",this.onDurationChange_),this.manualProgress=!0,this.one("ready",this.trackProgress_)},r.manualProgressOff=function(){this.manualProgress=!1,this.stopTrackingProgress(),this.off("durationchange",this.onDurationChange_)},r.trackProgress=function(e){this.stopTrackingProgress(),this.progressInterval=this.setInterval(It(this,function(){var i=this.bufferedPercent();this.bufferedPercent_!==i&&this.trigger("progress"),this.bufferedPercent_=i,1===i&&this.stopTrackingProgress()}),500)},r.onDurationChange=function(e){this.duration_=this.duration()},r.buffered=function(){return yi(0,0)},r.bufferedPercent=function(){return Ou(this.buffered(),this.duration_)},r.stopTrackingProgress=function(){this.clearInterval(this.progressInterval)},r.manualTimeUpdatesOn=function(){this.manualTimeUpdates=!0,this.on("play",this.trackCurrentTime_),this.on("pause",this.stopTrackingCurrentTime_)},r.manualTimeUpdatesOff=function(){this.manualTimeUpdates=!1,this.stopTrackingCurrentTime(),this.off("play",this.trackCurrentTime_),this.off("pause",this.stopTrackingCurrentTime_)},r.trackCurrentTime=function(){this.currentTimeInterval&&this.stopTrackingCurrentTime(),this.currentTimeInterval=this.setInterval(function(){this.trigger({type:"timeupdate",target:this,manuallyTriggered:!0})},250)},r.stopTrackingCurrentTime=function(){this.clearInterval(this.currentTimeInterval),this.trigger({type:"timeupdate",target:this,manuallyTriggered:!0})},r.dispose=function(){this.clearTracks(Br.names),this.manualProgress&&this.manualProgressOff(),this.manualTimeUpdates&&this.manualTimeUpdatesOff(),s.prototype.dispose.call(this)},r.clearTracks=function(e){var i=this;(e=[].concat(e)).forEach(function(n){for(var o=i[n+"Tracks"]()||[],l=o.length;l--;){var d=o[l];"text"===n&&i.removeRemoteTextTrack(d),o.removeTrack(d)}})},r.cleanupAutoTextTracks=function(){for(var e=this.autoRemoteTextTracks_||[],i=e.length;i--;){var n=e[i];this.removeRemoteTextTrack(n)}},r.reset=function(){},r.crossOrigin=function(){},r.setCrossOrigin=function(){},r.error=function(e){return void 0!==e&&(this.error_=new yr(e),this.trigger("error")),this.error_},r.played=function(){return this.hasStarted_?yi(0,0):yi()},r.play=function(){},r.setScrubbing=function(){},r.scrubbing=function(){},r.setCurrentTime=function(){this.manualTimeUpdates&&this.trigger({type:"timeupdate",target:this,manuallyTriggered:!0})},r.initTrackListeners=function(){var e=this;Br.names.forEach(function(i){var n=Br[i],o=function(){e.trigger(i+"trackchange")},l=e[n.getterName]();l.addEventListener("removetrack",o),l.addEventListener("addtrack",o),e.on("dispose",function(){l.removeEventListener("removetrack",o),l.removeEventListener("addtrack",o)})})},r.addWebVttScript_=function(){var e=this;if(!window.WebVTT)if(document.body.contains(this.el())){if(!this.options_["vtt.js"]&&ee(_a)&&Object.keys(_a).length>0)return void this.trigger("vttjsloaded");var i=document.createElement("script");i.src=this.options_["vtt.js"]||"https://vjs.zencdn.net/vttjs/0.14.1/vtt.min.js",i.onload=function(){e.trigger("vttjsloaded")},i.onerror=function(){e.trigger("vttjserror")},this.on("dispose",function(){i.onload=null,i.onerror=null}),window.WebVTT=!0,this.el().parentNode.appendChild(i)}else this.ready(this.addWebVttScript_)},r.emulateTextTracks=function(){var e=this,i=this.textTracks(),n=this.remoteTextTracks(),o=function(v){return i.addTrack(v.track)},l=function(v){return i.removeTrack(v.track)};n.on("addtrack",o),n.on("removetrack",l),this.addWebVttScript_();var d=function(){return e.trigger("texttrackchange")},h=function(){d();for(var v=0;v=0;e--){var i=s[e];i[t]&&i[t](a,r)}}(s,r,o,n),o}var sp={buffered:1,currentTime:1,duration:1,muted:1,played:1,paused:1,seekable:1,volume:1,ended:1},op={setCurrentTime:1,setMuted:1,setVolume:1},el={play:1,pause:1};function Ns(s){return function(t,r){return t===on?on:r[s]?r[s](t):t}}function Ti(s,t,r,a,e,i){void 0===s&&(s={}),void 0===t&&(t=[]),void 0===e&&(e=[]),void 0===i&&(i=!1);var n=t,o=n[0],l=n.slice(1);if("string"==typeof o)Ti(s,_i[o],r,a,e,i);else if(o){var d=function dp(s,t){var r=Fs[s.id()],a=null;if(null==r)return a=t(s),Fs[s.id()]=[[t,a]],a;for(var e=0;e0;this.player_.tech(!0)&&!((St||nt)&&i)&&this.player_.tech(!0).focus(),this.player_.paused()?Wr(this.player_.play()):this.player_.pause()}},t}(ln);Ce.registerComponent("PosterImage",mp);var Ur="#222",gp={monospace:"monospace",sansSerif:"sans-serif",serif:"serif",monospaceSansSerif:'"Andale Mono", "Lucida Console", monospace',monospaceSerif:'"Courier New", monospace',proportionalSansSerif:"sans-serif",proportionalSerif:"serif",casual:'"Comic Sans MS", Impact, fantasy',script:'"Monotype Corsiva", cursive',smallcaps:'"Andale Mono", "Lucida Console", monospace, sans-serif'};function Bs(s,t){var r;if(4===s.length)r=s[1]+s[1]+s[2]+s[2]+s[3]+s[3];else{if(7!==s.length)throw new Error("Invalid color code provided, "+s+"; must be formatted as e.g. #f0e or #f604e2.");r=s.slice(1)}return"rgba("+parseInt(r.slice(0,2),16)+","+parseInt(r.slice(2,4),16)+","+parseInt(r.slice(4,6),16)+","+t+")"}function Us(s,t,r){try{s.style[t]=r}catch{return}}var vp=function(s){function t(a,e,i){var n;n=s.call(this,a,e,i)||this;var o=function(d){return n.updateDisplay(d)};return a.on("loadstart",function(l){return n.toggleDisplay(l)}),a.on("texttrackchange",o),a.on("loadedmetadata",function(l){return n.preselectTrack(l)}),a.ready(It(Ze(n),function(){if(a.tech_&&a.tech_.featuresNativeTextTracks)this.hide();else{a.on("fullscreenchange",o),a.on("playerresize",o),window.addEventListener("orientationchange",o),a.on("dispose",function(){return window.removeEventListener("orientationchange",o)});for(var l=this.options_.playerOptions.tracks||[],d=0;d0;return Wr(i),void(this.player_.tech(!0)&&(!St&&!nt||!n)&&this.player_.tech(!0).focus())}var o=this.player_.getChild("controlBar"),l=o&&o.getChild("playToggle");if(l){var d=function(){return l.focus()};fa(i)?i.then(d,function(){}):this.setTimeout(d,1)}else this.player_.tech(!0).focus()},r.handleKeyDown=function(e){this.mouseused_=!1,s.prototype.handleKeyDown.call(this,e)},r.handleMouseDown=function(e){this.mouseused_=!0},t}(Vr);il.prototype.controlText_="Play Video",Ce.registerComponent("BigPlayButton",il);var _p=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).controlText(e&&e.controlText||i.localize("Close")),i}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-close-button "+s.prototype.buildCSSClass.call(this)},r.handleClick=function(e){this.trigger({type:"close",bubbles:!1})},r.handleKeyDown=function(e){Ye.isEventKey(e,"Esc")?(e.preventDefault(),e.stopPropagation(),this.trigger("click")):s.prototype.handleKeyDown.call(this,e)},t}(Vr);Ce.registerComponent("CloseButton",_p);var al=function(s){function t(a,e){var i;return void 0===e&&(e={}),i=s.call(this,a,e)||this,e.replay=void 0===e.replay||e.replay,i.on(a,"play",function(n){return i.handlePlay(n)}),i.on(a,"pause",function(n){return i.handlePause(n)}),e.replay&&i.on(a,"ended",function(n){return i.handleEnded(n)}),i}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-play-control "+s.prototype.buildCSSClass.call(this)},r.handleClick=function(e){this.player_.paused()?Wr(this.player_.play()):this.player_.pause()},r.handleSeeked=function(e){this.removeClass("vjs-ended"),this.player_.paused()?this.handlePause(e):this.handlePlay(e)},r.handlePlay=function(e){this.removeClass("vjs-ended"),this.removeClass("vjs-paused"),this.addClass("vjs-playing"),this.controlText("Pause")},r.handlePause=function(e){this.removeClass("vjs-playing"),this.addClass("vjs-paused"),this.controlText("Play")},r.handleEnded=function(e){var i=this;this.removeClass("vjs-playing"),this.addClass("vjs-ended"),this.controlText("Replay"),this.one(this.player_,"seeked",function(n){return i.handleSeeked(n)})},t}(Vr);al.prototype.controlText_="Play",Ce.registerComponent("PlayToggle",al);var nl=function(t,r){t=t<0?0:t;var a=Math.floor(t%60),e=Math.floor(t/60%60),i=Math.floor(t/3600),n=Math.floor(r/60%60),o=Math.floor(r/3600);return(isNaN(t)||t===1/0)&&(i=e=a="-"),(i=i>0||o>0?i+":":"")+(e=((i||n>=10)&&e<10?"0"+e:e)+":")+(a=a<10?"0"+a:a)},js=nl;function Vi(s,t){return void 0===t&&(t=s),js(s,t)}var $i=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).on(a,["timeupdate","ended"],function(n){return i.updateContent(n)}),i.updateTextNode_(),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){var e=this.buildCSSClass(),i=s.prototype.createEl.call(this,"div",{className:e+" vjs-time-control vjs-control"}),n=Je("span",{className:"vjs-control-text",textContent:this.localize(this.labelText_)+"\xa0"},{role:"presentation"});return i.appendChild(n),this.contentEl_=Je("span",{className:e+"-display"},{"aria-live":"off",role:"presentation"}),i.appendChild(this.contentEl_),i},r.dispose=function(){this.contentEl_=null,this.textNode_=null,s.prototype.dispose.call(this)},r.updateTextNode_=function(e){var i=this;void 0===e&&(e=0),e=Vi(e),this.formattedTime_!==e&&(this.formattedTime_=e,this.requestNamedAnimationFrame("TimeDisplay#updateTextNode_",function(){if(i.contentEl_){var n=i.textNode_;n&&i.contentEl_.firstChild!==n&&(n=null,E.warn("TimeDisplay#updateTextnode_: Prevented replacement of text node element since it was no longer a child of this node. Appending a new node instead.")),i.textNode_=document.createTextNode(i.formattedTime_),i.textNode_&&(n?i.contentEl_.replaceChild(i.textNode_,n):i.contentEl_.appendChild(i.textNode_))}}))},r.updateContent=function(e){},t}(Ce);$i.prototype.labelText_="Time",$i.prototype.controlText_="Time",Ce.registerComponent("TimeDisplay",$i);var Vs=function(s){function t(){return s.apply(this,arguments)||this}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-current-time"},r.updateContent=function(e){var i;i=this.player_.ended()?this.player_.duration():this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime(),this.updateTextNode_(i)},t}($i);Vs.prototype.labelText_="Current Time",Vs.prototype.controlText_="Current Time",Ce.registerComponent("CurrentTimeDisplay",Vs);var $s=function(s){function t(a,e){var i,n=function(l){return i.updateContent(l)};return(i=s.call(this,a,e)||this).on(a,"durationchange",n),i.on(a,"loadstart",n),i.on(a,"loadedmetadata",n),i}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-duration"},r.updateContent=function(e){var i=this.player_.duration();this.updateTextNode_(i)},t}($i);$s.prototype.labelText_="Duration",$s.prototype.controlText_="Duration",Ce.registerComponent("DurationDisplay",$s);var Sp=function(s){function t(){return s.apply(this,arguments)||this}return Oe(t,s),t.prototype.createEl=function(){var e=s.prototype.createEl.call(this,"div",{className:"vjs-time-control vjs-time-divider"},{"aria-hidden":!0}),i=s.prototype.createEl.call(this,"div"),n=s.prototype.createEl.call(this,"span",{textContent:"/"});return i.appendChild(n),e.appendChild(i),e},t}(Ce);Ce.registerComponent("TimeDivider",Sp);var Hs=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).on(a,"durationchange",function(n){return i.updateContent(n)}),i}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-remaining-time"},r.createEl=function(){var e=s.prototype.createEl.call(this);return!1!==this.options_.displayNegative&&e.insertBefore(Je("span",{},{"aria-hidden":!0},"-"),this.contentEl_),e},r.updateContent=function(e){var i;"number"==typeof this.player_.duration()&&(i=this.player_.ended()?0:this.player_.remainingTimeDisplay?this.player_.remainingTimeDisplay():this.player_.remainingTime(),this.updateTextNode_(i))},t}($i);Hs.prototype.labelText_="Remaining Time",Hs.prototype.controlText_="Remaining Time",Ce.registerComponent("RemainingTimeDisplay",Hs);var xp=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).updateShowing(),i.on(i.player(),"durationchange",function(n){return i.updateShowing(n)}),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){var e=s.prototype.createEl.call(this,"div",{className:"vjs-live-control vjs-control"});return this.contentEl_=Je("div",{className:"vjs-live-display"},{"aria-live":"off"}),this.contentEl_.appendChild(Je("span",{className:"vjs-control-text",textContent:this.localize("Stream Type")+"\xa0"})),this.contentEl_.appendChild(document.createTextNode(this.localize("LIVE"))),e.appendChild(this.contentEl_),e},r.dispose=function(){this.contentEl_=null,s.prototype.dispose.call(this)},r.updateShowing=function(e){this.player().duration()===1/0?this.show():this.hide()},t}(Ce);Ce.registerComponent("LiveDisplay",xp);var sl=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).updateLiveEdgeStatus(),i.player_.liveTracker&&(i.updateLiveEdgeStatusHandler_=function(n){return i.updateLiveEdgeStatus(n)},i.on(i.player_.liveTracker,"liveedgechange",i.updateLiveEdgeStatusHandler_)),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){var e=s.prototype.createEl.call(this,"button",{className:"vjs-seek-to-live-control vjs-control"});return this.textEl_=Je("span",{className:"vjs-seek-to-live-text",textContent:this.localize("LIVE")},{"aria-hidden":"true"}),e.appendChild(this.textEl_),e},r.updateLiveEdgeStatus=function(){!this.player_.liveTracker||this.player_.liveTracker.atLiveEdge()?(this.setAttribute("aria-disabled",!0),this.addClass("vjs-at-live-edge"),this.controlText("Seek to live, currently playing live")):(this.setAttribute("aria-disabled",!1),this.removeClass("vjs-at-live-edge"),this.controlText("Seek to live, currently behind live"))},r.handleClick=function(){this.player_.liveTracker.seekToLiveEdge()},r.dispose=function(){this.player_.liveTracker&&this.off(this.player_.liveTracker,"liveedgechange",this.updateLiveEdgeStatusHandler_),this.textEl_=null,s.prototype.dispose.call(this)},t}(Vr);sl.prototype.controlText_="Seek to live, currently playing live",Ce.registerComponent("SeekToLive",sl);var dn=function(t,r,a){return t=Number(t),Math.min(a,Math.max(r,isNaN(t)?r:t))},qs=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).handleMouseDown_=function(n){return i.handleMouseDown(n)},i.handleMouseUp_=function(n){return i.handleMouseUp(n)},i.handleKeyDown_=function(n){return i.handleKeyDown(n)},i.handleClick_=function(n){return i.handleClick(n)},i.handleMouseMove_=function(n){return i.handleMouseMove(n)},i.update_=function(n){return i.update(n)},i.bar=i.getChild(i.options_.barName),i.vertical(!!i.options_.vertical),i.enable(),i}Oe(t,s);var r=t.prototype;return r.enabled=function(){return this.enabled_},r.enable=function(){this.enabled()||(this.on("mousedown",this.handleMouseDown_),this.on("touchstart",this.handleMouseDown_),this.on("keydown",this.handleKeyDown_),this.on("click",this.handleClick_),this.on(this.player_,"controlsvisible",this.update),this.playerEvent&&this.on(this.player_,this.playerEvent,this.update),this.removeClass("disabled"),this.setAttribute("tabindex",0),this.enabled_=!0)},r.disable=function(){if(this.enabled()){var e=this.bar.el_.ownerDocument;this.off("mousedown",this.handleMouseDown_),this.off("touchstart",this.handleMouseDown_),this.off("keydown",this.handleKeyDown_),this.off("click",this.handleClick_),this.off(this.player_,"controlsvisible",this.update_),this.off(e,"mousemove",this.handleMouseMove_),this.off(e,"mouseup",this.handleMouseUp_),this.off(e,"touchmove",this.handleMouseMove_),this.off(e,"touchend",this.handleMouseUp_),this.removeAttribute("tabindex"),this.addClass("disabled"),this.playerEvent&&this.off(this.player_,this.playerEvent,this.update),this.enabled_=!1}},r.createEl=function(e,i,n){return void 0===i&&(i={}),void 0===n&&(n={}),i.className=i.className+" vjs-slider",i=te({tabIndex:0},i),n=te({role:"slider","aria-valuenow":0,"aria-valuemin":0,"aria-valuemax":100,tabIndex:0},n),s.prototype.createEl.call(this,e,i,n)},r.handleMouseDown=function(e){var i=this.bar.el_.ownerDocument;"mousedown"===e.type&&e.preventDefault(),"touchstart"===e.type&&!ht&&e.preventDefault(),Pe(),this.addClass("vjs-sliding"),this.trigger("slideractive"),this.on(i,"mousemove",this.handleMouseMove_),this.on(i,"mouseup",this.handleMouseUp_),this.on(i,"touchmove",this.handleMouseMove_),this.on(i,"touchend",this.handleMouseUp_),this.handleMouseMove(e,!0)},r.handleMouseMove=function(e){},r.handleMouseUp=function(){var e=this.bar.el_.ownerDocument;Ue(),this.removeClass("vjs-sliding"),this.trigger("sliderinactive"),this.off(e,"mousemove",this.handleMouseMove_),this.off(e,"mouseup",this.handleMouseUp_),this.off(e,"touchmove",this.handleMouseMove_),this.off(e,"touchend",this.handleMouseUp_),this.update()},r.update=function(){var e=this;if(this.el_&&this.bar){var i=this.getProgress();return i===this.progress_||(this.progress_=i,this.requestNamedAnimationFrame("Slider#update",function(){var n=e.vertical()?"height":"width";e.bar.el().style[n]=(100*i).toFixed(2)+"%"})),i}},r.getProgress=function(){return Number(dn(this.getPercent(),0,1).toFixed(4))},r.calculateDistance=function(e){var i=tt(this.el_,e);return this.vertical()?i.y:i.x},r.handleKeyDown=function(e){Ye.isEventKey(e,"Left")||Ye.isEventKey(e,"Down")?(e.preventDefault(),e.stopPropagation(),this.stepBack()):Ye.isEventKey(e,"Right")||Ye.isEventKey(e,"Up")?(e.preventDefault(),e.stopPropagation(),this.stepForward()):s.prototype.handleKeyDown.call(this,e)},r.handleClick=function(e){e.stopPropagation(),e.preventDefault()},r.vertical=function(e){if(void 0===e)return this.vertical_||!1;this.vertical_=!!e,this.vertical_?this.addClass("vjs-slider-vertical"):this.addClass("vjs-slider-horizontal")},t}(Ce);Ce.registerComponent("Slider",qs);var zs=function(t,r){return dn(t/r*100,0,100).toFixed(2)+"%"},Ep=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).partEls_=[],i.on(a,"progress",function(n){return i.update(n)}),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){var e=s.prototype.createEl.call(this,"div",{className:"vjs-load-progress"}),i=Je("span",{className:"vjs-control-text"}),n=Je("span",{textContent:this.localize("Loaded")}),o=document.createTextNode(": ");return this.percentageEl_=Je("span",{className:"vjs-control-text-loaded-percentage",textContent:"0%"}),e.appendChild(i),i.appendChild(n),i.appendChild(o),i.appendChild(this.percentageEl_),e},r.dispose=function(){this.partEls_=null,this.percentageEl_=null,s.prototype.dispose.call(this)},r.update=function(e){var i=this;this.requestNamedAnimationFrame("LoadProgressBar#update",function(){var n=i.player_.liveTracker,o=i.player_.buffered(),l=n&&n.isLive()?n.seekableEnd():i.player_.duration(),d=i.player_.bufferedEnd(),h=i.partEls_,y=zs(d,l);i.percent_!==y&&(i.el_.style.width=y,tr(i.percentageEl_,y),i.percent_=y);for(var v=0;vo.length;k--)i.el_.removeChild(h[k-1]);h.length=o.length})},t}(Ce);Ce.registerComponent("LoadProgressBar",Ep);var wp=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).update=ri(It(Ze(i),i.update),30),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){return s.prototype.createEl.call(this,"div",{className:"vjs-time-tooltip"},{"aria-hidden":"true"})},r.update=function(e,i,n){var o=ze(this.el_),l=et(this.player_.el()),d=e.width*i;if(l&&o){var h=e.left-l.left+d,y=e.width-d+(l.right-e.right),v=o.width/2;ho.width&&(v=o.width),v=Math.round(v),this.el_.style.right="-"+v+"px",this.write(n)}},r.write=function(e){tr(this.el_,e)},r.updateTime=function(e,i,n,o){var l=this;this.requestNamedAnimationFrame("TimeTooltip#updateTime",function(){var d,h=l.player_.duration();if(l.player_.liveTracker&&l.player_.liveTracker.isLive()){var y=l.player_.liveTracker.liveWindow(),v=y-i*y;d=(v<1?"":"-")+Vi(v,y)}else d=Vi(n,h);l.update(e,i,d),o&&o()})},t}(Ce);Ce.registerComponent("TimeTooltip",wp);var Gs=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).update=ri(It(Ze(i),i.update),30),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){return s.prototype.createEl.call(this,"div",{className:"vjs-play-progress vjs-slider-bar"},{"aria-hidden":"true"})},r.update=function(e,i){var n=this.getChild("timeTooltip");if(n){var o=this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime();n.updateTime(e,i,o)}},t}(Ce);Gs.prototype.options_={children:[]},!We&&!_e&&Gs.prototype.options_.children.push("timeTooltip"),Ce.registerComponent("PlayProgressBar",Gs);var ol=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).update=ri(It(Ze(i),i.update),30),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){return s.prototype.createEl.call(this,"div",{className:"vjs-mouse-display"})},r.update=function(e,i){var n=this,o=i*this.player_.duration();this.getChild("timeTooltip").updateTime(e,i,o,function(){n.el_.style.left=e.width*i+"px"})},t}(Ce);ol.prototype.options_={children:["timeTooltip"]},Ce.registerComponent("MouseTimeDisplay",ol);var Ws=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).setEventHandlers_(),i}Oe(t,s);var r=t.prototype;return r.setEventHandlers_=function(){var e=this;this.update_=It(this,this.update),this.update=ri(this.update_,30),this.on(this.player_,["ended","durationchange","timeupdate"],this.update),this.player_.liveTracker&&this.on(this.player_.liveTracker,"liveedgechange",this.update),this.updateInterval=null,this.enableIntervalHandler_=function(i){return e.enableInterval_(i)},this.disableIntervalHandler_=function(i){return e.disableInterval_(i)},this.on(this.player_,["playing"],this.enableIntervalHandler_),this.on(this.player_,["ended","pause","waiting"],this.disableIntervalHandler_),"hidden"in document&&"visibilityState"in document&&this.on(document,"visibilitychange",this.toggleVisibility_)},r.toggleVisibility_=function(e){"hidden"===document.visibilityState?(this.cancelNamedAnimationFrame("SeekBar#update"),this.cancelNamedAnimationFrame("Slider#update"),this.disableInterval_(e)):(!this.player_.ended()&&!this.player_.paused()&&this.enableInterval_(),this.update())},r.enableInterval_=function(){this.updateInterval||(this.updateInterval=this.setInterval(this.update,30))},r.disableInterval_=function(e){this.player_.liveTracker&&this.player_.liveTracker.isLive()&&e&&"ended"!==e.type||!this.updateInterval||(this.clearInterval(this.updateInterval),this.updateInterval=null)},r.createEl=function(){return s.prototype.createEl.call(this,"div",{className:"vjs-progress-holder"},{"aria-label":this.localize("Progress Bar")})},r.update=function(e){var i=this;if("hidden"!==document.visibilityState){var n=s.prototype.update.call(this);return this.requestNamedAnimationFrame("SeekBar#update",function(){var o=i.player_.ended()?i.player_.duration():i.getCurrentTime_(),l=i.player_.liveTracker,d=i.player_.duration();l&&l.isLive()&&(d=i.player_.liveTracker.liveCurrentTime()),i.percent_!==n&&(i.el_.setAttribute("aria-valuenow",(100*n).toFixed(2)),i.percent_=n),(i.currentTime_!==o||i.duration_!==d)&&(i.el_.setAttribute("aria-valuetext",i.localize("progress bar timing: currentTime={1} duration={2}",[Vi(o,d),Vi(d,d)],"{1} of {2}")),i.currentTime_=o,i.duration_=d),i.bar&&i.bar.update(et(i.el()),i.getProgress())}),n}},r.userSeek_=function(e){this.player_.liveTracker&&this.player_.liveTracker.isLive()&&this.player_.liveTracker.nextSeekedFromUser(),this.player_.currentTime(e)},r.getCurrentTime_=function(){return this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime()},r.getPercent=function(){var i,e=this.getCurrentTime_(),n=this.player_.liveTracker;return n&&n.isLive()?(i=(e-n.seekableStart())/n.liveWindow(),n.atLiveEdge()&&(i=1)):i=e/this.player_.duration(),i},r.handleMouseDown=function(e){!pe(e)||(e.stopPropagation(),this.videoWasPlaying=!this.player_.paused(),this.player_.pause(),s.prototype.handleMouseDown.call(this,e))},r.handleMouseMove=function(e,i){if(void 0===i&&(i=!1),pe(e)){!i&&!this.player_.scrubbing()&&this.player_.scrubbing(!0);var n,o=this.calculateDistance(e),l=this.player_.liveTracker;if(l&&l.isLive()){if(o>=.99)return void l.seekToLiveEdge();var d=l.seekableStart(),h=l.liveCurrentTime();if((n=d+o*l.liveWindow())>=h&&(n=h),n<=d&&(n=d+.1),n===1/0)return}else(n=o*this.player_.duration())===this.player_.duration()&&(n-=.1);this.userSeek_(n)}},r.enable=function(){s.prototype.enable.call(this);var e=this.getChild("mouseTimeDisplay");!e||e.show()},r.disable=function(){s.prototype.disable.call(this);var e=this.getChild("mouseTimeDisplay");!e||e.hide()},r.handleMouseUp=function(e){s.prototype.handleMouseUp.call(this,e),e&&e.stopPropagation(),this.player_.scrubbing(!1),this.player_.trigger({type:"timeupdate",target:this,manuallyTriggered:!0}),this.videoWasPlaying?Wr(this.player_.play()):this.update_()},r.stepForward=function(){this.userSeek_(this.player_.currentTime()+5)},r.stepBack=function(){this.userSeek_(this.player_.currentTime()-5)},r.handleAction=function(e){this.player_.paused()?this.player_.play():this.player_.pause()},r.handleKeyDown=function(e){var i=this.player_.liveTracker;if(Ye.isEventKey(e,"Space")||Ye.isEventKey(e,"Enter"))e.preventDefault(),e.stopPropagation(),this.handleAction(e);else if(Ye.isEventKey(e,"Home"))e.preventDefault(),e.stopPropagation(),this.userSeek_(0);else if(Ye.isEventKey(e,"End"))e.preventDefault(),e.stopPropagation(),i&&i.isLive()?this.userSeek_(i.liveCurrentTime()):this.userSeek_(this.player_.duration());else if(/^[0-9]$/.test(Ye(e))){e.preventDefault(),e.stopPropagation();var n=10*(Ye.codes[Ye(e)]-Ye.codes[0])/100;i&&i.isLive()?this.userSeek_(i.seekableStart()+i.liveWindow()*n):this.userSeek_(this.player_.duration()*n)}else Ye.isEventKey(e,"PgDn")?(e.preventDefault(),e.stopPropagation(),this.userSeek_(this.player_.currentTime()-60)):Ye.isEventKey(e,"PgUp")?(e.preventDefault(),e.stopPropagation(),this.userSeek_(this.player_.currentTime()+60)):s.prototype.handleKeyDown.call(this,e)},r.dispose=function(){this.disableInterval_(),this.off(this.player_,["ended","durationchange","timeupdate"],this.update),this.player_.liveTracker&&this.off(this.player_.liveTracker,"liveedgechange",this.update),this.off(this.player_,["playing"],this.enableIntervalHandler_),this.off(this.player_,["ended","pause","waiting"],this.disableIntervalHandler_),"hidden"in document&&"visibilityState"in document&&this.off(document,"visibilitychange",this.toggleVisibility_),s.prototype.dispose.call(this)},t}(qs);Ws.prototype.options_={children:["loadProgressBar","playProgressBar"],barName:"playProgressBar"},!We&&!_e&&Ws.prototype.options_.children.splice(1,0,"mouseTimeDisplay"),Ce.registerComponent("SeekBar",Ws);var ll=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).handleMouseMove=ri(It(Ze(i),i.handleMouseMove),30),i.throttledHandleMouseSeek=ri(It(Ze(i),i.handleMouseSeek),30),i.handleMouseUpHandler_=function(n){return i.handleMouseUp(n)},i.handleMouseDownHandler_=function(n){return i.handleMouseDown(n)},i.enable(),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){return s.prototype.createEl.call(this,"div",{className:"vjs-progress-control vjs-control"})},r.handleMouseMove=function(e){var i=this.getChild("seekBar");if(i){var n=i.getChild("playProgressBar"),o=i.getChild("mouseTimeDisplay");if(n||o){var l=i.el(),d=ze(l),h=tt(l,e).x;h=dn(h,0,1),o&&o.update(d,h),n&&n.update(d,i.getProgress())}}},r.handleMouseSeek=function(e){var i=this.getChild("seekBar");i&&i.handleMouseMove(e)},r.enabled=function(){return this.enabled_},r.disable=function(){if(this.children().forEach(function(i){return i.disable&&i.disable()}),this.enabled()&&(this.off(["mousedown","touchstart"],this.handleMouseDownHandler_),this.off(this.el_,"mousemove",this.handleMouseMove),this.removeListenersAddedOnMousedownAndTouchstart(),this.addClass("disabled"),this.enabled_=!1,this.player_.scrubbing())){var e=this.getChild("seekBar");this.player_.scrubbing(!1),e.videoWasPlaying&&Wr(this.player_.play())}},r.enable=function(){this.children().forEach(function(e){return e.enable&&e.enable()}),!this.enabled()&&(this.on(["mousedown","touchstart"],this.handleMouseDownHandler_),this.on(this.el_,"mousemove",this.handleMouseMove),this.removeClass("disabled"),this.enabled_=!0)},r.removeListenersAddedOnMousedownAndTouchstart=function(){var e=this.el_.ownerDocument;this.off(e,"mousemove",this.throttledHandleMouseSeek),this.off(e,"touchmove",this.throttledHandleMouseSeek),this.off(e,"mouseup",this.handleMouseUpHandler_),this.off(e,"touchend",this.handleMouseUpHandler_)},r.handleMouseDown=function(e){var i=this.el_.ownerDocument,n=this.getChild("seekBar");n&&n.handleMouseDown(e),this.on(i,"mousemove",this.throttledHandleMouseSeek),this.on(i,"touchmove",this.throttledHandleMouseSeek),this.on(i,"mouseup",this.handleMouseUpHandler_),this.on(i,"touchend",this.handleMouseUpHandler_)},r.handleMouseUp=function(e){var i=this.getChild("seekBar");i&&i.handleMouseUp(e),this.removeListenersAddedOnMousedownAndTouchstart()},t}(Ce);ll.prototype.options_={children:["seekBar"]},Ce.registerComponent("ProgressControl",ll);var dl=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).on(a,["enterpictureinpicture","leavepictureinpicture"],function(n){return i.handlePictureInPictureChange(n)}),i.on(a,["disablepictureinpicturechanged","loadedmetadata"],function(n){return i.handlePictureInPictureEnabledChange(n)}),i.disable(),i}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-picture-in-picture-control "+s.prototype.buildCSSClass.call(this)},r.handlePictureInPictureEnabledChange=function(){document.pictureInPictureEnabled&&!1===this.player_.disablePictureInPicture()?this.enable():this.disable()},r.handlePictureInPictureChange=function(e){this.player_.isInPictureInPicture()?this.controlText("Exit Picture-in-Picture"):this.controlText("Picture-in-Picture"),this.handlePictureInPictureEnabledChange()},r.handleClick=function(e){this.player_.isInPictureInPicture()?this.player_.exitPictureInPicture():this.player_.requestPictureInPicture()},t}(Vr);dl.prototype.controlText_="Picture-in-Picture",Ce.registerComponent("PictureInPictureToggle",dl);var cl=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).on(a,"fullscreenchange",function(n){return i.handleFullscreenChange(n)}),!1===document[a.fsApi_.fullscreenEnabled]&&i.disable(),i}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-fullscreen-control "+s.prototype.buildCSSClass.call(this)},r.handleFullscreenChange=function(e){this.player_.isFullscreen()?this.controlText("Non-Fullscreen"):this.controlText("Fullscreen")},r.handleClick=function(e){this.player_.isFullscreen()?this.player_.exitFullscreen():this.player_.requestFullscreen()},t}(Vr);cl.prototype.controlText_="Fullscreen",Ce.registerComponent("FullscreenToggle",cl);var Pp=function(s){function t(){return s.apply(this,arguments)||this}return Oe(t,s),t.prototype.createEl=function(){var e=s.prototype.createEl.call(this,"div",{className:"vjs-volume-level"});return e.appendChild(s.prototype.createEl.call(this,"span",{className:"vjs-control-text"})),e},t}(Ce);Ce.registerComponent("VolumeLevel",Pp);var kp=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).update=ri(It(Ze(i),i.update),30),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){return s.prototype.createEl.call(this,"div",{className:"vjs-volume-tooltip"},{"aria-hidden":"true"})},r.update=function(e,i,n,o){if(!n){var l=et(this.el_),d=et(this.player_.el()),h=e.width*i;if(!d||!l)return;var y=e.left-d.left+h,v=e.width-h+(d.right-e.right),S=l.width/2;yl.width&&(S=l.width),this.el_.style.right="-"+S+"px"}this.write(o+"%")},r.write=function(e){tr(this.el_,e)},r.updateVolume=function(e,i,n,o,l){var d=this;this.requestNamedAnimationFrame("VolumeLevelTooltip#updateVolume",function(){d.update(e,i,n,o.toFixed(0)),l&&l()})},t}(Ce);Ce.registerComponent("VolumeLevelTooltip",kp);var fl=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).update=ri(It(Ze(i),i.update),30),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){return s.prototype.createEl.call(this,"div",{className:"vjs-mouse-display"})},r.update=function(e,i,n){var o=this,l=100*i;this.getChild("volumeLevelTooltip").updateVolume(e,i,n,l,function(){n?o.el_.style.bottom=e.height*i+"px":o.el_.style.left=e.width*i+"px"})},t}(Ce);fl.prototype.options_={children:["volumeLevelTooltip"]},Ce.registerComponent("MouseVolumeLevelDisplay",fl);var fn=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).on("slideractive",function(n){return i.updateLastVolume_(n)}),i.on(a,"volumechange",function(n){return i.updateARIAAttributes(n)}),a.ready(function(){return i.updateARIAAttributes()}),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){return s.prototype.createEl.call(this,"div",{className:"vjs-volume-bar vjs-slider-bar"},{"aria-label":this.localize("Volume Level"),"aria-live":"polite"})},r.handleMouseDown=function(e){!pe(e)||s.prototype.handleMouseDown.call(this,e)},r.handleMouseMove=function(e){var i=this.getChild("mouseVolumeLevelDisplay");if(i){var n=this.el(),o=et(n),l=this.vertical(),d=tt(n,e);d=l?d.y:d.x,d=dn(d,0,1),i.update(o,d,l)}!pe(e)||(this.checkMuted(),this.player_.volume(this.calculateDistance(e)))},r.checkMuted=function(){this.player_.muted()&&this.player_.muted(!1)},r.getPercent=function(){return this.player_.muted()?0:this.player_.volume()},r.stepForward=function(){this.checkMuted(),this.player_.volume(this.player_.volume()+.1)},r.stepBack=function(){this.checkMuted(),this.player_.volume(this.player_.volume()-.1)},r.updateARIAAttributes=function(e){var i=this.player_.muted()?0:this.volumeAsPercentage_();this.el_.setAttribute("aria-valuenow",i),this.el_.setAttribute("aria-valuetext",i+"%")},r.volumeAsPercentage_=function(){return Math.round(100*this.player_.volume())},r.updateLastVolume_=function(){var e=this,i=this.player_.volume();this.one("sliderinactive",function(){0===e.player_.volume()&&e.player_.lastVolume_(i)})},t}(qs);fn.prototype.options_={children:["volumeLevel"],barName:"volumeLevel"},!We&&!_e&&fn.prototype.options_.children.splice(0,0,"mouseVolumeLevelDisplay"),fn.prototype.playerEvent="volumechange",Ce.registerComponent("VolumeBar",fn);var hl=function(s){function t(a,e){var i;return void 0===e&&(e={}),e.vertical=e.vertical||!1,(typeof e.volumeBar>"u"||ee(e.volumeBar))&&(e.volumeBar=e.volumeBar||{},e.volumeBar.vertical=e.vertical),i=s.call(this,a,e)||this,function(t,r){r.tech_&&!r.tech_.featuresVolumeControl&&t.addClass("vjs-hidden"),t.on(r,"loadstart",function(){r.tech_.featuresVolumeControl?t.removeClass("vjs-hidden"):t.addClass("vjs-hidden")})}(Ze(i),a),i.throttledHandleMouseMove=ri(It(Ze(i),i.handleMouseMove),30),i.handleMouseUpHandler_=function(n){return i.handleMouseUp(n)},i.on("mousedown",function(n){return i.handleMouseDown(n)}),i.on("touchstart",function(n){return i.handleMouseDown(n)}),i.on("mousemove",function(n){return i.handleMouseMove(n)}),i.on(i.volumeBar,["focus","slideractive"],function(){i.volumeBar.addClass("vjs-slider-active"),i.addClass("vjs-slider-active"),i.trigger("slideractive")}),i.on(i.volumeBar,["blur","sliderinactive"],function(){i.volumeBar.removeClass("vjs-slider-active"),i.removeClass("vjs-slider-active"),i.trigger("sliderinactive")}),i}Oe(t,s);var r=t.prototype;return r.createEl=function(){var e="vjs-volume-horizontal";return this.options_.vertical&&(e="vjs-volume-vertical"),s.prototype.createEl.call(this,"div",{className:"vjs-volume-control vjs-control "+e})},r.handleMouseDown=function(e){var i=this.el_.ownerDocument;this.on(i,"mousemove",this.throttledHandleMouseMove),this.on(i,"touchmove",this.throttledHandleMouseMove),this.on(i,"mouseup",this.handleMouseUpHandler_),this.on(i,"touchend",this.handleMouseUpHandler_)},r.handleMouseUp=function(e){var i=this.el_.ownerDocument;this.off(i,"mousemove",this.throttledHandleMouseMove),this.off(i,"touchmove",this.throttledHandleMouseMove),this.off(i,"mouseup",this.handleMouseUpHandler_),this.off(i,"touchend",this.handleMouseUpHandler_)},r.handleMouseMove=function(e){this.volumeBar.handleMouseMove(e)},t}(Ce);hl.prototype.options_={children:["volumeBar"]},Ce.registerComponent("VolumeControl",hl);var pl=function(s){function t(a,e){var i;return i=s.call(this,a,e)||this,function(t,r){r.tech_&&!r.tech_.featuresMuteControl&&t.addClass("vjs-hidden"),t.on(r,"loadstart",function(){r.tech_.featuresMuteControl?t.removeClass("vjs-hidden"):t.addClass("vjs-hidden")})}(Ze(i),a),i.on(a,["loadstart","volumechange"],function(n){return i.update(n)}),i}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-mute-control "+s.prototype.buildCSSClass.call(this)},r.handleClick=function(e){var i=this.player_.volume(),n=this.player_.lastVolume_();if(0===i){var o=n<.1?.1:n;this.player_.volume(o),this.player_.muted(!1)}else this.player_.muted(!this.player_.muted())},r.update=function(e){this.updateIcon_(),this.updateControlText_()},r.updateIcon_=function(){var e=this.player_.volume(),i=3;We&&this.player_.tech_&&this.player_.tech_.el_&&this.player_.muted(this.player_.tech_.el_.muted),0===e||this.player_.muted()?i=0:e<.33?i=1:e<.67&&(i=2);for(var n=0;n<4;n++)Ar(this.el_,"vjs-vol-"+n);zt(this.el_,"vjs-vol-"+i)},r.updateControlText_=function(){var i=this.player_.muted()||0===this.player_.volume()?"Unmute":"Mute";this.controlText()!==i&&this.controlText(i)},t}(Vr);pl.prototype.controlText_="Mute",Ce.registerComponent("MuteToggle",pl);var ml=function(s){function t(a,e){var i;return void 0===e&&(e={}),typeof e.inline<"u"?e.inline=e.inline:e.inline=!0,(typeof e.volumeControl>"u"||ee(e.volumeControl))&&(e.volumeControl=e.volumeControl||{},e.volumeControl.vertical=!e.inline),(i=s.call(this,a,e)||this).handleKeyPressHandler_=function(n){return i.handleKeyPress(n)},i.on(a,["loadstart"],function(n){return i.volumePanelState_(n)}),i.on(i.muteToggle,"keyup",function(n){return i.handleKeyPress(n)}),i.on(i.volumeControl,"keyup",function(n){return i.handleVolumeControlKeyUp(n)}),i.on("keydown",function(n){return i.handleKeyPress(n)}),i.on("mouseover",function(n){return i.handleMouseOver(n)}),i.on("mouseout",function(n){return i.handleMouseOut(n)}),i.on(i.volumeControl,["slideractive"],i.sliderActive_),i.on(i.volumeControl,["sliderinactive"],i.sliderInactive_),i}Oe(t,s);var r=t.prototype;return r.sliderActive_=function(){this.addClass("vjs-slider-active")},r.sliderInactive_=function(){this.removeClass("vjs-slider-active")},r.volumePanelState_=function(){this.volumeControl.hasClass("vjs-hidden")&&this.muteToggle.hasClass("vjs-hidden")&&this.addClass("vjs-hidden"),this.volumeControl.hasClass("vjs-hidden")&&!this.muteToggle.hasClass("vjs-hidden")&&this.addClass("vjs-mute-toggle-only")},r.createEl=function(){var e="vjs-volume-panel-horizontal";return this.options_.inline||(e="vjs-volume-panel-vertical"),s.prototype.createEl.call(this,"div",{className:"vjs-volume-panel vjs-control "+e})},r.dispose=function(){this.handleMouseOut(),s.prototype.dispose.call(this)},r.handleVolumeControlKeyUp=function(e){Ye.isEventKey(e,"Esc")&&this.muteToggle.focus()},r.handleMouseOver=function(e){this.addClass("vjs-hover"),vt(document,"keyup",this.handleKeyPressHandler_)},r.handleMouseOut=function(e){this.removeClass("vjs-hover"),bt(document,"keyup",this.handleKeyPressHandler_)},r.handleKeyPress=function(e){Ye.isEventKey(e,"Esc")&&this.handleMouseOut()},t}(Ce);ml.prototype.options_={children:["muteToggle","volumeControl"]},Ce.registerComponent("VolumePanel",ml);var gl=function(s){function t(a,e){var i;return i=s.call(this,a,e)||this,e&&(i.menuButton_=e.menuButton),i.focusedChild_=-1,i.on("keydown",function(n){return i.handleKeyDown(n)}),i.boundHandleBlur_=function(n){return i.handleBlur(n)},i.boundHandleTapClick_=function(n){return i.handleTapClick(n)},i}Oe(t,s);var r=t.prototype;return r.addEventListenerForItem=function(e){e instanceof Ce&&(this.on(e,"blur",this.boundHandleBlur_),this.on(e,["tap","click"],this.boundHandleTapClick_))},r.removeEventListenerForItem=function(e){e instanceof Ce&&(this.off(e,"blur",this.boundHandleBlur_),this.off(e,["tap","click"],this.boundHandleTapClick_))},r.removeChild=function(e){"string"==typeof e&&(e=this.getChild(e)),this.removeEventListenerForItem(e),s.prototype.removeChild.call(this,e)},r.addItem=function(e){var i=this.addChild(e);i&&this.addEventListenerForItem(i)},r.createEl=function(){var e=this.options_.contentElType||"ul";this.contentEl_=Je(e,{className:"vjs-menu-content"}),this.contentEl_.setAttribute("role","menu");var i=s.prototype.createEl.call(this,"div",{append:this.contentEl_,className:"vjs-menu"});return i.appendChild(this.contentEl_),vt(i,"click",function(n){n.preventDefault(),n.stopImmediatePropagation()}),i},r.dispose=function(){this.contentEl_=null,this.boundHandleBlur_=null,this.boundHandleTapClick_=null,s.prototype.dispose.call(this)},r.handleBlur=function(e){var i=e.relatedTarget||document.activeElement;if(!this.children().some(function(o){return o.el()===i})){var n=this.menuButton_;n&&n.buttonPressed_&&i!==n.el().firstChild&&n.unpressButton()}},r.handleTapClick=function(e){if(this.menuButton_){this.menuButton_.unpressButton();var i=this.children();if(!Array.isArray(i))return;var n=i.filter(function(o){return o.el()===e.target})[0];if(!n)return;"CaptionSettingsMenuItem"!==n.name()&&this.menuButton_.focus()}},r.handleKeyDown=function(e){Ye.isEventKey(e,"Left")||Ye.isEventKey(e,"Down")?(e.preventDefault(),e.stopPropagation(),this.stepForward()):(Ye.isEventKey(e,"Right")||Ye.isEventKey(e,"Up"))&&(e.preventDefault(),e.stopPropagation(),this.stepBack())},r.stepForward=function(){var e=0;void 0!==this.focusedChild_&&(e=this.focusedChild_+1),this.focus(e)},r.stepBack=function(){var e=0;void 0!==this.focusedChild_&&(e=this.focusedChild_-1),this.focus(e)},r.focus=function(e){void 0===e&&(e=0);var i=this.children().slice();i.length&&i[0].hasClass("vjs-menu-title")&&i.shift(),i.length>0&&(e<0?e=0:e>=i.length&&(e=i.length-1),this.focusedChild_=e,i[e].el_.focus())},t}(Ce);Ce.registerComponent("Menu",gl);var Ks=function(s){function t(a,e){var i;void 0===e&&(e={}),(i=s.call(this,a,e)||this).menuButton_=new Vr(a,e),i.menuButton_.controlText(i.controlText_),i.menuButton_.el_.setAttribute("aria-haspopup","true");var n=Vr.prototype.buildCSSClass();i.menuButton_.el_.className=i.buildCSSClass()+" "+n,i.menuButton_.removeClass("vjs-control"),i.addChild(i.menuButton_),i.update(),i.enabled_=!0;var o=function(d){return i.handleClick(d)};return i.handleMenuKeyUp_=function(l){return i.handleMenuKeyUp(l)},i.on(i.menuButton_,"tap",o),i.on(i.menuButton_,"click",o),i.on(i.menuButton_,"keydown",function(l){return i.handleKeyDown(l)}),i.on(i.menuButton_,"mouseenter",function(){i.addClass("vjs-hover"),i.menu.show(),vt(document,"keyup",i.handleMenuKeyUp_)}),i.on("mouseleave",function(l){return i.handleMouseLeave(l)}),i.on("keydown",function(l){return i.handleSubmenuKeyDown(l)}),i}Oe(t,s);var r=t.prototype;return r.update=function(){var e=this.createMenu();this.menu&&(this.menu.dispose(),this.removeChild(this.menu)),this.menu=e,this.addChild(e),this.buttonPressed_=!1,this.menuButton_.el_.setAttribute("aria-expanded","false"),this.items&&this.items.length<=this.hideThreshold_?this.hide():this.show()},r.createMenu=function(){var e=new gl(this.player_,{menuButton:this});if(this.hideThreshold_=0,this.options_.title){var i=Je("li",{className:"vjs-menu-title",textContent:Wt(this.options_.title),tabIndex:-1}),n=new Ce(this.player_,{el:i});e.addItem(n)}if(this.items=this.createItems(),this.items)for(var o=0;o-1&&"showing"===d.mode){n=!1;break}}n!==this.isSelected_&&this.selected(n)},r.handleSelectedLanguageChange=function(e){for(var i=this.player().textTracks(),n=!0,o=0,l=i.length;o-1&&"showing"===d.mode){n=!1;break}}n&&(this.player_.cache_.selectedLanguage={enabled:!1})},t}(ba);Ce.registerComponent("OffTextTrackMenuItem",vl);var Hi=function(s){function t(a,e){return void 0===e&&(e={}),e.tracks=a.textTracks(),s.call(this,a,e)||this}return Oe(t,s),t.prototype.createItems=function(e,i){var n;void 0===e&&(e=[]),void 0===i&&(i=ba),this.label_&&(n=this.label_+" off"),e.push(new vl(this.player_,{kinds:this.kinds_,kind:this.kind_,label:n})),this.hideThreshold_+=1;var o=this.player_.textTracks();Array.isArray(this.kinds_)||(this.kinds_=[this.kind_]);for(var l=0;l-1){var h=new i(this.player_,{track:d,kinds:this.kinds_,kind:this.kind_,selectable:!0,multiSelectable:!1});h.addClass("vjs-"+d.kind+"-menu-item"),e.push(h)}}return e},t}(Xs);Ce.registerComponent("TextTrackButton",Hi);var yl=function(s){function t(a,e){var i,n=e.track,o=e.cue,l=a.currentTime();return e.selectable=!0,e.multiSelectable=!1,e.label=o.text,e.selected=o.startTime<=l&&l=0;i--){var n=e[i];if(n.kind===this.kind_)return n}},r.getMenuCaption=function(){return this.track_&&this.track_.label?this.track_.label:this.localize(Wt(this.kind_))},r.createMenu=function(){return this.options_.title=this.getMenuCaption(),s.prototype.createMenu.call(this)},r.createItems=function(){var e=[];if(!this.track_)return e;var i=this.track_.cues;if(!i)return e;for(var n=0,o=i.length;n-1&&(i.label_="captions"),i.menuButton_.controlText(Wt(i.label_)),i}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-subs-caps-button "+s.prototype.buildCSSClass.call(this)},r.buildWrapperCSSClass=function(){return"vjs-subs-caps-button "+s.prototype.buildWrapperCSSClass.call(this)},r.createItems=function(){var e=[];return!(this.player().tech_&&this.player().tech_.featuresNativeTextTracks)&&this.player().getChild("textTrackSettings")&&(e.push(new Zs(this.player_,{kind:this.label_})),this.hideThreshold_+=1),e=s.prototype.createItems.call(this,e,_l)},t}(Hi);to.prototype.kinds_=["captions","subtitles"],to.prototype.controlText_="Subtitles",Ce.registerComponent("SubsCapsButton",to);var Tl=function(s){function t(a,e){var i,n=e.track,o=a.audioTracks();e.label=n.label||n.language||"Unknown",e.selected=n.enabled,(i=s.call(this,a,e)||this).track=n,i.addClass("vjs-"+n.kind+"-menu-item");var l=function(){for(var h=arguments.length,y=new Array(h),v=0;v=0;n--)i.push(new ro(this.player(),{rate:e[n]+"x"}));return i},r.updateARIAAttributes=function(){this.el().setAttribute("aria-valuenow",this.player().playbackRate())},r.handleClick=function(e){var i=this.player().playbackRate(),n=this.playbackRates(),l=(n.indexOf(i)+1)%n.length;this.player().playbackRate(n[l])},r.handlePlaybackRateschange=function(e){this.update()},r.playbackRates=function(){var e=this.player();return e.playbackRates&&e.playbackRates()||[]},r.playbackRateSupported=function(){return this.player().tech_&&this.player().tech_.featuresPlaybackRate&&this.playbackRates()&&this.playbackRates().length>0},r.updateVisibility=function(e){this.playbackRateSupported()?this.removeClass("vjs-hidden"):this.addClass("vjs-hidden")},r.updateLabel=function(e){this.playbackRateSupported()&&(this.labelEl_.textContent=this.player().playbackRate()+"x")},t}(Ks);Sl.prototype.controlText_="Playback Rate",Ce.registerComponent("PlaybackRateMenuButton",Sl);var xl=function(s){function t(){return s.apply(this,arguments)||this}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-spacer "+s.prototype.buildCSSClass.call(this)},r.createEl=function(e,i,n){return void 0===e&&(e="div"),void 0===i&&(i={}),void 0===n&&(n={}),i.className||(i.className=this.buildCSSClass()),s.prototype.createEl.call(this,e,i,n)},t}(Ce);Ce.registerComponent("Spacer",xl);var Dp=function(s){function t(){return s.apply(this,arguments)||this}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-custom-control-spacer "+s.prototype.buildCSSClass.call(this)},r.createEl=function(){return s.prototype.createEl.call(this,"div",{className:this.buildCSSClass(),textContent:"\xa0"})},t}(xl);Ce.registerComponent("CustomControlSpacer",Dp);var hn=function(s){function t(){return s.apply(this,arguments)||this}return Oe(t,s),t.prototype.createEl=function(){return s.prototype.createEl.call(this,"div",{className:"vjs-control-bar",dir:"ltr"})},t}(Ce);hn.prototype.options_={children:["playToggle","volumePanel","currentTimeDisplay","timeDivider","durationDisplay","progressControl","liveDisplay","seekToLive","remainingTimeDisplay","customControlSpacer","playbackRateMenuButton","chaptersButton","descriptionsButton","subsCapsButton","audioTrackButton","fullscreenToggle"]},"exitPictureInPicture"in document&&hn.prototype.options_.children.splice(hn.prototype.options_.children.length-1,0,"pictureInPictureToggle"),Ce.registerComponent("ControlBar",hn);var El=function(s){function t(a,e){var i;return(i=s.call(this,a,e)||this).on(a,"error",function(n){return i.open(n)}),i}Oe(t,s);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-error-display "+s.prototype.buildCSSClass.call(this)},r.content=function(){var e=this.player().error();return e?this.localize(e.message):""},t}(Fi);El.prototype.options_=Z({},Fi.prototype.options_,{pauseOnOpen:!1,fillAlways:!0,temporary:!1,uncloseable:!0}),Ce.registerComponent("ErrorDisplay",El);var io="vjs-text-track-settings",wl=["#000","Black"],Cl=["#00F","Blue"],Pl=["#0FF","Cyan"],kl=["#0F0","Green"],Al=["#F0F","Magenta"],Il=["#F00","Red"],Dl=["#FFF","White"],Ol=["#FF0","Yellow"],ao=["1","Opaque"],no=["0.5","Semi-Transparent"],Ll=["0","Transparent"],bi={backgroundColor:{selector:".vjs-bg-color > select",id:"captions-background-color-%s",label:"Color",options:[wl,Dl,Il,kl,Cl,Ol,Al,Pl]},backgroundOpacity:{selector:".vjs-bg-opacity > select",id:"captions-background-opacity-%s",label:"Transparency",options:[ao,no,Ll]},color:{selector:".vjs-fg-color > select",id:"captions-foreground-color-%s",label:"Color",options:[Dl,wl,Il,kl,Cl,Ol,Al,Pl]},edgeStyle:{selector:".vjs-edge-style > select",id:"%s",label:"Text Edge Style",options:[["none","None"],["raised","Raised"],["depressed","Depressed"],["uniform","Uniform"],["dropshadow","Dropshadow"]]},fontFamily:{selector:".vjs-font-family > select",id:"captions-font-family-%s",label:"Font Family",options:[["proportionalSansSerif","Proportional Sans-Serif"],["monospaceSansSerif","Monospace Sans-Serif"],["proportionalSerif","Proportional Serif"],["monospaceSerif","Monospace Serif"],["casual","Casual"],["script","Script"],["small-caps","Small Caps"]]},fontPercent:{selector:".vjs-font-percent > select",id:"captions-font-size-%s",label:"Font Size",options:[["0.50","50%"],["0.75","75%"],["1.00","100%"],["1.25","125%"],["1.50","150%"],["1.75","175%"],["2.00","200%"],["3.00","300%"],["4.00","400%"]],default:2,parser:function(t){return"1.00"===t?null:Number(t)}},textOpacity:{selector:".vjs-text-opacity > select",id:"captions-foreground-opacity-%s",label:"Transparency",options:[ao,no]},windowColor:{selector:".vjs-window-color > select",id:"captions-window-color-%s",label:"Color"},windowOpacity:{selector:".vjs-window-opacity > select",id:"captions-window-opacity-%s",label:"Transparency",options:[Ll,no,ao]}};function Rl(s,t){if(t&&(s=t(s)),s&&"none"!==s)return s}bi.windowColor.options=bi.backgroundColor.options;var Rp=function(s){function t(a,e){var i;return e.temporary=!1,(i=s.call(this,a,e)||this).updateDisplay=i.updateDisplay.bind(Ze(i)),i.fill(),i.hasBeenOpened_=i.hasBeenFilled_=!0,i.endDialog=Je("p",{className:"vjs-control-text",textContent:i.localize("End of dialog window.")}),i.el().appendChild(i.endDialog),i.setDefaults(),void 0===e.persistTextTrackSettings&&(i.options_.persistTextTrackSettings=i.options_.playerOptions.persistTextTrackSettings),i.on(i.$(".vjs-done-button"),"click",function(){i.saveSettings(),i.close()}),i.on(i.$(".vjs-default-button"),"click",function(){i.setDefaults(),i.updateDisplay()}),oe(bi,function(n){i.on(i.$(n.selector),"change",i.updateDisplay)}),i.options_.persistTextTrackSettings&&i.restoreSettings(),i}Oe(t,s);var r=t.prototype;return r.dispose=function(){this.endDialog=null,s.prototype.dispose.call(this)},r.createElSelect_=function(e,i,n){var o=this;void 0===i&&(i=""),void 0===n&&(n="label");var l=bi[e],d=l.id.replace("%s",this.id_),h=[i,d].join(" ").trim();return["<"+n+' id="'+d+'" class="'+("label"===n?"vjs-label":"")+'">',this.localize(l.label),"",'").join("")},r.createElFgColor_=function(){var e="captions-text-legend-"+this.id_;return['
','',this.localize("Text"),"",this.createElSelect_("color",e),'',this.createElSelect_("textOpacity",e),"","
"].join("")},r.createElBgColor_=function(){var e="captions-background-"+this.id_;return['
','',this.localize("Background"),"",this.createElSelect_("backgroundColor",e),'',this.createElSelect_("backgroundOpacity",e),"","
"].join("")},r.createElWinColor_=function(){var e="captions-window-"+this.id_;return['
','',this.localize("Window"),"",this.createElSelect_("windowColor",e),'',this.createElSelect_("windowOpacity",e),"","
"].join("")},r.createElColors_=function(){return Je("div",{className:"vjs-track-settings-colors",innerHTML:[this.createElFgColor_(),this.createElBgColor_(),this.createElWinColor_()].join("")})},r.createElFont_=function(){return Je("div",{className:"vjs-track-settings-font",innerHTML:['
',this.createElSelect_("fontPercent","","legend"),"
",'
',this.createElSelect_("edgeStyle","","legend"),"
",'
',this.createElSelect_("fontFamily","","legend"),"
"].join("")})},r.createElControls_=function(){var e=this.localize("restore all settings to the default values");return Je("div",{className:"vjs-track-settings-controls",innerHTML:['",'"].join("")})},r.content=function(){return[this.createElColors_(),this.createElFont_(),this.createElControls_()]},r.label=function(){return this.localize("Caption Settings Dialog")},r.description=function(){return this.localize("Beginning of dialog window. Escape will cancel and close the window.")},r.buildCSSClass=function(){return s.prototype.buildCSSClass.call(this)+" vjs-text-track-settings"},r.getValues=function(){var e=this;return function me(s,t,r){return void 0===r&&(r=0),ye(s).reduce(function(a,e){return t(a,s[e],e)},r)}(bi,function(i,n,o){var l=function Op(s,t){return Rl(s.options[s.options.selectedIndex].value,t)}(e.$(n.selector),n.parser);return void 0!==l&&(i[o]=l),i},{})},r.setValues=function(e){var i=this;oe(bi,function(n,o){!function Lp(s,t,r){if(t)for(var a=0;athis.options_.liveTolerance;(!this.timeupdateSeen_||o===1/0)&&(d=!1),d!==this.behindLiveEdge_&&(this.behindLiveEdge_=d,this.trigger("liveedgechange"))}},r.handleDurationchange=function(){this.toggleTracking()},r.toggleTracking=function(){this.player_.duration()===1/0&&this.liveWindow()>=this.options_.trackingThreshold?(this.player_.options_.liveui&&this.player_.addClass("vjs-liveui"),this.startTracking()):(this.player_.removeClass("vjs-liveui"),this.stopTracking())},r.startTracking=function(){this.isTracking()||(this.timeupdateSeen_||(this.timeupdateSeen_=this.player_.hasStarted()),this.trackingInterval_=this.setInterval(this.trackLiveHandler_,30),this.trackLive_(),this.on(this.player_,["play","pause"],this.trackLiveHandler_),this.timeupdateSeen_?this.on(this.player_,"seeked",this.handleSeeked_):(this.one(this.player_,"play",this.handlePlay_),this.one(this.player_,"timeupdate",this.handleFirstTimeupdate_)))},r.handleFirstTimeupdate=function(){this.timeupdateSeen_=!0,this.on(this.player_,"seeked",this.handleSeeked_)},r.handleSeeked=function(){var e=Math.abs(this.liveCurrentTime()-this.player_.currentTime());this.seekedBehindLive_=this.nextSeekedFromUser_&&e>2,this.nextSeekedFromUser_=!1,this.trackLive_()},r.handlePlay=function(){this.one(this.player_,"timeupdate",this.seekToLiveEdge_)},r.reset_=function(){this.lastTime_=-1,this.pastSeekEnd_=0,this.lastSeekEnd_=-1,this.behindLiveEdge_=!0,this.timeupdateSeen_=!1,this.seekedBehindLive_=!1,this.nextSeekedFromUser_=!1,this.clearInterval(this.trackingInterval_),this.trackingInterval_=null,this.off(this.player_,["play","pause"],this.trackLiveHandler_),this.off(this.player_,"seeked",this.handleSeeked_),this.off(this.player_,"play",this.handlePlay_),this.off(this.player_,"timeupdate",this.handleFirstTimeupdate_),this.off(this.player_,"timeupdate",this.seekToLiveEdge_)},r.nextSeekedFromUser=function(){this.nextSeekedFromUser_=!0},r.stopTracking=function(){!this.isTracking()||(this.reset_(),this.trigger("liveedgechange"))},r.seekableEnd=function(){for(var e=this.player_.seekable(),i=[],n=e?e.length:0;n--;)i.push(e.end(n));return i.length?i.sort()[i.length-1]:1/0},r.seekableStart=function(){for(var e=this.player_.seekable(),i=[],n=e?e.length:0;n--;)i.push(e.start(n));return i.length?i.sort()[0]:0},r.liveWindow=function(){var e=this.liveCurrentTime();return e===1/0?0:e-this.seekableStart()},r.isLive=function(){return this.isTracking()},r.atLiveEdge=function(){return!this.behindLiveEdge()},r.liveCurrentTime=function(){return this.pastSeekEnd()+this.seekableEnd()},r.pastSeekEnd=function(){var e=this.seekableEnd();return-1!==this.lastSeekEnd_&&e!==this.lastSeekEnd_&&(this.pastSeekEnd_=0),this.lastSeekEnd_=e,this.pastSeekEnd_},r.behindLiveEdge=function(){return this.behindLiveEdge_},r.isTracking=function(){return"number"==typeof this.trackingInterval_},r.seekToLiveEdge=function(){this.seekedBehindLive_=!1,!this.atLiveEdge()&&(this.nextSeekedFromUser_=!1,this.player_.currentTime(this.liveCurrentTime()))},r.dispose=function(){this.off(document,"visibilitychange",this.handleVisibilityChange_),this.stopTracking(),s.prototype.dispose.call(this)},t}(Ce);Ce.registerComponent("LiveTracker",Np);var pn,so=function(t){var r=t.el();if(r.hasAttribute("src"))return t.triggerSourceset(r.src),!0;var a=t.$$("source"),e=[],i="";if(!a.length)return!1;for(var n=0;n=2&&l.push("loadeddata"),e.readyState>=3&&l.push("canplay"),e.readyState>=4&&l.push("canplaythrough"),this.ready(function(){l.forEach(function(d){this.trigger(d)},this)})}},r.setScrubbing=function(e){this.isScrubbing_=e},r.scrubbing=function(){return this.isScrubbing_},r.setCurrentTime=function(e){try{this.isScrubbing_&&this.el_.fastSeek&&it?this.el_.fastSeek(e):this.el_.currentTime=e}catch(i){E(i,"Video is not ready. (Video.js)")}},r.duration=function(){var e=this;if(this.el_.duration===1/0&&_e&&ht&&0===this.el_.currentTime){return this.on("timeupdate",function n(){e.el_.currentTime>0&&(e.el_.duration===1/0&&e.trigger("durationchange"),e.off("timeupdate",n))}),NaN}return this.el_.duration||NaN},r.width=function(){return this.el_.offsetWidth},r.height=function(){return this.el_.offsetHeight},r.proxyWebkitFullscreen_=function(){var e=this;if("webkitDisplayingFullscreen"in this.el_){var i=function(){this.trigger("fullscreenchange",{isFullscreen:!1}),this.el_.controls&&!this.options_.nativeControlsForTouch&&this.controls()&&(this.el_.controls=!1)},n=function(){"webkitPresentationMode"in this.el_&&"picture-in-picture"!==this.el_.webkitPresentationMode&&(this.one("webkitendfullscreen",i),this.trigger("fullscreenchange",{isFullscreen:!0,nativeIOSFullscreen:!0}))};this.on("webkitbeginfullscreen",n),this.on("dispose",function(){e.off("webkitbeginfullscreen",n),e.off("webkitendfullscreen",i)})}},r.supportsFullScreen=function(){if("function"==typeof this.el_.webkitEnterFullScreen){var e=window.navigator&&window.navigator.userAgent||"";if(/Android/.test(e)||!/Chrome|Mac OS X 10.5/.test(e))return!0}return!1},r.enterFullScreen=function(){var e=this.el_;if(e.paused&&e.networkState<=e.HAVE_METADATA)Wr(this.el_.play()),this.setTimeout(function(){e.pause();try{e.webkitEnterFullScreen()}catch(i){this.trigger("fullscreenerror",i)}},0);else try{e.webkitEnterFullScreen()}catch(i){this.trigger("fullscreenerror",i)}},r.exitFullScreen=function(){this.el_.webkitDisplayingFullscreen?this.el_.webkitExitFullScreen():this.trigger("fullscreenerror",new Error("The video is not fullscreen"))},r.requestPictureInPicture=function(){return this.el_.requestPictureInPicture()},r.src=function(e){if(void 0===e)return this.el_.src;this.setSrc(e)},r.reset=function(){t.resetMediaElement(this.el_)},r.currentSrc=function(){return this.currentSource_?this.currentSource_.src:this.el_.currentSrc},r.setControls=function(e){this.el_.controls=!!e},r.addTextTrack=function(e,i,n){return this.featuresNativeTextTracks?this.el_.addTextTrack(e,i,n):s.prototype.addTextTrack.call(this,e,i,n)},r.createRemoteTextTrack=function(e){if(!this.featuresNativeTextTracks)return s.prototype.createRemoteTextTrack.call(this,e);var i=document.createElement("track");return e.kind&&(i.kind=e.kind),e.label&&(i.label=e.label),(e.language||e.srclang)&&(i.srclang=e.language||e.srclang),e.default&&(i.default=e.default),e.id&&(i.id=e.id),e.src&&(i.src=e.src),i},r.addRemoteTextTrack=function(e,i){var n=s.prototype.addRemoteTextTrack.call(this,e,i);return this.featuresNativeTextTracks&&this.el().appendChild(n),n},r.removeRemoteTextTrack=function(e){if(s.prototype.removeRemoteTextTrack.call(this,e),this.featuresNativeTextTracks)for(var i=this.$$("track"),n=i.length;n--;)(e===i[n]||e===i[n].track)&&this.el().removeChild(i[n])},r.getVideoPlaybackQuality=function(){if("function"==typeof this.el().getVideoPlaybackQuality)return this.el().getVideoPlaybackQuality();var e={};return typeof this.el().webkitDroppedFrameCount<"u"&&typeof this.el().webkitDecodedFrameCount<"u"&&(e.droppedVideoFrames=this.el().webkitDroppedFrameCount,e.totalVideoFrames=this.el().webkitDecodedFrameCount),window.performance&&"function"==typeof window.performance.now?e.creationTime=window.performance.now():window.performance&&window.performance.timing&&"number"==typeof window.performance.timing.navigationStart&&(e.creationTime=window.Date.now()-window.performance.timing.navigationStart),e},t}(Dt);oo(Be,"TEST_VID",function(){if(kt()){var s=document.createElement("video"),t=document.createElement("track");return t.kind="captions",t.srclang="en",t.label="English",s.appendChild(t),s}}),Be.isSupported=function(){try{Be.TEST_VID.volume=.5}catch{return!1}return!(!Be.TEST_VID||!Be.TEST_VID.canPlayType)},Be.canPlayType=function(s){return Be.TEST_VID.canPlayType(s)},Be.canPlaySource=function(s,t){return Be.canPlayType(s.type)},Be.canControlVolume=function(){try{var s=Be.TEST_VID.volume;Be.TEST_VID.volume=s/2+.1;var t=s!==Be.TEST_VID.volume;return t&&We?(window.setTimeout(function(){Be&&Be.prototype&&(Be.prototype.featuresVolumeControl=s!==Be.TEST_VID.volume)}),!1):t}catch{return!1}},Be.canMuteVolume=function(){try{var s=Be.TEST_VID.muted;return Be.TEST_VID.muted=!s,Be.TEST_VID.muted?de(Be.TEST_VID,"muted","muted"):be(Be.TEST_VID,"muted"),s!==Be.TEST_VID.muted}catch{return!1}},Be.canControlPlaybackRate=function(){if(_e&&ht&&qt<58)return!1;try{var s=Be.TEST_VID.playbackRate;return Be.TEST_VID.playbackRate=s/2+.1,s!==Be.TEST_VID.playbackRate}catch{return!1}},Be.canOverrideAttributes=function(){try{var s=function(){};Object.defineProperty(document.createElement("video"),"src",{get:s,set:s}),Object.defineProperty(document.createElement("audio"),"src",{get:s,set:s}),Object.defineProperty(document.createElement("video"),"innerHTML",{get:s,set:s}),Object.defineProperty(document.createElement("audio"),"innerHTML",{get:s,set:s})}catch{return!1}return!0},Be.supportsNativeTextTracks=function(){return it||We&&ht},Be.supportsNativeVideoTracks=function(){return!(!Be.TEST_VID||!Be.TEST_VID.videoTracks)},Be.supportsNativeAudioTracks=function(){return!(!Be.TEST_VID||!Be.TEST_VID.audioTracks)},Be.Events=["loadstart","suspend","abort","error","emptied","stalled","loadedmetadata","loadeddata","canplay","canplaythrough","playing","waiting","seeking","seeked","ended","durationchange","timeupdate","progress","play","pause","ratechange","resize","volumechange"],[["featuresMuteControl","canMuteVolume"],["featuresPlaybackRate","canControlPlaybackRate"],["featuresSourceset","canOverrideAttributes"],["featuresNativeTextTracks","supportsNativeTextTracks"],["featuresNativeVideoTracks","supportsNativeVideoTracks"],["featuresNativeAudioTracks","supportsNativeAudioTracks"]].forEach(function(s){var t=s[0],r=s[1];oo(Be.prototype,t,function(){return Be[r]()},!0)}),Be.prototype.featuresVolumeControl=Be.canControlVolume(),Be.prototype.movingMediaElementInDOM=!We,Be.prototype.featuresFullscreenResize=!0,Be.prototype.featuresProgressEvents=!0,Be.prototype.featuresTimeupdateEvents=!0,Be.patchCanPlayType=function(){Xe>=4&&!dt&&!ht&&(pn=Be.TEST_VID&&Be.TEST_VID.constructor.prototype.canPlayType,Be.TEST_VID.constructor.prototype.canPlayType=function(s){return s&&/^application\/(?:x-|vnd\.apple\.)mpegurl/i.test(s)?"maybe":pn.call(this,s)})},Be.unpatchCanPlayType=function(){var s=Be.TEST_VID.constructor.prototype.canPlayType;return pn&&(Be.TEST_VID.constructor.prototype.canPlayType=pn),s},Be.patchCanPlayType(),Be.disposeMediaElement=function(s){if(s){for(s.parentNode&&s.parentNode.removeChild(s);s.hasChildNodes();)s.removeChild(s.firstChild);s.removeAttribute("src"),"function"==typeof s.load&&function(){try{s.load()}catch{}}()}},Be.resetMediaElement=function(s){if(s){for(var t=s.querySelectorAll("source"),r=t.length;r--;)s.removeChild(t[r]);s.removeAttribute("src"),"function"==typeof s.load&&function(){try{s.load()}catch{}}()}},["muted","defaultMuted","autoplay","controls","loop","playsinline"].forEach(function(s){Be.prototype[s]=function(){return this.el_[s]||this.el_.hasAttribute(s)}}),["muted","defaultMuted","autoplay","loop","playsinline"].forEach(function(s){Be.prototype["set"+Wt(s)]=function(t){this.el_[s]=t,t?this.el_.setAttribute(s,s):this.el_.removeAttribute(s)}}),["paused","currentTime","buffered","volume","poster","preload","error","seeking","seekable","ended","playbackRate","defaultPlaybackRate","disablePictureInPicture","played","networkState","readyState","videoWidth","videoHeight","crossOrigin"].forEach(function(s){Be.prototype[s]=function(){return this.el_[s]}}),["volume","src","poster","preload","playbackRate","defaultPlaybackRate","disablePictureInPicture","crossOrigin"].forEach(function(s){Be.prototype["set"+Wt(s)]=function(t){this.el_[s]=t}}),["pause","load","play"].forEach(function(s){Be.prototype[s]=function(){return this.el_[s]()}}),Dt.withSourceHandlers(Be),Be.nativeSourceHandler={},Be.nativeSourceHandler.canPlayType=function(s){try{return Be.TEST_VID.canPlayType(s)}catch{return""}},Be.nativeSourceHandler.canHandleSource=function(s,t){if(s.type)return Be.nativeSourceHandler.canPlayType(s.type);if(s.src){var r=Is(s.src);return Be.nativeSourceHandler.canPlayType("video/"+r)}return""},Be.nativeSourceHandler.handleSource=function(s,t,r){t.setSrc(s.src)},Be.nativeSourceHandler.dispose=function(){},Be.registerSourceHandler(Be.nativeSourceHandler),Dt.registerTech("Html5",Be);var Nl=["progress","abort","suspend","emptied","stalled","loadedmetadata","loadeddata","timeupdate","resize","volumechange","texttrackchange"],uo={canplay:"CanPlay",canplaythrough:"CanPlayThrough",playing:"Playing",seeked:"Seeked"},lo=["tiny","xsmall","small","medium","large","xlarge","huge"],mn={};lo.forEach(function(s){var t="x"===s.charAt(0)?"x-"+s.substring(1):s;mn[s]="vjs-layout-"+t});var Hp={tiny:210,xsmall:320,small:425,medium:768,large:1440,xlarge:2560,huge:1/0},Qt=function(s){function t(a,e,i){var n;if(a.id=a.id||e.id||"vjs_video_"+Ht(),(e=te(t.getTagSettings(a),e)).initChildren=!1,e.createEl=!1,e.evented=!1,e.reportTouchActivity=!1,!e.language)if("function"==typeof a.closest){var o=a.closest("[lang]");o&&o.getAttribute&&(e.language=o.getAttribute("lang"))}else for(var l=a;l&&1===l.nodeType;){if(X(l).hasOwnProperty("lang")){e.language=l.getAttribute("lang");break}l=l.parentNode}if((n=s.call(this,null,e,i)||this).boundDocumentFullscreenChange_=function(v){return n.documentFullscreenChange_(v)},n.boundFullWindowOnEscKey_=function(v){return n.fullWindowOnEscKey(v)},n.boundUpdateStyleEl_=function(v){return n.updateStyleEl_(v)},n.boundApplyInitTime_=function(v){return n.applyInitTime_(v)},n.boundUpdateCurrentBreakpoint_=function(v){return n.updateCurrentBreakpoint_(v)},n.boundHandleTechClick_=function(v){return n.handleTechClick_(v)},n.boundHandleTechDoubleClick_=function(v){return n.handleTechDoubleClick_(v)},n.boundHandleTechTouchStart_=function(v){return n.handleTechTouchStart_(v)},n.boundHandleTechTouchMove_=function(v){return n.handleTechTouchMove_(v)},n.boundHandleTechTouchEnd_=function(v){return n.handleTechTouchEnd_(v)},n.boundHandleTechTap_=function(v){return n.handleTechTap_(v)},n.isFullscreen_=!1,n.log=O(n.id_),n.fsApi_=c,n.isPosterFromTech_=!1,n.queuedCallbacks_=[],n.isReady_=!1,n.hasStarted_=!1,n.userActive_=!1,n.debugEnabled_=!1,!n.options_||!n.options_.techOrder||!n.options_.techOrder.length)throw new Error("No techOrder specified. Did you overwrite videojs.options instead of just changing the properties you want to override?");if(n.tag=a,n.tagAttributes=a&&X(a),n.language(n.options_.language),e.languages){var d={};Object.getOwnPropertyNames(e.languages).forEach(function(v){d[v.toLowerCase()]=e.languages[v]}),n.languages_=d}else n.languages_=t.prototype.options_.languages;n.resetCache_(),n.poster_=e.poster||"",n.controls_=!!e.controls,a.controls=!1,a.removeAttribute("controls"),n.changingSrc_=!1,n.playCallbacks_=[],n.playTerminatedQueue_=[],a.hasAttribute("autoplay")?n.autoplay(!0):n.autoplay(n.options_.autoplay),e.plugins&&Object.keys(e.plugins).forEach(function(v){if("function"!=typeof n[v])throw new Error('plugin "'+v+'" does not exist')}),n.scrubbing_=!1,n.el_=n.createEl(),bs(Ze(n),{eventBusKey:"el_"}),n.fsApi_.requestFullscreen&&(vt(document,n.fsApi_.fullscreenchange,n.boundDocumentFullscreenChange_),n.on(n.fsApi_.fullscreenchange,n.boundDocumentFullscreenChange_)),n.fluid_&&n.on(["playerreset","resize"],n.boundUpdateStyleEl_);var h=Rt(n.options_);e.plugins&&Object.keys(e.plugins).forEach(function(v){n[v](e.plugins[v])}),e.debug&&n.debug(!0),n.options_.playerOptions=h,n.middleware_=[],n.playbackRates(e.playbackRates),n.initChildren(),n.isAudio("audio"===a.nodeName.toLowerCase()),n.controls()?n.addClass("vjs-controls-enabled"):n.addClass("vjs-controls-disabled"),n.el_.setAttribute("role","region"),n.isAudio()?n.el_.setAttribute("aria-label",n.localize("Audio Player")):n.el_.setAttribute("aria-label",n.localize("Video Player")),n.isAudio()&&n.addClass("vjs-audio"),n.flexNotSupported_()&&n.addClass("vjs-no-flex"),Lt&&n.addClass("vjs-touch-enabled"),We||n.addClass("vjs-workinghover"),t.players[n.id_]=Ze(n);var y=B.split(".")[0];return n.addClass("vjs-v"+y),n.userActive(!0),n.reportUserActivity(),n.one("play",function(v){return n.listenForUserActivity_(v)}),n.on("stageclick",function(v){return n.handleStageClick_(v)}),n.on("keydown",function(v){return n.handleKeyDown(v)}),n.on("languagechange",function(v){return n.handleLanguagechange(v)}),n.breakpoints(n.options_.breakpoints),n.responsive(n.options_.responsive),n}Oe(t,s);var r=t.prototype;return r.dispose=function(){var e=this;this.trigger("dispose"),this.off("dispose"),bt(document,this.fsApi_.fullscreenchange,this.boundDocumentFullscreenChange_),bt(document,"keydown",this.boundFullWindowOnEscKey_),this.styleEl_&&this.styleEl_.parentNode&&(this.styleEl_.parentNode.removeChild(this.styleEl_),this.styleEl_=null),t.players[this.id_]=null,this.tag&&this.tag.player&&(this.tag.player=null),this.el_&&this.el_.player&&(this.el_.player=null),this.tech_&&(this.tech_.dispose(),this.isPosterFromTech_=!1,this.poster_=""),this.playerElIngest_&&(this.playerElIngest_=null),this.tag&&(this.tag=null),function lp(s){Fs[s.id()]=null}(this),_r.names.forEach(function(i){var n=_r[i],o=e[n.getterName]();o&&o.off&&o.off()}),s.prototype.dispose.call(this)},r.createEl=function(){var i,e=this.tag,n=this.playerElIngest_=e.parentNode&&e.parentNode.hasAttribute&&e.parentNode.hasAttribute("data-vjs-player"),o="video-js"===this.tag.tagName.toLowerCase();n?i=this.el_=e.parentNode:o||(i=this.el_=s.prototype.createEl.call(this,"div"));var l=X(e);if(o){for(i=this.el_=e,e=this.tag=document.createElement("video");i.children.length;)e.appendChild(i.firstChild);lr(i,"video-js")||zt(i,"video-js"),i.appendChild(e),n=this.playerElIngest_=i,Object.keys(i).forEach(function(A){try{e[A]=i[A]}catch{}})}if(e.setAttribute("tabindex","-1"),l.tabindex="-1",(St||ht&&_t)&&(e.setAttribute("role","application"),l.role="application"),e.removeAttribute("width"),e.removeAttribute("height"),"width"in l&&delete l.width,"height"in l&&delete l.height,Object.getOwnPropertyNames(l).forEach(function(A){o&&"class"===A||i.setAttribute(A,l[A]),o&&e.setAttribute(A,l[A])}),e.playerId=e.id,e.id+="_html5_api",e.className="vjs-tech",e.player=i.player=this,this.addClass("vjs-paused"),!0!==window.VIDEOJS_NO_DYNAMIC_STYLE){this.styleEl_=At("vjs-styles-dimensions");var d=we(".vjs-styles-defaults"),h=we("head");h.insertBefore(this.styleEl_,d?d.nextSibling:h.firstChild)}this.fill_=!1,this.fluid_=!1,this.width(this.options_.width),this.height(this.options_.height),this.fill(this.options_.fill),this.fluid(this.options_.fluid),this.aspectRatio(this.options_.aspectRatio),this.crossOrigin(this.options_.crossOrigin||this.options_.crossorigin);for(var y=e.getElementsByTagName("a"),v=0;v0?this.videoWidth()+":"+this.videoHeight():"16:9").split(":"),v=y[1]/y[0];o=void 0!==this.width_?this.width_:void 0!==this.height_?this.height_/v:this.videoWidth()||300,l=void 0!==this.height_?this.height_:o*v,h=/^[^a-zA-Z]/.test(this.id())?"dimensions-"+this.id():this.id()+"-dimensions",this.addClass(h),Gt(this.styleEl_,"\n ."+h+" {\n width: "+o+"px;\n height: "+l+"px;\n }\n\n ."+h+".vjs-fluid {\n padding-top: "+100*v+"%;\n }\n ")}else{var e="number"==typeof this.width_?this.width_:this.options_.width,i="number"==typeof this.height_?this.height_:this.options_.height,n=this.tech_&&this.tech_.el();n&&(e>=0&&(n.width=e),i>=0&&(n.height=i))}},r.loadTech_=function(e,i){var n=this;this.tech_&&this.unloadTech_();var o=Wt(e),l=e.charAt(0).toLowerCase()+e.slice(1);"Html5"!==o&&this.tag&&(Dt.getTech("Html5").disposeMediaElement(this.tag),this.tag.player=null,this.tag=null),this.techName_=o,this.isReady_=!1;var d=this.autoplay();("string"==typeof this.autoplay()||!0===this.autoplay()&&this.options_.normalizeAutoplay)&&(d=!1);var h={source:i,autoplay:d,nativeControlsForTouch:this.options_.nativeControlsForTouch,playerId:this.id(),techId:this.id()+"_"+l+"_api",playsinline:this.options_.playsinline,preload:this.options_.preload,loop:this.options_.loop,disablePictureInPicture:this.options_.disablePictureInPicture,muted:this.options_.muted,poster:this.poster(),language:this.language(),playerElIngest:this.playerElIngest_||!1,"vtt.js":this.options_["vtt.js"],canOverridePoster:!!this.options_.techCanOverridePoster,enableSourceset:this.options_.enableSourceset,Promise:this.options_.Promise};_r.names.forEach(function(v){var S=_r[v];h[S.getterName]=n[S.privateName]}),te(h,this.options_[o]),te(h,this.options_[l]),te(h,this.options_[e.toLowerCase()]),this.tag&&(h.tag=this.tag),i&&i.src===this.cache_.src&&this.cache_.currentTime>0&&(h.startTime=this.cache_.currentTime);var y=Dt.getTech(e);if(!y)throw new Error("No Tech named '"+o+"' exists! '"+o+"' should be registered using videojs.registerTech()'");this.tech_=new y(h),this.tech_.ready(It(this,this.handleTechReady_),!0),Lu_jsonToTextTracks(this.textTracksJson_||[],this.tech_),Nl.forEach(function(v){n.on(n.tech_,v,function(S){return n["handleTech"+Wt(v)+"_"](S)})}),Object.keys(uo).forEach(function(v){n.on(n.tech_,v,function(S){0===n.tech_.playbackRate()&&n.tech_.seeking()?n.queuedCallbacks_.push({callback:n["handleTech"+uo[v]+"_"].bind(n),event:S}):n["handleTech"+uo[v]+"_"](S)})}),this.on(this.tech_,"loadstart",function(v){return n.handleTechLoadStart_(v)}),this.on(this.tech_,"sourceset",function(v){return n.handleTechSourceset_(v)}),this.on(this.tech_,"waiting",function(v){return n.handleTechWaiting_(v)}),this.on(this.tech_,"ended",function(v){return n.handleTechEnded_(v)}),this.on(this.tech_,"seeking",function(v){return n.handleTechSeeking_(v)}),this.on(this.tech_,"play",function(v){return n.handleTechPlay_(v)}),this.on(this.tech_,"firstplay",function(v){return n.handleTechFirstPlay_(v)}),this.on(this.tech_,"pause",function(v){return n.handleTechPause_(v)}),this.on(this.tech_,"durationchange",function(v){return n.handleTechDurationChange_(v)}),this.on(this.tech_,"fullscreenchange",function(v,S){return n.handleTechFullscreenChange_(v,S)}),this.on(this.tech_,"fullscreenerror",function(v,S){return n.handleTechFullscreenError_(v,S)}),this.on(this.tech_,"enterpictureinpicture",function(v){return n.handleTechEnterPictureInPicture_(v)}),this.on(this.tech_,"leavepictureinpicture",function(v){return n.handleTechLeavePictureInPicture_(v)}),this.on(this.tech_,"error",function(v){return n.handleTechError_(v)}),this.on(this.tech_,"posterchange",function(v){return n.handleTechPosterChange_(v)}),this.on(this.tech_,"textdata",function(v){return n.handleTechTextData_(v)}),this.on(this.tech_,"ratechange",function(v){return n.handleTechRateChange_(v)}),this.on(this.tech_,"loadedmetadata",this.boundUpdateStyleEl_),this.usingNativeControls(this.techGet_("controls")),this.controls()&&!this.usingNativeControls()&&this.addTechControlsListeners_(),this.tech_.el().parentNode!==this.el()&&("Html5"!==o||!this.tag)&&Fr(this.tech_.el(),this.el()),this.tag&&(this.tag.player=null,this.tag=null)},r.unloadTech_=function(){var e=this;_r.names.forEach(function(i){var n=_r[i];e[n.privateName]=e[n.getterName]()}),this.textTracksJson_=Lu_textTracksToJson(this.tech_),this.isReady_=!1,this.tech_.dispose(),this.tech_=!1,this.isPosterFromTech_&&(this.poster_="",this.trigger("posterchange")),this.isPosterFromTech_=!1},r.tech=function(e){return void 0===e&&E.warn("Using the tech directly can be dangerous. I hope you know what you're doing.\nSee https://github.com/videojs/video.js/issues/2617 for more info.\n"),this.tech_},r.addTechControlsListeners_=function(){this.removeTechControlsListeners_(),this.on(this.tech_,"click",this.boundHandleTechClick_),this.on(this.tech_,"dblclick",this.boundHandleTechDoubleClick_),this.on(this.tech_,"touchstart",this.boundHandleTechTouchStart_),this.on(this.tech_,"touchmove",this.boundHandleTechTouchMove_),this.on(this.tech_,"touchend",this.boundHandleTechTouchEnd_),this.on(this.tech_,"tap",this.boundHandleTechTap_)},r.removeTechControlsListeners_=function(){this.off(this.tech_,"tap",this.boundHandleTechTap_),this.off(this.tech_,"touchstart",this.boundHandleTechTouchStart_),this.off(this.tech_,"touchmove",this.boundHandleTechTouchMove_),this.off(this.tech_,"touchend",this.boundHandleTechTouchEnd_),this.off(this.tech_,"click",this.boundHandleTechClick_),this.off(this.tech_,"dblclick",this.boundHandleTechDoubleClick_)},r.handleTechReady_=function(){this.triggerReady(),this.cache_.volume&&this.techCall_("setVolume",this.cache_.volume),this.handleTechPosterChange_(),this.handleTechDurationChange_()},r.handleTechLoadStart_=function(){this.removeClass("vjs-ended"),this.removeClass("vjs-seeking"),this.error(null),this.handleTechDurationChange_(),this.paused()?(this.hasStarted(!1),this.trigger("loadstart")):(this.trigger("loadstart"),this.trigger("firstplay")),this.manualAutoplay_(!0===this.autoplay()&&this.options_.normalizeAutoplay?"play":this.autoplay())},r.manualAutoplay_=function(e){var i=this;if(this.tech_&&"string"==typeof e){var o,n=function(){var d=i.muted();i.muted(!0);var h=function(){i.muted(d)};i.playTerminatedQueue_.push(h);var y=i.play();if(fa(y))return y.catch(function(v){throw h(),new Error("Rejection at manualAutoplay. Restoring muted value. "+(v||""))})};if("any"!==e||this.muted()?o="muted"!==e||this.muted()?this.play():n():fa(o=this.play())&&(o=o.catch(n)),fa(o))return o.then(function(){i.trigger({type:"autoplay-success",autoplay:e})}).catch(function(){i.trigger({type:"autoplay-failure",autoplay:e})})}},r.updateSourceCaches_=function(e){void 0===e&&(e="");var i=e,n="";"string"!=typeof i&&(i=e.src,n=e.type),this.cache_.source=this.cache_.source||{},this.cache_.sources=this.cache_.sources||[],i&&!n&&(n=function(t,r){if(!r)return"";if(t.cache_.source.src===r&&t.cache_.source.type)return t.cache_.source.type;var a=t.cache_.sources.filter(function(o){return o.src===r});if(a.length)return a[0].type;for(var e=t.$$("source"),i=0;i0&&0===this.cache_.lastPlaybackRate&&(this.queuedCallbacks_.forEach(function(e){return e.callback(e.event)}),this.queuedCallbacks_=[]),this.cache_.lastPlaybackRate=this.tech_.playbackRate(),this.trigger("ratechange")},r.handleTechWaiting_=function(){var e=this;this.addClass("vjs-waiting"),this.trigger("waiting");var i=this.currentTime();this.on("timeupdate",function o(){i!==e.currentTime()&&(e.removeClass("vjs-waiting"),e.off("timeupdate",o))})},r.handleTechCanPlay_=function(){this.removeClass("vjs-waiting"),this.trigger("canplay")},r.handleTechCanPlayThrough_=function(){this.removeClass("vjs-waiting"),this.trigger("canplaythrough")},r.handleTechPlaying_=function(){this.removeClass("vjs-waiting"),this.trigger("playing")},r.handleTechSeeking_=function(){this.addClass("vjs-seeking"),this.trigger("seeking")},r.handleTechSeeked_=function(){this.removeClass("vjs-seeking"),this.removeClass("vjs-ended"),this.trigger("seeked")},r.handleTechFirstPlay_=function(){this.options_.starttime&&(E.warn("Passing the `starttime` option to the player will be deprecated in 6.0"),this.currentTime(this.options_.starttime)),this.addClass("vjs-has-started"),this.trigger("firstplay")},r.handleTechPause_=function(){this.removeClass("vjs-playing"),this.addClass("vjs-paused"),this.trigger("pause")},r.handleTechEnded_=function(){this.addClass("vjs-ended"),this.removeClass("vjs-waiting"),this.options_.loop?(this.currentTime(0),this.play()):this.paused()||this.pause(),this.trigger("ended")},r.handleTechDurationChange_=function(){this.duration(this.techGet_("duration"))},r.handleTechClick_=function(e){!this.controls_||(void 0===this.options_||void 0===this.options_.userActions||void 0===this.options_.userActions.click||!1!==this.options_.userActions.click)&&(void 0!==this.options_&&void 0!==this.options_.userActions&&"function"==typeof this.options_.userActions.click?this.options_.userActions.click.call(this,e):this.paused()?Wr(this.play()):this.pause())},r.handleTechDoubleClick_=function(e){this.controls_&&(Array.prototype.some.call(this.$$(".vjs-control-bar, .vjs-modal-dialog"),function(n){return n.contains(e.target)})||(void 0===this.options_||void 0===this.options_.userActions||void 0===this.options_.userActions.doubleClick||!1!==this.options_.userActions.doubleClick)&&(void 0!==this.options_&&void 0!==this.options_.userActions&&"function"==typeof this.options_.userActions.doubleClick?this.options_.userActions.doubleClick.call(this,e):this.isFullscreen()?this.exitFullscreen():this.requestFullscreen()))},r.handleTechTap_=function(){this.userActive(!this.userActive())},r.handleTechTouchStart_=function(){this.userWasActive=this.userActive()},r.handleTechTouchMove_=function(){this.userWasActive&&this.reportUserActivity()},r.handleTechTouchEnd_=function(e){e.cancelable&&e.preventDefault()},r.handleStageClick_=function(){this.reportUserActivity()},r.toggleFullscreenClass_=function(){this.isFullscreen()?this.addClass("vjs-fullscreen"):this.removeClass("vjs-fullscreen")},r.documentFullscreenChange_=function(e){var i=e.target.player;if(!i||i===this){var n=this.el(),o=document[this.fsApi_.fullscreenElement]===n;!o&&n.matches?o=n.matches(":"+this.fsApi_.fullscreen):!o&&n.msMatchesSelector&&(o=n.msMatchesSelector(":"+this.fsApi_.fullscreen)),this.isFullscreen(o)}},r.handleTechFullscreenChange_=function(e,i){var n=this;i&&(i.nativeIOSFullscreen&&(this.addClass("vjs-ios-native-fs"),this.tech_.one("webkitendfullscreen",function(){n.removeClass("vjs-ios-native-fs")})),this.isFullscreen(i.isFullscreen))},r.handleTechFullscreenError_=function(e,i){this.trigger("fullscreenerror",i)},r.togglePictureInPictureClass_=function(){this.isInPictureInPicture()?this.addClass("vjs-picture-in-picture"):this.removeClass("vjs-picture-in-picture")},r.handleTechEnterPictureInPicture_=function(e){this.isInPictureInPicture(!0)},r.handleTechLeavePictureInPicture_=function(e){this.isInPictureInPicture(!1)},r.handleTechError_=function(){var e=this.tech_.error();this.error(e)},r.handleTechTextData_=function(){var e=null;arguments.length>1&&(e=arguments[1]),this.trigger("textdata",e)},r.getCache=function(){return this.cache_},r.resetCache_=function(){this.cache_={currentTime:0,initTime:0,inactivityTimeout:this.options_.inactivityTimeout,duration:NaN,lastVolume:1,lastPlaybackRate:this.defaultPlaybackRate(),media:null,src:"",source:{},sources:[],playbackRates:[],volume:1}},r.techCall_=function(e,i){this.ready(function(){if(e in op)return function np(s,t,r,a){return t[r](s.reduce(Ns(r),a))}(this.middleware_,this.tech_,e,i);if(e in el)return Zu(this.middleware_,this.tech_,e,i);try{this.tech_&&this.tech_[e](i)}catch(n){throw E(n),n}},!0)},r.techGet_=function(e){if(this.tech_&&this.tech_.isReady_){if(e in sp)return function ap(s,t,r){return s.reduceRight(Ns(r),t[r]())}(this.middleware_,this.tech_,e);if(e in el)return Zu(this.middleware_,this.tech_,e);try{return this.tech_[e]()}catch(i){throw void 0===this.tech_[e]?(E("Video.js: "+e+" method not defined for "+this.techName_+" playback technology.",i),i):"TypeError"===i.name?(E("Video.js: "+e+" unavailable on "+this.techName_+" playback technology element.",i),this.tech_.isReady_=!1,i):(E(i),i)}}},r.play=function(){var e=this,i=this.options_.Promise||window.Promise;return i?new i(function(n){e.play_(n)}):this.play_()},r.play_=function(e){var i=this;void 0===e&&(e=Wr),this.playCallbacks_.push(e);var n=Boolean(!this.changingSrc_&&(this.src()||this.currentSrc()));if(this.waitToPlay_&&(this.off(["ready","loadstart"],this.waitToPlay_),this.waitToPlay_=null),!this.isReady_||!n)return this.waitToPlay_=function(l){i.play_()},this.one(["ready","loadstart"],this.waitToPlay_),void(!n&&(it||We)&&this.load());var o=this.techGet_("play");null===o?this.runPlayTerminatedQueue_():this.runPlayCallbacks_(o)},r.runPlayTerminatedQueue_=function(){var e=this.playTerminatedQueue_.slice(0);this.playTerminatedQueue_=[],e.forEach(function(i){i()})},r.runPlayCallbacks_=function(e){var i=this.playCallbacks_.slice(0);this.playCallbacks_=[],this.playTerminatedQueue_=[],i.forEach(function(n){n(e)})},r.pause=function(){this.techCall_("pause")},r.paused=function(){return!1!==this.techGet_("paused")},r.played=function(){return this.techGet_("played")||yi(0,0)},r.scrubbing=function(e){if(typeof e>"u")return this.scrubbing_;this.scrubbing_=!!e,this.techCall_("setScrubbing",this.scrubbing_),e?this.addClass("vjs-scrubbing"):this.removeClass("vjs-scrubbing")},r.currentTime=function(e){return typeof e<"u"?(e<0&&(e=0),this.isReady_&&!this.changingSrc_&&this.tech_&&this.tech_.isReady_?(this.techCall_("setCurrentTime",e),void(this.cache_.initTime=0)):(this.cache_.initTime=e,this.off("canplay",this.boundApplyInitTime_),void this.one("canplay",this.boundApplyInitTime_))):(this.cache_.currentTime=this.techGet_("currentTime")||0,this.cache_.currentTime)},r.applyInitTime_=function(){this.currentTime(this.cache_.initTime)},r.duration=function(e){if(void 0===e)return void 0!==this.cache_.duration?this.cache_.duration:NaN;(e=parseFloat(e))<0&&(e=1/0),e!==this.cache_.duration&&(this.cache_.duration=e,e===1/0?this.addClass("vjs-live"):this.removeClass("vjs-live"),isNaN(e)||this.trigger("durationchange"))},r.remainingTime=function(){return this.duration()-this.currentTime()},r.remainingTimeDisplay=function(){return Math.floor(this.duration())-Math.floor(this.currentTime())},r.buffered=function(){var e=this.techGet_("buffered");return(!e||!e.length)&&(e=yi(0,0)),e},r.bufferedPercent=function(){return Ou(this.buffered(),this.duration())},r.bufferedEnd=function(){var e=this.buffered(),i=this.duration(),n=e.end(e.length-1);return n>i&&(n=i),n},r.volume=function(e){var i;return void 0!==e?(i=Math.max(0,Math.min(1,parseFloat(e))),this.cache_.volume=i,this.techCall_("setVolume",i),void(i>0&&this.lastVolume_(i))):(i=parseFloat(this.techGet_("volume")),isNaN(i)?1:i)},r.muted=function(e){if(void 0===e)return this.techGet_("muted")||!1;this.techCall_("setMuted",e)},r.defaultMuted=function(e){return void 0!==e?this.techCall_("setDefaultMuted",e):this.techGet_("defaultMuted")||!1},r.lastVolume_=function(e){if(void 0===e||0===e)return this.cache_.lastVolume;this.cache_.lastVolume=e},r.supportsFullScreen=function(){return this.techGet_("supportsFullScreen")||!1},r.isFullscreen=function(e){if(void 0!==e){var i=this.isFullscreen_;return this.isFullscreen_=Boolean(e),this.isFullscreen_!==i&&this.fsApi_.prefixed&&this.trigger("fullscreenchange"),void this.toggleFullscreenClass_()}return this.isFullscreen_},r.requestFullscreen=function(e){var i=this.options_.Promise||window.Promise;if(i){var n=this;return new i(function(o,l){function d(){n.off("fullscreenerror",y),n.off("fullscreenchange",h)}function h(){d(),o()}function y(S,A){d(),l(A)}n.one("fullscreenchange",h),n.one("fullscreenerror",y);var v=n.requestFullscreenHelper_(e);v&&(v.then(d,d),v.then(o,l))})}return this.requestFullscreenHelper_()},r.requestFullscreenHelper_=function(e){var n,i=this;if(this.fsApi_.prefixed||(n=this.options_.fullscreen&&this.options_.fullscreen.options||{},void 0!==e&&(n=e)),this.fsApi_.requestFullscreen){var o=this.el_[this.fsApi_.requestFullscreen](n);return o&&o.then(function(){return i.isFullscreen(!0)},function(){return i.isFullscreen(!1)}),o}this.tech_.supportsFullScreen()&&!this.options_.preferFullWindow?this.techCall_("enterFullScreen"):this.enterFullWindow()},r.exitFullscreen=function(){var e=this.options_.Promise||window.Promise;if(e){var i=this;return new e(function(n,o){function l(){i.off("fullscreenerror",h),i.off("fullscreenchange",d)}function d(){l(),n()}function h(v,S){l(),o(S)}i.one("fullscreenchange",d),i.one("fullscreenerror",h);var y=i.exitFullscreenHelper_();y&&(y.then(l,l),y.then(n,o))})}return this.exitFullscreenHelper_()},r.exitFullscreenHelper_=function(){var e=this;if(this.fsApi_.requestFullscreen){var i=document[this.fsApi_.exitFullscreen]();return i&&Wr(i.then(function(){return e.isFullscreen(!1)})),i}this.tech_.supportsFullScreen()&&!this.options_.preferFullWindow?this.techCall_("exitFullScreen"):this.exitFullWindow()},r.enterFullWindow=function(){this.isFullscreen(!0),this.isFullWindow=!0,this.docOrigOverflow=document.documentElement.style.overflow,vt(document,"keydown",this.boundFullWindowOnEscKey_),document.documentElement.style.overflow="hidden",zt(document.body,"vjs-full-window"),this.trigger("enterFullWindow")},r.fullWindowOnEscKey=function(e){Ye.isEventKey(e,"Esc")&&!0===this.isFullscreen()&&(this.isFullWindow?this.exitFullWindow():this.exitFullscreen())},r.exitFullWindow=function(){this.isFullscreen(!1),this.isFullWindow=!1,bt(document,"keydown",this.boundFullWindowOnEscKey_),document.documentElement.style.overflow=this.docOrigOverflow,Ar(document.body,"vjs-full-window"),this.trigger("exitFullWindow")},r.disablePictureInPicture=function(e){if(void 0===e)return this.techGet_("disablePictureInPicture");this.techCall_("setDisablePictureInPicture",e),this.options_.disablePictureInPicture=e,this.trigger("disablepictureinpicturechanged")},r.isInPictureInPicture=function(e){return void 0!==e?(this.isInPictureInPicture_=!!e,void this.togglePictureInPictureClass_()):!!this.isInPictureInPicture_},r.requestPictureInPicture=function(){if("pictureInPictureEnabled"in document&&!1===this.disablePictureInPicture())return this.techGet_("requestPictureInPicture")},r.exitPictureInPicture=function(){if("pictureInPictureEnabled"in document)return document.exitPictureInPicture()},r.handleKeyDown=function(e){var i=this.options_.userActions;if(i&&i.hotkeys){(function(l){var d=l.tagName.toLowerCase();if(l.isContentEditable)return!0;if("input"===d)return-1===["button","checkbox","hidden","radio","reset","submit"].indexOf(l.type);return-1!==["textarea"].indexOf(d)})(this.el_.ownerDocument.activeElement)||("function"==typeof i.hotkeys?i.hotkeys.call(this,e):this.handleHotkeys(e))}},r.handleHotkeys=function(e){var i=this.options_.userActions?this.options_.userActions.hotkeys:{},n=i.fullscreenKey,o=void 0===n?function(I){return Ye.isEventKey(I,"f")}:n,l=i.muteKey,d=void 0===l?function(I){return Ye.isEventKey(I,"m")}:l,h=i.playPauseKey,y=void 0===h?function(I){return Ye.isEventKey(I,"k")||Ye.isEventKey(I,"Space")}:h;if(o.call(this,e)){e.preventDefault(),e.stopPropagation();var v=Ce.getComponent("FullscreenToggle");!1!==document[this.fsApi_.fullscreenEnabled]&&v.prototype.handleClick.call(this,e)}else if(d.call(this,e)){e.preventDefault(),e.stopPropagation(),Ce.getComponent("MuteToggle").prototype.handleClick.call(this,e)}else if(y.call(this,e)){e.preventDefault(),e.stopPropagation(),Ce.getComponent("PlayToggle").prototype.handleClick.call(this,e)}},r.canPlayType=function(e){for(var i,n=0,o=this.options_.techOrder;n"u")return this.cache_.src||"";this.resetRetryOnError_&&this.resetRetryOnError_();var o=hp(e);if(o.length){if(this.changingSrc_=!0,i||(this.cache_.sources=o),this.updateSourceCaches_(o[0]),rp(this,o[0],function(h,y){if(n.middleware_=y,i||(n.cache_.sources=o),n.updateSourceCaches_(h),n.src_(h))return o.length>1?n.handleSrc_(o.slice(1)):(n.changingSrc_=!1,n.setTimeout(function(){this.error({code:4,message:this.localize(this.options_.notSupportedMessage)})},0),void n.triggerReady());!function ip(s,t){s.forEach(function(r){return r.setTech&&r.setTech(t)})}(y,n.tech_)}),this.options_.retryOnError&&o.length>1){var l=function(){n.error(null),n.handleSrc_(o.slice(1),!0)},d=function(){n.off("error",l)};this.one("error",l),this.one("playing",d),this.resetRetryOnError_=function(){n.off("error",l),n.off("playing",d)}}}else this.setTimeout(function(){this.error({code:4,message:this.localize(this.options_.notSupportedMessage)})},0)},r.src=function(e){return this.handleSrc_(e,!1)},r.src_=function(e){var i=this,n=this.selectSource([e]);return!n||(function(t,r){return Wt(t)===Wt(r)}(n.tech,this.techName_)?(this.ready(function(){this.tech_.constructor.prototype.hasOwnProperty("setSource")?this.techCall_("setSource",e):this.techCall_("src",e.src),this.changingSrc_=!1},!0),!1):(this.changingSrc_=!0,this.loadTech_(n.tech,n.source),this.tech_.ready(function(){i.changingSrc_=!1}),!1))},r.load=function(){this.techCall_("load")},r.reset=function(){var e=this,i=this.options_.Promise||window.Promise;this.paused()||!i?this.doReset_():Wr(this.play().then(function(){return e.doReset_()}))},r.doReset_=function(){this.tech_&&this.tech_.clearTracks("text"),this.resetCache_(),this.poster(""),this.loadTech_(this.options_.techOrder[0],null),this.techCall_("reset"),this.resetControlBarUI_(),ii(this)&&this.trigger("playerreset")},r.resetControlBarUI_=function(){this.resetProgressBar_(),this.resetPlaybackRate_(),this.resetVolumeBar_()},r.resetProgressBar_=function(){this.currentTime(0);var e=this.controlBar,i=e.durationDisplay,n=e.remainingTimeDisplay;i&&i.updateContent(),n&&n.updateContent()},r.resetPlaybackRate_=function(){this.playbackRate(this.defaultPlaybackRate()),this.handleTechRateChange_()},r.resetVolumeBar_=function(){this.volume(1),this.trigger("volumechange")},r.currentSources=function(){var e=this.currentSource(),i=[];return 0!==Object.keys(e).length&&i.push(e),this.cache_.sources||i},r.currentSource=function(){return this.cache_.source||{}},r.currentSrc=function(){return this.currentSource()&&this.currentSource().src||""},r.currentType=function(){return this.currentSource()&&this.currentSource().type||""},r.preload=function(e){return void 0!==e?(this.techCall_("setPreload",e),void(this.options_.preload=e)):this.techGet_("preload")},r.autoplay=function(e){if(void 0===e)return this.options_.autoplay||!1;var i;"string"==typeof e&&/(any|play|muted)/.test(e)||!0===e&&this.options_.normalizeAutoplay?(this.options_.autoplay=e,this.manualAutoplay_("string"==typeof e?e:"play"),i=!1):this.options_.autoplay=!!e,i=typeof i>"u"?this.options_.autoplay:i,this.tech_&&this.techCall_("setAutoplay",i)},r.playsinline=function(e){return void 0!==e?(this.techCall_("setPlaysinline",e),this.options_.playsinline=e,this):this.techGet_("playsinline")},r.loop=function(e){return void 0!==e?(this.techCall_("setLoop",e),void(this.options_.loop=e)):this.techGet_("loop")},r.poster=function(e){if(void 0===e)return this.poster_;e||(e=""),e!==this.poster_&&(this.poster_=e,this.techCall_("setPoster",e),this.isPosterFromTech_=!1,this.trigger("posterchange"))},r.handleTechPosterChange_=function(){if((!this.poster_||this.options_.techCanOverridePoster)&&this.tech_&&this.tech_.poster){var e=this.tech_.poster()||"";e!==this.poster_&&(this.poster_=e,this.isPosterFromTech_=!0,this.trigger("posterchange"))}},r.controls=function(e){if(void 0===e)return!!this.controls_;e=!!e,this.controls_!==e&&(this.controls_=e,this.usingNativeControls()&&this.techCall_("setControls",e),this.controls_?(this.removeClass("vjs-controls-disabled"),this.addClass("vjs-controls-enabled"),this.trigger("controlsenabled"),this.usingNativeControls()||this.addTechControlsListeners_()):(this.removeClass("vjs-controls-enabled"),this.addClass("vjs-controls-disabled"),this.trigger("controlsdisabled"),this.usingNativeControls()||this.removeTechControlsListeners_()))},r.usingNativeControls=function(e){if(void 0===e)return!!this.usingNativeControls_;e=!!e,this.usingNativeControls_!==e&&(this.usingNativeControls_=e,this.usingNativeControls_?(this.addClass("vjs-using-native-controls"),this.trigger("usingnativecontrols")):(this.removeClass("vjs-using-native-controls"),this.trigger("usingcustomcontrols")))},r.error=function(e){var i=this;if(void 0===e)return this.error_||null;if(ge("beforeerror").forEach(function(o){var l=o(i,e);N(l)&&!Array.isArray(l)||"string"==typeof l||"number"==typeof l||null===l?e=l:i.log.error("please return a value that MediaError expects in beforeerror hooks")}),this.options_.suppressNotSupportedError&&e&&4===e.code){var n=function(){this.error(e)};return this.options_.suppressNotSupportedError=!1,this.any(["click","touchstart"],n),void this.one("loadstart",function(){this.off(["click","touchstart"],n)})}if(null===e)return this.error_=e,this.removeClass("vjs-error"),void(this.errorDisplay&&this.errorDisplay.close());this.error_=new yr(e),this.addClass("vjs-error"),E.error("(CODE:"+this.error_.code+" "+yr.errorTypes[this.error_.code]+")",this.error_.message,this.error_),this.trigger("error"),ge("error").forEach(function(o){return o(i,i.error_)})},r.reportUserActivity=function(e){this.userActivity_=!0},r.userActive=function(e){if(void 0===e)return this.userActive_;if((e=!!e)!==this.userActive_){if(this.userActive_=e,this.userActive_)return this.userActivity_=!0,this.removeClass("vjs-user-inactive"),this.addClass("vjs-user-active"),void this.trigger("useractive");this.tech_&&this.tech_.one("mousemove",function(i){i.stopPropagation(),i.preventDefault()}),this.userActivity_=!1,this.removeClass("vjs-user-active"),this.addClass("vjs-user-inactive"),this.trigger("userinactive")}},r.listenForUserActivity_=function(){var e,i,n,o=It(this,this.reportUserActivity),h=function(A){o(),this.clearInterval(e)};this.on("mousedown",function(){o(),this.clearInterval(e),e=this.setInterval(o,250)}),this.on("mousemove",function(A){(A.screenX!==i||A.screenY!==n)&&(i=A.screenX,n=A.screenY,o())}),this.on("mouseup",h),this.on("mouseleave",h);var v,y=this.getChild("controlBar");y&&!We&&!_e&&(y.on("mouseenter",function(S){0!==this.player().options_.inactivityTimeout&&(this.player().cache_.inactivityTimeout=this.player().options_.inactivityTimeout),this.player().options_.inactivityTimeout=0}),y.on("mouseleave",function(S){this.player().options_.inactivityTimeout=this.player().cache_.inactivityTimeout})),this.on("keydown",o),this.on("keyup",o),this.setInterval(function(){if(this.userActivity_){this.userActivity_=!1,this.userActive(!0),this.clearTimeout(v);var S=this.options_.inactivityTimeout;S<=0||(v=this.setTimeout(function(){this.userActivity_||this.userActive(!1)},S))}},250)},r.playbackRate=function(e){if(void 0===e)return this.tech_&&this.tech_.featuresPlaybackRate?this.cache_.lastPlaybackRate||this.techGet_("playbackRate"):1;this.techCall_("setPlaybackRate",e)},r.defaultPlaybackRate=function(e){return void 0!==e?this.techCall_("setDefaultPlaybackRate",e):this.tech_&&this.tech_.featuresPlaybackRate?this.techGet_("defaultPlaybackRate"):1},r.isAudio=function(e){if(void 0===e)return!!this.isAudio_;this.isAudio_=!!e},r.addTextTrack=function(e,i,n){if(this.tech_)return this.tech_.addTextTrack(e,i,n)},r.addRemoteTextTrack=function(e,i){if(this.tech_)return this.tech_.addRemoteTextTrack(e,i)},r.removeRemoteTextTrack=function(e){void 0===e&&(e={});var n=e.track;if(n||(n=e),this.tech_)return this.tech_.removeRemoteTextTrack(n)},r.getVideoPlaybackQuality=function(){return this.techGet_("getVideoPlaybackQuality")},r.videoWidth=function(){return this.tech_&&this.tech_.videoWidth&&this.tech_.videoWidth()||0},r.videoHeight=function(){return this.tech_&&this.tech_.videoHeight&&this.tech_.videoHeight()||0},r.language=function(e){if(void 0===e)return this.language_;this.language_!==String(e).toLowerCase()&&(this.language_=String(e).toLowerCase(),ii(this)&&this.trigger("languagechange"))},r.languages=function(){return Rt(t.prototype.options_.languages,this.languages_)},r.toJSON=function(){var e=Rt(this.options_),i=e.tracks;e.tracks=[];for(var n=0;n"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}},Gp=$(function(s){function t(r,a,e){return zp()?s.exports=t=Reflect.construct:s.exports=t=function(n,o,l){var d=[null];d.push.apply(d,o);var y=new(Function.bind.apply(n,d));return l&&Bl(y,l.prototype),y},t.apply(null,arguments)}s.exports=t}),gn="plugin",qi="activePlugins_",zi={},vn=function(t){return zi.hasOwnProperty(t)},yn=function(t){return vn(t)?zi[t]:void 0},Ul=function(t,r){t[qi]=t[qi]||{},t[qi][r]=!0},_n=function(t,r,a){var e=(a?"before":"")+"pluginsetup";t.trigger(e,r),t.trigger(e+":"+r.name,r)},jl=function(t,r){return r.prototype.name=t,function(){_n(this,{name:t,plugin:r,instance:null},!0);for(var a=arguments.length,e=new Array(a),i=0;i-1},t.trigger=function(a){var e=this.listeners[a];if(e)if(2===arguments.length)for(var i=e.length,n=0;n-1;i=this.buffer.indexOf("\n"))this.trigger("data",this.buffer.substring(0,i)),this.buffer=this.buffer.substring(i+1)},t}(fo),Zp=String.fromCharCode(9),ho=function(t){var r=/([0-9.]*)?@?([0-9.]*)?/.exec(t||""),a={};return r[1]&&(a.length=parseInt(r[1],10)),r[2]&&(a.offset=parseInt(r[2],10)),a},$r=function(t){for(var i,r=t.split(new RegExp('(?:^|,)((?:[^=]*)=(?:"[^"]*"|[^,]*))')),a={},e=r.length;e--;)""!==r[e]&&((i=/([^=]*)=(.*)/.exec(r[e]).slice(1))[0]=i[0].replace(/^\s+|\s+$/g,""),i[1]=i[1].replace(/^\s+|\s+$/g,""),i[1]=i[1].replace(/^['"](.*)['"]$/g,"$1"),a[i[0]]=i[1]);return a},tm=function(s){function t(){var a;return(a=s.call(this)||this).customParsers=[],a.tagMappers=[],a}Oe(t,s);var r=t.prototype;return r.push=function(e){var n,o,i=this;if(0!==(e=e.trim()).length){if("#"!==e[0])return void this.trigger("data",{type:"uri",uri:e});this.tagMappers.reduce(function(d,h){var y=h(e);return y===e?d:d.concat([y])},[e]).forEach(function(d){for(var h=0;h0&&(n.duration=k.duration),0===k.duration&&(n.duration=.01,this.trigger("info",{message:"updating zero segment duration to a small value"})),this.manifest.segments=i},key:function(){if(k.attributes)if("NONE"!==k.attributes.METHOD)if(k.attributes.URI){if("com.apple.streamingkeydelivery"===k.attributes.KEYFORMAT)return this.manifest.contentProtection=this.manifest.contentProtection||{},void(this.manifest.contentProtection["com.apple.fps.1_0"]={attributes:k.attributes});if("urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed"===k.attributes.KEYFORMAT){return-1===["SAMPLE-AES","SAMPLE-AES-CTR","SAMPLE-AES-CENC"].indexOf(k.attributes.METHOD)?void this.trigger("warn",{message:"invalid key method provided for Widevine"}):("SAMPLE-AES-CENC"===k.attributes.METHOD&&this.trigger("warn",{message:"SAMPLE-AES-CENC is deprecated, please use SAMPLE-AES-CTR instead"}),"data:text/plain;base64,"!==k.attributes.URI.substring(0,23)?void this.trigger("warn",{message:"invalid key URI provided for Widevine"}):k.attributes.KEYID&&"0x"===k.attributes.KEYID.substring(0,2)?(this.manifest.contentProtection=this.manifest.contentProtection||{},void(this.manifest.contentProtection["com.widevine.alpha"]={attributes:{schemeIdUri:k.attributes.KEYFORMAT,keyId:k.attributes.KEYID.substring(2)},pssh:ql(k.attributes.URI.split(",")[1])})):void this.trigger("warn",{message:"invalid key ID provided for Widevine"}))}k.attributes.METHOD||this.trigger("warn",{message:"defaulting key method to AES-128"}),l={method:k.attributes.METHOD||"AES-128",uri:k.attributes.URI},typeof k.attributes.IV<"u"&&(l.iv=k.attributes.IV)}else this.trigger("warn",{message:"ignoring key declaration without URI"});else l=null;else this.trigger("warn",{message:"ignoring key declaration without attribute list"})},"media-sequence":function(){isFinite(k.number)?this.manifest.mediaSequence=k.number:this.trigger("warn",{message:"ignoring invalid media sequence: "+k.number})},"discontinuity-sequence":function(){isFinite(k.number)?(this.manifest.discontinuitySequence=k.number,S=k.number):this.trigger("warn",{message:"ignoring invalid discontinuity sequence: "+k.number})},"playlist-type":function(){/VOD|EVENT/.test(k.playlistType)?this.manifest.playlistType=k.playlistType:this.trigger("warn",{message:"ignoring unknown playlist type: "+k.playlist})},map:function(){o={},k.uri&&(o.uri=k.uri),k.byterange&&(o.byterange=k.byterange),l&&(o.key=l)},"stream-inf":function(){this.manifest.playlists=i,this.manifest.mediaGroups=this.manifest.mediaGroups||y,k.attributes?(n.attributes||(n.attributes={}),Z(n.attributes,k.attributes)):this.trigger("warn",{message:"ignoring empty stream-inf attributes"})},media:function(){if(this.manifest.mediaGroups=this.manifest.mediaGroups||y,k.attributes&&k.attributes.TYPE&&k.attributes["GROUP-ID"]&&k.attributes.NAME){var Se=this.manifest.mediaGroups[k.attributes.TYPE];Se[k.attributes["GROUP-ID"]]=Se[k.attributes["GROUP-ID"]]||{},Q=Se[k.attributes["GROUP-ID"]],(Y={default:/yes/i.test(k.attributes.DEFAULT)}).default?Y.autoselect=!0:Y.autoselect=/yes/i.test(k.attributes.AUTOSELECT),k.attributes.LANGUAGE&&(Y.language=k.attributes.LANGUAGE),k.attributes.URI&&(Y.uri=k.attributes.URI),k.attributes["INSTREAM-ID"]&&(Y.instreamId=k.attributes["INSTREAM-ID"]),k.attributes.CHARACTERISTICS&&(Y.characteristics=k.attributes.CHARACTERISTICS),k.attributes.FORCED&&(Y.forced=/yes/i.test(k.attributes.FORCED)),Q[k.attributes.NAME]=Y}else this.trigger("warn",{message:"ignoring incomplete or missing media group"})},discontinuity:function(){S+=1,n.discontinuity=!0,this.manifest.discontinuityStarts.push(i.length)},"program-date-time":function(){typeof this.manifest.dateTimeString>"u"&&(this.manifest.dateTimeString=k.dateTimeString,this.manifest.dateTimeObject=k.dateTimeObject),n.dateTimeString=k.dateTimeString,n.dateTimeObject=k.dateTimeObject},targetduration:function(){!isFinite(k.duration)||k.duration<0?this.trigger("warn",{message:"ignoring invalid target duration: "+k.duration}):(this.manifest.targetDuration=k.duration,po.call(this,this.manifest))},start:function(){k.attributes&&!isNaN(k.attributes["TIME-OFFSET"])?this.manifest.start={timeOffset:k.attributes["TIME-OFFSET"],precise:k.attributes.PRECISE}:this.trigger("warn",{message:"ignoring start declaration without appropriate attribute list"})},"cue-out":function(){n.cueOut=k.data},"cue-out-cont":function(){n.cueOutCont=k.data},"cue-in":function(){n.cueIn=k.data},skip:function(){this.manifest.skip=Gi(k.attributes),this.warnOnMissingAttributes_("#EXT-X-SKIP",k.attributes,["SKIPPED-SEGMENTS"])},part:function(){var Se=this;d=!0;var ke=this.manifest.segments.length,Fe=Gi(k.attributes);n.parts=n.parts||[],n.parts.push(Fe),Fe.byterange&&(Fe.byterange.hasOwnProperty("offset")||(Fe.byterange.offset=I),I=Fe.byterange.offset+Fe.byterange.length);var Ee=n.parts.length-1;this.warnOnMissingAttributes_("#EXT-X-PART #"+Ee+" for segment #"+ke,k.attributes,["URI","DURATION"]),this.manifest.renditionReports&&this.manifest.renditionReports.forEach(function(De,Le){De.hasOwnProperty("lastPart")||Se.trigger("warn",{message:"#EXT-X-RENDITION-REPORT #"+Le+" lacks required attribute(s): LAST-PART"})})},"server-control":function(){var Se=this.manifest.serverControl=Gi(k.attributes);Se.hasOwnProperty("canBlockReload")||(Se.canBlockReload=!1,this.trigger("info",{message:"#EXT-X-SERVER-CONTROL defaulting CAN-BLOCK-RELOAD to false"})),po.call(this,this.manifest),Se.canSkipDateranges&&!Se.hasOwnProperty("canSkipUntil")&&this.trigger("warn",{message:"#EXT-X-SERVER-CONTROL lacks required attribute CAN-SKIP-UNTIL which is required when CAN-SKIP-DATERANGES is set"})},"preload-hint":function(){var Se=this.manifest.segments.length,ke=Gi(k.attributes),Fe=ke.type&&"PART"===ke.type;n.preloadHints=n.preloadHints||[],n.preloadHints.push(ke),ke.byterange&&(ke.byterange.hasOwnProperty("offset")||(ke.byterange.offset=Fe?I:0,Fe&&(I=ke.byterange.offset+ke.byterange.length)));var Ee=n.preloadHints.length-1;if(this.warnOnMissingAttributes_("#EXT-X-PRELOAD-HINT #"+Ee+" for segment #"+Se,k.attributes,["TYPE","URI"]),ke.type)for(var De=0;De=0))throw xi(bm,new Error(s.tagName+"@"+r));for(var e=t.length-1;a"==s&&">")||"&"==s&&"&"||'"'==s&&"""||"&#"+s.charCodeAt()+";"}function Ca(s,t){if(t(s))return!0;if(s=s.firstChild)do{if(Ca(s,t))return!0}while(s=s.nextSibling)}function Pa(){}function cd(s,t,r,a){s&&s._inc++,r.namespaceURI===Ea.XMLNS&&delete t._nsMap[r.prefix?r.localName:""]}function yo(s,t,r){if(s&&s._inc){s._inc++;var a=t.childNodes;if(r)a[a.length++]=r;else{for(var e=t.firstChild,i=0;e;)a[i++]=e,e=e.nextSibling;a.length=i}}}function fd(s,t){var r=t.previousSibling,a=t.nextSibling;return r?r.nextSibling=a:s.firstChild=a,a?a.previousSibling=r:s.lastChild=r,yo(s.ownerDocument,s),t}function hd(s,t,r){var a=t.parentNode;if(a&&a.removeChild(t),t.nodeType===ai){var e=t.firstChild;if(null==e)return t;var i=t.lastChild}else e=i=t;var n=r?r.previousSibling:s.lastChild;e.previousSibling=n,i.nextSibling=r,n?n.nextSibling=e:s.firstChild=e,null==r?s.lastChild=i:r.previousSibling=i;do{e.parentNode=s}while(e!==i&&(e=e.nextSibling));return yo(s.ownerDocument||s,s),t.nodeType==ai&&(t.firstChild=t.lastChild=null),t}function Ei(){this._nsMap={}}function Cn(){}function ka(){}function _o(){}function To(){}function bo(){}function Pn(){}function pd(){}function md(){}function So(){}function kn(){}function xo(){}function gd(){}function vd(s,t){var r=[],a=9==this.nodeType&&this.documentElement||this,e=a.prefix,i=a.namespaceURI;if(i&&null==e&&null==(e=a.lookupPrefix(i)))var n=[{namespace:i,prefix:null}];return Xi(this,r,s,t,n),r.join("")}function yd(s,t,r){var a=s.prefix||"",e=s.namespaceURI;if(!e||"xml"===a&&e===Ea.XML||e===Ea.XMLNS)return!1;for(var i=r.length;i--;){var n=r[i];if(n.prefix===a)return n.namespace!==e}return!0}function Eo(s,t,r){s.push(" ",t,'="',r.replace(/[<&"]/g,dd),'"')}function Xi(s,t,r,a,e){if(e||(e=[]),a){if(!(s=a(s)))return;if("string"==typeof s)return void t.push(s)}switch(s.nodeType){case Hr:var i=s.attributes,n=i.length,Q=s.firstChild,o=s.tagName,l=o;if(!(r=Ea.isHTML(s.namespaceURI)||r)&&!s.prefix&&s.namespaceURI){for(var d,h=0;h=0;y--){if(""===(v=e[y]).prefix&&v.namespace===s.namespaceURI){d=v.namespace;break}}if(d!==s.namespaceURI)for(y=e.length-1;y>=0;y--){var v;if((v=e[y]).namespace===s.namespaceURI){v.prefix&&(l=v.prefix+":"+o);break}}}t.push("<",l);for(var S=0;S"),r&&/^script$/i.test(o))for(;Q;)Q.data?t.push(Q.data):Xi(Q,t,r,a,e.slice()),Q=Q.nextSibling;else for(;Q;)Xi(Q,t,r,a,e.slice()),Q=Q.nextSibling;t.push("")}else t.push("/>");return;case id:case ai:for(Q=s.firstChild;Q;)Xi(Q,t,r,a,e.slice()),Q=Q.nextSibling;return;case Wi:return Eo(t,s.name,s.value);case En:return t.push(s.data.replace(/[<&]/g,dd).replace(/]]>/g,"]]>"));case Zl:return t.push("");case rd:return t.push("\x3c!--",s.data,"--\x3e");case ad:var Y=s.publicId,ve=s.systemId;if(t.push("");else if(ve&&"."!=ve)t.push(" SYSTEM ",ve,">");else{var Te=s.internalSubset;Te&&t.push(" [",Te,"]"),t.push(">")}return;case td:return t.push("");case ed:return t.push("&",s.nodeName,";");default:t.push("??",s.nodeName)}}function _d(s,t,r){var a;switch(t.nodeType){case Hr:(a=t.cloneNode(!1)).ownerDocument=s;case ai:break;case Wi:r=!0}if(a||(a=t.cloneNode(!1)),a.ownerDocument=s,a.parentNode=null,r)for(var e=t.firstChild;e;)a.appendChild(_d(s,e,r)),e=e.nextSibling;return a}function wo(s,t,r){var a=new t.constructor;for(var e in t){var i=t[e];"object"!=typeof i&&i!=a[e]&&(a[e]=i)}switch(t.childNodes&&(a.childNodes=new ni),a.ownerDocument=s,a.nodeType){case Hr:var n=t.attributes,o=a.attributes=new wn,l=n.length;o._ownerElement=a;for(var d=0;d0},lookupPrefix:function(t){for(var r=this;r;){var a=r._nsMap;if(a)for(var e in a)if(a[e]==t)return e;r=r.nodeType==Wi?r.ownerDocument:r.parentNode}return null},lookupNamespaceURI:function(t){for(var r=this;r;){var a=r._nsMap;if(a&&t in a)return a[t];r=r.nodeType==Wi?r.ownerDocument:r.parentNode}return null},isDefaultNamespace:function(t){return null==this.lookupPrefix(t)}},wa(Cr,pr),wa(Cr,pr.prototype),Pa.prototype={nodeName:"#document",nodeType:id,doctype:null,documentElement:null,_inc:1,insertBefore:function(t,r){if(t.nodeType==ai){for(var a=t.firstChild;a;){var e=a.nextSibling;this.insertBefore(a,r),a=e}return t}return null==this.documentElement&&t.nodeType==Hr&&(this.documentElement=t),hd(this,t,r),t.ownerDocument=this,t},removeChild:function(t){return this.documentElement==t&&(this.documentElement=null),fd(this,t)},importNode:function(t,r){return _d(this,t,r)},getElementById:function(t){var r=null;return Ca(this.documentElement,function(a){if(a.nodeType==Hr&&a.getAttribute("id")==t)return r=a,!0}),r},getElementsByClassName:function(t){var r=Jl(t);return new Ki(this,function(a){var e=[];return r.length>0&&Ca(a.documentElement,function(i){if(i!==a&&i.nodeType===Hr){var n=i.getAttribute("class");if(n){var o=t===n;if(!o){var l=Jl(n);o=r.every(function vm(s){return function(t){return s&&-1!==s.indexOf(t)}}(l))}o&&e.push(i)}}}),e})},createElement:function(t){var r=new Ei;return r.ownerDocument=this,r.nodeName=t,r.tagName=t,r.localName=t,r.childNodes=new ni,(r.attributes=new wn)._ownerElement=r,r},createDocumentFragment:function(){var t=new kn;return t.ownerDocument=this,t.childNodes=new ni,t},createTextNode:function(t){var r=new _o;return r.ownerDocument=this,r.appendData(t),r},createComment:function(t){var r=new To;return r.ownerDocument=this,r.appendData(t),r},createCDATASection:function(t){var r=new bo;return r.ownerDocument=this,r.appendData(t),r},createProcessingInstruction:function(t,r){var a=new xo;return a.ownerDocument=this,a.tagName=a.target=t,a.nodeValue=a.data=r,a},createAttribute:function(t){var r=new Cn;return r.ownerDocument=this,r.name=t,r.nodeName=t,r.localName=t,r.specified=!0,r},createEntityReference:function(t){var r=new So;return r.ownerDocument=this,r.nodeName=t,r},createElementNS:function(t,r){var a=new Ei,e=r.split(":"),i=a.attributes=new wn;return a.childNodes=new ni,a.ownerDocument=this,a.nodeName=r,a.tagName=r,a.namespaceURI=t,2==e.length?(a.prefix=e[0],a.localName=e[1]):a.localName=r,i._ownerElement=a,a},createAttributeNS:function(t,r){var a=new Cn,e=r.split(":");return a.ownerDocument=this,a.nodeName=r,a.name=r,a.namespaceURI=t,a.specified=!0,2==e.length?(a.prefix=e[0],a.localName=e[1]):a.localName=r,a}},wr(Pa,pr),Ei.prototype={nodeType:Hr,hasAttribute:function(t){return null!=this.getAttributeNode(t)},getAttribute:function(t){var r=this.getAttributeNode(t);return r&&r.value||""},getAttributeNode:function(t){return this.attributes.getNamedItem(t)},setAttribute:function(t,r){var a=this.ownerDocument.createAttribute(t);a.value=a.nodeValue=""+r,this.setAttributeNode(a)},removeAttribute:function(t){var r=this.getAttributeNode(t);r&&this.removeAttributeNode(r)},appendChild:function(t){return t.nodeType===ai?this.insertBefore(t,null):function xm(s,t){var r=t.parentNode;if(r){var a=s.lastChild;r.removeChild(t),a=s.lastChild}return a=s.lastChild,t.parentNode=s,t.previousSibling=a,t.nextSibling=null,a?a.nextSibling=t:s.firstChild=t,s.lastChild=t,yo(s.ownerDocument,s,t),t}(this,t)},setAttributeNode:function(t){return this.attributes.setNamedItem(t)},setAttributeNodeNS:function(t){return this.attributes.setNamedItemNS(t)},removeAttributeNode:function(t){return this.attributes.removeNamedItem(t.nodeName)},removeAttributeNS:function(t,r){var a=this.getAttributeNodeNS(t,r);a&&this.removeAttributeNode(a)},hasAttributeNS:function(t,r){return null!=this.getAttributeNodeNS(t,r)},getAttributeNS:function(t,r){var a=this.getAttributeNodeNS(t,r);return a&&a.value||""},setAttributeNS:function(t,r,a){var e=this.ownerDocument.createAttributeNS(t,r);e.value=e.nodeValue=""+a,this.setAttributeNode(e)},getAttributeNodeNS:function(t,r){return this.attributes.getNamedItemNS(t,r)},getElementsByTagName:function(t){return new Ki(this,function(r){var a=[];return Ca(r,function(e){e!==r&&e.nodeType==Hr&&("*"===t||e.tagName==t)&&a.push(e)}),a})},getElementsByTagNameNS:function(t,r){return new Ki(this,function(a){var e=[];return Ca(a,function(i){i!==a&&i.nodeType===Hr&&("*"===t||i.namespaceURI===t)&&("*"===r||i.localName==r)&&e.push(i)}),e})}},Pa.prototype.getElementsByTagName=Ei.prototype.getElementsByTagName,Pa.prototype.getElementsByTagNameNS=Ei.prototype.getElementsByTagNameNS,wr(Ei,pr),Cn.prototype.nodeType=Wi,wr(Cn,pr),ka.prototype={data:"",substringData:function(t,r){return this.data.substring(t,t+r)},appendData:function(t){t=this.data+t,this.nodeValue=this.data=t,this.length=t.length},insertData:function(t,r){this.replaceData(t,0,r)},appendChild:function(t){throw new Error(ar[Tm])},deleteData:function(t,r){this.replaceData(t,r,"")},replaceData:function(t,r,a){a=this.data.substring(0,t)+a+this.data.substring(t+r),this.nodeValue=this.data=a,this.length=a.length}},wr(ka,pr),_o.prototype={nodeName:"#text",nodeType:En,splitText:function(t){var r=this.data,a=r.substring(t);r=r.substring(0,t),this.data=this.nodeValue=r,this.length=r.length;var e=this.ownerDocument.createTextNode(a);return this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling),e}},wr(_o,ka),To.prototype={nodeName:"#comment",nodeType:rd},wr(To,ka),bo.prototype={nodeName:"#cdata-section",nodeType:Zl},wr(bo,ka),Pn.prototype.nodeType=ad,wr(Pn,pr),pd.prototype.nodeType=_m,wr(pd,pr),md.prototype.nodeType=ym,wr(md,pr),So.prototype.nodeType=ed,wr(So,pr),kn.prototype.nodeName="#document-fragment",kn.prototype.nodeType=ai,wr(kn,pr),xo.prototype.nodeType=td,wr(xo,pr),gd.prototype.serializeToString=function(s,t,r){return vd.call(s,t,r)},pr.prototype.toString=vd;try{if(Object.defineProperty){var Em=function s(t){switch(t.nodeType){case Hr:case ai:var r=[];for(t=t.firstChild;t;)7!==t.nodeType&&8!==t.nodeType&&r.push(s(t)),t=t.nextSibling;return r.join("");default:return t.nodeValue}};Object.defineProperty(Ki.prototype,"length",{get:function(){return vo(this),this.$$length}}),Object.defineProperty(pr.prototype,"textContent",{get:function(){return Em(this)},set:function(t){switch(this.nodeType){case Hr:case ai:for(;this.firstChild;)this.removeChild(this.firstChild);(t||String(t))&&this.appendChild(this.ownerDocument.createTextNode(t));break;default:this.data=t,this.value=t,this.nodeValue=t}}}),Td=function(t,r,a){t["$$"+r]=a}}}catch{}var Co={DocumentType:Pn,DOMException:xi,DOMImplementation:ld,Element:Ei,Node:pr,NodeList:ni,XMLSerializer:gd},Aa=$(function(s,t){var r=xn.freeze;t.XML_ENTITIES=r({amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}),t.HTML_ENTITIES=r({lt:"<",gt:">",amp:"&",quot:'"',apos:"'",Agrave:"\xc0",Aacute:"\xc1",Acirc:"\xc2",Atilde:"\xc3",Auml:"\xc4",Aring:"\xc5",AElig:"\xc6",Ccedil:"\xc7",Egrave:"\xc8",Eacute:"\xc9",Ecirc:"\xca",Euml:"\xcb",Igrave:"\xcc",Iacute:"\xcd",Icirc:"\xce",Iuml:"\xcf",ETH:"\xd0",Ntilde:"\xd1",Ograve:"\xd2",Oacute:"\xd3",Ocirc:"\xd4",Otilde:"\xd5",Ouml:"\xd6",Oslash:"\xd8",Ugrave:"\xd9",Uacute:"\xda",Ucirc:"\xdb",Uuml:"\xdc",Yacute:"\xdd",THORN:"\xde",szlig:"\xdf",agrave:"\xe0",aacute:"\xe1",acirc:"\xe2",atilde:"\xe3",auml:"\xe4",aring:"\xe5",aelig:"\xe6",ccedil:"\xe7",egrave:"\xe8",eacute:"\xe9",ecirc:"\xea",euml:"\xeb",igrave:"\xec",iacute:"\xed",icirc:"\xee",iuml:"\xef",eth:"\xf0",ntilde:"\xf1",ograve:"\xf2",oacute:"\xf3",ocirc:"\xf4",otilde:"\xf5",ouml:"\xf6",oslash:"\xf8",ugrave:"\xf9",uacute:"\xfa",ucirc:"\xfb",uuml:"\xfc",yacute:"\xfd",thorn:"\xfe",yuml:"\xff",nbsp:"\xa0",iexcl:"\xa1",cent:"\xa2",pound:"\xa3",curren:"\xa4",yen:"\xa5",brvbar:"\xa6",sect:"\xa7",uml:"\xa8",copy:"\xa9",ordf:"\xaa",laquo:"\xab",not:"\xac",shy:"\xad\xad",reg:"\xae",macr:"\xaf",deg:"\xb0",plusmn:"\xb1",sup2:"\xb2",sup3:"\xb3",acute:"\xb4",micro:"\xb5",para:"\xb6",middot:"\xb7",cedil:"\xb8",sup1:"\xb9",ordm:"\xba",raquo:"\xbb",frac14:"\xbc",frac12:"\xbd",frac34:"\xbe",iquest:"\xbf",times:"\xd7",divide:"\xf7",forall:"\u2200",part:"\u2202",exist:"\u2203",empty:"\u2205",nabla:"\u2207",isin:"\u2208",notin:"\u2209",ni:"\u220b",prod:"\u220f",sum:"\u2211",minus:"\u2212",lowast:"\u2217",radic:"\u221a",prop:"\u221d",infin:"\u221e",ang:"\u2220",and:"\u2227",or:"\u2228",cap:"\u2229",cup:"\u222a",int:"\u222b",there4:"\u2234",sim:"\u223c",cong:"\u2245",asymp:"\u2248",ne:"\u2260",equiv:"\u2261",le:"\u2264",ge:"\u2265",sub:"\u2282",sup:"\u2283",nsub:"\u2284",sube:"\u2286",supe:"\u2287",oplus:"\u2295",otimes:"\u2297",perp:"\u22a5",sdot:"\u22c5",Alpha:"\u0391",Beta:"\u0392",Gamma:"\u0393",Delta:"\u0394",Epsilon:"\u0395",Zeta:"\u0396",Eta:"\u0397",Theta:"\u0398",Iota:"\u0399",Kappa:"\u039a",Lambda:"\u039b",Mu:"\u039c",Nu:"\u039d",Xi:"\u039e",Omicron:"\u039f",Pi:"\u03a0",Rho:"\u03a1",Sigma:"\u03a3",Tau:"\u03a4",Upsilon:"\u03a5",Phi:"\u03a6",Chi:"\u03a7",Psi:"\u03a8",Omega:"\u03a9",alpha:"\u03b1",beta:"\u03b2",gamma:"\u03b3",delta:"\u03b4",epsilon:"\u03b5",zeta:"\u03b6",eta:"\u03b7",theta:"\u03b8",iota:"\u03b9",kappa:"\u03ba",lambda:"\u03bb",mu:"\u03bc",nu:"\u03bd",xi:"\u03be",omicron:"\u03bf",pi:"\u03c0",rho:"\u03c1",sigmaf:"\u03c2",sigma:"\u03c3",tau:"\u03c4",upsilon:"\u03c5",phi:"\u03c6",chi:"\u03c7",psi:"\u03c8",omega:"\u03c9",thetasym:"\u03d1",upsih:"\u03d2",piv:"\u03d6",OElig:"\u0152",oelig:"\u0153",Scaron:"\u0160",scaron:"\u0161",Yuml:"\u0178",fnof:"\u0192",circ:"\u02c6",tilde:"\u02dc",ensp:"\u2002",emsp:"\u2003",thinsp:"\u2009",zwnj:"\u200c",zwj:"\u200d",lrm:"\u200e",rlm:"\u200f",ndash:"\u2013",mdash:"\u2014",lsquo:"\u2018",rsquo:"\u2019",sbquo:"\u201a",ldquo:"\u201c",rdquo:"\u201d",bdquo:"\u201e",dagger:"\u2020",Dagger:"\u2021",bull:"\u2022",hellip:"\u2026",permil:"\u2030",prime:"\u2032",Prime:"\u2033",lsaquo:"\u2039",rsaquo:"\u203a",oline:"\u203e",euro:"\u20ac",trade:"\u2122",larr:"\u2190",uarr:"\u2191",rarr:"\u2192",darr:"\u2193",harr:"\u2194",crarr:"\u21b5",lceil:"\u2308",rceil:"\u2309",lfloor:"\u230a",rfloor:"\u230b",loz:"\u25ca",spades:"\u2660",clubs:"\u2663",hearts:"\u2665",diams:"\u2666"}),t.entityMap=t.HTML_ENTITIES});Aa.XML_ENTITIES,Aa.HTML_ENTITIES,Aa.entityMap;var Ia=xn.NAMESPACE,Po=/[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,bd=new RegExp("[\\-\\.0-9"+Po.source.slice(1,-1)+"\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"),Sd=new RegExp("^"+Po.source+bd.source+"*(?::"+Po.source+bd.source+"*)?$");function Zi(s,t){this.message=s,this.locator=t,Error.captureStackTrace&&Error.captureStackTrace(this,Zi)}function xd(){}function Ed(s,t){return t.lineNumber=s.lineNumber,t.columnNumber=s.columnNumber,t}function Lm(s,t,r,a,e,i){function n(v,S,A){r.attributeNames.hasOwnProperty(v)&&i.fatalError("Attribute "+v+" redefined"),r.addValue(v,S,A)}for(var o,d=++t,h=0;;){var y=s.charAt(d);switch(y){case"=":if(1===h)o=s.slice(t,d),h=3;else{if(2!==h)throw new Error("attribute equal must after attrName");h=3}break;case"'":case'"':if(3===h||1===h){if(1===h&&(i.warning('attribute value must after "="'),o=s.slice(t,d)),t=d+1,!((d=s.indexOf(y,t))>0))throw new Error("attribute value no end '"+y+"' match");n(o,l=s.slice(t,d).replace(/&#?\w+;/g,e),t-1),h=5}else{if(4!=h)throw new Error('attribute value must after "="');n(o,l=s.slice(t,d).replace(/&#?\w+;/g,e),t),i.warning('attribute "'+o+'" missed start quot('+y+")!!"),t=d+1,h=5}break;case"/":switch(h){case 0:r.setTagName(s.slice(t,d));case 5:case 6:case 7:h=7,r.closed=!0;case 4:case 1:case 2:break;default:throw new Error("attribute invalid close char('/')")}break;case"":return i.error("unexpected end of input"),0==h&&r.setTagName(s.slice(t,d)),d;case">":switch(h){case 0:r.setTagName(s.slice(t,d));case 5:case 6:case 7:break;case 4:case 1:"/"===(l=s.slice(t,d)).slice(-1)&&(r.closed=!0,l=l.slice(0,-1));case 2:2===h&&(l=o),4==h?(i.warning('attribute "'+l+'" missed quot(")!'),n(o,l.replace(/&#?\w+;/g,e),t)):((!Ia.isHTML(a[""])||!l.match(/^(?:disabled|checked|selected)$/i))&&i.warning('attribute "'+l+'" missed value!! "'+l+'" instead!!'),n(l,l,t));break;case 3:throw new Error("attribute value missed!!")}return d;case"\x80":y=" ";default:if(y<=" ")switch(h){case 0:r.setTagName(s.slice(t,d)),h=6;break;case 1:o=s.slice(t,d),h=2;break;case 4:var l=s.slice(t,d).replace(/&#?\w+;/g,e);i.warning('attribute "'+l+'" missed quot(")!!'),n(o,l,t);case 5:h=6}else switch(h){case 2:r.tagName,(!Ia.isHTML(a[""])||!o.match(/^(?:disabled|checked|selected)$/i))&&i.warning('attribute "'+o+'" missed value!! "'+o+'" instead2!!'),n(o,o,t),t=d,h=1;break;case 5:i.warning('attribute space is required"'+o+'"!!');case 6:h=1,t=d;break;case 3:h=4,t=d;break;case 7:throw new Error("elements closed character '/' and '>' must be connected to")}}d++}}function wd(s,t,r){for(var a=s.tagName,e=null,y=s.length;y--;){var i=s[y],n=i.qName,o=i.value;if((v=n.indexOf(":"))>0)var l=i.prefix=n.slice(0,v),d=n.slice(v+1),h="xmlns"===l&&d;else d=n,l=null,h="xmlns"===n&&"";i.localName=d,!1!==h&&(null==e&&(e={},Cd(r,r={})),r[h]=e[h]=o,i.uri=Ia.XMLNS,t.startPrefixMapping(h,o))}for(y=s.length;y--;){(l=(i=s[y]).prefix)&&("xml"===l&&(i.uri=Ia.XML),"xmlns"!==l&&(i.uri=r[l||""]))}var v;(v=a.indexOf(":"))>0?(l=s.prefix=a.slice(0,v),d=s.localName=a.slice(v+1)):(l=null,d=s.localName=a);var S=s.uri=r[l||""];if(t.startElement(S,d,a,s),!s.closed)return s.currentNSMap=r,s.localNSMap=e,!0;if(t.endElement(S,d,a),e)for(l in e)t.endPrefixMapping(l)}function Rm(s,t,r,a,e){if(/^(?:script|textarea)$/i.test(r)){var i=s.indexOf("",t),n=s.substring(t+1,i);if(/[&<]/.test(n))return/^script$/i.test(r)?(e.characters(n,0,n.length),i):(n=n.replace(/&#?\w+;/g,a),e.characters(n,0,n.length),i)}return t+1}function Mm(s,t,r,a){var e=a[r];return null==e&&((e=s.lastIndexOf(""))t?(r.comment(s,t+4,i-t-4),i+3):(a.error("Unclosed comment"),-1):-1;if("CDATA["==s.substr(t+3,6)){var i=s.indexOf("]]>",t+9);return r.startCDATA(),r.characters(s,t+9,i-t-9),r.endCDATA(),i+3}var n=function Bm(s,t){var r,a=[],e=/'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;for(e.lastIndex=t,e.exec(s);r=e.exec(s);)if(a.push(r),r[1])return a}(s,t),o=n.length;if(o>1&&/!doctype/i.test(n[0][0])){var l=n[1][0],d=!1,h=!1;o>3&&(/^public$/i.test(n[2][0])?(d=n[3][0],h=o>4&&n[4][0]):/^system$/i.test(n[2][0])&&(h=n[3][0]));var y=n[o-1];return r.startDTD(l,d,h),r.endDTD(),y.index+y[0].length}return-1}function Nm(s,t,r){var a=s.indexOf("?>",t);if(a){var e=s.substring(t,a).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);return e?(e[0].length,r.processingInstruction(e[1],e[2]),a+2):-1}return-1}function Pd(){this.attributeNames={}}Zi.prototype=new Error,Zi.prototype.name=Zi.name,xd.prototype={parse:function(t,r,a){var e=this.domBuilder;e.startDocument(),Cd(r,r={}),function Om(s,t,r,a,e){function i(xt){if(xt>65535){var Mt=55296+((xt-=65536)>>10),kr=56320+(1023&xt);return String.fromCharCode(Mt,kr)}return String.fromCharCode(xt)}function n(xt){var Mt=xt.slice(1,-1);return Mt in r?r[Mt]:"#"===Mt.charAt(0)?i(parseInt(Mt.substr(1).replace("x","0x"))):(e.error("entity not found:"+xt),xt)}function o(xt){if(xt>I){var Mt=s.substring(I,xt).replace(/&#?\w+;/g,n);v&&l(I),a.characters(Mt,0,xt-I),I=xt}}function l(xt,Mt){for(;xt>=h&&(Mt=y.exec(s));)d=Mt.index,h=d+Mt[0].length,v.lineNumber++;v.columnNumber=xt-d+1}for(var d=0,h=0,y=/.*(?:\r\n?|\n)|.*$/g,v=a.locator,S=[{currentNSMap:t}],A={},I=0;;){try{var k=s.indexOf("<",I);if(k<0){if(!s.substr(I).match(/^\s*$/)){var Q=a.doc,Y=Q.createTextNode(s.substr(I));Q.appendChild(Y),a.currentElement=Y}return}switch(k>I&&o(k),s.charAt(k+1)){case"/":var Qe=s.indexOf(">",k+3),ve=s.substring(k+2,Qe).replace(/[ \t\n\r]+$/g,""),Te=S.pop();Qe<0?(ve=s.substring(k+2).replace(/[\s<].*/,""),e.error("end tag name: "+ve+" is not complete:"+Te.tagName),Qe=k+1+ve.length):ve.match(/\sI?I=Qe:o(Math.max(k,I)+1)}}(t,r,a,e,this.errorHandler),e.endDocument()}},Pd.prototype={setTagName:function(t){if(!Sd.test(t))throw new Error("invalid tagName:"+t);this.tagName=t},addValue:function(t,r,a){if(!Sd.test(t))throw new Error("invalid attribute:"+t);this.attributeNames[t]=this.length,this[this.length++]={qName:t,value:r,offset:a}},length:0,getLocalName:function(t){return this[t].localName},getLocator:function(t){return this[t].locator},getQName:function(t){return this[t].qName},getURI:function(t){return this[t].uri},getValue:function(t){return this[t].value}};var kd={XMLReader:xd,ParseError:Zi},Vm=Co.DOMImplementation,Ad=xn.NAMESPACE,$m=kd.ParseError,Hm=kd.XMLReader;function Id(s){this.options=s||{locator:{}}}function Ra(){this.cdata=!1}function ea(s,t){t.lineNumber=s.lineNumber,t.columnNumber=s.columnNumber}function ko(s){if(s)return"\n@"+(s.systemId||"")+"#[line:"+s.lineNumber+",col:"+s.columnNumber+"]"}function Dd(s,t,r){return"string"==typeof s?s.substr(t,r):s.length>=t+r||t?new java.lang.String(s,t,r)+"":s}function In(s,t){s.currentElement?s.currentElement.appendChild(t):s.doc.appendChild(t)}Id.prototype.parseFromString=function(s,t){var r=this.options,a=new Hm,e=r.domBuilder||new Ra,i=r.errorHandler,n=r.locator,o=r.xmlns||{},l=/\/x?html?$/.test(t),d=l?Aa.HTML_ENTITIES:Aa.XML_ENTITIES;return n&&e.setDocumentLocator(n),a.errorHandler=function qm(s,t,r){if(!s){if(t instanceof Ra)return t;s=t}var a={},e=s instanceof Function;function i(n){var o=s[n];!o&&e&&(o=2==s.length?function(l){s(n,l)}:s),a[n]=o&&function(l){o("[xmldom "+n+"]\t"+l+ko(r))}||function(){}}return r=r||{},i("warning"),i("error"),i("fatalError"),a}(i,e,n),a.domBuilder=r.domBuilder||e,l&&(o[""]=Ad.HTML),o.xml=o.xml||Ad.XML,s&&"string"==typeof s?a.parse(s,o,d):a.errorHandler.error("invalid doc source"),e.doc},Ra.prototype={startDocument:function(){this.doc=(new Vm).createDocument(null,null,null),this.locator&&(this.doc.documentURI=this.locator.systemId)},startElement:function(t,r,a,e){var i=this.doc,n=i.createElementNS(t,a||r),o=e.length;In(this,n),this.currentElement=n,this.locator&&ea(this.locator,n);for(var l=0;la.timeline?1:-1})},Bd=function(t){var r=[];return function(t,r,a){r.forEach(function(e){for(var i in t.mediaGroups[e])for(var n in t.mediaGroups[e][i]){var o=t.mediaGroups[e][i][n];a(o,e,i,n)}})}(t,ig,function(a,e,i,n){r=r.concat(a.playlists||[])}),r},Ud=function(t){var r=t.playlist,a=t.mediaSequence;r.mediaSequence=a,r.segments.forEach(function(e,i){e.number=r.mediaSequence+i})},og=function(t){var r=t.oldManifest,a=t.newManifest,e=r.playlists.concat(Bd(r)),i=a.playlists.concat(Bd(a));return a.timelineStarts=Nd([r.timelineStarts,a.timelineStarts]),function(t){var r=t.oldPlaylists,a=t.newPlaylists,e=t.timelineStarts;a.forEach(function(i){i.discontinuitySequence=Ao(e,function(h){return h.timeline===i.timeline});var n=function(t,r){for(var a=0;an.timeline||n.segments.length&&i.timeline>n.segments[n.segments.length-1].timeline)&&i.discontinuitySequence--);n.segments[l].discontinuity&&!o.discontinuity&&(o.discontinuity=!0,i.discontinuityStarts.unshift(0),i.discontinuitySequence--),Ud({playlist:i,mediaSequence:n.segments[l].number})}})}({oldPlaylists:e,newPlaylists:i,timelineStarts:a.timelineStarts}),a},On=function(t){return t&&t.uri+"-"+function(t){var r;return r="bigint"==typeof t.offset||"bigint"==typeof t.length?window.BigInt(t.offset)+window.BigInt(t.length)-window.BigInt(1):t.offset+t.length-1,t.offset+"-"+r}(t.byterange)},Oo=function(t){return Ld(t.reduce(function(a,e){var i=e.attributes.id+(e.attributes.lang||"");if(a[i]){var n;if(e.segments)e.segments[0]&&(e.segments[0].discontinuity=!0),(n=a[i].segments).push.apply(n,e.segments);e.attributes.contentProtection&&(a[i].attributes.contentProtection=e.attributes.contentProtection)}else a[i]=e,a[i].attributes.timelineStarts=[];return a[i].attributes.timelineStarts.push({start:e.attributes.periodStart,timeline:e.attributes.periodStart}),a},{})).map(function(a){return a.discontinuityStarts=function(t,r){return t.reduce(function(a,e,i){return e[r]&&a.push(i),a},[])}(a.segments||[],"discontinuity"),a})},Lo=function(t,r){var a=On(t.sidx),e=a&&r[a]&&r[a].sidx;return e&&Do(t,e,t.sidx.resolvedUri),t},ug=function(t,r){if(void 0===r&&(r={}),!Object.keys(r).length)return t;for(var a in t)t[a]=Lo(t[a],r);return t},pg=function(t){var r,a=t.attributes,e=t.segments,i=t.sidx,n=t.discontinuityStarts,o={attributes:(r={NAME:a.id,AUDIO:"audio",SUBTITLES:"subs",RESOLUTION:{width:a.width,height:a.height},CODECS:a.codecs,BANDWIDTH:a.bandwidth},r["PROGRAM-ID"]=1,r),uri:"",endList:"static"===a.type,timeline:a.periodStart,resolvedUri:"",targetDuration:a.duration,discontinuityStarts:n,timelineStarts:a.timelineStarts,segments:e};return a.contentProtection&&(o.contentProtection=a.contentProtection),i&&(o.sidx=i),o},mg=function(t){var r=t.attributes;return"video/mp4"===r.mimeType||"video/webm"===r.mimeType||"video"===r.contentType},gg=function(t){var r=t.attributes;return"audio/mp4"===r.mimeType||"audio/webm"===r.mimeType||"audio"===r.contentType},vg=function(t){var r=t.attributes;return"text/vtt"===r.mimeType||"text"===r.contentType},jd=function(t){return t?Object.keys(t).reduce(function(r,a){var e=t[a];return r.concat(e.playlists)},[]):[]},_g=function(t){var r,a=t.dashPlaylists,e=t.locations,i=t.sidxMapping,n=void 0===i?{}:i,o=t.previousManifest;if(!a.length)return{};var l=a[0].attributes,d=l.sourceDuration,h=l.type,y=l.suggestedPresentationDelay,v=l.minimumUpdatePeriod,S=Oo(a.filter(mg)).map(pg),A=Oo(a.filter(gg)),I=Oo(a.filter(vg)),k=a.map(function(Fe){return Fe.attributes.captionServices}).filter(Boolean),Q={allowCache:!0,discontinuityStarts:[],segments:[],endList:!0,mediaGroups:(r={AUDIO:{},VIDEO:{}},r["CLOSED-CAPTIONS"]={},r.SUBTITLES={},r),uri:"",duration:d,playlists:ug(S,n)};v>=0&&(Q.minimumUpdatePeriod=1e3*v),e&&(Q.locations=e),"dynamic"===h&&(Q.suggestedPresentationDelay=y);var Y=0===Q.playlists.length,ve=A.length?function(t,r,a){void 0===r&&(r={}),void 0===a&&(a=!1);var e,i=t.reduce(function(o,l){var d=l.attributes.role&&l.attributes.role.value||"",h=l.attributes.lang||"",y=l.attributes.label||"main";if(h&&!l.attributes.label){var v=d?" ("+d+")":"";y=""+l.attributes.lang+v}o[y]||(o[y]={language:h,autoselect:!0,default:"main"===d,playlists:[],uri:""});var S=Lo(function(t,r){var a,e=t.attributes,i=t.segments,n=t.sidx,o=t.mediaSequence,l=t.discontinuitySequence,d=t.discontinuityStarts,h={attributes:(a={NAME:e.id,BANDWIDTH:e.bandwidth,CODECS:e.codecs},a["PROGRAM-ID"]=1,a),uri:"",endList:"static"===e.type,timeline:e.periodStart,resolvedUri:"",targetDuration:e.duration,discontinuitySequence:l,discontinuityStarts:d,timelineStarts:e.timelineStarts,mediaSequence:o,segments:i};return e.contentProtection&&(h.contentProtection=e.contentProtection),n&&(h.sidx=n),r&&(h.attributes.AUDIO="audio",h.attributes.SUBTITLES="subs"),h}(l,a),r);return o[y].playlists.push(S),typeof e>"u"&&"main"===d&&((e=l).default=!0),o},{});return e||(i[Object.keys(i)[0]].default=!0),i}(A,n,Y):null,Te=I.length?function(t,r){return void 0===r&&(r={}),t.reduce(function(a,e){var i=e.attributes.lang||"text";return a[i]||(a[i]={language:i,default:!1,autoselect:!1,playlists:[],uri:""}),a[i].playlists.push(Lo(function(t){var r,a=t.attributes,e=t.segments,i=t.mediaSequence,n=t.discontinuityStarts,o=t.discontinuitySequence;typeof e>"u"&&(e=[{uri:a.baseUrl,timeline:a.periodStart,resolvedUri:a.baseUrl||"",duration:a.sourceDuration,number:0}],a.duration=a.sourceDuration);var l=((r={NAME:a.id,BANDWIDTH:a.bandwidth})["PROGRAM-ID"]=1,r);return a.codecs&&(l.CODECS=a.codecs),{attributes:l,uri:"",endList:"static"===a.type,timeline:a.periodStart,resolvedUri:a.baseUrl||"",targetDuration:a.duration,timelineStarts:a.timelineStarts,discontinuityStarts:n,discontinuitySequence:o,mediaSequence:i,segments:e}}(e),r)),a},{})}(I,n):null,Se=S.concat(jd(ve),jd(Te)),ke=Se.map(function(Fe){return Fe.timelineStarts});return Q.timelineStarts=Nd(ke),function(t,r){t.forEach(function(a){a.mediaSequence=0,a.discontinuitySequence=Ao(r,function(e){return e.timeline===a.timeline}),a.segments&&a.segments.forEach(function(e,i){e.number=i})})}(Se,Q.timelineStarts),ve&&(Q.mediaGroups.AUDIO.audio=ve),Te&&(Q.mediaGroups.SUBTITLES.subs=Te),k.length&&(Q.mediaGroups["CLOSED-CAPTIONS"].cc=function(t){return t.reduce(function(r,a){return a&&a.forEach(function(e){var i=e.channel,n=e.language;r[n]={autoselect:!1,default:!1,instreamId:i,language:n},e.hasOwnProperty("aspectRatio")&&(r[n].aspectRatio=e.aspectRatio),e.hasOwnProperty("easyReader")&&(r[n].easyReader=e.easyReader),e.hasOwnProperty("3D")&&(r[n]["3D"]=e["3D"])}),r},{})}(k)),o?og({oldManifest:o,newManifest:Q}):Q},Tg=function(t,r,a){var e=t.NOW,i=t.clientOffset,n=t.availabilityStartTime,o=t.timescale,l=void 0===o?1:o,d=t.periodStart,h=void 0===d?0:d,y=t.minimumUpdatePeriod,k=(e+i)/1e3+(void 0===y?0:y)-(n+h);return Math.ceil((k*l-r)/a)},Vd=function(t,r){for(var a=t.type,e=t.minimumUpdatePeriod,i=void 0===e?0:e,n=t.media,o=void 0===n?"":n,l=t.sourceDuration,d=t.timescale,h=void 0===d?1:d,y=t.startNumber,v=void 0===y?1:y,S=t.periodStart,A=[],I=-1,k=0;kI&&(I=Te);var Se=void 0;if(ve<0){var ke=k+1;Se=ke===r.length?"dynamic"===a&&i>0&&o.indexOf("$Number$")>0?Tg(t,I,Y):(l*h-I)/Y:(r[ke].t-I)/Y}else Se=ve+1;for(var Fe=v+A.length+Se,Ee=v+A.length;Ee"u")return r;var n=""+t[a];return"RepresentationID"===a||(i=e?parseInt(i,10):1,n.length>=i)?n:""+new Array(i-n.length+1).join("0")+n}}(r))},Eg=function(t,r){var a={RepresentationID:t.id,Bandwidth:t.bandwidth||0},e=t.initialization,i=void 0===e?{sourceURL:"",range:""}:e,n=Ma({baseUrl:t.baseUrl,source:$d(i.sourceURL,a),range:i.range}),o=function(t,r){return t.duration||r?t.duration?Io(t):Vd(t,r):[{number:t.startNumber||1,duration:t.sourceDuration,time:0,timeline:t.periodStart}]}(t,r);return o.map(function(l){a.Number=l.number,a.Time=l.time;var d=$d(t.media||"",a),h=t.timescale||1,y=t.presentationTimeOffset||0,v=t.periodStart+(l.time-y)/h;return{uri:d,timeline:l.timeline,duration:l.duration,resolvedUri:bn(t.baseUrl||"",d),map:n,number:l.number,presentationTime:v}})},Cg=function(t,r){var a=t.duration,e=t.segmentUrls,i=void 0===e?[]:e,n=t.periodStart;if(!a&&!r||a&&r)throw new Error(ta_SEGMENT_TIME_UNSPECIFIED);var l,o=i.map(function(h){return function(t,r){var a=t.baseUrl,e=t.initialization,i=void 0===e?{}:e,n=Ma({baseUrl:a,source:i.sourceURL,range:i.range}),o=Ma({baseUrl:a,source:r.media,range:r.mediaRange});return o.map=n,o}(t,h)});return a&&(l=Io(t)),r&&(l=Vd(t,r)),l.map(function(h,y){if(o[y]){var v=o[y],S=t.timescale||1,A=t.presentationTimeOffset||0;return v.timeline=h.timeline,v.duration=h.duration,v.number=h.number,v.presentationTime=n+(h.time-A)/S,v}}).filter(function(h){return h})},Pg=function(t){var e,i,r=t.attributes,a=t.segmentInfo;a.template?(i=Eg,e=br(r,a.template)):a.base?(i=Fd,e=br(r,a.base)):a.list&&(i=Cg,e=br(r,a.list));var n={attributes:r};if(!i)return n;var o=i(e,a.segmentTimeline);if(e.duration){var l=e,d=l.duration,h=l.timescale,y=void 0===h?1:h;e.duration=d/y}else o.length?e.duration=o.reduce(function(v,S){return Math.max(v,Math.ceil(S.duration))},0):e.duration=0;return n.attributes=e,n.segments=o,a.base&&e.indexRange&&(n.sidx=o[0],n.segments=[]),n},Kt=function(t,r){return Rd(t.childNodes).filter(function(a){return a.tagName===r})},Ro=function(t){return t.textContent.trim()},ra=function(t){var l=/P(?:(\d*)Y)?(?:(\d*)M)?(?:(\d*)D)?(?:T(?:(\d*)H)?(?:(\d*)M)?(?:([\d.]*)S)?)?/.exec(t);if(!l)return 0;var d=l.slice(1),h=d[0],y=d[1],v=d[2],S=d[3],A=d[4],I=d[5];return 31536e3*parseFloat(h||0)+2592e3*parseFloat(y||0)+86400*parseFloat(v||0)+3600*parseFloat(S||0)+60*parseFloat(A||0)+parseFloat(I||0)},Hd={mediaPresentationDuration:function(t){return ra(t)},availabilityStartTime:function(t){return function(t){return/^\d+-\d+-\d+T\d+:\d+:\d+(\.\d+)?$/.test(t)&&(t+="Z"),Date.parse(t)}(t)/1e3},minimumUpdatePeriod:function(t){return ra(t)},suggestedPresentationDelay:function(t){return ra(t)},type:function(t){return t},timeShiftBufferDepth:function(t){return ra(t)},start:function(t){return ra(t)},width:function(t){return parseInt(t,10)},height:function(t){return parseInt(t,10)},bandwidth:function(t){return parseInt(t,10)},startNumber:function(t){return parseInt(t,10)},timescale:function(t){return parseInt(t,10)},presentationTimeOffset:function(t){return parseInt(t,10)},duration:function(t){var r=parseInt(t,10);return isNaN(r)?ra(t):r},d:function(t){return parseInt(t,10)},t:function(t){return parseInt(t,10)},r:function(t){return parseInt(t,10)},DEFAULT:function(t){return t}},mr=function(t){return t&&t.attributes?Rd(t.attributes).reduce(function(r,a){var e=Hd[a.name]||Hd.DEFAULT;return r[a.name]=e(a.value),r},{}):{}},Ig={"urn:uuid:1077efec-c0b2-4d02-ace3-3c1e52e2fb4b":"org.w3.clearkey","urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed":"com.widevine.alpha","urn:uuid:9a04f079-9840-4286-ab92-e65be0885f95":"com.microsoft.playready","urn:uuid:f239e769-efa3-4850-9c16-a903c6932efb":"com.adobe.primetime"},Ln=function(t,r){return r.length?Dn(t.map(function(a){return r.map(function(e){return bn(a,Ro(e))})})):t},Mo=function(t){var r=Kt(t,"SegmentTemplate")[0],a=Kt(t,"SegmentList")[0],e=a&&Kt(a,"SegmentURL").map(function(v){return br({tag:"SegmentURL"},mr(v))}),i=Kt(t,"SegmentBase")[0],n=a||r,o=n&&Kt(n,"SegmentTimeline")[0],l=a||i||r,d=l&&Kt(l,"Initialization")[0],h=r&&mr(r);h&&d?h.initialization=d&&mr(d):h&&h.initialization&&(h.initialization={sourceURL:h.initialization});var y={template:h,segmentTimeline:o&&Kt(o,"S").map(function(v){return mr(v)}),list:a&&br(mr(a),{segmentUrls:e,initialization:mr(d)}),base:i&&br(mr(i),{initialization:mr(d)})};return Object.keys(y).forEach(function(v){y[v]||delete y[v]}),y},Rg=function(t,r,a){return function(e){var i=mr(e),n=Ln(r,Kt(e,"BaseURL")),o=Kt(e,"Role")[0],l={role:mr(o)},d=br(t,i,l),h=Kt(e,"Accessibility")[0],y=function(t){return"urn:scte:dash:cc:cea-608:2015"===t.schemeIdUri?("string"!=typeof t.value?[]:t.value.split(";")).map(function(e){var i,n;if(n=e,/^CC\d=/.test(e)){var o=e.split("=");i=o[0],n=o[1]}else/^CC\d$/.test(e)&&(i=e);return{channel:i,language:n}}):"urn:scte:dash:cc:cea-708:2015"===t.schemeIdUri?("string"!=typeof t.value?[]:t.value.split(";")).map(function(e){var i={channel:void 0,language:void 0,aspectRatio:1,easyReader:0,"3D":0};if(/=/.test(e)){var n=e.split("="),o=n[0],l=n[1],d=void 0===l?"":l;i.channel=o,i.language=e,d.split(",").forEach(function(h){var y=h.split(":"),v=y[0],S=y[1];"lang"===v?i.language=S:"er"===v?i.easyReader=Number(S):"war"===v?i.aspectRatio=Number(S):"3D"===v&&(i["3D"]=Number(S))})}else i.language=e;return i.channel&&(i.channel="SERVICE"+i.channel),i}):void 0}(mr(h));y&&(d=br(d,{captionServices:y}));var v=Kt(e,"Label")[0];if(v&&v.childNodes.length){var S=v.childNodes[0].nodeValue.trim();d=br(d,{label:S})}var A=function(t){return t.reduce(function(r,a){var e=mr(a),i=Ig[e.schemeIdUri];if(i){r[i]={attributes:e};var n=Kt(a,"cenc:pssh")[0];if(n){var o=Ro(n),l=o&&ql(o);r[i].pssh=l}}return r},{})}(Kt(e,"ContentProtection"));Object.keys(A).length&&(d=br(d,{contentProtection:A}));var I=Mo(e),k=Kt(e,"Representation"),Q=br(a,I);return Dn(k.map(function(t,r,a){return function(e){var i=Kt(e,"BaseURL"),n=Ln(r,i),o=br(t,mr(e)),l=Mo(e);return n.map(function(d){return{segmentInfo:br(a,l),attributes:br(o,{baseUrl:d})}})}}(d,n,Q)))}},Mg=function(t,r){return function(a,e){var i=Ln(r,Kt(a.node,"BaseURL")),n=br(t,{periodStart:a.attributes.start});"number"==typeof a.attributes.duration&&(n.periodDuration=a.attributes.duration);var o=Kt(a.node,"AdaptationSet"),l=Mo(a.node);return Dn(o.map(Rg(n,i,l)))}},qd=function(t){if(""===t)throw new Error(ta_DASH_EMPTY_MANIFEST);var a,e,r=new Qm;try{e=(a=r.parseFromString(t,"application/xml"))&&"MPD"===a.documentElement.tagName?a.documentElement:null}catch{}if(!e||e&&e.getElementsByTagName("parsererror").length>0)throw new Error(ta_DASH_INVALID_XML);return e},Ug=function(t,r){void 0===r&&(r={});var a=function(t,r){void 0===r&&(r={});var a=r,e=a.manifestUri,i=void 0===e?"":e,n=a.NOW,o=void 0===n?Date.now():n,l=a.clientOffset,d=void 0===l?0:l,h=Kt(t,"Period");if(!h.length)throw new Error(ta_INVALID_NUMBER_OF_PERIOD);var y=Kt(t,"Location"),v=mr(t),S=Ln([i],Kt(t,"BaseURL"));v.type=v.type||"static",v.sourceDuration=v.mediaPresentationDuration||0,v.NOW=o,v.clientOffset=d,y.length&&(v.locations=y.map(Ro));var A=[];return h.forEach(function(I,k){var Q=mr(I),Y=A[k-1];Q.start=function(t){var r=t.attributes,a=t.priorPeriodAttributes,e=t.mpdType;return"number"==typeof r.start?r.start:a&&"number"==typeof a.start&&"number"==typeof a.duration?a.start+a.duration:a||"static"!==e?null:0}({attributes:Q,priorPeriodAttributes:Y?Y.attributes:null,mpdType:v.type}),A.push({node:I,attributes:Q})}),{locations:v.locations,representationInfo:Dn(A.map(Mg(v,S)))}}(qd(t),r),e=function(t){return t.map(Pg)}(a.representationInfo);return _g({dashPlaylists:e,locations:a.locations,sidxMapping:r.sidxMapping,previousManifest:r.previousManifest})},jg=function(t){return function(t){var r=Kt(t,"UTCTiming")[0];if(!r)return null;var a=mr(r);switch(a.schemeIdUri){case"urn:mpeg:dash:utc:http-head:2014":case"urn:mpeg:dash:utc:http-head:2012":a.method="HEAD";break;case"urn:mpeg:dash:utc:http-xsdate:2014":case"urn:mpeg:dash:utc:http-iso:2014":case"urn:mpeg:dash:utc:http-xsdate:2012":case"urn:mpeg:dash:utc:http-iso:2012":a.method="GET";break;case"urn:mpeg:dash:utc:direct:2014":case"urn:mpeg:dash:utc:direct:2012":a.method="DIRECT",a.value=Date.parse(a.value);break;default:throw new Error(ta_UNSUPPORTED_UTC_TIMING_SCHEME)}return a}(qd(t))},zd=Math.pow(2,32),Gd=function(t){var a,r=new DataView(t.buffer,t.byteOffset,t.byteLength);return r.getBigUint64?(a=r.getBigUint64(0))0;e+=12,i--)a.references.push({referenceType:(128&t[e])>>>7,referencedSize:2147483647&r.getUint32(e),subsegmentDuration:r.getUint32(e+4),startsWithSap:!!(128&t[e+8]),sapType:(112&t[e+8])>>>4,sapDeltaTime:268435455&r.getUint32(e+8)});return a},Ge=function(t){return t instanceof Uint8Array?t:(!Array.isArray(t)&&!function(t){return ArrayBuffer.isView(t)}(t)&&!(t instanceof ArrayBuffer)&&(t="number"!=typeof t||"number"==typeof t&&t!=t?0:[t]),new Uint8Array(t&&t.buffer||t,t&&t.byteOffset||0,t&&t.byteLength||0))},sr=window.BigInt||Number,Fo=[sr("0x1"),sr("0x100"),sr("0x10000"),sr("0x1000000"),sr("0x100000000"),sr("0x10000000000"),sr("0x1000000000000"),sr("0x100000000000000"),sr("0x10000000000000000")],Kg=function(t,r){var a=void 0===r?{}:r,e=a.signed,i=void 0!==e&&e,n=a.le,o=void 0!==n&&n;t=Ge(t);var l=o?"reduce":"reduceRight",h=(t[l]?t[l]:Array.prototype[l]).call(t,function(v,S,A){var I=o?A:Math.abs(A+1-t.length);return v+sr(S)*Fo[I]},sr(0));if(i){var y=Fo[t.length]/sr(2)-sr(1);(h=sr(h))>y&&(h-=y,h-=y,h-=sr(2))}return Number(h)},Xg=function(t,r){var e=(void 0===r?{}:r).le,i=void 0!==e&&e;("bigint"!=typeof t&&"number"!=typeof t||"number"==typeof t&&t!=t)&&(t=0);for(var n=function(t){return Math.ceil(function(t){return t.toString(2).length}(t)/8)}(t=sr(t)),o=new Uint8Array(new ArrayBuffer(n)),l=0;l=r.length&&d.call(r,function(h,y){return h===(l[y]?l[y]&t[n+y]:t[n+y])})},Yg=Ge([73,68,51]),Fa=function s(t,r){return void 0===r&&(r=0),(t=Ge(t)).length-r<10||!Nt(t,Yg,{offset:r})?r:(r+=function(t,r){void 0===r&&(r=0);var a=(t=Ge(t))[r+5],e=t[r+6]<<21|t[r+7]<<14|t[r+8]<<7|t[r+9];return(16&a)>>4?e+20:e+10}(t,r),s(t,r))},Kd=function(t){return"string"==typeof t?Wd(t):t},ev=function s(t,r,a){void 0===a&&(a=!1),r=function(t){return Array.isArray(t)?t.map(function(r){return Kd(r)}):[Kd(t)]}(r),t=Ge(t);var e=[];if(!r.length)return e;for(var i=0;i>>0,o=t.subarray(i+4,i+8);if(0===n)break;var l=i+n;if(l>t.length){if(a)break;l=t.length}var d=t.subarray(i+8,l);Nt(o,r[0])&&(1===r.length?e.push(d):e.push.apply(e,s(d,r.slice(1),a))),i=l}return e},Rn={EBML:Ge([26,69,223,163]),DocType:Ge([66,130]),Segment:Ge([24,83,128,103]),SegmentInfo:Ge([21,73,169,102]),Tracks:Ge([22,84,174,107]),Track:Ge([174]),TrackNumber:Ge([215]),DefaultDuration:Ge([35,227,131]),TrackEntry:Ge([174]),TrackType:Ge([131]),FlagDefault:Ge([136]),CodecID:Ge([134]),CodecPrivate:Ge([99,162]),VideoTrack:Ge([224]),AudioTrack:Ge([225]),Cluster:Ge([31,67,182,117]),Timestamp:Ge([231]),TimestampScale:Ge([42,215,177]),BlockGroup:Ge([160]),BlockDuration:Ge([155]),Block:Ge([161]),SimpleBlock:Ge([163])},No=[128,64,32,16,8,4,2,1],Mn=function(t,r,a,e){void 0===a&&(a=!0),void 0===e&&(e=!1);var i=function(t){for(var r=1,a=0;a=r.length)return r.length;var e=Mn(r,a,!1);if(Nt(t.bytes,e.bytes))return a;var i=Mn(r,a+e.length);return s(t,r,a+i.length+i.value+e.length)},Qd=function s(t,r){r=function(t){return Array.isArray(t)?t.map(function(r){return Xd(r)}):[Xd(t)]}(r),t=Ge(t);var a=[];if(!r.length)return a;for(var e=0;et.length?t.length:o+n.value,d=t.subarray(o,l);Nt(r[0],i.bytes)&&(1===r.length?a.push(d):a=a.concat(s(d,r.slice(1)))),e+=i.length+n.length+d.length}return a},av=Ge([0,0,0,1]),nv=Ge([0,0,1]),sv=Ge([0,0,3]),ov=function(t){for(var r=[],a=1;a>1&63),-1!==a.indexOf(d)&&(n=i+l),i+=l+("h264"===r?1:2)}else i++}return t.subarray(0,0)},Sr={webm:Ge([119,101,98,109]),matroska:Ge([109,97,116,114,111,115,107,97]),flac:Ge([102,76,97,67]),ogg:Ge([79,103,103,83]),ac3:Ge([11,119]),riff:Ge([82,73,70,70]),avi:Ge([65,86,73]),wav:Ge([87,65,86,69]),"3gp":Ge([102,116,121,112,51,103]),mp4:Ge([102,116,121,112]),fmp4:Ge([115,116,121,112]),mov:Ge([102,116,121,112,113,116]),moov:Ge([109,111,111,118]),moof:Ge([109,111,111,102])},ia={aac:function(t){var r=Fa(t);return Nt(t,[255,16],{offset:r,mask:[255,22]})},mp3:function(t){var r=Fa(t);return Nt(t,[255,2],{offset:r,mask:[255,6]})},webm:function(t){var r=Qd(t,[Rn.EBML,Rn.DocType])[0];return Nt(r,Sr.webm)},mkv:function(t){var r=Qd(t,[Rn.EBML,Rn.DocType])[0];return Nt(r,Sr.matroska)},mp4:function(t){return!ia["3gp"](t)&&!ia.mov(t)&&(!!(Nt(t,Sr.mp4,{offset:4})||Nt(t,Sr.fmp4,{offset:4})||Nt(t,Sr.moof,{offset:4})||Nt(t,Sr.moov,{offset:4}))||void 0)},mov:function(t){return Nt(t,Sr.mov,{offset:4})},"3gp":function(t){return Nt(t,Sr["3gp"],{offset:4})},ac3:function(t){var r=Fa(t);return Nt(t,Sr.ac3,{offset:r})},ts:function(t){if(t.length<189&&t.length>=1)return 71===t[0];for(var r=0;r+188"):function(){}},mi=1/30,Yr=.1,tc=function(t,r){var e,a=[];if(t&&t.length)for(e=0;e=r})},Un=function(t,r){return tc(t,function(a){return a-mi>=r})},rc=function(t){var r=[];if(!t||!t.length)return"";for(var a=0;a "+t.end(a));return r.join(", ")},wi=function(t){for(var r=[],a=0;an)){if(r>i&&r<=n){a+=n-r;continue}a+=n-i}}return a},ac=he.createTimeRange,zo=function(t,r){if(!r.preload)return r.duration;var a=0;return(r.parts||[]).forEach(function(e){a+=e.duration}),(r.preloadHints||[]).forEach(function(e){"PART"===e.type&&(a+=t.partTargetDuration)}),a},Go=function(t){return(t.segments||[]).reduce(function(r,a,e){return a.parts?a.parts.forEach(function(i,n){r.push({duration:i.duration,segmentIndex:e,partIndex:n,part:i,segment:a})}):r.push({duration:a.duration,segmentIndex:e,partIndex:null,segment:a,part:null}),r},[])},nc=function(t){var r=t.segments&&t.segments.length&&t.segments[t.segments.length-1];return r&&r.parts||[]},sc=function(t){var r=t.preloadSegment;if(r){var a=r.parts,i=(r.preloadHints||[]).reduce(function(n,o){return n+("PART"===o.type?1:0)},0);return i+=a&&a.length?a.length:0}},oc=function(t,r){if(r.endList)return 0;if(t&&t.suggestedPresentationDelay)return t.suggestedPresentationDelay;var a=nc(r).length>0;return a&&r.serverControl&&r.serverControl.partHoldBack?r.serverControl.partHoldBack:a&&r.partTargetDuration?3*r.partTargetDuration:r.serverControl&&r.serverControl.holdBack?r.serverControl.holdBack:r.targetDuration?3*r.targetDuration:0},uc=function(t,r,a){if(typeof r>"u"&&(r=t.mediaSequence+t.segments.length),r"u"){if(t.totalDuration)return t.totalDuration;if(!t.endList)return window.Infinity}return uc(t,r,a)},Na=function(t){var r=t.defaultDuration,a=t.durationList,e=t.startIndex,i=t.endIndex,n=0;if(e>i){var o=[i,e];e=o[0],i=o[1]}if(e<0){for(var l=e;lDate.now()},Wo=function(t){return t.excludeUntil&&t.excludeUntil===1/0},jn=function(t){var r=cc(t);return!t.disabled&&!r},fc=function(t,r){return r.attributes&&r.attributes[t]},Ko=function(t,r){if(1===t.playlists.length)return!0;var a=r.attributes.BANDWIDTH||Number.MAX_VALUE;return 0===t.playlists.filter(function(e){return!!jn(e)&&(e.attributes.BANDWIDTH||0)0)for(var S=h-1;S>=0;S--){var A=d[S];if(l+=A.duration,o){if(l<0)continue}else if(l+mi<=0)continue;return{partIndex:A.partIndex,segmentIndex:A.segmentIndex,startTime:n-Na({defaultDuration:r.targetDuration,durationList:d,startIndex:h,endIndex:S})}}return{partIndex:d[0]&&d[0].partIndex||null,segmentIndex:d[0]&&d[0].segmentIndex||0,startTime:a}}if(h<0){for(var I=h;I<0;I++)if((l-=r.targetDuration)<0)return{partIndex:d[0]&&d[0].partIndex||null,segmentIndex:d[0]&&d[0].segmentIndex||0,startTime:a};h=0}for(var k=h;k0)continue}else if(l-mi>=0)continue;return{partIndex:Q.partIndex,segmentIndex:Q.segmentIndex,startTime:n+Na({defaultDuration:r.targetDuration,durationList:d,startIndex:h,endIndex:k})}}return{segmentIndex:d[d.length-1].segmentIndex,partIndex:d[d.length-1].partIndex,startTime:a}},isEnabled:jn,isDisabled:function(t){return t.disabled},isBlacklisted:cc,isIncompatible:Wo,playlistEnd:dc,isAes:function(t){for(var r=0;r-1&&o!==n.length-1&&(a._HLS_part=o),(o>-1||n.length)&&i--}a._HLS_msn=i}if(r.serverControl&&r.serverControl.canSkipUntil&&(a._HLS_skip=r.serverControl.canSkipDateranges?"v2":"YES"),Object.keys(a).length){var l=new window.URL(t);["_HLS_skip","_HLS_msn","_HLS_part"].forEach(function(d){!a.hasOwnProperty(d)||l.searchParams.set(d,a[d])}),t=l.toString()}return t}(n,i)),this.state="HAVE_CURRENT_METADATA",this.request=this.vhs_.xhr({uri:n,withCredentials:this.withCredentials},function(o,l){if(e.request){if(o)return e.playlistRequestError(e.request,e.media(),"HAVE_METADATA");e.haveMetadata({playlistString:e.request.responseText,url:e.media().uri,id:e.media().id})}})}},r.playlistRequestError=function(e,i,n){var o=i.uri,l=i.id;this.request=null,n&&(this.state=n),this.error={playlist:this.master.playlists[l],status:e.status,message:"HLS playlist request error at URL: "+o+".",responseText:e.responseText,code:e.status>=500?4:2},this.trigger("error")},r.parseManifest_=function(e){var i=this,n=e.url;return function(t){var r=t.onwarn,a=t.oninfo,e=t.manifestString,i=t.customTagParsers,n=void 0===i?[]:i,o=t.customTagMappers,l=void 0===o?[]:o,d=t.experimentalLLHLS,h=new im;r&&h.on("warn",r),a&&h.on("info",a),n.forEach(function(I){return h.addParser(I)}),l.forEach(function(I){return h.addTagMapper(I)}),h.push(e),h.end();var y=h.manifest;if(d||(["preloadSegment","skip","serverControl","renditionReports","partInf","partTargetDuration"].forEach(function(I){y.hasOwnProperty(I)&&delete y[I]}),y.segments&&y.segments.forEach(function(I){["parts","preloadHints"].forEach(function(k){I.hasOwnProperty(k)&&delete I[k]})})),!y.targetDuration){var v=10;y.segments&&y.segments.length&&(v=y.segments.reduce(function(I,k){return Math.max(I,k.duration)},0)),r&&r("manifest has no targetDuration defaulting to "+v),y.targetDuration=v}var S=nc(y);if(S.length&&!y.partTargetDuration){var A=S.reduce(function(I,k){return Math.max(I,k.duration)},0);r&&(r("manifest has no partTargetDuration defaulting to "+A),pc.error("LL-HLS manifest has parts but lacks required #EXT-X-PART-INF:PART-TARGET value. See https://datatracker.ietf.org/doc/html/draft-pantos-hls-rfc8216bis-09#section-4.4.3.7. Playback is not guaranteed.")),y.partTargetDuration=A}return y}({onwarn:function(d){var h=d.message;return i.logger_("m3u8-parser warn for "+n+": "+h)},oninfo:function(d){var h=d.message;return i.logger_("m3u8-parser info for "+n+": "+h)},manifestString:e.manifestString,customTagParsers:this.customTagParsers,customTagMappers:this.customTagMappers,experimentalLLHLS:this.experimentalLLHLS})},r.haveMetadata=function(e){var i=e.playlistString,n=e.playlistObject,o=e.url,l=e.id;this.request=null,this.state="HAVE_METADATA";var d=n||this.parseManifest_({url:o,manifestString:i});d.lastRequest=Date.now(),mc({playlist:d,uri:o,id:l});var h=Yo(this.master,d);this.targetDuration=d.partTargetDuration||d.targetDuration,this.pendingMedia_=null,h?(this.master=h,this.media_=this.master.playlists[l]):this.trigger("playlistunchanged"),this.updateMediaUpdateTimeout_(Jo(this.media(),!!h)),this.trigger("loadedplaylist")},r.dispose=function(){this.trigger("dispose"),this.stopRequest(),window.clearTimeout(this.mediaUpdateTimeout),window.clearTimeout(this.finalRenditionTimeout),this.off()},r.stopRequest=function(){if(this.request){var e=this.request;this.request=null,e.onreadystatechange=null,e.abort()}},r.media=function(e,i){var n=this;if(!e)return this.media_;if("HAVE_NOTHING"===this.state)throw new Error("Cannot switch media playlist from "+this.state);if("string"==typeof e){if(!this.master.playlists[e])throw new Error("Unknown playlist URI: "+e);e=this.master.playlists[e]}if(window.clearTimeout(this.finalRenditionTimeout),i){var o=(e.partTargetDuration||e.targetDuration)/2*1e3||5e3;this.finalRenditionTimeout=window.setTimeout(this.media.bind(this,e,!1),o)}else{var l=this.state,d=!this.media_||e.id!==this.media_.id,h=this.master.playlists[e.id];if(h&&h.endList||e.endList&&e.segments.length)return this.request&&(this.request.onreadystatechange=null,this.request.abort(),this.request=null),this.state="HAVE_METADATA",this.media_=e,void(d&&(this.trigger("mediachanging"),"HAVE_MASTER"===l?this.trigger("loadedmetadata"):this.trigger("mediachange")));if(this.updateMediaUpdateTimeout_(Jo(e,!0)),d){if(this.state="SWITCHING_MEDIA",this.request){if(e.resolvedUri===this.request.url)return;this.request.onreadystatechange=null,this.request.abort(),this.request=null}this.media_&&this.trigger("mediachanging"),this.pendingMedia_=e,this.request=this.vhs_.xhr({uri:e.resolvedUri,withCredentials:this.withCredentials},function(y,v){if(n.request){if(e.lastRequest=Date.now(),e.resolvedUri=Bn(n.handleManifestRedirects,e.resolvedUri,v),y)return n.playlistRequestError(n.request,e,l);n.haveMetadata({playlistString:v.responseText,url:e.uri,id:e.id}),"HAVE_MASTER"===l?n.trigger("loadedmetadata"):n.trigger("mediachange")}})}}},r.pause=function(){this.mediaUpdateTimeout&&(window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null),this.stopRequest(),"HAVE_NOTHING"===this.state&&(this.started=!1),"SWITCHING_MEDIA"===this.state?this.media_?this.state="HAVE_METADATA":this.state="HAVE_MASTER":"HAVE_CURRENT_METADATA"===this.state&&(this.state="HAVE_METADATA")},r.load=function(e){var i=this;this.mediaUpdateTimeout&&(window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null);var n=this.media();if(e){var o=n?(n.partTargetDuration||n.targetDuration)/2*1e3:5e3;this.mediaUpdateTimeout=window.setTimeout(function(){i.mediaUpdateTimeout=null,i.load()},o)}else this.started?n&&!n.endList?this.trigger("mediaupdatetimeout"):this.trigger("loadedplaylist"):this.start()},r.updateMediaUpdateTimeout_=function(e){var i=this;this.mediaUpdateTimeout&&(window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null),this.media()&&!this.media().endList&&(this.mediaUpdateTimeout=window.setTimeout(function(){i.mediaUpdateTimeout=null,i.trigger("mediaupdatetimeout"),i.updateMediaUpdateTimeout_(e)},e))},r.start=function(){var e=this;if(this.started=!0,"object"==typeof this.src)return this.src.uri||(this.src.uri=window.location.href),this.src.resolvedUri=this.src.uri,void setTimeout(function(){e.setupInitialPlaylist(e.src)},0);this.request=this.vhs_.xhr({uri:this.src,withCredentials:this.withCredentials},function(i,n){if(e.request){if(e.request=null,i)return e.error={status:n.status,message:"HLS playlist request error at URL: "+e.src+".",responseText:n.responseText,code:2},"HAVE_NOTHING"===e.state&&(e.started=!1),e.trigger("error");e.src=Bn(e.handleManifestRedirects,e.src,n);var o=e.parseManifest_({manifestString:n.responseText,url:e.src});e.setupInitialPlaylist(o)}})},r.srcUri=function(){return"string"==typeof this.src?this.src:this.src.uri},r.setupInitialPlaylist=function(e){if(this.state="HAVE_MASTER",e.playlists)return this.master=e,gc(this.master,this.srcUri()),e.playlists.forEach(function(n){n.segments=yc(n),n.segments.forEach(function(o){vc(o,n.resolvedUri)})}),this.trigger("loadedplaylist"),void(this.request||this.media(this.master.playlists[0]));var i=this.srcUri()||window.location.href;this.master=function(t,r){var a=Qo(0,r),e={mediaGroups:{AUDIO:{},VIDEO:{},"CLOSED-CAPTIONS":{},SUBTITLES:{}},uri:window.location.href,resolvedUri:window.location.href,playlists:[{uri:r,id:a,resolvedUri:r,attributes:{}}]};return e.playlists[a]=e.playlists[0],e.playlists[r]=e.playlists[0],e}(0,i),this.haveMetadata({playlistObject:e,url:i,id:this.master.playlists[0].id}),this.trigger("loadedmetadata")},t}(kv),Ov=he.xhr,Lv=he.mergeOptions,Zo=function(t,r,a,e){var i="arraybuffer"===t.responseType?t.response:t.responseText;!r&&i&&(t.responseTime=Date.now(),t.roundTripTime=t.responseTime-t.requestTime,t.bytesReceived=i.byteLength||i.length,t.bandwidth||(t.bandwidth=Math.floor(t.bytesReceived/t.roundTripTime*8*1e3))),a.headers&&(t.responseHeaders=a.headers),r&&"ETIMEDOUT"===r.code&&(t.timedout=!0),!r&&!t.aborted&&200!==a.statusCode&&206!==a.statusCode&&0!==a.statusCode&&(r=new Error("XHR Failed with a response of: "+(t&&(i||t.responseText)))),e(r,t)},Tc=function(){var t=function r(a,e){a=Lv({timeout:45e3},a);var i=r.beforeRequest||he.Vhs.xhr.beforeRequest;if(i&&"function"==typeof i){var n=i(a);n&&(a=n)}var l=(!0===he.Vhs.xhr.original?Ov:he.Vhs.xhr)(a,function(h,y){return Zo(l,h,y,e)}),d=l.abort;return l.abort=function(){return l.aborted=!0,d.apply(l,arguments)},l.uri=a.uri,l.requestTime=Date.now(),l};return t.original=!0,t},eu=function(t){var r={};return t.byterange&&(r.Range=function(t){return"bytes="+t.offset+"-"+("bigint"==typeof t.offset||"bigint"==typeof t.length?window.BigInt(t.offset)+window.BigInt(t.length)-window.BigInt(1):t.offset+t.length-1)}(t.byterange)),r},Mv=function(t,r){return t.start(r)+"-"+t.end(r)},Fv=function(t,r){var a=t.toString(16);return"00".substring(0,2-a.length)+a+(r%2?" ":"")},Nv=function(t){return t>=32&&t<126?String.fromCharCode(t):"."},bc=function(t){var r={};return Object.keys(t).forEach(function(a){var e=t[a];ArrayBuffer.isView(e)?r[a]={bytes:e.buffer,byteOffset:e.byteOffset,byteLength:e.byteLength}:r[a]=e}),r},$n=function(t){var r=t.byterange||{length:1/0,offset:0};return[r.length,r.offset,t.resolvedUri].join(",")},Sc=function(t){return t.resolvedUri},xc=function(t){for(var r=Array.prototype.slice.call(t),a=16,e="",o=0;oa){if(t>a+.25*n.duration)return null;e=n}return{segment:e,estimatedStart:e.videoTimingInfo?e.videoTimingInfo.transmuxedPresentationStart:a-e.duration,type:e.videoTimingInfo?"accurate":"estimate"}}(e,r);if(!n)return i({message:"valid programTime was not found"});if("estimate"===n.type)return i({message:"Accurate programTime could not be determined. Please seek to e.seekTime and try again",seekTime:n.estimatedStart});var o={mediaSeconds:e},l=function(t,r){if(!r.dateTimeObject)return null;var a=r.videoTimingInfo.transmuxerPrependedSeconds,n=t-(r.videoTimingInfo.transmuxedPresentationStart+a);return new Date(r.dateTimeObject.getTime()+1e3*n)}(e,n.segment);return l&&(o.programDateTime=l.toISOString()),i(null,o)},Kv=function s(t){var r=t.programTime,a=t.playlist,e=t.retryCount,i=void 0===e?2:e,n=t.seekTo,o=t.pauseAfterSeek,l=void 0===o||o,d=t.tech,h=t.callback;if(!h)throw new Error("seekToProgramTime: callback must be provided");if(typeof r>"u"||!a||!n)return h({message:"seekToProgramTime: programTime, seekTo and playlist must be provided"});if(!a.endList&&!d.hasStarted_)return h({message:"player must be playing a live stream to start buffering"});if(!function(t){if(!t.segments||0===t.segments.length)return!1;for(var r=0;rnew Date(l.getTime()+1e3*d)?null:(a>l&&(e=o),{segment:e,estimatedStart:e.videoTimingInfo?e.videoTimingInfo.transmuxedPresentationStart:Pr.duration(r,r.mediaSequence+r.segments.indexOf(e)),type:e.videoTimingInfo?"accurate":"estimate"})}(r,a);if(!y)return h({message:r+" was not found in the stream"});var v=y.segment,S=function(t,r){var a,e;try{a=new Date(t),e=new Date(r)}catch{}var i=a.getTime();return(e.getTime()-i)/1e3}(v.dateTimeObject,r);if("estimate"===y.type)return 0===i?h({message:r+" is not buffered yet. Try again"}):(n(y.estimatedStart+S),void d.one("seeked",function(){s({programTime:r,playlist:a,retryCount:i-1,seekTo:n,pauseAfterSeek:l,tech:d,callback:h})}));var A=v.start+S;d.one("seeked",function(){return h(null,d.currentTime())}),l&&d.pause(),n(A)},tu=function(t,r){if(4===t.readyState)return r()},Xv=function(t,r,a){var i,e=[],n=!1,o=function(v,S,A,I){return S.abort(),n=!0,a(v,S,A,I)},l=function(v,S){if(!n){if(v)return o(v,S,"",e);var A=S.responseText.substring(e&&e.byteLength||0,S.responseText.length);if(e=function(){for(var t=arguments.length,r=new Array(t),a=0;a=Q+k)return h(y,{response:A.subarray(k,k+Q),status:v.status,uri:v.uri});o.request=o.vhs_.xhr({uri:d,responseType:"arraybuffer",headers:eu({byterange:e.sidx.byterange})},h)})}else this.mediaRequest_=window.setTimeout(function(){return n(!1)},0)},r.dispose=function(){this.trigger("dispose"),this.stopRequest(),this.loadedPlaylists_={},window.clearTimeout(this.minimumUpdatePeriodTimeout_),window.clearTimeout(this.mediaRequest_),window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null,this.mediaRequest_=null,this.minimumUpdatePeriodTimeout_=null,this.masterPlaylistLoader_.createMupOnMedia_&&(this.off("loadedmetadata",this.masterPlaylistLoader_.createMupOnMedia_),this.masterPlaylistLoader_.createMupOnMedia_=null),this.off()},r.hasPendingRequest=function(){return this.request||this.mediaRequest_},r.stopRequest=function(){if(this.request){var e=this.request;this.request=null,e.onreadystatechange=null,e.abort()}},r.media=function(e){var i=this;if(!e)return this.media_;if("HAVE_NOTHING"===this.state)throw new Error("Cannot switch media playlist from "+this.state);var n=this.state;if("string"==typeof e){if(!this.masterPlaylistLoader_.master.playlists[e])throw new Error("Unknown playlist URI: "+e);e=this.masterPlaylistLoader_.master.playlists[e]}var o=!this.media_||e.id!==this.media_.id;if(o&&this.loadedPlaylists_[e.id]&&this.loadedPlaylists_[e.id].endList)return this.state="HAVE_METADATA",this.media_=e,void(o&&(this.trigger("mediachanging"),this.trigger("mediachange")));!o||(this.media_&&this.trigger("mediachanging"),this.addSidxSegments_(e,n,function(l){i.haveMetadata({startingState:n,playlist:e})}))},r.haveMetadata=function(e){var i=e.startingState,n=e.playlist;this.state="HAVE_METADATA",this.loadedPlaylists_[n.id]=n,this.mediaRequest_=null,this.refreshMedia_(n.id),"HAVE_MASTER"===i?this.trigger("loadedmetadata"):this.trigger("mediachange")},r.pause=function(){this.masterPlaylistLoader_.createMupOnMedia_&&(this.off("loadedmetadata",this.masterPlaylistLoader_.createMupOnMedia_),this.masterPlaylistLoader_.createMupOnMedia_=null),this.stopRequest(),window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null,this.isMaster_&&(window.clearTimeout(this.masterPlaylistLoader_.minimumUpdatePeriodTimeout_),this.masterPlaylistLoader_.minimumUpdatePeriodTimeout_=null),"HAVE_NOTHING"===this.state&&(this.started=!1)},r.load=function(e){var i=this;window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null;var n=this.media();if(e){var o=n?n.targetDuration/2*1e3:5e3;this.mediaUpdateTimeout=window.setTimeout(function(){return i.load()},o)}else this.started?n&&!n.endList?(this.isMaster_&&!this.minimumUpdatePeriodTimeout_&&(this.trigger("minimumUpdatePeriod"),this.updateMinimumUpdatePeriodTimeout_()),this.trigger("mediaupdatetimeout")):this.trigger("loadedplaylist"):this.start()},r.start=function(){var e=this;this.started=!0,this.isMaster_?this.requestMaster_(function(i,n){e.haveMaster_(),!e.hasPendingRequest()&&!e.media_&&e.media(e.masterPlaylistLoader_.master.playlists[0])}):this.mediaRequest_=window.setTimeout(function(){return e.haveMaster_()},0)},r.requestMaster_=function(e){var i=this;this.request=this.vhs_.xhr({uri:this.masterPlaylistLoader_.srcUrl,withCredentials:this.withCredentials},function(n,o){if(!i.requestErrored_(n,o)){var l=o.responseText!==i.masterPlaylistLoader_.masterXml_;return i.masterPlaylistLoader_.masterXml_=o.responseText,o.responseHeaders&&o.responseHeaders.date?i.masterLoaded_=Date.parse(o.responseHeaders.date):i.masterLoaded_=Date.now(),i.masterPlaylistLoader_.srcUrl=Bn(i.handleManifestRedirects,i.masterPlaylistLoader_.srcUrl,o),l?(i.handleMaster_(),void i.syncClientServerClock_(function(){return e(o,l)})):e(o,l)}"HAVE_NOTHING"===i.state&&(i.started=!1)})},r.syncClientServerClock_=function(e){var i=this,n=jg(this.masterPlaylistLoader_.masterXml_);return null===n?(this.masterPlaylistLoader_.clientOffset_=this.masterLoaded_-Date.now(),e()):"DIRECT"===n.method?(this.masterPlaylistLoader_.clientOffset_=n.value-Date.now(),e()):void(this.request=this.vhs_.xhr({uri:qr(this.masterPlaylistLoader_.srcUrl,n.value),method:n.method,withCredentials:this.withCredentials},function(o,l){if(i.request){if(o)return i.masterPlaylistLoader_.clientOffset_=i.masterLoaded_-Date.now(),e();var d;d="HEAD"===n.method?l.responseHeaders&&l.responseHeaders.date?Date.parse(l.responseHeaders.date):i.masterLoaded_:Date.parse(l.responseText),i.masterPlaylistLoader_.clientOffset_=d-Date.now(),e()}}))},r.haveMaster_=function(){this.state="HAVE_MASTER",this.isMaster_?this.trigger("loadedplaylist"):this.media_||this.media(this.childPlaylist_)},r.handleMaster_=function(){this.mediaRequest_=null;var e=this.masterPlaylistLoader_.master,i=function(t){var r=t.masterXml,a=t.srcUrl,e=t.clientOffset,i=t.sidxMapping,n=t.previousManifest,o=Ug(r,{manifestUri:a,clientOffset:e,sidxMapping:i,previousManifest:n});return gc(o,a),o}({masterXml:this.masterPlaylistLoader_.masterXml_,srcUrl:this.masterPlaylistLoader_.srcUrl,clientOffset:this.masterPlaylistLoader_.clientOffset_,sidxMapping:this.masterPlaylistLoader_.sidxMapping_,previousManifest:e});e&&(i=function(t,r,a){for(var e=!0,i=wc(t,{duration:r.duration,minimumUpdatePeriod:r.minimumUpdatePeriod,timelineStarts:r.timelineStarts}),n=0;n-1)},this.trigger=function(m){var p,g,T,b;if(p=f[m])if(2===arguments.length)for(T=p.length,g=0;g"u")){for(P in Ve)Ve.hasOwnProperty(P)&&(Ve[P]=[P.charCodeAt(0),P.charCodeAt(1),P.charCodeAt(2),P.charCodeAt(3)]);Ct=new Uint8Array(["i".charCodeAt(0),"s".charCodeAt(0),"o".charCodeAt(0),"m".charCodeAt(0)]),gt=new Uint8Array(["a".charCodeAt(0),"v".charCodeAt(0),"c".charCodeAt(0),"1".charCodeAt(0)]),Yt=new Uint8Array([0,0,0,1]),xt=new Uint8Array([0,0,0,0,0,0,0,0,118,105,100,101,0,0,0,0,0,0,0,0,0,0,0,0,86,105,100,101,111,72,97,110,100,108,101,114,0]),Mt=new Uint8Array([0,0,0,0,0,0,0,0,115,111,117,110,0,0,0,0,0,0,0,0,0,0,0,0,83,111,117,110,100,72,97,110,100,108,101,114,0]),kr={video:xt,audio:Mt},Ci=new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,12,117,114,108,32,0,0,0,1]),ui=new Uint8Array([0,0,0,0,0,0,0,0]),li=new Uint8Array([0,0,0,0,0,0,0,0]),Pi=li,ki=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0]),cf=li,ei=new Uint8Array([0,0,0,1,0,0,0,0,0,0,0,0])}})(),n=function(f){var g,T,m=[],p=0;for(g=1;g>>1,f.samplingfrequencyindex<<7|f.channelcount<<3,6,1,2]))},d=function(){return n(Ve.ftyp,Ct,Yt,Ct,gt)},Se=function(f){return n(Ve.hdlr,kr[f])},h=function(f){return n(Ve.mdat,f)},Te=function(f){var m=new Uint8Array([0,0,0,0,0,0,0,2,0,0,0,3,0,1,95,144,f.duration>>>24&255,f.duration>>>16&255,f.duration>>>8&255,255&f.duration,85,196,0,0]);return f.samplerate&&(m[12]=f.samplerate>>>24&255,m[13]=f.samplerate>>>16&255,m[14]=f.samplerate>>>8&255,m[15]=255&f.samplerate),n(Ve.mdhd,m)},ve=function(f){return n(Ve.mdia,Te(f),Se(f.type),v(f))},y=function(f){return n(Ve.mfhd,new Uint8Array([0,0,0,0,(4278190080&f)>>24,(16711680&f)>>16,(65280&f)>>8,255&f]))},v=function(f){return n(Ve.minf,"video"===f.type?n(Ve.vmhd,ei):n(Ve.smhd,ui),o(),Fe(f))},S=function(f,m){for(var p=[],g=m.length;g--;)p[g]=De(m[g]);return n.apply(null,[Ve.moof,y(f)].concat(p))},A=function(f){for(var m=f.length,p=[];m--;)p[m]=Q(f[m]);return n.apply(null,[Ve.moov,k(4294967295)].concat(p).concat(I(f)))},I=function(f){for(var m=f.length,p=[];m--;)p[m]=Le(f[m]);return n.apply(null,[Ve.mvex].concat(p))},k=function(f){var m=new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,2,0,1,95,144,(4278190080&f)>>24,(16711680&f)>>16,(65280&f)>>8,255&f,0,1,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,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,255,255,255]);return n(Ve.mvhd,m)},ke=function(f){var g,T,m=f.samples||[],p=new Uint8Array(4+m.length);for(T=0;T>>8),b.push(255&g[q].byteLength),b=b.concat(Array.prototype.slice.call(g[q]));for(q=0;q>>8),F.push(255&T[q].byteLength),F=F.concat(Array.prototype.slice.call(T[q]));if(ae=[Ve.avc1,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(65280&p.width)>>8,255&p.width,(65280&p.height)>>8,255&p.height,0,72,0,0,0,72,0,0,0,0,0,0,0,1,19,118,105,100,101,111,106,115,45,99,111,110,116,114,105,98,45,104,108,115,0,0,0,0,0,0,0,0,0,0,0,0,0,24,17,17]),n(Ve.avcC,new Uint8Array([1,p.profileIdc,p.profileCompatibility,p.levelIdc,255].concat([g.length],b,[T.length],F))),n(Ve.btrt,new Uint8Array([0,28,156,128,0,45,198,192,0,45,198,192]))],p.sarRatio){var J=p.sarRatio[0],fe=p.sarRatio[1];ae.push(n(Ve.pasp,new Uint8Array([(4278190080&J)>>24,(16711680&J)>>16,(65280&J)>>8,255&J,(4278190080&fe)>>24,(16711680&fe)>>16,(65280&fe)>>8,255&fe])))}return n.apply(null,ae)},f=function(p){return n(Ve.mp4a,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,(65280&p.channelcount)>>8,255&p.channelcount,(65280&p.samplesize)>>8,255&p.samplesize,0,0,0,0,(65280&p.samplerate)>>8,255&p.samplerate,0,0]),l(p))},Y=function(f){var m=new Uint8Array([0,0,0,7,0,0,0,0,0,0,0,0,(4278190080&f.id)>>24,(16711680&f.id)>>16,(65280&f.id)>>8,255&f.id,0,0,0,0,(4278190080&f.duration)>>24,(16711680&f.duration)>>16,(65280&f.duration)>>8,255&f.duration,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,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,64,0,0,0,(65280&f.width)>>8,255&f.width,0,0,(65280&f.height)>>8,255&f.height,0,0]);return n(Ve.tkhd,m)},De=function(f){var m,p,g,T,F,q;return m=n(Ve.tfhd,new Uint8Array([0,0,0,58,(4278190080&f.id)>>24,(16711680&f.id)>>16,(65280&f.id)>>8,255&f.id,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0])),F=Math.floor(f.baseMediaDecodeTime/i),q=Math.floor(f.baseMediaDecodeTime%i),p=n(Ve.tfdt,new Uint8Array([1,0,0,0,F>>>24&255,F>>>16&255,F>>>8&255,255&F,q>>>24&255,q>>>16&255,q>>>8&255,255&q])),92,"audio"===f.type?(g=Qe(f,92),n(Ve.traf,m,p,g)):(T=ke(f),g=Qe(f,T.length+92),n(Ve.traf,m,p,g,T))},Q=function(f){return f.duration=f.duration||4294967295,n(Ve.trak,Y(f),ve(f))},Le=function(f){var m=new Uint8Array([0,0,0,0,(4278190080&f.id)>>24,(16711680&f.id)>>16,(65280&f.id)>>8,255&f.id,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1]);return"video"!==f.type&&(m[m.length-1]=0),n(Ve.trex,m)},function(){var P,f,m;m=function(g,T){var b=0,F=0,q=0,ae=0;return g.length&&(void 0!==g[0].duration&&(b=1),void 0!==g[0].size&&(F=2),void 0!==g[0].flags&&(q=4),void 0!==g[0].compositionTimeOffset&&(ae=8)),[0,0,b|F|q|ae,1,(4278190080&g.length)>>>24,(16711680&g.length)>>>16,(65280&g.length)>>>8,255&g.length,(4278190080&T)>>>24,(16711680&T)>>>16,(65280&T)>>>8,255&T]},f=function(g,T){var b,F,q,ae,J,fe;for(T+=20+16*(ae=g.samples||[]).length,q=m(ae,T),(F=new Uint8Array(q.length+16*ae.length)).set(q),b=q.length,fe=0;fe>>24,F[b++]=(16711680&J.duration)>>>16,F[b++]=(65280&J.duration)>>>8,F[b++]=255&J.duration,F[b++]=(4278190080&J.size)>>>24,F[b++]=(16711680&J.size)>>>16,F[b++]=(65280&J.size)>>>8,F[b++]=255&J.size,F[b++]=J.flags.isLeading<<2|J.flags.dependsOn,F[b++]=J.flags.isDependedOn<<6|J.flags.hasRedundancy<<4|J.flags.paddingValue<<1|J.flags.isNonSyncSample,F[b++]=61440&J.flags.degradationPriority,F[b++]=15&J.flags.degradationPriority,F[b++]=(4278190080&J.compositionTimeOffset)>>>24,F[b++]=(16711680&J.compositionTimeOffset)>>>16,F[b++]=(65280&J.compositionTimeOffset)>>>8,F[b++]=255&J.compositionTimeOffset;return n(Ve.trun,F)},P=function(g,T){var b,F,q,ae,J,fe;for(T+=20+8*(ae=g.samples||[]).length,q=m(ae,T),(b=new Uint8Array(q.length+8*ae.length)).set(q),F=q.length,fe=0;fe>>24,b[F++]=(16711680&J.duration)>>>16,b[F++]=(65280&J.duration)>>>8,b[F++]=255&J.duration,b[F++]=(4278190080&J.size)>>>24,b[F++]=(16711680&J.size)>>>16,b[F++]=(65280&J.size)>>>8,b[F++]=255&J.size;return n(Ve.trun,b)},Qe=function(g,T){return"audio"===g.type?P(g,T):f(g,T)}}();var hu,mu,gu,Yn,vu,hf,pf,mf,Ha_mdat=h,Ha_moof=S,Ha_initSegment=function(f){var g,m=d(),p=A(f);return(g=new Uint8Array(m.byteLength+p.byteLength)).set(m),g.set(p,m.byteLength),g},ff=function(f,m){var p={size:0,flags:{isLeading:0,dependsOn:1,isDependedOn:0,hasRedundancy:0,degradationPriority:0,isNonSyncSample:1}};return p.dataOffset=m,p.compositionTimeOffset=f.pts-f.dts,p.duration=f.duration,p.size=4*f.length,p.size+=f.byteLength,f.keyFrame&&(p.flags.dependsOn=2,p.flags.isNonSyncSample=0),p},qa_groupNalsIntoFrames=function(f){var m,p,g=[],T=[];for(T.byteLength=0,T.nalCount=0,T.duration=0,g.byteLength=0,m=0;m1&&(m=f.shift(),f.byteLength-=m.byteLength,f.nalCount-=m.nalCount,f[0][0].dts=m.dts,f[0][0].pts=m.pts,f[0][0].duration+=m.duration),f},qa_generateSampleTable=function(f,m){var p,g,T,b,F,q=m||0,ae=[];for(p=0;pyt_ONE_SECOND_IN_TS/2))){for((J=Ky()[f.samplerate])||(J=m[0].data),fe=0;fe=p?f:(m.minSegmentDts=1/0,f.filter(function(g){return g.dts>=p&&(m.minSegmentDts=Math.min(m.minSegmentDts,g.dts),m.minSegmentPts=m.minSegmentDts,!0)}))},Jn_generateSampleTable=function(f){var m,p,g=[];for(m=0;m=this.virtualRowCount&&"function"==typeof this.beforeRowOverflow&&this.beforeRowOverflow(P),this.rows.length>0&&(this.rows.push(""),this.rowIdx++);this.rows.length>this.virtualRowCount;)this.rows.shift(),this.rowIdx--},di.prototype.isEmpty=function(){return 0===this.rows.length||1===this.rows.length&&""===this.rows[0]},di.prototype.addText=function(P){this.rows[this.rowIdx]+=P},di.prototype.backspace=function(){if(!this.isEmpty()){var P=this.rows[this.rowIdx];this.rows[this.rowIdx]=P.substr(0,P.length-1)}};var es=function(f,m,p){this.serviceNum=f,this.text="",this.currentWindow=new di(-1),this.windows=[],this.stream=p,"string"==typeof m&&this.createTextDecoder(m)};es.prototype.init=function(P,f){this.startPts=P;for(var m=0;m<8;m++)this.windows[m]=new di(m),"function"==typeof f&&(this.windows[m].beforeRowOverflow=f)},es.prototype.setCurrentWindow=function(P){this.currentWindow=this.windows[P]},es.prototype.createTextDecoder=function(P){if(typeof TextDecoder>"u")this.stream.trigger("log",{level:"warn",message:"The `encoding` option is unsupported without TextDecoder support"});else try{this.textDecoder_=new TextDecoder(P)}catch(f){this.stream.trigger("log",{level:"warn",message:"TextDecoder could not be created with "+P+" encoding. "+f})}};var Ot=function P(f){f=f||{},P.prototype.init.call(this);var T,m=this,p=f.captionServices||{},g={};Object.keys(p).forEach(function(b){T=p[b],/^SERVICE/.test(b)&&(g[b]=T.encoding)}),this.serviceEncodings=g,this.current708Packet=null,this.services={},this.push=function(b){3===b.type?(m.new708Packet(),m.add708Bytes(b)):(null===m.current708Packet&&m.new708Packet(),m.add708Bytes(b))}};Ot.prototype=new t,Ot.prototype.new708Packet=function(){null!==this.current708Packet&&this.push708Packet(),this.current708Packet={data:[],ptsVals:[]}},Ot.prototype.add708Bytes=function(P){var f=P.ccData,m=f>>>8,p=255&f;this.current708Packet.ptsVals.push(P.pts),this.current708Packet.data.push(m),this.current708Packet.data.push(p)},Ot.prototype.push708Packet=function(){var P=this.current708Packet,f=P.data,m=null,p=null,g=0,T=f[g++];for(P.seq=T>>6,P.sizeCode=63&T;g>5)&&p>0&&(m=T=f[g++]),this.pushServiceBlock(m,g,p),p>0&&(g+=p-1)},Ot.prototype.pushServiceBlock=function(P,f,m){var p,g=f,T=this.current708Packet.data,b=this.services[P];for(b||(b=this.initService(P,g));g>5,T.rowLock=(16&p)>>4,T.columnLock=(8&p)>>3,T.priority=7&p,p=m[++P],T.relativePositioning=(128&p)>>7,T.anchorVertical=127&p,p=m[++P],T.anchorHorizontal=p,p=m[++P],T.anchorPoint=(240&p)>>4,T.rowCount=15&p,p=m[++P],T.columnCount=63&p,p=m[++P],T.windowStyle=(56&p)>>3,T.penStyle=7&p,T.virtualRowCount=T.rowCount+1,P},Ot.prototype.setWindowAttributes=function(P,f){var m=this.current708Packet.data,p=m[P],g=f.currentWindow.winAttr;return p=m[++P],g.fillOpacity=(192&p)>>6,g.fillRed=(48&p)>>4,g.fillGreen=(12&p)>>2,g.fillBlue=3&p,p=m[++P],g.borderType=(192&p)>>6,g.borderRed=(48&p)>>4,g.borderGreen=(12&p)>>2,g.borderBlue=3&p,p=m[++P],g.borderType+=(128&p)>>5,g.wordWrap=(64&p)>>6,g.printDirection=(48&p)>>4,g.scrollDirection=(12&p)>>2,g.justify=3&p,p=m[++P],g.effectSpeed=(240&p)>>4,g.effectDirection=(12&p)>>2,g.displayEffect=3&p,P},Ot.prototype.flushDisplayed=function(P,f){for(var m=[],p=0;p<8;p++)f.windows[p].visible&&!f.windows[p].isEmpty()&&m.push(f.windows[p].getText());f.endPts=P,f.text=m.join("\n\n"),this.pushCaption(f),f.startPts=P},Ot.prototype.pushCaption=function(P){""!==P.text&&(this.trigger("data",{startPts:P.startPts,endPts:P.endPts,text:P.text,stream:"cc708_"+P.serviceNum}),P.text="",P.startPts=P.endPts)},Ot.prototype.displayWindows=function(P,f){var p=this.current708Packet.data[++P],g=this.getPts(P);this.flushDisplayed(g,f);for(var T=0;T<8;T++)p&1<>4,g.offset=(12&p)>>2,g.penSize=3&p,p=m[++P],g.italics=(128&p)>>7,g.underline=(64&p)>>6,g.edgeType=(56&p)>>3,g.fontStyle=7&p,P},Ot.prototype.setPenColor=function(P,f){var m=this.current708Packet.data,p=m[P],g=f.currentWindow.penColor;return p=m[++P],g.fgOpacity=(192&p)>>6,g.fgRed=(48&p)>>4,g.fgGreen=(12&p)>>2,g.fgBlue=3&p,p=m[++P],g.bgOpacity=(192&p)>>6,g.bgRed=(48&p)>>4,g.bgGreen=(12&p)>>2,g.bgBlue=3&p,p=m[++P],g.edgeRed=(48&p)>>4,g.edgeGreen=(12&p)>>2,g.edgeBlue=3&p,P},Ot.prototype.setPenLocation=function(P,f){var m=this.current708Packet.data,p=m[P],g=f.currentWindow.penLoc;return f.currentWindow.pendingNewLine=!0,p=m[++P],g.row=15&p,p=m[++P],g.column=63&p,P},Ot.prototype.reset=function(P,f){var m=this.getPts(P);return this.flushDisplayed(m,f),this.initService(f.serviceNum,P)};var c_={42:225,92:233,94:237,95:243,96:250,123:231,124:247,125:209,126:241,127:9608,304:174,305:176,306:189,307:191,308:8482,309:162,310:163,311:9834,312:224,313:160,314:232,315:226,316:234,317:238,318:244,319:251,544:193,545:201,546:211,547:218,548:220,549:252,550:8216,551:161,552:42,553:39,554:8212,555:169,556:8480,557:8226,558:8220,559:8221,560:192,561:194,562:199,563:200,564:202,565:203,566:235,567:206,568:207,569:239,570:212,571:217,572:249,573:219,574:171,575:187,800:195,801:227,802:205,803:204,804:236,805:210,806:242,807:213,808:245,809:123,810:125,811:92,812:94,813:95,814:124,815:126,816:196,817:228,818:214,819:246,820:223,821:165,822:164,823:9474,824:197,825:229,826:216,827:248,828:9484,829:9488,830:9492,831:9496},ts=function(f){return null===f?"":(f=c_[f]||f,String.fromCharCode(f))},f_=[4352,4384,4608,4640,5376,5408,5632,5664,5888,5920,4096,4864,4896,5120,5152],Ai=function(){for(var f=[],m=15;m--;)f.push("");return f},jt=function P(f,m){P.prototype.init.call(this),this.field_=f||0,this.dataChannel_=m||0,this.name_="CC"+(1+(this.field_<<1|this.dataChannel_)),this.setConstants(),this.reset(),this.push=function(p){var g,T,b,F,q;if((g=32639&p.ccData)!==this.lastControlCode_){if(4096==(61440&g)?this.lastControlCode_=g:g!==this.PADDING_&&(this.lastControlCode_=null),b=g>>>8,F=255&g,g!==this.PADDING_)if(g===this.RESUME_CAPTION_LOADING_)this.mode_="popOn";else if(g===this.END_OF_CAPTION_)this.mode_="popOn",this.clearFormatting(p.pts),this.flushDisplayed(p.pts),T=this.displayed_,this.displayed_=this.nonDisplayed_,this.nonDisplayed_=T,this.startPts_=p.pts;else if(g===this.ROLL_UP_2_ROWS_)this.rollUpRows_=2,this.setRollUp(p.pts);else if(g===this.ROLL_UP_3_ROWS_)this.rollUpRows_=3,this.setRollUp(p.pts);else if(g===this.ROLL_UP_4_ROWS_)this.rollUpRows_=4,this.setRollUp(p.pts);else if(g===this.CARRIAGE_RETURN_)this.clearFormatting(p.pts),this.flushDisplayed(p.pts),this.shiftRowsUp_(),this.startPts_=p.pts;else if(g===this.BACKSPACE_)"popOn"===this.mode_?this.nonDisplayed_[this.row_]=this.nonDisplayed_[this.row_].slice(0,-1):this.displayed_[this.row_]=this.displayed_[this.row_].slice(0,-1);else if(g===this.ERASE_DISPLAYED_MEMORY_)this.flushDisplayed(p.pts),this.displayed_=Ai();else if(g===this.ERASE_NON_DISPLAYED_MEMORY_)this.nonDisplayed_=Ai();else if(g===this.RESUME_DIRECT_CAPTIONING_)"paintOn"!==this.mode_&&(this.flushDisplayed(p.pts),this.displayed_=Ai()),this.mode_="paintOn",this.startPts_=p.pts;else if(this.isSpecialCharacter(b,F))q=ts((b=(3&b)<<8)|F),this[this.mode_](p.pts,q),this.column_++;else if(this.isExtCharacter(b,F))"popOn"===this.mode_?this.nonDisplayed_[this.row_]=this.nonDisplayed_[this.row_].slice(0,-1):this.displayed_[this.row_]=this.displayed_[this.row_].slice(0,-1),q=ts((b=(3&b)<<8)|F),this[this.mode_](p.pts,q),this.column_++;else if(this.isMidRowCode(b,F))this.clearFormatting(p.pts),this[this.mode_](p.pts," "),this.column_++,14==(14&F)&&this.addFormatting(p.pts,["i"]),1==(1&F)&&this.addFormatting(p.pts,["u"]);else if(this.isOffsetControlCode(b,F))this.column_+=3&F;else if(this.isPAC(b,F)){var ae=f_.indexOf(7968&g);"rollUp"===this.mode_&&(ae-this.rollUpRows_+1<0&&(ae=this.rollUpRows_-1),this.setRollUp(p.pts,ae)),ae!==this.row_&&(this.clearFormatting(p.pts),this.row_=ae),1&F&&-1===this.formatting_.indexOf("u")&&this.addFormatting(p.pts,["u"]),16==(16&g)&&(this.column_=4*((14&g)>>1)),this.isColorPAC(F)&&14==(14&F)&&this.addFormatting(p.pts,["i"])}else this.isNormalChar(b)&&(0===F&&(F=null),q=ts(b),q+=ts(F),this[this.mode_](p.pts,q),this.column_+=q.length)}else this.lastControlCode_=null}};jt.prototype=new t,jt.prototype.flushDisplayed=function(P){var f=this.displayed_.map(function(m,p){try{return m.trim()}catch{return this.trigger("log",{level:"warn",message:"Skipping a malformed 608 caption at index "+p+"."}),""}},this).join("\n").replace(/^\n+|\n+$/g,"");f.length&&this.trigger("data",{startPts:this.startPts_,endPts:P,text:f,stream:this.name_})},jt.prototype.reset=function(){this.mode_="popOn",this.topRow_=0,this.startPts_=0,this.displayed_=Ai(),this.nonDisplayed_=Ai(),this.lastControlCode_=null,this.column_=0,this.row_=14,this.rollUpRows_=2,this.formatting_=[]},jt.prototype.setConstants=function(){0===this.dataChannel_?(this.BASE_=16,this.EXT_=17,this.CONTROL_=(20|this.field_)<<8,this.OFFSET_=23):1===this.dataChannel_&&(this.BASE_=24,this.EXT_=25,this.CONTROL_=(28|this.field_)<<8,this.OFFSET_=31),this.PADDING_=0,this.RESUME_CAPTION_LOADING_=32|this.CONTROL_,this.END_OF_CAPTION_=47|this.CONTROL_,this.ROLL_UP_2_ROWS_=37|this.CONTROL_,this.ROLL_UP_3_ROWS_=38|this.CONTROL_,this.ROLL_UP_4_ROWS_=39|this.CONTROL_,this.CARRIAGE_RETURN_=45|this.CONTROL_,this.RESUME_DIRECT_CAPTIONING_=41|this.CONTROL_,this.BACKSPACE_=33|this.CONTROL_,this.ERASE_DISPLAYED_MEMORY_=44|this.CONTROL_,this.ERASE_NON_DISPLAYED_MEMORY_=46|this.CONTROL_},jt.prototype.isSpecialCharacter=function(P,f){return P===this.EXT_&&f>=48&&f<=63},jt.prototype.isExtCharacter=function(P,f){return(P===this.EXT_+1||P===this.EXT_+2)&&f>=32&&f<=63},jt.prototype.isMidRowCode=function(P,f){return P===this.EXT_&&f>=32&&f<=47},jt.prototype.isOffsetControlCode=function(P,f){return P===this.OFFSET_&&f>=33&&f<=35},jt.prototype.isPAC=function(P,f){return P>=this.BASE_&&P=64&&f<=127},jt.prototype.isColorPAC=function(P){return P>=64&&P<=79||P>=96&&P<=127},jt.prototype.isNormalChar=function(P){return P>=32&&P<=127},jt.prototype.setRollUp=function(P,f){if("rollUp"!==this.mode_&&(this.row_=14,this.mode_="rollUp",this.flushDisplayed(P),this.nonDisplayed_=Ai(),this.displayed_=Ai()),void 0!==f&&f!==this.row_)for(var m=0;m"},"");this[this.mode_](P,m)},jt.prototype.clearFormatting=function(P){if(this.formatting_.length){var f=this.formatting_.reverse().reduce(function(m,p){return m+""},"");this.formatting_=[],this[this.mode_](P,f)}},jt.prototype.popOn=function(P,f){var m=this.nonDisplayed_[this.row_];m+=f,this.nonDisplayed_[this.row_]=m},jt.prototype.rollUp=function(P,f){var m=this.displayed_[this.row_];m+=f,this.displayed_[this.row_]=m},jt.prototype.shiftRowsUp_=function(){var P;for(P=0;Pm&&(p=-1);Math.abs(m-f)>4294967296;)f+=8589934592*p;return f},yf=function P(f){var m,p;P.prototype.init.call(this),this.type_=f||"shared",this.push=function(g){"shared"!==this.type_&&g.type!==this.type_||(void 0===p&&(p=g.dts),g.dts=yu(g.dts,p),g.pts=yu(g.pts,p),m=g.dts,this.trigger("data",g))},this.flush=function(){p=m,this.trigger("done")},this.endTimeline=function(){this.flush(),this.trigger("endedtimeline")},this.discontinuity=function(){p=void 0,m=void 0},this.reset=function(){this.discontinuity(),this.trigger("reset")}};yf.prototype=new t;var ss,_f_TimestampRolloverStream=yf,_f_handleRollover=yu,Tf=function(f,m,p){var g,T="";for(g=m;g>>2;Ae*=4,Ae+=3&je[7],fe.timeStamp=Ae,void 0===q.pts&&void 0===q.dts&&(q.pts=fe.timeStamp,q.dts=fe.timeStamp),this.trigger("timestamp",fe)}q.frames.push(fe),ae+=10,ae+=J}while(ae>>4>1&&(F+=T[F]+1),0===b.pid)b.type="pat",f(T.subarray(F),b),this.trigger("data",b);else if(b.pid===this.pmtPid)for(b.type="pmt",f(T.subarray(F),b),this.trigger("data",b);this.packetsWaitingForPmt.length;)this.processPes_.apply(this,this.packetsWaitingForPmt.shift());else void 0===this.programMapTable?this.packetsWaitingForPmt.push([T,F,b]):this.processPes_(T,F,b)},this.processPes_=function(T,b,F){F.pid===this.programMapTable.video?F.streamType=ur.H264_STREAM_TYPE:F.pid===this.programMapTable.audio?F.streamType=ur.ADTS_STREAM_TYPE:F.streamType=this.programMapTable["timed-metadata"][F.pid],F.type="pes",F.data=T.subarray(b),this.trigger("data",F)}},Ga.prototype=new t,Ga.STREAM_TYPES={h264:27,adts:15},us=function(){var b,f=this,m=!1,p={data:[],size:0},g={data:[],size:0},T={data:[],size:0},q=function(J,fe,xe){var Er,Re=new Uint8Array(J.size),je={type:fe},Ae=0,Ke=0,Zt=!1;if(J.data.length&&!(J.size<9)){for(je.trackId=J.data[0].pid,Ae=0;Ae>>3,fe.pts*=4,fe.pts+=(6&J[13])>>>1,fe.dts=fe.pts,64&xe&&(fe.dts=(14&J[14])<<27|(255&J[15])<<20|(254&J[16])<<12|(255&J[17])<<5|(254&J[18])>>>3,fe.dts*=4,fe.dts+=(6&J[18])>>>1)),fe.data=J.subarray(9+J[8]))})(Re,je),Zt="video"===fe||je.packetLength<=J.size,(xe||Zt)&&(J.size=0,J.data.length=0),Zt&&f.trigger("data",je)}};us.prototype.init.call(this),this.push=function(ae){({pat:function(){},pes:function(){var fe,xe;switch(ae.streamType){case ur.H264_STREAM_TYPE:fe=p,xe="video";break;case ur.ADTS_STREAM_TYPE:fe=g,xe="audio";break;case ur.METADATA_STREAM_TYPE:fe=T,xe="timed-metadata";break;default:return}ae.payloadUnitStartIndicator&&q(fe,xe,!0),fe.data.push(ae),fe.size+=ae.data.byteLength},pmt:function(){var fe={type:"metadata",tracks:[]};null!==(b=ae.programMapTable).video&&fe.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+b.video,codec:"avc",type:"video"}),null!==b.audio&&fe.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+b.audio,codec:"adts",type:"audio"}),m=!0,f.trigger("data",fe)}})[ae.type]()},this.reset=function(){p.size=0,p.data.length=0,g.size=0,g.data.length=0,this.trigger("reset")},this.flushStreams_=function(){q(p,"video"),q(g,"audio"),q(T,"timed-metadata")},this.flush=function(){if(!m&&b){var ae={type:"metadata",tracks:[]};null!==b.video&&ae.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+b.video,codec:"avc",type:"video"}),null!==b.audio&&ae.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+b.audio,codec:"adts",type:"audio"}),f.trigger("data",ae)}m=!1,this.flushStreams_(),this.trigger("done")}},us.prototype=new t;var Sf={PAT_PID:0,MP2T_PACKET_LENGTH:188,TransportPacketStream:os,TransportParseStream:Ga,ElementaryStream:us,TimestampRolloverStream:v_,CaptionStream:is.CaptionStream,Cea608Stream:is.Cea608Stream,Cea708Stream:is.Cea708Stream,MetadataStream:g_};for(var Tu in ur)ur.hasOwnProperty(Tu)&&(Sf[Tu]=ur[Tu]);var ls,ci=Sf,y_=yt_ONE_SECOND_IN_TS,xf=[96e3,88200,64e3,48e3,44100,32e3,24e3,22050,16e3,12e3,11025,8e3,7350];ls=function(f){var m,p=0;ls.prototype.init.call(this),this.skipWarn_=function(g,T){this.trigger("log",{level:"warn",message:"adts skiping bytes "+g+" to "+T+" in frame "+p+" outside syncword"})},this.push=function(g){var b,F,q,ae,J,T=0;if(f||(p=0),"audio"===g.type){m&&m.length?(q=m,(m=new Uint8Array(q.byteLength+g.data.byteLength)).set(q),m.set(g.data,q.byteLength)):m=g.data;for(var fe;T+7>5,J=(ae=1024*(1+(3&m[T+6])))*y_/xf[(60&m[T+2])>>>2],m.byteLength-T>>6&3),channelcount:(1&m[T+2])<<2|(192&m[T+3])>>>6,samplerate:xf[(60&m[T+2])>>>2],samplingfrequencyindex:(60&m[T+2])>>>2,samplesize:16,data:m.subarray(T+7+F,T+b)}),p++,T+=b}else"number"!=typeof fe&&(fe=T),T++;"number"==typeof fe&&(this.skipWarn_(fe,T),fe=null),m=m.subarray(T)}},this.flush=function(){p=0,this.trigger("done")},this.reset=function(){m=void 0,this.trigger("reset")},this.endTimeline=function(){m=void 0,this.trigger("endedtimeline")}},ls.prototype=new t;var wf,Ef=ls;wf=function(f){var m=f.byteLength,p=0,g=0;this.length=function(){return 8*m},this.bitsAvailable=function(){return 8*m+g},this.loadWord=function(){var T=f.byteLength-m,b=new Uint8Array(4),F=Math.min(4,m);if(0===F)throw new Error("no bytes available");b.set(f.subarray(T,T+F)),p=new DataView(b.buffer).getUint32(0),g=8*F,m-=F},this.skipBits=function(T){var b;g>T?(p<<=T,g-=T):(T-=g,T-=8*(b=Math.floor(T/8)),m-=b,this.loadWord(),p<<=T,g-=T)},this.readBits=function(T){var b=Math.min(g,T),F=p>>>32-b;return(g-=b)>0?p<<=b:m>0&&this.loadWord(),(b=T-b)>0?F<>>T))return p<<=T,g-=T,T;return this.loadWord(),T+this.skipLeadingZeros()},this.skipUnsignedExpGolomb=function(){this.skipBits(1+this.skipLeadingZeros())},this.skipExpGolomb=function(){this.skipBits(1+this.skipLeadingZeros())},this.readUnsignedExpGolomb=function(){var T=this.skipLeadingZeros();return this.readBits(T+1)-1},this.readExpGolomb=function(){var T=this.readUnsignedExpGolomb();return 1&T?1+T>>>1:-1*(T>>>1)},this.readBoolean=function(){return 1===this.readBits(1)},this.readUnsignedByte=function(){return this.readBits(8)},this.loadWord()};var ds,Wa,Cf,__=wf;Wa=function(){var m,p,f=0;Wa.prototype.init.call(this),this.push=function(g){var T;p?((T=new Uint8Array(p.byteLength+g.data.byteLength)).set(p),T.set(g.data,p.byteLength),p=T):p=g.data;for(var b=p.byteLength;f3&&this.trigger("data",p.subarray(f+3)),p=null,f=0,this.trigger("done")},this.endTimeline=function(){this.flush(),this.trigger("endedtimeline")}},Wa.prototype=new t,Cf={100:!0,110:!0,122:!0,244:!0,44:!0,83:!0,86:!0,118:!0,128:!0,138:!0,139:!0,134:!0},ds=function(){var m,p,g,T,b,F,q,f=new Wa;ds.prototype.init.call(this),m=this,this.push=function(ae){"video"===ae.type&&(p=ae.trackId,g=ae.pts,T=ae.dts,f.push(ae))},f.on("data",function(ae){var J={trackId:p,pts:g,dts:T,data:ae,nalUnitTypeCode:31&ae[0]};switch(J.nalUnitTypeCode){case 5:J.nalUnitType="slice_layer_without_partitioning_rbsp_idr";break;case 6:J.nalUnitType="sei_rbsp",J.escapedRBSP=b(ae.subarray(1));break;case 7:J.nalUnitType="seq_parameter_set_rbsp",J.escapedRBSP=b(ae.subarray(1)),J.config=F(J.escapedRBSP);break;case 8:J.nalUnitType="pic_parameter_set_rbsp";break;case 9:J.nalUnitType="access_unit_delimiter_rbsp"}m.trigger("data",J)}),f.on("done",function(){m.trigger("done")}),f.on("partialdone",function(){m.trigger("partialdone")}),f.on("reset",function(){m.trigger("reset")}),f.on("endedtimeline",function(){m.trigger("endedtimeline")}),this.flush=function(){f.flush()},this.partialFlush=function(){f.partialFlush()},this.reset=function(){f.reset()},this.endTimeline=function(){f.endTimeline()},q=function(J,fe){var je,xe=8,Re=8;for(je=0;je=0?p:0,(16&f[m+5])>>4?p+20:p+10},S_=function P(f,m){return f.length-m<10||f[m]!=="I".charCodeAt(0)||f[m+1]!=="D".charCodeAt(0)||f[m+2]!=="3".charCodeAt(0)?m:P(f,m+=Pf(f,m))},kf=function(f){return f[0]<<21|f[1]<<14|f[2]<<7|f[3]},w_=function(f,m,p){return unescape(function(f,m,p){var g,T="";for(g=m;g=m+2&&255==(255&f[m])&&240==(240&f[m+1])&&16==(22&f[m+1])},parseId3TagSize:Pf,parseAdtsSize:function(f,m){var p=(224&f[m+5])>>5,g=f[m+4]<<3;return 6144&f[m+3]|g|p},parseType:function(f,m){return f[m]==="I".charCodeAt(0)&&f[m+1]==="D".charCodeAt(0)&&f[m+2]==="3".charCodeAt(0)?"timed-metadata":!0&f[m]&&240==(240&f[m+1])?"audio":null},parseSampleRate:function(f){for(var m=0;m+5>>2];m++}return null},parseAacTimestamp:function(f){var m,p,g;m=10,64&f[5]&&(m+=4,m+=kf(f.subarray(10,14)));do{if((p=kf(f.subarray(m+4,m+8)))<1)return null;if("PRIV"===String.fromCharCode(f[m],f[m+1],f[m+2],f[m+3])){g=f.subarray(m+10,m+p+10);for(var b=0;b>>2;return ae*=4,ae+=3&q[7]}break}}m+=10,m+=p}while(m=3;)if(f[T]!=="I".charCodeAt(0)||f[T+1]!=="D".charCodeAt(0)||f[T+2]!=="3".charCodeAt(0))if(255!=(255&f[T])||240!=(240&f[T+1]))T++;else{if(f.length-T<7||T+(g=cs.parseAdtsSize(f,T))>f.length)break;q={type:"audio",data:f.subarray(T,T+g),pts:m,dts:m},this.trigger("data",q),T+=g}else{if(f.length-T<10||T+(g=cs.parseId3TagSize(f,T))>f.length)break;F={type:"timed-metadata",data:f.subarray(T,T+g)},this.trigger("data",F),T+=g}b=f.length-T,f=b>0?f.subarray(T):new Uint8Array},this.reset=function(){f=new Uint8Array,this.trigger("reset")},this.endTimeline=function(){f=new Uint8Array,this.trigger("endedtimeline")}},fs.prototype=new t;var Ka,la,hs,Ii,I_=fs,bu=["audioobjecttype","channelcount","samplerate","samplingfrequencyindex","samplesize"],Su=["width","height","profileIdc","levelIdc","profileCompatibility","sarRatio"],L_=T_.H264Stream,R_=cs.isLikelyAacData,M_=yt_ONE_SECOND_IN_TS,F_=function(f,m){m.stream=f,this.trigger("log",m)},Af=function(f,m){for(var p=Object.keys(m),g=0;g=-1e4&&xe<=45e3&&(!Re||fe>xe)&&(Re=Ae,fe=xe));return Re?Re.gop:null},this.alignGopsAtStart_=function(q){var ae,J,fe,xe,Re,je,Ae,Ke;for(Re=q.byteLength,je=q.nalCount,Ae=q.duration,ae=J=0;aefe.pts?ae++:(J++,Re-=xe.byteLength,je-=xe.nalCount,Ae-=xe.duration);return 0===J?q:J===q.length?null:((Ke=q.slice(J)).byteLength=Re,Ke.duration=Ae,Ke.nalCount=je,Ke.pts=Ke[0].pts,Ke.dts=Ke[0].dts,Ke)},this.alignGopsAtEnd_=function(q){var ae,J,fe,xe,Re,je,Ae;for(ae=T.length-1,J=q.length-1,Re=null,je=!1;ae>=0&&J>=0;){if(fe=T[ae],xe=q[J],fe.pts===xe.pts){je=!0;break}fe.pts>xe.pts?ae--:(ae===T.length-1&&(Re=J),J--)}if(!je&&null===Re)return null;if(0===(Ae=je?J:Re))return q;var Ke=q.slice(Ae),Zt=Ke.reduce(function(Er,Li){return Er.byteLength+=Li.byteLength,Er.duration+=Li.duration,Er.nalCount+=Li.nalCount,Er},{byteLength:0,duration:0,nalCount:0});return Ke.byteLength=Zt.byteLength,Ke.duration=Zt.duration,Ke.nalCount=Zt.nalCount,Ke.pts=Ke[0].pts,Ke.dts=Ke[0].dts,Ke},this.alignGopsWith=function(q){T=q}},Ka.prototype=new t,Ii=function(f,m){this.numberOfTracks=0,this.metadataStream=m,typeof(f=f||{}).remux<"u"?this.remuxTracks=!!f.remux:this.remuxTracks=!0,"boolean"==typeof f.keepOriginalTimestamps?this.keepOriginalTimestamps=f.keepOriginalTimestamps:this.keepOriginalTimestamps=!1,this.pendingTracks=[],this.videoTrack=null,this.pendingBoxes=[],this.pendingCaptions=[],this.pendingMetadata=[],this.pendingBytes=0,this.emittedTracks=0,Ii.prototype.init.call(this),this.push=function(p){return p.text?this.pendingCaptions.push(p):p.frames?this.pendingMetadata.push(p):(this.pendingTracks.push(p.track),this.pendingBytes+=p.boxes.byteLength,"video"===p.track.type&&(this.videoTrack=p.track,this.pendingBoxes.push(p.boxes)),void("audio"===p.track.type&&(this.audioTrack=p.track,this.pendingBoxes.unshift(p.boxes))))}},Ii.prototype=new t,Ii.prototype.flush=function(P){var p,g,T,F,f=0,m={captions:[],captionStreams:{},metadata:[],info:{}},b=0;if(this.pendingTracks.length=this.numberOfTracks&&(this.trigger("done"),this.emittedTracks=0))}if(this.videoTrack?(b=this.videoTrack.timelineStartInfo.pts,Su.forEach(function(q){m.info[q]=this.videoTrack[q]},this)):this.audioTrack&&(b=this.audioTrack.timelineStartInfo.pts,bu.forEach(function(q){m.info[q]=this.audioTrack[q]},this)),this.videoTrack||this.audioTrack){for(1===this.pendingTracks.length?m.type=this.pendingTracks[0].type:m.type="combined",this.emittedTracks+=this.pendingTracks.length,T=Ha_initSegment(this.pendingTracks),m.initSegment=new Uint8Array(T.byteLength),m.initSegment.set(T),m.data=new Uint8Array(this.pendingBytes),F=0;F=this.numberOfTracks&&(this.trigger("done"),this.emittedTracks=0)},Ii.prototype.setRemux=function(P){this.remuxTracks=P},hs=function(f){var g,T,m=this,p=!0;hs.prototype.init.call(this),f=f||{},this.baseMediaDecodeTime=f.baseMediaDecodeTime||0,this.transmuxPipeline_={},this.setupAacPipeline=function(){var b={};this.transmuxPipeline_=b,b.type="aac",b.metadataStream=new ci.MetadataStream,b.aacStream=new I_,b.audioTimestampRolloverStream=new ci.TimestampRolloverStream("audio"),b.timedMetadataTimestampRolloverStream=new ci.TimestampRolloverStream("timed-metadata"),b.adtsStream=new Ef,b.coalesceStream=new Ii(f,b.metadataStream),b.headOfPipeline=b.aacStream,b.aacStream.pipe(b.audioTimestampRolloverStream).pipe(b.adtsStream),b.aacStream.pipe(b.timedMetadataTimestampRolloverStream).pipe(b.metadataStream).pipe(b.coalesceStream),b.metadataStream.on("timestamp",function(F){b.aacStream.setTimestamp(F.timeStamp)}),b.aacStream.on("data",function(F){"timed-metadata"!==F.type&&"audio"!==F.type||b.audioSegmentStream||(T=T||{timelineStartInfo:{baseMediaDecodeTime:m.baseMediaDecodeTime},codec:"adts",type:"audio"},b.coalesceStream.numberOfTracks++,b.audioSegmentStream=new la(T,f),b.audioSegmentStream.on("log",m.getLogTrigger_("audioSegmentStream")),b.audioSegmentStream.on("timingInfo",m.trigger.bind(m,"audioTimingInfo")),b.adtsStream.pipe(b.audioSegmentStream).pipe(b.coalesceStream),m.trigger("trackinfo",{hasAudio:!!T,hasVideo:!!g}))}),b.coalesceStream.on("data",this.trigger.bind(this,"data")),b.coalesceStream.on("done",this.trigger.bind(this,"done")),Af(this,b)},this.setupTsPipeline=function(){var b={};this.transmuxPipeline_=b,b.type="ts",b.metadataStream=new ci.MetadataStream,b.packetStream=new ci.TransportPacketStream,b.parseStream=new ci.TransportParseStream,b.elementaryStream=new ci.ElementaryStream,b.timestampRolloverStream=new ci.TimestampRolloverStream,b.adtsStream=new Ef,b.h264Stream=new L_,b.captionStream=new ci.CaptionStream(f),b.coalesceStream=new Ii(f,b.metadataStream),b.headOfPipeline=b.packetStream,b.packetStream.pipe(b.parseStream).pipe(b.elementaryStream).pipe(b.timestampRolloverStream),b.timestampRolloverStream.pipe(b.h264Stream),b.timestampRolloverStream.pipe(b.adtsStream),b.timestampRolloverStream.pipe(b.metadataStream).pipe(b.coalesceStream),b.h264Stream.pipe(b.captionStream).pipe(b.coalesceStream),b.elementaryStream.on("data",function(F){var q;if("metadata"===F.type){for(q=F.tracks.length;q--;)g||"video"!==F.tracks[q].type?!T&&"audio"===F.tracks[q].type&&((T=F.tracks[q]).timelineStartInfo.baseMediaDecodeTime=m.baseMediaDecodeTime):(g=F.tracks[q]).timelineStartInfo.baseMediaDecodeTime=m.baseMediaDecodeTime;g&&!b.videoSegmentStream&&(b.coalesceStream.numberOfTracks++,b.videoSegmentStream=new Ka(g,f),b.videoSegmentStream.on("log",m.getLogTrigger_("videoSegmentStream")),b.videoSegmentStream.on("timelineStartInfo",function(ae){T&&!f.keepOriginalTimestamps&&(T.timelineStartInfo=ae,b.audioSegmentStream.setEarliestDts(ae.dts-m.baseMediaDecodeTime))}),b.videoSegmentStream.on("processedGopsInfo",m.trigger.bind(m,"gopInfo")),b.videoSegmentStream.on("segmentTimingInfo",m.trigger.bind(m,"videoSegmentTimingInfo")),b.videoSegmentStream.on("baseMediaDecodeTime",function(ae){T&&b.audioSegmentStream.setVideoBaseMediaDecodeTime(ae)}),b.videoSegmentStream.on("timingInfo",m.trigger.bind(m,"videoTimingInfo")),b.h264Stream.pipe(b.videoSegmentStream).pipe(b.coalesceStream)),T&&!b.audioSegmentStream&&(b.coalesceStream.numberOfTracks++,b.audioSegmentStream=new la(T,f),b.audioSegmentStream.on("log",m.getLogTrigger_("audioSegmentStream")),b.audioSegmentStream.on("timingInfo",m.trigger.bind(m,"audioTimingInfo")),b.audioSegmentStream.on("segmentTimingInfo",m.trigger.bind(m,"audioSegmentTimingInfo")),b.adtsStream.pipe(b.audioSegmentStream).pipe(b.coalesceStream)),m.trigger("trackinfo",{hasAudio:!!T,hasVideo:!!g})}}),b.coalesceStream.on("data",this.trigger.bind(this,"data")),b.coalesceStream.on("id3Frame",function(F){F.dispatchType=b.metadataStream.dispatchType,m.trigger("id3Frame",F)}),b.coalesceStream.on("caption",this.trigger.bind(this,"caption")),b.coalesceStream.on("done",this.trigger.bind(this,"done")),Af(this,b)},this.setBaseMediaDecodeTime=function(b){var F=this.transmuxPipeline_;f.keepOriginalTimestamps||(this.baseMediaDecodeTime=b),T&&(T.timelineStartInfo.dts=void 0,T.timelineStartInfo.pts=void 0,Gr_clearDtsInfo(T),F.audioTimestampRolloverStream&&F.audioTimestampRolloverStream.discontinuity()),g&&(F.videoSegmentStream&&(F.videoSegmentStream.gopCache_=[]),g.timelineStartInfo.dts=void 0,g.timelineStartInfo.pts=void 0,Gr_clearDtsInfo(g),F.captionStream.reset()),F.timestampRolloverStream&&F.timestampRolloverStream.discontinuity()},this.setAudioAppendStart=function(b){T&&this.transmuxPipeline_.audioSegmentStream.setAudioAppendStart(b)},this.setRemux=function(b){var F=this.transmuxPipeline_;f.remux=b,F&&F.coalesceStream&&F.coalesceStream.setRemux(b)},this.alignGopsWith=function(b){g&&this.transmuxPipeline_.videoSegmentStream&&this.transmuxPipeline_.videoSegmentStream.alignGopsWith(b)},this.getLogTrigger_=function(b){var F=this;return function(q){q.stream=b,F.trigger("log",q)}},this.push=function(b){if(p){var F=R_(b);F&&"aac"!==this.transmuxPipeline_.type?this.setupAacPipeline():!F&&"ts"!==this.transmuxPipeline_.type&&this.setupTsPipeline(),p=!1}this.transmuxPipeline_.headOfPipeline.push(b)},this.flush=function(){p=!0,this.transmuxPipeline_.headOfPipeline.flush()},this.endTimeline=function(){this.transmuxPipeline_.headOfPipeline.endTimeline()},this.reset=function(){this.transmuxPipeline_.headOfPipeline&&this.transmuxPipeline_.headOfPipeline.reset()},this.resetCaptions=function(){this.transmuxPipeline_.captionStream&&this.transmuxPipeline_.captionStream.reset()}},hs.prototype=new t;var Nf,jf,Eu,N_={Transmuxer:hs,VideoSegmentStream:Ka,AudioSegmentStream:la,AUDIO_PROPERTIES:bu,VIDEO_PROPERTIES:Su,generateSegmentTimingInfo:xu},ps_toUnsigned=function(f){return f>>>0},ps_toHexString=function(f){return("00"+f.toString(16)).slice(-2)},Di=function(f){var m="";return m+=String.fromCharCode(f[0]),m+=String.fromCharCode(f[1]),m+=String.fromCharCode(f[2]),m+=String.fromCharCode(f[3])},V_=ps_toUnsigned,Ft=function P(f,m){var g,T,b,F,q,p=[];if(!m.length)return null;for(g=0;g1?g+T:f.byteLength,b===m[0]&&(1===m.length?p.push(f.subarray(g+8,F)):(q=P(f.subarray(g+8,F),m.slice(1))).length&&(p=p.concat(q))),g=F;return p},H_=ps_toUnsigned,q_=e.getUint64,Df=function(f){var m={version:f[0],flags:new Uint8Array(f.subarray(1,4))};return 1===m.version?m.baseMediaDecodeTime=q_(f.subarray(4)):m.baseMediaDecodeTime=H_(f[4]<<24|f[5]<<16|f[6]<<8|f[7]),m},Of=function(f){return{isLeading:(12&f[0])>>>2,dependsOn:3&f[0],isDependedOn:(192&f[1])>>>6,hasRedundancy:(48&f[1])>>>4,paddingValue:(14&f[1])>>>1,isNonSyncSample:1&f[1],degradationPriority:f[2]<<8|f[3]}},Lf=function(f){var xe,m={version:f[0],flags:new Uint8Array(f.subarray(1,4)),samples:[]},p=new DataView(f.buffer,f.byteOffset,f.byteLength),g=1&m.flags[2],T=4&m.flags[2],b=1&m.flags[1],F=2&m.flags[1],q=4&m.flags[1],ae=8&m.flags[1],J=p.getUint32(4),fe=8;for(g&&(m.dataOffset=p.getInt32(fe),fe+=4),T&&J&&(xe={flags:Of(f.subarray(fe,fe+4))},fe+=4,b&&(xe.duration=p.getUint32(fe),fe+=4),F&&(xe.size=p.getUint32(fe),fe+=4),ae&&(1===m.version?xe.compositionTimeOffset=p.getInt32(fe):xe.compositionTimeOffset=p.getUint32(fe),fe+=4),m.samples.push(xe),J--);J--;)xe={},b&&(xe.duration=p.getUint32(fe),fe+=4),F&&(xe.size=p.getUint32(fe),fe+=4),q&&(xe.flags=Of(f.subarray(fe,fe+4)),fe+=4),ae&&(1===m.version?xe.compositionTimeOffset=p.getInt32(fe):xe.compositionTimeOffset=p.getUint32(fe),fe+=4),m.samples.push(xe);return m},Rf=function(f){var fe,m=new DataView(f.buffer,f.byteOffset,f.byteLength),p={version:f[0],flags:new Uint8Array(f.subarray(1,4)),trackId:m.getUint32(4)},g=1&p.flags[2],T=2&p.flags[2],b=8&p.flags[2],F=16&p.flags[2],q=32&p.flags[2],ae=65536&p.flags[0],J=131072&p.flags[0];return fe=8,g&&(fe+=4,p.baseDataOffset=m.getUint32(12),fe+=4),T&&(p.sampleDescriptionIndex=m.getUint32(fe),fe+=4),b&&(p.defaultSampleDuration=m.getUint32(fe),fe+=4),F&&(p.defaultSampleSize=m.getUint32(fe),fe+=4),q&&(p.defaultSampleFlags=m.getUint32(fe)),ae&&(p.durationIsEmpty=!0),!g&&J&&(p.baseDataOffsetIsMoof=!0),p},Mf=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Qa=typeof window<"u"?window:typeof Mf<"u"?Mf:typeof self<"u"?self:{},X_=za_discardEmulationPreventionBytes,Q_=is.CaptionStream,Y_=function(f,m){for(var p=f,g=0;g0?Df(Re[0]).baseMediaDecodeTime:0,Ae=Ft(ae,["trun"]);m===xe&&Ae.length>0&&(Ke=function(f,m,p){var g=m,T=p.defaultSampleDuration||0,b=p.defaultSampleSize||0,F=p.trackId,q=[];return f.forEach(function(ae){var fe=Lf(ae).samples;fe.forEach(function(xe){void 0===xe.duration&&(xe.duration=T),void 0===xe.size&&(xe.size=b),xe.trackId=F,xe.dts=g,void 0===xe.compositionTimeOffset&&(xe.compositionTimeOffset=0),"bigint"==typeof g?(xe.pts=g+Qa.BigInt(xe.compositionTimeOffset),g+=Qa.BigInt(xe.duration)):(xe.pts=g+xe.compositionTimeOffset,g+=xe.duration)}),q=q.concat(fe)}),q}(Ae,je,fe),Zt=function(f,m,p){var b,F,q,ae,g=new DataView(f.buffer,f.byteOffset,f.byteLength),T={logs:[],seiNals:[]};for(F=0;F+40;){var xe=p.shift();this.parse(xe,ae,J)}return fe=function(f,m,p){if(null===m)return null;var T=eT(f,m)[m]||{};return{seiNals:T.seiNals,logs:T.logs,timescale:p}}(q,g,T),fe&&fe.logs&&(b.logs=b.logs.concat(fe.logs)),null!==fe&&fe.seiNals?(this.pushNals(fe.seiNals),this.flushStream(),b):b.logs.length?{logs:b.logs,captions:[],captionStreams:[]}:null},this.pushNals=function(q){if(!this.isInitialized()||!q||0===q.length)return null;q.forEach(function(ae){m.push(ae)})},this.flushStream=function(){if(!this.isInitialized())return null;F?m.partialFlush():m.flush()},this.clearParsedCaptions=function(){b.captions=[],b.captionStreams={},b.logs=[]},this.resetCaptionStream=function(){if(!this.isInitialized())return null;m.reset()},this.clearAllCaptions=function(){this.clearParsedCaptions(),this.resetCaptionStream()},this.reset=function(){p=[],g=null,T=null,b?this.clearParsedCaptions():b={captions:[],captionStreams:{},logs:[]},this.resetCaptionStream()},this.reset()},ms=ps_toUnsigned,Ya=ps_toHexString,aT=e.getUint64;Nf=function(f,m){var g=Ft(m,["moof","traf"]).reduce(function(T,b){var xe,Re,F=Ft(b,["tfhd"])[0],q=ms(F[4]<<24|F[5]<<16|F[6]<<8|F[7]),ae=f[q]||9e4,J=Ft(b,["tfdt"])[0],fe=new DataView(J.buffer,J.byteOffset,J.byteLength);return"bigint"==typeof(xe=1===J[0]?aT(J.subarray(4,12)):fe.getUint32(4))?Re=xe/Qa.BigInt(ae):"number"==typeof xe&&!isNaN(xe)&&(Re=xe/ae),Re11?(T.codec+=".",T.codec+=Ya(je[9]),T.codec+=Ya(je[10]),T.codec+=Ya(je[11])):T.codec="avc1.4d400d"):/^mp4[a,v]$/i.test(T.codec)?(je=Re.subarray(28),"esds"===Di(je.subarray(4,8))&&je.length>20&&0!==je[19]?(T.codec+="."+Ya(je[19]),T.codec+="."+Ya(je[20]>>>2&63).replace(/^0/,"")):T.codec="mp4a.40.2"):T.codec=T.codec.toLowerCase())}var Ke=Ft(g,["mdia","mdhd"])[0];Ke&&(T.timescale=Eu(Ke)),p.push(T)}),p};var Vf_startTime=Nf,Vf_tracks=jf,$f=function(f){var m=31&f[1];return m<<=8,m|=f[2]},gs=function(f){return!!(64&f[1])},vs=function(f){var m=0;return(48&f[3])>>>4>1&&(m+=f[4]+1),m},wu=function(f){switch(f){case 5:return"slice_layer_without_partitioning_rbsp_idr";case 6:return"sei_rbsp";case 7:return"seq_parameter_set_rbsp";case 8:return"pic_parameter_set_rbsp";case 9:return"access_unit_delimiter_rbsp";default:return null}},cT={parseType:function(f,m){var p=$f(f);return 0===p?"pat":p===m?"pmt":m?"pes":null},parsePat:function(f){var m=gs(f),p=4+vs(f);return m&&(p+=f[p]+1),(31&f[p+10])<<8|f[p+11]},parsePmt:function(f){var m={},p=gs(f),g=4+vs(f);if(p&&(g+=f[g]+1),1&f[g+5]){var b;b=3+((15&f[g+1])<<8|f[g+2])-4;for(var q=12+((15&f[g+10])<<8|f[g+11]);q=f.byteLength)return null;var T,g=null;return 192&(T=f[p+7])&&((g={}).pts=(14&f[p+9])<<27|(255&f[p+10])<<20|(254&f[p+11])<<12|(255&f[p+12])<<5|(254&f[p+13])>>>3,g.pts*=4,g.pts+=(6&f[p+13])>>>1,g.dts=g.pts,64&T&&(g.dts=(14&f[p+14])<<27|(255&f[p+15])<<20|(254&f[p+16])<<12|(255&f[p+17])<<5|(254&f[p+18])>>>3,g.dts*=4,g.dts+=(6&f[p+18])>>>1)),g},videoPacketContainsKeyFrame:function(f){for(var m=4+vs(f),p=f.subarray(m),g=0,T=0,b=!1;T3&&("slice_layer_without_partitioning_rbsp_idr"===wu(31&p[T+3])&&(b=!0)),b}},da=_f_handleRollover,wt={};wt.ts=cT,wt.aac=cs;var Oi=yt_ONE_SECOND_IN_TS,xr=188,Hf=function(f,m,p){for(var b,q,ae,J,g=0,T=xr,fe=!1;T<=f.byteLength;)if(71!==f[g]||71!==f[T]&&T!==f.byteLength)g++,T++;else{if("pes"===(b=f.subarray(g,T),wt.ts.parseType(b,m.pid)))q=wt.ts.parsePesType(b,m.table),ae=wt.ts.parsePayloadUnitStartIndicator(b),"audio"===q&&ae&&((J=wt.ts.parsePesTime(b))&&(J.type="audio",p.audio.push(J),fe=!0));if(fe)break;g+=xr,T+=xr}for(g=(T=f.byteLength)-xr,fe=!1;g>=0;)if(71!==f[g]||71!==f[T]&&T!==f.byteLength)g--,T--;else{if("pes"===(b=f.subarray(g,T),wt.ts.parseType(b,m.pid)))q=wt.ts.parsePesType(b,m.table),ae=wt.ts.parsePayloadUnitStartIndicator(b),"audio"===q&&ae&&((J=wt.ts.parsePesTime(b))&&(J.type="audio",p.audio.push(J),fe=!0));if(fe)break;g-=xr,T-=xr}},hT=function(f,m,p){for(var b,q,ae,J,fe,xe,Re,g=0,T=xr,je=!1,Ae={data:[],size:0};T=0;)if(71!==f[g]||71!==f[T])g--,T--;else{if("pes"===(b=f.subarray(g,T),wt.ts.parseType(b,m.pid)))q=wt.ts.parsePesType(b,m.table),ae=wt.ts.parsePayloadUnitStartIndicator(b),"video"===q&&ae&&((J=wt.ts.parsePesTime(b))&&(J.type="video",p.video.push(J),je=!0));if(je)break;g-=xr,T-=xr}},gT=function(f){var m={pid:null,table:null},p={};for(var g in function(f,m){for(var T,p=0,g=xr;g=3;){switch(wt.aac.parseType(f,F)){case"timed-metadata":if(f.length-F<10){m=!0;break}if((b=wt.aac.parseId3TagSize(f,F))>f.length){m=!0;break}null===T&&(q=f.subarray(F,F+b),T=wt.aac.parseAacTimestamp(q)),F+=b;break;case"audio":if(f.length-F<7){m=!0;break}if((b=wt.aac.parseAdtsSize(f,F))>f.length){m=!0;break}null===g&&(q=f.subarray(F,F+b),g=wt.aac.parseSampleRate(q)),p++,F+=b;break;default:F++}if(m)return null}if(null===g||null===T)return null;var J=Oi/g;return{audio:[{type:"audio",dts:T,pts:T},{type:"audio",dts:T+1024*p*J,pts:T+1024*p*J}]}}(f):gT(f),g&&(g.audio||g.video)?(function(f,m){if(f.audio&&f.audio.length){var p=m;(typeof p>"u"||isNaN(p))&&(p=f.audio[0].dts),f.audio.forEach(function(b){b.dts=da(b.dts,p),b.pts=da(b.pts,p),b.dtsTime=b.dts/Oi,b.ptsTime=b.pts/Oi})}if(f.video&&f.video.length){var g=m;if((typeof g>"u"||isNaN(g))&&(g=f.video[0].dts),f.video.forEach(function(b){b.dts=da(b.dts,g),b.pts=da(b.pts,g),b.dtsTime=b.dts/Oi,b.ptsTime=b.pts/Oi}),f.firstKeyFrame){var T=f.firstKeyFrame;T.dts=da(T.dts,g),T.pts=da(T.pts,g),T.dtsTime=T.dts/Oi,T.ptsTime=T.pts/Oi}}}(g,m),g):null},qf=function(){function P(m,p){this.options=p||{},this.self=m,this.init()}var f=P.prototype;return f.init=function(){this.transmuxer&&this.transmuxer.dispose(),this.transmuxer=new N_.Transmuxer(this.options),function(f,m){m.on("data",function(p){var g=p.initSegment;p.initSegment={data:g.buffer,byteOffset:g.byteOffset,byteLength:g.byteLength};var T=p.data;p.data=T.buffer,f.postMessage({action:"data",segment:p,byteOffset:T.byteOffset,byteLength:T.byteLength},[p.data])}),m.on("done",function(p){f.postMessage({action:"done"})}),m.on("gopInfo",function(p){f.postMessage({action:"gopInfo",gopInfo:p})}),m.on("videoSegmentTimingInfo",function(p){var g={start:{decode:yt_videoTsToSeconds(p.start.dts),presentation:yt_videoTsToSeconds(p.start.pts)},end:{decode:yt_videoTsToSeconds(p.end.dts),presentation:yt_videoTsToSeconds(p.end.pts)},baseMediaDecodeTime:yt_videoTsToSeconds(p.baseMediaDecodeTime)};p.prependedContentDuration&&(g.prependedContentDuration=yt_videoTsToSeconds(p.prependedContentDuration)),f.postMessage({action:"videoSegmentTimingInfo",videoSegmentTimingInfo:g})}),m.on("audioSegmentTimingInfo",function(p){var g={start:{decode:yt_videoTsToSeconds(p.start.dts),presentation:yt_videoTsToSeconds(p.start.pts)},end:{decode:yt_videoTsToSeconds(p.end.dts),presentation:yt_videoTsToSeconds(p.end.pts)},baseMediaDecodeTime:yt_videoTsToSeconds(p.baseMediaDecodeTime)};p.prependedContentDuration&&(g.prependedContentDuration=yt_videoTsToSeconds(p.prependedContentDuration)),f.postMessage({action:"audioSegmentTimingInfo",audioSegmentTimingInfo:g})}),m.on("id3Frame",function(p){f.postMessage({action:"id3Frame",id3Frame:p})}),m.on("caption",function(p){f.postMessage({action:"caption",caption:p})}),m.on("trackinfo",function(p){f.postMessage({action:"trackinfo",trackInfo:p})}),m.on("audioTimingInfo",function(p){f.postMessage({action:"audioTimingInfo",audioTimingInfo:{start:yt_videoTsToSeconds(p.start),end:yt_videoTsToSeconds(p.end)}})}),m.on("videoTimingInfo",function(p){f.postMessage({action:"videoTimingInfo",videoTimingInfo:{start:yt_videoTsToSeconds(p.start),end:yt_videoTsToSeconds(p.end)}})}),m.on("log",function(p){f.postMessage({action:"log",log:p})})}(this.self,this.transmuxer)},f.pushMp4Captions=function(p){this.captionParser||(this.captionParser=new iT,this.captionParser.init());var g=new Uint8Array(p.data,p.byteOffset,p.byteLength),T=this.captionParser.parse(g,p.trackIds,p.timescales);this.self.postMessage({action:"mp4Captions",captions:T&&T.captions||[],logs:T&&T.logs||[],data:g.buffer},[g.buffer])},f.probeMp4StartTime=function(p){var g=p.timescales,T=p.data,b=Vf_startTime(g,T);this.self.postMessage({action:"probeMp4StartTime",startTime:b,data:T},[T.buffer])},f.probeMp4Tracks=function(p){var g=p.data,T=Vf_tracks(g);this.self.postMessage({action:"probeMp4Tracks",tracks:T,data:g},[g.buffer])},f.probeTs=function(p){var g=p.data,T=p.baseStartTime,b="number"!=typeof T||isNaN(T)?void 0:T*yt_ONE_SECOND_IN_TS,F=yT_inspect(g,b),q=null;F&&((q={hasVideo:F.video&&2===F.video.length||!1,hasAudio:F.audio&&2===F.audio.length||!1}).hasVideo&&(q.videoStart=F.video[0].ptsTime),q.hasAudio&&(q.audioStart=F.audio[0].ptsTime)),this.self.postMessage({action:"probeTs",result:q,data:g},[g.buffer])},f.clearAllMp4Captions=function(){this.captionParser&&this.captionParser.clearAllCaptions()},f.clearParsedMp4Captions=function(){this.captionParser&&this.captionParser.clearParsedCaptions()},f.push=function(p){var g=new Uint8Array(p.data,p.byteOffset,p.byteLength);this.transmuxer.push(g)},f.reset=function(){this.transmuxer.reset()},f.setTimestampOffset=function(p){var g=p.timestampOffset||0;this.transmuxer.setBaseMediaDecodeTime(Math.round(yt_secondsToVideoTs(g)))},f.setAudioAppendStart=function(p){this.transmuxer.setAudioAppendStart(Math.ceil(yt_secondsToVideoTs(p.appendStart)))},f.setRemux=function(p){this.transmuxer.setRemux(p.remux)},f.flush=function(p){this.transmuxer.flush(),self.postMessage({action:"done",type:"transmuxed"})},f.endTimeline=function(){this.transmuxer.endTimeline(),self.postMessage({action:"endedtimeline",type:"transmuxed"})},f.alignGopsWith=function(p){this.transmuxer.alignGopsWith(p.gopsToAlignWith.slice())},P}();self.onmessage=function(P){"init"===P.data.action&&P.data.options?this.messageHandlers=new qf(self,P.data.options):(this.messageHandlers||(this.messageHandlers=new qf(self)),P.data&&P.data.action&&"init"!==P.data.action&&this.messageHandlers[P.data.action]&&this.messageHandlers[P.data.action](P.data))}})),a0=Ac(i0),Oc=function(t){var r=t.transmuxer,a=t.bytes,e=t.audioAppendStart,i=t.gopsToAlignWith,n=t.remux,o=t.onData,l=t.onTrackInfo,d=t.onAudioTimingInfo,h=t.onVideoTimingInfo,y=t.onVideoSegmentTimingInfo,v=t.onAudioSegmentTimingInfo,S=t.onId3,A=t.onCaptions,I=t.onDone,k=t.onEndedTimeline,Q=t.onTransmuxerLog,Y=t.isEndOfTimeline,ve={buffer:[]},Te=Y;if(r.onmessage=function(De){r.currentTransmux===t&&("data"===De.data.action&&function(t,r,a){var e=t.data.segment,i=e.type,n=e.initSegment,o=e.captions,l=e.captionStreams,d=e.metadata,h=e.videoFrameDtsTime,y=e.videoFramePtsTime;r.buffer.push({captions:o,captionStreams:l,metadata:d});var v=t.data.segment.boxes||{data:t.data.segment.data},S={type:i,data:new Uint8Array(v.data,v.data.byteOffset,v.data.byteLength),initSegment:new Uint8Array(n.data,n.byteOffset,n.byteLength)};typeof h<"u"&&(S.videoFrameDtsTime=h),typeof y<"u"&&(S.videoFramePtsTime=y),a(S)}(De,ve,o),"trackinfo"===De.data.action&&l(De.data.trackInfo),"gopInfo"===De.data.action&&function(t,r){r.gopInfo=t.data.gopInfo}(De,ve),"audioTimingInfo"===De.data.action&&d(De.data.audioTimingInfo),"videoTimingInfo"===De.data.action&&h(De.data.videoTimingInfo),"videoSegmentTimingInfo"===De.data.action&&y(De.data.videoSegmentTimingInfo),"audioSegmentTimingInfo"===De.data.action&&v(De.data.audioSegmentTimingInfo),"id3Frame"===De.data.action&&S([De.data.id3Frame],De.data.id3Frame.dispatchType),"caption"===De.data.action&&A(De.data.caption),"endedtimeline"===De.data.action&&(Te=!1,k()),"log"===De.data.action&&Q(De.data.log),"transmuxed"===De.data.type&&(Te||(r.onmessage=null,function(t){var r=t.transmuxedData,a=t.callback;r.buffer=[],a(r)}({transmuxedData:ve,callback:I}),Lc(r))))},e&&r.postMessage({action:"setAudioAppendStart",appendStart:e}),Array.isArray(i)&&r.postMessage({action:"alignGopsWith",gopsToAlignWith:i}),typeof n<"u"&&r.postMessage({action:"setRemux",remux:n}),a.byteLength){var ke=a instanceof ArrayBuffer?a:a.buffer,Fe=a instanceof ArrayBuffer?0:a.byteOffset;r.postMessage({action:"push",data:ke,byteOffset:Fe,byteLength:a.byteLength},[ke])}Y&&r.postMessage({action:"endTimeline"}),r.postMessage({action:"flush"})},Lc=function(t){t.currentTransmux=null,t.transmuxQueue.length&&(t.currentTransmux=t.transmuxQueue.shift(),"function"==typeof t.currentTransmux?t.currentTransmux():Oc(t.currentTransmux))},Rc=function(t,r){t.postMessage({action:r}),Lc(t)},Mc=function(t,r){if(!r.currentTransmux)return r.currentTransmux=t,void Rc(r,t);r.transmuxQueue.push(Rc.bind(null,r,t))},Fc=function(t){if(!t.transmuxer.currentTransmux)return t.transmuxer.currentTransmux=t,void Oc(t);t.transmuxer.transmuxQueue.push(t)},iu_reset=function(t){Mc("reset",t)},iu_createTransmuxer=function(t){var r=new a0;r.currentTransmux=null,r.transmuxQueue=[];var a=r.terminate;return r.terminate=function(){return r.currentTransmux=null,r.transmuxQueue.length=0,a.call(r)},r.postMessage({action:"init",options:t}),r},Hn=function(t){var r=t.transmuxer,a=t.endAction||t.action,e=t.callback,i=Z({},t,{endAction:null,transmuxer:null,callback:null});if(r.addEventListener("message",function d(h){h.data.action===a&&(r.removeEventListener("message",d),h.data.data&&(h.data.data=new Uint8Array(h.data.data,t.byteOffset||0,t.byteLength||h.data.data.byteLength),t.data&&(t.data=h.data.data)),e(h.data))}),t.data){var o=t.data instanceof ArrayBuffer;i.byteOffset=o?0:t.data.byteOffset,i.byteLength=t.data.byteLength;var l=[o?t.data:t.data.buffer];r.postMessage(i,l)}else r.postMessage(i)},Jr_FAILURE=2,Jr_TIMEOUT=-101,Jr_ABORTED=-102,au=function(t){t.forEach(function(r){r.abort()})},nu=function(t,r){return r.timedout?{status:r.status,message:"HLS request timed-out at URL: "+r.uri,code:Jr_TIMEOUT,xhr:r}:r.aborted?{status:r.status,message:"HLS request aborted at URL: "+r.uri,code:Jr_ABORTED,xhr:r}:t?{status:r.status,message:"HLS request errored at URL: "+r.uri,code:Jr_FAILURE,xhr:r}:"arraybuffer"===r.responseType&&0===r.response.byteLength?{status:r.status,message:"Empty HLS response at URL: "+r.uri,code:Jr_FAILURE,xhr:r}:null},Nc=function(t,r,a){return function(e,i){var n=i.response,o=nu(e,i);if(o)return a(o,t);if(16!==n.byteLength)return a({status:i.status,message:"Invalid HLS key at URL: "+i.uri,code:Jr_FAILURE,xhr:i},t);for(var l=new DataView(n),d=new Uint32Array([l.getUint32(0),l.getUint32(4),l.getUint32(8),l.getUint32(12)]),h=0;h0}(I)){r.isFmp4=!0;var k=r.map.tracks,Q={isFmp4:!0,hasVideo:!!k.video,hasAudio:!!k.audio};k.audio&&k.audio.codec&&"enca"!==k.audio.codec&&(Q.audioCodec=k.audio.codec),k.video&&k.video.codec&&"encv"!==k.video.codec&&(Q.videoCodec=k.video.codec),k.video&&k.audio&&(Q.isMuxed=!0),e(r,Q);var Y=function(Te){v(r,{data:I,type:Q.hasAudio&&!Q.isMuxed?"audio":"video"}),Te&&Te.length&&d(r,Te),S(null,r,{})};Hn({action:"probeMp4StartTime",timescales:r.map.timescales,data:I,transmuxer:r.transmuxer,callback:function(Te){var Se=Te.data,ke=Te.startTime;a=Se.buffer,r.bytes=I=Se,Q.hasAudio&&!Q.isMuxed&&i(r,"audio","start",ke),Q.hasVideo&&i(r,"video","start",ke),k.video&&Se.byteLength&&r.transmuxer?Hn({action:"pushMp4Captions",endAction:"mp4Captions",transmuxer:r.transmuxer,data:I,timescales:r.map.timescales,trackIds:[k.video.id],callback:function(Ee){a=Ee.data.buffer,r.bytes=I=Ee.data,Ee.logs.forEach(function(De){A(he.mergeOptions(De,{stream:"mp4CaptionParser"}))}),Y(Ee.captions)}}):Y()}})}else{if(r.transmuxer)return typeof r.container>"u"&&(r.container=Uo(I)),"ts"!==r.container&&"aac"!==r.container?(e(r,{hasAudio:!1,hasVideo:!1}),void S(null,r,{})):void m0({segment:r,bytes:a,trackInfoFn:e,timingInfoFn:i,videoSegmentTimingInfoFn:n,audioSegmentTimingInfoFn:o,id3Fn:l,captionsFn:d,isEndOfTimeline:h,endedTimelineFn:y,dataFn:v,doneFn:S,onTransmuxerLog:A});S(null,r,{})}},jc=function(t,r){var l,a=t.id,e=t.key,i=t.encryptedBytes,n=t.decryptionWorker;n.addEventListener("message",function d(h){if(h.data.source===a){n.removeEventListener("message",d);var y=h.data.decrypted;r(new Uint8Array(y.bytes,y.byteOffset,y.byteLength))}}),l=e.bytes.slice?e.bytes.slice():new Uint32Array(Array.prototype.slice.call(e.bytes)),n.postMessage(bc({source:a,encrypted:i,key:l,iv:e.iv}),[i.buffer,l.buffer])},v0=function(t){var r=t.activeXhrs,a=t.decryptionWorker,e=t.trackInfoFn,i=t.timingInfoFn,n=t.videoSegmentTimingInfoFn,o=t.audioSegmentTimingInfoFn,l=t.id3Fn,d=t.captionsFn,h=t.isEndOfTimeline,y=t.endedTimelineFn,v=t.dataFn,S=t.doneFn,A=t.onTransmuxerLog,I=0,k=!1;return function(Q,Y){if(!k){if(Q)return k=!0,au(r),S(Q,Y);if((I+=1)===r.length){var ve=function(){if(Y.encryptedBytes)return function(t){var r=t.decryptionWorker,a=t.segment,e=t.trackInfoFn,i=t.timingInfoFn,n=t.videoSegmentTimingInfoFn,o=t.audioSegmentTimingInfoFn,l=t.id3Fn,d=t.captionsFn,h=t.isEndOfTimeline,y=t.endedTimelineFn,v=t.dataFn,S=t.doneFn,A=t.onTransmuxerLog;jc({id:a.requestId,key:a.key,encryptedBytes:a.encryptedBytes,decryptionWorker:r},function(I){a.bytes=I,Uc({segment:a,bytes:a.bytes,trackInfoFn:e,timingInfoFn:i,videoSegmentTimingInfoFn:n,audioSegmentTimingInfoFn:o,id3Fn:l,captionsFn:d,isEndOfTimeline:h,endedTimelineFn:y,dataFn:v,doneFn:S,onTransmuxerLog:A})})}({decryptionWorker:a,segment:Y,trackInfoFn:e,timingInfoFn:i,videoSegmentTimingInfoFn:n,audioSegmentTimingInfoFn:o,id3Fn:l,captionsFn:d,isEndOfTimeline:h,endedTimelineFn:y,dataFn:v,doneFn:S,onTransmuxerLog:A});Uc({segment:Y,bytes:Y.bytes,trackInfoFn:e,timingInfoFn:i,videoSegmentTimingInfoFn:n,audioSegmentTimingInfoFn:o,id3Fn:l,captionsFn:d,isEndOfTimeline:h,endedTimelineFn:y,dataFn:v,doneFn:S,onTransmuxerLog:A})};if(Y.endOfAllRequests=Date.now(),Y.map&&Y.map.encryptedBytes&&!Y.map.bytes)return jc({decryptionWorker:a,id:Y.requestId+"-init",encryptedBytes:Y.map.encryptedBytes,key:Y.map.key},function(Te){Y.map.bytes=Te,Bc(Y,function(Se){if(Se)return au(r),S(Se,Y);ve()})});ve()}}}},_0=function(t){var r=t.segment,a=t.progressFn;return t.trackInfoFn,t.timingInfoFn,t.videoSegmentTimingInfoFn,t.audioSegmentTimingInfoFn,t.id3Fn,t.captionsFn,t.isEndOfTimeline,t.endedTimelineFn,t.dataFn,function(e){if(!e.target.aborted)return r.stats=he.mergeOptions(r.stats,function(t){var r=t.target,e={bandwidth:1/0,bytesReceived:0,roundTripTime:Date.now()-r.requestTime||0};return e.bytesReceived=t.loaded,e.bandwidth=Math.floor(e.bytesReceived/e.roundTripTime*8*1e3),e}(e)),!r.stats.firstBytesReceivedAt&&r.stats.bytesReceived&&(r.stats.firstBytesReceivedAt=Date.now()),a(e,r)}},T0=function(t){var r=t.xhr,a=t.xhrOptions,e=t.decryptionWorker,i=t.segment,n=t.abortFn,o=t.progressFn,l=t.trackInfoFn,d=t.timingInfoFn,h=t.videoSegmentTimingInfoFn,y=t.audioSegmentTimingInfoFn,v=t.id3Fn,S=t.captionsFn,A=t.isEndOfTimeline,I=t.endedTimelineFn,k=t.dataFn,Q=t.doneFn,Y=t.onTransmuxerLog,ve=[],Te=v0({activeXhrs:ve,decryptionWorker:e,trackInfoFn:l,timingInfoFn:d,videoSegmentTimingInfoFn:h,audioSegmentTimingInfoFn:y,id3Fn:v,captionsFn:S,isEndOfTimeline:A,endedTimelineFn:I,dataFn:k,doneFn:Q,onTransmuxerLog:Y});if(i.key&&!i.key.bytes){var Se=[i.key];i.map&&!i.map.bytes&&i.map.key&&i.map.key.resolvedUri===i.key.resolvedUri&&Se.push(i.map.key);var Ee=r(he.mergeOptions(a,{uri:i.key.resolvedUri,responseType:"arraybuffer"}),Nc(i,Se,Te));ve.push(Ee)}if(i.map&&!i.map.bytes){if(i.map.key&&(!i.key||i.key.resolvedUri!==i.map.key.resolvedUri)){var Ve=r(he.mergeOptions(a,{uri:i.map.key.resolvedUri,responseType:"arraybuffer"}),Nc(i,[i.map.key],Te));ve.push(Ve)}var Ct=he.mergeOptions(a,{uri:i.map.resolvedUri,responseType:"arraybuffer",headers:eu(i.map)}),Yt=function(t){var r=t.segment,a=t.finishProcessingFn;return function(e,i){var n=nu(e,i);if(n)return a(n,r);var o=new Uint8Array(i.response);if(r.map.key)return r.map.encryptedBytes=o,a(null,r);r.map.bytes=o,Bc(r,function(l){if(l)return l.xhr=i,l.status=i.status,a(l,r);a(null,r)})}}({segment:i,finishProcessingFn:Te}),gt=r(Ct,Yt);ve.push(gt)}var xt=he.mergeOptions(a,{uri:i.part&&i.part.resolvedUri||i.resolvedUri,responseType:"arraybuffer",headers:eu(i)}),kr=r(xt,p0({segment:i,finishProcessingFn:Te,responseType:xt.responseType}));kr.addEventListener("progress",_0({segment:i,progressFn:o,trackInfoFn:l,timingInfoFn:d,videoSegmentTimingInfoFn:h,audioSegmentTimingInfoFn:y,id3Fn:v,captionsFn:S,isEndOfTimeline:A,endedTimelineFn:I,dataFn:k})),ve.push(kr);var ei={};return ve.forEach(function(ui){ui.addEventListener("loadend",function(t){var r=t.loadendState,a=t.abortFn;return function(e){e.target.aborted&&a&&!r.calledAbortFn&&(a(),r.calledAbortFn=!0)}}({loadendState:ei,abortFn:n}))}),function(){return au(ve)}},b0=zr("CodecUtils"),Vc=function(t,r){var a=r.attributes||{};return t&&t.mediaGroups&&t.mediaGroups.AUDIO&&a.AUDIO&&t.mediaGroups.AUDIO[a.AUDIO]},qn=function(t){var r={};return t.forEach(function(a){var e=a.mediaType,i=a.type,n=a.details;r[e]=r[e]||[],r[e].push(Gl(""+i+n))}),Object.keys(r).forEach(function(a){if(r[a].length>1)return b0("multiple "+a+" codecs found as attributes: "+r[a].join(", ")+". Setting playlist codecs to null so that we wait for mux.js to probe segments for real codecs."),void(r[a]=null);r[a]=r[a][0]}),r},$c=function(t){var r=0;return t.audio&&r++,t.video&&r++,r},ja=function(t,r){var a=r.attributes||{},e=qn(function(t){var r=t.attributes||{};if(r.CODECS)return Qr(r.CODECS)}(r)||[]);if(Vc(t,r)&&!e.audio&&!function(t,r){if(!Vc(t,r))return!0;var a=r.attributes||{},e=t.mediaGroups.AUDIO[a.AUDIO];for(var i in e)if(!e[i].uri&&!e[i].playlists)return!0;return!1}(t,r)){var i=qn(function(t,r){if(!t.mediaGroups.AUDIO||!r)return null;var a=t.mediaGroups.AUDIO[r];if(!a)return null;for(var e in a){var i=a[e];if(i.default&&i.playlists)return Qr(i.playlists[0].attributes.CODECS)}return null}(t,a.AUDIO)||[]);i.audio&&(e.audio=i.audio)}return e},zn=zr("PlaylistSelector"),Hc=function(t){if(t&&t.playlist){var r=t.playlist;return JSON.stringify({id:r.id,bandwidth:t.bandwidth,width:t.width,height:t.height,codecs:r.attributes&&r.attributes.CODECS||""})}},Gn=function(t,r){if(!t)return"";var a=window.getComputedStyle(t);return a?a[r]:""},sa=function(t,r){var a=t.slice();t.sort(function(e,i){var n=r(e,i);return 0===n?a.indexOf(e)-a.indexOf(i):n})},su=function(t,r){var a,e;return t.attributes.BANDWIDTH&&(a=t.attributes.BANDWIDTH),a=a||window.Number.MAX_VALUE,r.attributes.BANDWIDTH&&(e=r.attributes.BANDWIDTH),a-(e=e||window.Number.MAX_VALUE)},qc=function(t,r,a,e,i,n){if(t){var o={bandwidth:r,width:a,height:e,limitRenditionByPlayerDimensions:i},l=t.playlists;Pr.isAudioOnly(t)&&(l=n.getAudioTrackPlaylists_(),o.audioOnly=!0);var d=l.map(function(Le){var Ve=Le.attributes&&Le.attributes.RESOLUTION&&Le.attributes.RESOLUTION.width,Ct=Le.attributes&&Le.attributes.RESOLUTION&&Le.attributes.RESOLUTION.height;return{bandwidth:Le.attributes&&Le.attributes.BANDWIDTH||window.Number.MAX_VALUE,width:Ve,height:Ct,playlist:Le}});sa(d,function(Le,Qe){return Le.bandwidth-Qe.bandwidth});var h=(d=d.filter(function(Le){return!Pr.isIncompatible(Le.playlist)})).filter(function(Le){return Pr.isEnabled(Le.playlist)});h.length||(h=d.filter(function(Le){return!Pr.isDisabled(Le.playlist)}));var y=h.filter(function(Le){return Le.bandwidth*nr.BANDWIDTH_VARIANCEa||Le.height>e})).filter(function(Le){return Le.width===ve[0].width&&Le.height===ve[0].height}),v=Te[Te.length-1],Se=Te.filter(function(Le){return Le.bandwidth===v.bandwidth})[0]),n.experimentalLeastPixelDiffSelector){var Fe=k.map(function(Le){return Le.pixelDiff=Math.abs(Le.width-a)+Math.abs(Le.height-e),Le});sa(Fe,function(Le,Qe){return Le.pixelDiff===Qe.pixelDiff?Qe.bandwidth-Le.bandwidth:Le.pixelDiff-Qe.pixelDiff}),ke=Fe[0]}var Ee=ke||Se||Y||S||h[0]||d[0];if(Ee&&Ee.playlist){var De="sortedPlaylistReps";return ke?De="leastPixelDiffRep":Se?De="resolutionPlusOneRep":Y?De="resolutionBestRep":S?De="bandwidthBestRep":h[0]&&(De="enabledPlaylistReps"),zn("choosing "+Hc(Ee)+" using "+De+" with options",o),Ee.playlist}return zn("could not choose a playlist with options",o),null}},zc=function(){var t=this.useDevicePixelRatio&&window.devicePixelRatio||1;return qc(this.playlists.master,this.systemBandwidth,parseInt(Gn(this.tech_.el(),"width"),10)*t,parseInt(Gn(this.tech_.el(),"height"),10)*t,this.limitRenditionByPlayerDimensions,this.masterPlaylistController_)},O0=function(t){var r=t.inbandTextTracks,a=t.metadataArray,e=t.timestampOffset,i=t.videoDuration;if(a){var n=window.WebKitDataCue||window.VTTCue,o=r.metadataTrack_;if(o&&(a.forEach(function(S){var A=S.cueTime+e;"number"!=typeof A||window.isNaN(A)||A<0||!(A<1/0)||S.frames.forEach(function(I){var k=new n(A,A,I.value||I.url||I.data||"");k.frame=I,k.value=I,function(t){Object.defineProperties(t.frame,{id:{get:function(){return he.log.warn("cue.frame.id is deprecated. Use cue.value.key instead."),t.value.key}},value:{get:function(){return he.log.warn("cue.frame.value is deprecated. Use cue.value.data instead."),t.value.data}},privateData:{get:function(){return he.log.warn("cue.frame.privateData is deprecated. Use cue.value.data instead."),t.value.data}}})}(k),o.addCue(k)})}),o.cues&&o.cues.length)){for(var l=o.cues,d=[],h=0;h=t&&i.endTime<=r&&a.removeCue(i)},Wc=function(t){return"number"==typeof t&&isFinite(t)},Wn=1/60,oa=function(t){var r=t.startOfSegment,a=t.duration,e=t.segment,i=t.part,n=t.playlist,o=n.mediaSequence,l=n.id,d=n.segments,h=void 0===d?[]:d,y=t.mediaIndex,v=t.partIndex,S=t.timeline,A=h.length-1,I="mediaIndex/partIndex increment";t.getMediaInfoForTime?I="getMediaInfoForTime ("+t.getMediaInfoForTime+")":t.isSyncRequest&&(I="getSyncSegmentCandidate (isSyncRequest)"),t.independent&&(I+=" with independent "+t.independent);var k="number"==typeof v,Q=t.segment.uri?"segment":"pre-segment",Y=k?sc({preloadSegment:e})-1:0;return Q+" ["+(o+y)+"/"+(o+A)+"]"+(k?" part ["+v+"/"+Y+"]":"")+" segment start/end ["+e.start+" => "+e.end+"]"+(k?" part start/end ["+i.start+" => "+i.end+"]":"")+" startOfSegment ["+r+"] duration ["+a+"] timeline ["+S+"] selected by ["+I+"] playlist ["+l+"]"},Kc=function(t){return t+"TimingInfo"},Xc=function(t){var r=t.timelineChangeController,a=t.currentTimeline,e=t.segmentTimeline,i=t.loaderType,n=t.audioDisabled;if(a===e)return!1;if("audio"===i){var o=r.lastTimelineChange({type:"main"});return!o||o.to!==e}if("main"===i&&n){var l=r.pendingTimelineChange({type:"audio"});return!(l&&l.to===e)}return!1},Qc=function(t){var r=t.segmentDuration,a=t.maxDuration;return!!r&&Math.round(r)>a+mi},z0=function(t,r){if("hls"!==r)return null;var a=function(t){var r=0;return["video","audio"].forEach(function(a){var e=t[a+"TimingInfo"];if(e){var o,i=e.start,n=e.end;"bigint"==typeof i||"bigint"==typeof n?o=window.BigInt(n)-window.BigInt(i):"number"==typeof i&&"number"==typeof n&&(o=n-i),typeof o<"u"&&o>r&&(r=o)}}),"bigint"==typeof r&&r=11,i.appendInitSegment_={audio:!0,video:!0},i.playlistOfLastInitSegment_={audio:null,video:null},i.callQueue_=[],i.loadQueue_=[],i.metadataQueue_={id3:[],caption:[]},i.waitingOnRemove_=!1,i.quotaExceededErrorRetryTimeout_=null,i.activeInitSegmentId_=null,i.initSegments_={},i.cacheEncryptionKeys_=a.cacheEncryptionKeys,i.keyCache_={},i.decrypter_=a.decrypter,i.syncController_=a.syncController,i.syncPoint_={segmentIndex:0,time:0},i.transmuxer_=i.createTransmuxer_(),i.triggerSyncInfoUpdate_=function(){return i.trigger("syncinfoupdate")},i.syncController_.on("syncinfoupdate",i.triggerSyncInfoUpdate_),i.mediaSource_.addEventListener("sourceopen",function(){i.isEndOfStream_()||(i.ended_=!1)}),i.fetchAtBuffer_=!1,i.logger_=zr("SegmentLoader["+i.loaderType_+"]"),Object.defineProperty(Ze(i),"state",{get:function(){return this.state_},set:function(o){o!==this.state_&&(this.logger_(this.state_+" -> "+o),this.state_=o,this.trigger("statechange"))}}),i.sourceUpdater_.on("ready",function(){i.hasEnoughInfoToAppend_()&&i.processCallQueue_()}),"main"===i.loaderType_&&i.timelineChangeController_.on("pendingtimelinechange",function(){i.hasEnoughInfoToAppend_()&&i.processCallQueue_()}),"audio"===i.loaderType_&&i.timelineChangeController_.on("timelinechange",function(){i.hasEnoughInfoToLoad_()&&i.processLoadQueue_(),i.hasEnoughInfoToAppend_()&&i.processCallQueue_()}),i}Oe(t,s);var r=t.prototype;return r.createTransmuxer_=function(){return iu_createTransmuxer({remux:!1,alignGopsAtEnd:this.safeAppend_,keepOriginalTimestamps:!0,parse708captions:this.parse708captions_,captionServices:this.captionServices_})},r.resetStats_=function(){this.mediaBytesTransferred=0,this.mediaRequests=0,this.mediaRequestsAborted=0,this.mediaRequestsTimedout=0,this.mediaRequestsErrored=0,this.mediaTransferDuration=0,this.mediaSecondsLoaded=0,this.mediaAppends=0},r.dispose=function(){this.trigger("dispose"),this.state="DISPOSED",this.pause(),this.abort_(),this.transmuxer_&&this.transmuxer_.terminate(),this.resetStats_(),this.checkBufferTimeout_&&window.clearTimeout(this.checkBufferTimeout_),this.syncController_&&this.triggerSyncInfoUpdate_&&this.syncController_.off("syncinfoupdate",this.triggerSyncInfoUpdate_),this.off()},r.setAudio=function(e){this.audioDisabled_=!e,e?this.appendInitSegment_.audio=!0:this.sourceUpdater_.removeAudio(0,this.duration_())},r.abort=function(){"WAITING"===this.state?(this.abort_(),this.state="READY",this.paused()||this.monitorBuffer_()):this.pendingSegment_&&(this.pendingSegment_=null)},r.abort_=function(){this.pendingSegment_&&this.pendingSegment_.abortRequests&&this.pendingSegment_.abortRequests(),this.pendingSegment_=null,this.callQueue_=[],this.loadQueue_=[],this.metadataQueue_.id3=[],this.metadataQueue_.caption=[],this.timelineChangeController_.clearPendingTimelineChange(this.loaderType_),this.waitingOnRemove_=!1,window.clearTimeout(this.quotaExceededErrorRetryTimeout_),this.quotaExceededErrorRetryTimeout_=null},r.checkForAbort_=function(e){return"APPENDING"!==this.state||this.pendingSegment_?!this.pendingSegment_||this.pendingSegment_.requestId!==e:(this.state="READY",!0)},r.error=function(e){return typeof e<"u"&&(this.logger_("error occurred:",e),this.error_=e),this.pendingSegment_=null,this.error_},r.endOfStream=function(){this.ended_=!0,this.transmuxer_&&iu_reset(this.transmuxer_),this.gopBuffer_.length=0,this.pause(),this.trigger("ended")},r.buffered_=function(){var e=this.getMediaInfo_();if(!this.sourceUpdater_||!e)return he.createTimeRanges();if("main"===this.loaderType_){var i=e.hasAudio,n=e.hasVideo,o=e.isMuxed;if(n&&i&&!this.audioDisabled_&&!o)return this.sourceUpdater_.buffered();if(n)return this.sourceUpdater_.videoBuffered()}return this.sourceUpdater_.audioBuffered()},r.initSegmentForMap=function(e,i){if(void 0===i&&(i=!1),!e)return null;var n=$n(e),o=this.initSegments_[n];return i&&!o&&e.bytes&&(this.initSegments_[n]=o={resolvedUri:e.resolvedUri,byterange:e.byterange,bytes:e.bytes,tracks:e.tracks,timescales:e.timescales}),o||e},r.segmentKey=function(e,i){if(void 0===i&&(i=!1),!e)return null;var n=Sc(e),o=this.keyCache_[n];this.cacheEncryptionKeys_&&i&&!o&&e.bytes&&(this.keyCache_[n]=o={resolvedUri:e.resolvedUri,bytes:e.bytes});var l={resolvedUri:(o||e).resolvedUri};return o&&(l.bytes=o.bytes),l},r.couldBeginLoading_=function(){return this.playlist_&&!this.paused()},r.load=function(){if(this.monitorBuffer_(),this.playlist_){if("INIT"===this.state&&this.couldBeginLoading_())return this.init_();!this.couldBeginLoading_()||"READY"!==this.state&&"INIT"!==this.state||(this.state="READY")}},r.init_=function(){return this.state="READY",this.resetEverything(),this.monitorBuffer_()},r.playlist=function(e,i){if(void 0===i&&(i={}),e){var n=this.playlist_,o=this.pendingSegment_;this.playlist_=e,this.xhrOptions_=i,"INIT"===this.state&&(e.syncInfo={mediaSequence:e.mediaSequence,time:0},"main"===this.loaderType_&&this.syncController_.setDateTimeMappingForStart(e));var l=null;if(n&&(n.id?l=n.id:n.uri&&(l=n.uri)),this.logger_("playlist update ["+l+" => "+(e.id||e.uri)+"]"),this.trigger("syncinfoupdate"),"INIT"===this.state&&this.couldBeginLoading_())return this.init_();if(!n||n.uri!==e.uri)return null!==this.mediaIndex&&(e.endList?this.resyncLoader():this.resetLoader()),this.currentMediaInfo_=void 0,void this.trigger("playlistupdate");var d=e.mediaSequence-n.mediaSequence;if(this.logger_("live window shift ["+d+"]"),null!==this.mediaIndex)if(this.mediaIndex-=d,this.mediaIndex<0)this.mediaIndex=null,this.partIndex=null;else{var h=this.playlist_.segments[this.mediaIndex];if(this.partIndex&&(!h.parts||!h.parts.length||!h.parts[this.partIndex])){var y=this.mediaIndex;this.logger_("currently processing part (index "+this.partIndex+") no longer exists."),this.resetLoader(),this.mediaIndex=y}}o&&(o.mediaIndex-=d,o.mediaIndex<0?(o.mediaIndex=null,o.partIndex=null):(o.mediaIndex>=0&&(o.segment=e.segments[o.mediaIndex]),o.partIndex>=0&&o.segment.parts&&(o.part=o.segment.parts[o.partIndex]))),this.syncController_.saveExpiredSegmentInfo(n,e)}},r.pause=function(){this.checkBufferTimeout_&&(window.clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=null)},r.paused=function(){return null===this.checkBufferTimeout_},r.resetEverything=function(e){this.ended_=!1,this.appendInitSegment_={audio:!0,video:!0},this.resetLoader(),this.remove(0,1/0,e),this.transmuxer_&&(this.transmuxer_.postMessage({action:"clearAllMp4Captions"}),this.transmuxer_.postMessage({action:"reset"}))},r.resetLoader=function(){this.fetchAtBuffer_=!1,this.resyncLoader()},r.resyncLoader=function(){this.transmuxer_&&iu_reset(this.transmuxer_),this.mediaIndex=null,this.partIndex=null,this.syncPoint_=null,this.isPendingTimestampOffset_=!1,this.callQueue_=[],this.loadQueue_=[],this.metadataQueue_.id3=[],this.metadataQueue_.caption=[],this.abort(),this.transmuxer_&&this.transmuxer_.postMessage({action:"clearParsedMp4Captions"})},r.remove=function(e,i,n,o){if(void 0===n&&(n=function(){}),void 0===o&&(o=!1),i===1/0&&(i=this.duration_()),i<=e)this.logger_("skipping remove because end ${end} is <= start ${start}");else if(this.sourceUpdater_&&this.getMediaInfo_()){var l=1,d=function(){0===--l&&n()};for(var h in(o||!this.audioDisabled_)&&(l++,this.sourceUpdater_.removeAudio(e,i,d)),(o||"main"===this.loaderType_)&&(this.gopBuffer_=function(t,r,a,e){for(var i=Math.ceil((r-e)*Nn),n=Math.ceil((a-e)*Nn),o=t.slice(),l=t.length;l--&&!(t[l].pts<=n););if(-1===l)return o;for(var d=l+1;d--&&!(t[d].pts<=i););return d=Math.max(d,0),o.splice(d,l-d+1),o}(this.gopBuffer_,e,i,this.timeMapping_),l++,this.sourceUpdater_.removeVideo(e,i,d)),this.inbandTextTracks_)Va(e,i,this.inbandTextTracks_[h]);Va(e,i,this.segmentMetadataTrack_),d()}else this.logger_("skipping remove because no source updater or starting media info")},r.monitorBuffer_=function(){this.checkBufferTimeout_&&window.clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=window.setTimeout(this.monitorBufferTick_.bind(this),1)},r.monitorBufferTick_=function(){"READY"===this.state&&this.fillBuffer_(),this.checkBufferTimeout_&&window.clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=window.setTimeout(this.monitorBufferTick_.bind(this),500)},r.fillBuffer_=function(){if(!this.sourceUpdater_.updating()){var e=this.chooseNextRequest_();!e||("number"==typeof e.timestampOffset&&(this.isPendingTimestampOffset_=!1,this.timelineChangeController_.pendingTimelineChange({type:this.loaderType_,from:this.currentTimeline_,to:e.timeline})),this.loadSegment_(e))}},r.isEndOfStream_=function(e,i,n){if(void 0===e&&(e=this.mediaIndex),void 0===i&&(i=this.playlist_),void 0===n&&(n=this.partIndex),!i||!this.mediaSource_)return!1;var o="number"==typeof e&&i.segments[e],l=e+1===i.segments.length,d=!o||!o.parts||n+1===o.parts.length;return i.endList&&"open"===this.mediaSource_.readyState&&l&&d},r.chooseNextRequest_=function(){var e=this.buffered_(),i=ic(e)||0,n=qo(e,this.currentTime_()),o=!this.hasPlayed_()&&n>=1,l=n>=this.goalBufferLength_(),d=this.playlist_.segments;if(!d.length||o||l)return null;this.syncPoint_=this.syncPoint_||this.syncController_.getSyncPoint(this.playlist_,this.duration_(),this.currentTimeline_,this.currentTime_());var h={partIndex:null,mediaIndex:null,startOfSegment:null,playlist:this.playlist_,isSyncRequest:Boolean(!this.syncPoint_)};if(h.isSyncRequest)h.mediaIndex=function(t,r,a){r=r||[];for(var e=[],i=0,n=0;na))return n}return 0===e.length?0:e[e.length-1]}(this.currentTimeline_,d,i);else if(null!==this.mediaIndex){var y=d[this.mediaIndex],v="number"==typeof this.partIndex?this.partIndex:-1;h.startOfSegment=y.end?y.end:i,y.parts&&y.parts[v+1]?(h.mediaIndex=this.mediaIndex,h.partIndex=v+1):h.mediaIndex=this.mediaIndex+1}else{var S=Pr.getMediaInfoForTime({experimentalExactManifestTimings:this.experimentalExactManifestTimings,playlist:this.playlist_,currentTime:this.fetchAtBuffer_?i:this.currentTime_(),startingPartIndex:this.syncPoint_.partIndex,startingSegmentIndex:this.syncPoint_.segmentIndex,startTime:this.syncPoint_.time}),A=S.segmentIndex,I=S.startTime,k=S.partIndex;h.getMediaInfoForTime=this.fetchAtBuffer_?"bufferedEnd "+i:"currentTime "+this.currentTime_(),h.mediaIndex=A,h.startOfSegment=I,h.partIndex=k}var Q=d[h.mediaIndex],Y=Q&&"number"==typeof h.partIndex&&Q.parts&&Q.parts[h.partIndex];if(!Q||"number"==typeof h.partIndex&&!Y)return null;if("number"!=typeof h.partIndex&&Q.parts&&(h.partIndex=0,Y=Q.parts[0]),!n&&Y&&!Y.independent)if(0===h.partIndex){var ve=d[h.mediaIndex-1],Te=ve.parts&&ve.parts.length&&ve.parts[ve.parts.length-1];Te&&Te.independent&&(h.mediaIndex-=1,h.partIndex=ve.parts.length-1,h.independent="previous segment")}else Q.parts[h.partIndex-1].independent&&(h.partIndex-=1,h.independent="previous part");var Se=this.mediaSource_&&"ended"===this.mediaSource_.readyState;return h.mediaIndex>=d.length-1&&Se&&!this.seeking_()?null:this.generateSegmentInfo_(h)},r.generateSegmentInfo_=function(e){var i=e.independent,n=e.playlist,o=e.mediaIndex,l=e.startOfSegment,d=e.isSyncRequest,h=e.partIndex,y=e.forceTimestampOffset,v=e.getMediaInfoForTime,S=n.segments[o],A="number"==typeof h&&S.parts[h],I={requestId:"segment-loader-"+Math.random(),uri:A&&A.resolvedUri||S.resolvedUri,mediaIndex:o,partIndex:A?h:null,isSyncRequest:d,startOfSegment:l,playlist:n,bytes:null,encryptedBytes:null,timestampOffset:null,timeline:S.timeline,duration:A&&A.duration||S.duration,segment:S,part:A,byteLength:0,transmuxer:this.transmuxer_,getMediaInfoForTime:v,independent:i},k=typeof y<"u"?y:this.isPendingTimestampOffset_;I.timestampOffset=this.timestampOffsetForSegment_({segmentTimeline:S.timeline,currentTimeline:this.currentTimeline_,startOfSegment:l,buffered:this.buffered_(),overrideCheck:k});var Q=ic(this.sourceUpdater_.audioBuffered());return"number"==typeof Q&&(I.audioAppendStart=Q-this.sourceUpdater_.audioTimestampOffset()),this.sourceUpdater_.videoBuffered().length&&(I.gopsToAlignWith=function(t,r,a){if(typeof r>"u"||null===r||!t.length)return[];var i,e=Math.ceil((r-a+3)*Nn);for(i=0;ie);i++);return t.slice(i)}(this.gopBuffer_,this.currentTime_()-this.sourceUpdater_.videoTimestampOffset(),this.timeMapping_)),I},r.timestampOffsetForSegment_=function(e){return function(t){var r=t.segmentTimeline,a=t.currentTimeline,e=t.startOfSegment,i=t.buffered;return t.overrideCheck||r!==a?r "+S+" for "+h),function(t,r,a){if(!t[a]){r.trigger({type:"usage",name:"vhs-608"}),r.trigger({type:"usage",name:"hls-608"});var e=a;/^cc708_/.test(a)&&(e="SERVICE"+a.split("_")[1]);var i=r.textTracks().getTrackById(e);if(i)t[a]=i;else{var o=a,l=a,d=!1,h=(r.options_.vhs&&r.options_.vhs.captionServices||{})[e];h&&(o=h.label,l=h.language,d=h.default),t[a]=r.addRemoteTextTrack({kind:"captions",id:e,default:d,label:o,language:l},!1).track}}}(I,n.vhs_.tech_,h),Va(v,S,I[h]),function(t){var r=t.inbandTextTracks,a=t.captionArray,e=t.timestampOffset;if(a){var i=window.WebKitDataCue||window.VTTCue;a.forEach(function(n){var o=n.stream;r[o].addCue(new i(n.startTime+e,n.endTime+e,n.text))})}}({captionArray:A,inbandTextTracks:I,timestampOffset:l})}),this.transmuxer_&&this.transmuxer_.postMessage({action:"clearParsedMp4Captions"})}},r.handleId3_=function(e,i,n){if(this.earlyAbortWhenNeeded_(e.stats),!this.checkForAbort_(e.requestId)){if(!this.pendingSegment_.hasAppendedData_)return void this.metadataQueue_.id3.push(this.handleId3_.bind(this,e,i,n));var l=null===this.sourceUpdater_.videoTimestampOffset()?this.sourceUpdater_.audioTimestampOffset():this.sourceUpdater_.videoTimestampOffset();(function(t,r,a){t.metadataTrack_||(t.metadataTrack_=a.addRemoteTextTrack({kind:"metadata",label:"Timed Metadata"},!1).track,t.metadataTrack_.inBandMetadataTrackDispatchType=r)})(this.inbandTextTracks_,n,this.vhs_.tech_),O0({inbandTextTracks:this.inbandTextTracks_,metadataArray:i,timestampOffset:l,videoDuration:this.duration_()})}},r.processMetadataQueue_=function(){this.metadataQueue_.id3.forEach(function(e){return e()}),this.metadataQueue_.caption.forEach(function(e){return e()}),this.metadataQueue_.id3=[],this.metadataQueue_.caption=[]},r.processCallQueue_=function(){var e=this.callQueue_;this.callQueue_=[],e.forEach(function(i){return i()})},r.processLoadQueue_=function(){var e=this.loadQueue_;this.loadQueue_=[],e.forEach(function(i){return i()})},r.hasEnoughInfoToLoad_=function(){if("audio"!==this.loaderType_)return!0;var e=this.pendingSegment_;return!!e&&(!this.getCurrentMediaInfo_()||!Xc({timelineChangeController:this.timelineChangeController_,currentTimeline:this.currentTimeline_,segmentTimeline:e.timeline,loaderType:this.loaderType_,audioDisabled:this.audioDisabled_}))},r.getCurrentMediaInfo_=function(e){return void 0===e&&(e=this.pendingSegment_),e&&e.trackInfo||this.currentMediaInfo_},r.getMediaInfo_=function(e){return void 0===e&&(e=this.pendingSegment_),this.getCurrentMediaInfo_(e)||this.startingMediaInfo_},r.hasEnoughInfoToAppend_=function(){if(!this.sourceUpdater_.ready()||this.waitingOnRemove_||this.quotaExceededErrorRetryTimeout_)return!1;var e=this.pendingSegment_,i=this.getCurrentMediaInfo_();if(!e||!i)return!1;var n=i.hasAudio,o=i.hasVideo,l=i.isMuxed;return!(o&&!e.videoTimingInfo||n&&!this.audioDisabled_&&!l&&!e.audioTimingInfo||Xc({timelineChangeController:this.timelineChangeController_,currentTimeline:this.currentTimeline_,segmentTimeline:e.timeline,loaderType:this.loaderType_,audioDisabled:this.audioDisabled_}))},r.handleData_=function(e,i){if(this.earlyAbortWhenNeeded_(e.stats),!this.checkForAbort_(e.requestId)){if(this.callQueue_.length||!this.hasEnoughInfoToAppend_())return void this.callQueue_.push(this.handleData_.bind(this,e,i));var n=this.pendingSegment_;if(this.setTimeMapping_(n.timeline),this.updateMediaSecondsLoaded_(n.part||n.segment),"closed"!==this.mediaSource_.readyState){if(e.map&&(e.map=this.initSegmentForMap(e.map,!0),n.segment.map=e.map),e.key&&this.segmentKey(e.key,!0),n.isFmp4=e.isFmp4,n.timingInfo=n.timingInfo||{},n.isFmp4)this.trigger("fmp4"),n.timingInfo.start=n[Kc(i.type)].start;else{var d,o=this.getCurrentMediaInfo_(),l="main"===this.loaderType_&&o&&o.hasVideo;l&&(d=n.videoTimingInfo.start),n.timingInfo.start=this.trueSegmentStart_({currentStart:n.timingInfo.start,playlist:n.playlist,mediaIndex:n.mediaIndex,currentVideoTimestampOffset:this.sourceUpdater_.videoTimestampOffset(),useVideoTimingInfo:l,firstVideoFrameTimeForData:d,videoTimingInfo:n.videoTimingInfo,audioTimingInfo:n.audioTimingInfo})}if(this.updateAppendInitSegmentStatus(n,i.type),this.updateSourceBufferTimestampOffset_(n),n.isSyncRequest){this.updateTimingInfoEnd_(n),this.syncController_.saveSegmentTimingInfo({segmentInfo:n,shouldSaveTimelineMapping:"main"===this.loaderType_});var h=this.chooseNextRequest_();if(h.mediaIndex!==n.mediaIndex||h.partIndex!==n.partIndex)return void this.logger_("sync segment was incorrect, not appending");this.logger_("sync segment was correct, appending")}n.hasAppendedData_=!0,this.processMetadataQueue_(),this.appendData_(n,i)}}},r.updateAppendInitSegmentStatus=function(e,i){"main"===this.loaderType_&&"number"==typeof e.timestampOffset&&!e.changedTimestampOffset&&(this.appendInitSegment_={audio:!0,video:!0}),this.playlistOfLastInitSegment_[i]!==e.playlist&&(this.appendInitSegment_[i]=!0)},r.getInitSegmentAndUpdateState_=function(e){var i=e.type,n=e.initSegment,o=e.map,l=e.playlist;if(o){var d=$n(o);if(this.activeInitSegmentId_===d)return null;n=this.initSegmentForMap(o,!0).bytes,this.activeInitSegmentId_=d}return n&&this.appendInitSegment_[i]?(this.playlistOfLastInitSegment_[i]=l,this.appendInitSegment_[i]=!1,this.activeInitSegmentId_=null,n):null},r.handleQuotaExceededError_=function(e,i){var n=this,o=e.segmentInfo,l=e.type,d=e.bytes,h=this.sourceUpdater_.audioBuffered(),y=this.sourceUpdater_.videoBuffered();h.length>1&&this.logger_("On QUOTA_EXCEEDED_ERR, found gaps in the audio buffer: "+wi(h).join(", ")),y.length>1&&this.logger_("On QUOTA_EXCEEDED_ERR, found gaps in the video buffer: "+wi(y).join(", "));var v=h.length?h.start(0):0,S=h.length?h.end(h.length-1):0,A=y.length?y.start(0):0,I=y.length?y.end(y.length-1):0;if(S-v<=1&&I-A<=1)return this.logger_("On QUOTA_EXCEEDED_ERR, single segment too large to append to buffer, triggering an error. Appended byte length: "+d.byteLength+", audio buffer: "+wi(h).join(", ")+", video buffer: "+wi(y).join(", ")+", "),this.error({message:"Quota exceeded error with append of a single segment of content",excludeUntil:1/0}),void this.trigger("error");this.waitingOnRemove_=!0,this.callQueue_.push(this.appendToSourceBuffer_.bind(this,{segmentInfo:o,type:l,bytes:d}));var Q=this.currentTime_()-1;this.logger_("On QUOTA_EXCEEDED_ERR, removing audio/video from 0 to "+Q),this.remove(0,Q,function(){n.logger_("On QUOTA_EXCEEDED_ERR, retrying append in 1s"),n.waitingOnRemove_=!1,n.quotaExceededErrorRetryTimeout_=window.setTimeout(function(){n.logger_("On QUOTA_EXCEEDED_ERR, re-processing call queue"),n.quotaExceededErrorRetryTimeout_=null,n.processCallQueue_()},1e3)},!0)},r.handleAppendError_=function(e,i){var n=e.segmentInfo,o=e.type,l=e.bytes;if(i){if(22===i.code)return void this.handleQuotaExceededError_({segmentInfo:n,type:o,bytes:l});this.logger_("Received non QUOTA_EXCEEDED_ERR on append",i),this.error(o+" append of "+l.length+"b failed for segment #"+n.mediaIndex+" in playlist "+n.playlist.id),this.trigger("appenderror")}},r.appendToSourceBuffer_=function(e){var i=e.segmentInfo,n=e.type,o=e.initSegment,l=e.data,d=e.bytes;if(!d){var h=[l],y=l.byteLength;o&&(h.unshift(o),y+=o.byteLength),d=function(t){var a,r=0;return t.bytes&&(a=new Uint8Array(t.bytes),t.segments.forEach(function(e){a.set(e,r),r+=e.byteLength})),a}({bytes:y,segments:h})}this.sourceUpdater_.appendBuffer({segmentInfo:i,type:n,bytes:d},this.handleAppendError_.bind(this,{segmentInfo:i,type:n,bytes:d}))},r.handleSegmentTimingInfo_=function(e,i,n){if(this.pendingSegment_&&i===this.pendingSegment_.requestId){var o=this.pendingSegment_.segment,l=e+"TimingInfo";o[l]||(o[l]={}),o[l].transmuxerPrependedSeconds=n.prependedContentDuration||0,o[l].transmuxedPresentationStart=n.start.presentation,o[l].transmuxedDecodeStart=n.start.decode,o[l].transmuxedPresentationEnd=n.end.presentation,o[l].transmuxedDecodeEnd=n.end.decode,o[l].baseMediaDecodeTime=n.baseMediaDecodeTime}},r.appendData_=function(e,i){var n=i.type,o=i.data;if(o&&o.byteLength&&("audio"!==n||!this.audioDisabled_)){var l=this.getInitSegmentAndUpdateState_({type:n,initSegment:i.initSegment,playlist:e.playlist,map:e.isFmp4?e.segment.map:null});this.appendToSourceBuffer_({segmentInfo:e,type:n,initSegment:l,data:o})}},r.loadSegment_=function(e){var i=this;this.state="WAITING",this.pendingSegment_=e,this.trimBackBuffer_(e),"number"==typeof e.timestampOffset&&this.transmuxer_&&this.transmuxer_.postMessage({action:"clearAllMp4Captions"}),this.hasEnoughInfoToLoad_()?this.updateTransmuxerAndRequestSegment_(e):this.loadQueue_.push(function(){var n=Z({},e,{forceTimestampOffset:!0});Z(e,i.generateSegmentInfo_(n)),i.isPendingTimestampOffset_=!1,i.updateTransmuxerAndRequestSegment_(e)})},r.updateTransmuxerAndRequestSegment_=function(e){var i=this;this.shouldUpdateTransmuxerTimestampOffset_(e.timestampOffset)&&(this.gopBuffer_.length=0,e.gopsToAlignWith=[],this.timeMapping_=0,this.transmuxer_.postMessage({action:"reset"}),this.transmuxer_.postMessage({action:"setTimestampOffset",timestampOffset:e.timestampOffset}));var n=this.createSimplifiedSegmentObj_(e),o=this.isEndOfStream_(e.mediaIndex,e.playlist,e.partIndex),l=null!==this.mediaIndex,d=e.timeline!==this.currentTimeline_&&e.timeline>0,h=o||l&&d;this.logger_("Requesting "+oa(e)),n.map&&!n.map.bytes&&(this.logger_("going to request init segment."),this.appendInitSegment_={video:!0,audio:!0}),e.abortRequests=T0({xhr:this.vhs_.xhr,xhrOptions:this.xhrOptions_,decryptionWorker:this.decrypter_,segment:n,abortFn:this.handleAbort_.bind(this,e),progressFn:this.handleProgress_.bind(this),trackInfoFn:this.handleTrackInfo_.bind(this),timingInfoFn:this.handleTimingInfo_.bind(this),videoSegmentTimingInfoFn:this.handleSegmentTimingInfo_.bind(this,"video",e.requestId),audioSegmentTimingInfoFn:this.handleSegmentTimingInfo_.bind(this,"audio",e.requestId),captionsFn:this.handleCaptions_.bind(this),isEndOfTimeline:h,endedTimelineFn:function(){i.logger_("received endedtimeline callback")},id3Fn:this.handleId3_.bind(this),dataFn:this.handleData_.bind(this),doneFn:this.segmentRequestFinished_.bind(this),onTransmuxerLog:function(v){var S=v.message,A=v.level,I=v.stream;i.logger_(oa(e)+" logged from transmuxer stream "+I+" as a "+A+": "+S)}})},r.trimBackBuffer_=function(e){var i=function(t,r,a){var e=r-nr.BACK_BUFFER_LENGTH;t.length&&(e=Math.max(e,t.start(0)));var i=r-a;return Math.min(i,e)}(this.seekable_(),this.currentTime_(),this.playlist_.targetDuration||10);i>0&&this.remove(0,i)},r.createSimplifiedSegmentObj_=function(e){var i=e.segment,n=e.part,o={resolvedUri:n?n.resolvedUri:i.resolvedUri,byterange:n?n.byterange:i.byterange,requestId:e.requestId,transmuxer:e.transmuxer,audioAppendStart:e.audioAppendStart,gopsToAlignWith:e.gopsToAlignWith,part:e.part},l=e.playlist.segments[e.mediaIndex-1];if(l&&l.timeline===i.timeline&&(l.videoTimingInfo?o.baseStartTime=l.videoTimingInfo.transmuxedDecodeEnd:l.audioTimingInfo&&(o.baseStartTime=l.audioTimingInfo.transmuxedDecodeEnd)),i.key){var d=i.key.iv||new Uint32Array([0,0,0,e.mediaIndex+e.playlist.mediaSequence]);o.key=this.segmentKey(i.key),o.key.iv=d}return i.map&&(o.map=this.initSegmentForMap(i.map)),o},r.saveTransferStats_=function(e){this.mediaRequests+=1,e&&(this.mediaBytesTransferred+=e.bytesReceived,this.mediaTransferDuration+=e.roundTripTime)},r.saveBandwidthRelatedStats_=function(e,i){this.pendingSegment_.byteLength=i.bytesReceived,e=e);i++);return t.slice(0,i).concat(r)}(this.gopBuffer_,n.gopInfo,this.safeAppend_)),this.state="APPENDING",this.trigger("appending"),this.waitForAppendsToComplete_(o)}},r.setTimeMapping_=function(e){var i=this.syncController_.mappingForTimeline(e);null!==i&&(this.timeMapping_=i)},r.updateMediaSecondsLoaded_=function(e){"number"==typeof e.start&&"number"==typeof e.end?this.mediaSecondsLoaded+=e.end-e.start:this.mediaSecondsLoaded+=e.duration},r.shouldUpdateTransmuxerTimestampOffset_=function(e){return null!==e&&("main"===this.loaderType_&&e!==this.sourceUpdater_.videoTimestampOffset()||!this.audioDisabled_&&e!==this.sourceUpdater_.audioTimestampOffset())},r.trueSegmentStart_=function(e){var i=e.currentStart,n=e.playlist,o=e.mediaIndex,l=e.firstVideoFrameTimeForData,d=e.currentVideoTimestampOffset,h=e.useVideoTimingInfo,y=e.videoTimingInfo,v=e.audioTimingInfo;if(typeof i<"u")return i;if(!h)return v.start;var S=n.segments[o-1];return 0===o||!S||typeof S.start>"u"||S.end!==l+d?l:y.start},r.waitForAppendsToComplete_=function(e){var i=this.getCurrentMediaInfo_(e);if(!i)return this.error({message:"No starting media returned, likely due to an unsupported media format.",blacklistDuration:1/0}),void this.trigger("error");var n=i.hasAudio,o=i.hasVideo,l=i.isMuxed,d="main"===this.loaderType_&&o,h=!this.audioDisabled_&&n&&!l;if(e.waitingOnAppends=0,!e.hasAppendedData_)return!e.timingInfo&&"number"==typeof e.timestampOffset&&(this.isPendingTimestampOffset_=!0),e.timingInfo={start:0},e.waitingOnAppends++,this.isPendingTimestampOffset_||(this.updateSourceBufferTimestampOffset_(e),this.processMetadataQueue_()),void this.checkAppendsDone_(e);d&&e.waitingOnAppends++,h&&e.waitingOnAppends++,d&&this.sourceUpdater_.videoQueueCallback(this.checkAppendsDone_.bind(this,e)),h&&this.sourceUpdater_.audioQueueCallback(this.checkAppendsDone_.bind(this,e))},r.checkAppendsDone_=function(e){this.checkForAbort_(e.requestId)||(e.waitingOnAppends--,0===e.waitingOnAppends&&this.handleAppendsDone_())},r.checkForIllegalMediaSwitch=function(e){var i=function(t,r,a){return"main"===t&&r&&a?a.hasAudio||a.hasVideo?r.hasVideo&&!a.hasVideo?"Only audio found in segment when we expected video. We can't switch to audio only from a stream that had video. To get rid of this message, please add codec information to the manifest.":!r.hasVideo&&a.hasVideo?"Video found in segment when we expected only audio. We can't switch to a stream with video from an audio only stream. To get rid of this message, please add codec information to the manifest.":null:"Neither audio nor video found in segment.":null}(this.loaderType_,this.getCurrentMediaInfo_(),e);return!!i&&(this.error({message:i,blacklistDuration:1/0}),this.trigger("error"),!0)},r.updateSourceBufferTimestampOffset_=function(e){if(null!==e.timestampOffset&&"number"==typeof e.timingInfo.start&&!e.changedTimestampOffset&&"main"===this.loaderType_){var i=!1;e.timestampOffset-=e.timingInfo.start,e.changedTimestampOffset=!0,e.timestampOffset!==this.sourceUpdater_.videoTimestampOffset()&&(this.sourceUpdater_.videoTimestampOffset(e.timestampOffset),i=!0),e.timestampOffset!==this.sourceUpdater_.audioTimestampOffset()&&(this.sourceUpdater_.audioTimestampOffset(e.timestampOffset),i=!0),i&&this.trigger("timestampoffset")}},r.updateTimingInfoEnd_=function(e){e.timingInfo=e.timingInfo||{};var i=this.getMediaInfo_(),o="main"===this.loaderType_&&i&&i.hasVideo&&e.videoTimingInfo?e.videoTimingInfo:e.audioTimingInfo;!o||(e.timingInfo.end="number"==typeof o.end?o.end:o.start+e.duration)},r.handleAppendsDone_=function(){if(this.pendingSegment_&&this.trigger("appendsdone"),!this.pendingSegment_)return this.state="READY",void(this.paused()||this.monitorBuffer_());var e=this.pendingSegment_;this.updateTimingInfoEnd_(e),this.shouldSaveSegmentTimingInfo_&&this.syncController_.saveSegmentTimingInfo({segmentInfo:e,shouldSaveTimelineMapping:"main"===this.loaderType_});var i=z0(e,this.sourceType_);if(i&&("warn"===i.severity?he.log.warn(i.message):this.logger_(i.message)),this.recordThroughput_(e),this.pendingSegment_=null,this.state="READY",!e.isSyncRequest||(this.trigger("syncinfoupdate"),e.hasAppendedData_)){this.logger_("Appended "+oa(e)),this.addSegmentMetadataCue_(e),this.fetchAtBuffer_=!0,this.currentTimeline_!==e.timeline&&(this.timelineChangeController_.lastTimelineChange({type:this.loaderType_,from:this.currentTimeline_,to:e.timeline}),"main"===this.loaderType_&&!this.audioDisabled_&&this.timelineChangeController_.lastTimelineChange({type:"audio",from:this.currentTimeline_,to:e.timeline})),this.currentTimeline_=e.timeline,this.trigger("syncinfoupdate");var n=e.segment,o=e.part,l=n.end&&this.currentTime_()-n.end>3*e.playlist.targetDuration,d=o&&o.end&&this.currentTime_()-o.end>3*e.playlist.partTargetDuration;if(l||d)return this.logger_("bad "+(l?"segment":"part")+" "+oa(e)),void this.resetEverything();null!==this.mediaIndex&&this.trigger("bandwidthupdate"),this.trigger("progress"),this.mediaIndex=e.mediaIndex,this.partIndex=e.partIndex,this.isEndOfStream_(e.mediaIndex,e.playlist,e.partIndex)&&this.endOfStream(),this.trigger("appended"),e.hasAppendedData_&&this.mediaAppends++,this.paused()||this.monitorBuffer_()}else this.logger_("Throwing away un-appended sync request "+oa(e))},r.recordThroughput_=function(e){if(e.duration"u"||(this.subtitlesTrack_=e,"INIT"===this.state&&this.couldBeginLoading_()&&this.init_()),this.subtitlesTrack_},r.remove=function(e,i){Va(e,i,this.subtitlesTrack_)},r.fillBuffer_=function(){var e=this,i=this.chooseNextRequest_();if(i){if(null===this.syncController_.timestampOffsetForTimeline(i.timeline)){return this.syncController_.one("timestampoffset",function(){e.state="READY",e.paused()||e.monitorBuffer_()}),void(this.state="WAITING_ON_TIMELINE")}this.loadSegment_(i)}},r.timestampOffsetForSegment_=function(){return null},r.chooseNextRequest_=function(){return this.skipEmptySegments_(s.prototype.chooseNextRequest_.call(this))},r.skipEmptySegments_=function(e){for(;e&&e.segment.empty;){if(e.mediaIndex+1>=e.playlist.segments.length){e=null;break}e=this.generateSegmentInfo_({playlist:e.playlist,mediaIndex:e.mediaIndex+1,startOfSegment:e.startOfSegment+e.duration,isSyncRequest:e.isSyncRequest})}return e},r.stopForError=function(e){this.error(e),this.state="READY",this.pause(),this.trigger("error")},r.segmentRequestFinished_=function(e,i,n){var o=this;if(this.subtitlesTrack_){if(this.saveTransferStats_(i.stats),!this.pendingSegment_)return this.state="READY",void(this.mediaRequestsAborted+=1);if(e)return e.code===Jr_TIMEOUT&&this.handleTimeout_(),e.code===Jr_ABORTED?this.mediaRequestsAborted+=1:this.mediaRequestsErrored+=1,void this.stopForError(e);var l=this.pendingSegment_;this.saveBandwidthRelatedStats_(l.duration,i.stats),this.state="APPENDING",this.trigger("appending");var d=l.segment;if(d.map&&(d.map.bytes=i.map.bytes),l.bytes=i.bytes,"function"!=typeof window.WebVTT&&this.subtitlesTrack_&&this.subtitlesTrack_.tech_){var h,y=function(){o.subtitlesTrack_.tech_.off("vttjsloaded",h),o.stopForError({message:"Error loading vtt.js"})};return h=function(){o.subtitlesTrack_.tech_.off("vttjserror",y),o.segmentRequestFinished_(e,i,n)},this.state="WAITING_ON_VTTJS",this.subtitlesTrack_.tech_.one("vttjsloaded",h),void this.subtitlesTrack_.tech_.one("vttjserror",y)}d.requested=!0;try{this.parseVTTCues_(l)}catch(v){return void this.stopForError({message:v.message})}if(this.updateTimeMapping_(l,this.syncController_.timelines[l.timeline],this.playlist_),l.cues.length?l.timingInfo={start:l.cues[0].startTime,end:l.cues[l.cues.length-1].endTime}:l.timingInfo={start:l.startOfSegment,end:l.startOfSegment+l.duration},l.isSyncRequest)return this.trigger("syncinfoupdate"),this.pendingSegment_=null,void(this.state="READY");l.byteLength=l.bytes.byteLength,this.mediaSecondsLoaded+=d.duration,l.cues.forEach(function(v){o.subtitlesTrack_.addCue(o.featuresNativeTextTracks_?new window.VTTCue(v.startTime,v.endTime,v.text):v)}),function(t){var r=t.cues;if(r)for(var a=0;a1&&e.push(r[n]);e.length&&e.forEach(function(o){return t.removeCue(o)})}}(this.subtitlesTrack_),this.handleAppendsDone_()}else this.state="READY"},r.handleData_=function(){},r.updateTimingInfoEnd_=function(){},r.parseVTTCues_=function(e){var i,n=!1;"function"==typeof window.TextDecoder?i=new window.TextDecoder("utf8"):(i=window.WebVTT.StringDecoder(),n=!0);var o=new window.WebVTT.Parser(window,window.vttjs,i);if(e.cues=[],e.timestampmap={MPEGTS:0,LOCAL:0},o.oncue=e.cues.push.bind(e.cues),o.ontimestampmap=function(h){e.timestampmap=h},o.onparsingerror=function(h){he.log.warn("Error encountered when parsing cues: "+h.message)},e.segment.map){var l=e.segment.map.bytes;n&&(l=tf(l)),o.parse(l)}var d=e.bytes;n&&(d=tf(d)),o.parse(d),o.flush()},r.updateTimeMapping_=function(e,i,n){var o=e.segment;if(i){if(!e.cues.length)return void(o.empty=!0);var l=e.timestampmap,d=l.MPEGTS/Nn-l.LOCAL+i.mapping;if(e.cues.forEach(function(v){v.startTime+=d,v.endTime+=d}),!n.syncInfo){var h=e.cues[0].startTime,y=e.cues[e.cues.length-1].startTime;n.syncInfo={mediaSequence:n.mediaSequence+e.mediaIndex,time:Math.min(h,y-o.duration)}}}},t}(ou),X0=function(t,r){for(var a=t.cues,e=0;e=i.adStartTime&&r<=i.adEndTime)return i}return null},af=[{name:"VOD",run:function(t,r,a,e,i){if(a!==1/0){return{time:0,segmentIndex:0,partIndex:null}}return null}},{name:"ProgramDateTime",run:function(t,r,a,e,i){if(!Object.keys(t.timelineToDatetimeMappings).length)return null;var n=null,o=null,l=Go(r);i=i||0;for(var d=0;d=A)&&(o=A,n={time:S,segmentIndex:y.segmentIndex,partIndex:y.partIndex})}}return n}},{name:"Discontinuity",run:function(t,r,a,e,i){var n=null;if(i=i||0,r.discontinuityStarts&&r.discontinuityStarts.length)for(var o=null,l=0;l=v)&&(o=v,n={time:y.time,segmentIndex:d,partIndex:null})}}return n}},{name:"Playlist",run:function(t,r,a,e,i){return r.syncInfo?{time:r.syncInfo.time,segmentIndex:r.syncInfo.mediaSequence-r.mediaSequence,partIndex:null}:null}}],J0=function(s){function t(a){var e;return(e=s.call(this)||this).timelines=[],e.discontinuities=[],e.timelineToDatetimeMappings={},e.logger_=zr("SyncController"),e}Oe(t,s);var r=t.prototype;return r.getSyncPoint=function(e,i,n,o){var l=this.runStrategies_(e,i,n,o);return l.length?this.selectSyncPoint_(l,{key:"time",value:o}):null},r.getExpiredTime=function(e,i){if(!e||!e.segments)return null;var n=this.runStrategies_(e,i,e.discontinuitySequence,0);if(!n.length)return null;var o=this.selectSyncPoint_(n,{key:"segmentIndex",value:0});return o.segmentIndex>0&&(o.time*=-1),Math.abs(o.time+Na({defaultDuration:e.targetDuration,durationList:e.segments,startIndex:o.segmentIndex,endIndex:0}))},r.runStrategies_=function(e,i,n,o){for(var l=[],d=0;d86400)he.log.warn("Not saving expired segment info. Media sequence gap "+n+" is too large.");else for(var o=n-1;o>=0;o--){var l=e.segments[o];if(l&&typeof l.start<"u"){i.syncInfo={mediaSequence:e.mediaSequence+o,time:l.start},this.logger_("playlist refresh sync: [time:"+i.syncInfo.time+", mediaSequence: "+i.syncInfo.mediaSequence+"]"),this.trigger("syncinfoupdate");break}}},r.setDateTimeMappingForStart=function(e){if(this.timelineToDatetimeMappings={},e.segments&&e.segments.length&&e.segments[0].dateTimeObject){var i=e.segments[0],n=i.dateTimeObject.getTime()/1e3;this.timelineToDatetimeMappings[i.timeline]=-n}},r.saveSegmentTimingInfo=function(e){var i=e.segmentInfo,n=e.shouldSaveTimelineMapping,o=this.calculateSegmentTimeMapping_(i,i.timingInfo,n),l=i.segment;o&&(this.saveDiscontinuitySyncInfo_(i),i.playlist.syncInfo||(i.playlist.syncInfo={mediaSequence:i.playlist.mediaSequence+i.mediaIndex,time:l.start}));var d=l.dateTimeObject;l.discontinuity&&n&&d&&(this.timelineToDatetimeMappings[l.timeline]=-d.getTime()/1e3)},r.timestampOffsetForTimeline=function(e){return typeof this.timelines[e]>"u"?null:this.timelines[e].time},r.mappingForTimeline=function(e){return typeof this.timelines[e]>"u"?null:this.timelines[e].mapping},r.calculateSegmentTimeMapping_=function(e,i,n){var h,y,o=e.segment,l=e.part,d=this.timelines[e.timeline];if("number"==typeof e.timestampOffset)d={time:e.startOfSegment,mapping:e.startOfSegment-i.start},n&&(this.timelines[e.timeline]=d,this.trigger("timestampoffset"),this.logger_("time mapping for timeline "+e.timeline+": [time: "+d.time+"] [mapping: "+d.mapping+"]")),h=e.startOfSegment,y=i.end+d.mapping;else{if(!d)return!1;h=i.start+d.mapping,y=i.end+d.mapping}return l&&(l.start=h,l.end=y),(!o.start||hy){var v=void 0;v=h<0?n.start-Na({defaultDuration:i.targetDuration,durationList:i.segments,startIndex:e.mediaIndex,endIndex:l}):n.end+Na({defaultDuration:i.targetDuration,durationList:i.segments,startIndex:e.mediaIndex+1,endIndex:l}),this.discontinuities[d]={time:v,accuracy:y}}}},r.dispose=function(){this.trigger("dispose"),this.off()},t}(he.EventTarget),Z0=function(s){function t(){var a;return(a=s.call(this)||this).pendingTimelineChanges_={},a.lastTimelineChanges_={},a}Oe(t,s);var r=t.prototype;return r.clearPendingTimelineChange=function(e){this.pendingTimelineChanges_[e]=null,this.trigger("pendingtimelinechange")},r.pendingTimelineChange=function(e){var i=e.type,n=e.from,o=e.to;return"number"==typeof n&&"number"==typeof o&&(this.pendingTimelineChanges_[i]={type:i,from:n,to:o},this.trigger("pendingtimelinechange")),this.pendingTimelineChanges_[i]},r.lastTimelineChange=function(e){var i=e.type,n=e.from,o=e.to;return"number"==typeof n&&"number"==typeof o&&(this.lastTimelineChanges_[i]={type:i,from:n,to:o},delete this.pendingTimelineChanges_[i],this.trigger("timelinechange")),this.lastTimelineChanges_[i]},r.dispose=function(){this.trigger("dispose"),this.pendingTimelineChanges_={},this.lastTimelineChanges_={},this.off()},t}(he.EventTarget),ey=Ic(Dc(function(){function s(I,k,Q){return I(Q={path:k,exports:{},require:function(ve,Te){return function t(){throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs")}(Te??Q.path)}},Q.exports),Q.exports}var r=s(function(I){function k(Y,ve){for(var Te=0;Te-1},k.trigger=function(Y){var ve=this.listeners[Y];if(ve)if(2===arguments.length)for(var Te=ve.length,Se=0;Se>7))^Se]=Se;for(ke=Fe=0;!ve[ke];ke^=Le||1,Fe=De[Fe]||1)for(Ct=(Ct=Fe^Fe<<1^Fe<<2^Fe<<3^Fe<<4)>>8^255&Ct^99,ve[ke]=Ct,Te[Ct]=ke,gt=16843009*Ee[Qe=Ee[Le=Ee[ke]]]^65537*Qe^257*Le^16843008*ke,Yt=257*Ee[Ct]^16843008*Ct,Se=0;Se<4;Se++)Q[Se][ke]=Yt=Yt<<24^Yt>>>8,Y[Se][Ct]=gt=gt<<24^gt>>>8;for(Se=0;Se<5;Se++)Q[Se]=Q[Se].slice(0),Y[Se]=Y[Se].slice(0);return k}()),this._tables=[[l[0][0].slice(),l[0][1].slice(),l[0][2].slice(),l[0][3].slice(),l[0][4].slice()],[l[1][0].slice(),l[1][1].slice(),l[1][2].slice(),l[1][3].slice(),l[1][4].slice()]];var Y,ve,Te,Se=this._tables[0][4],ke=this._tables[1],Fe=Q.length,Ee=1;if(4!==Fe&&6!==Fe&&8!==Fe)throw new Error("Invalid aes key size");var De=Q.slice(0),Le=[];for(this._key=[De,Le],Y=Fe;Y<4*Fe+28;Y++)Te=De[Y-1],(Y%Fe==0||8===Fe&&Y%Fe==4)&&(Te=Se[Te>>>24]<<24^Se[Te>>16&255]<<16^Se[Te>>8&255]<<8^Se[255&Te],Y%Fe==0&&(Te=Te<<8^Te>>>24^Ee<<24,Ee=Ee<<1^283*(Ee>>7))),De[Y]=De[Y-Fe]^Te;for(ve=0;Y;ve++,Y--)Te=De[3&ve?Y:Y-4],Le[ve]=Y<=4||ve<4?Te:ke[0][Se[Te>>>24]]^ke[1][Se[Te>>16&255]]^ke[2][Se[Te>>8&255]]^ke[3][Se[255&Te]]}return I.prototype.decrypt=function(Y,ve,Te,Se,ke,Fe){var Ct,Yt,gt,Mt,Ee=this._key[1],De=Y^Ee[0],Le=Se^Ee[1],Qe=Te^Ee[2],Ve=ve^Ee[3],xt=Ee.length/4-2,kr=4,ei=this._tables[1],ui=ei[0],Ci=ei[1],li=ei[2],Pi=ei[3],ki=ei[4];for(Mt=0;Mt>>24]^Ci[Le>>16&255]^li[Qe>>8&255]^Pi[255&Ve]^Ee[kr],Yt=ui[Le>>>24]^Ci[Qe>>16&255]^li[Ve>>8&255]^Pi[255&De]^Ee[kr+1],gt=ui[Qe>>>24]^Ci[Ve>>16&255]^li[De>>8&255]^Pi[255&Le]^Ee[kr+2],Ve=ui[Ve>>>24]^Ci[De>>16&255]^li[Le>>8&255]^Pi[255&Qe]^Ee[kr+3],kr+=4,De=Ct,Le=Yt,Qe=gt;for(Mt=0;Mt<4;Mt++)ke[(3&-Mt)+Fe]=ki[De>>>24]<<24^ki[Le>>16&255]<<16^ki[Qe>>8&255]<<8^ki[255&Ve]^Ee[kr++],Ct=De,De=Le,Le=Qe,Qe=Ve,Ve=Ct},I}(),h=function(I){function k(){var Y;return(Y=I.call(this,i)||this).jobs=[],Y.delay=1,Y.timeout_=null,Y}e(k,I);var Q=k.prototype;return Q.processJob_=function(){this.jobs.shift()(),this.jobs.length?this.timeout_=setTimeout(this.processJob_.bind(this),this.delay):this.timeout_=null},Q.push=function(ve){this.jobs.push(ve),this.timeout_||(this.timeout_=setTimeout(this.processJob_.bind(this),this.delay))},k}(i),y=function(k){return k<<24|(65280&k)<<8|(16711680&k)>>8|k>>>24},S=function(){function I(Q,Y,ve,Te){var Se=I.STEP,ke=new Int32Array(Q.buffer),Fe=new Uint8Array(Q.byteLength),Ee=0;for(this.asyncStream_=new h,this.asyncStream_.push(this.decryptChunk_(ke.subarray(Ee,Ee+Se),Y,ve,Fe)),Ee=Se;Ee>2),Te=new d(Array.prototype.slice.call(Q)),Se=new Uint8Array(k.byteLength),ke=new Int32Array(Se.buffer);for(Fe=Y[0],Ee=Y[1],De=Y[2],Le=Y[3],gt=0;gt=0&&(r="main-desc"),r},Kn=function(t,r){t.abort(),t.pause(),r&&r.activePlaylistLoader&&(r.activePlaylistLoader.pause(),r.activePlaylistLoader=null)},du=function(t,r){r.activePlaylistLoader=t,t.load()},Xn={AUDIO:function(t,r){return function(){var a=r.segmentLoaders[t],e=r.mediaTypes[t],i=r.blacklistCurrentPlaylist;Kn(a,e);var n=e.activeTrack(),o=e.activeGroup(),l=(o.filter(function(y){return y.default})[0]||o[0]).id,d=e.tracks[l];if(n!==d){for(var h in he.log.warn("Problem encountered loading the alternate audio track.Switching back to default."),e.tracks)e.tracks[h].enabled=e.tracks[h]===d;e.onTrackChanged()}else i({message:"Problem encountered loading the default audio track."})}},SUBTITLES:function(t,r){return function(){var a=r.segmentLoaders[t],e=r.mediaTypes[t];he.log.warn("Problem encountered loading the subtitle track.Disabling subtitle track."),Kn(a,e);var i=e.activeTrack();i&&(i.mode="disabled"),e.onTrackChanged()}}},nf={AUDIO:function(t,r,a){if(r){var e=a.tech,i=a.requestOptions,n=a.segmentLoaders[t];r.on("loadedmetadata",function(){var o=r.media();n.playlist(o,i),(!e.paused()||o.endList&&"none"!==e.preload())&&n.load()}),r.on("loadedplaylist",function(){n.playlist(r.media(),i),e.paused()||n.load()}),r.on("error",Xn[t](t,a))}},SUBTITLES:function(t,r,a){var e=a.tech,i=a.requestOptions,n=a.segmentLoaders[t],o=a.mediaTypes[t];r.on("loadedmetadata",function(){var l=r.media();n.playlist(l,i),n.track(o.activeTrack()),(!e.paused()||l.endList&&"none"!==e.preload())&&n.load()}),r.on("loadedplaylist",function(){n.playlist(r.media(),i),e.paused()||n.load()}),r.on("error",Xn[t](t,a))}},sy={AUDIO:function(t,r){var a=r.vhs,e=r.sourceType,i=r.segmentLoaders[t],n=r.requestOptions,o=r.master.mediaGroups,l=r.mediaTypes[t],d=l.groups,h=l.tracks,y=l.logger_,v=r.masterPlaylistLoader,S=Ba(v.master);for(var A in(!o[t]||0===Object.keys(o[t]).length)&&(o[t]={main:{default:{default:!0}}},S&&(o[t].main.default.playlists=v.master.playlists)),o[t])for(var I in d[A]||(d[A]=[]),o[t][A]){var k=o[t][A][I],Q=void 0;if(S?(y("AUDIO group '"+A+"' label '"+I+"' is a master playlist"),k.isMasterPlaylist=!0,Q=null):Q="vhs-json"===e&&k.playlists?new na(k.playlists[0],a,n):k.resolvedUri?new na(k.resolvedUri,a,n):k.playlists&&"dash"===e?new ru(k.playlists[0],a,n,v):null,k=he.mergeOptions({id:I,playlistLoader:Q},k),nf[t](t,k.playlistLoader,r),d[A].push(k),typeof h[I]>"u"){var Y=new he.AudioTrack({id:I,kind:ry(k),enabled:!1,language:k.language,default:k.default,label:I});h[I]=Y}}i.on("error",Xn[t](t,r))},SUBTITLES:function(t,r){var a=r.tech,e=r.vhs,i=r.sourceType,n=r.segmentLoaders[t],o=r.requestOptions,l=r.master.mediaGroups,d=r.mediaTypes[t],h=d.groups,y=d.tracks,v=r.masterPlaylistLoader;for(var S in l[t])for(var A in h[S]||(h[S]=[]),l[t][S])if(!l[t][S][A].forced){var I=l[t][S][A],k=void 0;if("hls"===i)k=new na(I.resolvedUri,e,o);else if("dash"===i){if(!I.playlists.filter(function(ve){return ve.excludeUntil!==1/0}).length)return;k=new ru(I.playlists[0],e,o,v)}else"vhs-json"===i&&(k=new na(I.playlists?I.playlists[0]:I.resolvedUri,e,o));if(I=he.mergeOptions({id:A,playlistLoader:k},I),nf[t](t,I.playlistLoader,r),h[S].push(I),typeof y[A]>"u"){var Y=a.addRemoteTextTrack({id:A,kind:"subtitles",default:I.default&&I.autoselect,language:I.language,label:A},!1).track;y[A]=Y}}n.on("error",Xn[t](t,r))},"CLOSED-CAPTIONS":function(t,r){var a=r.tech,e=r.master.mediaGroups,i=r.mediaTypes[t],n=i.groups,o=i.tracks;for(var l in e[t])for(var d in n[l]||(n[l]=[]),e[t][l]){var h=e[t][l][d];if(/^(?:CC|SERVICE)/.test(h.instreamId)){var y=a.options_.vhs&&a.options_.vhs.captionServices||{},v={label:d,language:h.language,instreamId:h.instreamId,default:h.default&&h.autoselect};if(y[v.instreamId]&&(v=he.mergeOptions(v,y[v.instreamId])),void 0===v.default&&delete v.default,n[l].push(he.mergeOptions({id:d},h)),typeof o[d]>"u"){var S=a.addRemoteTextTrack({id:v.instreamId,kind:"captions",default:v.default,language:v.language,label:v.label},!1).track;o[d]=S}}}}},oy=function s(t,r){for(var a=0;a1&&Ba(r.master))for(var d=0;d"u"?o:null!==a&&o&&o.filter(function(y){return y.id===a.id})[0]||null}}(A,t),r[A].activeTrack=ly[A](A,t),r[A].onGroupChanged=function(t,r){return function(){var a=r.segmentLoaders,e=a[t],i=a.main,n=r.mediaTypes[t],o=n.activeTrack(),l=n.getActiveGroup(),d=n.activePlaylistLoader,h=n.lastGroup_;if((!l||!h||l.id!==h.id)&&(n.lastGroup_=l,n.lastTrack_=o,Kn(e,n),l&&!l.isMasterPlaylist)){if(!l.playlistLoader)return void(d&&i.resetEverything());e.resyncLoader(),du(l.playlistLoader,n)}}}(A,t),r[A].onGroupChanging=function(t,r){return function(){var a=r.segmentLoaders[t];r.mediaTypes[t].lastGroup_=null,a.abort(),a.pause()}}(A,t),r[A].onTrackChanged=function(t,r){return function(){var a=r.masterPlaylistLoader,e=r.segmentLoaders,i=e[t],n=e.main,o=r.mediaTypes[t],l=o.activeTrack(),d=o.getActiveGroup(),h=o.activePlaylistLoader,y=o.lastTrack_;if((!y||!l||y.id!==l.id)&&(o.lastGroup_=d,o.lastTrack_=l,Kn(i,o),d)){if(d.isMasterPlaylist){if(!l||!y||l.id===y.id)return;var v=r.vhs.masterPlaylistController_,S=v.selectPlaylist();if(v.media()===S)return;return o.logger_("track change. Switching master audio from "+y.id+" to "+l.id),a.pause(),n.resetEverything(),void v.fastQualityChange_(S)}if("AUDIO"===t){if(!d.playlistLoader)return n.setAudio(!0),void n.resetEverything();i.setAudio(!0),n.setAudio(!1)}if(h===d.playlistLoader)return void du(d.playlistLoader,o);i.track&&i.track(l),i.resetEverything(),du(d.playlistLoader,o)}}}(A,t),r[A].getActiveGroup=function(t,r){var a=r.mediaTypes;return function(){var e=a[t].activeTrack();return e?a[t].activeGroup(e):null}}(A,t)});var d=r.AUDIO.activeGroup();if(d){var h=(d.filter(function(A){return A.default})[0]||d[0]).id;r.AUDIO.tracks[h].enabled=!0,r.AUDIO.onGroupChanged(),r.AUDIO.onTrackChanged(),r.AUDIO.getActiveGroup().playlistLoader?(l.setAudio(!1),o.setAudio(!0)):l.setAudio(!0)}a.on("mediachange",function(){["AUDIO","SUBTITLES"].forEach(function(A){return r[A].onGroupChanged()})}),a.on("mediachanging",function(){["AUDIO","SUBTITLES"].forEach(function(A){return r[A].onGroupChanging()})});var v=function(){r.AUDIO.onTrackChanged(),e.trigger({type:"usage",name:"vhs-audio-change"}),e.trigger({type:"usage",name:"hls-audio-change"})};for(var S in e.audioTracks().addEventListener("change",v),e.remoteTextTracks().addEventListener("change",r.SUBTITLES.onTrackChanged),i.on("dispose",function(){e.audioTracks().removeEventListener("change",v),e.remoteTextTracks().removeEventListener("change",r.SUBTITLES.onTrackChanged)}),e.clearTracks("audio"),r.AUDIO.tracks)e.audioTracks().addTrack(r.AUDIO.tracks[S])},py=["mediaRequests","mediaRequestsAborted","mediaRequestsTimedout","mediaRequestsErrored","mediaTransferDuration","mediaBytesTransferred","mediaAppends"],my=function(t){return this.audioSegmentLoader_[t]+this.mainSegmentLoader_[t]},vy=function(s){function t(a){var e;e=s.call(this)||this;var i=a.src,n=a.handleManifestRedirects,o=a.withCredentials,l=a.tech,d=a.bandwidth,h=a.externVhs,y=a.useCueTags,v=a.blacklistDuration,S=a.enableLowInitialPlaylist,A=a.sourceType,I=a.cacheEncryptionKeys,k=a.experimentalBufferBasedABR,Q=a.experimentalLeastPixelDiffSelector,Y=a.captionServices;if(!i)throw new Error("A non-empty playlist URL or JSON manifest string is required");var ve=a.maxPlaylistRetries;(null===ve||typeof ve>"u")&&(ve=1/0),oi=h,e.experimentalBufferBasedABR=Boolean(k),e.experimentalLeastPixelDiffSelector=Boolean(Q),e.withCredentials=o,e.tech_=l,e.vhs_=l.vhs,e.sourceType_=A,e.useCueTags_=y,e.blacklistDuration=v,e.maxPlaylistRetries=ve,e.enableLowInitialPlaylist=S,e.useCueTags_&&(e.cueTagsTrack_=e.tech_.addTextTrack("metadata","ad-cues"),e.cueTagsTrack_.inBandMetadataTrackDispatchType=""),e.requestOptions_={withCredentials:o,handleManifestRedirects:n,maxPlaylistRetries:ve,timeout:null},e.on("error",e.pauseLoading),e.mediaTypes_=function(){var t={};return["AUDIO","SUBTITLES","CLOSED-CAPTIONS"].forEach(function(r){t[r]={groups:{},tracks:{},activePlaylistLoader:null,activeGroup:si,activeTrack:si,getActiveGroup:si,onGroupChanged:si,onTrackChanged:si,lastTrack_:null,logger_:zr("MediaGroups["+r+"]")}}),t}(),e.mediaSource=new window.MediaSource,e.handleDurationChange_=e.handleDurationChange_.bind(Ze(e)),e.handleSourceOpen_=e.handleSourceOpen_.bind(Ze(e)),e.handleSourceEnded_=e.handleSourceEnded_.bind(Ze(e)),e.mediaSource.addEventListener("durationchange",e.handleDurationChange_),e.mediaSource.addEventListener("sourceopen",e.handleSourceOpen_),e.mediaSource.addEventListener("sourceended",e.handleSourceEnded_),e.seekable_=he.createTimeRanges(),e.hasPlayed_=!1,e.syncController_=new J0(a),e.segmentMetadataTrack_=l.addRemoteTextTrack({kind:"metadata",label:"segment-metadata"},!1).track,e.decrypter_=new ty,e.sourceUpdater_=new ef(e.mediaSource),e.inbandTextTracks_={},e.timelineChangeController_=new Z0;var Te={vhs:e.vhs_,parse708captions:a.parse708captions,captionServices:Y,mediaSource:e.mediaSource,currentTime:e.tech_.currentTime.bind(e.tech_),seekable:function(){return e.seekable()},seeking:function(){return e.tech_.seeking()},duration:function(){return e.duration()},hasPlayed:function(){return e.hasPlayed_},goalBufferLength:function(){return e.goalBufferLength()},bandwidth:d,syncController:e.syncController_,decrypter:e.decrypter_,sourceType:e.sourceType_,inbandTextTracks:e.inbandTextTracks_,cacheEncryptionKeys:I,sourceUpdater:e.sourceUpdater_,timelineChangeController:e.timelineChangeController_,experimentalExactManifestTimings:a.experimentalExactManifestTimings};e.masterPlaylistLoader_="dash"===e.sourceType_?new ru(i,e.vhs_,e.requestOptions_):new na(i,e.vhs_,e.requestOptions_),e.setupMasterPlaylistLoaderListeners_(),e.mainSegmentLoader_=new ou(he.mergeOptions(Te,{segmentMetadataTrack:e.segmentMetadataTrack_,loaderType:"main"}),a),e.audioSegmentLoader_=new ou(he.mergeOptions(Te,{loaderType:"audio"}),a),e.subtitleSegmentLoader_=new K0(he.mergeOptions(Te,{loaderType:"vtt",featuresNativeTextTracks:e.tech_.featuresNativeTextTracks}),a),e.setupSegmentLoaderListeners_(),e.experimentalBufferBasedABR&&(e.masterPlaylistLoader_.one("loadedplaylist",function(){return e.startABRTimer_()}),e.tech_.on("pause",function(){return e.stopABRTimer_()}),e.tech_.on("play",function(){return e.startABRTimer_()})),py.forEach(function(ke){e[ke+"_"]=my.bind(Ze(e),ke)}),e.logger_=zr("MPC"),e.triggeredFmp4Usage=!1,"none"===e.tech_.preload()?(e.loadOnPlay_=function(){e.loadOnPlay_=null,e.masterPlaylistLoader_.load()},e.tech_.one("play",e.loadOnPlay_)):e.masterPlaylistLoader_.load(),e.timeToLoadedData__=-1,e.mainAppendsToLoadedData__=-1,e.audioAppendsToLoadedData__=-1;var Se="none"===e.tech_.preload()?"play":"loadstart";return e.tech_.one(Se,function(){var ke=Date.now();e.tech_.one("loadeddata",function(){e.timeToLoadedData__=Date.now()-ke,e.mainAppendsToLoadedData__=e.mainSegmentLoader_.mediaAppends,e.audioAppendsToLoadedData__=e.audioSegmentLoader_.mediaAppends})}),e}Oe(t,s);var r=t.prototype;return r.mainAppendsToLoadedData_=function(){return this.mainAppendsToLoadedData__},r.audioAppendsToLoadedData_=function(){return this.audioAppendsToLoadedData__},r.appendsToLoadedData_=function(){var e=this.mainAppendsToLoadedData_(),i=this.audioAppendsToLoadedData_();return-1===e||-1===i?-1:e+i},r.timeToLoadedData_=function(){return this.timeToLoadedData__},r.checkABR_=function(){var e=this.selectPlaylist();e&&this.shouldSwitchToMedia_(e)&&this.switchMedia_(e,"abr")},r.switchMedia_=function(e,i,n){var o=this.media(),l=o&&(o.id||o.uri),d=e.id||e.uri;l&&l!==d&&(this.logger_("switch media "+l+" -> "+d+" from "+i),this.tech_.trigger({type:"usage",name:"vhs-rendition-change-"+i})),this.masterPlaylistLoader_.media(e,n)},r.startABRTimer_=function(){var e=this;this.stopABRTimer_(),this.abrTimer_=window.setInterval(function(){return e.checkABR_()},250)},r.stopABRTimer_=function(){this.tech_.scrubbing&&this.tech_.scrubbing()||(window.clearInterval(this.abrTimer_),this.abrTimer_=null)},r.getAudioTrackPlaylists_=function(){var e=this.master(),i=e&&e.playlists||[];if(!e||!e.mediaGroups||!e.mediaGroups.AUDIO)return i;var l,n=e.mediaGroups.AUDIO,o=Object.keys(n);if(Object.keys(this.mediaTypes_.AUDIO.groups).length)l=this.mediaTypes_.AUDIO.activeTrack();else{var d=n.main||o.length&&n[o[0]];for(var h in d)if(d[h].default){l={label:h};break}}if(!l)return i;var y=[];for(var v in n)if(n[v][l.label]){var S=n[v][l.label];if(S.playlists&&S.playlists.length)y.push.apply(y,S.playlists);else if(S.uri)y.push(S);else if(e.playlists.length)for(var A=0;A1&&(this.tech_.trigger({type:"usage",name:"vhs-alternate-audio"}),this.tech_.trigger({type:"usage",name:"hls-alternate-audio"})),this.useCueTags_&&(this.tech_.trigger({type:"usage",name:"vhs-playlist-cue-tags"}),this.tech_.trigger({type:"usage",name:"hls-playlist-cue-tags"}))},r.shouldSwitchToMedia_=function(e){var i=this.masterPlaylistLoader_.media()||this.masterPlaylistLoader_.pendingMedia_,n=this.tech_.currentTime(),o=this.bufferLowWaterLine(),l=this.bufferHighWaterLine();return function(t){var r=t.currentPlaylist,a=t.buffered,e=t.currentTime,i=t.nextPlaylist,n=t.bufferLowWaterLine,o=t.bufferHighWaterLine,l=t.duration,d=t.experimentalBufferBasedABR,h=t.log;if(!i)return he.log.warn("We received no playlist to switch to. Please check your stream."),!1;var y="allowing switch "+(r&&r.id||"null")+" -> "+i.id;if(!r)return h(y+" as current playlist is not set"),!0;if(i.id===r.id)return!1;var v=Boolean(aa(a,e).length);if(!r.endList)return v||"number"!=typeof r.partTargetDuration?(h(y+" as current playlist is live"),!0):(h("not "+y+" as current playlist is live llhls, but currentTime isn't in buffered."),!1);var S=qo(a,e),A=d?nr.EXPERIMENTAL_MAX_BUFFER_LOW_WATER_LINE:nr.MAX_BUFFER_LOW_WATER_LINE;if(lk)&&S>=n){var Y=y+" as forwardBuffer >= bufferLowWaterLine ("+S+" >= "+n+")";return d&&(Y+=" and next bandwidth > current bandwidth ("+I+" > "+k+")"),h(Y),!0}return h("not "+y+" as no switching criteria met"),!1}({buffered:this.tech_.buffered(),currentTime:n,currentPlaylist:i,nextPlaylist:e,bufferLowWaterLine:o,bufferHighWaterLine:l,duration:this.duration(),experimentalBufferBasedABR:this.experimentalBufferBasedABR,log:this.logger_})},r.setupSegmentLoaderListeners_=function(){var e=this;this.experimentalBufferBasedABR||(this.mainSegmentLoader_.on("bandwidthupdate",function(){var n=e.selectPlaylist();e.shouldSwitchToMedia_(n)&&e.switchMedia_(n,"bandwidthupdate"),e.tech_.trigger("bandwidthupdate")}),this.mainSegmentLoader_.on("progress",function(){e.trigger("progress")})),this.mainSegmentLoader_.on("error",function(){e.blacklistCurrentPlaylist(e.mainSegmentLoader_.error())}),this.mainSegmentLoader_.on("appenderror",function(){e.error=e.mainSegmentLoader_.error_,e.trigger("error")}),this.mainSegmentLoader_.on("syncinfoupdate",function(){e.onSyncInfoUpdate_()}),this.mainSegmentLoader_.on("timestampoffset",function(){e.tech_.trigger({type:"usage",name:"vhs-timestamp-offset"}),e.tech_.trigger({type:"usage",name:"hls-timestamp-offset"})}),this.audioSegmentLoader_.on("syncinfoupdate",function(){e.onSyncInfoUpdate_()}),this.audioSegmentLoader_.on("appenderror",function(){e.error=e.audioSegmentLoader_.error_,e.trigger("error")}),this.mainSegmentLoader_.on("ended",function(){e.logger_("main segment loader ended"),e.onEndOfStream()}),this.mainSegmentLoader_.on("earlyabort",function(n){e.experimentalBufferBasedABR||(e.delegateLoaders_("all",["abort"]),e.blacklistCurrentPlaylist({message:"Aborted early because there isn't enough bandwidth to complete the request without rebuffering."},120))});var i=function(){if(!e.sourceUpdater_.hasCreatedSourceBuffers())return e.tryToCreateSourceBuffers_();var o=e.getCodecsOrExclude_();!o||e.sourceUpdater_.addOrChangeSourceBuffers(o)};this.mainSegmentLoader_.on("trackinfo",i),this.audioSegmentLoader_.on("trackinfo",i),this.mainSegmentLoader_.on("fmp4",function(){e.triggeredFmp4Usage||(e.tech_.trigger({type:"usage",name:"vhs-fmp4"}),e.tech_.trigger({type:"usage",name:"hls-fmp4"}),e.triggeredFmp4Usage=!0)}),this.audioSegmentLoader_.on("fmp4",function(){e.triggeredFmp4Usage||(e.tech_.trigger({type:"usage",name:"vhs-fmp4"}),e.tech_.trigger({type:"usage",name:"hls-fmp4"}),e.triggeredFmp4Usage=!0)}),this.audioSegmentLoader_.on("ended",function(){e.logger_("audioSegmentLoader ended"),e.onEndOfStream()})},r.mediaSecondsLoaded_=function(){return Math.max(this.audioSegmentLoader_.mediaSecondsLoaded+this.mainSegmentLoader_.mediaSecondsLoaded)},r.load=function(){this.mainSegmentLoader_.load(),this.mediaTypes_.AUDIO.activePlaylistLoader&&this.audioSegmentLoader_.load(),this.mediaTypes_.SUBTITLES.activePlaylistLoader&&this.subtitleSegmentLoader_.load()},r.smoothQualityChange_=function(e){void 0===e&&(e=this.selectPlaylist()),this.fastQualityChange_(e)},r.fastQualityChange_=function(e){var i=this;void 0===e&&(e=this.selectPlaylist()),e!==this.masterPlaylistLoader_.media()?(this.switchMedia_(e,"fast-quality"),this.mainSegmentLoader_.resetEverything(function(){he.browser.IE_VERSION||he.browser.IS_EDGE?i.tech_.setCurrentTime(i.tech_.currentTime()+.04):i.tech_.setCurrentTime(i.tech_.currentTime())})):this.logger_("skipping fastQualityChange because new media is same as old")},r.play=function(){if(!this.setupFirstPlay()){this.tech_.ended()&&this.tech_.setCurrentTime(0),this.hasPlayed_&&this.load();var e=this.tech_.seekable();if(this.tech_.duration()===1/0&&this.tech_.currentTime()this.maxPlaylistRetries?1/0:Date.now()+1e3*i,n.excludeUntil=y,e.reason&&(n.lastExcludeReason_=e.reason),this.tech_.trigger("blacklistplaylist"),this.tech_.trigger({type:"usage",name:"vhs-rendition-blacklisted"}),this.tech_.trigger({type:"usage",name:"hls-rendition-blacklisted"});var v=this.selectPlaylist();if(!v)return this.error="Playback cannot continue. No available working or supported playlists.",void this.trigger("error");var S=e.internal?this.logger_:he.log.warn,A=e.message?" "+e.message:"";S((e.internal?"Internal problem":"Problem")+" encountered with playlist "+n.id+"."+A+" Switching to playlist "+v.id+"."),v.attributes.AUDIO!==n.attributes.AUDIO&&this.delegateLoaders_("audio",["abort","pause"]),v.attributes.SUBTITLES!==n.attributes.SUBTITLES&&this.delegateLoaders_("subtitle",["abort","pause"]),this.delegateLoaders_("main",["abort","pause"]);var I=v.targetDuration/2*1e3||5e3,k="number"==typeof v.lastRequest&&Date.now()-v.lastRequest<=I;return this.switchMedia_(v,"exclude",d||k)},r.pauseLoading=function(){this.delegateLoaders_("all",["abort","pause"]),this.stopABRTimer_()},r.delegateLoaders_=function(e,i){var n=this,o=[],l="all"===e;(l||"main"===e)&&o.push(this.masterPlaylistLoader_);var d=[];(l||"audio"===e)&&d.push("AUDIO"),(l||"subtitle"===e)&&(d.push("CLOSED-CAPTIONS"),d.push("SUBTITLES")),d.forEach(function(h){var y=n.mediaTypes_[h]&&n.mediaTypes_[h].activePlaylistLoader;y&&o.push(y)}),["main","audio","subtitle"].forEach(function(h){var y=n[h+"SegmentLoader_"];y&&(e===h||"all"===e)&&o.push(y)}),o.forEach(function(h){return i.forEach(function(y){"function"==typeof h[y]&&h[y]()})})},r.setCurrentTime=function(e){var i=aa(this.tech_.buffered(),e);return this.masterPlaylistLoader_&&this.masterPlaylistLoader_.media()&&this.masterPlaylistLoader_.media().segments?i&&i.length?e:(this.mainSegmentLoader_.resetEverything(),this.mainSegmentLoader_.abort(),this.mediaTypes_.AUDIO.activePlaylistLoader&&(this.audioSegmentLoader_.resetEverything(),this.audioSegmentLoader_.abort()),this.mediaTypes_.SUBTITLES.activePlaylistLoader&&(this.subtitleSegmentLoader_.resetEverything(),this.subtitleSegmentLoader_.abort()),void this.load()):0},r.duration=function(){if(!this.masterPlaylistLoader_)return 0;var e=this.masterPlaylistLoader_.media();return e?e.endList?this.mediaSource?this.mediaSource.duration:oi.Playlist.duration(e):1/0:0},r.seekable=function(){return this.seekable_},r.onSyncInfoUpdate_=function(){var e;if(this.masterPlaylistLoader_){var i=this.masterPlaylistLoader_.media();if(i){var n=this.syncController_.getExpiredTime(i,this.duration());if(null!==n){var d,h,o=this.masterPlaylistLoader_.master,l=oi.Playlist.seekable(i,n,oi.Playlist.liveEdgeDelay(o,i));if(0!==l.length&&(!this.mediaTypes_.AUDIO.activePlaylistLoader||(i=this.mediaTypes_.AUDIO.activePlaylistLoader.media(),null!==(n=this.syncController_.getExpiredTime(i,this.duration()))&&0!==(e=oi.Playlist.seekable(i,n,oi.Playlist.liveEdgeDelay(o,i))).length)))this.seekable_&&this.seekable_.length&&(d=this.seekable_.end(0),h=this.seekable_.start(0)),e?e.start(0)>l.end(0)||l.start(0)>e.end(0)?this.seekable_=l:this.seekable_=he.createTimeRanges([[e.start(0)>l.start(0)?e.start(0):l.start(0),e.end(0)0&&(o=Math.max(o,n.end(n.length-1))),this.mediaSource.duration!==o&&this.sourceUpdater_.setDuration(o)}},r.dispose=function(){var e=this;this.trigger("dispose"),this.decrypter_.terminate(),this.masterPlaylistLoader_.dispose(),this.mainSegmentLoader_.dispose(),this.loadOnPlay_&&this.tech_.off("play",this.loadOnPlay_),["AUDIO","SUBTITLES"].forEach(function(i){var n=e.mediaTypes_[i].groups;for(var o in n)n[o].forEach(function(l){l.playlistLoader&&l.playlistLoader.dispose()})}),this.audioSegmentLoader_.dispose(),this.subtitleSegmentLoader_.dispose(),this.sourceUpdater_.dispose(),this.timelineChangeController_.dispose(),this.stopABRTimer_(),this.updateDuration_&&this.mediaSource.removeEventListener("sourceopen",this.updateDuration_),this.mediaSource.removeEventListener("durationchange",this.handleDurationChange_),this.mediaSource.removeEventListener("sourceopen",this.handleSourceOpen_),this.mediaSource.removeEventListener("sourceended",this.handleSourceEnded_),this.off()},r.master=function(){return this.masterPlaylistLoader_.master},r.media=function(){return this.masterPlaylistLoader_.media()||this.initialMedia_},r.areMediaTypesKnown_=function(){var e=!!this.mediaTypes_.AUDIO.activePlaylistLoader,i=!!this.mainSegmentLoader_.getCurrentMediaInfo_(),n=!e||!!this.audioSegmentLoader_.getCurrentMediaInfo_();return!(!i||!n)},r.getCodecsOrExclude_=function(){var e=this,i={main:this.mainSegmentLoader_.getCurrentMediaInfo_()||{},audio:this.audioSegmentLoader_.getCurrentMediaInfo_()||{}};i.video=i.main;var n=ja(this.master(),this.media()),o={},l=!!this.mediaTypes_.AUDIO.activePlaylistLoader;if(i.main.hasVideo&&(o.video=n.video||i.main.videoCodec||"avc1.4d400d"),i.main.isMuxed&&(o.video+=","+(n.audio||i.main.audioCodec||Kl)),(i.main.hasAudio&&!i.main.isMuxed||i.audio.hasAudio||l)&&(o.audio=n.audio||i.main.audioCodec||i.audio.audioCodec||Kl,i.audio.isFmp4=i.main.hasAudio&&!i.main.isMuxed?i.main.isFmp4:i.audio.isFmp4),o.audio||o.video){var y,h={};if(["video","audio"].forEach(function(I){if(o.hasOwnProperty(I)&&!function(k,Q){return k?Sn(Q):mo(Q)}(i[I].isFmp4,o[I])){var k=i[I].isFmp4?"browser":"muxer";h[k]=h[k]||[],h[k].push(o[I]),"audio"===I&&(y=k)}}),l&&y&&this.media().attributes.AUDIO){var v=this.media().attributes.AUDIO;this.master().playlists.forEach(function(I){(I.attributes&&I.attributes.AUDIO)===v&&I!==e.media()&&(I.excludeUntil=1/0)}),this.logger_("excluding audio group "+v+" as "+y+' does not support codec(s): "'+o.audio+'"')}if(!Object.keys(h).length){if(this.sourceUpdater_.hasCreatedSourceBuffers()&&!this.sourceUpdater_.canChangeType()){var A=[];if(["video","audio"].forEach(function(I){var k=(Qr(e.sourceUpdater_.codecs[I]||"")[0]||{}).type,Q=(Qr(o[I]||"")[0]||{}).type;k&&Q&&k.toLowerCase()!==Q.toLowerCase()&&A.push('"'+e.sourceUpdater_.codecs[I]+'" -> "'+o[I]+'"')}),A.length)return void this.blacklistCurrentPlaylist({playlist:this.media(),message:"Codec switching not supported: "+A.join(", ")+".",blacklistDuration:1/0,internal:!0})}return o}var S=Object.keys(h).reduce(function(I,k){return I&&(I+=", "),I+=k+' does not support codec(s): "'+h[k].join(",")+'"'},"")+".";this.blacklistCurrentPlaylist({playlist:this.media(),internal:!0,message:S,blacklistDuration:1/0})}else this.blacklistCurrentPlaylist({playlist:this.media(),message:"Could not determine codecs for playlist.",blacklistDuration:1/0})},r.tryToCreateSourceBuffers_=function(){if("open"===this.mediaSource.readyState&&!this.sourceUpdater_.hasCreatedSourceBuffers()&&this.areMediaTypesKnown_()){var e=this.getCodecsOrExclude_();if(e){this.sourceUpdater_.createSourceBuffers(e);var i=[e.video,e.audio].filter(Boolean).join(",");this.excludeIncompatibleVariants_(i)}}},r.excludeUnsupportedVariants_=function(){var e=this,i=this.master().playlists,n=[];Object.keys(i).forEach(function(o){var l=i[o];if(-1===n.indexOf(l.id)){n.push(l.id);var d=ja(e.master,l),h=[];d.audio&&!mo(d.audio)&&!Sn(d.audio)&&h.push("audio codec "+d.audio),d.video&&!mo(d.video)&&!Sn(d.video)&&h.push("video codec "+d.video),d.text&&"stpp.ttml.im1t"===d.text&&h.push("text codec "+d.text),h.length&&(l.excludeUntil=1/0,e.logger_("excluding "+l.id+" for unsupported: "+h.join(", ")))}})},r.excludeIncompatibleVariants_=function(e){var i=this,n=[],o=this.master().playlists,l=qn(Qr(e)),d=$c(l),h=l.video&&Qr(l.video)[0]||null,y=l.audio&&Qr(l.audio)[0]||null;Object.keys(o).forEach(function(v){var S=o[v];if(-1===n.indexOf(S.id)&&S.excludeUntil!==1/0){n.push(S.id);var A=[],I=ja(i.masterPlaylistLoader_.master,S),k=$c(I);if(I.audio||I.video){if(k!==d&&A.push('codec count "'+k+'" !== "'+d+'"'),!i.sourceUpdater_.canChangeType()){var Q=I.video&&Qr(I.video)[0]||null,Y=I.audio&&Qr(I.audio)[0]||null;Q&&h&&Q.type.toLowerCase()!==h.type.toLowerCase()&&A.push('video codec "'+Q.type+'" !== "'+h.type+'"'),Y&&y&&Y.type.toLowerCase()!==y.type.toLowerCase()&&A.push('audio codec "'+Y.type+'" !== "'+y.type+'"')}A.length&&(S.excludeUntil=1/0,i.logger_("blacklisting "+S.id+": "+A.join(" && ")))}}})},r.updateAdCues_=function(e){var i=0,n=this.seekable();n.length&&(i=n.start(0)),function(t,r,a){if(void 0===a&&(a=0),t.segments)for(var i,e=a,n=0;n"u"?o:(e?delete i.disabled:i.disabled=!0,e!==o&&!n&&(a(),e?t.trigger("renditionenabled"):t.trigger("renditiondisabled")),e)}}(t.playlists,r.id,o)},sf=["seeking","seeked","pause","playing","error"],by=function(){function s(r){var a=this;this.masterPlaylistController_=r.masterPlaylistController,this.tech_=r.tech,this.seekable=r.seekable,this.allowSeeksWithinUnsafeLiveWindow=r.allowSeeksWithinUnsafeLiveWindow,this.liveRangeSafeTimeDelta=r.liveRangeSafeTimeDelta,this.media=r.media,this.consecutiveUpdates=0,this.lastRecordedTime=null,this.timer_=null,this.checkCurrentTimeTimeout_=null,this.logger_=zr("PlaybackWatcher"),this.logger_("initialize");var e=function(){return a.monitorCurrentTime_()},i=function(){return a.monitorCurrentTime_()},n=function(){return a.techWaiting_()},o=function(){return a.cancelTimer_()},l=this.masterPlaylistController_,d=["main","subtitle","audio"],h={};d.forEach(function(v){h[v]={reset:function(){return a.resetSegmentDownloads_(v)},updateend:function(){return a.checkSegmentDownloads_(v)}},l[v+"SegmentLoader_"].on("appendsdone",h[v].updateend),l[v+"SegmentLoader_"].on("playlistupdate",h[v].reset),a.tech_.on(["seeked","seeking"],h[v].reset)});var y=function(S){["main","audio"].forEach(function(A){l[A+"SegmentLoader_"][S]("appended",a.seekingAppendCheck_)})};this.seekingAppendCheck_=function(){a.fixesBadSeeks_()&&(a.consecutiveUpdates=0,a.lastRecordedTime=a.tech_.currentTime(),y("off"))},this.clearSeekingAppendCheck_=function(){return y("off")},this.watchForBadSeeking_=function(){a.clearSeekingAppendCheck_(),y("on")},this.tech_.on("seeked",this.clearSeekingAppendCheck_),this.tech_.on("seeking",this.watchForBadSeeking_),this.tech_.on("waiting",n),this.tech_.on(sf,o),this.tech_.on("canplay",i),this.tech_.one("play",e),this.dispose=function(){a.clearSeekingAppendCheck_(),a.logger_("dispose"),a.tech_.off("waiting",n),a.tech_.off(sf,o),a.tech_.off("canplay",i),a.tech_.off("play",e),a.tech_.off("seeking",a.watchForBadSeeking_),a.tech_.off("seeked",a.clearSeekingAppendCheck_),d.forEach(function(v){l[v+"SegmentLoader_"].off("appendsdone",h[v].updateend),l[v+"SegmentLoader_"].off("playlistupdate",h[v].reset),a.tech_.off(["seeked","seeking"],h[v].reset)}),a.checkCurrentTimeTimeout_&&window.clearTimeout(a.checkCurrentTimeTimeout_),a.cancelTimer_()}}var t=s.prototype;return t.monitorCurrentTime_=function(){this.checkCurrentTime_(),this.checkCurrentTimeTimeout_&&window.clearTimeout(this.checkCurrentTimeTimeout_),this.checkCurrentTimeTimeout_=window.setTimeout(this.monitorCurrentTime_.bind(this),250)},t.resetSegmentDownloads_=function(a){var e=this.masterPlaylistController_[a+"SegmentLoader_"];this[a+"StalledDownloads_"]>0&&this.logger_("resetting possible stalled download count for "+a+" loader"),this[a+"StalledDownloads_"]=0,this[a+"Buffered_"]=e.buffered_()},t.checkSegmentDownloads_=function(a){var e=this.masterPlaylistController_,i=e[a+"SegmentLoader_"],n=i.buffered_(),o=function(t,r){if(t===r)return!1;if(!t&&r||!r&&t||t.length!==r.length)return!0;for(var a=0;a=e.end(e.length-1)))return this.techWaiting_();this.consecutiveUpdates>=5&&a===this.lastRecordedTime?(this.consecutiveUpdates++,this.waiting_()):a===this.lastRecordedTime?this.consecutiveUpdates++:(this.consecutiveUpdates=0,this.lastRecordedTime=a)}},t.cancelTimer_=function(){this.consecutiveUpdates=0,this.timer_&&(this.logger_("cancelTimer_"),clearTimeout(this.timer_)),this.timer_=null},t.fixesBadSeeks_=function(){if(!this.tech_.seeking())return!1;var o,e=this.seekable(),i=this.tech_.currentTime();this.afterSeekableWindow_(e,i,this.media(),this.allowSeeksWithinUnsafeLiveWindow)&&(o=e.end(e.length-1));if(this.beforeSeekableWindow_(e,i)){var d=e.start(0);o=d+(d===e.end(0)?0:Yr)}if(typeof o<"u")return this.logger_("Trying to seek outside of seekable at time "+i+" with seekable range "+rc(e)+". Seeking to "+o+"."),this.tech_.setCurrentTime(o),!0;for(var h=this.masterPlaylistController_.sourceUpdater_,y=this.tech_.buffered(),v=h.audioBuffer?h.audioBuffered():null,S=h.videoBuffer?h.videoBuffered():null,A=this.media(),I=A.partTargetDuration?A.partTargetDuration:2*(A.targetDuration-mi),k=[v,S],Q=0;Q "+i.end(0)+"]. Attempting to resume playback by seeking to the current time."),this.tech_.trigger({type:"usage",name:"vhs-unknown-waiting"}),void this.tech_.trigger({type:"usage",name:"hls-unknown-waiting"})}},t.techWaiting_=function(){var a=this.seekable(),e=this.tech_.currentTime();if(this.tech_.seeking()||null!==this.timer_)return!0;if(this.beforeSeekableWindow_(a,e)){var i=a.end(a.length-1);return this.logger_("Fell out of live window at time "+e+". Seeking to live point (seekable end) "+i),this.cancelTimer_(),this.tech_.setCurrentTime(i),this.tech_.trigger({type:"usage",name:"vhs-live-resync"}),this.tech_.trigger({type:"usage",name:"hls-live-resync"}),!0}var n=this.tech_.vhs.masterPlaylistController_.sourceUpdater_,o=this.tech_.buffered();if(this.videoUnderflow_({audioBuffered:n.audioBuffered(),videoBuffered:n.videoBuffered(),currentTime:e}))return this.cancelTimer_(),this.tech_.setCurrentTime(e),this.tech_.trigger({type:"usage",name:"vhs-video-underflow"}),this.tech_.trigger({type:"usage",name:"hls-video-underflow"}),!0;var d=Un(o,e);if(d.length>0){var h=d.start(0)-e;return this.logger_("Stopped at "+e+", setting timer for "+h+", seeking to "+d.start(0)),this.cancelTimer_(),this.timer_=setTimeout(this.skipTheGap_.bind(this),1e3*h,e),!0}return!1},t.afterSeekableWindow_=function(a,e,i,n){if(void 0===n&&(n=!1),!a.length)return!1;var o=a.end(a.length-1)+Yr;return!i.endList&&n&&(o=a.end(a.length-1)+3*i.targetDuration),e>o},t.beforeSeekableWindow_=function(a,e){return!!(a.length&&a.start(0)>0&&e2)return{start:o,end:l}}return null},s}(),Sy={errorInterval:30,getSource:function(t){return t(this.tech({IWillNotUseThisInPlugins:!0}).currentSource_||this.currentSource())}},xy=function s(t,r){var a=0,e=0,i=he.mergeOptions(Sy,r);t.ready(function(){t.trigger({type:"usage",name:"vhs-error-reload-initialized"}),t.trigger({type:"usage",name:"hls-error-reload-initialized"})});var n=function(){e&&t.currentTime(e)},o=function(v){null!=v&&(e=t.duration()!==1/0&&t.currentTime()||0,t.one("loadedmetadata",n),t.src(v),t.trigger({type:"usage",name:"vhs-error-reload"}),t.trigger({type:"usage",name:"hls-error-reload"}),t.play())},l=function(){return Date.now()-a<1e3*i.errorInterval?(t.trigger({type:"usage",name:"vhs-error-reload-canceled"}),void t.trigger({type:"usage",name:"hls-error-reload-canceled"})):i.getSource&&"function"==typeof i.getSource?(a=Date.now(),i.getSource.call(t,o)):void he.log.error("ERROR: reloadSourceOnError - The option getSource must be a function!")},d=function y(){t.off("loadedmetadata",n),t.off("error",l),t.off("dispose",y)};t.on("error",l),t.on("dispose",d),t.reloadSourceOnError=function(v){d(),s(t,v)}},or={PlaylistLoader:na,Playlist:Pr,utils:jv,STANDARD_PLAYLIST_SELECTOR:zc,INITIAL_PLAYLIST_SELECTOR:function(){var t=this,r=this.playlists.master.playlists.filter(Pr.isEnabled);return sa(r,function(e,i){return su(e,i)}),r.filter(function(e){return!!ja(t.playlists.master,e).video})[0]||null},lastBandwidthSelector:zc,movingAverageBandwidthSelector:function(t){var r=-1,a=-1;if(t<0||t>1)throw new Error("Moving average bandwidth decay must be between 0 and 1.");return function(){var e=this.useDevicePixelRatio&&window.devicePixelRatio||1;return r<0&&(r=this.systemBandwidth,a=this.systemBandwidth),this.systemBandwidth>0&&this.systemBandwidth!==a&&(r=t*this.systemBandwidth+(1-t)*r,a=this.systemBandwidth),qc(this.playlists.master,r,parseInt(Gn(this.tech_.el(),"width"),10)*e,parseInt(Gn(this.tech_.el(),"height"),10)*e,this.limitRenditionByPlayerDimensions,this.masterPlaylistController_)}},comparePlaylistBandwidth:su,comparePlaylistResolution:function(t,r){var a,e;return t.attributes.RESOLUTION&&t.attributes.RESOLUTION.width&&(a=t.attributes.RESOLUTION.width),a=a||window.Number.MAX_VALUE,r.attributes.RESOLUTION&&r.attributes.RESOLUTION.width&&(e=r.attributes.RESOLUTION.width),a===(e=e||window.Number.MAX_VALUE)&&t.attributes.BANDWIDTH&&r.attributes.BANDWIDTH?t.attributes.BANDWIDTH-r.attributes.BANDWIDTH:a-e},xhr:Tc()};Object.keys(nr).forEach(function(s){Object.defineProperty(or,s,{get:function(){return he.log.warn("using Vhs."+s+" is UNSAFE be sure you know what you are doing"),nr[s]},set:function(r){he.log.warn("using Vhs."+s+" is UNSAFE be sure you know what you are doing"),"number"!=typeof r||r<0?he.log.warn("value of Vhs."+s+" must be greater than or equal to 0"):nr[s]=r}})});var uf="videojs-vhs",lf=function(t,r){for(var a=r.media(),e=-1,i=0;i=v&&h>=v?Math.max(h,S):S}return h},set:function(h){this.masterPlaylistController_.mainSegmentLoader_.bandwidth=h,this.masterPlaylistController_.mainSegmentLoader_.throughput={rate:0,count:0}}},systemBandwidth:{get:function(){var y,h=1/(this.bandwidth||1);return y=this.throughput>0?1/this.throughput:0,Math.floor(1/(h+y))},set:function(){he.log.error('The "systemBandwidth" property is read-only')}}}),this.options_.bandwidth&&(this.bandwidth=this.options_.bandwidth),this.options_.throughput&&(this.throughput=this.options_.throughput),Object.defineProperties(this.stats,{bandwidth:{get:function(){return n.bandwidth||0},enumerable:!0},mediaRequests:{get:function(){return n.masterPlaylistController_.mediaRequests_()||0},enumerable:!0},mediaRequestsAborted:{get:function(){return n.masterPlaylistController_.mediaRequestsAborted_()||0},enumerable:!0},mediaRequestsTimedout:{get:function(){return n.masterPlaylistController_.mediaRequestsTimedout_()||0},enumerable:!0},mediaRequestsErrored:{get:function(){return n.masterPlaylistController_.mediaRequestsErrored_()||0},enumerable:!0},mediaTransferDuration:{get:function(){return n.masterPlaylistController_.mediaTransferDuration_()||0},enumerable:!0},mediaBytesTransferred:{get:function(){return n.masterPlaylistController_.mediaBytesTransferred_()||0},enumerable:!0},mediaSecondsLoaded:{get:function(){return n.masterPlaylistController_.mediaSecondsLoaded_()||0},enumerable:!0},mediaAppends:{get:function(){return n.masterPlaylistController_.mediaAppends_()||0},enumerable:!0},mainAppendsToLoadedData:{get:function(){return n.masterPlaylistController_.mainAppendsToLoadedData_()||0},enumerable:!0},audioAppendsToLoadedData:{get:function(){return n.masterPlaylistController_.audioAppendsToLoadedData_()||0},enumerable:!0},appendsToLoadedData:{get:function(){return n.masterPlaylistController_.appendsToLoadedData_()||0},enumerable:!0},timeToLoadedData:{get:function(){return n.masterPlaylistController_.timeToLoadedData_()||0},enumerable:!0},buffered:{get:function(){return wi(n.tech_.buffered())},enumerable:!0},currentTime:{get:function(){return n.tech_.currentTime()},enumerable:!0},currentSource:{get:function(){return n.tech_.currentSource_},enumerable:!0},currentTech:{get:function(){return n.tech_.name_},enumerable:!0},duration:{get:function(){return n.tech_.duration()},enumerable:!0},master:{get:function(){return n.playlists.master},enumerable:!0},playerDimensions:{get:function(){return n.tech_.currentDimensions()},enumerable:!0},seekable:{get:function(){return wi(n.tech_.seekable())},enumerable:!0},timestamp:{get:function(){return Date.now()},enumerable:!0},videoPlaybackQuality:{get:function(){return n.tech_.getVideoPlaybackQuality()},enumerable:!0}}),this.tech_.one("canplay",this.masterPlaylistController_.setupFirstPlay.bind(this.masterPlaylistController_)),this.tech_.on("bandwidthupdate",function(){n.options_.useBandwidthFromLocalStorage&&function(t){if(!window.localStorage)return!1;var r=df();r=r?he.mergeOptions(r,t):t;try{window.localStorage.setItem(uf,JSON.stringify(r))}catch{return!1}}({bandwidth:n.bandwidth,throughput:Math.round(n.throughput)})}),this.masterPlaylistController_.on("selectedinitialmedia",function(){!function(t){t.representations=function(){var r=t.masterPlaylistController_.master(),a=Ba(r)?t.masterPlaylistController_.getAudioTrackPlaylists_():r.playlists;return a?a.filter(function(e){return!Wo(e)}).map(function(e,i){return new _y(t,e,e.id)}):[]}}(n)}),this.masterPlaylistController_.sourceUpdater_.on("createdsourcebuffers",function(){n.setupEme_()}),this.on(this.masterPlaylistController_,"progress",function(){this.tech_.trigger("progress")}),this.on(this.masterPlaylistController_,"firstplay",function(){this.ignoreNextSeekingEvent_=!0}),this.setupQualityLevels_(),this.tech_.el()&&(this.mediaSourceUrl_=window.URL.createObjectURL(this.masterPlaylistController_.mediaSource),this.tech_.src(this.mediaSourceUrl_))}},r.createKeySessions_=function(){var e=this,i=this.masterPlaylistController_.mediaTypes_.AUDIO.activePlaylistLoader;this.logger_("waiting for EME key session creation"),Oy({player:this.player_,sourceKeySystems:this.source_.keySystems,audioMedia:i&&i.media(),mainPlaylists:this.playlists.master.playlists}).then(function(){e.logger_("created EME key session"),e.masterPlaylistController_.sourceUpdater_.initializedEme()}).catch(function(n){e.logger_("error while creating EME key session",n),e.player_.error({message:"Failed to initialize media keys for EME",code:3})})},r.handleWaitingForKey_=function(){this.logger_("waitingforkey fired, attempting to create any new key sessions"),this.createKeySessions_()},r.setupEme_=function(){var e=this,i=this.masterPlaylistController_.mediaTypes_.AUDIO.activePlaylistLoader,n=Ly({player:this.player_,sourceKeySystems:this.source_.keySystems,media:this.playlists.media(),audioMedia:i&&i.media()});this.player_.tech_.on("keystatuschange",function(o){"output-restricted"===o.status&&e.masterPlaylistController_.blacklistCurrentPlaylist({playlist:e.masterPlaylistController_.media(),message:"DRM keystatus changed to "+o.status+". Playlist will fail to play. Check for HDCP content.",blacklistDuration:1/0})}),this.handleWaitingForKey_=this.handleWaitingForKey_.bind(this),this.player_.tech_.on("waitingforkey",this.handleWaitingForKey_),11!==he.browser.IE_VERSION&&n?this.createKeySessions_():this.masterPlaylistController_.sourceUpdater_.initializedEme()},r.setupQualityLevels_=function(){var e=this,i=he.players[this.tech_.options_.playerId];!i||!i.qualityLevels||this.qualityLevels_||(this.qualityLevels_=i.qualityLevels(),this.masterPlaylistController_.on("selectedinitialmedia",function(){!function(t,r){r.representations().forEach(function(a){t.addQualityLevel(a)}),lf(t,r.playlists)}(e.qualityLevels_,e)}),this.playlists.on("mediachange",function(){lf(e.qualityLevels_,e.playlists)}))},t.version=function(){return{"@videojs/http-streaming":"2.13.1","mux.js":"6.0.1","mpd-parser":"0.21.0","m3u8-parser":"4.7.0","aes-decrypter":"3.1.2"}},r.version=function(){return this.constructor.version()},r.canChangeType=function(){return ef.canChangeType()},r.play=function(){this.masterPlaylistController_.play()},r.setCurrentTime=function(e){this.masterPlaylistController_.setCurrentTime(e)},r.duration=function(){return this.masterPlaylistController_.duration()},r.seekable=function(){return this.masterPlaylistController_.seekable()},r.dispose=function(){this.playbackWatcher_&&this.playbackWatcher_.dispose(),this.masterPlaylistController_&&this.masterPlaylistController_.dispose(),this.qualityLevels_&&this.qualityLevels_.dispose(),this.player_&&(delete this.player_.vhs,delete this.player_.dash,delete this.player_.hls),this.tech_&&this.tech_.vhs&&delete this.tech_.vhs,this.tech_&&delete this.tech_.hls,this.mediaSourceUrl_&&window.URL.revokeObjectURL&&(window.URL.revokeObjectURL(this.mediaSourceUrl_),this.mediaSourceUrl_=null),this.tech_&&this.tech_.off("waitingforkey",this.handleWaitingForKey_),s.prototype.dispose.call(this)},r.convertToProgramTime=function(e,i){return Wv({playlist:this.masterPlaylistController_.media(),time:e,callback:i})},r.seekToProgramTime=function(e,i,n,o){return void 0===n&&(n=!0),void 0===o&&(o=2),Kv({programTime:e,playlist:this.masterPlaylistController_.media(),retryCount:o,pauseAfterSeek:n,seekTo:this.options_.seekTo,tech:this.options_.tech,callback:i})},t}(he.getComponent("Component")),Qn={name:"videojs-http-streaming",VERSION:"2.13.1",canHandleSource:function(t,r){void 0===r&&(r={});var a=he.mergeOptions(he.options,r);return Qn.canPlayType(t.type,a)},handleSource:function(t,r,a){void 0===a&&(a={});var e=he.mergeOptions(he.options,a);return r.vhs=new cu(t,r,e),he.hasOwnProperty("hls")||Object.defineProperty(r,"hls",{get:function(){return he.log.warn("player.tech().hls is deprecated. Use player.tech().vhs instead."),r.vhs},configurable:!0}),r.vhs.xhr=Tc(),r.vhs.src(t.src,t.type),r.vhs},canPlayType:function(t,r){void 0===r&&(r={});var a=he.mergeOptions(he.options,r),e=a.vhs,i=(e=void 0===e?{}:e).overrideNative,n=void 0===i?!he.browser.IS_ANY_SAFARI:i,o=a.hls,l=(o=void 0===o?{}:o).overrideNative,d=void 0!==l&&l,h=Xl(t);return h&&(!or.supportsTypeNatively(h)||d||n)?"maybe":""}};(Sn("avc1.4d400d,mp4a.40.2")&&he.getTech("Html5").registerSourceHandler(Qn,0),he.VhsHandler=cu,Object.defineProperty(he,"HlsHandler",{get:function(){return he.log.warn("videojs.HlsHandler is deprecated. Use videojs.VhsHandler instead."),cu},configurable:!0}),he.VhsSourceHandler=Qn,Object.defineProperty(he,"HlsSourceHandler",{get:function(){return he.log.warn("videojs.HlsSourceHandler is deprecated. Use videojs.VhsSourceHandler instead."),Qn},configurable:!0}),he.Vhs=or,Object.defineProperty(he,"Hls",{get:function(){return he.log.warn("videojs.Hls is deprecated. Use videojs.Vhs instead."),or},configurable:!0}),he.use||(he.registerComponent("Hls",or),he.registerComponent("Vhs",or)),he.options.vhs=he.options.vhs||{},he.options.hls=he.options.hls||{},he.getPlugin&&he.getPlugin("reloadSourceOnError"))||(he.registerPlugin||he.plugin)("reloadSourceOnError",function(t){xy(this,t)});return he}), +/*! videojs-markers - v0.5.0 - 2015-08-01 +* Copyright (c) 2015 ; Licensed */ +/*! videojs-markers !*/ +function(B,G,ge){var u={markerStyle:{width:"7px","border-radius":"30%","background-color":"red"},markerTip:{display:!0,text:function(c){return"Break: "+c.text},time:function(c){return c.time}},breakOverlay:{display:!1,displayTime:3,text:function(c){return"Break overlay: "+c.overlayText},style:{width:"100%",height:"20%","background-color":"rgba(0,0,0,0.7)",color:"white","font-size":"17px"}},onMarkerClick:function(c){},onMarkerReached:function(c){},markers:[]};G.plugin("markers",function H(c){var _=B.extend(!0,{},u,c),C={},D=[],K=B(this.el()),j=-1,R=this,w=null,M=null,E=-1;function O(){D.sort(function(U,W){return _.markerTip.time(U)-_.markerTip.time(W)})}function V(U){B.each(U,function(W,z){z.key=function L(){var c=(new Date).getTime();return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(C){var D=(c+16*Math.random())%16|0;return c=Math.floor(c/16),("x"==C?D:3&D|8).toString(16)})}(),K.find(".vjs-progress-control").append(function Z(U,W){var z=B("
");return z.css(_.markerStyle).css({"margin-left":-parseFloat(z.css("width"))/2+"px",left:$(U)+"%"}).attr("data-marker-key",U.key).attr("data-marker-time",_.markerTip.time(U)),U.class&&z.addClass(U.class),z.on("click",function(re){var ce=!1;if("function"==typeof _.onMarkerClick&&(ce=0==_.onMarkerClick(U)),!ce){var _e=B(this).data("marker-key");R.currentTime(_.markerTip.time(C[_e]))}}),_.markerTip.display&&function oe(U){U.on("mouseover",function(){var W=C[B(this).data("marker-key")];w.find(".vjs-tip-inner").text(_.markerTip.text(W)),w.css({left:$(W)+"%","margin-left":-parseFloat(w.css("width"))/2-5+"px",visibility:"visible"})}).on("mouseout",function(){w.css("visibility","hidden")})}(z),z}(z)),C[z.key]=z,D.push(z)}),O()}function $(U){return _.markerTip.time(U)/R.duration()*100}function ye(U){M&&(E=-1,M.css("visibility","hidden")),j=-1;for(var W=0;W=0;W--)null===D[W]&&D.splice(W,1);O()}function te(U){if(!(j<0)){var W=D[j],z=_.markerTip.time(W);U>=z&&U<=z+_.breakOverlay.displayTime?(E!=j&&(E=j,M.find(".vjs-break-overlay-text").text(_.breakOverlay.text(W))),M.css("visibility","visible")):(E=-1,M.css("visibility","hidden"))}}function ee(){var z,U=function(_e){return _e=_.markerTip.time(D[j])&&W0&&W<_.markerTip.time(D[0]))z=-1;else for(var ce=0;ce=_.markerTip.time(D[ce])&&W
"),K.find(".vjs-progress-control").append(w)}(),R.markers.removeAll(),V(c.markers),_.breakOverlay.display&&function N(){M=B("
").css(_.breakOverlay.style),K.append(M),E=-1}(),ee(),R.on("timeupdate",ee)}R.on("loadedmetadata",function(){le()}),R.markers={getMarkers:function(){return D},next:function(){for(var U=R.currentTime(),W=0;WU){R.currentTime(z);break}}},prev:function(){for(var U=R.currentTime(),W=D.length-1;W>=0;W--){var z=_.markerTip.time(D[W]);if(z+.5w&&this.selectedIndex_--;break}return R&&this.trigger({qualityLevel:j,type:"removequalitylevel"}),R},K.getQualityLevelById=function(j){for(var R=0,w=this.length;R +* @license MIT +*/ +function(B,G){"object"==typeof exports&&typeof module<"u"?module.exports=G(require("video.js")):"function"==typeof define&&define.amd?define(["video.js"],G):(B=B||self)["videojs-http-source-selector"]=G(B.videojs)}(this,function(B){"use strict";function G(j,R){j.prototype=Object.create(R.prototype),(j.prototype.constructor=j).__proto__=R}function ge(j){if(void 0===j)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return j}var u=(B=B&&B.hasOwnProperty("default")?B.default:B).getComponent("MenuItem"),L=B.getComponent("Component"),H=function(j){function R(M,E){return E.selectable=!0,E.multiSelectable=!1,j.call(this,M,E)||this}G(R,j);var w=R.prototype;return w.handleClick=function(){var M=this.options_;console.log("Changing quality to:",M.label),j.prototype.handleClick.call(this);for(var E=this.player().qualityLevels(),O=0;Ome.options_.sortVal?-1:0}),M},R}(c),C={},K=function(j){var R=this;this.ready(function(){var w;w=R,B.mergeOptions(C,j),w.addClass("vjs-http-source-selector"),console.log("videojs-http-source-selector initialized!"),console.log("player.techName_:"+w.techName_),"Html5"==w.techName_&&w.on(["loadedmetadata"],function(E){if(w.qualityLevels(),B.log("loadmetadata event"),"undefined"==w.videojs_http_source_selector_initialized||1==w.videojs_http_source_selector_initialized)console.log("player.videojs_http_source_selector_initialized == true");else{console.log("player.videojs_http_source_selector_initialized == false"),w.videojs_http_source_selector_initialized=!0;var O=w.controlBar,V=O.getChild("fullscreenToggle").el();O.el().insertBefore(O.addChild("SourceMenuButton").el(),V)}})}),B.registerComponent("SourceMenuButton",_),B.registerComponent("SourceMenuItem",H)};return(B.registerPlugin||B.plugin)("httpSourceSelector",K),K.VERSION="1.1.6",K}), +/*! videojs-transcript - v1.0.0 +* (c) 2015 Matthew Walsh, changes (c) 2020 Tom Byrer; Licensed MIT */ +function(B,G){"use strict";var ge={settings:{},prefix:"transcript"};ge.player=this;var R,E,j,u={autoscroll:!0,clickArea:"text",showTitle:!0,showTrackSelector:!0,followPlayerTrack:!0,stopScrollWhenInUse:!0},L=(j=ge,{secondsToTime:function(R){var w=Math.floor(R/3600),M=Math.floor(R%3600/60),E=Math.floor(R%60);return E=E<10?"0"+E:E,M=w>0&&M<10?"0"+M:M,w>0?w+":"+M+":"+E:M+":"+E},localize:function(R){return R},createEl:function(R,w){w=w||"";var M=document.createElement(R);return M.className=j.prefix+w,M},extend:function(R){var w=typeof R;if(!("function"===w||"object"===w&&R))return R;for(var M,E,O=1,V=arguments.length;Oue.scrollTop+ue.clientHeight&&(N=oe-ye),void 0!==N&&ue.scrollTop!==N&&E.call(this,ue,N,400)}},canScroll:function(){var Z=this.element;return Z.scrollHeight>Z.offsetHeight},inUse:function(){return this.userIsScrolling}}),C=function(j){var R;return{get:function(){var M,E,w=[];for(ge.tracks=ge.player.textTracks(),M=0;MU&&te0))throw new Error("videojs-transcript: No tracks found!");return w(),ge.player.on("timeupdate",function(){ge.widget.setCue(ge.player.currentTime())}),ge.settings.followPlayerTrack&&(ge.player.on("captionstrackchange",w),ge.player.on("subtitlestrackchange",w)),{el:function(){return ge.widget.el()},setTrack:ge.widget.setTrack}})}(window,videojs); +//# sourceMappingURL=scripts.js.map +(self.webpackChunkvideo_player_wc=self.webpackChunkvideo_player_wc||[]).push([["vendor"],{4635:vt=>{ +/*! For license information please see index.js.LICENSE.txt */ +window,vt.exports=function(_e){var w={};function t(C){if(w[C])return w[C].exports;var F=w[C]={i:C,l:!1,exports:{}};return _e[C].call(F.exports,F,F.exports,t),F.l=!0,F.exports}return t.m=_e,t.c=w,t.d=function(C,F,U){t.o(C,F)||Object.defineProperty(C,F,{enumerable:!0,get:U})},t.r=function(C){typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(C,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(C,"__esModule",{value:!0})},t.t=function(C,F){if(1&F&&(C=t(C)),8&F||4&F&&"object"==typeof C&&C&&C.__esModule)return C;var U=Object.create(null);if(t.r(U),Object.defineProperty(U,"default",{enumerable:!0,value:C}),2&F&&"string"!=typeof C)for(var N in C)t.d(U,N,function(G){return C[G]}.bind(null,N));return U},t.n=function(C){var F=C&&C.__esModule?function(){return C.default}:function(){return C};return t.d(F,"a",F),F},t.o=function(C,F){return Object.prototype.hasOwnProperty.call(C,F)},t.p="",t(t.s=237)}({100:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(6),F=t(14),U=t(19);function N(){return function(G,K,$){var le=new F.Metadata(C.UNMANAGED_TAG,!0);U.tagParameter(G,K,$,le)}}w.unmanaged=N},101:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(6),F=t(14),U=t(19);function N(G){return function(K,$,le){var R=new F.Metadata(C.MULTI_INJECT_TAG,G);"number"==typeof le?U.tagParameter(K,$,le,R):U.tagProperty(K,$,R)}}w.multiInject=N},102:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(6),F=t(14),U=t(19);function N(G){return function(K,$,le){var R=new F.Metadata(C.NAME_TAG,G);U.tagParameter(K,$,le,R)}}w.targetName=N},103:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(11),F=t(6),U=t(14);function N(){return function(G,K,$){var le=new U.Metadata(F.POST_CONSTRUCT,K);if(Reflect.hasOwnMetadata(F.POST_CONSTRUCT,G.constructor))throw new Error(C.MULTIPLE_POST_CONSTRUCT_METHODS);Reflect.defineMetadata(F.POST_CONSTRUCT,le,G.constructor)}}w.postConstruct=N},104:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0}),w.multiBindToService=function(C){return function(F){return function(){for(var U=[],N=0;N= than the number of constructor arguments of its base class."},w.CONTAINER_OPTIONS_MUST_BE_AN_OBJECT="Invalid Container constructor argument. Container options must be an object.",w.CONTAINER_OPTIONS_INVALID_DEFAULT_SCOPE="Invalid Container option. Default scope must be a string ('singleton' or 'transient').",w.CONTAINER_OPTIONS_INVALID_AUTO_BIND_INJECTABLE="Invalid Container option. Auto bind injectable must be a boolean",w.CONTAINER_OPTIONS_INVALID_SKIP_BASE_CHECK="Invalid Container option. Skip base check must be a boolean",w.MULTIPLE_POST_CONSTRUCT_METHODS="Cannot apply @postConstruct decorator multiple times in the same class",w.POST_CONSTRUCT_ERROR=function(){for(var C=[],F=0;F=0;st--)(Qe=Ie[st])&&(Te=(Ce<3?Qe(Te):Ce>3?Qe(He,T,Te):Qe(He,T))||Te);return Ce>3&&Te&&Object.defineProperty(He,T,Te),Te},K=function(){function Ie(){this._isInitialsed=!1}return Ie.prototype.raiseEndTelemetryWith=function(He,T,Z,Ce){throw new Error("Method not implemented.")},Ie.prototype.initTelemetry=function(He){window.EkTelemetry&&(this.telemetryProvider=window.EkTelemetry,this._isInitialsed=!0,this.context=He,this.telemetryProvider.initialize(He.config))},Ie.prototype.initTelmetry=function(He,T,Z,Ce,Te){null!=this.context&&this.telemetryProvider?this.telemetryProvider.initialize(this.context.config):(this.config.pdata=He,this.config.channel=Z,this.config.did=Te,this.config.sid=Ce,this.actor=T)},Ie.prototype.setTelemetryAttributes=function(He,T,Z,Ce,Te){this.config.pdata=He,this.config.channel=Z,this.config.did=Te,this.config.sid=Ce,this.actor=T},Ie.prototype.formulateBasicConfigForTelemetry=function(){},Ie.prototype.initProducerData=function(He){if(this.pData)return this.pData;this.config.pdata=He},Ie.prototype.isTelemetryInitialised=function(){return this._isInitialsed},Ie.prototype.raiseInteractTelemetry=function(He){this.isTelemetryInitialised()&&this.telemetryProvider.interact(He.edata,He.options)},Ie.prototype.raiseInteractTelemetryWith=function(He,T,Z,Ce){},Ie.prototype.raiseImpressionTelemetry=function(He){this.isTelemetryInitialised()&&this.telemetryProvider.impression(He.edata,He.options)},Ie.prototype.raiseImpressionTelemetryWith=function(He,T,Z,Ce){},Ie.prototype.raiseLogTelemetry=function(He){this.isTelemetryInitialised()&&this.telemetryProvider.log(He.edata,He.options)},Ie.prototype.raiseLogTelemetryWith=function(He,T,Z,Ce){},Ie.prototype.raiseErrorTelemetry=function(He){this.isTelemetryInitialised()&&this.telemetryProvider.error(He.edata,He.options)},Ie.prototype.raiseErrorTelemetryWith=function(He,T,Z,Ce){},Ie.prototype.raiseAuditTelemetry=function(He){this.isTelemetryInitialised()&&this.telemetryProvider.audit(He.edata,He.options)},Ie.prototype.raiseAuditTelemetryWith=function(He,T,Z,Ce){},Ie.prototype.raiseStartTelemetry=function(He){this.isTelemetryInitialised()&&this.telemetryProvider.start(this.context.config,He.options.object.id,He.options.object.ver,He.edata,He.options)},Ie.prototype.raiseEndTelemetry=function(He){this.isTelemetryInitialised()&&this.telemetryProvider.end(He.edata,He.options)},Ie.prototype.raiseShareTelemetry=function(He){this.isTelemetryInitialised()&&this.telemetryProvider.share(He.edata,He.options)},Ie.prototype.raiseShareTelemetryWith=function(He,T,Z,Ce){},Ie.prototype.raiseFeedBackTelemetry=function(He){this.isTelemetryInitialised()&&this.telemetryProvider.share(He.edata,He.options)},Ie.prototype.raiseFeedBackTelemetryWith=function(He,T,Z,Ce){},Ie.prototype.raiseAssesTelemetry=function(He,T){this.isTelemetryInitialised()&&this.telemetryProvider.assess(He,T)},Ie.prototype.raiseResponseTelemetry=function(He,T){this.isTelemetryInitialised()&&this.telemetryProvider.response(He,T)},Ie.prototype.raiseSummaryTelemetry=function(He,T){this.isTelemetryInitialised()&&this.telemetryProvider.summary(He,T)},G([Object(N.injectable)()],Ie)}(),$={CONTAINER:Symbol.for("CONTAINER"),services:{telemetry:{TELEMETRY_SERVICE:Symbol.for("TELEMETRY_SERVICE"),PLAYER_TELEMETRY_SERVICE:Symbol.for("PLAYER_TELEMETRY_SERVICE")}}},le=function(Ie,He,T,Z){var Qe,Ce=arguments.length,Te=Ce<3?He:null===Z?Z=Object.getOwnPropertyDescriptor(He,T):Z;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)Te=Reflect.decorate(Ie,He,T,Z);else for(var st=Ie.length-1;st>=0;st--)(Qe=Ie[st])&&(Te=(Ce<3?Qe(Te):Ce>3?Qe(He,T,Te):Qe(He,T))||Te);return Ce>3&&Te&&Object.defineProperty(He,T,Te),Te},R=function(Ie,He){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(Ie,He)},ae=function(){function Ie(He){this.telemetryService=He}return Ie.prototype.onStartEvent=function(He,T){},Ie.prototype.onEndEvent=function(He,T){},Ie.prototype.onErrorEvent=function(He,T){},Ie.prototype.onHeartBeatEvent=function(He,T){"LOADED"===He.type||"PLAY"===He.type||this.telemetryService.raiseLogTelemetry({})},le([Object(N.injectable)(),R("design:paramtypes",[U])],Ie)}(),be=(Be=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(Ie,He){Ie.__proto__=He}||function(Ie,He){for(var T in He)He.hasOwnProperty(T)&&(Ie[T]=He[T])},function(Ie,He){function T(){this.constructor=Ie}Be(Ie,He),Ie.prototype=null===He?Object.create(He):(T.prototype=He.prototype,new T)}),Ne=function(Ie,He,T,Z){var Qe,Ce=arguments.length,Te=Ce<3?He:null===Z?Z=Object.getOwnPropertyDescriptor(He,T):Z;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)Te=Reflect.decorate(Ie,He,T,Z);else for(var st=Ie.length-1;st>=0;st--)(Qe=Ie[st])&&(Te=(Ce<3?Qe(Te):Ce>3?Qe(He,T,Te):Qe(He,T))||Te);return Ce>3&&Te&&Object.defineProperty(He,T,Te),Te},ke=function(Ie,He){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(Ie,He)},Re=function(Ie,He){return function(T,Z){He(T,Z,Ie)}},fe=function(Ie){function He(T){return Ie.call(this,T)||this}return be(He,Ie),He.prototype.onHeartBeatEvent=function(T,Z){},Ne([Object(N.injectable)(),Re(0,Object(N.inject)($.services.telemetry.TELEMETRY_SERVICE)),ke("design:paramtypes",[U])],He)}(ae),de=function(Ie,He,T,Z){return new(T||(T=Promise))(function(Ce,Te){function Qe(Tt){try{bt(Z.next(Tt))}catch(wt){Te(wt)}}function st(Tt){try{bt(Z.throw(Tt))}catch(wt){Te(wt)}}function bt(Tt){Tt.done?Ce(Tt.value):new T(function(wt){wt(Tt.value)}).then(Qe,st)}bt((Z=Z.apply(Ie,He||[])).next())})},pe=function(Ie,He){var Z,Ce,Te,Qe,T={label:0,sent:function(){if(1&Te[0])throw Te[1];return Te[1]},trys:[],ops:[]};return Qe={next:st(0),throw:st(1),return:st(2)},"function"==typeof Symbol&&(Qe[Symbol.iterator]=function(){return this}),Qe;function st(Tt){return function(wt){return bt([Tt,wt])}}function bt(Tt){if(Z)throw new TypeError("Generator is already executing.");for(;T;)try{if(Z=1,Ce&&(Te=Ce[2&Tt[0]?"return":Tt[0]?"throw":"next"])&&!(Te=Te.call(Ce,Tt[1])).done)return Te;switch(Ce=0,Te&&(Tt=[0,Te.value]),Tt[0]){case 0:case 1:Te=Tt;break;case 4:return T.label++,{value:Tt[1],done:!1};case 5:T.label++,Ce=Tt[1],Tt=[0];continue;case 7:Tt=T.ops.pop(),T.trys.pop();continue;default:if(!((Te=(Te=T.trys).length>0&&Te[Te.length-1])||6!==Tt[0]&&2!==Tt[0])){T=0;continue}if(3===Tt[0]&&(!Te||Tt[1]>Te[0]&&Tt[1]1)for(var de=1;de0)return!0;var ut=Pe.get(q);return ut.delete(re),ut.size>0||Pe.delete(q),!0}function st(we,q){for(var re=we.length-1;re>=0;--re){var ut=(0,we[re])(q);if(!Rt(ut)&&!_n(ut)){if(!Ge(ut))throw new TypeError;q=ut}}return q}function bt(we,q,re,je){for(var ut=we.length-1;ut>=0;--ut){var Yt=(0,we[ut])(q,re,je);if(!Rt(Yt)&&!_n(Yt)){if(!ie(Yt))throw new TypeError;je=Yt}}return je}function Tt(we,q,re){var je=Pe.get(we);if(Rt(je)){if(!re)return;je=new fe,Pe.set(we,je)}var ut=je.get(q);if(Rt(ut)){if(!re)return;ut=new fe,je.set(q,ut)}return ut}function wt(we,q,re){if(Dt(we,q,re))return!0;var ut=ct(q);return!_n(ut)&&wt(we,ut,re)}function Dt(we,q,re){var je=Tt(q,re,!1);return!Rt(je)&<(je.has(we))}function Mt(we,q,re){if(Dt(we,q,re))return St(we,q,re);var ut=ct(q);return _n(ut)?void 0:Mt(we,ut,re)}function St(we,q,re){var je=Tt(q,re,!1);if(!Rt(je))return je.get(we)}function Gt(we,q,re,je){Tt(re,je,!0).set(we,q)}function on(we,q){var re=Bt(we,q),je=ct(we);if(null===je)return re;var ut=on(je,q);if(ut.length<=0)return re;if(re.length<=0)return ut;for(var nn=new de,Yt=[],an=0,zt=re;an=0&&an=this._keys.length?(this._index=-1,this._keys=q,this._values=q):this._index++,{value:zt,done:!1}}return{value:void 0,done:!0}},Yt.prototype.throw=function(an){throw this._index>=0&&(this._index=-1,this._keys=q,this._values=q),an},Yt.prototype.return=function(an){return this._index>=0&&(this._index=-1,this._keys=q,this._values=q),{value:an,done:!0}},Yt}();return function(){function Yt(){this._keys=[],this._values=[],this._cacheKey=we,this._cacheIndex=-2}return Object.defineProperty(Yt.prototype,"size",{get:function(){return this._keys.length},enumerable:!0,configurable:!0}),Yt.prototype.has=function(an){return this._find(an,!1)>=0},Yt.prototype.get=function(an){var zt=this._find(an,!1);return zt>=0?this._values[zt]:void 0},Yt.prototype.set=function(an,zt){var Pn=this._find(an,!0);return this._values[Pn]=zt,this},Yt.prototype.delete=function(an){var zt=this._find(an,!1);if(zt>=0){for(var Pn=this._keys.length,Dn=zt+1;Dn0&&$e[$e.length-1])||6!==T[0]&&2!==T[0])){pe=0;continue}if(3===T[0]&&(!$e||T[1]>$e[0]&&T[1]<$e[3])){pe.label=T[1];break}if(6===T[0]&&pe.label<$e[1]){pe.label=$e[1],$e=T;break}if($e&&pe.label<$e[2]){pe.label=$e[2],pe.ops.push(T);break}$e[2]&&pe.ops.pop(),pe.trys.pop();continue}T=de.call(fe,pe)}catch(Z){T=[6,Z],et=0}finally{Pe=$e=0}if(5&T[0])throw T[1];return{value:T[0]?T[1]:void 0,done:!0}}};Object.defineProperty(w,"__esModule",{value:!0});var U=t(80),N=t(11),G=t(18),K=t(6),$=t(57),le=t(81),R=t(88),ae=t(90),be=t(24),Be=t(30),Ne=t(93),ke=t(94),Re=function(){function fe(de){var pe=de||{};if("object"!=typeof pe)throw new Error(""+N.CONTAINER_OPTIONS_MUST_BE_AN_OBJECT);if(void 0===pe.defaultScope)pe.defaultScope=G.BindingScopeEnum.Transient;else if(pe.defaultScope!==G.BindingScopeEnum.Singleton&&pe.defaultScope!==G.BindingScopeEnum.Transient&&pe.defaultScope!==G.BindingScopeEnum.Request)throw new Error(""+N.CONTAINER_OPTIONS_INVALID_DEFAULT_SCOPE);if(void 0===pe.autoBindInjectable)pe.autoBindInjectable=!1;else if("boolean"!=typeof pe.autoBindInjectable)throw new Error(""+N.CONTAINER_OPTIONS_INVALID_AUTO_BIND_INJECTABLE);if(void 0===pe.skipBaseClassChecks)pe.skipBaseClassChecks=!1;else if("boolean"!=typeof pe.skipBaseClassChecks)throw new Error(""+N.CONTAINER_OPTIONS_INVALID_SKIP_BASE_CHECK);this.options={autoBindInjectable:pe.autoBindInjectable,defaultScope:pe.defaultScope,skipBaseClassChecks:pe.skipBaseClassChecks},this.id=be.id(),this._bindingDictionary=new ke.Lookup,this._snapshots=[],this._middleware=null,this.parent=null,this._metadataReader=new $.MetadataReader}return fe.merge=function(de,pe){var Pe=new fe,et=le.getBindingDictionary(Pe),$e=le.getBindingDictionary(de),We=le.getBindingDictionary(pe);function Ie(He,T){He.traverse(function(Z,Ce){Ce.forEach(function(Te){T.add(Te.serviceIdentifier,Te.clone())})})}return Ie($e,et),Ie(We,et),Pe},fe.prototype.load=function(){for(var de=[],pe=0;pe0?We.length:fe.length),Z=be(ke,fe);return T.concat(Z)}function R(ke,Re,fe,de,pe){var Pe=pe[ke.toString()]||[],et=Ne(Pe),$e=!0!==et.unmanaged,We=de[ke];if((We=et.inject||et.multiInject||We)instanceof C.LazyServiceIdentifer&&(We=We.unwrap()),$e){if(!Re&&(We===Object||We===Function||void 0===We)){var Te=F.MISSING_INJECT_ANNOTATION+" argument "+ke+" in class "+fe+".";throw new Error(Te)}var Qe=new K.Target(U.TargetTypeEnum.ConstructorArgument,et.targetName,We);return Qe.metadata=Pe,Qe}return null}function ae(ke,Re,fe,de,pe){for(var Pe=[],et=0;et0?$e:Be(ke,fe)}return 0}function Ne(ke){var Re={};return ke.forEach(function(fe){Re[fe.key.toString()]=fe.value}),{inject:Re[N.INJECT_TAG],multiInject:Re[N.MULTI_INJECT_TAG],targetName:Re[N.NAME_TAG],unmanaged:Re[N.UNMANAGED_TAG]}}w.getDependencies=$,w.getBaseClassDependencyCount=Be},86:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=function(){function F(U){this.str=U}return F.prototype.startsWith=function(U){return 0===this.str.indexOf(U)},F.prototype.endsWith=function(U){var N="",G=U.split("").reverse().join("");return N=this.str.split("").reverse().join(""),this.startsWith.call({str:N},G)},F.prototype.contains=function(U){return-1!==this.str.indexOf(U)},F.prototype.equals=function(U){return this.str===U},F.prototype.value=function(){return this.str},F}();w.QueryableString=C},87:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(24),F=function(){function U(N,G,K,$,le){this.id=C.id(),this.serviceIdentifier=N,this.parentContext=G,this.parentRequest=K,this.target=le,this.childRequests=[],this.bindings=Array.isArray($)?$:[$],this.requestScope=null===K?new Map:null}return U.prototype.addChildRequest=function(N,G,K){var $=new U(N,this.parentContext,this,G,K);return this.childRequests.push($),$},U}();w.Request=F},88:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(11),F=t(18),U=t(58),N=t(30),G=t(89),K=function(R,ae,be){try{return be()}catch(Be){throw U.isStackOverflowExeption(Be)?new Error(C.CIRCULAR_DEPENDENCY_IN_FACTORY(R,ae.toString())):Be}},$=function(R){return function(ae){ae.parentContext.setCurrentRequest(ae);var be=ae.bindings,Be=ae.childRequests,Ne=ae.target&&ae.target.isArray(),ke=!(ae.parentRequest&&ae.parentRequest.target&&ae.target&&ae.parentRequest.target.matchesArray(ae.target.serviceIdentifier));if(Ne&&ke)return Be.map(function(et){return $(R)(et)});var Re=null;if(!ae.target.isOptional()||0!==be.length){var fe=be[0],de=fe.scope===F.BindingScopeEnum.Singleton,pe=fe.scope===F.BindingScopeEnum.Request;if(de&&fe.activated)return fe.cache;if(pe&&null!==R&&R.has(fe.id))return R.get(fe.id);if(fe.type===F.BindingTypeEnum.ConstantValue)Re=fe.cache;else if(fe.type===F.BindingTypeEnum.Function)Re=fe.cache;else if(fe.type===F.BindingTypeEnum.Constructor)Re=fe.implementationType;else if(fe.type===F.BindingTypeEnum.DynamicValue&&null!==fe.dynamicValue)Re=K("toDynamicValue",fe.serviceIdentifier,function(){return fe.dynamicValue(ae.parentContext)});else if(fe.type===F.BindingTypeEnum.Factory&&null!==fe.factory)Re=K("toFactory",fe.serviceIdentifier,function(){return fe.factory(ae.parentContext)});else if(fe.type===F.BindingTypeEnum.Provider&&null!==fe.provider)Re=K("toProvider",fe.serviceIdentifier,function(){return fe.provider(ae.parentContext)});else{if(fe.type!==F.BindingTypeEnum.Instance||null===fe.implementationType){var Pe=N.getServiceIdentifierAsString(ae.serviceIdentifier);throw new Error(C.INVALID_BINDING_TYPE+" "+Pe)}Re=G.resolveInstance(fe.implementationType,Be,$(R))}return"function"==typeof fe.onActivation&&(Re=fe.onActivation(ae.parentContext,Re)),de&&(fe.cache=Re,fe.activated=!0),pe&&null!==R&&!R.has(fe.id)&&R.set(fe.id,Re),Re}}};function le(R){return $(R.plan.rootRequest.requestScope)(R.plan.rootRequest)}w.resolve=le},89:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(11),F=t(18),U=t(6);function N(le,R,ae){var be=R.filter(function(Ne){return null!==Ne.target&&Ne.target.type===F.TargetTypeEnum.ClassProperty}),Be=be.map(ae);return be.forEach(function(Ne,ke){var Re="";Re=Ne.target.name.value();var fe=Be[ke];le[Re]=fe}),le}function G(le,R){return new(le.bind.apply(le,[void 0].concat(R)))}function K(le,R){if(Reflect.hasMetadata(U.POST_CONSTRUCT,le)){var ae=Reflect.getMetadata(U.POST_CONSTRUCT,le);try{R[ae.value]()}catch(be){throw new Error(C.POST_CONSTRUCT_ERROR(le.name,be.message))}}}function $(le,R,ae){var be=null;return be=R.length>0?N(be=G(le,R.filter(function(ke){return null!==ke.target&&ke.target.type===F.TargetTypeEnum.ConstructorArgument}).map(ae)),R,ae):new le,K(le,be),be}w.resolveInstance=$},90:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(11),F=t(18),U=t(91),N=t(61),G=function(){function K($){this._binding=$}return K.prototype.to=function($){return this._binding.type=F.BindingTypeEnum.Instance,this._binding.implementationType=$,new U.BindingInWhenOnSyntax(this._binding)},K.prototype.toSelf=function(){if("function"!=typeof this._binding.serviceIdentifier)throw new Error(""+C.INVALID_TO_SELF_VALUE);var $=this._binding.serviceIdentifier;return this.to($)},K.prototype.toConstantValue=function($){return this._binding.type=F.BindingTypeEnum.ConstantValue,this._binding.cache=$,this._binding.dynamicValue=null,this._binding.implementationType=null,new N.BindingWhenOnSyntax(this._binding)},K.prototype.toDynamicValue=function($){return this._binding.type=F.BindingTypeEnum.DynamicValue,this._binding.cache=null,this._binding.dynamicValue=$,this._binding.implementationType=null,new U.BindingInWhenOnSyntax(this._binding)},K.prototype.toConstructor=function($){return this._binding.type=F.BindingTypeEnum.Constructor,this._binding.implementationType=$,new N.BindingWhenOnSyntax(this._binding)},K.prototype.toFactory=function($){return this._binding.type=F.BindingTypeEnum.Factory,this._binding.factory=$,new N.BindingWhenOnSyntax(this._binding)},K.prototype.toFunction=function($){if("function"!=typeof $)throw new Error(C.INVALID_FUNCTION_BINDING);var le=this.toConstantValue($);return this._binding.type=F.BindingTypeEnum.Function,le},K.prototype.toAutoFactory=function($){return this._binding.type=F.BindingTypeEnum.Factory,this._binding.factory=function(le){return function(){return le.container.get($)}},new N.BindingWhenOnSyntax(this._binding)},K.prototype.toProvider=function($){return this._binding.type=F.BindingTypeEnum.Provider,this._binding.provider=$,new N.BindingWhenOnSyntax(this._binding)},K.prototype.toService=function($){this.toDynamicValue(function(le){return le.container.get($)})},K}();w.BindingToSyntax=G},91:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(92),F=t(44),U=t(45),N=function(){function G(K){this._binding=K,this._bindingWhenSyntax=new U.BindingWhenSyntax(this._binding),this._bindingOnSyntax=new F.BindingOnSyntax(this._binding),this._bindingInSyntax=new C.BindingInSyntax(K)}return G.prototype.inRequestScope=function(){return this._bindingInSyntax.inRequestScope()},G.prototype.inSingletonScope=function(){return this._bindingInSyntax.inSingletonScope()},G.prototype.inTransientScope=function(){return this._bindingInSyntax.inTransientScope()},G.prototype.when=function(K){return this._bindingWhenSyntax.when(K)},G.prototype.whenTargetNamed=function(K){return this._bindingWhenSyntax.whenTargetNamed(K)},G.prototype.whenTargetIsDefault=function(){return this._bindingWhenSyntax.whenTargetIsDefault()},G.prototype.whenTargetTagged=function(K,$){return this._bindingWhenSyntax.whenTargetTagged(K,$)},G.prototype.whenInjectedInto=function(K){return this._bindingWhenSyntax.whenInjectedInto(K)},G.prototype.whenParentNamed=function(K){return this._bindingWhenSyntax.whenParentNamed(K)},G.prototype.whenParentTagged=function(K,$){return this._bindingWhenSyntax.whenParentTagged(K,$)},G.prototype.whenAnyAncestorIs=function(K){return this._bindingWhenSyntax.whenAnyAncestorIs(K)},G.prototype.whenNoAncestorIs=function(K){return this._bindingWhenSyntax.whenNoAncestorIs(K)},G.prototype.whenAnyAncestorNamed=function(K){return this._bindingWhenSyntax.whenAnyAncestorNamed(K)},G.prototype.whenAnyAncestorTagged=function(K,$){return this._bindingWhenSyntax.whenAnyAncestorTagged(K,$)},G.prototype.whenNoAncestorNamed=function(K){return this._bindingWhenSyntax.whenNoAncestorNamed(K)},G.prototype.whenNoAncestorTagged=function(K,$){return this._bindingWhenSyntax.whenNoAncestorTagged(K,$)},G.prototype.whenAnyAncestorMatches=function(K){return this._bindingWhenSyntax.whenAnyAncestorMatches(K)},G.prototype.whenNoAncestorMatches=function(K){return this._bindingWhenSyntax.whenNoAncestorMatches(K)},G.prototype.onActivation=function(K){return this._bindingOnSyntax.onActivation(K)},G}();w.BindingInWhenOnSyntax=N},92:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(18),F=t(61),U=function(){function N(G){this._binding=G}return N.prototype.inRequestScope=function(){return this._binding.scope=C.BindingScopeEnum.Request,new F.BindingWhenOnSyntax(this._binding)},N.prototype.inSingletonScope=function(){return this._binding.scope=C.BindingScopeEnum.Singleton,new F.BindingWhenOnSyntax(this._binding)},N.prototype.inTransientScope=function(){return this._binding.scope=C.BindingScopeEnum.Transient,new F.BindingWhenOnSyntax(this._binding)},N}();w.BindingInSyntax=U},93:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=function(){function F(){}return F.of=function(U,N){var G=new F;return G.bindings=U,G.middleware=N,G},F}();w.ContainerSnapshot=C},94:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(11),F=function(){function U(){this._map=new Map}return U.prototype.getMap=function(){return this._map},U.prototype.add=function(N,G){if(null==N)throw new Error(C.NULL_ARGUMENT);if(null==G)throw new Error(C.NULL_ARGUMENT);var K=this._map.get(N);void 0!==K?(K.push(G),this._map.set(N,K)):this._map.set(N,[G])},U.prototype.get=function(N){if(null==N)throw new Error(C.NULL_ARGUMENT);var G=this._map.get(N);if(void 0!==G)return G;throw new Error(C.KEY_NOT_FOUND)},U.prototype.remove=function(N){if(null==N)throw new Error(C.NULL_ARGUMENT);if(!this._map.delete(N))throw new Error(C.KEY_NOT_FOUND)},U.prototype.removeByCondition=function(N){var G=this;this._map.forEach(function(K,$){var le=K.filter(function(R){return!N(R)});le.length>0?G._map.set($,le):G._map.delete($)})},U.prototype.hasKey=function(N){if(null==N)throw new Error(C.NULL_ARGUMENT);return this._map.has(N)},U.prototype.clone=function(){var N=new U;return this._map.forEach(function(G,K){G.forEach(function($){return N.add(K,$.clone())})}),N},U.prototype.traverse=function(N){this._map.forEach(function(G,K){N(K,G)})},U}();w.Lookup=F},95:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(24),F=function(){function N(G){this.id=C.id(),this.registry=G}return N}();w.ContainerModule=F;var U=function(){function N(G){this.id=C.id(),this.registry=G}return N}();w.AsyncContainerModule=U},96:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(11),F=t(6);function U(){return function(N){if(Reflect.hasOwnMetadata(F.PARAM_TYPES,N))throw new Error(C.DUPLICATED_INJECTABLE_DECORATOR);var G=Reflect.getMetadata(F.DESIGN_PARAM_TYPES,N)||[];return Reflect.defineMetadata(F.PARAM_TYPES,G,N),N}}w.injectable=U},97:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(14),F=t(19);function U(N,G){return function(K,$,le){var R=new C.Metadata(N,G);"number"==typeof le?F.tagParameter(K,$,le,R):F.tagProperty(K,$,R)}}w.tagged=U},98:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(6),F=t(14),U=t(19);function N(G){return function(K,$,le){var R=new F.Metadata(C.NAMED_TAG,G);"number"==typeof le?U.tagParameter(K,$,le,R):U.tagProperty(K,$,R)}}w.named=N},99:function(_e,w,t){"use strict";Object.defineProperty(w,"__esModule",{value:!0});var C=t(6),F=t(14),U=t(19);function N(){return function(G,K,$){var le=new F.Metadata(C.OPTIONAL_TAG,!0);"number"==typeof $?U.tagParameter(G,K,$,le):U.tagProperty(G,K,le)}}w.optional=N}})},6863:(vt,_e,w)=>{"use strict";w.d(_e,{N3:()=>Z,T_:()=>Ce,Z2:()=>st,bf:()=>bt,gQ:()=>Qt,uY:()=>T,u_:()=>Tt,vM:()=>on,ye:()=>Qe});var t=w(8008),C=w(4666),F=w(2508),U=w(6855),N=w(6312);const G=function(yt){return{showDownload:yt}};function K(yt,Xe){if(1&yt&&(t.O4$(),t.TgZ(0,"text",229)(1,"tspan",230),t._uU(2),t.qZA(),t.TgZ(3,"tspan",231),t._uU(4),t.qZA()()),2&yt){const lt=t.oxw();t.xp6(2),t.Oqu(lt.outcomeLabel),t.xp6(2),t.Oqu(lt.outcome)}}function $(yt,Xe){if(1&yt&&(t.O4$(),t.TgZ(0,"g",232)(1,"g",233),t._UZ(2,"polygon",234)(3,"path",235),t.qZA(),t.TgZ(4,"text",236)(5,"tspan",237),t._uU(6),t.qZA()()()),2&yt){const lt=t.oxw();t.xp6(6),t.Oqu(lt.timeSpentLabel)}}function le(yt,Xe){1&yt&&(t.O4$(),t.TgZ(0,"svg",238)(1,"defs")(2,"linearGradient",239),t._UZ(3,"stop",240)(4,"stop",241),t.qZA()(),t.TgZ(5,"g",242),t._UZ(6,"path",243)(7,"path",244),t.qZA()())}function R(yt,Xe){1&yt&&(t.O4$(),t.TgZ(0,"svg",238)(1,"defs")(2,"linearGradient",239),t._UZ(3,"stop",240)(4,"stop",241),t.qZA()(),t.TgZ(5,"g",242),t._UZ(6,"path",243)(7,"path",245),t.qZA()())}function ae(yt,Xe){if(1&yt){const lt=t.EpF();t.TgZ(0,"div",246),t.NdJ("click",function(){t.CHM(lt);const at=t.oxw();return t.KtG(at.exitContent.emit({type:"EXIT"}))}),t.O4$(),t.TgZ(1,"svg",247)(2,"defs")(3,"linearGradient",248),t._UZ(4,"stop",240)(5,"stop",241),t.qZA()(),t.TgZ(6,"g",242),t._UZ(7,"path",249)(8,"path",250),t.qZA()(),t.kcU(),t.TgZ(9,"div",226),t._uU(10,"Exit"),t.qZA()()}}function be(yt,Xe){if(1&yt){const lt=t.EpF();t.ynx(0),t.TgZ(1,"div",251),t._uU(2,"Up Next"),t.qZA(),t.TgZ(3,"div",252),t.NdJ("click",function(){t.CHM(lt);const at=t.oxw();return t.KtG(at.playNext())}),t.TgZ(4,"div",253),t._uU(5),t.qZA(),t.TgZ(6,"div",254),t._UZ(7,"img",255),t.qZA()(),t.BQk()}if(2&yt){const lt=t.oxw();t.xp6(5),t.Oqu(lt.nextContent.name)}}function Ne(yt,Xe){if(1&yt){const lt=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(at){t.CHM(lt);const fn=t.oxw();return t.KtG(fn.emitSideBarEvent(at,"SHARE"))})("keydown.enter",function(at){t.CHM(lt);const fn=t.oxw();return t.KtG(fn.emitSideBarEvent(at,"SHARE"))}),t._UZ(1,"span",9),t._uU(2," Share"),t.qZA()}}function ke(yt,Xe){if(1&yt){const lt=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(at){t.CHM(lt);const fn=t.oxw();return t.KtG(fn.showDownloadPopup(at,"DOWNLOAD_MENU"))})("keydown.enter",function(at){t.CHM(lt);const fn=t.oxw();return fn.closeNav(at),t.KtG(fn.showDownloadPopup(at,"DOWNLOAD_MENU"))}),t._UZ(1,"span",10),t._uU(2," Download"),t.qZA()}}function Re(yt,Xe){if(1&yt){const lt=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(at){t.CHM(lt);const fn=t.oxw();return fn.closeNav(at),t.KtG(fn.emitSideBarEvent(at,"PRINT"))})("keydown.enter",function(at){t.CHM(lt);const fn=t.oxw();return t.KtG(fn.emitSideBarEvent(at,"PRINT"))}),t._UZ(1,"span",11),t._uU(2," Print"),t.qZA()}}function fe(yt,Xe){if(1&yt){const lt=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(at){t.CHM(lt);const fn=t.oxw();return fn.closeNav(at),t.KtG(fn.emitSideBarEvent(at,"EXIT"))})("keydown.enter",function(at){t.CHM(lt);const fn=t.oxw();return fn.closeNav(at),t.KtG(fn.emitSideBarEvent(at,"EXIT"))}),t._UZ(1,"span",12),t._uU(2," Exit"),t.qZA()}}function de(yt,Xe){if(1&yt){const lt=t.EpF();t.TgZ(0,"sb-player-download-popup",13),t.NdJ("hideDownloadPopUp",function(at){t.CHM(lt);const fn=t.oxw();return t.KtG(fn.hideDownloadPopUp(at))})("downloadEvent",function(at){t.CHM(lt);const fn=t.oxw();return t.KtG(fn.sidebarEvent.emit(at))}),t.qZA()}if(2&yt){const lt=t.oxw();t.Q6J("title",lt.title)("showDownloadPopUp",lt.showDownloadPopUp)}}const pe=function(yt){return{"animated animateBg":yt}};function Pe(yt,Xe){1&yt&&(t.TgZ(0,"div",1),t._uU(1," You are offline\n"),t.qZA())}const et=':root{--sdk-navigation-arrows-bg:#fff;--sdk-navigation-arrows-border:#F2F2F2;--sdk-navigation-arrows-after:#999999;--sdk-player-nextIcon:#fff}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]{height:2rem;width:4rem;cursor:pointer;border-radius:1rem;background-color:var(--sdk-navigation-arrows-bg);box-shadow:var(--sbt-box-shadow-3px);border:1px solid var(--sdk-navigation-arrows-border);-webkit-transition:.1s ease-in;transition:.1s ease-in}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]:hover{border:1px solid transparent;background:var(--primary-color)}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]::after{display:none;content:"";width:.5rem;height:.5rem;border-top:.125rem solid var(--sdk-navigation-arrows-after);border-left:.125rem solid var(--sdk-navigation-arrows-after)}[_nghost-%COMP%] .player-nextIcon[_ngcontent-%COMP%]::after{content:"";-webkit-transform:rotate(135deg);transform:rotate(135deg);border-top:.125rem solid var(--sdk-player-nextIcon);border-left:.125rem solid var(--sdk-player-nextIcon)}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]:hover.player-nextIcon::after{content:"";border-top:.125rem solid var(--sdk-player-nextIcon);border-left:.125rem solid var(--sdk-player-nextIcon)}[_nghost-%COMP%] .navigation-arrows.player-nextIcon[_ngcontent-%COMP%]{background:var(--primary-color)}button[_ngcontent-%COMP%]{-webkit-appearance:none;background:0 0;border:0}.paginate[_ngcontent-%COMP%]{position:relative;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.paginate[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{position:absolute;top:42%;left:40%;width:.75rem;height:.1875rem;border-radius:.09375rem;background:var(--white);-webkit-transition:.15s;transition:.15s}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{-webkit-transform-origin:0 50%;transform-origin:0 50%;background-color:var(--gray-800)}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,-1px) rotate(40deg);transform:translate(0,-1px) rotate(40deg)}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,1px) rotate(-40deg);transform:translate(0,1px) rotate(-40deg)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]{background-color:var(--white)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,0) rotate(30deg);transform:translate(0,0) rotate(30deg)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,1px) rotate(-30deg);transform:translate(0,1px) rotate(-30deg)}.paginate.left[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(-.3125rem,0) rotate(0);transform:translate(-.3125rem,0) rotate(0)}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,.0625rem) rotate(40deg);transform:translate(0,.0625rem) rotate(40deg)}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,-.0625rem) rotate(-40deg);transform:translate(0,-.0625rem) rotate(-40deg)}.paginate.right[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,.0625rem) rotate(30deg);transform:translate(0,.0625rem) rotate(30deg)}.paginate.right[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,.0625rem) rotate(-30deg);transform:translate(0,.0625rem) rotate(-30deg)}.paginate.right[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(.3125rem,0) rotate(0);transform:translate(.3125rem,0) rotate(0)}.paginate[data-state=disabled][_ngcontent-%COMP%]{opacity:.3;cursor:default} html[dir=rtl] .player-nextIcon, html[dir=rtl] .player-previousIcon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}';function $e(yt,Xe){if(1&yt){const lt=t.EpF();t.TgZ(0,"div",6)(1,"img",7),t.NdJ("click",function(){t.CHM(lt);const at=t.oxw();return t.KtG(at.rotateCW())}),t.qZA()()}}function We(yt,Xe){if(1&yt){const lt=t.EpF();t.TgZ(0,"div",8)(1,"button",9),t.NdJ("click",function(){t.CHM(lt);const at=t.oxw();return t.KtG(at.zoomOut())}),t.qZA(),t.TgZ(2,"button",10),t.NdJ("click",function(){t.CHM(lt);const at=t.oxw();return t.KtG(at.zoomIn())}),t.qZA()()}}function Ie(yt,Xe){if(1&yt){const lt=t.EpF();t.TgZ(0,"div",11)(1,"input",12),t.NdJ("ngModelChange",function(at){t.CHM(lt);const fn=t.oxw();return t.KtG(fn.page=at)}),t.qZA(),t.TgZ(2,"span",13),t.NdJ("click",function(){t.CHM(lt);const at=t.oxw();return t.KtG(at.gotoPage())}),t._UZ(3,"img",14),t.qZA(),t.TgZ(4,"span",15),t._uU(5,"/"),t.qZA(),t.TgZ(6,"span",16),t._uU(7),t.qZA()()}if(2&yt){const lt=t.oxw();t.xp6(1),t.Q6J("ngModel",lt.page)("max",lt.totalPages),t.xp6(6),t.Oqu(lt.totalPages)}}function He(yt,Xe){if(1&yt){const lt=t.EpF();t.TgZ(0,"div",17)(1,"div",18)(2,"sb-player-previous-navigation",19),t.NdJ("previousAction",function(at){t.CHM(lt);const fn=t.oxw();return t.KtG(fn.actions.emit(at))}),t.qZA(),t.TgZ(3,"sb-player-next-navigation",20),t.NdJ("nextAction",function(at){t.CHM(lt);const fn=t.oxw();return t.KtG(fn.actions.emit(at))}),t.qZA()()()}}const T={contentCompatibility:"CPV2_CONT_COMP_01",contentLoadFails:"CPV2_CONT_LOAD_FAIL_01",internetConnectivity:"CPV2_INT_CONNECT_01",streamingUrlSupport:"CPV2_INT_STREAMINGURL_01"},Z={contentCompatibility:"content compatibility error",contentLoadFails:"content load failed",internetConnectivity:"content failed to load , No Internet Available",streamingUrlSupport:"streaming url is not supported",contentPlayFailedHeader:"Unable to load content",contentPlayFailTitle:"Refresh and try again later"};class Ce{constructor(){this.playerContentCompatibiltyLevel=5,this.getInternetConnectivityError=new t.vpe,this.setInternetConnectivityError=()=>{const Xe=new Error;Xe.message=Z.internetConnectivity,Xe.name=T.internetConnectivity,this.getInternetConnectivityError.emit({error:Xe})},this.initInternetConnectivityError()}checkContentCompatibility(Xe){if(Xe>this.playerContentCompatibiltyLevel){const lt=new Error;return lt.message=`Player supports ${this.playerContentCompatibiltyLevel}\n but content compatibility is ${Xe}`,lt.name="contentCompatibily",{error:lt,isCompitable:!1}}return{error:null,isCompitable:!0}}initInternetConnectivityError(){window.addEventListener("offline",this.setInternetConnectivityError)}ngOnDestroy(){window.removeEventListener("offline",this.setInternetConnectivityError)}}Ce.\u0275fac=function(Xe){return new(Xe||Ce)},Ce.ctorParameters=()=>[],Ce.\u0275prov=(0,t.Yz7)({factory:function(){return new Ce},token:Ce,providedIn:"root"});class Te{constructor(){this.downloadEvent=new t.vpe,this.hideDownloadPopUp=new t.vpe,this.showDownloadPopUp=!1}hideDownloadPopup(Xe,lt){this.disabledHandle.disengage(),this.hideDownloadPopUp.emit({event:Xe,type:lt})}ngOnChanges(Xe){for(const lt in Xe)if(Xe.hasOwnProperty(lt)&&"showDownloadPopUp"===lt){this.showDownloadPopUp=Xe[lt].currentValue||!1;const Et=document.querySelector(".file-download");this.disabledHandle=U.Z.disabled({filter:Et})}}download(Xe,lt){this.downloadEvent.emit({event:Xe,type:lt}),this.disabledHandle.disengage()}}Te.\u0275fac=function(Xe){return new(Xe||Te)},Te.\u0275cmp=t.Xpm({type:Te,selectors:[["sb-player-download-popup"]],inputs:{showDownloadPopUp:"showDownloadPopUp",title:"title"},outputs:{downloadEvent:"downloadEvent",hideDownloadPopUp:"hideDownloadPopUp"},features:[t.TTD],decls:16,vars:4,consts:[[1,"file-download",3,"ngClass"],[1,"file-download__overlay"],["aria-modal","true","aria-labelledby","Download Content","aria-describedby","Dialog to download content",1,"file-download__popup"],[1,"close-btn",3,"click"],["type","button","id","close","data-animation","showShadow","aria-label","player-close-btn",1,"close-icon"],[1,"file-download__metadata"],[1,"file-download__title","text-left"],[1,"file-download__text","text-left"],[1,"file-download__size"],[1,"file-download__action-btns"],["type","button","id","cancel",1,"sb-btn","sb-btn-normal","sb-btn-outline-primary","sb-btn-radius","cancel-btn","mr-8",3,"click"],["type","button","id","download",1,"sb-btn","sb-btn-normal","sb-btn-primary","sb-btn-radius","download-btn",3,"click"]],template:function(Xe,lt){1&Xe&&(t.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"div",3),t.NdJ("click",function(at){return lt.hideDownloadPopup(at,"DOWNLOAD_POPUP_CLOSE")}),t._UZ(4,"button",4),t.qZA(),t.TgZ(5,"div",5)(6,"h5",6),t._uU(7,"Confirm Download"),t.qZA(),t.TgZ(8,"div",7),t._uU(9),t.qZA(),t._UZ(10,"div",8),t.TgZ(11,"div",9)(12,"button",10),t.NdJ("click",function(at){return lt.hideDownloadPopup(at,"DOWNLOAD_POPUP_CANCEL")}),t._uU(13,"Cancel"),t.qZA(),t.TgZ(14,"button",11),t.NdJ("click",function(at){return lt.download(at,"DOWNLOAD")}),t._uU(15,"Download"),t.qZA()()()()()()),2&Xe&&(t.Q6J("ngClass",t.VKq(2,G,lt.showDownloadPopUp)),t.xp6(9),t.hij('"',lt.title,'" will be saved on your device.'))},dependencies:[C.mk],styles:['[_nghost-%COMP%] .file-download[_ngcontent-%COMP%]{width:100%;height:100%;position:absolute;top:0;left:0;z-index:99;-webkit-transition:.3s;transition:.3s;opacity:0;visibility:hidden}[_nghost-%COMP%] .file-download__overlay[_ngcontent-%COMP%]{width:100%;height:100%;background:rgba(var(--rc-rgba-black),.5);display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;-webkit-transition:.3s;transition:.3s;visibility:hidden}[_nghost-%COMP%] .file-download__popup[_ngcontent-%COMP%]{width:90%;max-width:22.5rem;min-height:13.125rem;background:var(--white);border-radius:1rem;box-shadow:0 0 1.5em 0 rgba(var(--rc-rgba-black),.22);padding:1.5rem;position:relative;-webkit-transition:.3s ease-in;transition:.3s ease-in;-webkit-transform:scale(.5);transform:scale(.5)}[_nghost-%COMP%] .file-download__close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem;width:1.5rem;height:1.5rem;cursor:pointer}[_nghost-%COMP%] .file-download__close-btn[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{max-width:100%}[_nghost-%COMP%] .file-download__metadata[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;height:100%}[_nghost-%COMP%] .file-download__title[_ngcontent-%COMP%]{font-size:1rem;font-weight:700;line-height:1.375rem;word-break:break-word}[_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%]{color:var(--gray-400);word-break:break-word}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%]{color:var(--black)}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%]{font-size:.875rem;line-height:1.25rem}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__title[_ngcontent-%COMP%]{margin:0 0 1.5em}[_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:end;justify-content:flex-end}[_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%] .cancel-btn[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%] .download-btn[_ngcontent-%COMP%]{outline:0;border:none;font-size:.75rem;text-transform:uppercase;cursor:pointer;line-height:normal}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%] .file-download__popup[_ngcontent-%COMP%]{-webkit-transform:scale(1);transform:scale(1);visibility:visible}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%]{visibility:visible;opacity:1}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%] .file-download__overlay[_ngcontent-%COMP%]{visibility:visible}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]{width:1.875rem;height:1.875rem;background:0 0;border-radius:50%;cursor:pointer;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center;padding:0}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::after{content:"";-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::before{content:"";-webkit-transform:rotate(45deg);transform:rotate(45deg)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:after, [_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:before{content:"";width:1.25rem;height:.125rem;position:absolute;background-color:var(--black)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]{box-shadow:0 0 0 0 var(--red) inset;-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775);border:0 solid var(--white)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:before{-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:after{-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover{box-shadow:0 0 0 .25rem var(--red) inset}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:before{-webkit-transform:scale(.7) rotate(45deg);transform:scale(.7) rotate(45deg);-webkit-transition-delay:.1s;transition-delay:.1s;background-color:var(--red)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:after{-webkit-transform:scale(.7) rotate(-45deg);transform:scale(.7) rotate(-45deg);-webkit-transition-delay:.1s;transition-delay:.1s;background-color:var(--red)} html[dir=rtl] .close-btn{left:.75rem;right:auto}']}),Te.propDecorators={title:[{type:t.IIB}],downloadEvent:[{type:t.r_U}],hideDownloadPopUp:[{type:t.r_U}],showDownloadPopUp:[{type:t.IIB}]};class Qe{constructor(){this.showReplay=!0,this.replayContent=new t.vpe,this.exitContent=new t.vpe,this.playNextContent=new t.vpe}ngOnInit(){this.subscription=(0,N.R)(document,"keydown").subscribe(Xe=>{"Enter"===Xe.key&&(Xe.stopPropagation(),document.activeElement.click())})}playNext(){this.playNextContent.emit({name:this.nextContent.name,identifier:this.nextContent.identifier,type:"NEXT_CONTENT_PLAY"})}replay(){this.showReplay&&this.replayContent.emit({type:"REPLAY"})}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}}Qe.\u0275fac=function(Xe){return new(Xe||Qe)},Qe.\u0275cmp=t.Xpm({type:Qe,selectors:[["sb-player-end-page"]],inputs:{showReplay:"showReplay",showExit:"showExit",contentName:"contentName",outcome:"outcome",outcomeLabel:"outcomeLabel",userName:"userName",timeSpentLabel:"timeSpentLabel",nextContent:"nextContent"},outputs:{replayContent:"replayContent",exitContent:"exitContent",playNextContent:"playNextContent"},ngContentSelectors:["*"],decls:237,vars:9,consts:[[1,"player-endpage"],[1,"player-endpage__left-panel"],[1,"user-score-card"],["width","100%","height","100%","viewBox","0 0 250 250","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",0,"xmlns","xhtml","http://www.w3.org/1999/xhtml"],["id","filter-1"],["in","SourceGraphic","type","matrix","values",""],["x1","-19.3154721%","y1","50%","x2","100%","y2","50%","id","linearGradient-1"],["stop-color","#43A981","offset","0%"],["stop-color","#1D7E58","offset","100%"],["x1","0%","y1","0%","x2","101.719666%","y2","100%","id","linearGradient-2"],["stop-color","#FFCD55","offset","0%"],["stop-color","#FFD955","offset","100%"],["d","M124.02,185.665 C116.138,185.665 109.713,175.367 102.434,173.416 C94.911,171.399 84.204,177.031 77.612,173.212 C70.933,169.339 70.491,157.213 65.068,151.786 C59.642,146.36 47.514,145.92 43.643,139.24 C39.825,132.649 45.454,121.942 43.438,114.42 C41.487,107.143 31.19,100.717 31.19,92.831 C31.19,84.948 41.487,78.521 43.438,71.245 C45.454,63.721 39.825,53.013 43.644,46.423 C47.516,39.742 59.643,39.304 65.068,33.878 C70.493,28.452 70.933,16.325 77.612,12.453 C84.206,8.635 94.911,14.266 102.434,12.248 C109.713,10.297 116.138,-1.42108547e-14 124.02,-1.42108547e-14 C131.907,-1.42108547e-14 138.332,10.297 145.608,12.248 C153.132,14.266 163.839,8.635 170.429,12.454 C177.11,16.325 177.55,28.453 182.976,33.879 C188.403,39.305 200.531,39.743 204.401,46.425 C208.22,53.015 202.589,63.722 204.606,71.245 C206.558,78.521 216.854,84.948 216.854,92.831 C216.854,100.717 206.558,107.143 204.606,114.421 C202.589,121.943 208.22,132.651 204.4,139.242 C200.529,145.923 188.401,146.361 182.975,151.787 C177.55,157.214 177.11,169.34 170.429,173.212 C163.839,177.031 153.132,171.4 145.608,173.416 C138.332,175.367 131.907,185.665 124.02,185.665","id","path-3"],["x","-6.5%","y","-6.5%","width","112.9%","height","112.9%","filterUnits","objectBoundingBox","id","filter-4"],["stdDeviation","11.5","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0.0914162133 0 0 0 0 0.159459438 0 0 0 0 0.537477355 0 0 0 1 0","type","matrix","in","shadowInnerInner1"],["x1","50%","y1","0.0901442308%","x2","50%","y2","99.6203016%","id","linearGradient-5"],["stop-color","#1D6349","offset","0%"],["stop-color","#1D6349","offset","100%"],["id","text-8","x","55","y","16","text-anchor","middle","fill","#FFFFFE",4,"ngIf"],["id","player-Player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","endgame-l2","transform","translate(-39.000000, -65.000000)"],["id","Group-2","transform","translate(39.500000, 65.000000)"],["filter","url(#filter-1)","id","Group"],["transform","translate(4.000000, 4.000000)",1,"particles"],["d","M84.4144231,47.2437308 L77.9616538,41.1916154 C77.5351923,40.7922308 76.8658846,40.8133846 76.4665,41.2394231 C76.0666923,41.6654615 76.0882692,42.3351923 76.5143077,42.7345769 L82.9670769,48.7866923 C83.3931154,49.1860769 84.0624231,49.1649231 84.4622308,48.7384615 C84.8616154,48.3124231 84.8404615,47.6431154 84.4144231,47.2437308","id","Fill-3"],["d","M78.2087308,48.9402692 L84.2616923,42.4875 C84.6615,42.0614615 84.6399231,41.3921538 84.2138846,40.9927692 C83.7878462,40.5929615 83.1185385,40.6141154 82.7187308,41.0405769 L76.6661923,47.4929231 C76.2663846,47.9189615 76.2879615,48.5886923 76.714,48.9880769 C77.1400385,49.3878846 77.8093462,49.3663077 78.2087308,48.9402692","id","Fill-4"],["d","M91.8275769,140.082038 L85.3748077,134.030346 C84.9487692,133.630538 84.2794615,133.652115 83.8796538,134.078154 C83.4802692,134.504192 83.5014231,135.1735 83.9278846,135.573308 L90.3806538,141.625 C90.8066923,142.024808 91.476,142.003231 91.8753846,141.577192 C92.2751923,141.151154 92.2536154,140.481846 91.8275769,140.082038","id","Fill-5"],["d","M85.6223077,141.779 L91.6748462,135.326231 C92.0746538,134.900192 92.0535,134.230885 91.6270385,133.831077 C91.201,133.431269 90.5316923,133.452846 90.1323077,133.878885 L84.0793462,140.331654 C83.6799615,140.757692 83.7011154,141.427 84.1271538,141.826808 C84.5531923,142.226192 85.2225,142.205038 85.6223077,141.779","id","Fill-6"],["d","M13.3091538,191.951269 L6.85638462,185.899154 C6.43034615,185.499769 5.76103846,185.520923 5.36123077,185.946962 C4.96184615,186.373423 4.98342308,187.042731 5.40946154,187.442115 L11.8622308,193.494231 C12.2882692,193.893615 12.9575769,193.872462 13.3569615,193.446423 C13.7567692,193.020385 13.7351923,192.350654 13.3091538,191.951269","id","Fill-7"],["d","M7.10388462,193.647808 L13.1568462,187.195038 C13.5562308,186.769 13.5350769,186.099692 13.1090385,185.700308 C12.683,185.3005 12.0136923,185.322077 11.6138846,185.748115 L5.56092308,192.200885 C5.16153846,192.626923 5.18269231,193.296231 5.60873077,193.695615 C6.03476923,194.095423 6.70407692,194.073846 7.10388462,193.647808","id","Fill-8"],["d","M10.4914615,38.4115769 L4.03869231,32.3594615 C3.61265385,31.9600769 2.94334615,31.9812308 2.54353846,32.4072692 C2.14415385,32.8333077 2.16573077,33.5030385 2.59176923,33.9024231 L9.04453846,39.9545385 C9.47057692,40.3539231 10.1398846,40.3327692 10.5392692,39.9067308 C10.9390769,39.4802692 10.9175,38.8109615 10.4914615,38.4115769","id","Fill-9"],["d","M4.28619231,40.1081154 L10.3391538,33.6553462 C10.7385385,33.2293077 10.7173846,32.56 10.2909231,32.1606154 C9.86488462,31.7608077 9.19557692,31.7823846 8.79619231,32.2084231 L2.74323077,38.6611923 C2.34342308,39.0872308 2.365,39.7565385 2.79103846,40.1559231 C3.21707692,40.5557308 3.88638462,40.5341538 4.28619231,40.1081154","id","Fill-10"],["d","M239.977269,47.0855 L233.5245,41.0333846 C233.098462,40.634 232.429154,40.6551538 232.029769,41.0811923 C231.629962,41.5072308 231.651538,42.1765385 232.077577,42.5763462 L238.530346,48.6284615 C238.956385,49.0278462 239.625692,49.0066923 240.0255,48.5802308 C240.424885,48.1541923 240.403308,47.4848846 239.977269,47.0855","id","Fill-11"],["d","M233.771577,48.7820385 L239.824538,42.3292692 C240.223923,41.9032308 240.202769,41.2339231 239.776731,40.8341154 C239.350692,40.4347308 238.681385,40.4558846 238.281577,40.8823462 L232.228615,47.3346923 C231.829231,47.7607308 231.850385,48.4304615 232.276423,48.8298462 C232.702885,49.2296538 233.372192,49.2080769 233.771577,48.7820385","id","Fill-12"],["d","M163.849231,80.0025769 L157.396462,73.9508846 C156.970423,73.5510769 156.301115,73.5726538 155.901308,73.9986923 C155.501923,74.4247308 155.523077,75.0940385 155.949115,75.4938462 L162.401885,81.5455385 C162.828346,81.9453462 163.497654,81.9237692 163.897038,81.4977308 C164.296846,81.0716923 164.275269,80.4023846 163.849231,80.0025769","id","Fill-13"],["d","M157.644385,81.6995385 L163.696923,75.2467692 C164.096731,74.8207308 164.075154,74.1514231 163.649115,73.7516154 C163.223077,73.3522308 162.553769,73.3733846 162.154385,73.7994231 L156.101423,80.2521923 C155.701615,80.6782308 155.723192,81.3475385 156.149231,81.7473462 C156.575269,82.1467308 157.244577,82.1255769 157.644385,81.6995385","id","Fill-14"],["d","M195.311346,151.846538 L188.858577,145.794423 C188.432538,145.395038 187.763231,145.416192 187.363423,145.842654 C186.964038,146.268692 186.985615,146.938 187.411654,147.337385 L193.864423,153.3895 C194.290462,153.788885 194.959769,153.767731 195.359154,153.341692 C195.758962,152.915654 195.737385,152.245923 195.311346,151.846538","id","Fill-15"],["d","M189.105654,153.543077 L195.158615,147.090308 C195.558,146.664269 195.536846,145.994962 195.110808,145.595577 C194.684769,145.195769 194.015462,145.217346 193.615654,145.643385 L187.562692,152.096154 C187.163308,152.522192 187.184462,153.1915 187.6105,153.590885 C188.036538,153.990692 188.705846,153.969115 189.105654,153.543077","id","Fill-16"],["d","M190.299577,210.370769 L183.846808,204.318654 C183.420769,203.919269 182.751462,203.940423 182.352077,204.366885 C181.952269,204.792923 181.973846,205.462231 182.399885,205.861615 L188.852654,211.913731 C189.278692,212.313538 189.948,212.291962 190.347808,211.865923 C190.747192,211.439885 190.726038,210.770577 190.299577,210.370769","id","Fill-17"],["d","M184.093885,212.067308 L190.146846,205.614538 C190.546654,205.1885 190.525077,204.519192 190.099038,204.119808 C189.673,203.72 189.003692,203.741577 188.603885,204.167615 L182.551346,210.620385 C182.151538,211.046423 182.173115,211.715731 182.599154,212.115115 C183.025192,212.514923 183.6945,212.493346 184.093885,212.067308","id","Fill-18"],["d","M131.642077,57.7017692 L132.557615,57.1720769 L128.114462,49.4881538 C127.925346,49.1611154 127.575885,48.9597308 127.198077,48.9601532 C126.819846,48.9601532 126.470808,49.1623846 126.282538,49.4898462 L117.420346,64.8674231 C117.231654,65.1948846 117.232077,65.5980769 117.421192,65.9251154 C117.610308,66.2521538 117.959769,66.4535385 118.337577,66.453116 L127.210346,66.4459231 L136.084808,66.4416923 C136.462615,66.4416923 136.811654,66.2394615 137.000346,65.9124231 C137.189462,65.5849615 137.189038,65.1817692 136.999923,64.8547308 L132.557615,57.1720769 L131.642077,57.7017692 L130.726115,58.2310385 L134.251192,64.3271538 L127.209077,64.3305385 L120.168231,64.3364615 L127.200615,52.1336538 L130.726115,58.2310385 L131.642077,57.7017692","id","Fill-19"],["d","M116.952846,151.625692 L117.868808,151.096 L113.425654,143.412077 C113.236115,143.085038 112.887077,142.883654 112.508846,142.884076 C112.131038,142.884076 111.782,143.086308 111.593308,143.413769 L102.731115,158.791346 C102.542423,159.118385 102.542846,159.522 102.731962,159.849038 C102.921077,160.176077 103.270538,160.377462 103.648346,160.377039 L112.521538,160.369846 L121.396,160.365615 C121.773808,160.365192 122.123269,160.163385 122.311962,159.836346 C122.500654,159.508885 122.500231,159.105692 122.311115,158.778231 L117.868808,151.096 L116.952846,151.625692 L116.037308,152.154962 L119.562385,158.251077 L112.520269,158.254462 L105.479,158.260385 L112.511385,146.057577 L116.037308,152.154962 L116.952846,151.625692","id","Fill-20"],["d","M167.868885,180.468538 L168.784423,179.938846 L164.341269,172.254923 C164.152154,171.927885 163.802692,171.7265 163.424885,171.7265 C163.047077,171.726923 162.697615,171.929154 162.508923,172.256192 L158.080154,179.944346 L153.646731,187.633769 C153.458038,187.961231 153.458462,188.364423 153.647577,188.691885 C153.836692,189.018923 154.186154,189.220308 154.563962,189.219885 L163.437154,189.212692 L172.311615,189.208462 C172.689423,189.208038 173.038462,189.006231 173.227154,188.678769 C173.415846,188.351731 173.415846,187.948538 173.226731,187.621077 L168.784423,179.938846 L167.868885,180.468538 L166.952923,180.997808 L170.478,187.093923 L163.435885,187.097308 L156.394615,187.103231 L163.427423,174.900423 L166.952923,180.997808 L167.868885,180.468538","id","Fill-21"],["d","M197.152577,121.4785 L198.174731,121.751808 L200.466962,113.176885 C200.564269,112.811769 200.459769,112.422115 200.192385,112.155154 C199.925,111.888192 199.534923,111.784115 199.170231,111.882269 L190.602077,114.186769 L182.030115,116.489154 C181.665423,116.587308 181.380269,116.872462 181.282538,117.237577 C181.185231,117.602692 181.289731,117.991923 181.557115,118.259308 L187.836423,124.528462 L194.114462,130.801 C194.381846,131.067962 194.7715,131.172462 195.136615,131.074308 C195.501308,130.976154 195.786462,130.691 195.884192,130.325885 L198.174731,121.751808 L197.152577,121.4785 L196.130846,121.205615 L194.313308,128.009115 L184.348577,118.056654 L191.151231,116.229808 L197.949654,114.401269 L196.130846,121.205615 L197.152577,121.4785","id","Fill-22"],["d","M51.2223462,21.9327308 L52.2440769,22.2056154 L54.5358846,13.6306923 C54.6336154,13.2655769 54.5291154,12.8759231 54.2617308,12.6089615 C53.9939231,12.342 53.6042692,12.2379231 53.2395769,12.3360769 L44.6714231,14.6405769 L44.6718462,14.6405769 L36.0994615,16.9433846 C35.7343462,17.0411154 35.4496154,17.3266923 35.3518846,17.6918077 C35.2545769,18.0569231 35.3590769,18.4461538 35.6264615,18.7131154 L41.9061923,24.9822692 L41.9057692,24.9818462 L48.1842308,31.2543846 C48.4516154,31.5213462 48.8412692,31.6258462 49.2059615,31.5276923 C49.5710769,31.4295385 49.8562308,31.1443846 49.9535385,30.7792692 L52.2440769,22.2056154 L50.2006154,21.6594231 L48.3830769,28.4629231 L43.4009231,23.4854231 L43.4005,23.485 L38.4179231,18.5108846 L45.2205769,16.6836154 L45.221,16.6836154 L52.019,14.8550769 L50.2006154,21.6594231 L51.2223462,21.9327308","id","Fill-23"],["d","M45.1456923,207.203192 L46.1674231,207.476077 L48.4592308,198.900731 C48.5569615,198.535615 48.4520385,198.145962 48.1846538,197.879 C47.9172692,197.612038 47.5276154,197.507962 47.1629231,197.606115 L38.5947692,199.911038 L38.5947692,199.910615 L30.0228077,202.213846 C29.6576923,202.311577 29.3725385,202.597154 29.2752308,202.962269 C29.1775,203.327385 29.2824231,203.716615 29.5498077,203.983577 L35.8295385,210.252308 L35.8291154,210.251885 L42.1075769,216.524423 C42.3749615,216.791385 42.7646154,216.895885 43.1293077,216.797731 C43.4944231,216.699577 43.7791538,216.414423 43.8768846,216.049308 L46.1674231,207.476077 L44.1239615,206.930308 L42.3064231,213.732962 L37.3242692,208.755462 L37.3238462,208.755038 L32.3412692,203.781346 L39.1435,201.953654 L39.1439231,201.953654 L45.9423462,200.125115 L44.1239615,206.929885 L45.1456923,207.203192","id","Fill-24"],["d","M206.143808,31.5111923 L206.6735,32.4267308 L214.357423,27.984 C214.684462,27.7948846 214.885846,27.4454231 214.885424,27.0676154 C214.885424,26.6893846 214.683192,26.3403462 214.355731,26.1516538 L206.667577,21.7224615 L206.668,21.7228846 L198.978154,17.2894615 C198.651115,17.1007692 198.2475,17.1011923 197.920462,17.2903077 C197.593423,17.4794231 197.392038,17.8288846 197.392461,18.2066923 L197.399654,27.0798846 L197.399654,27.0794615 L197.403885,35.9547692 C197.403885,36.3325769 197.606115,36.6816154 197.933577,36.8703077 C198.260615,37.059 198.664231,37.059 198.991269,36.8698846 L206.6735,32.4267308 L206.143808,31.5111923 L205.614538,30.5952308 L199.518423,34.1211538 L199.515038,27.0786154 L199.515038,27.0781923 L199.509115,20.0373462 L205.611577,23.5556538 L205.612,23.5556538 L211.711923,27.0697308 L205.614538,30.5952308 L206.143808,31.5111923","id","Fill-25"],["d","M44.9489615,120.167385 L45.4782308,121.082923 L53.1625769,116.640192 C53.4896154,116.450654 53.691,116.101192 53.6905776,115.723385 C53.6901538,115.345577 53.4883462,114.996538 53.1608846,114.807846 L45.4727308,110.378654 L45.4731538,110.379077 L37.7833077,105.945654 C37.4558462,105.756962 37.0526538,105.757385 36.7256154,105.9465 C36.3985769,106.135615 36.1971923,106.485077 36.1971923,106.862885 L36.2094615,124.610962 C36.2094615,124.989192 36.4112692,125.338231 36.7387308,125.526923 C37.0661923,125.715615 37.4693846,125.715192 37.7964231,125.526077 L45.4786538,121.082923 L44.4192692,119.251846 L38.324,122.777346 L38.3142692,108.693538 L44.4167308,112.211423 L44.4167308,112.211846 L50.5170769,115.725923 L44.4196923,119.251846 L44.9489615,120.167385","id","Fill-26"],["d","M146.638885,105.637654 L145.581192,105.637654 C145.580769,107.208115 144.947423,108.619923 143.918923,109.650115 C142.888731,110.678615 141.476923,111.311538 139.906885,111.312385 C138.336423,111.311538 136.924192,110.678615 135.893577,109.650115 C134.865077,108.619923 134.232154,107.208115 134.231731,105.637654 C134.232154,104.066769 134.865077,102.654962 135.893577,101.624769 C136.924192,100.596269 138.336423,99.9633462 139.906885,99.9625 C141.476923,99.9633462 142.888731,100.596269 143.918923,101.624769 C144.947423,102.654962 145.580769,104.066769 145.581192,105.637654 L147.696577,105.637654 C147.695731,101.334538 144.209154,97.8479615 139.906885,97.8471154 C135.603769,97.8479615 132.116769,101.334538 132.116346,105.637654 C132.116769,109.940346 135.603769,113.426923 139.906885,113.427769 C144.209154,113.426923 147.695731,109.940346 147.696577,105.637654 L146.638885,105.637654","id","Fill-27"],["d","M112.621808,30.5059615 L111.564115,30.5059615 C111.563692,32.0768462 110.930769,33.4886538 109.901846,34.5188462 C108.871654,35.5473462 107.459846,36.1802692 105.889385,36.1811154 C104.318923,36.1802692 102.907115,35.5473462 101.8765,34.5188462 C100.848,33.4886538 100.214654,32.0764231 100.214231,30.5059615 C100.214654,28.9355 100.848,27.5236923 101.8765,26.4935 C102.907115,25.465 104.318923,24.8320769 105.889385,24.8316538 C107.459846,24.8320769 108.871654,25.465 109.901846,26.4935 C110.930769,27.5236923 111.563692,28.9355 111.564115,30.5059615 L113.6795,30.5059615 C113.678654,26.2032692 110.192077,22.7166923 105.889385,22.7162692 C101.586692,22.7166923 98.0996923,26.2032692 98.0988462,30.5059615 C98.0996923,34.8095 101.586692,38.2956538 105.889385,38.2965 C110.192077,38.2956538 113.678654,34.8090769 113.6795,30.5059615 L112.621808,30.5059615","id","Fill-28"],["d","M116.918154,229.204885 L115.860462,229.204885 C115.860038,230.775346 115.227115,232.187577 114.198192,233.217769 C113.168,234.246269 111.756192,234.879615 110.185731,234.880038 C108.615692,234.879615 107.203462,234.246269 106.172846,233.217769 C105.144346,232.187154 104.511423,230.775346 104.510577,229.204885 C104.511423,227.634423 105.144346,226.222615 106.172846,225.192423 C107.203462,224.163923 108.615692,223.531 110.185731,223.530577 C111.756192,223.531 113.168423,224.163923 114.198615,225.192423 C115.227115,226.222615 115.860038,227.634423 115.860462,229.204885 L117.975846,229.204885 C117.975423,224.901769 114.488423,221.415615 110.185731,221.415192 C108.038192,221.414346 106.084,222.288423 104.677269,223.696423 C103.268846,225.102731 102.394769,227.056923 102.395192,229.204885 C102.396038,233.508 105.883462,236.994577 110.185731,236.995423 C114.488423,236.994577 117.975423,233.508 117.975846,229.204885 L116.918154,229.204885","id","Fill-29"],["d","M135.982423,219.142846 C135.983269,217.572385 136.616192,216.160577 137.645115,215.130385 C138.675308,214.101885 140.087538,213.468962 141.658,213.468538 C143.228462,213.468962 144.640269,214.101885 145.670885,215.130385 C146.699385,216.160154 147.332308,217.572385 147.332731,219.142846 C147.332731,219.726692 147.806577,220.200538 148.390423,220.200538 C148.974692,220.200538 149.448115,219.726692 149.448115,219.142846 C149.447692,214.839731 145.960692,211.353577 141.658,211.353153 C139.510038,211.352308 137.555846,212.226385 136.149538,213.634385 C134.741115,215.040269 133.866615,216.994462 133.867038,219.142846 C133.867038,219.726692 134.340885,220.200538 134.924731,220.200538 C135.509,220.200538 135.982423,219.726692 135.982423,219.142846","id","Fill-30"],["d","M82.247,115.736077 C82.2474231,114.165615 82.8807692,112.753385 83.9092692,111.723192 C84.9398846,110.694692 86.3521154,110.061769 87.9221538,110.061346 C89.4926154,110.061769 90.9044231,110.694692 91.9350385,111.723192 C92.9635385,112.753385 93.5964615,114.165192 93.5968846,115.736077 C93.5968846,116.319923 94.0707308,116.793769 94.6545769,116.793769 C95.2388462,116.793769 95.7122692,116.319923 95.7122692,115.736077 C95.7118462,111.432962 92.2248462,107.946385 87.9221538,107.945538 C83.6198846,107.946385 80.1324615,111.432962 80.1316154,115.736077 C80.1316154,116.319923 80.6054615,116.793769 81.1893077,116.793769 C81.7735769,116.793769 82.247,116.319923 82.247,115.736077","id","Fill-31"],["d","M11.4163077,61.0732692 C11.4167308,59.5011154 12.0479615,58.0884615 13.0713846,57.0586923 C14.0969231,56.0306154 15.5006923,55.3989615 17.061,55.3981154 C18.6213077,55.3989615 20.0250769,56.0306154 21.0501923,57.0586923 C22.0736154,58.0884615 22.7048462,59.5011154 22.7052692,61.0732692 C22.7052692,61.6571154 23.1786923,62.1309615 23.7629615,62.1309615 C24.3468077,62.1309615 24.820654,61.6571154 24.820654,61.0732692 C24.8210769,58.9265769 23.9516538,56.9732308 22.5495769,55.5660769 C21.1491923,54.1576538 19.2017692,53.2823077 17.061,53.2827306 C14.9202308,53.2823077 12.9728077,54.1576538 11.5724231,55.5660769 C10.1699231,56.9732308 9.3005,58.9265769 9.30092292,61.0732692 C9.30092292,61.6571154 9.77434615,62.1309615 10.3586154,62.1309615 C10.9428846,62.1309615 11.4163077,61.6571154 11.4163077,61.0732692","id","Fill-32"],["d","M180.062808,71.0401154 C178.491077,71.0396923 177.078,70.4084615 176.048231,69.3850385 C175.019731,68.3595 174.388077,66.9557308 174.387654,65.3954231 C174.388077,63.8351154 175.019731,62.4317692 176.048231,61.4062308 C177.078,60.3828077 178.490654,59.752 180.062808,59.7511538 C180.647077,59.7511538 181.1205,59.2777308 181.1205,58.6938846 C181.1205,58.1096154 180.647077,57.6361917 180.062808,57.6361917 C177.916115,57.6353462 175.962769,58.5047692 174.555615,59.9072692 C173.147192,61.3072308 172.271423,63.2546538 172.272269,65.3954231 C172.271423,67.5361923 173.147192,69.4836154 174.555615,70.884 C175.962769,72.2865 177.916115,73.1559231 180.062808,73.1555002 C180.647077,73.1555002 181.1205,72.6820769 181.1205,72.0978077 C181.1205,71.5135385 180.647077,71.0401154 180.062808,71.0401154","id","Fill-33"],["d","M17.9490385,228.116731 C16.3768846,228.115885 14.9642308,227.485077 13.9344615,226.461654 C12.9063846,225.436115 12.2747308,224.032346 12.2743077,222.472038 C12.2747308,220.911731 12.9063846,219.507962 13.9344615,218.482846 C14.9642308,217.459423 16.3768846,216.828615 17.9490385,216.828192 C18.5328846,216.828192 19.0067308,216.354769 19.0067308,215.7705 C19.0067308,215.186231 18.5328846,214.712808 17.9490385,214.712808 C15.8023462,214.712385 13.849,215.581808 12.4418462,216.983885 C11.0334231,218.383846 10.1580769,220.331269 10.1589225,222.472038 C10.1580769,224.612808 11.0334231,226.560231 12.4418462,227.960615 C13.849,229.362692 15.8023462,230.232538 17.9490385,230.232116 C18.5328846,230.232116 19.0067308,229.758269 19.0067308,229.174423 C19.0067308,228.590154 18.5328846,228.116731 17.9490385,228.116731","id","Fill-34"],["d","M90.1932308,14.0000385 C88.6215,13.9996154 87.2088462,13.3683846 86.1790769,12.3449615 C85.151,11.3194231 84.5193462,9.91565385 84.5185,8.35534615 C84.5193462,6.79503846 85.151,5.39126923 86.1790769,4.36615385 C87.2088462,3.34273077 88.6215,2.7115 90.1932308,2.71107692 C90.7775,2.71107692 91.2509231,2.23765385 91.2509231,1.65338462 C91.2509231,1.06953846 90.7775,0.595692153 90.1932308,0.595692153 C88.0469615,0.595269231 86.0936154,1.46469231 84.6864615,2.86676923 C83.2780385,4.26715385 82.4026923,6.21457692 82.4031152,8.35534615 C82.4026923,10.4961154 83.2780385,12.4435385 84.6864615,13.8439231 C86.0931923,15.2464231 88.0469615,16.1158462 90.1932308,16.1154232 C90.7775,16.1154232 91.2509231,15.642 91.2509231,15.0577308 C91.2509231,14.4734615 90.7775,14.0000385 90.1932308,14.0000385","id","Fill-35"],["d","M21.3154615,158.362769 L20.2577692,158.362769 C20.2569231,159.933231 19.624,161.345038 18.5955,162.375654 C17.5653077,163.404154 16.1530769,164.037077 14.5830385,164.037923 C13.0125769,164.037077 11.6003462,163.404154 10.5701538,162.375654 C9.54123077,161.345038 8.90830769,159.933231 8.90788462,158.362769 C8.90830769,156.792308 9.54123077,155.3805 10.5701538,154.350308 C11.6003462,153.321808 13.0125769,152.688885 14.5830385,152.688038 C16.1530769,152.688885 17.5653077,153.321808 18.5955,154.349885 C19.624,155.380077 20.2569231,156.791885 20.2577692,158.362769 L22.3731538,158.362769 C22.3723077,154.059654 18.8853077,150.5735 14.5830385,150.572654 C12.4350769,150.572231 10.4808846,151.446308 9.07415385,152.854308 C7.66615385,154.260192 6.79165385,156.214385 6.79249939,158.362769 C6.79292308,162.665885 10.2803462,166.152462 14.5830385,166.153308 C18.8853077,166.152462 22.3723077,162.665462 22.3731538,158.362769 L21.3154615,158.362769","id","Fill-36"],["d","M228.928192,166.051346 L227.8705,166.051346 C227.869654,167.621808 227.236731,169.034038 226.208231,170.064654 C225.178038,171.093154 223.766231,171.726077 222.196192,171.7265 C220.625731,171.726077 219.2135,171.093154 218.183308,170.064654 C217.154385,169.034038 216.521462,167.621808 216.521038,166.051346 C216.521462,164.480885 217.154385,163.069077 218.182885,162.038885 C219.2135,161.010385 220.625308,160.377885 222.196192,160.377038 C223.766231,160.377885 225.178038,161.010385 226.208231,162.038885 C227.236731,163.069077 227.869654,164.480885 227.8705,166.051346 L229.985885,166.051346 C229.985038,161.748231 226.498038,158.2625 222.196192,158.261654 C217.8935,158.2625 214.406077,161.748231 214.405654,166.051346 C214.406077,170.354462 217.893077,173.841462 222.196192,173.841885 C226.498462,173.841462 229.985038,170.354462 229.985885,166.051346 L228.928192,166.051346","id","Fill-37"],["d","M210.305192,58.6993846 L210.305192,59.7570769 L222.64,59.7570769 L222.64,71.0337692 L211.362885,71.0337692 L211.362885,58.6993846 L210.305192,58.6993846 L210.305192,59.7570769 L210.305192,58.6993846 L209.2475,58.6993846 L209.2475,72.0914615 C209.2475,72.3702692 209.360462,72.6427308 209.557192,72.8394615 C209.754346,73.0366154 210.026808,73.1491538 210.305192,73.1491538 L223.697692,73.1491538 C223.976077,73.1491538 224.248538,73.0366154 224.445269,72.8394615 C224.642423,72.6427308 224.755385,72.3702692 224.755385,72.0914615 L224.755385,58.6993846 C224.755385,58.421 224.642423,58.1485385 224.445269,57.9513846 C224.248538,57.7546538 223.976077,57.6416923 223.697692,57.6416923 L210.305192,57.6416923 C210.026808,57.6416923 209.754346,57.7546538 209.557192,57.9513846 C209.360462,58.1485385 209.2475,58.421 209.2475,58.6993846 L210.305192,58.6993846","id","Fill-38"],["d","M58.8897692,65.3954231 L58.8897692,66.4531154 L71.2237308,66.4531154 L71.2237308,77.7302308 L59.9474615,77.7302308 L59.9474615,65.3954231 L58.8897692,65.3954231 L58.8897692,66.4531154 L58.8897692,65.3954231 L57.8320769,65.3954231 L57.8320769,78.7879231 C57.8320769,79.0663077 57.9450385,79.3387692 58.1417692,79.5355 C58.3389231,79.7326538 58.6113846,79.8456154 58.8897692,79.8456154 L72.2814231,79.8456154 C72.5602308,79.8456154 72.8326923,79.7326538 73.0294231,79.5355 C73.2265769,79.3387692 73.3391154,79.0663077 73.3391154,78.7879231 L73.3391154,65.3954231 C73.3391154,65.1170385 73.2265769,64.8445769 73.0294231,64.6478462 C72.8326923,64.4506923 72.5602308,64.3377308 72.2814231,64.3377308 L58.8897692,64.3377308 C58.6113846,64.3377308 58.3389231,64.4506923 58.1417692,64.6478462 C57.9450385,64.8445769 57.8320769,65.1170385 57.8320769,65.3954231 L58.8897692,65.3954231","id","Fill-39"],["d","M58.2175,150.893346 L58.2175,151.951038 L70.5518846,151.951038 L70.5518846,163.228154 L59.2751923,163.228154 L59.2751923,150.893346 L58.2175,150.893346 L58.2175,151.951038 L58.2175,150.893346 L57.1598077,150.893346 L57.1598077,164.285846 C57.1598077,164.564231 57.2727692,164.836692 57.4699231,165.033423 C57.6666538,165.230577 57.9391154,165.343538 58.2175,165.343538 L71.6095769,165.343538 C71.8879615,165.343538 72.1604231,165.230577 72.3571538,165.033423 C72.5543077,164.836692 72.6672692,164.564231 72.6672692,164.285846 L72.6672692,150.893346 C72.6672692,150.614962 72.5543077,150.3425 72.3571538,150.145346 C72.1604231,149.948615 71.8879615,149.835654 71.6095769,149.835654 L58.2175,149.835654 C57.9391154,149.835654 57.6666538,149.948615 57.4699231,150.145346 C57.2727692,150.3425 57.1598077,150.614962 57.1598077,150.893346 L58.2175,150.893346","id","Fill-40"],["d","M210.305192,215.776423 L210.305192,216.834115 L222.639154,216.834115 L222.639154,228.110808 L211.362885,228.110808 L211.362885,215.776423 L210.305192,215.776423 L210.305192,216.834115 L210.305192,215.776423 L209.2475,215.776423 L209.2475,229.1685 C209.2475,229.446885 209.360462,229.719346 209.557192,229.9165 C209.754346,230.113231 210.026808,230.226192 210.305192,230.226192 L223.696846,230.226192 C223.975231,230.226192 224.247692,230.113231 224.444423,229.9165 C224.641577,229.719346 224.754538,229.446885 224.754538,229.1685 L224.754538,215.776423 C224.754538,215.497615 224.641577,215.225154 224.444423,215.028423 C224.247692,214.831269 223.975231,214.718731 223.696846,214.718731 L210.305192,214.718731 C210.026808,214.718731 209.754346,214.831269 209.557192,215.028423 C209.360462,215.225154 209.2475,215.497615 209.2475,215.776423 L210.305192,215.776423","id","Fill-41"],["d","M154.751808,1.65973077 L154.751808,2.71742308 L167.085346,2.71742308 L167.085346,13.9941154 L155.8095,13.9941154 L155.8095,1.65973077 L154.751808,1.65973077 L154.751808,2.71742308 L154.751808,1.65973077 L153.694115,1.65973077 L153.694115,15.0518077 C153.694115,15.3306154 153.806654,15.6030769 154.003808,15.7998077 C154.200538,15.9965385 154.473,16.1095 154.751808,16.1095 L168.143038,16.1095 C168.421423,16.1095 168.693885,15.9965385 168.891038,15.7998077 C169.087769,15.6030769 169.200731,15.3306154 169.200731,15.0518077 L169.200731,1.65973077 C169.200731,1.38134615 169.087769,1.10888462 168.891038,0.911730769 C168.693885,0.715 168.421423,0.602038462 168.143038,0.602038462 L154.751808,0.602038462 C154.473,0.602038462 154.200538,0.715 154.003808,0.911730769 C153.806654,1.10888462 153.694115,1.38134615 153.694115,1.65973077 L154.751808,1.65973077","id","Fill-42"],["d","M135.508154,136.771462 C135.298731,136.769769 135.172654,136.731692 135.044885,136.667808 C134.934038,136.610269 134.818962,136.522692 134.692038,136.386462 C134.469077,136.151231 134.227077,135.765385 133.973654,135.300423 C133.585692,134.604885 133.179962,133.738423 132.487808,132.969692 C132.140885,132.587654 131.710615,132.232269 131.180923,131.980115 C130.6525,131.726692 130.033538,131.585808 129.357885,131.587068 C128.773615,131.587068 128.300192,132.060923 128.300192,132.644769 C128.300192,133.229038 128.773615,133.702462 129.357885,133.702462 C129.702269,133.703308 129.957808,133.76 130.175269,133.847577 C130.365654,133.925423 130.530654,134.0295 130.692692,134.168269 C130.975308,134.409 131.243115,134.767769 131.503731,135.2065 C131.901,135.862692 132.255115,136.675423 132.809346,137.425962 C133.089,137.799538 133.432538,138.165077 133.889038,138.443462 C134.342577,138.722692 134.9095,138.890231 135.508154,138.886896 C136.092423,138.886896 136.565846,138.413423 136.565846,137.829154 C136.565846,137.245308 136.092423,136.771462 135.508154,136.771462","id","Fill-43"],["d","M147.808269,136.771462 C147.598423,136.769769 147.472346,136.731692 147.344577,136.667808 C147.233731,136.610269 147.119077,136.522692 146.991731,136.386462 C146.768769,136.151231 146.526769,135.765385 146.273346,135.300423 C145.885385,134.604885 145.480077,133.738423 144.787923,132.970115 C144.441,132.587654 144.011154,132.232269 143.481462,131.980115 C142.953038,131.726692 142.334077,131.585808 141.658423,131.587068 C141.074577,131.587068 140.600731,132.060923 140.600731,132.644769 C140.600731,133.229038 141.074577,133.702462 141.658423,133.702462 C142.002808,133.703308 142.258346,133.76 142.475808,133.847577 C142.665769,133.925 142.830769,134.0295 142.992808,134.168269 C143.275423,134.409 143.543231,134.767769 143.803423,135.2065 C144.201115,135.862692 144.555231,136.675423 145.109038,137.425962 C145.389115,137.799538 145.732231,138.165077 146.188731,138.443462 C146.642692,138.722692 147.209192,138.890231 147.808269,138.886896 C148.392115,138.886896 148.865962,138.413423 148.865962,137.829154 C148.865962,137.245308 148.392115,136.771462 147.808269,136.771462","id","Fill-44"],["d","M135.508154,138.886873 C136.029808,138.888962 136.527346,138.764577 136.945769,138.545423 C137.313423,138.354615 137.617615,138.101192 137.870615,137.830423 C138.313154,137.353615 138.616923,136.825192 138.896577,136.319615 C139.3095,135.559346 139.676731,134.8435 140.093462,134.393346 C140.300769,134.166154 140.5085,134.003269 140.746269,133.889462 C140.985308,133.776923 141.262846,133.704154 141.658423,133.702462 C142.242692,133.702462 142.716115,133.229038 142.716115,132.644769 C142.716115,132.060923 142.242692,131.587076 141.658423,131.587076 C141.070346,131.586654 140.525423,131.692 140.045231,131.887885 C139.624269,132.058385 139.257462,132.295308 138.945654,132.563538 C138.398615,133.034846 138.015731,133.589923 137.696731,134.122154 C137.225,134.921346 136.870038,135.691346 136.512962,136.159269 C136.337385,136.394923 136.1745,136.548077 136.028538,136.635654 C135.880038,136.721962 135.748885,136.7685 135.508154,136.771462 C134.924308,136.771462 134.450462,137.245308 134.450462,137.829154 C134.450462,138.413423 134.924308,138.886873 135.508154,138.886873","id","Fill-45"],["d","M147.808269,138.886873 C148.3295,138.888962 148.827038,138.764577 149.245462,138.545423 C149.613115,138.354615 149.917308,138.101192 150.170308,137.830423 C150.612423,137.353192 150.916192,136.825192 151.196269,136.319615 C151.608769,135.559346 151.976,134.8435 152.392731,134.393346 C152.600038,134.166154 152.808192,134.003269 153.045538,133.889462 C153.284577,133.776923 153.562115,133.704154 153.957692,133.702462 C154.541538,133.702462 155.015385,133.229038 155.015385,132.644769 C155.015385,132.060923 154.541538,131.587076 153.957692,131.587076 C153.369192,131.586654 152.824269,131.692 152.344077,131.887885 C151.923538,132.058385 151.556731,132.295308 151.244923,132.563538 C150.697885,133.034846 150.315,133.589923 149.996,134.122154 C149.524269,134.921346 149.169731,135.691346 148.812231,136.159269 C148.636654,136.394923 148.473769,136.548077 148.328231,136.635654 C148.179731,136.721962 148.048154,136.7685 147.808269,136.771462 C147.224,136.771462 146.750577,137.245308 146.750577,137.829154 C146.750577,138.413423 147.224,138.886873 147.808269,138.886873","id","Fill-46"],["d","M170.546962,233.332423 C170.337115,233.330308 170.211038,233.292654 170.083269,233.228346 C169.972423,233.170808 169.857769,233.083231 169.730423,232.947 C169.507462,232.711769 169.265462,232.325923 169.012038,231.860962 C168.624077,231.165423 168.218346,230.298538 167.526615,229.529808 C167.179692,229.147769 166.749,228.792385 166.219308,228.540231 C165.690885,228.286385 165.071923,228.145923 164.396692,228.147184 C163.812423,228.147184 163.339,228.620615 163.339,229.204885 C163.339,229.789154 163.812423,230.262577 164.396692,230.262577 C164.741077,230.263423 164.996192,230.319692 165.214077,230.407692 C165.404038,230.485115 165.569038,230.589192 165.7315,230.727962 C166.013692,230.969115 166.2815,231.327885 166.542115,231.766615 C166.939385,232.422808 167.293923,233.235538 167.847731,233.9865 C168.127808,234.360077 168.470923,234.725615 168.927423,235.004 C169.381385,235.283654 169.947885,235.451192 170.546962,235.447858 C171.130808,235.447858 171.604654,234.973962 171.604654,234.390115 C171.604654,233.805846 171.130808,233.332423 170.546962,233.332423","id","Fill-47"],["d","M182.846654,233.332423 C182.637231,233.330308 182.510731,233.292654 182.382962,233.228346 C182.272538,233.170808 182.157462,233.083231 182.030115,232.947 C181.807154,232.711769 181.565577,232.326346 181.311731,231.861385 C180.924192,231.165846 180.518462,230.299385 179.826731,229.530654 C179.479808,229.148615 179.049538,228.793231 178.519846,228.540654 C177.991423,228.287231 177.372462,228.146769 176.697231,228.14803 C176.112962,228.14803 175.639538,228.621462 175.639538,229.205731 C175.639538,229.79 176.112962,230.263423 176.697231,230.263423 C177.041615,230.264269 177.296731,230.320538 177.514192,230.408115 C177.704154,230.485962 177.869577,230.590038 178.031615,230.728808 C178.313808,230.969538 178.581615,231.328308 178.842231,231.767038 C179.2395,232.423231 179.593615,233.235962 180.147846,233.9865 C180.4275,234.360077 180.771038,234.725615 181.227538,235.004 C181.681077,235.283654 182.247577,235.451192 182.846654,235.447858 C183.430923,235.447858 183.904346,234.973962 183.904346,234.390115 C183.904346,233.805846 183.430923,233.332423 182.846654,233.332423","id","Fill-48"],["d","M170.546962,235.447825 C171.068192,235.4495 171.565731,235.325538 171.984577,235.105962 C172.352231,234.915577 172.656423,234.662154 172.909,234.390962 C173.351538,233.914154 173.655308,233.385731 173.935385,232.880154 C174.347885,232.120308 174.715115,231.404038 175.131846,230.953885 C175.339154,230.726692 175.547308,230.563808 175.785077,230.45 C176.023692,230.337462 176.301231,230.264692 176.697231,230.263423 C177.2815,230.263423 177.754923,229.79 177.754923,229.205731 C177.754923,228.621462 177.2815,228.148033 176.697231,228.148033 C176.108731,228.147192 175.563808,228.252538 175.083615,228.448423 C174.663077,228.618923 174.295846,228.855846 173.984038,229.124077 C173.437,229.595808 173.054115,230.150885 172.735115,230.682692 C172.263385,231.481885 171.908846,232.251885 171.551769,232.719808 C171.375769,232.955885 171.212885,233.108615 171.067346,233.196192 C170.918846,233.282923 170.787269,233.329038 170.546962,233.332423 C169.962692,233.332423 169.489269,233.805846 169.489269,234.390115 C169.489269,234.973962 169.962692,235.447825 170.546962,235.447825","id","Fill-49"],["d","M182.847077,235.447825 C183.368308,235.4495 183.865846,235.325115 184.284269,235.105538 C184.6515,234.915154 184.955692,234.661731 185.208692,234.390538 C185.650808,233.913731 185.954577,233.385308 186.234654,232.880154 C186.647154,232.119885 187.014385,231.404038 187.431115,230.953885 C187.638423,230.726692 187.846154,230.563808 188.0835,230.45 C188.322538,230.337462 188.599654,230.264692 188.995231,230.263423 L188.995654,230.263423 L188.995654,229.208692 L188.828962,230.249885 C188.906385,230.262154 188.966038,230.263423 188.995654,230.263423 L188.995654,229.208692 L188.828962,230.249885 C189.405615,230.342115 189.948,229.9495 190.040654,229.372846 C190.132885,228.795769 189.739846,228.253385 189.163192,228.161154 C189.085769,228.148885 189.025692,228.148033 188.995654,228.148033 L188.995231,228.148033 C188.407154,228.147192 187.862231,228.252538 187.382038,228.448423 C186.9615,228.618923 186.594692,228.855846 186.282885,229.124077 C185.736269,229.595385 185.353385,230.150462 185.034385,230.682269 C184.562654,231.481462 184.208115,232.251462 183.851038,232.719808 C183.675038,232.955462 183.512154,233.108192 183.366615,233.196192 C183.218115,233.2825 183.086538,233.329038 182.846231,233.332423 C182.261962,233.332423 181.788962,233.806269 181.788962,234.390115 C181.788962,234.974385 182.262808,235.447825 182.847077,235.447825","id","Fill-50"],["d","M187.318577,94.1223462 C187.109154,94.1202308 186.983077,94.0825769 186.855308,94.0182692 C186.744462,93.9607308 186.629385,93.8731538 186.502462,93.7369231 C186.2795,93.5016923 186.0375,93.1162692 185.784077,92.6508846 C185.396115,91.9553462 184.990385,91.0888846 184.298654,90.3201538 C183.951731,89.9381154 183.521462,89.5827308 182.991769,89.3305769 C182.463346,89.0767308 181.844385,88.9362692 181.169154,88.9375299 C180.584885,88.9375299 180.111462,89.4109615 180.111462,89.9952308 C180.111462,90.5795 180.584885,91.0529231 181.169154,91.0529231 C181.513538,91.0537692 181.768654,91.1100385 181.986115,91.1980385 C182.1765,91.2754615 182.3415,91.3795385 182.503538,91.5183077 C182.786154,91.7590385 183.053538,92.1182308 183.314154,92.5565385 C183.711423,93.2131538 184.065538,94.0258846 184.619769,94.7764231 C184.899423,95.15 185.242962,95.5155385 185.699462,95.7939231 C186.153,96.0735769 186.7195,96.2411154 187.318577,96.2377811 C187.902846,96.2377811 188.376269,95.7638846 188.376269,95.1800385 C188.376269,94.5957692 187.902846,94.1223462 187.318577,94.1223462","id","Fill-51"],["d","M199.618692,94.1223462 C199.408846,94.1202308 199.282769,94.0825769 199.155,94.0182692 C199.044154,93.9607308 198.9295,93.8731538 198.802154,93.7369231 C198.579192,93.5016923 198.337192,93.1162692 198.083769,92.6513077 C197.695808,91.9557692 197.2905,91.0893077 196.598346,90.3205769 C196.251423,89.9385385 195.821154,89.5831538 195.291885,89.331 C194.763038,89.0771538 194.1445,88.9366923 193.468846,88.937953 C192.885,88.937953 192.411154,89.4113846 192.411154,89.9956538 C192.411154,90.5799231 192.885,91.0533462 193.468846,91.0533462 C193.813231,91.0541923 194.068769,91.1104615 194.286231,91.1980385 C194.476192,91.2758846 194.641192,91.3799615 194.803231,91.5187308 C195.085846,91.7594615 195.353231,92.1182308 195.613846,92.5569615 C196.011115,93.2131538 196.365654,94.0258846 196.919462,94.7768462 C197.199538,95.15 197.542654,95.5155385 197.999154,95.7939231 C198.453115,96.0735769 199.019615,96.2411154 199.618692,96.2377811 C200.202538,96.2377811 200.676385,95.7638846 200.676385,95.1800385 C200.676385,94.5957692 200.202538,94.1223462 199.618692,94.1223462","id","Fill-52"],["d","M187.318577,96.2377479 C187.839808,96.2394231 188.337769,96.1154615 188.756192,95.8958846 C189.123846,95.7055 189.428038,95.4520769 189.681038,95.1808846 C190.123577,94.7040769 190.427346,94.1756538 190.707423,93.6705 C191.119923,92.9102308 191.487577,92.1939615 191.904308,91.7438077 C192.111615,91.5166154 192.319346,91.3537308 192.557115,91.2399231 C192.795731,91.1273846 193.073269,91.0546154 193.468846,91.0533462 C194.053115,91.0533462 194.526538,90.5799231 194.526538,89.9956538 C194.526538,89.4113846 194.053115,88.9379565 193.468846,88.9379565 C192.880769,88.9371154 192.335846,89.0424615 191.855654,89.2383462 C191.435115,89.4088462 191.067885,89.6457692 190.756077,89.914 C190.209462,90.3857308 189.826154,90.9408077 189.507577,91.4726154 C189.035423,92.2718077 188.680885,93.0418077 188.323808,93.5097308 C188.147808,93.7453846 187.984923,93.8985385 187.839385,93.9861154 C187.690462,94.0728462 187.558885,94.1189615 187.318577,94.1223462 C186.734731,94.1223462 186.260885,94.5957692 186.260885,95.1800385 C186.260885,95.7638846 186.734731,96.2377479 187.318577,96.2377479","id","Fill-53"],["d","M199.618692,96.2377478 C200.139923,96.2394231 200.637462,96.1150385 201.056308,95.8958846 C201.423538,95.7050769 201.728154,95.4516538 201.980731,95.1808846 C202.423269,94.7036538 202.727038,94.1756538 203.006692,93.6700769 C203.419615,92.9102308 203.786846,92.1939615 204.203577,91.7438077 C204.410885,91.5166154 204.618615,91.3537308 204.856385,91.2399231 C205.095423,91.1273846 205.372962,91.0546154 205.768962,91.0533462 C206.352808,91.0533462 206.826654,90.5795 206.826654,89.9956538 C206.826654,89.4113846 206.352808,88.9379565 205.768962,88.9379565 C205.180462,88.9371154 204.635538,89.0424615 204.155346,89.2383462 C203.734808,89.4088462 203.367577,89.6457692 203.055769,89.914 C202.508731,90.3853077 202.125846,90.9403846 201.806846,91.4721923 C201.335115,92.2718077 200.980577,93.0418077 200.623077,93.5097308 C200.4475,93.7453846 200.284615,93.8985385 200.138654,93.9861154 C199.990154,94.0724231 199.858577,94.1189615 199.618269,94.1223462 C199.034,94.1223462 198.560577,94.5957692 198.560577,95.1800385 C198.561,95.7643077 199.034423,96.2377478 199.618692,96.2377478","id","Fill-54"],["d","M16.2766154,87.857 C16.0667692,87.8553077 15.9406923,87.8172308 15.8129231,87.7529231 C15.7020769,87.6958077 15.5874231,87.6078077 15.4600769,87.472 C15.2371154,87.2367692 14.9951154,86.8509231 14.7416923,86.3859615 C14.3537308,85.6904231 13.948,84.8235385 13.2562692,84.0552308 C12.9093462,83.6727692 12.4790769,83.3173846 11.9493846,83.0652308 C11.4209615,82.8118077 10.802,82.6709231 10.1263462,82.6721838 C9.5425,82.6721838 9.06865385,83.1460385 9.06865385,83.7298846 C9.06865385,84.3141538 9.5425,84.7875769 10.1263462,84.7875769 C10.4707308,84.7884231 10.7262692,84.8451154 10.9437308,84.9326923 C11.1341154,85.0101154 11.2991154,85.1146154 11.4611538,85.2533846 C11.7437692,85.4941154 12.0111538,85.8528846 12.2717692,86.2916154 C12.6690385,86.9478077 13.0235769,87.7605385 13.5773846,88.5115 C13.8574615,88.8850769 14.2005769,89.2506154 14.6570769,89.5285769 C15.1110385,89.8082308 15.6775385,89.9757692 16.2766154,89.9724349 C16.8604615,89.9724349 17.3343077,89.4989615 17.3343077,88.9146923 C17.3343077,88.3304231 16.8604615,87.857 16.2766154,87.857","id","Fill-55"],["d","M28.5763077,87.857 C28.3664615,87.8553077 28.2403846,87.8172308 28.1126154,87.7529231 C28.0017692,87.6958077 27.8871154,87.6078077 27.7597692,87.472 C27.5368077,87.2367692 27.2948077,86.8509231 27.0413846,86.3859615 C26.6538462,85.6904231 26.2481154,84.8239615 25.5563846,84.0552308 C25.2094615,83.6731923 24.7791923,83.3178077 24.2495,83.0656538 C23.7210769,82.8122308 23.1021154,82.6713462 22.4268846,82.6726069 C21.8426154,82.6726069 21.3691923,83.1464615 21.3691923,83.7303077 C21.3691923,84.3145769 21.8426154,84.788 22.4268846,84.788 C22.7708462,84.7888462 23.0263846,84.8455385 23.2438462,84.9331154 C23.4338077,85.0105385 23.5988077,85.1150385 23.7612692,85.2538077 C24.0434615,85.4945385 24.3112692,85.8533077 24.5718846,86.2920385 C24.9691538,86.9482308 25.3232692,87.7609615 25.8775,88.5115 C26.1571538,88.8850769 26.5006923,89.2506154 26.9571923,89.5285769 C27.4107308,89.8082308 27.9772308,89.9757692 28.5763077,89.9724349 C29.1605769,89.9724349 29.634,89.4989615 29.634,88.9146923 C29.634,88.3304231 29.1605769,87.857 28.5763077,87.857","id","Fill-56"],["d","M16.2766154,89.9724112 C16.7978462,89.9745 17.2953846,89.8501154 17.7142308,89.6309615 C18.0814615,89.4401538 18.3860769,89.1867308 18.6386538,88.9159615 C19.0811923,88.4387308 19.3849615,87.9107308 19.6650385,87.4051538 C20.0775385,86.6448846 20.4451923,85.9290385 20.8619231,85.4788846 C21.0692308,85.2516923 21.2769615,85.0888077 21.5147308,84.975 C21.7533462,84.8624615 22.0308846,84.7892692 22.4268846,84.788 C23.0107308,84.788 23.4845769,84.3145769 23.4845769,83.7303077 C23.4845769,83.1464615 23.0107308,82.6726103 22.4268846,82.6726103 C21.8383846,82.6717692 21.2934615,82.7775385 20.8132692,82.9734231 C20.3927308,83.1439231 20.0255,83.3804231 19.7136923,83.6486538 C19.1670769,84.1203846 18.7837692,84.6754615 18.4647692,85.2072692 C17.9930385,86.0068846 17.6385,86.7764615 17.2814231,87.2448077 C17.1054231,87.4804615 16.9425385,87.6331923 16.797,87.7211923 C16.6485,87.8075 16.5169231,87.8536154 16.2766154,87.857 C15.6923462,87.857 15.2189231,88.3304231 15.2189231,88.9146923 C15.2189231,89.4989615 15.6923462,89.9724112 16.2766154,89.9724112","id","Fill-57"],["d","M28.5763077,89.9724017 C29.0975385,89.9740769 29.5950769,89.8501154 30.0139231,89.6305385 C30.3815769,89.4401538 30.6857692,89.1867308 30.9383462,88.9155385 C31.3808846,88.4387308 31.6842308,87.9103077 31.9643077,87.4047308 C32.3768077,86.6448846 32.7444615,85.9286154 33.1607692,85.4788846 C33.3685,85.2516923 33.5762308,85.0888077 33.8135769,84.975 C34.0526154,84.8624615 34.3301538,84.7892692 34.7257308,84.788 L34.7257308,83.7332692 L34.6381538,84.7846154 C34.6804615,84.788 34.7109231,84.788 34.7257308,84.788 L34.7257308,83.7332692 L34.6381538,84.7846154 C35.2203077,84.8328462 35.7318077,84.4004615 35.7800385,83.8183077 C35.8286923,83.2361538 35.3963077,82.7246538 34.8141538,82.6764231 C34.7714231,82.6730385 34.7409615,82.6726141 34.7257308,82.6726141 C34.1376538,82.6721923 33.5927308,82.7775385 33.1121154,82.9734231 C32.692,83.1435 32.3247692,83.3804231 32.0129615,83.6486538 C31.4659231,84.1203846 31.0830385,84.6754615 30.7644615,85.2072692 C30.2927308,86.0064615 29.9377692,86.7764615 29.5806923,87.2443846 C29.4046923,87.4804615 29.2422308,87.6331923 29.0962692,87.7211923 C28.9477692,87.8075 28.8161923,87.8536154 28.5758846,87.857 C27.9920385,87.857 27.5186154,88.3308462 27.5186154,88.9151154 C27.5186154,89.4989615 27.9920385,89.9724017 28.5763077,89.9724017","id","Fill-58"],["d","M135.468808,19.5072308 C135.466692,19.7170769 135.429038,19.8431538 135.364731,19.9709231 C135.307192,20.0817692 135.219615,20.1964231 135.083385,20.3237692 C134.848154,20.5467308 134.462731,20.7887308 133.997346,21.0421538 C133.301808,21.4301154 132.435346,21.8358462 131.667038,22.5275769 C131.285,22.8745 130.929192,23.3047692 130.677038,23.8344615 C130.423615,24.3628846 130.282731,24.9818462 130.284408,25.6575 C130.284408,26.2413462 130.757846,26.7151923 131.342115,26.7151923 C131.925962,26.7151923 132.399808,26.2413462 132.399808,25.6575 C132.400231,25.3131154 132.456923,25.0575769 132.5445,24.8401154 C132.622346,24.6497308 132.726423,24.4847308 132.865192,24.3226923 C133.105923,24.0400769 133.464692,23.7726923 133.903423,23.5120769 C134.559615,23.1148077 135.372346,22.7602692 136.122885,22.2064615 C136.496462,21.9263846 136.862,21.5832692 137.140385,21.1267692 C137.420038,20.6728077 137.587154,20.1063077 137.584231,19.5072308 C137.584231,18.9233846 137.110346,18.4495385 136.5265,18.4495385 C135.942231,18.4495385 135.468808,18.9233846 135.468808,19.5072308","id","Fill-59"],["d","M135.468808,7.20753846 C135.466692,7.41696154 135.429038,7.54346154 135.364731,7.67123077 C135.307192,7.78165385 135.219615,7.89673077 135.083385,8.02407692 C134.848154,8.24703846 134.462731,8.48861538 133.997346,8.74246154 C133.301808,9.13 132.435346,9.53573077 131.667038,10.2274615 C131.285,10.5743846 130.929615,11.0046538 130.677038,11.5343462 C130.423615,12.0627692 130.282731,12.6817308 130.284408,13.3569615 C130.284408,13.9412308 130.757846,14.4146538 131.342115,14.4146538 C131.925962,14.4146538 132.399808,13.9412308 132.399808,13.3569615 C132.400231,13.013 132.456923,12.7574615 132.5445,12.54 C132.622346,12.3500385 132.726423,12.1846154 132.865192,12.0225769 C133.105923,11.7403846 133.464692,11.4725769 133.903423,11.2119615 C134.559615,10.8146923 135.372346,10.4605769 136.122885,9.90634615 C136.496462,9.62669231 136.862,9.28315385 137.140385,8.82665385 C137.420038,8.37311538 137.587154,7.80661538 137.584231,7.20753846 C137.584231,6.62369231 137.110346,6.14984615 136.5265,6.14984615 C135.942231,6.14984615 135.468808,6.62369231 135.468808,7.20753846","id","Fill-60"],["d","M137.584209,19.5072308 C137.585885,18.986 137.461923,18.4884615 137.242346,18.0696154 C137.051962,17.7019615 136.798538,17.3977692 136.527346,17.1451923 C136.050538,16.7026538 135.522115,16.3988846 135.016538,16.1188077 C134.256692,15.7063077 133.540423,15.3386538 133.090269,14.9219231 C132.863077,14.7146154 132.700192,14.5068846 132.586385,14.2691154 C132.473846,14.0305 132.401077,13.7525385 132.399808,13.3569615 C132.399808,12.7731154 131.925962,12.2992692 131.342115,12.2992692 C130.757846,12.2992692 130.284418,12.7731154 130.284418,13.3569615 C130.283577,13.9454615 130.388923,14.4903846 130.584808,14.9705769 C130.755308,15.3911154 130.992231,15.7583462 131.260462,16.0701538 C131.731769,16.6167692 132.287269,17.0000769 132.819077,17.3186538 C133.618269,17.7908077 134.388269,18.1453462 134.856192,18.5024231 C135.091846,18.6784231 135.245,18.8413077 135.332577,18.9868462 C135.418885,19.1353462 135.465423,19.2669231 135.468808,19.5072308 C135.468808,20.0915 135.942231,20.5649231 136.5265,20.5649231 C137.110346,20.5649231 137.584209,20.0915 137.584209,19.5072308","id","Fill-61"],["d","M137.584209,7.20753846 C137.585885,6.68630769 137.461923,6.18876923 137.242346,5.76992308 C137.051962,5.40226923 136.798538,5.09807692 136.527346,4.8455 C136.050538,4.40296154 135.522115,4.09919231 135.016538,3.81953846 C134.256692,3.40661538 133.540423,3.03938462 133.090269,2.62265385 C132.863077,2.41534615 132.700192,2.20761538 132.586385,1.96984615 C132.473846,1.73080769 132.401077,1.45326923 132.399808,1.05769231 C132.399808,0.473423077 131.925962,0 131.342115,0 C130.757846,0 130.284418,0.473423077 130.284418,1.05769231 C130.283577,1.64576923 130.388923,2.19069231 130.584808,2.67130769 C130.755308,3.09184615 130.992231,3.45865385 131.260462,3.77046154 C131.731769,4.3175 132.287269,4.70038462 132.819077,5.01938462 C133.618269,5.49111538 134.388269,5.84565385 134.856192,6.20315385 C135.092269,6.37873077 135.245,6.54161538 135.332577,6.68715385 C135.419308,6.83565385 135.465423,6.96723077 135.468808,7.20753846 C135.468808,7.79180769 135.942231,8.26523077 136.5265,8.26523077 C137.110346,8.26523077 137.584209,7.79180769 137.584209,7.20753846","id","Fill-62"],["d","M97.7553077,83.8453846 C97.7536154,84.0548077 97.7155385,84.1808846 97.6516538,84.3090769 C97.5941154,84.4195 97.5065385,84.5345769 97.3703077,84.6615 C97.1350769,84.8844615 96.7492308,85.1264615 96.2842692,85.3798846 C95.5887308,85.7678462 94.7222692,86.1735769 93.9539615,86.8653077 C93.5715,87.2122308 93.2161154,87.6425 92.9639615,88.1721923 C92.7105385,88.7010385 92.5696538,89.3195769 92.5713311,89.9952308 C92.5713311,90.5795 93.0447692,91.0529231 93.6290385,91.0529231 C94.2128846,91.0529231 94.6867308,90.5795 94.6867308,89.9952308 C94.6871538,89.6508462 94.7438462,89.3953077 94.8314231,89.1778462 C94.9092692,88.9878846 95.0133462,88.8224615 95.1521154,88.6604231 C95.3928462,88.3782308 95.7516154,88.1104231 96.1903462,87.8498077 C96.8465385,87.4525385 97.6592692,87.0984231 98.4098077,86.5441923 C98.7833846,86.2645385 99.1489231,85.921 99.4273077,85.4645 C99.7065385,85.0109615 99.8740769,84.4440385 99.8707426,83.8453846 C99.8707426,83.2611154 99.3972692,82.7876923 98.813,82.7876923 C98.2291538,82.7876923 97.7553077,83.2611154 97.7553077,83.8453846","id","Fill-63"],["d","M97.7553077,71.5452692 C97.7536154,71.7551154 97.7155385,71.8811923 97.6516538,72.0089615 C97.5941154,72.1198077 97.5065385,72.2344615 97.3703077,72.3618077 C97.1350769,72.5847692 96.7492308,72.8267692 96.2842692,73.0801923 C95.5887308,73.4681538 94.7222692,73.8734615 93.9539615,74.5656154 C93.5715,74.9125385 93.2161154,75.3428077 92.9639615,75.8720769 C92.7105385,76.4009231 92.5696538,77.0194615 92.5713311,77.6951154 C92.5713311,78.2789615 93.0447692,78.7528077 93.6290385,78.7528077 C94.2128846,78.7528077 94.6867308,78.2789615 94.6867308,77.6951154 C94.6871538,77.3507308 94.7438462,77.0951923 94.8314231,76.8777308 C94.9092692,76.6877692 95.0133462,76.5227692 95.1521154,76.3607308 C95.3928462,76.0781154 95.7516154,75.8107308 96.1903462,75.5501154 C96.8465385,75.1528462 97.6592692,74.7983077 98.4098077,74.2445 C98.7833846,73.9644231 99.1489231,73.6213077 99.4273077,73.1648077 C99.7065385,72.7108462 99.8740769,72.1443462 99.8707426,71.5452692 C99.8707426,70.9614231 99.3972692,70.4875769 98.813,70.4875769 C98.2291538,70.4875769 97.7553077,70.9614231 97.7553077,71.5452692","id","Fill-64"],["d","M99.8707189,83.8453846 C99.8728077,83.3241538 99.7484231,82.8261923 99.5292692,82.4077692 C99.3388846,82.0401154 99.0854615,81.7359231 98.8142692,81.4829231 C98.3374615,81.0403846 97.8090385,80.7366154 97.3034615,80.4565385 C96.5436154,80.0440385 95.8273462,79.6768077 95.3771923,79.2600769 C95.15,79.0527692 94.9871154,78.8446154 94.8733077,78.6072692 C94.7607692,78.3682308 94.688,78.0906923 94.6867308,77.6951154 C94.6867308,77.1108462 94.2128846,76.6374231 93.6290385,76.6374231 C93.0447692,76.6374231 92.5713411,77.1108462 92.5713411,77.6951154 C92.5705,78.2831923 92.6758462,78.8281154 92.8717308,79.3083077 C93.0422308,79.7288462 93.2791538,80.0960769 93.5473846,80.4078846 C94.0186923,80.9549231 94.5737692,81.3378077 95.106,81.6568077 C95.9051923,82.1285385 96.6751923,82.4830769 97.1431154,82.8405769 C97.3787692,83.0161538 97.5319231,83.1790385 97.6195,83.3245769 C97.7058077,83.4735 97.7523462,83.6050769 97.7553077,83.8453846 C97.7553077,84.4292308 98.2291538,84.9030769 98.813,84.9030769 C99.3972692,84.9030769 99.8707189,84.4292308 99.8707189,83.8453846","id","Fill-65"],["d","M99.8707189,71.5452692 C99.8728077,71.0240385 99.7484231,70.5265 99.5292692,70.1080769 C99.3388846,69.7404231 99.0850385,69.4362308 98.8142692,69.1832308 C98.3374615,68.7411154 97.8090385,68.4373462 97.3034615,68.1572692 C96.5431923,67.7447692 95.8273462,67.3771154 95.3771923,66.9603846 C95.15,66.7530769 94.9871154,66.5453462 94.8733077,66.3075769 C94.7607692,66.0689615 94.688,65.791 94.6867308,65.3954231 C94.6867308,64.8115769 94.2128846,64.3377308 93.6290385,64.3377308 C93.0447692,64.3377308 92.5713411,64.8115769 92.5713411,65.3954231 C92.5705,65.9839231 92.6758462,66.5288462 92.8717308,67.0090385 C93.0422308,67.4295769 93.2791538,67.7968077 93.5473846,68.1086154 C94.0186923,68.6552308 94.5737692,69.0385385 95.106,69.3571154 C95.9051923,69.8292692 96.6751923,70.1838077 97.1431154,70.5408846 C97.3787692,70.7168846 97.5319231,70.8797692 97.6195,71.0253077 C97.7058077,71.1738077 97.7523462,71.3049615 97.7553077,71.5452692 C97.7553077,72.1295385 98.2291538,72.6029615 98.813,72.6029615 C99.3972692,72.6029615 99.8707189,72.1295385 99.8707189,71.5452692","id","Fill-66"],["d","M199.984654,186.622615 C199.982538,186.832462 199.944885,186.958538 199.880577,187.086308 C199.823038,187.197154 199.735462,187.311808 199.599231,187.439154 C199.364,187.662115 198.978577,187.904115 198.513192,188.157538 C197.817654,188.5455 196.951192,188.951231 196.182885,189.643385 C195.800846,189.990308 195.445462,190.420577 195.192885,190.950269 C194.939462,191.478692 194.799,192.097654 194.800261,192.773308 C194.800261,193.357154 195.273692,193.831 195.857962,193.831 C196.442231,193.831 196.915654,193.357154 196.915654,192.773308 C196.9165,192.4285 196.972769,192.173385 197.060769,191.9555 C197.138192,191.765538 197.242269,191.600115 197.381038,191.438077 C197.621769,191.155885 197.980962,190.888077 198.419269,190.627462 C199.075885,190.230192 199.888192,189.875654 200.639154,189.321846 C201.012308,189.041769 201.377846,188.698654 201.656231,188.242154 C201.935885,187.788192 202.103423,187.221692 202.100089,186.622615 C202.100089,186.038769 201.626192,185.564923 201.042346,185.564923 C200.458077,185.564923 199.984654,186.038769 199.984654,186.622615","id","Fill-67"],["d","M199.984654,174.322923 C199.982538,174.532769 199.944885,174.658846 199.880577,174.786615 C199.823038,174.897462 199.735462,175.012115 199.599231,175.139462 C199.364,175.362423 198.978577,175.604 198.513615,175.857846 C197.818077,176.245385 196.951615,176.651115 196.182885,177.342846 C195.800846,177.689769 195.445462,178.120038 195.193308,178.649731 C194.939462,179.178154 194.799,179.797115 194.800261,180.472346 C194.800261,181.056615 195.273692,181.530038 195.857962,181.530038 C196.442231,181.530038 196.915654,181.056615 196.915654,180.472346 C196.9165,180.128385 196.972769,179.872846 197.060769,179.655385 C197.138192,179.465423 197.242269,179.3 197.381038,179.137962 C197.621769,178.855769 197.980538,178.587962 198.419269,178.327346 C199.075462,177.930077 199.888192,177.575962 200.639154,177.021731 C201.012308,176.742077 201.377846,176.398538 201.656231,175.942038 C201.935885,175.4885 202.103423,174.922 202.100089,174.322923 C202.100089,173.738654 201.626192,173.265231 201.042346,173.265231 C200.458077,173.265231 199.984654,173.738654 199.984654,174.322923","id","Fill-68"],["d","M202.100056,186.622615 C202.101731,186.101385 201.977769,185.603846 201.758192,185.185 C201.567808,184.817769 201.314385,184.513154 201.043192,184.260577 C200.566385,183.818038 200.037962,183.514269 199.532808,183.234192 C198.772538,182.821692 198.056269,182.454462 197.606538,182.037731 C197.379346,181.830423 197.216038,181.622269 197.102231,181.384923 C196.990115,181.145885 196.916923,180.868346 196.915654,180.472346 C196.915654,179.8885 196.442231,179.414654 195.857962,179.414654 C195.273692,179.414654 194.800264,179.8885 194.800264,180.472346 C194.799423,181.060846 194.904769,181.605769 195.100654,182.085962 C195.271154,182.5065 195.508077,182.873731 195.776308,183.185538 C196.248038,183.732577 196.803115,184.115462 197.334923,184.434462 C198.134115,184.906192 198.904115,185.260731 199.372038,185.617808 C199.608115,185.793808 199.760846,185.956692 199.848423,186.102231 C199.935154,186.250731 199.981269,186.382308 199.984654,186.622615 C199.984654,187.206885 200.458077,187.680308 201.042346,187.680308 C201.626192,187.680308 202.100056,187.206885 202.100056,186.622615","id","Fill-69"],["d","M202.100056,174.322923 C202.101731,173.801692 201.977769,173.304154 201.758192,172.885308 C201.567808,172.518077 201.314385,172.213885 201.043192,171.960885 C200.566385,171.518769 200.037962,171.215 199.532808,170.934923 C198.772538,170.522423 198.056269,170.154769 197.606115,169.738462 C197.378923,169.530731 197.216038,169.323 197.102231,169.085654 C196.989692,168.846615 196.916923,168.569077 196.915654,168.1735 C196.915654,167.589231 196.442231,167.115808 195.857962,167.115808 C195.273692,167.115808 194.800264,167.589231 194.800264,168.1735 C194.799423,168.761577 194.904769,169.3065 195.100654,169.786692 C195.271154,170.207231 195.508077,170.574462 195.776308,170.886269 C196.248038,171.433308 196.803115,171.816192 197.334923,172.135192 C198.134115,172.606923 198.904115,172.961462 199.372038,173.318538 C199.608115,173.494538 199.760846,173.657423 199.848423,173.802962 C199.935154,173.951462 199.981269,174.082615 199.984654,174.322923 C199.984654,174.907192 200.458077,175.380615 201.042346,175.380615 C201.626192,175.380615 202.100056,174.907192 202.100056,174.322923","id","Fill-70"],["d","M73.1440769,196.315731 C73.1419615,196.525154 73.1043077,196.651231 73.04,196.779 C72.9824615,196.889846 72.8948846,197.004923 72.7586538,197.131846 C72.5234231,197.354808 72.138,197.596808 71.6726154,197.850231 C70.9770769,198.238192 70.1110385,198.643923 69.3423077,199.335654 C68.9602692,199.682577 68.6048846,200.112846 68.3523077,200.642538 C68.0988846,201.170962 67.958,201.7895 67.9596772,202.465154 C67.9596772,203.049 68.4331154,203.522846 69.0173846,203.522846 C69.6012308,203.522846 70.0750769,203.049 70.0750769,202.465154 C70.0755,202.120769 70.1321923,201.865654 70.2197692,201.647769 C70.2976154,201.457808 70.4016923,201.292808 70.5404615,201.130769 C70.7811923,200.848154 71.1399615,200.580769 71.5786923,200.320154 C72.2348846,199.922885 73.0476154,199.568346 73.7981538,199.014538 C74.1717308,198.734462 74.5372692,198.391346 74.8156538,197.934846 C75.0953077,197.480885 75.2624231,196.914385 75.2595003,196.315731 C75.2595003,195.731462 74.7856154,195.258038 74.2017692,195.258038 C73.6175,195.258038 73.1440769,195.731462 73.1440769,196.315731","id","Fill-71"],["d","M73.1440769,184.015615 C73.1419615,184.225462 73.1043077,184.351538 73.04,184.479308 C72.9824615,184.590154 72.8948846,184.704808 72.7586538,184.832154 C72.5234231,185.055115 72.138,185.297115 71.6726154,185.550538 C70.9770769,185.938077 70.1110385,186.343808 69.3423077,187.035962 C68.9602692,187.382462 68.6048846,187.812731 68.3523077,188.342423 C68.0988846,188.870846 67.958,189.489808 67.9596772,190.165038 C67.9596772,190.749308 68.4331154,191.222731 69.0173846,191.222731 C69.6012308,191.222731 70.0750769,190.749308 70.0750769,190.165038 C70.0755,189.821077 70.1321923,189.565538 70.2197692,189.348077 C70.2976154,189.158115 70.4016923,188.993115 70.5404615,188.830654 C70.7811923,188.548462 71.1399615,188.280654 71.5786923,188.020462 C72.2348846,187.622769 73.0476154,187.268654 73.7981538,186.714846 C74.1717308,186.434769 74.5372692,186.091654 74.8156538,185.634731 C75.0953077,185.181192 75.2624231,184.614692 75.2595003,184.015615 C75.2595003,183.431769 74.7856154,182.957923 74.2017692,182.957923 C73.6175,182.957923 73.1440769,183.431769 73.1440769,184.015615","id","Fill-72"],["d","M75.2594786,196.315731 C75.2611538,195.794077 75.1371923,195.296538 74.9176154,194.878115 C74.7272308,194.510462 74.4738077,194.205846 74.2026154,193.953269 C73.7258077,193.510731 73.1973846,193.206962 72.6918077,192.926885 C71.9319615,192.514385 71.2156923,192.146731 70.7655385,191.73 C70.5383462,191.522692 70.3754615,191.314962 70.2616538,191.077192 C70.1491154,190.838577 70.0763462,190.560615 70.0750769,190.165038 C70.0750769,189.581192 69.6012308,189.107346 69.0173846,189.107346 C68.4331154,189.107346 67.9596873,189.581192 67.9596873,190.165038 C67.9588462,190.753538 68.0641923,191.298462 68.2600769,191.778654 C68.4305769,192.199192 68.6675,192.566423 68.9357308,192.878231 C69.4070385,193.424846 69.9625385,193.807731 70.4943462,194.126731 C71.2935385,194.598462 72.0635385,194.953423 72.5314615,195.3105 C72.7671154,195.4865 72.9202692,195.649385 73.0078462,195.794923 C73.0941538,195.943423 73.1406923,196.075 73.1440769,196.315731 C73.1440769,196.899577 73.6175,197.373423 74.2017692,197.373423 C74.7856154,197.373423 75.2594786,196.899577 75.2594786,196.315731","id","Fill-73"],["d","M75.2594786,184.015615 C75.2611538,183.494385 75.1371923,182.996846 74.9176154,182.578 C74.7272308,182.210346 74.4738077,181.906154 74.2026154,181.653154 C73.7258077,181.211038 73.1973846,180.907269 72.6918077,180.627192 C71.9319615,180.214692 71.2156923,179.847462 70.7655385,179.430731 C70.5383462,179.223423 70.3754615,179.015269 70.2616538,178.7775 C70.1491154,178.538885 70.0763462,178.261346 70.0750769,177.865346 C70.0750769,177.281077 69.6012308,176.807654 69.0173846,176.807654 C68.4331154,176.807654 67.9596873,177.281077 67.9596873,177.865346 C67.9588462,178.453846 68.0641923,178.998769 68.2600769,179.478962 C68.4305769,179.8995 68.6675,180.266731 68.9357308,180.578538 C69.4070385,181.125577 69.9625385,181.508462 70.4943462,181.827462 C71.2935385,182.299192 72.0635385,182.653731 72.5314615,183.010808 C72.7671154,183.186808 72.9202692,183.349692 73.0078462,183.495231 C73.0941538,183.643731 73.1406923,183.775308 73.1440769,184.015615 C73.1440769,184.599885 73.6175,185.073308 74.2017692,185.073308 C74.7856154,185.073308 75.2594786,184.599885 75.2594786,184.015615","id","Fill-74"],["d","M150.245615,152.688038 L165.420962,152.688038 C166.005231,152.688038 166.478654,152.214615 166.478654,151.630346 C166.478654,151.0465 166.005231,150.572654 165.420962,150.572654 L150.245615,150.572654 C149.661769,150.572654 149.187923,151.0465 149.187923,151.630346 C149.187923,152.214615 149.661769,152.688038 150.245615,152.688038","id","Fill-75"],["d","M1.05769231,108.836538 L16.2330385,108.836538 C16.8173077,108.836538 17.2907308,108.363115 17.2907308,107.778846 C17.2907308,107.194577 16.8173077,106.721154 16.2330385,106.721154 L1.05769231,106.721154 C0.473423077,106.721154 0,107.194577 0,107.778846 C0,108.363115 0.473423077,108.836538 1.05769231,108.836538","id","Fill-76"],["d","M151.380308,38.2965 L166.555654,38.2965 C167.139923,38.2965 167.613346,37.8226538 167.613346,37.2388077 C167.613346,36.6545385 167.139923,36.1811154 166.555654,36.1811154 L151.380308,36.1811154 C150.796038,36.1811154 150.322615,36.6545385 150.322615,37.2388077 C150.322615,37.8226538 150.796038,38.2965 151.380308,38.2965","id","Fill-77"],["d","M211.198731,4.048 L226.374077,4.048 C226.957923,4.048 227.431769,3.57457692 227.431769,2.99030769 C227.431769,2.40646154 226.957923,1.93261538 226.374077,1.93261538 L211.198731,1.93261538 C210.614462,1.93261538 210.141038,2.40646154 210.141038,2.99030769 C210.141038,3.57457692 210.614462,4.048 211.198731,4.048","id","Fill-78"],["d","M61.5568462,230.232115 L76.7321923,230.232115 C77.3164615,230.232115 77.7898846,229.758269 77.7898846,229.174423 C77.7898846,228.590154 77.3164615,228.116731 76.7321923,228.116731 L61.5568462,228.116731 C60.9725769,228.116731 60.4991538,228.590154 60.4991538,229.174423 C60.4991538,229.758269 60.9725769,230.232115 61.5568462,230.232115","id","Fill-79"],["d","M101.2715,200.604038 L112.002,189.873538 C112.415346,189.460615 112.415346,188.790885 112.002,188.377962 C111.589077,187.964615 110.919346,187.964615 110.506423,188.377962 L99.7759231,199.108462 C99.3625769,199.521385 99.3625769,200.191115 99.7759231,200.604038 C100.188846,201.017385 100.858577,201.017385 101.2715,200.604038","id","Fill-80"],["d","M12.4435385,14.4688077 L23.1740385,3.73830769 C23.5873846,3.32538462 23.5873846,2.65565385 23.1740385,2.24273077 C22.7611154,1.82938462 22.0913846,1.82938462 21.6784615,2.24273077 L10.9479615,12.9732308 C10.5346154,13.3861538 10.5346154,14.0558846 10.9479615,14.4688077 C11.3608846,14.8821538 12.0306154,14.8821538 12.4435385,14.4688077","id","Fill-81"],["d","M219.533769,124.474308 L230.264269,113.743808 C230.677615,113.330885 230.677615,112.661154 230.264269,112.247808 C229.851346,111.834885 229.181615,111.834885 228.768692,112.247808 L218.037769,122.978731 C217.624846,123.391654 217.624846,124.061385 218.037769,124.474308 C218.451115,124.887231 219.120846,124.887231 219.533769,124.474308","id","Fill-82"],["d","M127.623269,71.2592692 L130.399077,66.4442308 L130.887731,66.4442308 L128.356038,70.8357692 L136.862423,70.8285769 L145.370923,70.8247692 L141.111808,63.4594231 L141.478192,63.2478846 L146.104115,71.2474231 L136.862846,71.2516538 L127.623269,71.2592692 M131.619231,64.3284231 L132.933308,62.0480385 L133.177846,62.4706923 L132.606269,63.4636538 L132.107462,64.328 L131.619231,64.3284231 M141.111808,63.4594231 L136.852269,56.0928077 L134.397577,60.3540385 L134.153038,59.9309615 L136.851423,55.2466538 L141.478192,63.2478846 L141.111808,63.4594231","id","Fill-83"],["d","M130.399077,66.4442308 L131.619231,64.3284231 L132.107462,64.328 L130.887731,66.4442308 L130.399077,66.4442308 M133.177846,62.4706923 L132.933308,62.0480385 L134.153038,59.9309615 L134.397577,60.3540385 L133.177846,62.4706923","id","Fill-84"],["d","M112.934462,165.183192 L115.710269,160.368154 L116.198923,160.368154 L113.666808,164.759692 L122.173615,164.7525 L130.682115,164.748692 L126.423,157.383346 L126.606192,157.277577 L126.789385,157.171808 L131.415308,165.171346 L122.174038,165.175577 L112.934462,165.183192 M116.930423,158.252346 L118.2445,155.971538 L118.489038,156.394615 L117.917038,157.387577 L117.418654,158.251923 L116.930423,158.252346 M126.423,157.383346 L122.163462,150.016731 L119.708769,154.277962 L119.464231,153.854885 L122.162615,149.170577 L126.789385,157.171808 L126.606192,157.277577 L126.423,157.383346","id","Fill-85"],["d","M115.710269,160.368154 L116.930423,158.252346 L117.418654,158.251923 L116.198923,160.368154 L115.710269,160.368154 M118.489038,156.394615 L118.2445,155.971538 L119.464231,153.854885 L119.708769,154.277962 L118.489038,156.394615","id","Fill-86"],["d","M163.850077,194.026038 L166.625885,189.211 L167.114538,189.210577 L164.582846,193.602538 L173.089231,193.595346 L181.597308,193.591115 L177.338615,186.226192 L177.705,186.014654 L182.3305,194.014192 L173.089654,194.018423 L163.850077,194.026038 M167.846038,187.095192 L169.160115,184.814385 L169.404654,185.237462 L168.334269,187.094769 L167.846038,187.095192 M177.338615,186.226192 L173.079077,178.859577 L170.624385,183.120808 L170.379423,182.697731 L173.078231,178.013423 L177.705,186.014654 L177.338615,186.226192","id","Fill-87"],["d","M166.625885,189.211 L167.846038,187.095192 L168.334269,187.094769 L167.114538,189.210577 L166.625885,189.211 M169.404654,185.237462 L169.160115,184.814385 L170.379423,182.697731 L170.624385,183.120808 L169.404654,185.237462","id","Fill-88"],["d","M204.624962,136.113577 L198.087577,129.582115 L196.504846,128.001923 L196.630923,127.529769 L198.386269,129.282577 L204.405385,135.296192 L208.799038,118.855423 L200.584577,121.064731 L198.186154,121.709077 L198.312231,121.237346 L200.475,120.656462 L209.396846,118.256346 L204.624962,136.113577 M194.776154,126.276192 L191.548923,123.053615 L195.953154,121.870692 L195.827077,122.342846 L192.366308,123.271923 L194.902231,125.804038 L194.776154,126.276192","id","Fill-89"],["d","M196.504846,128.001923 L194.776154,126.276192 L194.902231,125.804038 L196.630923,127.529769 L196.504846,128.001923 M195.827077,122.342846 L195.953154,121.870692 L198.312231,121.237346 L198.186154,121.709077 L195.827077,122.342846","id","Fill-90"],["d","M58.6947308,36.5669615 L50.5746154,28.4553077 L50.7006923,27.9835769 L52.4560385,29.7359615 L58.4751538,35.7495769 L62.8683846,19.3088077 L54.6539231,21.5185385 L52.2559231,22.1624615 L52.382,21.6907308 L54.5443462,21.1098462 L63.4661923,18.7101538 L58.6947308,36.5669615 M48.8459231,26.73 L45.6182692,23.5074231 L50.0229231,22.3245 L49.8968462,22.7962308 L46.4356538,23.7261538 L48.972,26.2578462 L48.8459231,26.73","id","Fill-91"],["d","M50.5746154,28.4553077 L48.8459231,26.73 L48.972,26.2578462 L50.7006923,27.9835769 L50.5746154,28.4553077 M49.8968462,22.7962308 L50.0229231,22.3245 L52.382,21.6907308 L52.2559231,22.1624615 L49.8968462,22.7962308","id","Fill-92"],["d","M52.6180769,221.837 L46.0802692,215.305538 L44.4975385,213.725769 L44.6240385,213.253615 L46.3793846,215.006 L52.3985,221.019615 L54.5942692,212.8005 L54.7986154,212.855077 L54.5942692,212.8005 L56.7913077,204.579269 L48.5772692,206.788577 L46.1792692,207.432923 L46.3053462,206.960769 L48.4672692,206.379885 L57.3895385,203.980192 L52.6180769,221.837 M42.7692692,212.000038 L39.5411923,208.777885 L43.9462692,207.594538 L43.8201923,208.066692 L40.359,208.996192 L42.8953462,211.528308 L42.7692692,212.000038","id","Fill-93"],["d","M44.4975385,213.725769 L42.7692692,212.000038 L42.8953462,211.528308 L44.6240385,213.253615 L44.4975385,213.725769 M43.8201923,208.066692 L43.9462692,207.594538 L46.3053462,206.960769 L46.1792692,207.432923 L43.8201923,208.066692","id","Fill-94"],["d","M207.903385,41.9726154 L207.898308,31.7185 L208.320962,31.4739615 L208.322231,32.7309231 L208.326038,41.2394231 L215.690962,36.9798846 L223.058,32.7207692 L215.687154,28.4743462 L214.564731,27.8270385 C214.667538,27.7276154 214.748346,27.6078846 214.803346,27.4767308 L215.898269,28.1079615 L223.904154,32.7199231 L207.903385,41.9726154 M207.896192,29.2760769 L207.892385,24.8697308 L208.315885,25.1134231 L208.318846,29.0315385 L207.896192,29.2760769","id","Fill-95"],["d","M207.898308,31.7185 L207.896192,29.2760769 L208.318846,29.0315385 L208.320962,31.4739615 L207.898308,31.7185 M214.564731,27.8270385 L208.315038,24.2245385 L208.315885,25.1134231 L207.892385,24.8697308 L207.891115,23.4917692 L214.803346,27.4767308 C214.748346,27.6078846 214.667538,27.7276154 214.564731,27.8270385","id","Fill-96"],["d","M46.7089615,130.629231 L46.7034615,120.374269 L47.1265385,120.130154 L47.1316154,129.896038 L61.8627308,121.376538 L54.4923077,117.130538 L53.3698846,116.483231 C53.4726923,116.383385 53.5535,116.264077 53.6085,116.1325 L54.7034231,116.763731 L62.7093077,121.375692 L54.7080769,126.002885 L54.7080769,126.002462 L46.7089615,130.629231 M46.7013462,117.932269 L46.6975385,113.5255 L47.1206154,113.769615 L47.1244231,117.687731 L46.7013462,117.932269","id","Fill-97"],["d","M46.7034615,120.374269 L46.7013462,117.932269 L47.1244231,117.687731 L47.1265385,120.130154 L46.7034615,120.374269 M53.3698846,116.483231 L47.1201923,112.880308 L47.1206154,113.769615 L46.6975385,113.5255 L46.6962692,112.147962 L53.6085,116.1325 C53.5535,116.264077 53.4726923,116.383385 53.3698846,116.483231","id","Fill-98"],["d","M149.559808,118.2335 C146.269538,118.2335 143.513615,115.9455 142.796923,112.873538 C142.930615,112.820231 143.062192,112.763115 143.192077,112.702615 C143.464538,113.936308 144.086038,115.038 144.948692,115.900654 C146.1295,117.081038 147.758346,117.810423 149.559808,117.810423 C151.360846,117.810423 152.989692,117.081038 154.1705,115.900654 C155.350885,114.719846 156.080269,113.091 156.080269,111.289538 C156.080269,109.488077 155.350885,107.859231 154.1705,106.678423 C152.989692,105.498038 151.360846,104.768654 149.559808,104.768654 C148.904038,104.768654 148.271115,104.865115 147.674154,105.045346 C147.663577,104.9015 147.648769,104.7585 147.630154,104.617192 C148.242769,104.440346 148.8905,104.345577 149.559808,104.345577 C153.394577,104.345577 156.503346,107.454346 156.503346,111.289538 C156.503346,115.124731 153.394577,118.2335 149.559808,118.2335 M142.648423,110.607115 C142.850654,108.535308 143.963346,106.730462 145.581192,105.597462 C145.581192,105.611 145.581192,105.624115 145.581192,105.637654 C145.581192,105.806885 145.573577,105.974 145.559192,106.139423 C145.344692,106.306538 145.140769,106.486346 144.948692,106.678423 C143.983654,107.643462 143.319846,108.908462 143.109577,110.322385 C142.961077,110.424346 142.807077,110.519538 142.648423,110.607115","id","Fill-99"],["d","M142.796923,112.873538 C142.678462,112.364577 142.615423,111.834462 142.615423,111.289538 C142.615423,111.058962 142.626846,110.831769 142.648423,110.607115 C142.807077,110.519538 142.961077,110.424346 143.109577,110.322385 C143.063038,110.638 143.0385,110.960808 143.0385,111.289538 C143.0385,111.774808 143.091385,112.247808 143.192077,112.702615 C143.062192,112.763115 142.930615,112.820231 142.796923,112.873538 M145.559192,106.139423 C145.573577,105.974 145.581192,105.806885 145.581192,105.637654 C145.581192,105.624115 145.581192,105.611 145.581192,105.597462 C146.198038,105.1655 146.8885,104.831269 147.630154,104.617192 C147.648769,104.7585 147.663577,104.9015 147.674154,105.045346 C146.898231,105.279308 146.183654,105.653731 145.559192,106.139423","id","Fill-100"],["d","M115.542308,43.1022308 C112.252462,43.1022308 109.496538,40.8142308 108.779846,37.7422692 C108.913115,37.6889615 109.045115,37.6318462 109.174577,37.5713462 C109.447038,38.8050385 110.068962,39.9067308 110.931192,40.7693846 C112.112,41.9497692 113.741269,42.6791538 115.542308,42.6791538 C117.343769,42.6791538 118.972615,41.9497692 120.153423,40.7693846 C121.333808,39.5885769 122.063192,37.9597308 122.063192,36.1582692 C122.063192,34.3568077 121.333808,32.7279615 120.153423,31.5471538 C118.972615,30.3667692 117.343769,29.6373846 115.542308,29.6373846 C114.886962,29.6373846 114.254038,29.7338462 113.657077,29.9140769 C113.6465,29.7702308 113.631692,29.6272308 113.613077,29.4859231 C114.225692,29.3090769 114.873,29.2143077 115.542308,29.2143077 C119.3775,29.2143077 122.486269,32.3226538 122.486269,36.1582692 C122.486269,39.9934615 119.3775,43.1022308 115.542308,43.1022308 M108.631346,35.4758462 C108.833154,33.4036154 109.945846,31.5991923 111.564115,30.4661923 C111.564115,30.4793077 111.564115,30.4928462 111.564115,30.5059615 C111.564115,30.6751923 111.556923,30.8427308 111.542115,31.0077308 C111.327615,31.1748462 111.123692,31.3550769 110.931192,31.5471538 C109.966154,32.5126154 109.302346,33.7771923 109.0925,35.1911154 C108.943577,35.2930769 108.789577,35.3882692 108.631346,35.4758462","id","Fill-101"],["d","M108.779846,37.7422692 C108.660962,37.2337308 108.597923,36.7031923 108.597923,36.1582692 C108.597923,35.9281154 108.609346,35.7005 108.631346,35.4758462 C108.789577,35.3882692 108.943577,35.2930769 109.0925,35.1911154 C109.045538,35.5067308 109.021,35.8295385 109.021,36.1582692 C109.021,36.6435385 109.074308,37.1165385 109.174577,37.5713462 C109.045115,37.6318462 108.913115,37.6889615 108.779846,37.7422692 M111.542115,31.0077308 C111.556923,30.8427308 111.564115,30.6751923 111.564115,30.5059615 C111.564115,30.4928462 111.564115,30.4793077 111.564115,30.4661923 C112.180962,30.0342308 112.871846,29.7 113.613077,29.4859231 C113.631692,29.6272308 113.6465,29.7702308 113.657077,29.9140769 C112.881577,30.1476154 112.166577,30.5220385 111.542115,31.0077308","id","Fill-102"],["d","M119.839077,241.801154 C116.549231,241.801154 113.793308,239.513154 113.076192,236.441192 C113.209885,236.387885 113.341462,236.330769 113.471346,236.270269 C113.743808,237.503962 114.365308,238.605654 115.227962,239.467885 C116.408769,240.648692 118.037615,241.378077 119.839077,241.378077 C121.640538,241.378077 123.269385,240.648692 124.450192,239.467885 C125.630577,238.2875 126.359962,236.658231 126.359962,234.856769 C126.359962,233.055308 125.630577,231.426462 124.450192,230.246077 C123.269385,229.065692 121.640538,228.336308 119.839077,228.336308 C119.183308,228.336308 118.550385,228.433192 117.953846,228.613 C117.942846,228.469154 117.928038,228.326154 117.909846,228.184846 C118.522038,228.008 119.169346,227.913231 119.839077,227.913231 C123.674269,227.913231 126.783038,231.021577 126.783038,234.856769 C126.783038,238.692385 123.674269,241.801154 119.839077,241.801154 M112.927692,234.175192 C113.1295,232.102962 114.242192,230.297692 115.860462,229.165115 C115.860462,229.178231 115.860462,229.191346 115.860462,229.204885 C115.860462,229.374115 115.853269,229.541654 115.838885,229.707077 C115.623962,229.873769 115.420038,230.054 115.227962,230.246077 C114.2625,231.211115 113.598692,232.476115 113.388846,233.890038 C113.239923,233.992 113.085923,234.087192 112.927692,234.175192","id","Fill-103"],["d","M113.076192,236.441192 C112.957308,235.932231 112.894692,235.402115 112.894692,234.856769 C112.894692,234.626615 112.905692,234.399423 112.927692,234.175192 C113.085923,234.087192 113.239923,233.992 113.388846,233.890038 C113.341885,234.205654 113.317769,234.528462 113.317769,234.856769 C113.317769,235.342462 113.370654,235.815462 113.471346,236.270269 C113.341462,236.330769 113.209885,236.387885 113.076192,236.441192 M115.838885,229.707077 C115.853269,229.541654 115.860462,229.374115 115.860462,229.204885 C115.860462,229.191346 115.860462,229.178231 115.860462,229.165115 C116.477308,228.733154 117.168192,228.398923 117.909846,228.184846 C117.928038,228.326154 117.942846,228.469154 117.953846,228.613 C117.177923,228.846538 116.462923,229.221385 115.838885,229.707077","id","Fill-104"],["d","M158.255308,224.794731 L157.832231,224.794731 C157.832231,222.993269 157.102423,221.364423 155.922038,220.184038 C154.741231,219.003654 153.112385,218.274269 151.310923,218.274269 C150.655154,218.274269 150.022654,218.370731 149.426115,218.550538 C149.415115,218.406692 149.400731,218.264538 149.382115,218.122385 C149.994308,217.945962 150.641615,217.851192 151.310923,217.851192 C155.146115,217.851192 158.255308,220.959538 158.255308,224.794731 M144.789615,224.794731 L144.366538,224.794731 C144.366538,222.439462 145.539308,220.358346 147.332731,219.102654 C147.332731,219.116192 147.332731,219.129308 147.332731,219.142846 C147.332731,219.291769 147.363615,219.4335 147.419462,219.562115 C147.164769,219.751654 146.924038,219.959808 146.699808,220.184038 C145.519423,221.364423 144.789615,222.993269 144.789615,224.794731","id","Fill-105"],["d","M147.419462,219.562115 C147.363615,219.4335 147.332731,219.291769 147.332731,219.142846 C147.332731,219.129308 147.332731,219.116192 147.332731,219.102654 C147.95,218.670692 148.640462,218.336462 149.382115,218.122385 C149.400731,218.264538 149.415115,218.406692 149.426115,218.550538 C148.694615,218.770962 148.017692,219.116615 147.419462,219.562115","id","Fill-106"],["d","M104.519462,121.387538 L104.096385,121.387538 C104.095962,119.586077 103.366577,117.957231 102.186192,116.776846 C101.005385,115.596462 99.3765385,114.867077 97.5755,114.867077 C96.9197308,114.867077 96.2868077,114.963538 95.6902692,115.143769 C95.6792692,114.999923 95.6644615,114.856923 95.6462692,114.715615 C96.2584615,114.538769 96.9057692,114.444 97.5755,114.444 C101.410269,114.444 104.519038,117.552346 104.519462,121.387538 M91.0541923,121.387538 L90.6311154,121.387538 C90.6311154,119.032269 91.8034615,116.951154 93.5968846,115.695885 C93.5968846,115.709 93.5968846,115.722538 93.5968846,115.736077 C93.5968846,115.885 93.6277692,116.026731 93.6831923,116.155346 C93.4289231,116.344885 93.1886154,116.552615 92.9643846,116.776846 C91.7835769,117.957231 91.0541923,119.586077 91.0541923,121.387538","id","Fill-107"],["d","M93.6831923,116.155346 C93.6277692,116.026731 93.5968846,115.885 93.5968846,115.736077 C93.5968846,115.722538 93.5968846,115.709 93.5968846,115.695885 C94.2137308,115.263923 94.9046154,114.929269 95.6462692,114.715615 C95.6644615,114.856923 95.6792692,114.999923 95.6902692,115.143769 C94.9587692,115.364192 94.2818462,115.709423 93.6831923,116.155346","id","Fill-108"],["d","M33.6274231,66.7251538 L33.2043462,66.7251538 C33.2043462,64.9232692 32.4779231,63.2944231 31.3030385,62.1136154 C30.1277308,60.9336538 28.5065,60.2042692 26.7139231,60.2042692 C26.0475769,60.2042692 25.4045,60.3049615 24.7995,60.4923846 C24.7889231,60.3485385 24.7741154,60.2055385 24.7559231,60.0638077 C25.377,59.8797692 26.0340385,59.7811923 26.7139231,59.7811923 C30.5326154,59.7811923 33.6274231,62.8903846 33.6274231,66.7251538 M20.2235,66.7251538 L19.8004231,66.7251538 C19.8004231,64.3910385 20.9469615,62.326 22.7052692,61.0669231 C22.7052692,61.0690385 22.7052692,61.0711538 22.7052692,61.0732692 C22.7052692,61.2327692 22.7403846,61.3842308 22.8038462,61.5200385 C22.5639615,61.7019615 22.3371923,61.9003846 22.1248077,62.1136154 C20.9499231,63.2944231 20.2235,64.9232692 20.2235,66.7251538","id","Fill-109"],["d","M22.8038462,61.5200385 C22.7403846,61.3842308 22.7052692,61.2327692 22.7052692,61.0732692 C22.7052692,61.0711538 22.7052692,61.0690385 22.7052692,61.0669231 C23.3212692,60.6260769 24.0125769,60.2838077 24.7559231,60.0638077 C24.7741154,60.2055385 24.7889231,60.3485385 24.7995,60.4923846 C24.0713846,60.7178846 23.3978462,61.0686154 22.8038462,61.5200385","id","Fill-110"],["d","M189.715731,77.9612308 C185.881385,77.9612308 182.771769,74.8664231 182.771346,71.0477308 C182.771769,67.2290385 185.881385,64.1342308 189.715731,64.1342308 L189.715731,64.5573077 C187.913846,64.5573077 186.285,65.2837308 185.104192,66.4586154 C183.923808,67.6339231 183.194423,69.2551538 183.194423,71.0477308 C183.194423,72.8403077 183.923808,74.4611154 185.104192,75.6368462 C186.285,76.8117308 187.914269,77.5381538 189.715731,77.5381538 L189.715731,77.9612308","id","Fill-111"],["d","M27.6019615,235.037846 C23.7671923,235.037846 20.6584231,231.942615 20.658,228.123923 C20.6584231,224.305231 23.7671923,221.210846 27.6019615,221.210846 L27.6019615,221.633923 C25.8000769,221.633923 24.1712308,222.360346 22.9904231,223.535231 C21.8104615,224.710538 21.0810769,226.331346 21.0810769,228.123923 C21.0810769,229.9165 21.8104615,231.537731 22.9904231,232.713038 C24.1712308,233.888346 25.8000769,234.614769 27.6019615,234.614769 L27.6019615,235.037846","id","Fill-112"],["d","M99.8465769,20.9211538 C96.0118077,20.9211538 92.9026154,17.8259231 92.9026154,14.0072308 C92.9026154,10.1885385 96.0118077,7.09415385 99.8465769,7.09415385 L99.8465769,7.51723077 C98.0446923,7.51723077 96.4158462,8.24365385 95.2350385,9.41853846 C94.0546538,10.5938462 93.3256923,12.2150769 93.3256923,14.0072308 C93.3256923,15.7998077 94.0546538,17.4210385 95.2350385,18.5967692 C96.4158462,19.7716538 98.0446923,20.4980769 99.8465769,20.4980769 L99.8465769,20.9211538","id","Fill-113"],["d","M24.2359615,170.959038 C20.9461154,170.959038 18.1901923,168.670615 17.4730769,165.599077 C17.6067692,165.545769 17.7383462,165.488654 17.8682308,165.428154 C18.1406923,166.661423 18.7626154,167.763538 19.6248462,168.625769 C20.8056538,169.806577 22.4349231,170.535962 24.2359615,170.535962 C26.037,170.535962 27.6662692,169.806577 28.8470769,168.625769 C30.0274615,167.444962 30.7568462,165.816115 30.7568462,164.014654 C30.7568462,162.213192 30.0274615,160.584346 28.8470769,159.403962 C27.6662692,158.223577 26.037,157.494192 24.2359615,157.494192 C23.5801923,157.494192 22.9476923,157.590654 22.3507308,157.770462 C22.3401538,157.627038 22.3253462,157.484038 22.3067308,157.342731 C22.9193462,157.165885 23.5666538,157.071115 24.2359615,157.071115 C28.0707308,157.071115 31.1799231,160.179462 31.1799231,164.014654 C31.1799231,167.849846 28.0711538,170.959038 24.2359615,170.959038 M17.3245769,163.332654 C17.5268077,161.260423 18.6395,159.455577 20.2573462,158.323 C20.2577692,158.336115 20.2577692,158.349231 20.2577692,158.362769 C20.2577692,158.532 20.2501538,158.699115 20.2357692,158.864538 C20.0208462,159.031654 19.8169231,159.211885 19.6248462,159.403962 C18.6593846,160.369 17.996,161.634 17.7857308,163.047923 C17.6368077,163.149885 17.4832308,163.245077 17.3245769,163.332654","id","Fill-114"],["d","M17.4730769,165.599077 C17.3541923,165.090115 17.2915769,164.56 17.2915769,164.014654 C17.2915769,163.7845 17.3025769,163.557308 17.3245769,163.332654 C17.4832308,163.245077 17.6368077,163.149885 17.7857308,163.047923 C17.7387692,163.363538 17.7146538,163.685923 17.7146538,164.014654 C17.7146538,164.500346 17.7675385,164.973346 17.8682308,165.428154 C17.7383462,165.488654 17.6067692,165.545769 17.4730769,165.599077 M20.2357692,158.864538 C20.2501538,158.699115 20.2577692,158.532 20.2577692,158.362769 C20.2577692,158.349231 20.2577692,158.336115 20.2573462,158.323 C20.8746154,157.891038 21.5650769,157.556385 22.3067308,157.342731 C22.3253462,157.484038 22.3401538,157.627038 22.3507308,157.770462 C21.5748077,158.004423 20.8602308,158.378846 20.2357692,158.864538","id","Fill-115"],["d","M231.849115,178.648038 C228.558846,178.648038 225.802923,176.360038 225.086231,173.288077 C225.219923,173.234346 225.3515,173.177654 225.481385,173.117154 C225.753846,174.350423 226.375769,175.452115 227.238,176.314769 C228.418808,177.495154 230.047654,178.224538 231.849115,178.224962 C233.650154,178.224538 235.279,177.495154 236.459808,176.314769 C237.640192,175.133962 238.369577,173.505115 238.369577,171.703654 C238.369577,169.902192 237.640192,168.273346 236.459808,167.092538 C235.279,165.912577 233.650154,165.183192 231.849115,165.183192 C231.193346,165.183192 230.560423,165.279654 229.963462,165.459462 C229.952885,165.316038 229.938077,165.173038 229.919462,165.031731 C230.532077,164.854885 231.179808,164.760115 231.849115,164.760115 C235.683462,164.760115 238.792654,167.868038 238.792654,171.703654 C238.792654,175.538846 235.683885,178.647615 231.849115,178.648038 M224.937731,171.021654 C225.139962,168.949423 226.252231,167.144577 227.870077,166.012 C227.8705,166.025115 227.8705,166.038231 227.8705,166.051346 C227.8705,166.221 227.862885,166.388538 227.8485,166.553962 C227.634,166.720654 227.430077,166.900885 227.238,167.092538 C226.272962,168.058 225.609154,169.323 225.398885,170.7365 C225.249962,170.838885 225.096385,170.933654 224.937731,171.021654","id","Fill-116"],["d","M225.086231,173.288077 C224.967769,172.779115 224.904731,172.248577 224.904731,171.703654 C224.904731,171.4735 224.916154,171.245885 224.937731,171.021654 C225.096385,170.933654 225.249962,170.838885 225.398885,170.7365 C225.351923,171.052115 225.327808,171.374923 225.327808,171.703654 C225.327808,172.188923 225.380692,172.661923 225.481385,173.117154 C225.3515,173.177654 225.219923,173.234346 225.086231,173.288077 M227.8485,166.553962 C227.862885,166.388538 227.8705,166.221 227.8705,166.051346 C227.8705,166.038231 227.8705,166.025115 227.870077,166.012 C228.487346,165.579615 229.177808,165.245808 229.919462,165.031731 C229.938077,165.173038 229.952885,165.316038 229.963462,165.459462 C229.187538,165.693423 228.472962,166.068269 227.8485,166.553962","id","Fill-117"],["d","M233.562154,77.9553077 L219.747,77.9553077 L219.747,73.1491538 L220.170077,73.1491538 L220.170077,77.5322308 L233.139077,77.5322308 L233.139077,64.5632308 L224.755385,64.5632308 L224.755385,64.1401538 L233.562154,64.1401538 L233.562154,77.9553077 M220.170077,71.0337692 L219.747,71.0337692 L219.747,64.1401538 L222.64,64.1401538 L222.64,64.5632308 L220.170077,64.5632308 L220.170077,71.0337692","id","Fill-118"],["d","M219.747,73.1491538 L220.170077,73.1491538 L220.170077,71.0337692 L219.747,71.0337692 L219.747,73.1491538 Z M222.64,64.5632308 L224.755385,64.5632308 L224.755385,64.1401538 L222.64,64.1401538 L222.64,64.5632308 Z","id","Fill-119"],["d","M82.1463077,84.6513462 L68.3315769,84.6513462 L68.3315769,79.8456154 L68.7546538,79.8456154 L68.7546538,84.2282692 L81.7232308,84.2282692 L81.7232308,71.2592692 L73.3391154,71.2592692 L73.3391154,70.8361923 L82.1463077,70.8361923 L82.1463077,84.6513462 M68.7546538,77.7302308 L68.3315769,77.7302308 L68.3315769,70.8361923 L71.2237308,70.8361923 L71.2237308,71.2592692 L68.7546538,71.2592692 L68.7546538,77.7302308","id","Fill-120"],["d","M68.3315769,79.8456154 L68.7546538,79.8456154 L68.7546538,77.7302308 L68.3315769,77.7302308 L68.3315769,79.8456154 Z M71.2237308,71.2592692 L73.3391154,71.2592692 L73.3391154,70.8361923 L71.2237308,70.8361923 L71.2237308,71.2592692 Z","id","Fill-121"],["d","M81.4740385,170.149269 L67.6593077,170.149269 L67.6593077,165.343538 L68.0823846,165.343538 L68.0823846,169.726192 L81.0509615,169.726192 L81.0509615,156.757192 L72.6672692,156.757192 L72.6672692,156.334115 L81.4740385,156.334115 L81.4740385,170.149269 M68.0823846,163.228154 L67.6593077,163.228154 L67.6593077,156.334115 L70.5518846,156.334115 L70.5518846,156.757192 L68.0823846,156.757192 L68.0823846,163.228154","id","Fill-122"],["d","M67.6593077,165.343538 L68.0823846,165.343538 L68.0823846,163.228154 L67.6593077,163.228154 L67.6593077,165.343538 Z M70.5518846,156.757192 L72.6672692,156.757192 L72.6672692,156.334115 L70.5518846,156.334115 L70.5518846,156.757192 Z","id","Fill-123"],["d","M233.561308,235.031923 L219.747,235.031923 L219.747,230.226192 L220.170077,230.226192 L220.170077,234.608846 L233.138231,234.608846 L233.138231,221.639846 L224.754538,221.639846 L224.754538,221.216769 L233.561308,221.216769 L233.561308,235.031923 M220.170077,228.110808 L219.747,228.110808 L219.747,221.216769 L222.639154,221.216769 L222.639154,221.639846 L220.170077,221.639846 L220.170077,228.110808","id","Fill-124"],["d","M219.747,230.226192 L220.170077,230.226192 L220.170077,228.110808 L219.747,228.110808 L219.747,230.226192 Z M222.639154,221.639846 L224.754538,221.639846 L224.754538,221.216769 L222.639154,221.216769 L222.639154,221.639846 Z","id","Fill-125"],["d","M178.0075,20.9156538 L164.193192,20.9156538 L164.193192,16.1095 L164.616269,16.1095 L164.616269,20.4925769 L177.584423,20.4925769 L177.584423,7.52315385 L169.200731,7.52315385 L169.200731,7.10007692 L178.0075,7.10007692 L178.0075,20.9156538 M164.616269,13.9941154 L164.193192,13.9941154 L164.193192,7.10007692 L167.085346,7.10007692 L167.085346,7.52315385 L164.616269,7.52315385 L164.616269,13.9941154","id","Fill-126"],["d","M164.193192,16.1095 L164.616269,16.1095 L164.616269,13.9941154 L164.193192,13.9941154 L164.193192,16.1095 Z M167.085346,7.52315385 L169.200731,7.52315385 L169.200731,7.10007692 L167.085346,7.10007692 L167.085346,7.52315385 Z","id","Fill-127"],["d","M145.154308,143.693 C144.562,143.693 144.078846,143.487385 143.693,143.165846 C143.304192,142.843462 143.005923,142.412769 142.732192,141.948231 C142.187692,141.018308 141.730346,139.944962 140.990808,139.262115 C140.4975,138.806885 139.894192,138.510731 139.011231,138.508615 L139.011231,138.085538 C139.0125,138.085538 139.014192,138.085538 139.015885,138.085538 C139.749923,138.085538 140.346038,138.281 140.829615,138.598308 C141.314462,138.916462 141.685923,139.350115 142.001538,139.819308 C142.628538,140.758115 143.052462,141.848385 143.651538,142.5325 C144.052615,142.989 144.496423,143.266538 145.1615,143.269923 L145.1615,143.693 C145.158962,143.693 145.156846,143.693 145.154308,143.693","id","Fill-128"],["d","M157.454423,143.693 C156.861692,143.693 156.378538,143.487385 155.992692,143.165846 C155.604308,142.843462 155.305615,142.412769 155.031885,141.948231 C154.487808,141.018308 154.030462,139.944962 153.290923,139.262115 C152.797615,138.806885 152.194731,138.510731 151.311769,138.508615 L151.311769,138.085538 C151.313462,138.085538 151.314731,138.085538 151.316423,138.085538 C152.050038,138.085538 152.646154,138.281 153.129731,138.598308 C153.615,138.916462 153.986038,139.350115 154.301231,139.819308 C154.928654,140.758115 155.352154,141.848385 155.951231,142.5325 C156.352731,142.989 156.796115,143.266538 157.461192,143.269923 L157.461192,143.693 C157.459077,143.693 157.456538,143.693 157.454423,143.693","id","Fill-129"],["d","M145.172077,143.693 C145.168269,143.693 145.164885,143.693 145.1615,143.693 L145.1615,143.269923 C145.662,143.268231 146.031769,143.109577 146.360077,142.840077 C146.686692,142.570154 146.963385,142.1805 147.226115,141.733731 C147.754538,140.841038 148.214423,139.727077 149.044077,138.952 C149.5945,138.437115 150.324308,138.085538 151.301615,138.085538 C151.305,138.085538 151.308385,138.085538 151.311769,138.085538 L151.311769,138.508615 C150.648808,138.509462 150.144923,138.678269 149.725231,138.952423 C149.305962,139.227 148.969615,139.613269 148.672615,140.055385 C148.075654,140.939192 147.658077,142.036231 146.990885,142.810038 C146.549615,143.323654 145.963654,143.693 145.172077,143.693","id","Fill-130"],["d","M157.471769,143.693 C157.468385,143.693 157.464577,143.693 157.461192,143.693 L157.461192,143.269923 C157.961692,143.268231 158.331462,143.109577 158.659346,142.840077 C158.985962,142.570154 159.263077,142.1805 159.525385,141.733731 C160.054231,140.841038 160.513692,139.727077 161.343346,138.952 C161.893769,138.437115 162.623577,138.085538 163.600462,138.085538 C163.603846,138.085538 163.607231,138.085538 163.610615,138.085538 L163.610615,138.508615 C162.947654,138.509462 162.444192,138.678269 162.0245,138.952423 C161.605231,139.226577 161.268885,139.613269 160.971885,140.055385 C160.375346,140.939192 159.957769,142.036231 159.290154,142.810038 C158.849308,143.323654 158.262923,143.693 157.471769,143.693","id","Fill-131"],["d","M180.193115,240.253538 C179.600385,240.253538 179.117231,240.047923 178.731385,239.726385 C178.343,239.404 178.044308,238.973308 177.770577,238.508769 C177.2265,237.578423 176.769154,236.505077 176.029615,235.821808 C175.535885,235.366577 174.933,235.070846 174.049615,235.068308 L174.049615,234.645231 C174.050885,234.645231 174.052577,234.645231 174.054269,234.645231 C174.788308,234.645231 175.384423,234.840692 175.868,235.158423 C176.353269,235.476577 176.724731,235.910231 177.039923,236.379423 C177.667346,237.318654 178.090846,238.4085 178.689923,239.093038 C179.091423,239.549538 179.535231,239.827077 180.199885,239.830462 L180.199885,240.253538 C180.197769,240.253538 180.195231,240.253538 180.193115,240.253538","id","Fill-132"],["d","M192.492808,240.253538 C191.9005,240.253538 191.416923,240.047923 191.0315,239.726385 C190.642692,239.404 190.344423,238.973308 190.070269,238.508769 C189.526192,237.578846 189.068846,236.505923 188.329731,235.822654 C187.836,235.367423 187.233115,235.071692 186.350154,235.069154 L186.350154,234.646077 C186.351846,234.646077 186.353538,234.646077 186.355231,234.646077 C187.088846,234.646077 187.684962,234.841538 188.168115,235.159269 C188.653385,235.477 189.024846,235.911077 189.340038,236.380269 C189.967038,237.319077 190.390962,238.408923 190.989615,239.093462 C191.391115,239.549538 191.834923,239.827077 192.499577,239.830462 L192.499577,240.253538 C192.497462,240.253538 192.494923,240.253538 192.492808,240.253538","id","Fill-133"],["d","M180.210462,240.253538 C180.207077,240.253538 180.203269,240.253538 180.199885,240.253538 L180.199885,239.830462 C180.700808,239.828769 181.070577,239.670115 181.398462,239.400615 C181.725077,239.130692 182.002192,238.741462 182.2645,238.294269 C182.793346,237.401577 183.252808,236.287615 184.082462,235.512962 C184.633308,234.997654 185.363115,234.646077 186.34,234.646077 C186.343385,234.646077 186.346769,234.646077 186.350154,234.646077 L186.350154,235.069154 C185.687192,235.07 185.183731,235.239231 184.763615,235.512962 C184.344346,235.787538 184.008,236.173808 183.711,236.615923 C183.114462,237.499731 182.696885,238.596769 182.029269,239.370577 C181.588423,239.884192 181.002038,240.253538 180.210462,240.253538","id","Fill-134"],["d","M192.5,240.253538 L192.499577,240.042 L192.499577,239.830462 C193.000077,239.828769 193.369846,239.669692 193.697731,239.400192 C194.024346,239.130692 194.301462,238.741038 194.563769,238.293846 C195.092192,237.401577 195.552077,236.287615 196.381308,235.512538 C196.932154,234.997654 197.661538,234.646077 198.638,234.646077 C198.641385,234.646077 198.644769,234.646077 198.648154,234.646077 L198.648577,234.646077 L198.682846,234.648615 L198.615577,235.066615 L198.648577,234.860577 L198.648577,235.069154 L198.648154,235.069154 C197.985615,235.07 197.482154,235.239231 197.062462,235.512962 C196.643192,235.787115 196.307269,236.173385 196.010269,236.615923 C195.413308,237.499308 194.996154,238.596346 194.328538,239.370154 C193.887692,239.883769 193.301308,240.253538 192.510154,240.253538 C192.506769,240.253538 192.502962,240.253538 192.5,240.253538","id","Fill-135"],["d","M196.964731,101.043462 C196.372423,101.043462 195.889269,100.837846 195.503423,100.516308 C195.114615,100.193923 194.816346,99.7632308 194.542615,99.2986923 C193.998115,98.3687692 193.541192,97.2954231 192.801654,96.6121538 C192.308346,96.1569231 191.705462,95.8611923 190.822077,95.8586538 L190.822077,95.4355769 C190.823769,95.4355769 190.825462,95.4355769 190.827154,95.4355769 C191.560769,95.4355769 192.156885,95.6310385 192.640462,95.9487692 C193.125308,96.2665 193.496769,96.7005769 193.811962,97.1697692 C194.438962,98.1085769 194.862885,99.1988462 195.461962,99.8829615 C195.863038,100.339462 196.306846,100.617 196.971923,100.620385 L196.971923,101.043462 C196.969385,101.043462 196.967269,101.043462 196.964731,101.043462","id","Fill-136"],["d","M209.264423,101.043462 C208.672115,101.043462 208.188962,100.837846 207.803115,100.516308 C207.414731,100.193923 207.116038,99.7632308 206.842308,99.2991154 C206.297808,98.3687692 205.840885,97.2958462 205.101346,96.6125769 C204.608038,96.1573462 204.005154,95.8616154 203.122192,95.8590769 L203.122192,95.436 C203.123885,95.436 203.125154,95.436 203.126846,95.436 C203.860885,95.436 204.456577,95.6314615 204.940154,95.9491923 C205.425,96.2669231 205.796462,96.701 206.111654,97.1701923 C206.739077,98.109 207.162577,99.1988462 207.761654,99.8833846 C208.163154,100.339462 208.606538,100.617 209.271615,100.620385 L209.271615,101.043462 C209.269077,101.043462 209.266962,101.043462 209.264423,101.043462","id","Fill-137"],["d","M196.9825,101.043462 C196.978692,101.043462 196.975308,101.043462 196.971923,101.043462 L196.971923,100.620385 C197.472423,100.618692 197.842192,100.460038 198.1705,100.190538 C198.497115,99.9206154 198.774231,99.5313846 199.036538,99.0841923 C199.565385,98.1915 200.025269,97.0775385 200.8545,96.3028846 C201.405346,95.7875769 202.135154,95.436 203.112038,95.436 C203.115423,95.436 203.118808,95.436 203.122192,95.436 L203.122192,95.8590769 C202.459231,95.8599231 201.955769,96.0291538 201.536077,96.3028846 C201.116385,96.5774615 200.780038,96.9637308 200.483462,97.4058462 C199.8865,98.2896538 199.468923,99.3866923 198.801308,100.1605 C198.360038,100.674115 197.774077,101.043462 196.9825,101.043462","id","Fill-138"],["d","M209.281769,101.043462 C209.278385,101.043462 209.275,101.043462 209.271615,101.043462 L209.271615,100.620385 C209.772115,100.618692 210.141885,100.460038 210.470192,100.190538 C210.796808,99.9206154 211.0735,99.5309615 211.336231,99.0841923 C211.864654,98.1915 212.324538,97.0775385 213.154192,96.3024615 C213.705038,95.7875769 214.434846,95.436 215.411731,95.436 C215.415115,95.436 215.4185,95.436 215.421885,95.436 L215.421885,95.8590769 C214.758923,95.8599231 214.255462,96.0291538 213.835346,96.3028846 C213.416077,96.5774615 213.079731,96.9637308 212.782731,97.4058462 C212.185769,98.2896538 211.768192,99.3866923 211.101,100.1605 C210.659731,100.674115 210.073346,101.043462 209.281769,101.043462","id","Fill-139"],["d","M25.9227692,94.7785385 C25.3300385,94.7785385 24.8468846,94.5729231 24.4610385,94.2513846 C24.0726538,93.9285769 23.7739615,93.4978846 23.5002308,93.0337692 C22.9561538,92.1034231 22.4988077,91.0305 21.7592692,90.3472308 C21.2655385,89.892 20.6626538,89.5958462 19.7796923,89.5937308 L19.7796923,89.1706538 C19.7813846,89.1706538 19.7826538,89.1706538 19.7843462,89.1706538 C20.5183846,89.1706538 21.1145,89.3656923 21.5976538,89.6834231 C22.0829231,90.0015769 22.4543846,90.4356538 22.7695769,90.9044231 C23.397,91.8436538 23.8205,92.9335 24.4195769,93.6180385 C24.8206538,94.0741154 25.2644615,94.3520769 25.9295385,94.3554615 L25.9295385,94.7785385 C25.927,94.7785385 25.9248846,94.7785385 25.9227692,94.7785385","id","Fill-140"],["d","M38.2224615,94.7785385 C37.6297308,94.7785385 37.1465769,94.5729231 36.7607308,94.2513846 C36.3723462,93.9285769 36.0736538,93.4983077 35.7999231,93.0337692 C35.2558462,92.1038462 34.7985,91.0305 34.0589615,90.3476538 C33.5656538,89.8924231 32.9627692,89.5962692 32.0798077,89.5941538 L32.0798077,89.1710769 C32.0815,89.1710769 32.0831923,89.1710769 32.0848846,89.1710769 C32.8185,89.1710769 33.4141923,89.3661154 33.8977692,89.6838462 C34.3830385,90.002 34.7545,90.4356538 35.0696923,90.9048462 C35.6966923,91.8436538 36.1201923,92.9335 36.7192692,93.6180385 C37.1207692,94.0741154 37.5645769,94.3520769 38.2292308,94.3554615 L38.2292308,94.7785385 C38.2271154,94.7785385 38.2245769,94.7785385 38.2224615,94.7785385","id","Fill-141"],["d","M25.9401154,94.7785385 C25.9367308,94.7785385 25.9329231,94.7785385 25.9295385,94.7785385 L25.9295385,94.3554615 C26.4304615,94.3537692 26.7998077,94.1946923 27.1281154,93.9256154 C27.4547308,93.6556923 27.7318462,93.2660385 27.9945769,92.8192692 C28.523,91.9265769 28.9824615,90.8126154 29.8121154,90.0375385 C30.3629615,89.5226538 31.0927692,89.1710769 32.0696538,89.1710769 C32.0730385,89.1710769 32.0764231,89.1710769 32.0798077,89.1710769 L32.0798077,89.5941538 C31.4168462,89.595 30.9133846,89.7638077 30.4932692,90.0379615 C30.074,90.3121154 29.7376538,90.6983846 29.4410769,91.1409231 C28.8441154,92.0247308 28.4265385,93.1217692 27.7589231,93.8955769 C27.3180769,94.4087692 26.7316923,94.7785385 25.9401154,94.7785385","id","Fill-142"],["d","M38.2398077,94.7785385 C38.2364231,94.7785385 38.2326154,94.7785385 38.2292308,94.7785385 L38.2292308,94.3554615 C38.7297308,94.3533462 39.0995,94.1946923 39.4278077,93.9251923 C39.7544231,93.6552692 40.0311154,93.2660385 40.2938462,92.8188462 C40.8222692,91.9265769 41.2817308,90.8126154 42.1113846,90.0375385 C42.6622308,89.5222308 43.3916154,89.1710769 44.3685,89.1710769 C44.3718846,89.1710769 44.3752692,89.1710769 44.3786538,89.1710769 L44.3790769,89.1710769 L44.396,89.1715 L44.3790769,89.386 L44.3790769,89.5941538 L44.3786538,89.5941538 C43.7156923,89.595 43.2126538,89.7638077 42.7925385,90.0379615 C42.3732692,90.3121154 42.0369231,90.6983846 41.7403462,91.1405 C41.1433846,92.0243077 40.7258077,93.1213462 40.0586154,93.8951538 C39.6173462,94.4087692 39.0313846,94.7785385 38.2398077,94.7785385","id","Fill-143"],["d","M141.206577,31.3093846 L140.783497,31.3093846 C140.782654,30.5732308 140.978115,29.9758462 141.296692,29.4914231 C141.614423,29.0061538 142.0485,28.6346923 142.517269,28.3195 C143.4565,27.6920769 144.546346,27.2685769 145.230462,26.6695 C145.686962,26.268 145.9645,25.8241923 145.967885,25.1595385 L146.390972,25.1595385 C146.392654,25.7552308 146.186615,26.2405 145.863808,26.6280385 C145.541423,27.0164231 145.110731,27.3151154 144.646192,27.5888462 C143.716269,28.1329231 142.643346,28.5902692 141.960077,29.3298077 C141.504846,29.8231154 141.209115,30.426 141.206577,31.3093846","id","Fill-144"],["d","M141.206577,19.0092692 L140.783497,19.0092692 C140.782654,18.2731154 140.978115,17.6757308 141.296692,17.1913077 C141.614423,16.7060385 142.0485,16.3345769 142.517269,16.0193846 C143.4565,15.3923846 144.546346,14.9684615 145.230462,14.3698077 C145.686962,13.9683077 145.9645,13.5245 145.967885,12.8598462 L146.390972,12.8598462 C146.392654,13.4551154 146.186615,13.9408077 145.863808,14.3279231 C145.541423,14.7167308 145.110731,15.015 144.646192,15.2891538 C143.716269,15.8332308 142.643346,16.2901538 141.960077,17.0296923 C141.504846,17.5234231 141.209115,18.1263077 141.206577,19.0092692","id","Fill-145"],["d","M146.390985,25.1595385 L145.967885,25.1595385 C145.966192,24.6586154 145.807538,24.2888462 145.538038,23.9609615 C145.268115,23.6339231 144.878462,23.3572308 144.431692,23.0945 C143.539,22.5660769 142.425038,22.1061923 141.650385,21.2769615 C141.133385,20.724 140.780962,19.9912308 140.783486,19.0092692 L141.206577,19.0092692 C141.207423,19.6722308 141.376231,20.1756923 141.650385,20.5953846 C141.924962,21.0150769 142.311231,21.351 142.753346,21.648 C143.637154,22.2449615 144.734192,22.6625385 145.508,23.3301538 C146.023731,23.7731154 146.394346,24.3624615 146.390985,25.1595385","id","Fill-146"],["d","M146.390985,12.8598462 L145.967885,12.8598462 C145.966192,12.3589231 145.807538,11.9891538 145.538038,11.6612692 C145.268115,11.3346538 144.878462,11.0575385 144.431692,10.7952308 C143.539,10.2668077 142.425038,9.80692308 141.650385,8.97726923 C141.133385,8.42473077 140.780962,7.69196154 140.783486,6.70957692 L141.206577,6.70957692 C141.207423,7.37253846 141.376231,7.87642308 141.650385,8.29611538 C141.924962,8.71538462 142.311231,9.05173077 142.753346,9.34873077 C143.637154,9.94569231 144.734192,10.3628462 145.508,11.0304615 C146.023731,11.4734231 146.394346,12.0627692 146.390985,12.8598462","id","Fill-147"],["d","M103.4935,95.6471154 L103.07042,95.6471154 C103.069577,94.9113846 103.265038,94.3135769 103.583192,93.8291538 C103.901346,93.3438846 104.335423,92.9724231 104.804192,92.6572308 C105.743,92.0298077 106.833269,91.6063077 107.517385,91.0072308 C107.973885,90.6057308 108.251423,90.1623462 108.254808,89.4972692 L108.677895,89.4972692 C108.679577,90.0929615 108.473538,90.5786538 108.150731,90.9657692 C107.828346,91.3541538 107.397654,91.6528462 106.933115,91.9265769 C106.003192,92.4710769 104.930269,92.928 104.247,93.6675385 C103.791769,94.1608462 103.496038,94.7641538 103.4935,95.6471154","id","Fill-148"],["d","M103.4935,83.347 L103.07042,83.347 C103.069577,82.6108462 103.265038,82.0134615 103.583192,81.5290385 C103.901346,81.0437692 104.335423,80.6723077 104.804192,80.3571154 C105.743,79.7301154 106.833269,79.3066154 107.517385,78.7075385 C107.973885,78.3060385 108.251423,77.8622308 108.254808,77.1975769 L108.677895,77.1975769 C108.679577,77.7932692 108.473538,78.2785385 108.150731,78.6660769 C107.828346,79.0544615 107.397654,79.3531538 106.933115,79.6268846 C106.003192,80.1709615 104.930269,80.6283077 104.247,81.3678462 C103.791769,81.8611538 103.496038,82.4640385 103.4935,83.347","id","Fill-149"],["d","M108.677908,89.4972692 L108.254808,89.4972692 C108.253115,88.9967692 108.094462,88.627 107.824962,88.2986923 C107.555038,87.9720769 107.165385,87.6949615 106.718615,87.4326538 C105.825923,86.9038077 104.711962,86.4439231 103.936885,85.6146923 C103.420308,85.0621538 103.067885,84.3289615 103.070409,83.347 L103.4935,83.347 C103.494346,84.0099615 103.663154,84.5134231 103.937308,84.9335385 C104.211885,85.3528077 104.598154,85.6891538 105.040269,85.9857308 C105.924077,86.5826923 107.021115,87.0002692 107.794923,87.6678846 C108.310654,88.1108462 108.681269,88.7006154 108.677908,89.4972692","id","Fill-150"],["d","M108.677908,77.1975769 L108.254808,77.1975769 C108.253115,76.6970769 108.094462,76.3273077 107.824962,75.999 C107.555038,75.6723846 107.165385,75.3956923 106.718615,75.1329615 C105.825923,74.6045385 104.711962,74.1446538 103.936885,73.3154231 C103.420308,72.7624615 103.067885,72.0296923 103.070409,71.0477308 L103.4935,71.0477308 C103.494346,71.7106923 103.663154,72.2141538 103.937308,72.6338462 C104.211885,73.0531154 104.598154,73.3894615 105.040269,73.6864615 C105.924077,74.2834231 107.021115,74.701 107.794923,75.3681923 C108.310654,75.8111538 108.681269,76.4009231 108.677908,77.1975769","id","Fill-151"],["d","M205.722423,198.425192 L205.299343,198.425192 C205.2985,197.689038 205.493962,197.091231 205.812538,196.606808 C206.130269,196.121538 206.564346,195.750077 207.033538,195.434885 C207.972346,194.807462 209.062192,194.383962 209.746731,193.784885 C210.202808,193.383385 210.480346,192.939577 210.483731,192.274923 L210.906818,192.274923 C210.9085,192.870615 210.702885,193.355885 210.379654,193.743423 C210.057269,194.131808 209.626577,194.4305 209.162462,194.704231 C208.232115,195.248308 207.159192,195.705654 206.475923,196.445192 C206.020692,196.938923 205.724962,197.541808 205.722423,198.425192","id","Fill-152"],["d","M205.722423,186.124654 L205.299343,186.124654 C205.2985,185.3885 205.493962,184.791115 205.812538,184.306692 C206.130269,183.821423 206.564346,183.449962 207.033538,183.134769 C207.972346,182.507769 209.062192,182.083846 209.746731,181.485192 C210.202808,181.083692 210.480346,180.639885 210.483731,179.975231 L210.906818,179.975231 C210.9085,180.5705 210.702885,181.056192 210.379654,181.443308 C210.057269,181.832115 209.626577,182.130385 209.162462,182.404538 C208.232115,182.948615 207.159192,183.405538 206.475923,184.145077 C206.020692,184.638385 205.724962,185.241692 205.722423,186.124654","id","Fill-153"],["d","M210.906831,192.274923 L210.483731,192.274923 C210.482038,191.774 210.323385,191.404231 210.053885,191.076346 C209.783962,190.749308 209.394731,190.472615 208.947538,190.210308 C208.054846,189.681462 206.940885,189.222 206.166231,188.392346 C205.649231,187.839808 205.296808,187.106615 205.299333,186.124654 L205.722423,186.124654 C205.723269,186.787615 205.8925,187.291077 206.166231,187.711192 C206.440808,188.130462 206.827077,188.466808 207.269192,188.763385 C208.153,189.360346 209.250038,189.777923 210.023846,190.445538 C210.539577,190.8885 210.910192,191.477846 210.906831,192.274923","id","Fill-154"],["d","M210.906831,179.975231 L210.483731,179.975231 C210.482038,179.474308 210.323385,179.104962 210.053885,178.776654 C209.783962,178.450038 209.394731,178.173346 208.947538,177.910615 C208.054846,177.382192 206.940885,176.922308 206.166231,176.093077 C205.649231,175.540538 205.296808,174.807346 205.299333,173.825385 L205.722423,173.825385 C205.723269,174.488346 205.8925,174.991808 206.166231,175.411923 C206.440808,175.831192 206.827077,176.167538 207.269192,176.464115 C208.153,177.061077 209.250038,177.478654 210.023846,178.145846 C210.539577,178.588808 210.910192,179.178154 210.906831,179.975231","id","Fill-155"],["d","M78.8818462,208.117038 L78.4587665,208.117038 C78.4579231,207.381308 78.6533846,206.7835 78.9719615,206.299077 C79.2896923,205.813808 79.7237692,205.442346 80.1925385,205.127577 C81.1317692,204.500154 82.2216154,204.076654 82.9057308,203.477577 C83.3622308,203.076077 83.6397692,202.632692 83.6431538,201.967615 L84.0662411,201.967615 C84.0679231,202.563308 83.8618846,203.048577 83.5390769,203.436115 C83.2166923,203.8245 82.786,204.123192 82.3214615,204.396923 C81.3915385,204.941 80.3186154,205.398346 79.6353462,206.137885 C79.1801154,206.631192 78.8843846,207.234077 78.8818462,208.117038","id","Fill-156"],["d","M78.8818462,195.817346 L78.4587665,195.817346 C78.4579231,195.081192 78.6533846,194.483808 78.9719615,193.999385 C79.2896923,193.514115 79.7237692,193.142654 80.1925385,192.827462 C81.1317692,192.200462 82.2216154,191.776962 82.9057308,191.177885 C83.3622308,190.776385 83.6397692,190.332577 83.6431538,189.667923 L84.0662411,189.667923 C84.0679231,190.263192 83.8618846,190.748885 83.5390769,191.136 C83.2166923,191.524808 82.786,191.8235 82.3214615,192.097231 C81.3915385,192.641308 80.3186154,193.098231 79.6353462,193.837769 C79.1801154,194.3315 78.8843846,194.934385 78.8818462,195.817346","id","Fill-157"],["d","M84.0662538,201.967615 L83.6431538,201.967615 C83.6414615,201.466692 83.4828077,201.096923 83.2133077,200.769038 C82.9433846,200.442 82.5541538,200.165308 82.1069615,199.902577 C81.2142692,199.374154 80.1003077,198.914269 79.3256538,198.084615 C78.8086538,197.532077 78.4562308,196.799308 78.4587556,195.817346 L78.8818462,195.817346 C78.8826923,196.480308 79.0519231,196.983769 79.3256538,197.403462 C79.6002308,197.822731 79.9865,198.159077 80.4286154,198.456077 C81.3124231,199.053038 82.4094615,199.470615 83.1832692,200.138231 C83.699,200.581192 84.0696154,201.170538 84.0662538,201.967615","id","Fill-158"],["d","M84.0662538,189.667923 L83.6431538,189.667923 C83.6414615,189.167 83.4828077,188.797231 83.2133077,188.469346 C82.9433846,188.142308 82.5541538,187.865615 82.1069615,187.602885 C81.2142692,187.074462 80.1003077,186.615 79.3256538,185.785346 C78.8086538,185.232808 78.4562308,184.499615 78.4587556,183.517654 L78.8818462,183.517654 C78.8826923,184.180615 79.0519231,184.684077 79.3256538,185.104192 C79.6002308,185.523462 79.9865,185.859808 80.4286154,186.156385 C81.3124231,186.753346 82.4094615,187.170923 83.1832692,187.838538 C83.699,188.2815 84.0696154,188.870846 84.0662538,189.667923","id","Fill-159"],["id","Fill-160","points","159.898962 157.494192 175.074308 157.494192 175.074308 157.071115 159.898962 157.071115"],["id","Fill-161","points","10.7106154 113.642269 25.8859615 113.642269 25.8859615 113.219192 10.7106154 113.219192"],["id","Fill-162","points","161.033231 43.1022308 176.208577 43.1022308 176.208577 42.6791538 161.033231 42.6791538"],["id","Fill-163","points","220.851654 8.85415385 236.027 8.85415385 236.027 8.43107692 220.851654 8.43107692"],["id","Fill-164","points","71.2097692 235.037846 86.3851154 235.037846 86.3851154 234.614769 71.2097692 234.614769"],["id","Fill-165","points","110.326192 205.658115 110.027077 205.359 120.757577 194.628077 121.056692 194.927192 110.326192 205.658115"],["id","Fill-166","points","21.4982308 19.5228846 21.1991154 19.2233462 31.9300385 8.49284615 32.2291538 8.79196154 21.4982308 19.5228846"],["id","Fill-167","points","228.588462 129.527962 228.289346 129.228846 239.019846 118.497923 239.318962 118.797462 228.588462 129.527962"],["d","M139.227423,187.558885 L138.664731,186.663231 C138.397346,186.830769 138.108385,186.908192 137.817731,186.908615 C137.552462,186.908615 137.288462,186.842192 137.055769,186.716115 C136.822654,186.589615 136.620846,186.407269 136.467692,186.164 L136.466846,186.162731 C136.298885,185.894923 136.221885,185.606385 136.221462,185.315731 C136.221038,185.050885 136.287462,184.787308 136.413538,184.554615 C136.540038,184.3215 136.722808,184.119269 136.9665,183.965692 C137.232192,183.799 137.520731,183.722 137.811385,183.721154 C138.076654,183.721154 138.341077,183.788 138.574192,183.913654 C138.807731,184.040154 139.009538,184.222923 139.162269,184.465769 L139.163115,184.467038 C139.330231,184.733154 139.407231,185.021692 139.408077,185.312346 C139.408077,185.577615 139.341654,185.841615 139.215577,186.075154 C139.089077,186.308692 138.906308,186.510923 138.663885,186.664077 L138.664731,186.663231 L139.227423,187.558885 L139.791385,188.454115 C140.348154,188.103385 140.784346,187.622769 141.077115,187.079538 C141.370308,186.535885 141.523038,185.928769 141.523462,185.312346 C141.523885,184.638385 141.337731,183.950038 140.953154,183.339538 L140.953577,183.340808 C140.603692,182.782769 140.122654,182.345308 139.579,182.052538 C139.034923,181.758923 138.427385,181.606192 137.811385,181.605769 C137.137423,181.605346 136.449923,181.791077 135.840269,182.175231 C135.282654,182.525538 134.845615,183.005731 134.552423,183.548962 C134.258808,184.092615 134.106077,184.699731 134.105653,185.315731 C134.105231,185.990538 134.291808,186.678885 134.676808,187.289808 L134.675962,187.288115 C135.025846,187.846154 135.506462,188.284038 136.050115,188.577231 C136.593769,188.870846 137.201308,189.024001 137.817731,189.024001 C138.491692,189.024423 139.179615,188.838692 139.790115,188.454538 L139.791385,188.454115 L139.227423,187.558885","id","Fill-168"],["d","M118.331231,114.613654 L117.768538,113.718 C117.501154,113.885538 117.212192,113.962962 116.921538,113.963385 C116.656269,113.963385 116.392692,113.896962 116.159577,113.770885 C115.926462,113.644385 115.724654,113.462038 115.5715,113.218346 L115.570654,113.2175 C115.403115,112.950115 115.325692,112.661154 115.325269,112.3705 C115.325269,112.106077 115.391692,111.8425 115.517346,111.609385 C115.643846,111.376269 115.826615,111.174462 116.069885,111.020885 C116.336,110.854192 116.624538,110.776769 116.915192,110.776346 C117.180462,110.776346 117.444885,110.842769 117.678,110.968846 C117.911538,111.095346 118.113346,111.278115 118.2665,111.521385 L118.267346,111.522231 C118.434462,111.788346 118.511462,112.076885 118.511885,112.367538 C118.512308,112.632385 118.445462,112.896385 118.319385,113.129923 C118.192885,113.363462 118.010538,113.565692 117.767692,113.718846 L117.768538,113.718 L118.331231,114.613654 L118.894769,115.508885 C119.451962,115.158577 119.888154,114.677962 120.181346,114.134308 C120.474538,113.590654 120.627272,112.983538 120.627272,112.367538 C120.628115,111.693154 120.441962,111.005231 120.057385,110.394731 L120.057808,110.396 C119.7075,109.837962 119.226885,109.4005 118.682808,109.107308 C118.138731,108.813692 117.531615,108.660961 116.915192,108.660961 C116.241231,108.660538 115.553731,108.846269 114.943654,109.230423 C114.386462,109.580308 113.949423,110.0605 113.656654,110.603731 C113.363038,111.147385 113.209884,111.7545 113.209884,112.3705 C113.209462,113.045308 113.395615,113.733654 113.780615,114.344154 L113.779769,114.343308 C114.129654,114.901346 114.610269,115.338808 115.153923,115.632 C115.698,115.925615 116.305115,116.07877 116.921538,116.07877 C117.5955,116.079192 118.283423,115.893462 118.893923,115.509308 L118.894769,115.508885 L118.331231,114.613654","id","Fill-169"],["d","M22.7619615,137.046038 L22.1992692,136.150385 C21.9318846,136.317923 21.6425,136.394923 21.3518462,136.395769 C21.087,136.395769 20.823,136.328923 20.5903077,136.203269 C20.3571923,136.076769 20.1549615,135.894 20.0018077,135.650731 L20.0013846,135.649885 C19.8334231,135.382077 19.756,135.093115 19.7555769,134.802462 C19.7555769,134.538038 19.822,134.274462 19.9480769,134.041346 C20.0745769,133.808231 20.2573462,133.606423 20.5006154,133.452423 L20.5001923,133.452846 C20.7667308,133.285731 21.0548462,133.208731 21.3459231,133.208308 C21.6107692,133.208308 21.8751923,133.274731 22.1087308,133.400808 C22.3422692,133.527308 22.5440769,133.710077 22.6972308,133.952923 L22.6976538,133.953769 C22.8647692,134.220308 22.9421923,134.508423 22.9426154,134.799077 C22.9426154,135.064346 22.8761923,135.328769 22.7501154,135.561885 C22.6236154,135.795423 22.4408462,135.997654 22.198,136.150808 L22.1992692,136.150385 L22.7619615,137.046038 L23.3255,137.940846 C23.8822692,137.590538 24.3188846,137.109923 24.6116538,136.566269 C24.9048462,136.022615 25.0580007,135.4155 25.0580007,134.799077 C25.0584231,134.125115 24.8722692,133.436769 24.4876923,132.826692 L24.4881154,132.827538 C24.1382308,132.2695 23.6571923,131.832462 23.1135385,131.539269 C22.5694615,131.245654 21.9619231,131.092922 21.3459231,131.092922 C20.6719615,131.0925 19.9844615,131.278231 19.3743846,131.661962 L19.3739615,131.661962 C18.8171923,132.012269 18.3801538,132.492462 18.0869615,133.035692 C17.7933462,133.579346 17.6401916,134.186462 17.6401916,134.802462 C17.6397692,135.477269 17.8263462,136.165615 18.2109231,136.776115 L18.2105,136.775269 C18.5603846,137.333308 19.041,137.770769 19.5846538,138.063962 C20.1283077,138.358 20.7358462,138.510731 21.3518462,138.511155 C22.0262308,138.511577 22.7141538,138.325423 23.3242308,137.941692 L23.3255,137.940846 L22.7619615,137.046038","id","Fill-170"],["d","M49.9332308,53.5801538 L49.3705385,52.6845 C49.1031538,52.8520385 48.8141923,52.9290385 48.5235385,52.9294615 C48.2582692,52.9298846 47.9946923,52.8630385 47.7615769,52.7373846 C47.5284615,52.6108846 47.3266538,52.4281154 47.1735,52.1844231 L47.1726538,52.1835769 C47.0051154,51.9161923 46.9276923,51.6272308 46.9272692,51.3365769 C46.9272692,51.0721538 46.9936923,50.8085769 47.1193462,50.5758846 C47.2458462,50.3427692 47.4286154,50.1405385 47.6723077,49.9869615 C47.9384231,49.8202692 48.2265385,49.7432692 48.5171923,49.7424231 C48.7824615,49.7424231 49.0468846,49.8088462 49.28,49.9349231 C49.5135385,50.0618462 49.7153462,50.2441923 49.8685,50.4874615 L49.8693462,50.4883077 C50.0364615,50.7548462 50.1134615,51.0429615 50.1138846,51.3336154 C50.1143077,51.5984615 50.0474615,51.8628846 49.9213846,52.096 C49.7948846,52.3295385 49.6125385,52.5317692 49.3696923,52.6849231 L49.3705385,52.6845 L49.9332308,53.5801538 L50.4967692,54.4749615 C51.0539615,54.1246538 51.4905769,53.6440385 51.7833462,53.1008077 C52.0765385,52.5567308 52.2292721,51.9496154 52.2292721,51.3336154 C52.2301154,50.6596538 52.0439615,49.9713077 51.6593846,49.3612308 L51.6598077,49.3620769 C51.3095,48.8040385 50.8288846,48.367 50.2848077,48.0738077 C49.7411538,47.7801923 49.1336154,47.6274615 48.5171923,47.6270377 C47.8432308,47.6266154 47.1557308,47.8123462 46.5456538,48.1965 C45.9884615,48.5463846 45.5514231,49.0265769 45.2586538,49.5702308 C44.9650385,50.1138846 44.8118839,50.721 44.8118839,51.3365769 C44.8114615,52.0113846 44.9976154,52.6997308 45.3826154,53.3106538 L45.3817692,53.3093846 C45.7320769,53.8674231 46.2122692,54.3048846 46.7559231,54.5980769 C47.3,54.8921154 47.9071154,55.044849 48.5235385,55.044849 C49.1975,55.0456923 49.8854231,54.8595385 50.4959231,54.4758077 L50.4967692,54.4749615 L49.9332308,53.5801538","id","Fill-171"],["d","M195.8,52.261 L195.237308,51.3653462 C194.969923,51.5333077 194.680962,51.6103077 194.390308,51.6107308 C194.125462,51.6107308 193.861462,51.5443077 193.628769,51.4182308 C193.395231,51.2917308 193.193423,51.1093846 193.039846,50.8656923 L193.039846,50.8648462 C192.871885,50.5974615 192.794462,50.3085 192.794038,50.0178462 C192.794038,49.7534231 192.860462,49.4898462 192.986538,49.2567308 C193.112615,49.0236154 193.295385,48.8218077 193.538654,48.6682308 C193.805192,48.5015385 194.093308,48.4241154 194.384385,48.4236923 C194.649231,48.4236923 194.913654,48.4901154 195.146769,48.6161923 C195.380308,48.7426923 195.582538,48.9254615 195.736115,49.1687308 L195.736538,49.1695769 C195.903654,49.4356923 195.980654,49.7242308 195.981077,50.0148846 C195.9815,50.2797308 195.914654,50.5437308 195.788577,50.7772692 C195.662077,51.0108077 195.479308,51.2130385 195.236462,51.3661923 L195.237308,51.3653462 L195.8,52.261 L196.363538,53.1562308 C196.920731,52.8059231 197.357346,52.3253077 197.650115,51.7820769 C197.943731,51.238 198.096464,50.6308846 198.096464,50.0148846 C198.097308,49.3405 197.911154,48.6525769 197.526154,48.0425 L197.526577,48.0429231 C197.176269,47.4853077 196.695654,47.0478462 196.152,46.7550769 C195.607923,46.4614615 195.000385,46.308307 194.384385,46.308307 C193.710423,46.3078846 193.0225,46.4936154 192.412846,46.8777692 C191.855231,47.2276538 191.418192,47.7078462 191.125423,48.2515 C190.831808,48.7951538 190.678653,49.4018462 190.678653,50.0178462 C190.678231,50.6926538 190.864385,51.381 191.248962,51.9915 L191.248962,51.9910769 C191.598846,52.5486923 192.079462,52.9861538 192.622692,53.2793462 C193.166769,53.5729615 193.773885,53.7261161 194.390308,53.7261161 C195.064269,53.7265385 195.752192,53.5408077 196.362692,53.1566538 L196.363538,53.1562308 L195.8,52.261","id","Fill-172"],["d","M233.261346,146.737885 L232.698654,145.842231 C232.431269,146.009769 232.142308,146.087192 231.851654,146.087615 C231.586385,146.087615 231.322808,146.021192 231.089692,145.895115 C230.856577,145.768615 230.654769,145.585846 230.501192,145.342154 C230.333231,145.074346 230.255808,144.785385 230.255385,144.494308 C230.255385,144.229885 230.321808,143.966308 230.447462,143.733192 C230.573962,143.500077 230.756731,143.298269 231.000423,143.144692 C231.266115,142.978 231.554654,142.900577 231.845731,142.900154 C232.110577,142.900154 232.375,142.966577 232.608115,143.092654 C232.841654,143.219154 233.043885,143.401923 233.197038,143.645192 L233.197462,143.646038 C233.365,143.912154 233.442,144.200269 233.442423,144.490923 C233.442423,144.756192 233.376,145.020192 233.249923,145.253731 C233.123423,145.487269 232.940654,145.6895 232.697808,145.842654 L232.698654,145.842231 L233.261346,146.737885 L233.824885,147.633115 C234.382077,147.282808 234.818692,146.802192 235.111462,146.258538 C235.404654,145.714462 235.557808,145.107346 235.557808,144.490923 C235.558231,143.816962 235.3725,143.128615 234.9875,142.518538 L234.987923,142.519385 C234.637615,141.961346 234.157,141.524308 233.612923,141.231115 C233.068846,140.9375 232.461731,140.784769 231.845731,140.784769 C231.171769,140.784346 230.484269,140.970077 229.874192,141.353808 C229.316577,141.704115 228.879538,142.184308 228.586346,142.727962 C228.293154,143.271615 228.139999,143.878731 228.139999,144.494308 C228.139577,145.169115 228.325731,145.857462 228.710308,146.467962 C229.060192,147.025154 229.540385,147.462615 230.084038,147.756231 C230.628115,148.049846 231.235231,148.202577 231.851654,148.203001 C232.525615,148.203423 233.213538,148.017269 233.824038,147.633538 L233.824885,147.633115 L233.261346,146.737885","id","Fill-173"],["id","summary/card1","transform","translate(0.000000, 0.500000)"],["id","Group-3-Copy","transform","translate(0.000000, 31.500000)"],["d","M242.243,146.335 C203.034,140.754 163.526,137.965 124.02,137.965 C84.517,137.965 45.013,140.754 5.802,146.335 C9.204,138.915 12.718,131.514 16.34,124.135 C10.998,117.889 5.55,111.692 4.40536496e-13,105.546 C41.132,99.692 82.575,96.765 124.02,96.765 C165.468,96.765 206.913,99.692 248.049,105.546 C242.495,111.692 237.047,117.889 231.703,124.135 C235.327,131.514 238.839,138.915 242.243,146.335","id","Fill-47","fill","#035429"],["d","M221.022,128.961 C156.569,121.589 91.478,121.589 27.022,128.961 C34.239,133.013 41.355,137.154 48.359,141.384 C98.699,136.826 149.346,136.826 199.687,141.384 C206.691,137.154 213.804,133.013 221.022,128.961","id","Fill-48","fill","#135E41"],["id","Fill-49"],["fill","url(#linearGradient-2)","fill-rule","evenodd",0,"xlink","href","#path-3",1,"badge-img"],["stroke","#E55B28","stroke-width","2","d","M124.02,2 C128.022653,2 131.528214,5.10293248 135.02987,7.95760624 C138.340723,10.6567296 141.645472,13.2561325 145.089895,14.1797264 C148.415186,15.0715974 152.320881,14.6299487 156.265965,14.0272186 L157.295655,13.8671016 C161.693093,13.1744009 166.136786,12.2781684 169.426335,14.1845096 C172.781525,16.1285206 174.236945,20.4874458 175.831984,24.6733586 C177.371482,28.7135135 178.967537,32.6989638 181.561917,35.2933439 C183.94888,37.6798677 187.512993,39.221297 191.213788,40.651052 L192.181629,41.0219806 C196.367671,42.6166562 200.726744,44.0715627 202.670573,47.4278074 C204.403663,50.4183978 203.820311,54.3630785 203.179337,58.3595672 L202.987575,59.5591657 C202.31153,63.849787 201.705365,68.1492743 202.674308,71.763233 C203.598435,75.2078774 206.198132,78.5131022 208.897244,81.8241452 C211.75162,85.3256525 214.854,88.8306466 214.854,92.831 C214.854,96.832985 211.751613,100.338502 208.897136,103.840492 C206.198053,107.151839 203.598389,110.457345 202.674244,113.903006 C201.705459,117.515897 202.311415,121.814933 202.987311,126.105411 C203.680176,130.50361 204.576685,134.948676 202.66949,138.239335 C200.725565,141.594377 196.366857,143.049157 192.181152,144.643626 C188.140809,146.182723 184.155152,147.778421 181.560526,150.373047 C178.967035,152.967494 177.371371,156.952257 175.832191,160.99173 C174.237146,165.17782 172.781641,169.53691 169.426193,171.481573 C166.136359,173.388079 161.691952,172.491384 157.293947,171.798293 C153.003551,171.122161 148.704203,170.515846 145.090015,171.484241 C141.645415,172.407883 138.340605,175.007544 135.029695,177.706948 C131.528095,180.561823 128.022598,183.665 124.02,183.665 C120.021263,183.665 116.517987,180.563494 113.01758,177.709579 C109.70557,175.009266 106.398941,172.408134 102.95193,171.484227 C99.3382679,170.515364 95.0387743,171.121719 90.7479482,171.798003 C86.349975,172.491175 81.9053239,173.387896 78.6152772,171.481845 C75.2605635,169.536523 73.8048191,165.176943 72.2096648,160.990438 C70.6705899,156.951114 69.0751201,152.966605 66.4822136,150.371786 C63.887813,147.777386 59.9020478,146.181298 55.8616562,144.641805 C51.6759515,143.046943 47.317358,141.591742 45.3736068,138.237503 C43.4675217,134.947035 44.3637487,130.502249 45.0564894,126.104197 C45.7322463,121.813971 46.3381248,117.515135 45.3697764,113.902081 C44.4460882,110.456833 41.8463613,107.151411 39.147054,103.840043 C36.2925633,100.338303 33.19,96.8328843 33.19,92.831 C33.19,88.8309097 36.2923113,85.326134 39.1465896,81.8248571 C41.8460499,78.5134916 44.4460193,75.2079505 45.3698548,71.7626262 C46.3381043,68.1489808 45.7322705,63.8496639 45.05665,59.5592552 C44.3640075,55.1607518 43.4678241,50.715808 45.3743973,47.4258586 C47.3187833,44.0708887 51.6771927,42.615999 55.8625437,41.0215503 C59.9028406,39.4823613 63.8883044,37.8866009 66.4823439,35.2920832 C69.0762624,32.6976865 70.6720686,28.7121255 72.2113162,24.6718843 C73.8059598,20.4862389 75.2610199,16.1277098 78.6141553,14.1838046 C81.9057209,12.2779512 86.3498867,13.1741205 90.7474105,13.8669719 C95.0384528,14.5430467 99.3380864,15.1491655 102.951786,14.179812 C106.398885,13.2558815 109.705452,10.6550072 113.017405,7.95497485 C116.517868,5.10126124 120.021208,2 124.02,2 Z","stroke-linejoin","square"],["d","M49.607,92.831 C49.607,51.734 82.928,18.417 124.02,18.417 C165.124,18.417 198.44,51.734 198.44,92.831 C198.44,133.931 165.124,167.247 124.02,167.247 C82.928,167.247 49.607,133.931 49.607,92.831","id","Fill-51","fill","#FFFFFE"],["d","M221.022,128.961 C156.569,121.589 91.478,121.589 27.022,128.961 C25.462,115.317 23.9,101.672 22.342,88.028 C89.911,80.301 158.137,80.301 225.707,88.028 C224.146,101.672 222.584,115.317 221.022,128.961","id","Fill-53","fill","#1D6240"],["id","Group-18-Copy","transform","translate(70.023500, 90.832000)","fill","#FFFFFE","fill-opacity","1"],["id","Group","transform","translate(0.500000, 0.000000)"],["id","387"],["filter","url(#filter-7)",0,"xlink","href","#text-6"],[0,"xlink","href","#text-6"],["id","Pages-read-:"],["filter","url(#filter-9)",0,"xlink","href","#text-8"],[0,"xlink","href","#text-8"],["d","M124.0235,47.417 C126.50975,47.417 128.5235,45.40325 128.5235,42.917 C128.5235,40.43075 126.50975,38.417 124.0235,38.417 C121.53725,38.417 119.5235,40.43075 119.5235,42.917 C119.5235,45.40325 121.53725,47.417 124.0235,47.417 L124.0235,47.417 Z M124.0235,49.667 C121.01975,49.667 115.0235,51.1745 115.0235,54.167 L115.0235,56.417 L133.0235,56.417 L133.0235,54.167 C133.0235,51.1745 127.02725,49.667 124.0235,49.667 L124.0235,49.667 Z","id","Shape-Copy-2","fill","#000"],["text-anchor","middle","x","60","y","60",2,"width","50%","height","1.5rem","font-size","0.75rem"],["xmlns","http://www.w3.org/1999/xhtml",1,"truncate-overflow"],["id","Group-17-Copy-2","transform","translate(95.523500, 128.964250)",4,"ngIf"],[1,"player-endpage__right-panel"],[1,"title-section"],[1,"title","animated","fadeInDown"],[1,"animated","fadeInUp"],[1,"user-options"],["tabindex","0",1,"replay-section",3,"ngClass","click"],["width","36","height","37","xmlns","http://www.w3.org/2000/svg",4,"ngIf"],[1,"title"],["class","exit-section","tabindex","0",3,"click",4,"ngIf"],[4,"ngIf"],["id","text-8","x","55","y","16","text-anchor","middle","fill","#FFFFFE"],["font-size","12","font-weight","400","font-family","Noto Sans, NotoSans-Bold"],["font-size","18","font-family","NotoSans-Bold, Noto Sans"],["id","Group-17-Copy-2","transform","translate(95.523500, 128.964250)"],["id","Icon-24px","transform","translate(0.000000, 0.500000)"],["id","Shape","points","0 0 18 0 18 18 0 18"],["d","M11.25,0.75 L6.75,0.75 L6.75,2.25 L11.25,2.25 L11.25,0.75 L11.25,0.75 Z M8.25,10.5 L9.75,10.5 L9.75,6 L8.25,6 L8.25,10.5 L8.25,10.5 Z M14.2725,5.5425 L15.3375,4.4775 C15.015,4.095 14.6625,3.735 14.28,3.42 L13.215,4.485 C12.0525,3.555 10.59,3 9,3 C5.2725,3 2.25,6.0225 2.25,9.75 C2.25,13.4775 5.265,16.5 9,16.5 C12.735,16.5 15.75,13.4775 15.75,9.75 C15.75,8.16 15.195,6.6975 14.2725,5.5425 L14.2725,5.5425 Z M9,15 C6.0975,15 3.75,12.6525 3.75,9.75 C3.75,6.8475 6.0975,4.5 9,4.5 C11.9025,4.5 14.25,6.8475 14.25,9.75 C14.25,12.6525 11.9025,15 9,15 L9,15 Z","id","Shape","fill","#000"],["id","8:46","font-family","NotoSans-Bold, Noto Sans","font-size","14","font-weight","bold","fill","#000"],["x","22","y","15"],["width","36","height","37","xmlns","http://www.w3.org/2000/svg"],["x1","18%","y1","0%","x2","83.101%","y2","100%","id","a"],["stop-color","#024F9D","offset","0%"],["stop-color","#024F9D","offset","100%"],["fill","none","fill-rule","evenodd"],["d","M0 .853h36v36H0z"],["d","M18 7.5v-6L10.5 9l7.5 7.5v-6c4.965 0 9 4.035 9 9s-4.035 9-9 9-9-4.035-9-9H6c0 6.63 5.37 12 12 12s12-5.37 12-12-5.37-12-12-12z","fill","#ccc","transform","translate(0 .853)"],["d","M18 7.5v-6L10.5 9l7.5 7.5v-6c4.965 0 9 4.035 9 9s-4.035 9-9 9-9-4.035-9-9H6c0 6.63 5.37 12 12 12s12-5.37 12-12-5.37-12-12-12z","fill","url(#a)","transform","translate(0 .853)"],["tabindex","0",1,"exit-section",3,"click"],["xmlns","http://www.w3.org/2000/svg","width","36","height","36"],["x1","0%","y1","0%","x2","101.72%","y2","100%","id","a"],["d","M0 0h36v36H0z"],["d","M15.135 23.385L17.25 25.5l7.5-7.5-7.5-7.5-2.115 2.115 3.87 3.885H4.5v3h14.505l-3.87 3.885zM28.5 4.5h-21a3 3 0 00-3 3v6h3v-6h21v21h-21v-6h-3v6a3 3 0 003 3h21c1.65 0 3-1.35 3-3v-21c0-1.65-1.35-3-3-3z","fill","url(#a)"],[1,"next"],["aria-label","Next content",1,"next-level",3,"click"],["tabindex","0",1,"title-text"],[1,"next-arrow"],["src","assets/next-arrow.svg","alt","next arrow"]],template:function(Xe,lt){1&Xe&&(t.F$t(),t.TgZ(0,"div",0)(1,"div",1)(2,"div",2),t.O4$(),t.TgZ(3,"svg",3)(4,"defs")(5,"filter",4),t._UZ(6,"feColorMatrix",5),t.qZA(),t.TgZ(7,"linearGradient",6),t._UZ(8,"stop",7)(9,"stop",8),t.qZA(),t.TgZ(10,"linearGradient",9),t._UZ(11,"stop",10)(12,"stop",11),t.qZA(),t._UZ(13,"path",12),t.TgZ(14,"filter",13),t._UZ(15,"feGaussianBlur",14)(16,"feOffset",15)(17,"feComposite",16)(18,"feColorMatrix",17),t.qZA(),t.TgZ(19,"linearGradient",18),t._UZ(20,"stop",19)(21,"stop",20),t.qZA(),t.YNc(22,K,5,2,"text",21),t.qZA(),t.TgZ(23,"g",22)(24,"g",23)(25,"g",24)(26,"g",25)(27,"g",26),t._UZ(28,"path",27)(29,"path",28)(30,"path",29)(31,"path",30)(32,"path",31)(33,"path",32)(34,"path",33)(35,"path",34)(36,"path",35)(37,"path",36)(38,"path",37)(39,"path",38)(40,"path",39)(41,"path",40)(42,"path",41)(43,"path",42)(44,"path",43)(45,"path",44)(46,"path",45)(47,"path",46)(48,"path",47)(49,"path",48)(50,"path",49)(51,"path",50)(52,"path",51)(53,"path",52)(54,"path",53)(55,"path",54)(56,"path",55)(57,"path",56)(58,"path",57)(59,"path",58)(60,"path",59)(61,"path",60)(62,"path",61)(63,"path",62)(64,"path",63)(65,"path",64)(66,"path",65)(67,"path",66)(68,"path",67)(69,"path",68)(70,"path",69)(71,"path",70)(72,"path",71)(73,"path",72)(74,"path",73)(75,"path",74)(76,"path",75)(77,"path",76)(78,"path",77)(79,"path",78)(80,"path",79)(81,"path",80)(82,"path",81)(83,"path",82)(84,"path",83)(85,"path",84)(86,"path",85)(87,"path",86)(88,"path",87)(89,"path",88)(90,"path",89)(91,"path",90)(92,"path",91)(93,"path",92)(94,"path",93)(95,"path",94)(96,"path",95)(97,"path",96)(98,"path",97)(99,"path",98)(100,"path",99)(101,"path",100)(102,"path",101)(103,"path",102)(104,"path",103)(105,"path",104)(106,"path",105)(107,"path",106)(108,"path",107)(109,"path",108)(110,"path",109)(111,"path",110)(112,"path",111)(113,"path",112)(114,"path",113)(115,"path",114)(116,"path",115)(117,"path",116)(118,"path",117)(119,"path",118)(120,"path",119)(121,"path",120)(122,"path",121)(123,"path",122)(124,"path",123)(125,"path",124)(126,"path",125)(127,"path",126)(128,"path",127)(129,"path",128)(130,"path",129)(131,"path",130)(132,"path",131)(133,"path",132)(134,"path",133)(135,"path",134)(136,"path",135)(137,"path",136)(138,"path",137)(139,"path",138)(140,"path",139)(141,"path",140)(142,"path",141)(143,"path",142)(144,"path",143)(145,"path",144)(146,"path",145)(147,"path",146)(148,"path",147)(149,"path",148)(150,"path",149)(151,"path",150)(152,"path",151)(153,"path",152)(154,"path",153)(155,"path",154)(156,"path",155)(157,"path",156)(158,"path",157)(159,"path",158)(160,"path",159)(161,"path",160)(162,"path",161)(163,"path",162)(164,"path",163)(165,"path",164)(166,"path",165)(167,"path",166)(168,"path",167)(169,"path",168)(170,"path",169)(171,"path",170)(172,"path",171)(173,"path",172)(174,"path",173)(175,"path",174)(176,"path",175)(177,"path",176)(178,"path",177)(179,"path",178)(180,"path",179)(181,"path",180)(182,"path",181)(183,"path",182)(184,"path",183)(185,"polygon",184)(186,"polygon",185)(187,"polygon",186)(188,"polygon",187)(189,"polygon",188)(190,"polyline",189)(191,"polyline",190)(192,"polyline",191)(193,"path",192)(194,"path",193)(195,"path",194)(196,"path",195)(197,"path",196)(198,"path",197),t.qZA()(),t.TgZ(199,"g",198)(200,"g",199),t._UZ(201,"path",200)(202,"path",201),t.TgZ(203,"g",202),t._UZ(204,"use",203)(205,"path",204),t.qZA(),t._UZ(206,"path",205)(207,"path",206),t.TgZ(208,"g",207)(209,"g",208)(210,"g",209),t._UZ(211,"use",210)(212,"use",211),t.qZA(),t.TgZ(213,"g",212),t._UZ(214,"use",213)(215,"use",214),t.qZA()()(),t._UZ(216,"path",215),t.TgZ(217,"foreignObject",216),t.kcU(),t.TgZ(218,"div",217),t._uU(219),t.qZA()(),t.YNc(220,$,7,1,"g",218),t.qZA()()()()()()()(),t.TgZ(221,"div",219)(222,"div",220)(223,"div",221),t._uU(224,"You just completed"),t.qZA(),t.TgZ(225,"span",222),t._uU(226),t.qZA(),t.Hsn(227),t.qZA(),t.TgZ(228,"div",223)(229,"div",224),t.NdJ("click",function(){return lt.replay()}),t.TgZ(230,"div"),t.YNc(231,le,8,0,"svg",225),t.YNc(232,R,8,0,"svg",225),t.qZA(),t.TgZ(233,"div",226),t._uU(234,"Replay"),t.qZA()(),t.YNc(235,ae,11,0,"div",227),t.qZA(),t.YNc(236,be,8,1,"ng-container",228),t.qZA()()),2&Xe&&(t.xp6(22),t.Q6J("ngIf",lt.outcome),t.xp6(197),t.hij(" ",lt.userName," "),t.xp6(1),t.Q6J("ngIf",lt.timeSpentLabel),t.xp6(6),t.Oqu(lt.contentName),t.xp6(3),t.Q6J("ngClass",lt.showReplay?"":"disabled"),t.xp6(2),t.Q6J("ngIf",!lt.showReplay),t.xp6(1),t.Q6J("ngIf",lt.showReplay),t.xp6(3),t.Q6J("ngIf",lt.showExit),t.xp6(1),t.Q6J("ngIf",lt.nextContent))},dependencies:[C.mk,C.O5],styles:[':root{--sdk-end-page-title:#000;--sdk-end-page-replay-icon:#024f9d;--sdk-end-page-replay-section-bg:#fff;--sdk-end-page-title-span:#666666;--sdk-end-page-replay-section-hover:#F2F2F2}[_nghost-%COMP%] .player-endpage[_ngcontent-%COMP%]{padding:1rem;height:100%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;justify-content:space-around;background:var(--sdk-end-page-replay-section-bg)}@media all and (orientation:portrait){[_nghost-%COMP%] .player-endpage[_ngcontent-%COMP%]{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;display:block;overflow-y:auto}}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%]{text-align:center;-webkit-box-flex:50%;flex:50%}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%]{position:relative;padding:1.5rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .badge[_ngcontent-%COMP%]{width:17.625rem;height:13.1rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%]{position:absolute;left:0;right:0;bottom:5rem;color:var(--white);text-shadow:.063 .125 #8b2925;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%] .progress[_ngcontent-%COMP%]{font-size:.85rem;margin-right:.7rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%] .score[_ngcontent-%COMP%]{font-size:1.3rem;font-weight:700}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%]{position:absolute;left:0;right:0;top:2.8rem;width:8.5rem;margin:0 auto}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%] .user[_ngcontent-%COMP%]{width:1.275rem;height:1.275rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%] .user-title[_ngcontent-%COMP%]{color:var(--primary-color);font-size:.85rem;line-height:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%]{position:absolute;bottom:2.75rem;left:0;right:0;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%] .timer[_ngcontent-%COMP%]{width:1.275rem;height:1.275rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{color:var(--primary-color);font-size:1rem;font-weight:700;margin-left:.3rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%]{-webkit-box-flex:50%;flex:50%;text-align:center;padding:1rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .title-section[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:var(--sdk-end-page-title);font-size:1.3125rem;font-weight:700;letter-spacing:0;line-height:1.75rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .title-section[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{color:var(--sdk-end-page-title-span);font-size:.75rem;word-break:break-word}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%]{display:-webkit-box;display:flex;justify-content:space-around;padding:1.7rem 0}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:var(--gray-800);font-size:1rem;line-height:1.188rem;text-align:center}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:2.55rem;height:2.55rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next[_ngcontent-%COMP%]{color:var(--gray-400);font-size:.85rem;line-height:1.063rem;margin-bottom:.7rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%]{margin:0 auto;width:auto;border-radius:.5rem;padding:.75rem;background:linear-gradient(135deg,#ffcd55 0,#ffd955 100%);box-shadow:inset 0 -.063rem .188rem 0 rgba(var(--rc-rgba-black),.5);display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:justify;justify-content:space-between;cursor:pointer}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .title-text[_ngcontent-%COMP%]{color:var(--gray-800);font-size:.85rem;-webkit-box-flex:1;flex:1;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;display:-webkit-box;-webkit-box-orient:vertical;line-height:normal}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .next-arrow[_ngcontent-%COMP%]{height:2.55rem;width:2.55rem;background-color:var(--white);border-radius:50%;text-align:center;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;cursor:pointer}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .next-arrow[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:1.75rem}.exit-section[_ngcontent-%COMP%], .replay-section[_ngcontent-%COMP%]{cursor:pointer;background-color:var(--sdk-end-page-replay-section-bg);padding:.5rem;border-radius:.25rem}.exit-section[_ngcontent-%COMP%]:hover, .replay-section[_ngcontent-%COMP%]:hover{background-color:var(--sdk-end-page-replay-section-hover)}.replay-section[_ngcontent-%COMP%] div[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] g[_ngcontent-%COMP%] path[_ngcontent-%COMP%]{fill:var(--sdk-end-page-replay-icon)}.replay-section[_ngcontent-%COMP%] div[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] g[_ngcontent-%COMP%] path[_ngcontent-%COMP%]:first-child{fill:transparent}.replay-section.disabled[_ngcontent-%COMP%]{cursor:not-allowed}.replay-section.disabled[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:#ccc!important}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-1.25rem);transform:translateY(-1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-1.25rem);transform:translateY(-1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(1.25rem);transform:translateY(1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(1.25rem);transform:translateY(1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeftSide{0%{opacity:0;-webkit-transform:translateX(6.25rem);transform:translateX(6.25rem)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftSide{0%{opacity:0;opacity:0;-webkit-transform:translateX(-6.25rem);transform:translateX(-6.25rem)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInDown[_ngcontent-%COMP%]{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.fadeInUp[_ngcontent-%COMP%]{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.fadeInLeftSide[_ngcontent-%COMP%], .fadeInRightSide[_ngcontent-%COMP%]{-webkit-animation-name:fadeInLeftSide;animation-name:fadeInLeftSide}.animated[_ngcontent-%COMP%]{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.truncate-overflow[_ngcontent-%COMP%]{--lh:1.4rem;line-height:var(--lh);--max-lines:1;position:relative;max-height:calc(var(--lh) * var(--max-lines));overflow:hidden;width:100%;font-size:.65rem;color:var(--black)}.truncate-overflow[_ngcontent-%COMP%]::before{position:absolute;content:"";bottom:0;right:0}.truncate-overflow[_ngcontent-%COMP%]::after{content:"";position:absolute;right:0;width:1rem;height:1rem;background:var(--white)}.particles[_ngcontent-%COMP%] path[_ngcontent-%COMP%]{-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-transform-origin:center;transform-origin:center;-webkit-animation:3s ease-in-out infinite both heartbeat;animation:3s ease-in-out infinite both heartbeat;fill:#e55b28;opacity:.4}.badge-inner-animation[_ngcontent-%COMP%]{-webkit-animation:5s ease-in-out infinite both heartbeat;animation:5s ease-in-out infinite both heartbeat;-webkit-transform-origin:center center;transform-origin:center center}@-webkit-keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}']}),Qe.propDecorators={showExit:[{type:t.IIB}],showReplay:[{type:t.IIB}],contentName:[{type:t.IIB}],outcome:[{type:t.IIB}],outcomeLabel:[{type:t.IIB}],userName:[{type:t.IIB}],timeSpentLabel:[{type:t.IIB}],nextContent:[{type:t.IIB}],replayContent:[{type:t.r_U}],exitContent:[{type:t.r_U}],playNextContent:[{type:t.r_U}]};class st{constructor(){this.sidebarMenuEvent=new t.vpe}toggleMenu(Xe){const lt=document.getElementById("overlay-input"),Et=document.querySelector(".navBlock"),at=document.getElementById("playerSideMenu");Xe instanceof KeyboardEvent&&(lt.checked=!lt.checked),lt.checked?(at.style.visibility="visible",Et.style.width="100%",Et.style.marginLeft="0%",this.sidebarMenuEvent.emit({event:Xe,type:"OPEN_MENU"})):(at.style.visibility="hidden",Et.style.marginLeft="-100%",this.sidebarMenuEvent.emit({event:Xe,type:"CLOSE_MENU"}))}}st.\u0275fac=function(Xe){return new(Xe||st)},st.\u0275cmp=t.Xpm({type:st,selectors:[["sb-player-side-menu-icon"]],outputs:{sidebarMenuEvent:"sidebarMenuEvent"},decls:3,vars:0,consts:[["type","checkbox","id","overlay-input",3,"click"],["aria-label","Player Menu","for","overlay-input","id","overlay-button","tabindex","0",3,"keydown.enter"]],template:function(Xe,lt){1&Xe&&(t.TgZ(0,"input",0),t.NdJ("click",function(at){return lt.toggleMenu(at)}),t.qZA(),t.TgZ(1,"label",1),t.NdJ("keydown.enter",function(at){return lt.toggleMenu(at)}),t._UZ(2,"span"),t.qZA())},styles:[':root{--sdk-overlay-btn-hover:#333332}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]{z-index:10;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin:0;position:absolute;top:.4rem;left:1rem;height:2.25rem;width:2.25rem;border-radius:50%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;-webkit-transition:.3s ease-in-out;transition:.3s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{height:.2rem;width:1.25rem;border-radius:.125rem;background-color:var(--black);position:relative;display:block;-webkit-transition:.2s ease-in-out;transition:.2s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{top:-.45rem;visibility:visible}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after{top:.45rem}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{height:.2rem;width:1.25rem;border-radius:.125rem;background-color:var(--black);position:absolute;content:"";-webkit-transition:.2s ease-in-out;transition:.2s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%], [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]:after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]:before{background:var(--sdk-overlay-btn-hover)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover{background-color:rgba(var(--rc-rgba-black),.75)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]{background-color:var(--white)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]::after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]::before{background-color:var(--white)}input[type=checkbox][_ngcontent-%COMP%]{display:none}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay[_ngcontent-%COMP%]{visibility:visible}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%], input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]{background:0 0}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{-webkit-transform:rotate(45deg) translate(.3125rem,.3125rem);transform:rotate(45deg) translate(.3125rem,.3125rem);opacity:1}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after{-webkit-transform:rotate(-45deg) translate(.3125rem,-.3125rem);transform:rotate(-45deg) translate(.3125rem,-.3125rem)} html[dir=rtl] #overlay-button{left:auto;right:1rem} html[dir=rtl] #overlay-button span:after, html[dir=rtl] #overlay-button span:before{right:0}']}),st.propDecorators={sidebarMenuEvent:[{type:t.r_U}]};class bt{constructor(Xe){this.ref=Xe,this.config={showShare:!1,showDownload:!1,showReplay:!1,showExit:!1,showPrint:!1},this.sidebarEvent=new t.vpe,this.toggleMenu=new t.vpe,this.showDownloadPopUp=!1}closeNav(Xe){document.getElementById("overlay-input").checked=!1,document.getElementById("playerSideMenu").style.visibility="hidden",document.querySelector(".navBlock").style.marginLeft="-100%",this.sidebarEvent.emit({event:Xe,type:"CLOSE_MENU"})}showDownloadPopup(Xe,lt){this.showDownloadPopUp=!0,this.ref.detectChanges(),this.emitSideBarEvent(Xe,lt)}hideDownloadPopUp(Xe){this.showDownloadPopUp=!1,this.sidebarEvent.emit(Xe),this.ref.detectChanges()}emitSideBarEvent(Xe,lt){this.sidebarEvent.emit({event:Xe,type:lt})}}bt.\u0275fac=function(Xe){return new(Xe||bt)(t.Y36(t.sBO))},bt.\u0275cmp=t.Xpm({type:bt,selectors:[["sb-player-sidebar"]],inputs:{config:"config",title:"title"},outputs:{sidebarEvent:"sidebarEvent",toggleMenu:"toggleMenu"},decls:12,vars:6,consts:[["id","playerSideMenu","aria-modal","true","aria-labelledby","Menubar",1,"sidenav"],["sidebarMenu",""],[1,"navBlock"],["role","heading","aria-level","2",1,"player-nav-unit","text-left"],["aria-label","player sidebar","id","sidebar-list"],["tabindex","0",3,"click","keydown.enter",4,"ngIf"],["aria-hidden","true","tabindex","-1",1,"transparentBlock",3,"click"],[3,"title","showDownloadPopUp","hideDownloadPopUp","downloadEvent",4,"ngIf"],["tabindex","0",3,"click","keydown.enter"],[1,"player-icon","player-share","mr-16"],[1,"player-icon","player-download","mr-16"],[1,"player-icon","player-print","mr-16"],[1,"player-icon","player-exit","mr-16"],[3,"title","showDownloadPopUp","hideDownloadPopUp","downloadEvent"]],template:function(Xe,lt){1&Xe&&(t.TgZ(0,"div",0,1)(2,"div",2)(3,"div",3),t._uU(4),t.qZA(),t.TgZ(5,"ul",4),t.YNc(6,Ne,3,0,"li",5),t.YNc(7,ke,3,0,"li",5),t.YNc(8,Re,3,0,"li",5),t.YNc(9,fe,3,0,"li",5),t.qZA()(),t.TgZ(10,"div",6),t.NdJ("click",function(at){return lt.closeNav(at)}),t.qZA()(),t.YNc(11,de,1,2,"sb-player-download-popup",7)),2&Xe&&(t.xp6(4),t.Oqu(lt.title),t.xp6(2),t.Q6J("ngIf",lt.config.showShare),t.xp6(1),t.Q6J("ngIf",lt.config.showDownload),t.xp6(1),t.Q6J("ngIf",lt.config.showPrint),t.xp6(1),t.Q6J("ngIf",lt.config.showExit),t.xp6(2),t.Q6J("ngIf",lt.showDownloadPopUp))},dependencies:[C.O5,Te],styles:[":root{--sdk-player-icon:#6D7278}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%]{width:100%;position:absolute;top:0;left:0;overflow-x:hidden;display:-webkit-box;display:flex;z-index:9;height:100%}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{text-decoration:none;font-size:1.5rem;color:var(--black);display:block}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{color:var(--gray-0)}@media screen and (max-height:1024px){[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%]{padding-top:0}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{font-size:1.125rem}}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] .closebtn[_ngcontent-%COMP%]{position:absolute;top:0;right:1.5rem;font-size:2.25rem;margin-left:3.125rem}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%]{width:100%;background:var(--white);max-width:20rem;-webkit-transition:.3s ease-in;transition:.3s ease-in;margin-left:-100%;z-index:10;position:absolute;height:100%}@media (min-width:1600px){.PlayerMediaQueryClass [_nghost-%COMP%] .navBlock[_ngcontent-%COMP%]{max-width:24rem}}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] .player-nav-unit[_ngcontent-%COMP%]{background:var(--primary-theme);padding:3rem 2rem 2rem;min-height:5.625rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;color:var(--gray-800);font-size:1rem;font-weight:700;line-height:normal;word-break:break-word}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{margin:0;padding:0}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{padding:1rem 2rem;background:var(--white);min-height:4rem;cursor:pointer;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;color:rgba(var(--rc-rgba-black),1);font-size:.875rem;line-height:1.375rem;margin:0;line-height:normal}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover{background-color:var(--gray-0)}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .player-icon[_ngcontent-%COMP%]{width:1.5rem;height:1.5rem;background-color:var(--sdk-player-icon)}[_nghost-%COMP%] #playerSideMenu[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .player-replay[_ngcontent-%COMP%]{display:inline;padding:8px}[_nghost-%COMP%] .transparentBlock[_ngcontent-%COMP%]{width:100%;background-color:rgba(var(--rc-rgba-black),.5);height:100%;-webkit-transition:.3s;transition:.3s}[_nghost-%COMP%] .player-share[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik00MDYsMzMyYy0yOS42NDEsMC01NS43NjEsMTQuNTgxLTcyLjE2NywzNi43NTVMMTkxLjk5LDI5Ni4xMjRjMi4zNTUtOC4wMjcsNC4wMS0xNi4zNDYsNC4wMS0yNS4xMjQNCgkJCWMwLTExLjkwNi0yLjQ0MS0yMy4yMjUtNi42NTgtMzMuNjM2bDE0OC40NDUtODkuMzI4QzM1NC4zMDcsMTY3LjQyNCwzNzguNTg5LDE4MCw0MDYsMTgwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJYzAtNDkuNjI5LTQwLjM3MS05MC05MC05MGMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsMTEuNDM3LDIuMzU1LDIyLjI4Niw2LjI2MiwzMi4zNThsLTE0OC44ODcsODkuNTkNCgkJCUMxNTYuODY5LDE5My4xMzYsMTMyLjkzNywxODEsMTA2LDE4MWMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsNDkuNjI5LDQwLjM3MSw5MCw5MCw5MGMzMC4xMywwLDU2LjY5MS0xNS4wMDksNzMuMDM1LTM3LjgwNg0KCQkJbDE0MS4zNzYsNzIuMzk1QzMxNy44MDcsNDAzLjk5NSwzMTYsNDEyLjc1LDMxNiw0MjJjMCw0OS42MjksNDAuMzcxLDkwLDkwLDkwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJQzQ5NiwzNzIuMzcxLDQ1NS42MjksMzMyLDQwNiwzMzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik00MDYsMzMyYy0yOS42NDEsMC01NS43NjEsMTQuNTgxLTcyLjE2NywzNi43NTVMMTkxLjk5LDI5Ni4xMjRjMi4zNTUtOC4wMjcsNC4wMS0xNi4zNDYsNC4wMS0yNS4xMjQNCgkJCWMwLTExLjkwNi0yLjQ0MS0yMy4yMjUtNi42NTgtMzMuNjM2bDE0OC40NDUtODkuMzI4QzM1NC4zMDcsMTY3LjQyNCwzNzguNTg5LDE4MCw0MDYsMTgwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJYzAtNDkuNjI5LTQwLjM3MS05MC05MC05MGMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsMTEuNDM3LDIuMzU1LDIyLjI4Niw2LjI2MiwzMi4zNThsLTE0OC44ODcsODkuNTkNCgkJCUMxNTYuODY5LDE5My4xMzYsMTMyLjkzNywxODEsMTA2LDE4MWMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsNDkuNjI5LDQwLjM3MSw5MCw5MCw5MGMzMC4xMywwLDU2LjY5MS0xNS4wMDksNzMuMDM1LTM3LjgwNg0KCQkJbDE0MS4zNzYsNzIuMzk1QzMxNy44MDcsNDAzLjk5NSwzMTYsNDEyLjc1LDMxNiw0MjJjMCw0OS42MjksNDAuMzcxLDkwLDkwLDkwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJQzQ5NiwzNzIuMzcxLDQ1NS42MjksMzMyLDQwNiwzMzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)}[_nghost-%COMP%] .player-exit[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzg0IDM4NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzg0IDM4NDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxnPg0KCQkJPHBhdGggZD0iTTM0MS4zMzMsMEg0Mi42NjdDMTkuMDkzLDAsMCwxOS4wOTMsMCw0Mi42NjdWMTI4aDQyLjY2N1Y0Mi42NjdoMjk4LjY2N3YyOTguNjY3SDQyLjY2N1YyNTZIMHY4NS4zMzMNCgkJCQlDMCwzNjQuOTA3LDE5LjA5MywzODQsNDIuNjY3LDM4NGgyOTguNjY3QzM2NC45MDcsMzg0LDM4NCwzNjQuOTA3LDM4NCwzNDEuMzMzVjQyLjY2N0MzODQsMTkuMDkzLDM2NC45MDcsMCwzNDEuMzMzLDB6Ii8+DQoJCQk8cG9seWdvbiBwb2ludHM9IjE1MS4xNDcsMjY4LjQ4IDE4MS4zMzMsMjk4LjY2NyAyODgsMTkyIDE4MS4zMzMsODUuMzMzIDE1MS4xNDcsMTE1LjUyIDIwNi4yOTMsMTcwLjY2NyAwLDE3MC42NjcgMCwyMTMuMzMzIA0KCQkJCTIwNi4yOTMsMjEzLjMzMyAJCQkiLz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzg0IDM4NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzg0IDM4NDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxnPg0KCQkJPHBhdGggZD0iTTM0MS4zMzMsMEg0Mi42NjdDMTkuMDkzLDAsMCwxOS4wOTMsMCw0Mi42NjdWMTI4aDQyLjY2N1Y0Mi42NjdoMjk4LjY2N3YyOTguNjY3SDQyLjY2N1YyNTZIMHY4NS4zMzMNCgkJCQlDMCwzNjQuOTA3LDE5LjA5MywzODQsNDIuNjY3LDM4NGgyOTguNjY3QzM2NC45MDcsMzg0LDM4NCwzNjQuOTA3LDM4NCwzNDEuMzMzVjQyLjY2N0MzODQsMTkuMDkzLDM2NC45MDcsMCwzNDEuMzMzLDB6Ii8+DQoJCQk8cG9seWdvbiBwb2ludHM9IjE1MS4xNDcsMjY4LjQ4IDE4MS4zMzMsMjk4LjY2NyAyODgsMTkyIDE4MS4zMzMsODUuMzMzIDE1MS4xNDcsMTE1LjUyIDIwNi4yOTMsMTcwLjY2NyAwLDE3MC42NjcgMCwyMTMuMzMzIA0KCQkJCTIwNi4yOTMsMjEzLjMzMyAJCQkiLz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K)}[_nghost-%COMP%] .player-print[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNfcHJpbnQgY29weTwvdGl0bGU+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iSWNvbi0yNHB4Ij4KICAgICAgICAgICAgPHBhdGggZD0iTTE5LDggTDUsOCBDMy4zNCw4IDIsOS4zNCAyLDExIEwyLDE3IEw2LDE3IEw2LDIxIEwxOCwyMSBMMTgsMTcgTDIyLDE3IEwyMiwxMSBDMjIsOS4zNCAyMC42Niw4IDE5LDggTDE5LDggWiBNMTYsMTkgTDgsMTkgTDgsMTQgTDE2LDE0IEwxNiwxOSBMMTYsMTkgWiBNMTksMTIgQzE4LjQ1LDEyIDE4LDExLjU1IDE4LDExIEMxOCwxMC40NSAxOC40NSwxMCAxOSwxMCBDMTkuNTUsMTAgMjAsMTAuNDUgMjAsMTEgQzIwLDExLjU1IDE5LjU1LDEyIDE5LDEyIEwxOSwxMiBaIE0xOCwzIEw2LDMgTDYsNyBMMTgsNyBMMTgsMyBMMTgsMyBaIiBpZD0iU2hhcGUiIGZpbGw9IiM2RDcyNzgiPjwvcGF0aD4KICAgICAgICAgICAgPHBvbHlnb24gaWQ9IlNoYXBlIiBwb2ludHM9IjAgMCAyNCAwIDI0IDI0IDAgMjQiPjwvcG9seWdvbj4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNfcHJpbnQgY29weTwvdGl0bGU+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iSWNvbi0yNHB4Ij4KICAgICAgICAgICAgPHBhdGggZD0iTTE5LDggTDUsOCBDMy4zNCw4IDIsOS4zNCAyLDExIEwyLDE3IEw2LDE3IEw2LDIxIEwxOCwyMSBMMTgsMTcgTDIyLDE3IEwyMiwxMSBDMjIsOS4zNCAyMC42Niw4IDE5LDggTDE5LDggWiBNMTYsMTkgTDgsMTkgTDgsMTQgTDE2LDE0IEwxNiwxOSBMMTYsMTkgWiBNMTksMTIgQzE4LjQ1LDEyIDE4LDExLjU1IDE4LDExIEMxOCwxMC40NSAxOC40NSwxMCAxOSwxMCBDMTkuNTUsMTAgMjAsMTAuNDUgMjAsMTEgQzIwLDExLjU1IDE5LjU1LDEyIDE5LDEyIEwxOSwxMiBaIE0xOCwzIEw2LDMgTDYsNyBMMTgsNyBMMTgsMyBMMTgsMyBaIiBpZD0iU2hhcGUiIGZpbGw9IiM2RDcyNzgiPjwvcGF0aD4KICAgICAgICAgICAgPHBvbHlnb24gaWQ9IlNoYXBlIiBwb2ludHM9IjAgMCAyNCAwIDI0IDI0IDAgMjQiPjwvcG9seWdvbj4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==)}[_nghost-%COMP%] .player-download[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik0zODIuNTYsMjMzLjM3NkMzNzkuOTY4LDIyNy42NDgsMzc0LjI3MiwyMjQsMzY4LDIyNGgtNjRWMTZjMC04LjgzMi03LjE2OC0xNi0xNi0xNmgtNjRjLTguODMyLDAtMTYsNy4xNjgtMTYsMTZ2MjA4aC02NA0KCQkJYy02LjI3MiwwLTExLjk2OCwzLjY4LTE0LjU2LDkuMzc2Yy0yLjYyNCw1LjcyOC0xLjYsMTIuNDE2LDIuNTI4LDE3LjE1MmwxMTIsMTI4YzMuMDQsMy40ODgsNy40MjQsNS40NzIsMTIuMDMyLDUuNDcyDQoJCQljNC42MDgsMCw4Ljk5Mi0yLjAxNiwxMi4wMzItNS40NzJsMTEyLTEyOEMzODQuMTkyLDI0NS44MjQsMzg1LjE1MiwyMzkuMTA0LDM4Mi41NiwyMzMuMzc2eiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNNDMyLDM1MnY5Nkg4MHYtOTZIMTZ2MTI4YzAsMTcuNjk2LDE0LjMzNiwzMiwzMiwzMmg0MTZjMTcuNjk2LDAsMzItMTQuMzA0LDMyLTMyVjM1Mkg0MzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik0zODIuNTYsMjMzLjM3NkMzNzkuOTY4LDIyNy42NDgsMzc0LjI3MiwyMjQsMzY4LDIyNGgtNjRWMTZjMC04LjgzMi03LjE2OC0xNi0xNi0xNmgtNjRjLTguODMyLDAtMTYsNy4xNjgtMTYsMTZ2MjA4aC02NA0KCQkJYy02LjI3MiwwLTExLjk2OCwzLjY4LTE0LjU2LDkuMzc2Yy0yLjYyNCw1LjcyOC0xLjYsMTIuNDE2LDIuNTI4LDE3LjE1MmwxMTIsMTI4YzMuMDQsMy40ODgsNy40MjQsNS40NzIsMTIuMDMyLDUuNDcyDQoJCQljNC42MDgsMCw4Ljk5Mi0yLjAxNiwxMi4wMzItNS40NzJsMTEyLTEyOEMzODQuMTkyLDI0NS44MjQsMzg1LjE1MiwyMzkuMTA0LDM4Mi41NiwyMzMuMzc2eiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNNDMyLDM1MnY5Nkg4MHYtOTZIMTZ2MTI4YzAsMTcuNjk2LDE0LjMzNiwzMiwzMiwzMmg0MTZjMTcuNjk2LDAsMzItMTQuMzA0LDMyLTMyVjM1Mkg0MzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)}"]}),bt.ctorParameters=()=>[{type:t.sBO}],bt.propDecorators={title:[{type:t.IIB}],config:[{type:t.IIB}],sidebarEvent:[{type:t.r_U}],toggleMenu:[{type:t.r_U}]};class Tt{constructor(){this.progress=0}ngOnChanges(Xe){Xe.progress&&Xe.progress.currentValue&&(this.progress=Xe.progress.currentValue)}}Tt.\u0275fac=function(Xe){return new(Xe||Tt)},Tt.\u0275cmp=t.Xpm({type:Tt,selectors:[["sb-player-start-page"]],inputs:{progress:"progress",title:"title"},features:[t.TTD],decls:10,vars:7,consts:[[1,"sb-player-splash-container",3,"ngClass"],[1,"sb-player-splash-container__header"],[1,"sb-player-splash-container__body","animated","fadeInDown"],[1,""],[1,"sb-player-splash-container__footer"],[1,"loading-text"],[1,"bg"],[1,"el"]],template:function(Xe,lt){1&Xe&&(t.TgZ(0,"div",0),t._UZ(1,"div",1),t.TgZ(2,"div",2)(3,"span",3),t._uU(4),t.qZA()(),t.TgZ(5,"div",4)(6,"div",5),t._uU(7),t.qZA(),t.TgZ(8,"div",6),t._UZ(9,"div",7),t.qZA()()()),2&Xe&&(t.Q6J("ngClass",t.VKq(5,pe,100===lt.progress)),t.xp6(4),t.Oqu(lt.title),t.xp6(3),t.hij("Loading... ",lt.progress,"%"),t.xp6(2),t.Udp("width",lt.progress+"%"))},dependencies:[C.mk],styles:['.sb-player-splash-container[_ngcontent-%COMP%]{box-sizing:border-box;padding:1rem;height:100%;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-align:center;align-items:center;-webkit-box-pack:justify;justify-content:space-between;opacity:1;background:var(--primary-theme);-webkit-transition:.3s ease-in;transition:.3s ease-in}.sb-player-splash-container.animateBg[_ngcontent-%COMP%]{opacity:0}.sb-player-splash-container__body[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;text-align:center;color:var(--gray-800);letter-spacing:0}.sb-player-splash-container__body[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{font-size:1.5rem;font-weight:700;letter-spacing:0;line-height:normal;word-break:break-word}.sb-player-splash-container__footer[_ngcontent-%COMP%]{color:var(--black);font-size:.75rem;line-height:1.25rem;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;width:100%}@-webkit-keyframes loading{0%{width:0}100%{width:100%}}@keyframes loading{0%{width:0}100%{width:100%}}@-webkit-keyframes percentage{1%{content:"1%"}2%{content:"2%"}3%{content:"3%"}4%{content:"4%"}5%{content:"5%"}6%{content:"6%"}7%{content:"7%"}8%{content:"8%"}9%{content:"9%"}10%{content:"10%"}11%{content:"11%"}12%{content:"12%"}13%{content:"13%"}14%{content:"14%"}15%{content:"15%"}16%{content:"16%"}17%{content:"17%"}18%{content:"18%"}19%{content:"19%"}20%{content:"20%"}21%{content:"21%"}22%{content:"22%"}23%{content:"23%"}24%{content:"24%"}25%{content:"25%"}26%{content:"26%"}27%{content:"27%"}28%{content:"28%"}29%{content:"29%"}30%{content:"30%"}31%{content:"31%"}32%{content:"32%"}33%{content:"33%"}34%{content:"34%"}35%{content:"35%"}36%{content:"36%"}37%{content:"37%"}38%{content:"38%"}39%{content:"39%"}40%{content:"40%"}41%{content:"41%"}42%{content:"42%"}43%{content:"43%"}44%{content:"44%"}45%{content:"45%"}46%{content:"46%"}47%{content:"47%"}48%{content:"48%"}49%{content:"49%"}50%{content:"50%"}51%{content:"51%"}52%{content:"52%"}53%{content:"53%"}54%{content:"54%"}55%{content:"55%"}56%{content:"56%"}57%{content:"57%"}58%{content:"58%"}59%{content:"59%"}60%{content:"60%"}61%{content:"61%"}62%{content:"62%"}63%{content:"63%"}64%{content:"64%"}65%{content:"65%"}66%{content:"66%"}67%{content:"67%"}68%{content:"68%"}69%{content:"69%"}70%{content:"70%"}71%{content:"71%"}72%{content:"72%"}73%{content:"73%"}74%{content:"74%"}75%{content:"75%"}76%{content:"76%"}77%{content:"77%"}78%{content:"78%"}79%{content:"79%"}80%{content:"80%"}81%{content:"81%"}82%{content:"82%"}83%{content:"83%"}84%{content:"84%"}85%{content:"85%"}86%{content:"86%"}87%{content:"87%"}88%{content:"88%"}89%{content:"89%"}90%{content:"90%"}91%{content:"91%"}92%{content:"92%"}93%{content:"93%"}94%{content:"94%"}95%{content:"95%"}96%{content:"96%"}97%{content:"97%"}98%{content:"98%"}99%{content:"99%"}100%{content:"100%"}}@keyframes percentage{1%{content:"1%"}2%{content:"2%"}3%{content:"3%"}4%{content:"4%"}5%{content:"5%"}6%{content:"6%"}7%{content:"7%"}8%{content:"8%"}9%{content:"9%"}10%{content:"10%"}11%{content:"11%"}12%{content:"12%"}13%{content:"13%"}14%{content:"14%"}15%{content:"15%"}16%{content:"16%"}17%{content:"17%"}18%{content:"18%"}19%{content:"19%"}20%{content:"20%"}21%{content:"21%"}22%{content:"22%"}23%{content:"23%"}24%{content:"24%"}25%{content:"25%"}26%{content:"26%"}27%{content:"27%"}28%{content:"28%"}29%{content:"29%"}30%{content:"30%"}31%{content:"31%"}32%{content:"32%"}33%{content:"33%"}34%{content:"34%"}35%{content:"35%"}36%{content:"36%"}37%{content:"37%"}38%{content:"38%"}39%{content:"39%"}40%{content:"40%"}41%{content:"41%"}42%{content:"42%"}43%{content:"43%"}44%{content:"44%"}45%{content:"45%"}46%{content:"46%"}47%{content:"47%"}48%{content:"48%"}49%{content:"49%"}50%{content:"50%"}51%{content:"51%"}52%{content:"52%"}53%{content:"53%"}54%{content:"54%"}55%{content:"55%"}56%{content:"56%"}57%{content:"57%"}58%{content:"58%"}59%{content:"59%"}60%{content:"60%"}61%{content:"61%"}62%{content:"62%"}63%{content:"63%"}64%{content:"64%"}65%{content:"65%"}66%{content:"66%"}67%{content:"67%"}68%{content:"68%"}69%{content:"69%"}70%{content:"70%"}71%{content:"71%"}72%{content:"72%"}73%{content:"73%"}74%{content:"74%"}75%{content:"75%"}76%{content:"76%"}77%{content:"77%"}78%{content:"78%"}79%{content:"79%"}80%{content:"80%"}81%{content:"81%"}82%{content:"82%"}83%{content:"83%"}84%{content:"84%"}85%{content:"85%"}86%{content:"86%"}87%{content:"87%"}88%{content:"88%"}89%{content:"89%"}90%{content:"90%"}91%{content:"91%"}92%{content:"92%"}93%{content:"93%"}94%{content:"94%"}95%{content:"95%"}96%{content:"96%"}97%{content:"97%"}98%{content:"98%"}99%{content:"99%"}100%{content:"100%"}}.bg[_ngcontent-%COMP%], .el[_ngcontent-%COMP%]{border-radius:.25rem;height:.5rem}.bg[_ngcontent-%COMP%]{background-color:var(--white)}.el[_ngcontent-%COMP%]{background-color:#f1635d;width:0%;-webkit-transition:.3s;transition:.3s}.loading-text[_ngcontent-%COMP%]{-ms-grid-row-align:center;align-self:center;margin-bottom:.5rem;color:var(--black)}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeftSide{0%{opacity:0;-webkit-transform:translateX(100px);transform:translateX(100px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftSide{0%{opacity:0;opacity:0;-webkit-transform:translateX(-100px);transform:translateX(-100px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInDown[_ngcontent-%COMP%]{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.fadeInUp[_ngcontent-%COMP%]{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.fadeInLeftSide[_ngcontent-%COMP%], .fadeInRightSide[_ngcontent-%COMP%]{-webkit-animation-name:fadeInLeftSide;animation-name:fadeInLeftSide}.animated[_ngcontent-%COMP%]{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}']}),Tt.propDecorators={title:[{type:t.IIB}],progress:[{type:t.IIB}]};class wt{constructor(){}ngOnInit(){window.addEventListener("offline",()=>{this.showOfflineAlert=!0,setTimeout(()=>{this.showOfflineAlert=!1},4e3)})}}wt.\u0275fac=function(Xe){return new(Xe||wt)},wt.\u0275cmp=t.Xpm({type:wt,selectors:[["sb-player-offline-alert"]],decls:1,vars:1,consts:[["class","offline-container",4,"ngIf"],[1,"offline-container"]],template:function(Xe,lt){1&Xe&&t.YNc(0,Pe,2,0,"div",0),2&Xe&&t.Q6J("ngIf",lt.showOfflineAlert)},dependencies:[C.O5],styles:[":root{--sdk-offline-container:#fff}.offline-container[_ngcontent-%COMP%]{position:absolute;top:0;left:0;right:0;height:3rem;background:var(--tertiary-color);color:var(--sdk-offline-container);width:100%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;z-index:999;-webkit-box-pack:center;justify-content:center;box-shadow:0 0 2px 2px #666;font-size:14px}"]}),wt.ctorParameters=()=>[];class Dt{}Dt.\u0275fac=function(Xe){return new(Xe||Dt)},Dt.\u0275mod=t.oAB({type:Dt}),Dt.\u0275inj=t.cJS({imports:[C.ez,F.u5]});class Mt{constructor(){this.nextAction=new t.vpe}}Mt.\u0275fac=function(Xe){return new(Xe||Mt)},Mt.\u0275cmp=t.Xpm({type:Mt,selectors:[["sb-player-next-navigation"]],outputs:{nextAction:"nextAction"},decls:3,vars:0,consts:[["aria-label","navigation-arrows-nextIcon","tabindex","0",1,"navigation-arrows","player-nextIcon","paginate","right","ml-4",3,"click"]],template:function(Xe,lt){1&Xe&&(t.TgZ(0,"button",0),t.NdJ("click",function(){return lt.nextAction.emit({type:"NEXT"})}),t._UZ(1,"i")(2,"i"),t.qZA())},styles:[et]}),Mt.propDecorators={nextAction:[{type:t.r_U}]};class St{constructor(){this.previousAction=new t.vpe}}St.\u0275fac=function(Xe){return new(Xe||St)},St.\u0275cmp=t.Xpm({type:St,selectors:[["sb-player-previous-navigation"]],outputs:{previousAction:"previousAction"},decls:3,vars:0,consts:[["aria-label","navigation-arrows-previousIcon","tabindex","0",1,"navigation-arrows","player-previousIcon","paginate","left",3,"click"]],template:function(Xe,lt){1&Xe&&(t.TgZ(0,"button",0),t.NdJ("click",function(){return lt.previousAction.emit({type:"PREVIOUS"})}),t._UZ(1,"i")(2,"i"),t.qZA())},styles:[et]}),St.propDecorators={previousAction:[{type:t.r_U}]};class Gt{constructor(){this.actions=new t.vpe,this._config={rotation:!1,goto:!1,navigation:!1,zoom:!1}}set config(Xe){this._item=Object.assign(Object.assign({},this._config),Xe),this._config=this._item}get config(){return this._config}ngOnInit(){this.page=this.pageNumber}ngOnChanges(Xe){for(const lt in Xe)if(Xe.hasOwnProperty(lt))switch(lt){case"pageNumber":this.page=Xe[lt].currentValue,this.pageNumber=Xe[lt].currentValue;break;case"totalPages":this.totalPages=Xe[lt].currentValue}}zoomIn(){this.actions.emit({type:"ZOOM_IN"})}zoomOut(){this.actions.emit({type:"ZOOM_OUT"})}rotateCW(){this.actions.emit({type:"ROTATE_CW"})}gotoPage(){const Xe=parseInt(this.page,10);Xe>0&&Xe<=this.totalPages?(this.actions.emit({type:"NAVIGATE_TO_PAGE",data:Xe}),this.pageNumber=Xe):(this.actions.emit({type:"INVALID_PAGE_ERROR",data:Xe}),this.page=this.pageNumber)}}Gt.\u0275fac=function(Xe){return new(Xe||Gt)},Gt.\u0275cmp=t.Xpm({type:Gt,selectors:[["sb-player-header"]],inputs:{config:"config",pageNumber:"pageNumber",totalPages:"totalPages"},outputs:{actions:"actions"},features:[t.TTD],decls:7,vars:4,consts:[[1,"sb-player-header"],[1,"sb-player-header__panel","d-flex","flex-ai-center","flex-jc-flex-end"],["class","icon_rotate mr-8",4,"ngIf"],["class","player-zoom-btns d-flex mr-8",4,"ngIf"],["class","player-pagenumber",4,"ngIf"],["class","visible-only-landscape",4,"ngIf"],[1,"icon_rotate","mr-8"],["src","./assets/rotate-icon.svg","alt","rotate icon","tabindex","0","role","button","aria-label","rotate page",1,"rotate-icon",3,"click"],[1,"player-zoom-btns","d-flex","mr-8"],["type","button","tabindex","0","aria-label","zoom out","title","zoom out",1,"player-zoom-btns__zoombtn","zoomOut-btn",3,"click"],["type","button","tabindex","0","aria-label","zoom in","title","zoom in",1,"player-zoom-btns__zoombtn","zoomIn-btn",3,"click"],[1,"player-pagenumber"],["type","number","min","1",1,"page-count",3,"ngModel","max","ngModelChange"],["role","button","aria-label","Go to page","tabindex","0",1,"focus-arrow",3,"click"],["src","./assets/arrow-right.svg","alt","arrow-right","width","100%"],[1,"slash"],[1,"pageNumberFullcount"],[1,"visible-only-landscape"],[1,"d-flex","player-slides","ml-8"],[1,"d-flex","flex-ai-center",3,"previousAction"],[1,"d-flex","flex-ai-center",3,"nextAction"]],template:function(Xe,lt){1&Xe&&(t.TgZ(0,"div")(1,"div",0)(2,"div",1),t.YNc(3,$e,2,0,"div",2),t.YNc(4,We,3,0,"div",3),t.YNc(5,Ie,8,3,"div",4),t.YNc(6,He,4,0,"div",5),t.qZA()()()),2&Xe&&(t.xp6(3),t.Q6J("ngIf",lt.config.rotation),t.xp6(1),t.Q6J("ngIf",lt.config.zoom),t.xp6(1),t.Q6J("ngIf",lt.config.goto&<.totalPages),t.xp6(1),t.Q6J("ngIf",lt.config.navigation))},dependencies:[C.O5,F.Fj,F.wV,F.JJ,F.qQ,F.Fd,F.On,Mt,St],styles:[':root{--sdk-sb-player-header:#fff;--sdk-player-zoombtn:#000;--sdk-player-zoombtn-icon:#333;--sdk-player-zoombtn-icon-hover:#F2F2F2;--sdk-player-page-count-bg:#fff;--sdk-player-page-count-txt:#CCCCCC;--sdk-player-page-count-arrow:#333333}[_nghost-%COMP%] .sb-player-header[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:end;justify-content:flex-end;height:3rem;padding:.75em 1rem;background:var(--sdk-sb-player-header)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%]{border-radius:.25rem;overflow:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%]{color:var(--sdk-player-zoombtn);text-align:center;line-height:.8rem;font-size:1.5rem;background-color:rgba(var(--rc-rgba-gray),.11);padding:0;-webkit-transition:.3s ease-in;transition:.3s ease-in;cursor:pointer;width:2rem;height:2rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;border:0}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{-webkit-mask-size:contain;-webkit-mask-repeat:no-repeat;mask-size:contain;mask-repeat:no-repeat;background-color:var(--sdk-player-zoombtn-icon)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%]:hover{background:var(--sdk-player-zoombtn-icon-hover)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomOut-btn[_ngcontent-%COMP%]{border-right:.063em solid rgba(var(--rc-rgba-gray),.1)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomOut-btn[_ngcontent-%COMP%]::after{content:"-"}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomIn-btn[_ngcontent-%COMP%]::after{content:"+"}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%]{font-size:1rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;position:relative}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]{height:2rem;width:3rem;border:.031em solid var(--sdk-player-page-count-txt);border-radius:.25rem;background-color:var(--sdk-player-page-count-bg);text-align:center}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus{border-radius:.25em 0 0 .25rem;outline:0}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%] ~ .focus-arrow[_ngcontent-%COMP%]{opacity:0;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;width:2.2rem;height:2rem;background:var(--sdk-player-page-count-arrow);border-radius:0 .25em .25em 0;position:absolute;left:calc(3rem - 0px);cursor:pointer}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%] ~ .focus-arrow[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:50%}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .focus-arrow[_ngcontent-%COMP%]{opacity:1}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .slash[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .pageNumberFullcount[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .slash[_ngcontent-%COMP%]{margin:0 .5rem}[_nghost-%COMP%] .player-zoom-btns-inline[_ngcontent-%COMP%]{display:inline-block}[_nghost-%COMP%] .player-replay[_ngcontent-%COMP%]{display:inline;padding:.5rem}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%]{background:0 0;height:2rem;text-align:center;width:2rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;border-radius:.25rem;padding:.25rem;cursor:pointer;-webkit-transition:.3s ease-in;transition:.3s ease-in}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%]:hover{background:rgba(var(--rc-rgba-gray),.11)}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%] .rotate-icon[_ngcontent-%COMP%]{width:100%}[_nghost-%COMP%] sb-player-next-navigation[_ngcontent-%COMP%], [_nghost-%COMP%] sb-player-previous-navigation[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count:focus{border-radius:0 .25em .25rem 0!important} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count~.focus-arrow{left:auto;right:calc(3rem - 0px);border-radius:.25em 0 0 .25em!important} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count~.focus-arrow img{-webkit-transform:rotate(180deg);transform:rotate(180deg)}']}),Gt.propDecorators={pageNumber:[{type:t.IIB}],totalPages:[{type:t.IIB}],actions:[{type:t.r_U}],config:[{type:t.IIB}]};class on{ngOnInit(){this.errorMsg||(this.errorMsg={messageHeader:Z.contentPlayFailedHeader,messageTitle:Z.contentPlayFailTitle})}}on.\u0275fac=function(Xe){return new(Xe||on)},on.\u0275cmp=t.Xpm({type:on,selectors:[["sb-player-contenterror"]],inputs:{errorMsg:"errorMsg"},decls:6,vars:2,consts:[[1,"playersdk-msg","playersdk-msg--error"],[1,"playersdk-msg__body"],[1,"playersdk-msg__text"],[1,"error-header"]],template:function(Xe,lt){1&Xe&&(t.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"span",3),t._uU(4),t.qZA(),t._uU(5),t.qZA()()()),2&Xe&&(t.xp6(4),t.Oqu(lt.errorMsg.messageHeader),t.xp6(1),t.hij(" ",lt.errorMsg.messageTitle," "))},styles:[':root{--sdk-playersdk-text:#333;--sdk-playersdk-bg:#fbccd1;--sdk-playersdk-border:#ff4558;--sdk-playersdk-closeicon:#ff4558;--sdk-playersdk-error-header:#ff4558}.playersdk-msg[_ngcontent-%COMP%]{position:absolute;top:10%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;max-width:20rem;margin-bottom:8px;padding:1rem;border:1px solid;border-radius:.5rem;border-width:0 0 0 .5rem;z-index:111111}.playersdk-msg--error[_ngcontent-%COMP%]{color:var(--sdk-playersdk-text);background:var(--sdk-playersdk-bg);border-color:var(--sdk-playersdk-border)}.playersdk-msg__body[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center}.playersdk-msg__text[_ngcontent-%COMP%]{font-size:.875rem}@media (max-width:767px){.playersdk-msg__text[_ngcontent-%COMP%]{font-size:.75rem}}.playersdk-msg__close-icon[_ngcontent-%COMP%]{position:absolute;right:0;top:0;width:2rem;height:2rem;cursor:pointer}.playersdk-msg__close-icon[_ngcontent-%COMP%]::after, .playersdk-msg__close-icon[_ngcontent-%COMP%]::before{content:" ";position:absolute;right:1rem;height:1rem;width:.125rem;top:.5rem;background:var(--sdk-playersdk-closeicon)}.playersdk-msg__close-icon[_ngcontent-%COMP%]::before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.playersdk-msg__close-icon[_ngcontent-%COMP%]::after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.error-header[_ngcontent-%COMP%]{font-size:1.25rem;display:block;margin-bottom:.5rem;line-height:normal;color:var(--sdk-playersdk-error-header)}']}),on.propDecorators={errorMsg:[{type:t.IIB}]};class Bt{}Bt.\u0275fac=function(Xe){return new(Xe||Bt)},Bt.\u0275mod=t.oAB({type:Bt}),Bt.\u0275inj=t.cJS({imports:[C.ez,F.u5]});class Qt{}Qt.\u0275fac=function(Xe){return new(Xe||Qt)},Qt.\u0275mod=t.oAB({type:Qt}),Qt.\u0275inj=t.cJS({imports:[Dt,Bt,Dt,Bt]})},1627:(vt,_e,w)=>{"use strict";w.d(_e,{wX:()=>z1,e3:()=>J1,RN:()=>Hs});var t=w(8008),C=w(4635),F=w(478);const N=function U(E,m){return(0,F.Z)(E,m)};var G=w(1435),K=w(5805),$=w(1511);const R=function(){try{var E=(0,$.Z)(Object,"defineProperty");return E({},"",{}),E}catch{}}();const be=function ae(E,m,h){"__proto__"==m&&R?R(E,m,{configurable:!0,enumerable:!0,value:h,writable:!0}):E[m]=h};var Be=w(6802),ke=Object.prototype.hasOwnProperty;const fe=function Re(E,m,h){var H=E[m];(!ke.call(E,m)||!(0,Be.Z)(H,h)||void 0===h&&!(m in E))&&be(E,m,h)};const pe=function de(E,m,h,H){var ee=!h;h||(h={});for(var Ue=-1,mt=m.length;++Ueee?0:ee+m),(h=h>ee?ee:h)<0&&(h+=ee),ee=m>h?0:h-m>>>0,m>>>=0;for(var Ue=Array(ee);++H0){if(++m>=800)return arguments[0]}else m=0;return E.apply(void 0,arguments)}}(hi);const to=function ta(E,m){return ga(M(E,m,Rr.Z),E+"")};var La=w(4068);const n1=function is(E,m,h,H){for(var ee=E.length,Ue=h+(H?1:-1);H?Ue--:++Ue-1};const wi=function _s(E,m,h){for(var H=-1,ee=null==E?0:E.length;++H=200&&(Ue=x.Z,mt=!1,m=new La.Z(m));e:for(;++ee0&&h(Lt)?m>1?di(Lt,m-1,h,H,ee):(0,at.Z)(ee,Lt):H||(ee[ee.length]=Lt)}return ee};var ei=w(3538);const fi=function Ui(){};var xr=w(2357);const V=ei.Z&&1/(0,xr.Z)(new ei.Z([,-0]))[1]==1/0?function(E){return new ei.Z(E)}:fi;const Ve=function Le(E,m,h){var H=-1,ee=wr,Ue=E.length,mt=!0,Lt=[],Cn=Lt;if(h)mt=!1,ee=wi;else if(Ue>=200){var ii=m?null:V(E);if(ii)return(0,xr.Z)(ii);mt=!1,ee=x.Z,Cn=new La.Z}else Cn=m?[]:Lt;e:for(;++H"u"||(typeof Pi.__theme>"u"?(sa||(sa=function ys(){if(typeof document>"u")return null;const E=document.createElement("span");E.innerText="test bs version",document.body.appendChild(E),E.classList.add("d-none");const m=E.getBoundingClientRect();return document.body.removeChild(E),m&&0===m.top?"bs4":"bs3"}()),"bs3"===sa):"bs4"!==Pi.__theme)}class jl{constructor(){this.length=0,this.asArray=[]}get(m){if(0===this.length||m<0||m>=this.length)return;let h=this.head;for(let H=0;Hthis.length)throw new Error("Position is out of the list");const H={value:m,next:void 0,previous:void 0};if(0===this.length)this.head=H,this.tail=H,this.current=H;else if(0===h)H.next=this.head,this.head.previous=H,this.head=H;else if(h===this.length)this.tail.next=H,H.previous=this.tail,this.tail=H;else{const ee=this.getNode(h-1),Ue=ee.next;ee.next=H,Ue.previous=H,H.previous=ee,H.next=Ue}this.length++,this.createInternalArrayRepresentation()}remove(m=0){if(0===this.length||m<0||m>=this.length)throw new Error("Position is out of the list");if(0===m)this.head=this.head.next,this.head?this.head.previous=void 0:this.tail=void 0;else if(m===this.length-1)this.tail=this.tail.previous,this.tail.next=void 0;else{const h=this.getNode(m);h.next.previous=h.previous,h.previous.next=h.next}this.length--,this.createInternalArrayRepresentation()}set(m,h){if(0===this.length||m<0||m>=this.length)throw new Error("Position is out of the list");this.getNode(m).value=h,this.createInternalArrayRepresentation()}toArray(){return this.asArray}findAll(m){let h=this.head;const H=[];for(let ee=0;ee{this.add(h)}),this.length}pop(){if(0===this.length)return;const m=this.tail;return this.remove(this.length-1),m.value}unshift(...m){return m.reverse(),m.forEach(h=>{this.add(h,0)}),this.length}shift(){if(0===this.length)return;const m=this.head.value;return this.remove(),m}forEach(m){let h=this.head;for(let H=0;H=this.length)throw new Error("Position is out of the list");let h=this.head;for(let H=0;H"u"||console;function qs(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"li",7),t.NdJ("click",function(){const Ue=t.CHM(h).index,mt=t.oxw(2);return t.KtG(mt.selectSlide(Ue))}),t.qZA()}if(2&E){const h=m.$implicit;t.ekj("active",!0===h.active)}}function u3(E,m){if(1&E&&(t.TgZ(0,"ol",5),t.YNc(1,qs,1,2,"li",6),t.qZA()),2&E){const h=t.oxw();t.xp6(1),t.Q6J("ngForOf",h.indicatorsSlides())}}function cu(E,m){1&E&&(t.TgZ(0,"span",11),t._uU(1,"Previous"),t.qZA())}function Ur(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"a",8),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.previousSlide())}),t._UZ(1,"span",9),t.YNc(2,cu,2,0,"span",10),t.qZA()}if(2&E){const h=t.oxw();t.ekj("disabled",0===h.activeSlide&&h.noWrap),t.xp6(2),t.Q6J("ngIf",h.isBs4)}}function Nr(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"a",12),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.nextSlide())}),t._UZ(1,"span",13),t.TgZ(2,"span",11),t._uU(3,"Next"),t.qZA()()}if(2&E){const h=t.oxw();t.ekj("disabled",h.isLast(h.activeSlide)&&h.noWrap)}}const Ul=function(E){return{display:E}},Tr=["*"];class N1{constructor(){this.interval=5e3,this.noPause=!1,this.noWrap=!1,this.showIndicators=!0,this.pauseOnFocus=!1,this.indicatorsByChunk=!1,this.itemsPerSlide=1,this.singleSlideOffset=!1}}N1.\u0275fac=function(m){return new(m||N1)},N1.\u0275prov=(0,t.Yz7)({factory:function(){return new N1},token:N1,providedIn:"root"});const Zr={UNKNOWN:0,NEXT:1,PREV:2};Zr[Zr.UNKNOWN]="UNKNOWN",Zr[Zr.NEXT]="NEXT",Zr[Zr.PREV]="PREV";class Jt{constructor(m,h){this.ngZone=h,this.indicatorsByChunk=!1,this.itemsPerSlide=1,this.singleSlideOffset=!1,this.isAnimated=!1,this.activeSlideChange=new t.vpe(!1),this.slideRangeChange=new t.vpe,this.startFromIndex=0,this._slides=new jl,this._currentVisibleSlidesIndex=0,this.destroyed=!1,this.getActive=H=>H.active,this.makeSlidesConsistent=H=>{H.forEach((ee,Ue)=>ee.item.order=Ue)},Object.assign(this,m)}set activeSlide(m){this.multilist||this._slides.length&&m!==this._currentActiveSlide&&this._select(m)}get activeSlide(){return this._currentActiveSlide}get interval(){return this._interval}set interval(m){this._interval=m,this.restartTimer()}get slides(){return this._slides.toArray()}get isBs4(){return!l3()}ngAfterViewInit(){setTimeout(()=>{this.singleSlideOffset&&(this.indicatorsByChunk=!1),this.multilist&&(this._chunkedSlides=function Bs(E,m){const h=[],H=Math.ceil(E.length/m);let ee=0;for(;eethis.itemsPerSlide&&this.play()}removeSlide(m){const h=this._slides.indexOf(m);if(this._currentActiveSlide===h){let H;this._slides.length>1&&(H=this.isLast(h)?this.noWrap?h-1:0:h),this._slides.remove(h),setTimeout(()=>{this._select(H)},0)}else{this._slides.remove(h);const H=this.getCurrentSlideIndex();setTimeout(()=>{this._currentActiveSlide=H,this.activeSlideChange.emit(this._currentActiveSlide)},0)}}nextSlideFromInterval(m=!1){this.move(Zr.NEXT,m)}nextSlide(m=!1){this.isPlaying&&this.restartTimer(),this.move(Zr.NEXT,m)}previousSlide(m=!1){this.isPlaying&&this.restartTimer(),this.move(Zr.PREV,m)}getFirstVisibleIndex(){return this.slides.findIndex(this.getActive)}getLastVisibleIndex(){return function ka(E,m){let h=E.length;for(;h--;)if(m(E[h],h,E))return h;return-1}(this.slides,this.getActive)}move(m,h=!1){const H=this.getFirstVisibleIndex(),ee=this.getLastVisibleIndex();this.noWrap&&(m===Zr.NEXT&&this.isLast(ee)||m===Zr.PREV&&0===H)||(this.multilist?this.moveMultilist(m):this.activeSlide=this.findNextSlideIndex(m,h))}keydownPress(m){if(13===m.keyCode||"Enter"===m.key||32===m.keyCode||"Space"===m.key)return this.nextSlide(),void m.preventDefault();37!==m.keyCode&&"LeftArrow"!==m.key?39!==m.keyCode&&"RightArrow"!==m.key||this.nextSlide():this.previousSlide()}onMouseLeave(){this.pauseOnFocus||this.play()}onMouseUp(){this.pauseOnFocus||this.play()}pauseFocusIn(){this.pauseOnFocus&&(this.isPlaying=!1,this.resetTimer())}pauseFocusOut(){this.play()}selectSlide(m){this.isPlaying&&this.restartTimer(),this.multilist?this.selectSlideRange(this.indicatorsByChunk?m*this.itemsPerSlide:m):this.activeSlide=this.indicatorsByChunk?m*this.itemsPerSlide:m}play(){this.isPlaying||(this.isPlaying=!0,this.restartTimer())}pause(){this.noPause||(this.isPlaying=!1,this.resetTimer())}getCurrentSlideIndex(){return this._slides.findIndex(this.getActive)}isLast(m){return m+1>=this._slides.length}isFirst(m){return 0===m}indicatorsSlides(){return this.slides.filter((m,h)=>!this.indicatorsByChunk||h%this.itemsPerSlide==0)}selectInitialSlides(){const m=this.startFromIndex<=this._slides.length?this.startFromIndex:0;if(this.hideSlides(),this.singleSlideOffset){if(this._slidesWithIndexes=this.mapSlidesAndIndexes(),this._slides.length-mh.item.active=!0),this.makeSlidesConsistent(this._slidesWithIndexes)}else this.selectRangeByNestedIndex(m);this.slideRangeChange.emit(this.getVisibleIndexes())}findNextSlideIndex(m,h){let H=0;if(h||!this.isLast(this.activeSlide)||m===Zr.PREV||!this.noWrap){switch(m){case Zr.NEXT:H=this.isLast(this._currentActiveSlide)?!h&&this.noWrap?this._currentActiveSlide:0:this._currentActiveSlide+1;break;case Zr.PREV:H=this._currentActiveSlide>0?this._currentActiveSlide-1:!h&&this.noWrap?this._currentActiveSlide:this._slides.length-1;break;default:throw new Error("Unknown direction")}return H}}mapSlidesAndIndexes(){return this.slides.slice().map((m,h)=>({index:h,item:m}))}selectSlideRange(m){if(!this.isIndexInRange(m)){if(this.hideSlides(),this.singleSlideOffset){const h=this.isIndexOnTheEdges(m)?m:m-this.itemsPerSlide+1,H=this.isIndexOnTheEdges(m)?m+this.itemsPerSlide:m+1;this._slidesWithIndexes=this.mapSlidesAndIndexes().slice(h,H),this.makeSlidesConsistent(this._slidesWithIndexes),this._slidesWithIndexes.forEach(ee=>ee.item.active=!0)}else this.selectRangeByNestedIndex(m);this.slideRangeChange.emit(this.getVisibleIndexes())}}selectRangeByNestedIndex(m){const h=this._chunkedSlides.map((H,ee)=>({index:ee,list:H})).find(H=>void 0!==H.list.find(ee=>ee.index===m));this._currentVisibleSlidesIndex=h.index,this._chunkedSlides[h.index].forEach(H=>{H.item.active=!0})}isIndexOnTheEdges(m){return m+1-this.itemsPerSlide<=0||m+this.itemsPerSlide<=this._slides.length}isIndexInRange(m){return this.singleSlideOffset?this._slidesWithIndexes.map(H=>H.index).indexOf(m)>=0:m<=this.getLastVisibleIndex()&&m>=this.getFirstVisibleIndex()}hideSlides(){this.slides.forEach(m=>m.active=!1)}isVisibleSlideListLast(){return this._currentVisibleSlidesIndex===this._chunkedSlides.length-1}isVisibleSlideListFirst(){return 0===this._currentVisibleSlidesIndex}moveSliderByOneItem(m){let h,H,ee,Ue;if(this.noWrap){h=this.getFirstVisibleIndex(),H=this.getLastVisibleIndex(),ee=m===Zr.NEXT?h:H,Ue=m!==Zr.NEXT?h-1:this.isLast(H)?0:H+1,this._slides.get(ee).active=!1,this._slides.get(Ue).active=!0;const mt=this.mapSlidesAndIndexes().filter(Lt=>Lt.item.active);this.makeSlidesConsistent(mt),this.slideRangeChange.emit(this.getVisibleIndexes())}else{let mt;h=this._slidesWithIndexes[0].index,H=this._slidesWithIndexes[this._slidesWithIndexes.length-1].index,m===Zr.NEXT?(this._slidesWithIndexes.shift(),mt=this.isLast(H)?0:H+1,this._slidesWithIndexes.push({index:mt,item:this._slides.get(mt)})):(this._slidesWithIndexes.pop(),mt=this.isFirst(h)?this._slides.length-1:h-1,this._slidesWithIndexes=[{index:mt,item:this._slides.get(mt)},...this._slidesWithIndexes]),this.hideSlides(),this._slidesWithIndexes.forEach(Lt=>Lt.item.active=!0),this.makeSlidesConsistent(this._slidesWithIndexes),this.slideRangeChange.emit(this._slidesWithIndexes.map(Lt=>Lt.index))}}moveMultilist(m){this.singleSlideOffset?this.moveSliderByOneItem(m):(this.hideSlides(),this.noWrap?this._currentVisibleSlidesIndex=m===Zr.NEXT?this._currentVisibleSlidesIndex+1:this._currentVisibleSlidesIndex-1:m===Zr.NEXT?this._currentVisibleSlidesIndex=this.isVisibleSlideListLast()?0:this._currentVisibleSlidesIndex+1:this._currentVisibleSlidesIndex=this.isVisibleSlideListFirst()?this._chunkedSlides.length-1:this._currentVisibleSlidesIndex-1,this._chunkedSlides[this._currentVisibleSlidesIndex].forEach(h=>h.item.active=!0),this.slideRangeChange.emit(this.getVisibleIndexes()))}getVisibleIndexes(){return this.singleSlideOffset?this._slidesWithIndexes.map(m=>m.index):this._chunkedSlides[this._currentVisibleSlidesIndex].map(m=>m.index)}_select(m){if(isNaN(m))return void this.pause();if(!this.multilist){const H=this._slides.get(this._currentActiveSlide);H&&(H.active=!1)}const h=this._slides.get(m);h&&(this._currentActiveSlide=m,h.active=!0,this.activeSlide=m,this.activeSlideChange.emit(m))}restartTimer(){this.resetTimer();const m=+this.interval;!isNaN(m)&&m>0&&(this.currentInterval=this.ngZone.runOutsideAngular(()=>setInterval(()=>{const h=+this.interval;this.ngZone.run(()=>{this.isPlaying&&!isNaN(this.interval)&&h>0&&this.slides.length?this.nextSlideFromInterval():this.pause()})},m)))}get multilist(){return this.itemsPerSlide>1}resetTimer(){this.currentInterval&&(clearInterval(this.currentInterval),this.currentInterval=void 0)}}Jt.\u0275fac=function(m){return new(m||Jt)(t.Y36(N1),t.Y36(t.R0b))},Jt.\u0275cmp=t.Xpm({type:Jt,selectors:[["carousel"]],inputs:{indicatorsByChunk:"indicatorsByChunk",itemsPerSlide:"itemsPerSlide",singleSlideOffset:"singleSlideOffset",isAnimated:"isAnimated",startFromIndex:"startFromIndex",activeSlide:"activeSlide",interval:"interval",noWrap:"noWrap",noPause:"noPause",showIndicators:"showIndicators",pauseOnFocus:"pauseOnFocus"},outputs:{activeSlideChange:"activeSlideChange",slideRangeChange:"slideRangeChange"},ngContentSelectors:Tr,decls:6,vars:6,consts:[["tabindex","0",1,"carousel","slide",3,"mouseenter","mouseleave","mouseup","keydown","focusin","focusout"],["class","carousel-indicators",4,"ngIf"],[1,"carousel-inner",3,"ngStyle"],["class","left carousel-control carousel-control-prev","tabindex","0","role","button",3,"disabled","click",4,"ngIf"],["class","right carousel-control carousel-control-next","tabindex","0","role","button",3,"disabled","click",4,"ngIf"],[1,"carousel-indicators"],[3,"active","click",4,"ngFor","ngForOf"],[3,"click"],["tabindex","0","role","button",1,"left","carousel-control","carousel-control-prev",3,"click"],["aria-hidden","true",1,"icon-prev","carousel-control-prev-icon"],["class","sr-only",4,"ngIf"],[1,"sr-only"],["tabindex","0","role","button",1,"right","carousel-control","carousel-control-next",3,"click"],["aria-hidden","true",1,"icon-next","carousel-control-next-icon"]],template:function(m,h){1&m&&(t.F$t(),t.TgZ(0,"div",0),t.NdJ("mouseenter",function(){return h.pause()})("mouseleave",function(){return h.onMouseLeave()})("mouseup",function(){return h.onMouseUp()})("keydown",function(ee){return h.keydownPress(ee)})("focusin",function(){return h.pauseFocusIn()})("focusout",function(){return h.pauseFocusOut()}),t.YNc(1,u3,2,1,"ol",1),t.TgZ(2,"div",2),t.Hsn(3),t.qZA(),t.YNc(4,Ur,3,3,"a",3),t.YNc(5,Nr,4,2,"a",4),t.qZA()),2&m&&(t.xp6(1),t.Q6J("ngIf",h.showIndicators&&h.slides.length>1),t.xp6(1),t.Q6J("ngStyle",t.VKq(4,Ul,h.multilist?"flex":"block")),t.xp6(2),t.Q6J("ngIf",h.slides.length>1),t.xp6(1),t.Q6J("ngIf",h.slides.length>1))},dependencies:[tt.sg,tt.O5,tt.PC],encapsulation:2}),Jt.ctorParameters=()=>[{type:N1},{type:t.R0b}],Jt.propDecorators={noWrap:[{type:t.IIB}],noPause:[{type:t.IIB}],showIndicators:[{type:t.IIB}],pauseOnFocus:[{type:t.IIB}],indicatorsByChunk:[{type:t.IIB}],itemsPerSlide:[{type:t.IIB}],singleSlideOffset:[{type:t.IIB}],isAnimated:[{type:t.IIB}],activeSlideChange:[{type:t.r_U}],slideRangeChange:[{type:t.r_U}],activeSlide:[{type:t.IIB}],startFromIndex:[{type:t.IIB}],interval:[{type:t.IIB}]};class os{constructor(m){this.itemWidth="100%",this.order=0,this.addClass=!0,this.carousel=m}ngOnInit(){this.carousel.addSlide(this),this.itemWidth=100/this.carousel.itemsPerSlide+"%"}ngOnDestroy(){this.carousel.removeSlide(this)}}os.\u0275fac=function(m){return new(m||os)(t.Y36(Jt))},os.\u0275cmp=t.Xpm({type:os,selectors:[["slide"]],hostVars:13,hostBindings:function(m,h){2&m&&(t.uIk("aria-hidden",!h.active),t.Udp("width",h.itemWidth)("order",h.order),t.ekj("item",h.addClass)("carousel-item",h.addClass)("active",h.active)("carousel-animation",h.isAnimated))},inputs:{active:"active"},ngContentSelectors:Tr,decls:2,vars:2,consts:[[1,"item"]],template:function(m,h){1&m&&(t.F$t(),t.TgZ(0,"div",0),t.Hsn(1),t.qZA()),2&m&&t.ekj("active",h.active)},styles:[".carousel-animation[_nghost-%COMP%] {\n transition: opacity 0.6s ease, visibility 0.6s ease;\n float: left;\n }\n .carousel-animation.active[_nghost-%COMP%] {\n opacity: 1;\n visibility: visible;\n }\n .carousel-animation[_nghost-%COMP%]:not(.active) {\n display: block;\n position: absolute;\n opacity: 0;\n visibility: hidden;\n }"]}),os.ctorParameters=()=>[{type:Jt}],os.propDecorators={active:[{type:t.pfw,args:["class.active"]},{type:t.IIB}],itemWidth:[{type:t.pfw,args:["style.width"]}],order:[{type:t.pfw,args:["style.order"]}],isAnimated:[{type:t.pfw,args:["class.carousel-animation"]}],addClass:[{type:t.pfw,args:["class.item"]},{type:t.pfw,args:["class.carousel-item"]}]};class bs{static forRoot(){return{ngModule:bs,providers:[]}}}bs.\u0275fac=function(m){return new(m||bs)},bs.\u0275mod=t.oAB({type:bs}),bs.\u0275inj=t.cJS({imports:[tt.ez]});var du=w(4350),Rs=w(6312),Ec=w(2218),Gi=w(6863),zs=w(2831);function vo(E){return m=>m.lift(new Ja(E))}class Ja{constructor(m){this.notifier=m}call(m,h){const H=new u1(m),ee=(0,zs.ft)(this.notifier,new zs.IY(H));return ee&&!H.seenValue?(H.add(ee),h.subscribe(H)):H}}class u1 extends zs.Ds{constructor(m){super(m),this.seenValue=!1}notifyNext(){this.seenValue=!0,this.complete()}notifyComplete(){}}var Ic=w(6855);function c3(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",6)(1,"div",7)(2,"quml-mcq-question",8),t.NdJ("showPopup",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.showPopup())}),t.qZA()(),t.TgZ(3,"div",9)(4,"quml-mcq-option",10),t.NdJ("optionSelected",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.getSelectedOptionAndResult(ee))})("showPopup",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.showPopup())}),t.qZA()()()}if(2&E){const h=t.oxw();t.xp6(2),t.Q6J("mcqQuestion",h.mcqQuestion)("layout",h.layout),t.xp6(2),t.Q6J("mcqOptions",h.options)("replayed",h.replayed)("cardinality",h.cardinality)("solutions",h.solutions)("layout",h.layout)("tryAgain",h.tryAgain)}}function d3(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",11)(1,"div",7),t._UZ(2,"quml-mcq-question",12),t.qZA(),t.TgZ(3,"div",9)(4,"quml-mcq-option",13),t.NdJ("optionSelected",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.getSelectedOptionAndResult(ee))}),t.qZA()()()}if(2&E){const h=t.oxw();t.xp6(2),t.Q6J("mcqQuestion",h.mcqQuestion)("layout",h.layout),t.xp6(2),t.Q6J("mcqOptions",h.options)("replayed",h.replayed)("cardinality",h.cardinality)("layout",h.layout)("solutions",h.solutions)("tryAgain",h.tryAgain)}}function fu(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",14)(1,"div",15)(2,"div",7),t._UZ(3,"quml-mcq-question",12),t.qZA(),t.TgZ(4,"div",9)(5,"quml-mcq-option",16),t.NdJ("optionSelected",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.getSelectedOptionAndResult(ee))}),t.qZA()()()()}if(2&E){const h=t.oxw();t.xp6(3),t.Q6J("mcqQuestion",h.mcqQuestion)("layout",h.layout),t.xp6(2),t.Q6J("mcqOptions",h.options)("replayed",h.replayed)("cardinality",h.cardinality)("solutions",h.solutions)("layout",h.layout)("tryAgain",h.tryAgain)}}function ll(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",17)(1,"div",18)(2,"div",7),t._UZ(3,"quml-mcq-question",12),t.qZA(),t.TgZ(4,"div",9)(5,"quml-mcq-option",16),t.NdJ("optionSelected",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.getSelectedOptionAndResult(ee))}),t.qZA()()()()}if(2&E){const h=t.oxw();t.xp6(3),t.Q6J("mcqQuestion",h.mcqQuestion)("layout",h.layout),t.xp6(2),t.Q6J("mcqOptions",h.options)("replayed",h.replayed)("cardinality",h.cardinality)("solutions",h.solutions)("layout",h.layout)("tryAgain",h.tryAgain)}}function ul(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",19)(1,"div",20),t._UZ(2,"quml-mcq-question",12),t.qZA(),t.TgZ(3,"div",21)(4,"quml-mcq-option",16),t.NdJ("optionSelected",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.getSelectedOptionAndResult(ee))}),t.qZA()()()}if(2&E){const h=t.oxw();t.xp6(2),t.Q6J("mcqQuestion",h.mcqQuestion)("layout",h.layout),t.xp6(2),t.Q6J("mcqOptions",h.options)("replayed",h.replayed)("cardinality",h.cardinality)("solutions",h.solutions)("layout",h.layout)("tryAgain",h.tryAgain)}}function Lc(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"quml-quml-popup",22),t.NdJ("popUpClose",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.closePopUp())}),t.qZA()}}function pu(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",9),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.showAnswerToUser())})("keydown",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.onEnter(ee))}),t._uU(1,"Show Answer"),t.qZA()}}function hu(E,m){if(1&E&&(t._UZ(0,"div",15),t.ALo(1,"safeHtml")),2&E){const h=t.oxw().$implicit;t.Q6J("innerHTML",t.lcZ(1,1,h.value),t.oJD)}}function cl(E,m){if(1&E&&(t.TgZ(0,"div")(1,"video",16),t._UZ(2,"source",17)(3,"source",18),t.qZA()()),2&E){const h=t.oxw().$implicit;t.xp6(1),t.Q6J("poster",h.thumbnail,t.LSH),t.xp6(1),t.Q6J("src",h.src,t.LSH),t.xp6(1),t.Q6J("src",h.src,t.LSH)}}function T5(E,m){if(1&E&&(t.TgZ(0,"div"),t._UZ(1,"img",19),t.qZA()),2&E){const h=t.oxw().$implicit;t.xp6(1),t.Q6J("src",h.src,t.LSH)}}function js(E,m){if(1&E&&(t.TgZ(0,"div",11),t.ynx(1,12),t.YNc(2,hu,2,3,"div",13),t.YNc(3,cl,4,3,"div",14),t.YNc(4,T5,2,1,"div",14),t.BQk(),t.qZA()),2&E){const h=m.$implicit;t.xp6(1),t.Q6J("ngSwitch",h.type),t.xp6(1),t.Q6J("ngSwitchCase","html"),t.xp6(1),t.Q6J("ngSwitchCase","video"),t.xp6(1),t.Q6J("ngSwitchCase","image")}}function gu(E,m){if(1&E&&(t.ynx(0),t.TgZ(1,"div",2),t._uU(2,"Solution"),t.qZA(),t.YNc(3,js,5,4,"div",10),t.BQk()),2&E){const h=t.oxw();t.uIk("aria-hidden",!h.showAnswer||null),t.xp6(3),t.Q6J("ngForOf",h.solutions)}}const dl=".answer[_ngcontent-%COMP%]{border:1px solid;padding:.2em;margin:.5em}.icon[_ngcontent-%COMP%]{width:15%;max-width:70px;min-width:50px;display:inline-block;vertical-align:top}.mcqText[_ngcontent-%COMP%]{display:inline-block;word-break:break-word}.mcq-option[_ngcontent-%COMP%]{background:var(--white);border-radius:5px;margin:8px 16px;padding:8px}.options[_ngcontent-%COMP%]{word-break:break-all;padding:15px 5px}.even[_ngcontent-%COMP%], .odd[_ngcontent-%COMP%]{width:47%;display:inline-block;vertical-align:middle}.column-block[_ngcontent-%COMP%]{display:inline-block;width:48%;vertical-align:middle}.selected[_ngcontent-%COMP%]{background:var(--primary-color);color:var(--white);box-shadow:1px 2px 1px 3px var(--black)}.mathText[_ngcontent-%COMP%]{display:inline!important}.padding-top[_ngcontent-%COMP%]{padding-top:16px}@media only screen and (min-width:100px) and (max-width:481px){.mcqText[_ngcontent-%COMP%]{width:75%}.even[_ngcontent-%COMP%], .odd[_ngcontent-%COMP%]{width:38%;display:inline-block;vertical-align:middle}.column-block[_ngcontent-%COMP%]{display:inline-block;width:42%;vertical-align:middle}}@media only screen and (min-width:481px) and (max-width:800px){.mcqText[_ngcontent-%COMP%]{width:85%}.even[_ngcontent-%COMP%], .odd[_ngcontent-%COMP%]{width:43%;display:inline-block;vertical-align:middle}.column-block[_ngcontent-%COMP%]{display:inline-block;width:45%;vertical-align:middle}}@media only screen and (min-width:801px) and (max-width:1200px){.even[_ngcontent-%COMP%], .odd[_ngcontent-%COMP%]{width:45%}.column-block[_ngcontent-%COMP%]{display:inline-block;width:45%;vertical-align:middle}}";function Dc(E,m){if(1&E&&(t.TgZ(0,"div",10),t._uU(1),t.qZA()),2&E){const h=t.oxw();t.xp6(1),t.AsE(" Attempt no ",h.attempts.current,"/",h.attempts.max,"")}}function Sc(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"img",11),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.openProgressIndicatorPopup())}),t.qZA()}}function Pc(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"img",12),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.toggleScreenRotate.emit())}),t.qZA()}}function mu(E,m){if(1&E&&(t.TgZ(0,"div",14),t._UZ(1,"quml-durationtimer"),t.TgZ(2,"span"),t._uU(3),t.qZA()()),2&E){const h=t.oxw(2);t.hYB("title","",h.minutes,":",h.seconds,""),t.xp6(3),t.AsE("",h.minutes,":",h.seconds,"")}}const F1=function(E){return{blink:E}};function c1(E,m){if(1&E&&(t.TgZ(0,"div",14),t._UZ(1,"quml-durationtimer"),t.TgZ(2,"span",15),t._uU(3),t.qZA()()),2&E){const h=t.oxw(2);t.hYB("title","",h.minutes,":",h.seconds,""),t.xp6(2),t.Q6J("ngClass",t.VKq(4,F1,h.showWarning)),t.xp6(1),t.Oqu(h.time)}}function f3(E,m){if(1&E&&(t.ynx(0),t.YNc(1,mu,4,4,"div",13),t.YNc(2,c1,4,6,"div",13),t.BQk()),2&E){const h=t.oxw();t.xp6(1),t.Q6J("ngIf",!h.initializeTimer),t.xp6(1),t.Q6J("ngIf",h.initializeTimer&&h.time)}}function Hr(E,m){if(1&E&&(t.ynx(0),t.TgZ(1,"div",14),t._UZ(2,"quml-durationtimer"),t.TgZ(3,"span"),t._uU(4),t.qZA()(),t.BQk()),2&E){const h=t.oxw();t.xp6(1),t.hYB("title","",h.minutes,":",h.seconds,""),t.xp6(3),t.Oqu(h.time)}}function Zl(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",20),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.nextSlide())})("keydown.enter",function(ee){t.CHM(h);const Ue=t.oxw(2);return ee.stopPropagation(),t.KtG(Ue.nextSlide())}),t.qZA()}if(2&E){const h=t.oxw(2);t.Q6J("ngClass",h.disableNext?"navigation-icon-disabled":"")}}function p3(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",21),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.nextSlide())})("keydown.enter",function(ee){t.CHM(h);const Ue=t.oxw(2);return ee.stopPropagation(),t.KtG(Ue.nextSlide())}),t.qZA()}if(2&E){const h=t.oxw(2);t.Q6J("ngClass",h.disableNext?"navigation-icon-disabled":"")}}function M2(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",16)(1,"div",17),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.prevSlide())}),t.qZA(),t.YNc(2,Zl,1,1,"div",18),t.YNc(3,p3,1,1,"div",19),t.qZA()}if(2&E){const h=t.oxw();t.xp6(1),t.Q6J("ngClass",h.startPageInstruction&&0===h.currentSlideIndex||!h.showStartPage&&1===h.currentSlideIndex?"navigation-icon-disabled":""),t.uIk("tabindex",h.startPageInstruction&&0===h.currentSlideIndex||!h.showStartPage&&1===h.currentSlideIndex?-1:0),t.xp6(1),t.Q6J("ngIf",!h.active),t.xp6(1),t.Q6J("ngIf",h.active)}}function fl(E,m){if(1&E&&(t.TgZ(0,"div",29),t._uU(1),t.qZA()),2&E){const h=t.oxw(2);t.xp6(1),t.AsE("",h.currentSlideIndex,"/",h.totalNoOfQuestions,"")}}function Hl(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",30)(1,"quml-ans",31),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.showSolution.emit())})("keydown",function(ee){t.CHM(h);const Ue=t.oxw(2);return t.KtG(Ue.onAnswerKeyDown(ee))}),t.qZA()()}}function h3(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",32),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.nextSlide())})("keydown.enter",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.nextSlide())}),t.qZA()}}function g3(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",33),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.nextSlide())})("keydown.enter",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.nextSlide())}),t.qZA()}}function Gl(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",22),t.YNc(1,fl,2,2,"div",23),t.YNc(2,Hl,2,0,"div",24),t.TgZ(3,"div",25)(4,"div",26),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.prevSlide())})("keydown.enter",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.prevSlide())}),t.qZA(),t.YNc(5,h3,1,0,"div",27),t.YNc(6,g3,1,0,"div",28),t.qZA()()}if(2&E){const h=t.oxw();t.xp6(1),t.Q6J("ngIf",h.currentSlideIndex),t.xp6(1),t.Q6J("ngIf",h.currentSolutions&&h.showFeedBack),t.xp6(3),t.Q6J("ngIf",!h.active),t.xp6(1),t.Q6J("ngIf",h.active)}}function Vl(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"quml-progress-indicators",34),t.NdJ("close",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.onProgressPopupClose())}),t.qZA()}}function Wl(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",5),t.NdJ("keydown",function(ee){const Ue=t.CHM(h),mt=Ue.$implicit,Lt=Ue.index,Cn=t.oxw(2);return t.KtG(Cn.onEnter(ee,mt,Lt))})("click",function(ee){const Ue=t.CHM(h),mt=Ue.$implicit,Lt=Ue.index,Cn=t.oxw(2);return t.KtG(Cn.onOptionSelect(ee,mt,Lt))}),t.TgZ(1,"div",6),t._UZ(2,"div",7),t.ALo(3,"safeHtml"),t.TgZ(4,"label",8),t._UZ(5,"input",9)(6,"span",10),t.qZA()()()}if(2&E){const h=m.$implicit;t.uIk("aria-checked",h.selected),t.xp6(1),t.Q6J("ngClass",h.selected?"quml-option quml-option--selected":"quml-option"),t.xp6(1),t.Q6J("innerHTML",t.lcZ(3,4,h.label),t.oJD),t.xp6(3),t.Q6J("checked",h.selected)}}function pl(E,m){if(1&E&&(t.TgZ(0,"div",3),t.YNc(1,Wl,7,6,"div",4),t.qZA()),2&E){const h=t.oxw();t.xp6(1),t.Q6J("ngForOf",h.mcqOptions)}}function q1(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div")(1,"quml-mcq-image-option",14),t.NdJ("imgOptionSelected",function(ee){t.CHM(h);const Ue=t.oxw(2);return t.KtG(Ue.onImageOptionSelected(ee))}),t.qZA()()}if(2&E){const h=m.$implicit;t.xp6(1),t.Q6J("mcqOption",h)}}function Na(E,m){if(1&E&&(t.TgZ(0,"div")(1,"div",11)(2,"div",12),t.YNc(3,q1,2,1,"div",13),t.qZA()()()),2&E){const h=t.oxw();t.xp6(3),t.Q6J("ngForOf",h.mcqOptions)}}function Ms(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div")(1,"quml-mcq-image-option",14),t.NdJ("imgOptionSelected",function(ee){t.CHM(h);const Ue=t.oxw(2);return t.KtG(Ue.onImageOptionSelected(ee))}),t.qZA()()}if(2&E){const h=m.$implicit;t.xp6(1),t.Q6J("mcqOption",h)}}function yo(E,m){if(1&E&&(t.TgZ(0,"div")(1,"div",15)(2,"div",12),t.YNc(3,Ms,2,1,"div",13),t.qZA()()()),2&E){const h=t.oxw();t.xp6(3),t.Q6J("ngForOf",h.mcqOptions)}}function m3(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div")(1,"quml-mcq-image-option",14),t.NdJ("imgOptionSelected",function(ee){t.CHM(h);const Ue=t.oxw(2);return t.KtG(Ue.onImageOptionSelected(ee))}),t.qZA()()}if(2&E){const h=m.$implicit;t.xp6(1),t.Q6J("mcqOption",h)}}function mr(E,m){if(1&E&&(t.TgZ(0,"div",16)(1,"div",11)(2,"div",12),t.YNc(3,m3,2,1,"div",13),t.qZA()()()),2&E){const h=t.oxw();t.xp6(3),t.Q6J("ngForOf",h.mcqOptions)}}function B1(E,m){if(1&E&&t._UZ(0,"img",4),2&E){const h=t.oxw();t.s9C("src",h.image,t.LSH)}}function d1(E,m){if(1&E&&(t._UZ(0,"div",5),t.ALo(1,"safeHtml")),2&E){const h=t.oxw();t.Q6J("innerHtml",t.lcZ(1,1,h.htmlTag),t.oJD)}}function f1(E,m){if(1&E&&(t._UZ(0,"div",5),t.ALo(1,"safeHtml")),2&E){const h=t.oxw();t.Q6J("innerHTML",t.lcZ(1,1,null==h.mcqOption?null:h.mcqOption.label),t.oJD)}}function Oc(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",15),t.NdJ("click",function(){const Ue=t.CHM(h).index,mt=t.oxw(2);return t.KtG(mt.goToQuestion(Ue+1))}),t._uU(1),t.qZA()}if(2&E){const h=m.$implicit,H=t.oxw(2);t.Q2q("aria-label","question number ",h.index,""),t.Q6J("ngClass",H.showFeedBack||"skipped"===h.class||"unattempted"===h.class?h.class:"attempted"),t.xp6(1),t.hij(" ",h.index," ")}}function E5(E,m){if(1&E&&(t.TgZ(0,"div",13),t.YNc(1,Oc,2,3,"div",14),t.qZA()),2&E){const h=t.oxw();t.xp6(1),t.Q6J("ngForOf",h.scores)}}function _3(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",15),t.NdJ("click",function(){const Ue=t.CHM(h).index,mt=t.oxw().$implicit,Lt=t.oxw(2);return t.KtG(Lt.goToQuestion(Ue+1,mt.identifier))}),t._uU(1),t.qZA()}if(2&E){const h=m.$implicit;t.Q2q("aria-label","question number ",h.index,""),t.Q6J("ngClass",h.showFeedback||"skipped"===h.class||"unattempted"===h.class?h.class:"attempted"),t.xp6(1),t.hij(" ",h.index," ")}}function Ac(E,m){if(1&E&&(t.TgZ(0,"div",17)(1,"div",18),t._uU(2),t.qZA(),t.TgZ(3,"div",19),t.YNc(4,_3,2,3,"div",14),t.qZA()()),2&E){const h=m.$implicit;t.xp6(2),t.hij("Section ",null==h?null:h.index,""),t.xp6(2),t.Q6J("ngForOf",null==h?null:h.children)}}function I5(E,m){if(1&E&&(t.TgZ(0,"div"),t.YNc(1,Ac,5,2,"div",16),t.qZA()),2&E){const h=t.oxw();t.xp6(1),t.Q6J("ngForOf",h.scores)}}function C3(E,m){if(1&E&&(t.TgZ(0,"div",3)(1,"div",4),t._uU(2,"Minutes"),t.qZA(),t.TgZ(3,"div",5),t._UZ(4,"quml-timer",6),t.TgZ(5,"span",7),t._uU(6),t.qZA()()()),2&E){const h=t.oxw();t.xp6(6),t.AsE("",h.minutes,":",h.seconds,"")}}function kc(E,m){if(1&E&&(t.TgZ(0,"div",3)(1,"div",4),t._uU(2,"Points"),t.qZA(),t.TgZ(3,"div",5)(4,"quml-startpagestaricon",6),t._uU(5,"i"),t.qZA(),t.TgZ(6,"span",7),t._uU(7),t.qZA()()()),2&E){const h=t.oxw();t.xp6(7),t.Oqu(h.points)}}function Nc(E,m){if(1&E&&(t.ynx(0),t.TgZ(1,"div",10)(2,"div",11),t._uU(3,"Instructions"),t.qZA(),t._UZ(4,"div",12),t.ALo(5,"safeHtml"),t.qZA(),t.BQk()),2&E){const h=t.oxw();t.xp6(4),t.Q6J("innerHTML",t.lcZ(5,1,h.instructions),t.oJD)}}function Ql(E,m){1&E&&(t.TgZ(0,"div",9)(1,"div",10),t._UZ(2,"img",11),t.qZA(),t._UZ(3,"div",12)(4,"img",13),t.qZA())}function w2(E,m){1&E&&(t.TgZ(0,"div",14)(1,"div",10),t._UZ(2,"img",15),t.qZA(),t._UZ(3,"div",12)(4,"img",16),t.qZA())}function Fc(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"span",20),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.close("tryAgain"))})("keyup.enter",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.close("tryAgain"))}),t._uU(1,"Try again"),t.qZA()}}function v3(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"span",21),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.viewSolution())})("keyup.enter",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.viewSolution())}),t._uU(1,"View Solution"),t.qZA()}}function L5(E,m){if(1&E&&(t.TgZ(0,"div",17),t.YNc(1,Fc,2,0,"span",18),t.YNc(2,v3,2,0,"span",19),t.qZA()),2&E){const h=t.oxw();t.xp6(1),t.Q6J("ngIf","wrong"===h.alertType),t.xp6(1),t.Q6J("ngIf","correct"===h.alertType&&h.showSolutionButton)}}function p1(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",22)(1,"img",23),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.viewHint())})("keyup.enter",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.viewHint())}),t.qZA()()}}const D5=["solutionVideoPlayer"];function x2(E,m){if(1&E&&(t.TgZ(0,"div",10),t._UZ(1,"div",4),t.ALo(2,"safeHtml"),t.qZA()),2&E){const h=m.$implicit;t.xp6(1),t.Q6J("innerHtml",t.lcZ(2,1,h.label),t.oJD)}}function qc(E,m){if(1&E&&(t._UZ(0,"div",4),t.ALo(1,"safeHtml")),2&E){const h=t.oxw().$implicit;t.Q6J("innerHtml",t.lcZ(1,1,h.value),t.oJD)}}function _u(E,m){if(1&E&&(t.TgZ(0,"div",16)(1,"video",17,18),t._UZ(3,"source",19)(4,"source",20),t.qZA()()),2&E){const h=t.oxw().$implicit;t.xp6(1),t.Q6J("poster",h.thumbnail,t.LSH),t.xp6(2),t.Q6J("src",h.src,t.LSH),t.xp6(1),t.Q6J("src",h.src,t.LSH)}}function Bc(E,m){if(1&E&&(t.TgZ(0,"div"),t._UZ(1,"img",21),t.qZA()),2&E){const h=t.oxw().$implicit;t.xp6(1),t.Q6J("src",h.src,t.LSH)}}function S5(E,m){if(1&E&&(t.TgZ(0,"div"),t.ynx(1,12),t.YNc(2,qc,2,3,"div",13),t.YNc(3,_u,5,3,"div",14),t.YNc(4,Bc,2,1,"div",15),t.BQk(),t.qZA()),2&E){const h=m.$implicit;t.xp6(1),t.Q6J("ngSwitch",h.type),t.xp6(1),t.Q6J("ngSwitchCase","html"),t.xp6(1),t.Q6J("ngSwitchCase","video"),t.xp6(1),t.Q6J("ngSwitchCase","image")}}function hl(E,m){if(1&E&&(t.TgZ(0,"div"),t.YNc(1,S5,5,4,"div",11),t.qZA()),2&E){const h=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",h.solutions)}}function P5(E,m){if(1&E&&(t.ynx(0),t.TgZ(1,"div",3),t._uU(2,"Solution"),t.qZA(),t.YNc(3,hl,2,1,"div",7),t.BQk()),2&E){const h=t.oxw();t.xp6(3),t.Q6J("ngIf",!h.showVideoSolution)}}const as=["myCarousel"],Rc=["imageModal"],O5=["questionSlide"];function y3(E,m){if(1&E&&(t.TgZ(0,"div",30),t._uU(1),t.qZA()),2&E){t.oxw();const h=t.MAs(9),H=t.oxw();t.xp6(1),t.AsE(" ",h.getCurrentSlideIndex(),"/",H.noOfQuestions," ")}}function Cu(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div")(1,"quml-ans",31),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.getSolutions())})("keydown",function(ee){t.CHM(h);const Ue=t.oxw(2);return t.KtG(Ue.onAnswerKeyDown(ee))}),t.qZA()()}}function b3(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div")(1,"quml-mcq",34),t.NdJ("optionSelected",function(ee){t.CHM(h);const Ue=t.oxw(3);return t.KtG(Ue.getOptionSelected(ee))}),t.qZA()()}if(2&E){const h=t.oxw().$implicit,H=t.oxw(2);t.xp6(1),t.Q6J("question",h)("replayed",null==H.parentConfig?null:H.parentConfig.isReplayed)("identifier",h.id)("tryAgain",H.tryAgainClicked)}}function vu(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div")(1,"quml-sa",35),t.NdJ("showAnswerClicked",function(ee){t.CHM(h);const Ue=t.oxw().$implicit,mt=t.oxw(2);return t.KtG(mt.showAnswerClicked(ee,Ue))}),t.qZA()()}if(2&E){const h=t.oxw().$implicit,H=t.oxw(2);t.xp6(1),t.Q6J("questions",h)("replayed",null==H.parentConfig?null:H.parentConfig.isReplayed)("baseUrl",null==H.parentConfig?null:H.parentConfig.baseUrl)}}function $a(E,m){if(1&E&&(t.TgZ(0,"slide",null,32)(2,"div",33),t.YNc(3,b3,2,4,"div",2),t.YNc(4,vu,2,3,"div",2),t.qZA()()),2&E){const h=m.$implicit;t.xp6(2),t.Q6J("id",h.identifier),t.xp6(1),t.Q6J("ngIf","multiple choice question"===(null==h?null:h.primaryCategory.toLowerCase())),t.xp6(1),t.Q6J("ngIf","subjective question"===(null==h?null:h.primaryCategory.toLowerCase()))}}function yu(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"li",42),t.NdJ("click",function(ee){const mt=t.CHM(h).$implicit,Lt=t.oxw(5);return t.KtG(Lt.goToSlideClicked(ee,null==mt?null:mt.index))})("keydown",function(ee){const mt=t.CHM(h).$implicit,Lt=t.oxw(5);return t.KtG(Lt.onEnter(ee,null==mt?null:mt.index))}),t._uU(1),t.qZA()}if(2&E){const h=m.$implicit,H=m.index;t.oxw(4);const ee=t.MAs(9);t.Q2q("aria-label","question number ",null==h?null:h.index,""),t.Q6J("ngClass",H+1===ee.getCurrentSlideIndex()?"skipped"===h.class?"progressBar-border":"progressBar-border "+h.class:h.class),t.xp6(1),t.hij(" ",null==h?null:h.index," ")}}function M3(E,m){if(1&E&&(t.TgZ(0,"ul"),t.YNc(1,yu,2,3,"li",41),t.qZA()),2&E){const h=t.oxw(4);t.xp6(1),t.Q6J("ngForOf",h.progressBarClass)}}function gl(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"li",42),t.NdJ("click",function(ee){const mt=t.CHM(h).$implicit,Lt=t.oxw(5);return t.KtG(Lt.goToSlideClicked(ee,null==mt?null:mt.index))})("keydown",function(ee){const mt=t.CHM(h).$implicit,Lt=t.oxw(5);return t.KtG(Lt.onEnter(ee,null==mt?null:mt.index))}),t._uU(1),t.qZA()}if(2&E){const h=m.$implicit,H=m.index;t.oxw(4);const ee=t.MAs(9);t.Q2q("aria-label","question number ",null==h?null:h.index,""),t.Q6J("ngClass",H+1===ee.getCurrentSlideIndex()?"skipped"===h.class?"progressBar-border":"att-color progressBar-border":"skipped"===h.class?h.class:"unattempted"===h.class?"":"att-color"),t.xp6(1),t.hij(" ",null==h?null:h.index," ")}}function w3(E,m){if(1&E&&(t.TgZ(0,"ul",43),t.YNc(1,gl,2,3,"li",41),t.qZA()),2&E){const h=t.oxw(4);t.xp6(1),t.Q6J("ngForOf",h.progressBarClass)}}const bu=function(E,m){return{attempted:E,partial:m}},zc=function(E){return{active:E}};function x3(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"li",38),t.NdJ("click",function(){const Ue=t.CHM(h).$implicit,mt=t.oxw(3);return t.KtG(mt.jumpToSection(null==Ue?null:Ue.identifier))})("keydown",function(ee){const mt=t.CHM(h).$implicit,Lt=t.oxw(3);return t.KtG(Lt.onSectionEnter(ee,null==mt?null:mt.identifier))}),t.TgZ(1,"label",39),t._uU(2),t.qZA(),t.YNc(3,M3,2,1,"ul",2),t.YNc(4,w3,2,1,"ul",40),t.qZA()}if(2&E){const h=m.$implicit,H=m.index,ee=t.oxw(3);t.Q2q("aria-label","section ",null==h?null:h.index,""),t.Q6J("ngClass",t.WLB(7,bu,"attempted"===h.class,"partial"===h.class)),t.xp6(1),t.MGl("for","list-item-",H,""),t.Q6J("ngClass",t.VKq(10,zc,(null==h?null:h.isActive)&&!ee.showRootInstruction&&"attempted"!==h.class)),t.xp6(1),t.Oqu(null==h?null:h.index),t.xp6(1),t.Q6J("ngIf",(null==h?null:h.isActive)&&ee.showFeedBack),t.xp6(1),t.Q6J("ngIf",(null==h?null:h.isActive)&&!ee.showFeedBack)}}function h1(E,m){if(1&E&&(t.TgZ(0,"ul",36),t.YNc(1,x3,5,12,"li",37),t.qZA()),2&E){const h=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",h.mainProgressBar)}}function ml(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"li",46),t.NdJ("click",function(ee){const mt=t.CHM(h).$implicit,Lt=t.oxw(3);return t.KtG(Lt.goToSlideClicked(ee,null==mt?null:mt.index))})("keydown",function(ee){const mt=t.CHM(h).$implicit,Lt=t.oxw(3);return t.KtG(Lt.onEnter(ee,null==mt?null:mt.index))}),t._uU(1),t.qZA()}if(2&E){const h=m.$implicit,H=m.index;t.oxw(2);const ee=t.MAs(9);t.Q2q("aria-label","question number ",null==h?null:h.index,""),t.Q6J("ngClass",H+1===ee.getCurrentSlideIndex()?"skipped"===h.class?"progressBar-border":"progressBar-border "+h.class:h.class),t.xp6(1),t.hij(" ",null==h?null:h.index," ")}}function Mu(E,m){if(1&E&&(t.TgZ(0,"ul",44),t.YNc(1,ml,2,3,"li",45),t.qZA()),2&E){const h=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",h.progressBarClass)}}function wu(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"li",46),t.NdJ("click",function(ee){const mt=t.CHM(h).$implicit,Lt=t.oxw(3);return t.KtG(Lt.goToSlideClicked(ee,null==mt?null:mt.index))})("keydown",function(ee){const mt=t.CHM(h).$implicit,Lt=t.oxw(3);return t.KtG(Lt.onEnter(ee,null==mt?null:mt.index))}),t._uU(1),t.qZA()}if(2&E){const h=m.$implicit,H=m.index;t.oxw(2);const ee=t.MAs(9);t.Q2q("aria-label","question number ",null==h?null:h.index,""),t.Q6J("ngClass",H+1===ee.getCurrentSlideIndex()?"skipped"===h.class?"progressBar-border":"att-color progressBar-border":"skipped"===h.class?h.class:"unattempted"===h.class?"":"att-color"),t.xp6(1),t.hij(" ",null==h?null:h.index," ")}}function T3(E,m){if(1&E&&(t.TgZ(0,"ul",47),t.YNc(1,wu,2,3,"li",45),t.qZA()),2&E){const h=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",h.progressBarClass)}}function xu(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"li",48),t.NdJ("click",function(){t.CHM(h);const ee=t.oxw(2);return ee.disableNext=!0,t.KtG(ee.onScoreBoardClicked())})("keydown",function(ee){t.CHM(h);const Ue=t.oxw(2);return t.KtG(Ue.onScoreBoardEnter(ee))}),t._UZ(1,"img",49),t.qZA()}}function jc(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"quml-alert",50),t.NdJ("showSolution",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.viewSolution())})("showHint",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.viewHint())})("closeAlert",function(ee){t.CHM(h);const Ue=t.oxw(2);return t.KtG(Ue.closeAlertBox(ee))}),t.qZA()}if(2&E){const h=t.oxw(2);t.Q6J("alertType",h.alertType)("isHintAvailable",h.showHints)("showSolutionButton",h.showUserSolution)}}function Uo(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"quml-mcq-solutions",51),t.NdJ("close",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.closeSolution())}),t.qZA()}if(2&E){const h=t.oxw(2);t.Q6J("question",h.currentQuestion)("options",h.currentOptions)("solutions",h.currentSolutions)}}function _l(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",11)(1,"div",12)(2,"quml-header",13),t.NdJ("durationEnds",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.durationEnds())})("nextSlideClicked",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.nextSlideClicked(ee))})("prevSlideClicked",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.previousSlideClicked(ee))})("showSolution",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.viewSolution())})("toggleScreenRotate",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.toggleScreenRotate())}),t.qZA(),t.TgZ(3,"div",14)(4,"div",15),t.YNc(5,y3,2,2,"div",16),t.YNc(6,Cu,2,0,"div",2),t.qZA(),t.TgZ(7,"div",17)(8,"carousel",18,19),t.NdJ("activeSlideChange",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.activeSlideChange(ee))}),t.TgZ(10,"slide"),t._UZ(11,"quml-startpage",20),t.qZA(),t.YNc(12,$a,5,3,"slide",21),t.qZA()(),t.TgZ(13,"div",22)(14,"ul"),t.ynx(15),t.TgZ(16,"li",23),t.NdJ("keydown",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.onEnter(ee,0))})("click",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.goToSlideClicked(ee,0))}),t._uU(17,"i "),t.qZA(),t.TgZ(18,"li"),t.YNc(19,h1,2,1,"ul",24),t.qZA(),t.TgZ(20,"li"),t.YNc(21,Mu,2,1,"ul",25),t.qZA(),t.TgZ(22,"li"),t.YNc(23,T3,2,1,"ul",26),t.qZA(),t.YNc(24,xu,2,0,"li",27),t.BQk(),t.qZA()()()(),t.YNc(25,jc,1,3,"quml-alert",28),t.YNc(26,Uo,1,3,"quml-mcq-solutions",29),t.qZA()}if(2&E){const h=t.oxw();t.Q6J("hidden",h.showZoomModal),t.xp6(1),t.Q6J("hidden",h.showSolution),t.xp6(1),t.Q6J("disablePreviousNavigation",h.linearNavigation)("duration",h.timeLimit)("warningTime",h.warningTime)("showTimer",h.showTimer)("showLegend",null==h.parentConfig?null:h.parentConfig.showLegend)("currentSlideIndex",h.currentSlideIndex)("totalNoOfQuestions",h.noOfQuestions)("active",h.active)("showFeedBack",h.showFeedBack)("currentSolutions",h.currentSolutions)("initializeTimer",h.initializeTimer)("replayed",null==h.parentConfig?null:h.parentConfig.isReplayed)("disableNext",h.disableNext)("startPageInstruction",h.startPageInstruction)("attempts",h.attempts)("showStartPage",h.showStartPage)("showDeviceOrientation",null==h.sectionConfig||null==h.sectionConfig.config?null:h.sectionConfig.config.showDeviceOrientation),t.xp6(3),t.Q6J("ngIf",!h.showRootInstruction),t.xp6(1),t.Q6J("ngIf",h.currentSolutions&&h.showUserSolution),t.xp6(2),t.Q6J("interval",0)("showIndicators",!1)("noWrap",!0),t.xp6(3),t.Q6J("instructions",h.showRootInstruction?null==h.parentConfig?null:h.parentConfig.instructions:null==h.sectionConfig.metadata||null==h.sectionConfig.metadata.instructions?null:h.sectionConfig.metadata.instructions.default)("points",h.points)("time",h.showRootInstruction?h.timeLimit:null)("showTimer",h.showTimer)("totalNoOfQuestions",h.showRootInstruction?null==h.parentConfig?null:h.parentConfig.questionCount:h.noOfQuestions)("contentName",h.showRootInstruction?null==h.parentConfig?null:h.parentConfig.contentName:null!=h.parentConfig&&h.parentConfig.isSectionsAvailable?null==h.sectionConfig||null==h.sectionConfig.metadata?null:h.sectionConfig.metadata.name:null==h.parentConfig?null:h.parentConfig.contentName),t.xp6(1),t.Q6J("ngForOf",h.questions),t.xp6(4),t.Q6J("ngClass",0===h.currentSlideIndex?"att-color progressBar-border":"att-color"),t.xp6(3),t.Q6J("ngIf",null==h.parentConfig?null:h.parentConfig.isSectionsAvailable),t.xp6(2),t.Q6J("ngIf",!(null!=h.parentConfig&&h.parentConfig.isSectionsAvailable)&&h.showFeedBack),t.xp6(2),t.Q6J("ngIf",!(null!=h.parentConfig&&h.parentConfig.isSectionsAvailable||h.showFeedBack)),t.xp6(1),t.Q6J("ngIf",h.parentConfig.requiresSubmit&&(null==h.progressBarClass?null:h.progressBarClass.length)),t.xp6(1),t.Q6J("ngIf",h.showAlert&&h.showFeedBack),t.xp6(1),t.Q6J("ngIf",h.showSolution)}}function T2(E,m){1&E&&(t.TgZ(0,"div",52),t._uU(1," Please attempt the question\n"),t.qZA())}function Kl(E,m){1&E&&t._UZ(0,"sb-player-contenterror")}const So=":root{--quml-mcq-title-txt:#131415} .quml-mcq .mcq-title, .quml-sa .mcq-title, .startpage__instr-desc .mcq-title, quml-mcq-solutions .mcq-title, quml-sa .mcq-title{color:var(--quml-mcq-title-txt)} .quml-mcq .fs-10, .quml-mcq .fs-11, .quml-mcq .fs-12, .quml-mcq .fs-13, .quml-mcq .fs-14, .quml-mcq .fs-15, .quml-mcq .fs-16, .quml-mcq .fs-17, .quml-mcq .fs-18, .quml-mcq .fs-19, .quml-mcq .fs-20, .quml-mcq .fs-21, .quml-mcq .fs-22, .quml-mcq .fs-23, .quml-mcq .fs-24, .quml-mcq .fs-25, .quml-mcq .fs-26, .quml-mcq .fs-27, .quml-mcq .fs-28, .quml-mcq .fs-29, .quml-mcq .fs-30, .quml-mcq .fs-36, .quml-mcq .fs-8, .quml-mcq .fs-9, .quml-sa .fs-10, .quml-sa .fs-11, .quml-sa .fs-12, .quml-sa .fs-13, .quml-sa .fs-14, .quml-sa .fs-15, .quml-sa .fs-16, .quml-sa .fs-17, .quml-sa .fs-18, .quml-sa .fs-19, .quml-sa .fs-20, .quml-sa .fs-21, .quml-sa .fs-22, .quml-sa .fs-23, .quml-sa .fs-24, .quml-sa .fs-25, .quml-sa .fs-26, .quml-sa .fs-27, .quml-sa .fs-28, .quml-sa .fs-29, .quml-sa .fs-30, .quml-sa .fs-36, .quml-sa .fs-8, .quml-sa .fs-9, .startpage__instr-desc .fs-10, .startpage__instr-desc .fs-11, .startpage__instr-desc .fs-12, .startpage__instr-desc .fs-13, .startpage__instr-desc .fs-14, .startpage__instr-desc .fs-15, .startpage__instr-desc .fs-16, .startpage__instr-desc .fs-17, .startpage__instr-desc .fs-18, .startpage__instr-desc .fs-19, .startpage__instr-desc .fs-20, .startpage__instr-desc .fs-21, .startpage__instr-desc .fs-22, .startpage__instr-desc .fs-23, .startpage__instr-desc .fs-24, .startpage__instr-desc .fs-25, .startpage__instr-desc .fs-26, .startpage__instr-desc .fs-27, .startpage__instr-desc .fs-28, .startpage__instr-desc .fs-29, .startpage__instr-desc .fs-30, .startpage__instr-desc .fs-36, .startpage__instr-desc .fs-8, .startpage__instr-desc .fs-9, quml-mcq-solutions .fs-10, quml-mcq-solutions .fs-11, quml-mcq-solutions .fs-12, quml-mcq-solutions .fs-13, quml-mcq-solutions .fs-14, quml-mcq-solutions .fs-15, quml-mcq-solutions .fs-16, quml-mcq-solutions .fs-17, quml-mcq-solutions .fs-18, quml-mcq-solutions .fs-19, quml-mcq-solutions .fs-20, quml-mcq-solutions .fs-21, quml-mcq-solutions .fs-22, quml-mcq-solutions .fs-23, quml-mcq-solutions .fs-24, quml-mcq-solutions .fs-25, quml-mcq-solutions .fs-26, quml-mcq-solutions .fs-27, quml-mcq-solutions .fs-28, quml-mcq-solutions .fs-29, quml-mcq-solutions .fs-30, quml-mcq-solutions .fs-36, quml-mcq-solutions .fs-8, quml-mcq-solutions .fs-9, quml-sa .fs-10, quml-sa .fs-11, quml-sa .fs-12, quml-sa .fs-13, quml-sa .fs-14, quml-sa .fs-15, quml-sa .fs-16, quml-sa .fs-17, quml-sa .fs-18, quml-sa .fs-19, quml-sa .fs-20, quml-sa .fs-21, quml-sa .fs-22, quml-sa .fs-23, quml-sa .fs-24, quml-sa .fs-25, quml-sa .fs-26, quml-sa .fs-27, quml-sa .fs-28, quml-sa .fs-29, quml-sa .fs-30, quml-sa .fs-36, quml-sa .fs-8, quml-sa .fs-9{line-height:normal} .quml-mcq .fs-8, .quml-sa .fs-8, .startpage__instr-desc .fs-8, quml-mcq-solutions .fs-8, quml-sa .fs-8{font-size:.5rem} .quml-mcq .fs-9, .quml-sa .fs-9, .startpage__instr-desc .fs-9, quml-mcq-solutions .fs-9, quml-sa .fs-9{font-size:.563rem} .quml-mcq .fs-10, .quml-sa .fs-10, .startpage__instr-desc .fs-10, quml-mcq-solutions .fs-10, quml-sa .fs-10{font-size:.625rem} .quml-mcq .fs-11, .quml-sa .fs-11, .startpage__instr-desc .fs-11, quml-mcq-solutions .fs-11, quml-sa .fs-11{font-size:.688rem} .quml-mcq .fs-12, .quml-sa .fs-12, .startpage__instr-desc .fs-12, quml-mcq-solutions .fs-12, quml-sa .fs-12{font-size:.75rem} .quml-mcq .fs-13, .quml-sa .fs-13, .startpage__instr-desc .fs-13, quml-mcq-solutions .fs-13, quml-sa .fs-13{font-size:.813rem} .quml-mcq .fs-14, .quml-sa .fs-14, .startpage__instr-desc .fs-14, quml-mcq-solutions .fs-14, quml-sa .fs-14{font-size:.875rem} .quml-mcq .fs-15, .quml-sa .fs-15, .startpage__instr-desc .fs-15, quml-mcq-solutions .fs-15, quml-sa .fs-15{font-size:.938rem} .quml-mcq .fs-16, .quml-sa .fs-16, .startpage__instr-desc .fs-16, quml-mcq-solutions .fs-16, quml-sa .fs-16{font-size:1rem} .quml-mcq .fs-17, .quml-sa .fs-17, .startpage__instr-desc .fs-17, quml-mcq-solutions .fs-17, quml-sa .fs-17{font-size:1.063rem} .quml-mcq .fs-18, .quml-sa .fs-18, .startpage__instr-desc .fs-18, quml-mcq-solutions .fs-18, quml-sa .fs-18{font-size:1.125rem} .quml-mcq .fs-19, .quml-sa .fs-19, .startpage__instr-desc .fs-19, quml-mcq-solutions .fs-19, quml-sa .fs-19{font-size:1.188rem} .quml-mcq .fs-20, .quml-sa .fs-20, .startpage__instr-desc .fs-20, quml-mcq-solutions .fs-20, quml-sa .fs-20{font-size:1.25rem} .quml-mcq .fs-21, .quml-sa .fs-21, .startpage__instr-desc .fs-21, quml-mcq-solutions .fs-21, quml-sa .fs-21{font-size:1.313rem} .quml-mcq .fs-22, .quml-sa .fs-22, .startpage__instr-desc .fs-22, quml-mcq-solutions .fs-22, quml-sa .fs-22{font-size:1.375rem} .quml-mcq .fs-23, .quml-sa .fs-23, .startpage__instr-desc .fs-23, quml-mcq-solutions .fs-23, quml-sa .fs-23{font-size:1.438rem} .quml-mcq .fs-24, .quml-sa .fs-24, .startpage__instr-desc .fs-24, quml-mcq-solutions .fs-24, quml-sa .fs-24{font-size:1.5rem} .quml-mcq .fs-25, .quml-sa .fs-25, .startpage__instr-desc .fs-25, quml-mcq-solutions .fs-25, quml-sa .fs-25{font-size:1.563rem} .quml-mcq .fs-26, .quml-sa .fs-26, .startpage__instr-desc .fs-26, quml-mcq-solutions .fs-26, quml-sa .fs-26{font-size:1.625rem} .quml-mcq .fs-27, .quml-sa .fs-27, .startpage__instr-desc .fs-27, quml-mcq-solutions .fs-27, quml-sa .fs-27{font-size:1.688rem} .quml-mcq .fs-28, .quml-sa .fs-28, .startpage__instr-desc .fs-28, quml-mcq-solutions .fs-28, quml-sa .fs-28{font-size:1.75rem} .quml-mcq .fs-29, .quml-sa .fs-29, .startpage__instr-desc .fs-29, quml-mcq-solutions .fs-29, quml-sa .fs-29{font-size:1.813rem} .quml-mcq .fs-30, .quml-sa .fs-30, .startpage__instr-desc .fs-30, quml-mcq-solutions .fs-30, quml-sa .fs-30{font-size:1.875rem} .quml-mcq .fs-36, .quml-sa .fs-36, .startpage__instr-desc .fs-36, quml-mcq-solutions .fs-36, quml-sa .fs-36{font-size:2.25rem} .quml-mcq .text-left, .quml-sa .text-left, .startpage__instr-desc .text-left, quml-mcq-solutions .text-left, quml-sa .text-left{text-align:left} .quml-mcq .text-center, .quml-sa .text-center, .startpage__instr-desc .text-center, quml-mcq-solutions .text-center, quml-sa .text-center{text-align:center} .quml-mcq .text-right, .quml-sa .text-right, .startpage__instr-desc .text-right, quml-mcq-solutions .text-right, quml-sa .text-right{text-align:right} .quml-mcq .image-style-align-right, .quml-sa .image-style-align-right, .startpage__instr-desc .image-style-align-right, quml-mcq-solutions .image-style-align-right, quml-sa .image-style-align-right{float:right;text-align:right;margin-left:.5rem} .quml-mcq .image-style-align-left, .quml-sa .image-style-align-left, .startpage__instr-desc .image-style-align-left, quml-mcq-solutions .image-style-align-left, quml-sa .image-style-align-left{float:left;text-align:left;margin-right:.5rem} .quml-mcq .image, .quml-mcq figure.image, .quml-sa .image, .quml-sa figure.image, .startpage__instr-desc .image, .startpage__instr-desc figure.image, quml-mcq-solutions .image, quml-mcq-solutions figure.image, quml-sa .image, quml-sa figure.image{display:table;clear:both;text-align:center;margin:.5rem auto;position:relative} .quml-mcq figure.image, .quml-mcq figure.image.resize-original, .quml-sa figure.image, .quml-sa figure.image.resize-original, .startpage__instr-desc figure.image, .startpage__instr-desc figure.image.resize-original, quml-mcq-solutions figure.image, quml-mcq-solutions figure.image.resize-original, quml-sa figure.image, quml-sa figure.image.resize-original{width:auto;height:auto;overflow:visible} .quml-mcq figure.image img, .quml-sa figure.image img, .startpage__instr-desc figure.image img, quml-mcq-solutions figure.image img, quml-sa figure.image img{width:100%} .quml-mcq figure.image.resize-original img, .quml-sa figure.image.resize-original img, .startpage__instr-desc figure.image.resize-original img, quml-mcq-solutions figure.image.resize-original img, quml-sa figure.image.resize-original img{width:auto;height:auto} .quml-mcq .image img, .quml-sa .image img, .startpage__instr-desc .image img, quml-mcq-solutions .image img, quml-sa .image img{display:block;margin:0 auto;max-width:100%;min-width:50px} .quml-mcq figure.image.resize-25, .quml-sa figure.image.resize-25, .startpage__instr-desc figure.image.resize-25, quml-mcq-solutions figure.image.resize-25, quml-sa figure.image.resize-25{width:25%;height:auto} .quml-mcq figure.image.resize-50, .quml-sa figure.image.resize-50, .startpage__instr-desc figure.image.resize-50, quml-mcq-solutions figure.image.resize-50, quml-sa figure.image.resize-50{width:50%;height:auto} .quml-mcq figure.image.resize-75, .quml-sa figure.image.resize-75, .startpage__instr-desc figure.image.resize-75, quml-mcq-solutions figure.image.resize-75, quml-sa figure.image.resize-75{width:75%;height:auto} .quml-mcq figure.image.resize-100, .quml-sa figure.image.resize-100, .startpage__instr-desc figure.image.resize-100, quml-mcq-solutions figure.image.resize-100, quml-sa figure.image.resize-100{width:100%;height:auto} .quml-mcq .solution-options figure.image, .quml-sa .solution-options figure.image, .startpage__instr-desc .solution-options figure.image, quml-mcq-solutions .solution-options figure.image, quml-sa .solution-options figure.image{width:7.5rem!important;height:7.5rem!important} .quml-mcq figure.table table, .quml-sa figure.table table, .startpage__instr-desc figure.table table, quml-mcq-solutions figure.table table, quml-sa figure.table table{border-right:.0625rem solid var(--gray-100)} .quml-mcq figure.table table, .quml-mcq figure.table table tr td, .quml-mcq figure.table table tr th, .quml-sa figure.table table, .quml-sa figure.table table tr td, .quml-sa figure.table table tr th, .startpage__instr-desc figure.table table, .startpage__instr-desc figure.table table tr td, .startpage__instr-desc figure.table table tr th, quml-mcq-solutions figure.table table, quml-mcq-solutions figure.table table tr td, quml-mcq-solutions figure.table table tr th, quml-sa figure.table table, quml-sa figure.table table tr td, quml-sa figure.table table tr th{border:.0625rem solid var(--black);border-collapse:collapse} .quml-mcq figure.table table, .quml-sa figure.table table, .startpage__instr-desc figure.table table, quml-mcq-solutions figure.table table, quml-sa figure.table table{width:100%;background:var(--white);border:.0625rem solid var(--gray-100);box-shadow:none;border-radius:.25rem .25rem 0 0;text-align:left;color:var(--gray);border-collapse:separate;border-spacing:0;table-layout:fixed} .quml-mcq figure.table table thead tr th, .quml-sa figure.table table thead tr th, .startpage__instr-desc figure.table table thead tr th, quml-mcq-solutions figure.table table thead tr th, quml-sa figure.table table thead tr th{border-right:.0625rem solid var(--gray-100);font-size:.875rem;padding:1rem;background-color:var(--primary-100);color:var(--gray);position:relative;height:2.5rem;border:0;border-bottom:.0625rem solid var(--gray-100);border-right:.0625rem solid var(--gray-100);font-weight:700;color:var(--primary-color);text-transform:uppercase} .quml-mcq figure.table table thead tr th:first-child, .quml-sa figure.table table thead tr th:first-child, .startpage__instr-desc figure.table table thead tr th:first-child, quml-mcq-solutions figure.table table thead tr th:first-child, quml-sa figure.table table thead tr th:first-child{border-top-left-radius:.25rem} .quml-mcq figure.table table thead tr th:last-child, .quml-sa figure.table table thead tr th:last-child, .startpage__instr-desc figure.table table thead tr th:last-child, quml-mcq-solutions figure.table table thead tr th:last-child, quml-sa figure.table table thead tr th:last-child{border-top-right-radius:.25rem;border-right:0 solid var(--gray-100)} .quml-mcq figure.table table tbody tr:nth-child(2n), .quml-sa figure.table table tbody tr:nth-child(2n), .startpage__instr-desc figure.table table tbody tr:nth-child(2n), quml-mcq-solutions figure.table table tbody tr:nth-child(2n), quml-sa figure.table table tbody tr:nth-child(2n){background-color:var(--gray-0)} .quml-mcq figure.table table tbody tr:hover, .quml-sa figure.table table tbody tr:hover, .startpage__instr-desc figure.table table tbody tr:hover, quml-mcq-solutions figure.table table tbody tr:hover, quml-sa figure.table table tbody tr:hover{background:var(--primary-0);color:rgba(var(--rc-rgba-gray),.95);cursor:pointer} .quml-mcq figure.table table tbody tr td, .quml-sa figure.table table tbody tr td, .startpage__instr-desc figure.table table tbody tr td, quml-mcq-solutions figure.table table tbody tr td, quml-sa figure.table table tbody tr td{font-size:.875rem;padding:1rem;color:var(--gray);height:3.5rem;border:0;border-bottom:.0625rem solid var(--gray-100);border-right:.0625rem solid var(--gray-100);word-break:break-word;line-height:normal} .quml-mcq figure.table table tbody tr td:last-child, .quml-sa figure.table table tbody tr td:last-child, .startpage__instr-desc figure.table table tbody tr td:last-child, quml-mcq-solutions figure.table table tbody tr td:last-child, quml-sa figure.table table tbody tr td:last-child{border-right:0 solid var(--gray-100)} .quml-mcq figure.table table tbody tr td p, .quml-sa figure.table table tbody tr td p, .startpage__instr-desc figure.table table tbody tr td p, quml-mcq-solutions figure.table table tbody tr td p, quml-sa figure.table table tbody tr td p{margin-bottom:0!important} .quml-mcq figure.table table tbody tr:last-child td, .quml-sa figure.table table tbody tr:last-child td, .startpage__instr-desc figure.table table tbody tr:last-child td, quml-mcq-solutions figure.table table tbody tr:last-child td, quml-sa figure.table table tbody tr:last-child td{border-bottom:none} .quml-mcq figure.table table tbody tr:last-child td:first-child, .quml-sa figure.table table tbody tr:last-child td:first-child, .startpage__instr-desc figure.table table tbody tr:last-child td:first-child, quml-mcq-solutions figure.table table tbody tr:last-child td:first-child, quml-sa figure.table table tbody tr:last-child td:first-child{border-bottom-left-radius:.25rem} .quml-mcq figure.table table tbody tr:last-child td:last-child, .quml-sa figure.table table tbody tr:last-child td:last-child, .startpage__instr-desc figure.table table tbody tr:last-child td:last-child, quml-mcq-solutions figure.table table tbody tr:last-child td:last-child, quml-sa figure.table table tbody tr:last-child td:last-child{border-bottom-right-radius:.25rem} .quml-mcq ol, .quml-mcq ul, .quml-sa ol, .quml-sa ul, .startpage__instr-desc ol, .startpage__instr-desc ul, quml-mcq-solutions ol, quml-mcq-solutions ul, quml-sa ol, quml-sa ul{margin-top:.5rem} .quml-mcq ol li, .quml-mcq ul li, .quml-sa ol li, .quml-sa ul li, .startpage__instr-desc ol li, .startpage__instr-desc ul li, quml-mcq-solutions ol li, quml-mcq-solutions ul li, quml-sa ol li, quml-sa ul li{margin:.5rem;font-weight:400;line-height:normal} .quml-mcq ul, .quml-sa ul, .startpage__instr-desc ul, quml-mcq-solutions ul, quml-sa ul{list-style-type:disc} .quml-mcq h1, .quml-mcq h2, .quml-mcq h3, .quml-mcq h4, .quml-mcq h5, .quml-mcq h6, .quml-sa h1, .quml-sa h2, .quml-sa h3, .quml-sa h4, .quml-sa h5, .quml-sa h6, .startpage__instr-desc h1, .startpage__instr-desc h2, .startpage__instr-desc h3, .startpage__instr-desc h4, .startpage__instr-desc h5, .startpage__instr-desc h6, quml-mcq-solutions h1, quml-mcq-solutions h2, quml-mcq-solutions h3, quml-mcq-solutions h4, quml-mcq-solutions h5, quml-mcq-solutions h6, quml-sa h1, quml-sa h2, quml-sa h3, quml-sa h4, quml-sa h5, quml-sa h6{color:var(--primary-color);line-height:normal;margin-bottom:1rem} .quml-mcq p, .quml-mcq span, .quml-sa p, .quml-sa span, .startpage__instr-desc p, .startpage__instr-desc span, quml-mcq-solutions p, quml-mcq-solutions span, quml-sa p, quml-sa span{color:var(--quml-mcq-title-txt)} .quml-mcq p span strong, .quml-mcq p strong, .quml-sa p span strong, .quml-sa p strong, .startpage__instr-desc p span strong, .startpage__instr-desc p strong, quml-mcq-solutions p span strong, quml-mcq-solutions p strong, quml-sa p span strong, quml-sa p strong{font-weight:700} .quml-mcq p span u, .quml-mcq p u, .quml-sa p span u, .quml-sa p u, .startpage__instr-desc p span u, .startpage__instr-desc p u, quml-mcq-solutions p span u, quml-mcq-solutions p u, quml-sa p span u, quml-sa p u{text-decoration:underline} .quml-mcq p i, .quml-mcq p span i, .quml-sa p i, .quml-sa p span i, .startpage__instr-desc p i, .startpage__instr-desc p span i, quml-mcq-solutions p i, quml-mcq-solutions p span i, quml-sa p i, quml-sa p span i{font-style:italic} .quml-mcq p, .quml-sa p, .startpage__instr-desc p, quml-mcq-solutions p, quml-sa p{line-height:normal}";function Yl(E,m){if(1&E&&t._UZ(0,"sb-player-start-page",5),2&E){const h=t.oxw();t.Q6J("title",null==h.parentConfig?null:h.parentConfig.contentName)}}function E2(E,m){1&E&&t._UZ(0,"sb-player-side-menu-icon")}function E3(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"quml-header",6),t.NdJ("toggleScreenRotate",function(){t.CHM(h);const ee=t.oxw();return t.KtG(ee.toggleScreenRotate())}),t.qZA()}if(2&E){const h=t.oxw();t.Q6J("showLegend",null==h.parentConfig?null:h.parentConfig.showLegend)("disablePreviousNavigation",!0)("disableNext",!0)("attempts",h.attempts)("loadScoreBoard",!0)("showDeviceOrientation",null==h.playerConfig||null==h.playerConfig.config?null:h.playerConfig.config.showDeviceOrientation)}}function I2(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"quml-scoreboard",12),t.NdJ("scoreBoardLoaded",function(ee){t.CHM(h);const Ue=t.oxw(2);return t.KtG(Ue.onScoreBoardLoaded(ee))})("submitClicked",function(){t.CHM(h);const ee=t.oxw(2);return t.KtG(ee.onScoreBoardSubmitted())})("emitQuestionNo",function(ee){t.CHM(h);const Ue=t.oxw(2);return t.KtG(Ue.goToQuestion(ee))}),t.qZA()}if(2&E){const h=t.oxw(2);t.Q6J("contentName",h.parentConfig.contentName)("scores",h.mainProgressBar)("totalNoOfQuestions",h.totalNoOfQuestions)("showFeedBack",h.showFeedBack)("isSections",null==h.parentConfig?null:h.parentConfig.isSectionsAvailable)("summary",h.summary)}}function Tu(E,m){if(1&E&&(t.TgZ(0,"span",18),t._uU(1),t.qZA()),2&E){const h=t.oxw(4);t.xp6(1),t.AsE("Attempt no ",h.attempts.current,"/",h.attempts.max," ")}}function Eu(E,m){if(1&E&&(t.TgZ(0,"span",19),t._uU(1),t.qZA()),2&E){const h=t.oxw(4);t.xp6(1),t.AsE("",h.attempts.current,"/",h.attempts.max," attempts completed ")}}function Iu(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"sb-player-end-page",15),t.NdJ("replayContent",function(){t.CHM(h);const ee=t.oxw(3);return t.KtG(ee.replayContent())})("exitContent",function(ee){t.CHM(h);const Ue=t.oxw(3);return t.KtG(Ue.exitContent(ee))})("playNextContent",function(ee){t.CHM(h);const Ue=t.oxw(3);return t.KtG(Ue.playNextContent(ee))}),t.YNc(1,Tu,2,2,"span",16),t.YNc(2,Eu,2,2,"span",17),t.qZA()}if(2&E){const h=t.oxw(3);t.Q6J("contentName",h.parentConfig.contentName)("outcome",h.outcomeLabel)("outcomeLabel","Score: ")("userName",h.userName)("timeSpentLabel",h.durationSpent)("showExit",null==h.parentConfig?null:h.parentConfig.sideMenuConfig.showExit)("showReplay",h.showReplay)("nextContent",h.nextContent),t.xp6(1),t.Q6J("ngIf",(null==h.attempts?null:h.attempts.max)&&(null==h.attempts?null:h.attempts.current)&&h.attempts.max!==h.attempts.current),t.xp6(1),t.Q6J("ngIf",(null==h.attempts?null:h.attempts.max)===(null==h.attempts?null:h.attempts.current))}}function I3(E,m){if(1&E&&(t.TgZ(0,"div",13),t.YNc(1,Iu,3,10,"sb-player-end-page",14),t.qZA()),2&E){const h=t.oxw(2);t.Q6J("ngClass",h.endPageReached?"endPage-container-height":""),t.xp6(1),t.Q6J("ngIf",h.endPageReached&&h.showEndPage)}}function Lu(E,m){if(1&E&&(t.TgZ(0,"div"),t._UZ(1,"sb-player-contenterror",20),t.qZA()),2&E){const h=t.oxw(2);t.xp6(1),t.Q6J("errorMsg",h.contentError)}}function Uc(E,m){if(1&E){const h=t.EpF();t.TgZ(0,"div",7)(1,"div",8)(2,"quml-section-player",9),t.NdJ("sectionEnd",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.onSectionEnd(ee))})("showScoreBoard",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.onShowScoreBoard(ee))})("playerEvent",function(ee){t.CHM(h);const Ue=t.oxw();return t.KtG(Ue.onPlayerEvent(ee))}),t.qZA()(),t.YNc(3,I2,1,6,"quml-scoreboard",10),t.YNc(4,I3,2,2,"div",11),t.YNc(5,Lu,2,1,"div",1),t.qZA()}if(2&E){const h=t.oxw();t.xp6(1),t.Q6J("hidden",!h.activeSection||h.loadScoreBoard||h.endPageReached),t.xp6(1),t.Q6J("sectionConfig",h.activeSection)("attempts",h.attempts)("mainProgressBar",h.mainProgressBar)("parentConfig",h.parentConfig)("sectionIndex",h.sectionIndex)("jumpToQuestion",h.jumpToQuestion),t.xp6(1),t.Q6J("ngIf",h.loadScoreBoard&&(null==h.parentConfig?null:h.parentConfig.requiresSubmit)&&!h.endPageReached),t.xp6(1),t.Q6J("ngIf",h.endPageReached),t.xp6(1),t.Q6J("ngIf",h.isMultiLevelSection)}}function Zc(E,m){if(1&E&&(t.TgZ(0,"div",11),t._UZ(1,"span",12),t.TgZ(2,"p"),t._uU(3),t.qZA()()),2&E){const h=m.$implicit;t.xp6(1),t.Q6J("ngClass",h.class?h.class:"")("innerHtml",h.iconText,t.oJD),t.xp6(2),t.Oqu(h.title)}}class Gr{constructor(){}uniqueId(m=32){let h="";const H="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",ee=H.length;for(let Ue=0;UeH.includes("response"))}getMultiselectScore(m,h){let H=this.getKeyValue(Object.keys(h));const ee=m.map(Cn=>Cn.value);let Ue=h[H].correctResponse.outcomes.score?h[H].correctResponse.outcomes.score:h.maxScore,mt=h[H].correctResponse.value,Lt=h[H].mapping;return N(mt,ee)?Ue:N(mt,ee)?void 0:ee.reduce((Cn,ii)=>Cn+=Lt[ii]?Lt[ii].outcomes.score:0,0)}hasDuplicates(m,h){return m.find(ee=>ee.value===h.value)}getQuestionType(m,h){return m[h-1==-1?0:h-1].qType}canGo(m){return["correct","wrong","attempted"].includes(m)}sumObjectsByKey(...m){return m.reduce((h,H)=>{for(const ee in H)H.hasOwnProperty(ee)&&(h[ee]=(h[ee]||0)+H[ee]);return h},{})}scrollParentToChild(m,h){const H=window.matchMedia("(max-width: 480px)").matches,ee=m.getBoundingClientRect(),Ue=h.getBoundingClientRect();H?m.scrollLeft=Ue.left+m.scrollLeft-ee.left:m.scrollTop=Ue.top+m.scrollTop-ee.top}}Gr.\u0275fac=function(m){return new(m||Gr)},Gr.ctorParameters=()=>[],Gr.\u0275prov=(0,t.Yz7)({factory:function(){return new Gr},token:Gr,providedIn:"root"});class Fa{constructor(m){this.utilService=m,this.isSectionsAvailable=!1,this.telemetryEvent=new t.vpe}initializeTelemetry(m,h){var H;if(this.duration=(new Date).getTime(),this.context=m.context,this.contentSessionId=this.utilService.uniqueId(),this.playSessionId=this.utilService.uniqueId(),this.channel=this.context.channel||"",this.pdata=this.context.pdata,this.sid=this.context.sid,this.uid=this.context.uid,this.rollup=this.context.contextRollup,this.config=m,this.isSectionsAvailable=null===(H=h)||void 0===H?void 0:H.isSectionsAvailable,!C.CsTelemetryModule.instance.isInitialised){const ee={pdata:this.context.pdata,env:"contentplayer",channel:this.context.channel,did:this.context.did,authtoken:this.context.authToken||"",uid:this.context.uid||"",sid:this.context.sid,batchsize:20,mode:this.context.mode,host:this.context.host||"",endpoint:this.context.endpoint||"/data/v3/telemetry",tags:this.context.tags,cdata:(this.context.cdata||[]).concat([{id:this.contentSessionId,type:"ContentSession"},{id:this.playSessionId,type:"PlaySession"},{id:"2.0",type:"PlayerVersion"}])};C.CsTelemetryModule.instance.init({}),C.CsTelemetryModule.instance.telemetryService.initTelemetry({config:ee,userOrgDetails:{}})}this.telemetryObject={id:h.identifier,type:"Content",ver:m.metadata.pkgVersion?m.metadata.pkgVersion.toString():"",rollup:this.context.objectRollup||{}}}startAssesEvent(m){C.CsTelemetryModule.instance.telemetryService.raiseAssesTelemetry(m,this.getEventOptions())}start(m){C.CsTelemetryModule.instance.telemetryService.raiseStartTelemetry({options:this.getEventOptions(),edata:{type:"content",mode:"play",pageid:"",duration:Number((m/1e3).toFixed(2))}})}response(m,h,H,ee){const Ue={target:{id:m,ver:h,type:H},type:"CHOOSE",values:[{option:ee}]};C.CsTelemetryModule.instance.telemetryService.raiseResponseTelemetry(Ue,this.getEventOptions())}summary(m){C.CsTelemetryModule.instance.telemetryService.raiseSummaryTelemetry(m,this.getEventOptions())}end(m,h,H,ee,Ue,mt){const Lt=Number((m/1e3).toFixed(2));C.CsTelemetryModule.instance.telemetryService.raiseEndTelemetry({edata:{type:"content",mode:"play",pageid:"sunbird-player-Endpage",summary:[{progress:Number((h/H*100).toFixed(0))},{totalNoofQuestions:H},{visitedQuestions:ee},{endpageseen:Ue},{score:mt}],duration:Lt},options:this.getEventOptions()})}interact(m,h,H){C.CsTelemetryModule.instance.telemetryService.raiseInteractTelemetry({options:this.getEventOptions(),edata:{type:"TOUCH",subtype:"",id:m,pageid:h+""}})}heartBeat(m){C.CsTelemetryModule.instance.playerTelemetryService.onHeartBeatEvent(m,{})}impression(m){C.CsTelemetryModule.instance.telemetryService.raiseImpressionTelemetry({options:this.getEventOptions(),edata:{type:"workflow",subtype:"",pageid:m+"",uri:""}})}error(m,h){C.CsTelemetryModule.instance.telemetryService.raiseErrorTelemetry({options:this.getEventOptions(),edata:{err:"LOAD",errtype:"content",stacktrace:m&&m.toString()||""}})}getEventOptions(){const m={object:this.telemetryObject,context:{channel:this.channel||"",pdata:this.pdata,env:"contentplayer",sid:this.sid,uid:this.uid,cdata:(this.context.cdata||[]).concat([{id:this.contentSessionId,type:"ContentSession"},{id:this.playSessionId,type:"PlaySession"},{id:"2.0",type:"PlayerVersion"}]),rollup:this.rollup||{}}};return this.isSectionsAvailable&&m.context.cdata.push({id:this.config.metadata.identifier,type:"SectionId"}),m}}Fa.\u0275fac=function(m){return new(m||Fa)(t.LFG(Gr))},Fa.ctorParameters=()=>[{type:Gr}],Fa.\u0275prov=(0,t.Yz7)({factory:function(){return new Fa((0,t.LFG)(Gr))},token:Fa,providedIn:"root"});class g1{constructor(){}ngOnInit(){}}g1.\u0275fac=function(m){return new(m||g1)},g1.\u0275cmp=t.Xpm({type:g1,selectors:[["lib-quml-library"]],decls:2,vars:0,template:function(m,h){1&m&&(t.TgZ(0,"p"),t._uU(1," quml-library works! "),t.qZA())},encapsulation:2}),g1.ctorParameters=()=>[];class Us{constructor(m,h){this.domSanitizer=m,this.utilService=h,this.componentLoaded=new t.vpe,this.answerChanged=new t.vpe,this.optionSelected=new t.vpe,this.mcqOptions=[],this.showQumlPopup=!1}ngOnInit(){var m;null!==(m=this.question)&&void 0!==m&&m.solutions&&(this.solutions=this.question.solutions);let h=this.utilService.getKeyValue(Object.keys(this.question.responseDeclaration));switch(this.cardinality=this.question.responseDeclaration[h].cardinality,this.question.templateId){case"mcq-vertical":this.layout="DEFAULT";break;case"mcq-horizontal":this.layout="IMAGEGRID";break;case"mcq-vertical-split":this.layout="IMAGEQAGRID";break;case"mcq-grid-split":this.layout="MULTIIMAGEGRID";break;default:console.error("Invalid templateId")}this.renderLatex(),this.mcqQuestion=this.domSanitizer.sanitize(t.q3G.HTML,this.domSanitizer.bypassSecurityTrustHtml(this.question.body)),this.options=this.question.interactions[h].options,this.initOptions()}ngAfterViewInit(){const m=document.getElementsByClassName("mcq-options");null!=m&&m.length>0&&m[0].remove()}initOptions(){for(let m=0;m{this.replaceLatexText()},100)}replaceLatexText(){const m=document.getElementById(this.identifier);if(null!=m){const h=m.getElementsByClassName("mathText");for(let H=0;H[{type:tn.H7},{type:Gr}],Us.propDecorators={question:[{type:t.IIB}],identifier:[{type:t.IIB}],layout:[{type:t.IIB}],replayed:[{type:t.IIB}],tryAgain:[{type:t.IIB}],componentLoaded:[{type:t.r_U}],answerChanged:[{type:t.r_U}],optionSelected:[{type:t.r_U}]};class R1{constructor(m){this.domSanitizer=m,this.componentLoaded=new t.vpe,this.showAnswerClicked=new t.vpe,this.showAnswer=!1}ngOnChanges(){var m;this.replayed?this.showAnswer=!1:null!==(m=this.questions)&&void 0!==m&&m.isAnswerShown&&(this.showAnswer=!0)}showAnswerToUser(){this.showAnswer=!0,this.showAnswerClicked.emit({showAnswer:this.showAnswer})}onEnter(m){13===m.keyCode&&(m.stopPropagation(),this.showAnswerToUser())}handleKeyboardAccessibility(){Array.from(document.getElementsByClassName("option-body")).forEach(h=>{h.offsetHeight&&Array.from(h.querySelectorAll("a")).forEach(ee=>{ee.setAttribute("tabindex","-1")})})}ngOnInit(){var m,h,H,ee;this.question=null===(m=this.questions)||void 0===m?void 0:m.body,this.answer=null===(h=this.questions)||void 0===h?void 0:h.answer,this.solutions=null===(H=this.questions)||void 0===H?void 0:H.solutions,null===(ee=this.questions)||void 0===ee||ee.solutions.forEach(Ue=>{var mt;("video"===Ue.type||"image"===Ue.type)&&(null===(mt=this.questions)||void 0===mt||mt.media.forEach(Lt=>{Ue.value===Lt.id&&(this.baseUrl?Ue.src=`${this.baseUrl}/${this.questions.identifier}/${Lt.src}`:Ue.src=Lt.baseUrl?Lt.baseUrl+Lt.src:Lt.src,Lt.thumbnail&&(Ue.thumbnail=Lt.thumbnail))}))})}ngAfterViewInit(){this.handleKeyboardAccessibility()}}R1.\u0275fac=function(m){return new(m||R1)(t.Y36(tn.H7))},R1.\u0275cmp=t.Xpm({type:R1,selectors:[["quml-sa"]],inputs:{questions:"questions",replayed:"replayed",baseUrl:"baseUrl"},outputs:{componentLoaded:"componentLoaded",showAnswerClicked:"showAnswerClicked"},features:[t.TTD],decls:14,vars:11,consts:[[1,"quml-sa"],["tabindex","0",1,"question-container"],[1,"sa-title"],[1,"question",3,"innerHTML"],[1,"sa-button-container"],["id","submit-answer","tabindex","0","class","sb-btn sb-btn-primary sb-btn-normal sb-btn-radius","aria-label","Show Answer",3,"click","keydown",4,"ngIf"],["id","answer-container",3,"ngClass"],[1,"option-body",3,"innerHTML"],[4,"ngIf"],["id","submit-answer","tabindex","0","aria-label","Show Answer",1,"sb-btn","sb-btn-primary","sb-btn-normal","sb-btn-radius",3,"click","keydown"],["class","solutions",4,"ngFor","ngForOf"],[1,"solutions"],[3,"ngSwitch"],["tabindex","-1",3,"innerHTML",4,"ngSwitchCase"],[4,"ngSwitchCase"],["tabindex","-1",3,"innerHTML"],["width","400","controls","",3,"poster"],["type","video/mp4",3,"src"],["type","video/webm",3,"src"],["alt","Subjective question solution with image",3,"src"]],template:function(m,h){1&m&&(t.TgZ(0,"div",0)(1,"div",1)(2,"div",2),t._uU(3,"Question"),t.qZA(),t._UZ(4,"div",3),t.ALo(5,"safeHtml"),t.qZA(),t.TgZ(6,"div",4),t.YNc(7,pu,2,0,"div",5),t.qZA(),t.TgZ(8,"div",6)(9,"div",2),t._uU(10,"Answer"),t.qZA(),t._UZ(11,"div",7),t.ALo(12,"safeHtml"),t.YNc(13,gu,4,2,"ng-container",8),t.qZA()()),2&m&&(t.xp6(4),t.Q6J("innerHTML",t.lcZ(5,7,h.question),t.oJD),t.xp6(3),t.Q6J("ngIf",!h.showAnswer),t.xp6(1),t.Q6J("ngClass",h.showAnswer?"option-container-blurred-out":"option-container-blurred"),t.xp6(1),t.uIk("aria-hidden",!h.showAnswer||null),t.xp6(2),t.Q6J("innerHTML",t.lcZ(12,9,h.answer),t.oJD),t.uIk("aria-hidden",!h.showAnswer||null),t.xp6(2),t.Q6J("ngIf",null==h.solutions?null:h.solutions.length))},dependencies:function(){return[tt.mk,tt.sg,tt.O5,tt.RF,tt.n9,la]},styles:[".sa-title[_ngcontent-%COMP%]{color:var(--primary-color);font-size:.875rem;font-weight:500;margin:16px 0;clear:both}.question-container[_ngcontent-%COMP%]{margin-top:2.5rem}.sa-button-container[_ngcontent-%COMP%]{text-align:center;margin-bottom:1rem;margin-top:1rem;clear:both}.option-container-blurred[_ngcontent-%COMP%]{filter:blur(.25rem);pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;clear:both}.option-container-blurred-out[_ngcontent-%COMP%]{filter:unset;transition:.4s;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;pointer-events:auto}.solutions[_ngcontent-%COMP%]{clear:both}",dl]}),R1.ctorParameters=()=>[{type:tn.H7}],R1.propDecorators={questions:[{type:t.IIB}],replayed:[{type:t.IIB}],baseUrl:[{type:t.IIB}],componentLoaded:[{type:t.r_U}],showAnswerClicked:[{type:t.r_U}]};const ss_submitPage="SUBMIT_PAGE",ss_endPage="END_PAGE",ss_shortAnswer="SHORT_ANSWER",Vi_pageScrolled="PAGE_SCROLLED",Vi_viewHint="VIEW_HINT",Vi_showAnswer="SHOW_ANSWER_CLICKED",Vi_nextClicked="NEXT_CLICKED",Vi_prevClicked="PREV_CLICKED",Vi_replayClicked="REPLAY_CLICKED",Vi_startPageLoaded="START_PAGE_LOADED",Vi_viewSolutionClicked="VIEW_SOLUTION_CLICKED",Vi_solutionClosed="SOLUTION_CLOSED",Vi_closedFeedBack="CLOSED_FEEDBACK",Vi_tryAgain="TRY_AGAIN",Vi_optionClicked="OPTION_CLICKED",Vi_scoreBoardSubmitClicked="SCORE_BOARD_SUBMIT_CLICKED",Vi_scoreBoardReviewClicked="SCORE_BOARD_REVIEW_CLICKED",Vi_endPageExitClicked="EXIT",Vi_zoomClicked="ZOOM_CLICKED",Vi_zoomInClicked="ZOOM_IN_CLICKED",Vi_zoomOutClicked="ZOOM_OUT_CLICKED",Vi_zoomCloseClicked="ZOOM_CLOSE_CLICKED",Vi_goToQuestion="GO_TO_QUESTION",Vi_nextContentPlay="NEXT_CONTENT_PLAY",Vi_deviceRotationClicked="DEVICE_ROTATION_CLICKED",Vi_progressIndicatorPopupClosed="PROGRESS_INDICATOR_POPUP_CLOSED",Vi_progressIndicatorPopupOpened="PROGRESS_INDICATOR_POPUP_OPENED",Ni_interact="interact",Ni_impression="impression",Jl_questionSet="application/vnd.sunbird.questionset",Cl_single="single",Cl_multiple="multiple";class z1{}class Po{constructor(m,h,H){this.qumlLibraryService=m,this.utilService=h,this.questionCursor=H,this.qumlPlayerEvent=new t.vpe,this.qumlQuestionEvent=new t.vpe,this.version="1.0",this.timeSpent="0:0",this.isAvailableLocally=!1,this.isSectionsAvailable=!1,this.sectionQuestions=[]}initialize(m,h,H,ee){var Ue;this.qumlLibraryService.initializeTelemetry(m,ee),this.identifiers=fa(H),this.parentIdentifier=m.metadata.identifier,this.threshold=h,this.rotation=0,this.totalNumberOfQuestions=m.metadata.childNodes.length||0,this.qumlPlayerStartTime=this.qumlPlayerLastPageTime=(new Date).getTime(),this.currentQuestionIndex=1,this.contentName=m.metadata.name,this.isAvailableLocally=ee.isAvailableLocally,this.isSectionsAvailable=null===(Ue=ee)||void 0===Ue?void 0:Ue.isSectionsAvailable,this.src=m.metadata.artifactUrl||"",this.questionSetId=m.metadata.identifier,m.context.userData&&(this.userName=m.context.userData.firstName+" "+m.context.userData.lastName),this.metaData={pagesHistory:[],totalPages:0,duration:0,rotation:[],progressBar:[],questions:[],questionIds:[],lastQuestionId:""},this.loadingProgress=0,this.endPageSeen=!1}raiseStartEvent(m){this.currentQuestionIndex=m;const h=(new Date).getTime()-this.qumlPlayerStartTime,H={eid:"START",ver:this.version,edata:{type:"START",currentIndex:this.currentQuestionIndex,duration:h},metaData:this.metaData};this.qumlPlayerEvent.emit(H),this.qumlPlayerLastPageTime=this.qumlPlayerStartTime=(new Date).getTime(),this.qumlLibraryService.start(h)}raiseEndEvent(m,h,H){this.metaData.questions=this.sectionQuestions;const ee=(new Date).getTime()-this.qumlPlayerStartTime,Ue={eid:"END",ver:this.version,edata:{type:"END",currentPage:m,totalPages:this.totalNumberOfQuestions,duration:ee},metaData:this.metaData};this.qumlPlayerEvent.emit(Ue);this.metaData.pagesHistory.filter((Lt,Cn,ii)=>ii.indexOf(Lt)===Cn).length;this.timeSpent=this.utilService.getTimeSpentText(this.qumlPlayerStartTime),this.qumlLibraryService.end(ee,m,this.totalNumberOfQuestions,this.totalNumberOfQuestions,h,H)}raiseHeartBeatEvent(m,h,H,ee){const Ue={eid:"HEARTBEAT",ver:this.version,edata:{type:m,questionIndex:this.currentQuestionIndex},metaData:this.metaData};m===Vi_nextContentPlay&&ee&&(Ue.edata.nextContentId=ee),this.isSectionsAvailable&&(Ue.edata.sectionId=this.questionSetId),this.qumlPlayerEvent.emit(Ue),Ni_interact===h?this.qumlLibraryService.interact(m.toLowerCase(),H):Ni_impression===h&&this.qumlLibraryService.impression(H)}raiseAssesEvent(m,h,H,ee,Ue,mt){const Lt={item:m,index:h,pass:H,score:ee,resvalues:Ue,duration:mt};this.qumlPlayerEvent.emit(Lt),this.qumlLibraryService.startAssesEvent(Lt)}raiseResponseEvent(m,h,H){const ee={target:{id:m,ver:this.version,type:h},values:[{optionSelected:H}]};this.qumlPlayerEvent.emit(ee),this.qumlLibraryService.response(m,this.version,h,H)}raiseSummaryEvent(m,h,H,ee){let Ue=(new Date).getTime()-this.qumlPlayerStartTime;Ue=Number((Ue%6e4/1e3).toFixed(2));const mt={type:"content",mode:"play",starttime:this.qumlPlayerStartTime,endtime:(new Date).getTime(),timespent:Ue,pageviews:this.totalNumberOfQuestions,interactions:ee.correct+ee.wrong+ee.partial,extra:[{id:"progress",value:(m/this.totalNumberOfQuestions*100).toFixed(0).toString()},{id:"endpageseen",value:h.toString()},{id:"score",value:H.toString()},{id:"correct",value:ee.correct.toString()},{id:"incorrect",value:ee.wrong.toString()},{id:"partial",value:ee.partial.toString()},{id:"skipped",value:ee.skipped.toString()}]},Lt={eid:"QUML_SUMMARY",ver:this.version,edata:mt,metaData:this.metaData};this.qumlPlayerEvent.emit(Lt),this.qumlLibraryService.summary(mt)}raiseExceptionLog(m,h,H,ee){const Ue={eid:"ERROR",edata:{err:m,errtype:h,requestid:ee||"",stacktrace:H||""}};this.qumlPlayerEvent.emit(Ue),this.qumlLibraryService.error(H,{err:m,errtype:h})}getQuestions(m,h){let H;if(void 0!==m&&h?H=this.identifiers.splice(m,h):!m&&!h&&(H=this.identifiers.splice(0,this.threshold)),!(0,To.Z)(H)){const ee=[],Ue=Ea(H,10);(0,Ia.Z)(Ue,mt=>{ee.push(this.questionCursor.getQuestions(mt,this.parentIdentifier))}),(0,du.D)(ee).subscribe(mt=>{(0,Ia.Z)(mt,Lt=>{this.qumlQuestionEvent.emit(Lt)})},mt=>{this.qumlQuestionEvent.emit({error:mt})})}}getQuestion(){if(this.identifiers.length){let m=this.identifiers.splice(0,this.threshold);this.questionCursor.getQuestion(m[0]).subscribe(h=>{this.qumlQuestionEvent.emit(h)},h=>{this.qumlQuestionEvent.emit({error:h})})}}generateMaxAttemptEvents(m,h,H){return{eid:"exdata",ver:this.version,edata:{type:"exdata",currentattempt:m,maxLimitExceeded:h,isLastAttempt:H},metaData:this.metaData}}updateSectionQuestions(m,h){const H=this.sectionQuestions.findIndex(ee=>ee.id===m);H>-1?this.sectionQuestions[H].questions=h:this.sectionQuestions.push({id:m,questions:h})}getSectionQuestions(m){var h;return(null===(h=this.sectionQuestions.find(H=>H.id===m))||void 0===h?void 0:h.questions)||[]}}Po.\u0275fac=function(m){return new(m||Po)(t.LFG(Fa),t.LFG(Gr),t.LFG(z1))},Po.ctorParameters=()=>[{type:Fa},{type:Gr},{type:z1}],Po.\u0275prov=(0,t.Yz7)({factory:function(){return new Po((0,t.LFG)(Fa),(0,t.LFG)(Gr),(0,t.LFG)(z1))},token:Po,providedIn:"root"});class Oo{constructor(m){this.viewerService=m,this.showDeviceOrientation=!1,this.nextSlideClicked=new t.vpe,this.prevSlideClicked=new t.vpe,this.durationEnds=new t.vpe,this.showSolution=new t.vpe,this.toggleScreenRotate=new t.vpe,this.showWarning=!1,this.isMobilePortrait=!1,this.showProgressIndicatorPopUp=!1}ngOnInit(){this.duration&&this.showTimer&&(this.minutes=Math.floor(this.duration/60),this.seconds=this.duration-60*this.minutes<10?"0"+(this.duration-60*this.minutes):this.duration-60*this.minutes)}ngOnChanges(){this.duration&&this.showTimer&&this.initializeTimer&&!this.intervalRef?this.timer():0===this.duration&&this.showTimer&&this.initializeTimer&&!this.intervalRef&&this.showCountUp(),this.replayed&&this.duration&&this.showTimer?(this.showWarning=!1,clearInterval(this.intervalRef),this.timer()):this.replayed&&0===this.duration&&this.showTimer&&(clearInterval(this.intervalRef),this.showCountUp())}ngAfterViewInit(){this.isMobilePortrait=window.matchMedia("(max-width: 480px)").matches}ngOnDestroy(){this.intervalRef&&clearInterval(this.intervalRef)}nextSlide(){this.disableNext||this.nextSlideClicked.emit({type:"next"})}prevSlide(){!this.showStartPage&&1===this.currentSlideIndex||this.disablePreviousNavigation||this.prevSlideClicked.emit({event:"previous clicked"})}timer(){if(this.duration>0){let m=this.duration;this.intervalRef=setInterval(()=>{let h=~~(m/60),H=m%60;if(this.time=H<10?h+":0"+H:h+":"+H,0===m)return clearInterval(this.intervalRef),this.durationEnds.emit(!0),!1;parseInt(m)<=parseInt(this.warningTime)&&(this.showWarning=!0),m--},1e3)}}showCountUp(){let m=0,h=0;this.intervalRef=setInterval(()=>{59===h&&(h=0,m+=1),this.time=h<10?m+":0"+h++:m+":"+h++},1e3)}onAnswerKeyDown(m){"Enter"===m.key&&(m.stopPropagation(),this.showSolution.emit())}openProgressIndicatorPopup(){this.showProgressIndicatorPopUp=!0,this.viewerService.raiseHeartBeatEvent(Vi_progressIndicatorPopupOpened,Ni_interact,this.currentSlideIndex)}onKeydownHandler(m){this.onProgressPopupClose()}onProgressPopupClose(){this.showProgressIndicatorPopUp=!1,this.viewerService.raiseHeartBeatEvent(Vi_progressIndicatorPopupClosed,Ni_interact,this.currentSlideIndex)}}Oo.\u0275fac=function(m){return new(m||Oo)(t.Y36(Po))},Oo.\u0275cmp=t.Xpm({type:Oo,selectors:[["quml-header"]],hostBindings:function(m,h){1&m&&t.NdJ("keydown.escape",function(ee){return h.onKeydownHandler(ee)},!1,t.evT)},inputs:{showDeviceOrientation:"showDeviceOrientation",questions:"questions",duration:"duration",warningTime:"warningTime",disablePreviousNavigation:"disablePreviousNavigation",showTimer:"showTimer",totalNoOfQuestions:"totalNoOfQuestions",currentSlideIndex:"currentSlideIndex",active:"active",initializeTimer:"initializeTimer",endPageReached:"endPageReached",loadScoreBoard:"loadScoreBoard",replayed:"replayed",currentSolutions:"currentSolutions",showFeedBack:"showFeedBack",disableNext:"disableNext",startPageInstruction:"startPageInstruction",showStartPage:"showStartPage",attempts:"attempts",showLegend:"showLegend"},outputs:{nextSlideClicked:"nextSlideClicked",prevSlideClicked:"prevSlideClicked",durationEnds:"durationEnds",showSolution:"showSolution",toggleScreenRotate:"toggleScreenRotate"},features:[t.TTD],decls:11,vars:8,consts:[[1,"quml-header__container"],[1,"quml-header__features","pl-64"],["class","attempts sb-color-primary fnormal font-weight-bold",4,"ngIf"],["src","assets/question-mark-round.svg","alt","Progress Indicators","title","Progress Indicators","height","20","width","20",3,"click",4,"ngIf"],[1,"quml-header__metadata"],["src","assets/device-rotate.svg","alt","Change Orientation","title","Change Orientation","height","20","width","20",3,"click",4,"ngIf"],[4,"ngIf"],["class","quml-navigation",4,"ngIf"],["class","quml-header__metadata quml-header__metadata--portrait",4,"ngIf"],[3,"close",4,"ngIf"],[1,"attempts","sb-color-primary","fnormal","font-weight-bold"],["src","assets/question-mark-round.svg","alt","Progress Indicators","title","Progress Indicators","height","20","width","20",3,"click"],["src","assets/device-rotate.svg","alt","Change Orientation","title","Change Orientation","height","20","width","20",3,"click"],["class","duration mr-16",3,"title",4,"ngIf"],[1,"duration","mr-16",3,"title"],[3,"ngClass"],[1,"quml-navigation"],["aria-label","preview slide","title","preview slide","role","navigation",1,"quml-navigation__previous",3,"ngClass","click"],["class","quml-navigation__next ml-8","aria-label","next slide","title","next slide","role","navigation","tabindex","0",3,"ngClass","click","keydown.enter",4,"ngIf"],["class","quml-navigation__next quml-navigation__next--active ml-8","aria-label","next slide","title","next slide","role","navigation","tabindex","0",3,"ngClass","click","keydown.enter",4,"ngIf"],["aria-label","next slide","title","next slide","role","navigation","tabindex","0",1,"quml-navigation__next","ml-8",3,"ngClass","click","keydown.enter"],["aria-label","next slide","title","next slide","role","navigation","tabindex","0",1,"quml-navigation__next","quml-navigation__next--active","ml-8",3,"ngClass","click","keydown.enter"],[1,"quml-header__metadata","quml-header__metadata--portrait"],["class","current-slide fnormal",4,"ngIf"],["class","ml-16",4,"ngIf"],[1,"quml-navigation","ml-auto"],["tabindex","0","aria-label","preview slide",1,"quml-navigation__previous",3,"click","keydown.enter"],["class","quml-navigation__next ml-8","tabindex","0","aria-label","next slide",3,"click","keydown.enter",4,"ngIf"],["class","quml-navigation__next quml-navigation__next--active ml-8","tabindex","0","aria-label","next slide",3,"click","keydown.enter",4,"ngIf"],[1,"current-slide","fnormal"],[1,"ml-16"],[3,"click","keydown"],["tabindex","0","aria-label","next slide",1,"quml-navigation__next","ml-8",3,"click","keydown.enter"],["tabindex","0","aria-label","next slide",1,"quml-navigation__next","quml-navigation__next--active","ml-8",3,"click","keydown.enter"],[3,"close"]],template:function(m,h){1&m&&(t.TgZ(0,"div",0)(1,"div",1),t.YNc(2,Dc,2,2,"div",2),t.YNc(3,Sc,1,0,"img",3),t.qZA(),t.TgZ(4,"div",4),t.YNc(5,Pc,1,0,"img",5),t.YNc(6,f3,3,2,"ng-container",6),t.YNc(7,Hr,5,3,"ng-container",6),t.YNc(8,M2,4,4,"div",7),t.qZA()(),t.YNc(9,Gl,7,4,"div",8),t.YNc(10,Vl,1,0,"quml-progress-indicators",9)),2&m&&(t.xp6(2),t.Q6J("ngIf",(null==h.attempts?null:h.attempts.max)&&(null==h.attempts?null:h.attempts.current)),t.xp6(1),t.Q6J("ngIf",h.showLegend),t.xp6(2),t.Q6J("ngIf",h.showDeviceOrientation),t.xp6(1),t.Q6J("ngIf",h.duration&&h.showTimer),t.xp6(1),t.Q6J("ngIf",!h.duration&&h.showTimer&&h.initializeTimer),t.xp6(1),t.Q6J("ngIf",!h.disableNext&&!h.isMobilePortrait),t.xp6(1),t.Q6J("ngIf",!h.loadScoreBoard&&!h.endPageReached),t.xp6(1),t.Q6J("ngIf",h.showProgressIndicatorPopUp))},dependencies:function(){return[tt.mk,tt.O5,Zs,Is,ls]},styles:[':root{--quml-color-primary:#FFD555;--quml-color-primary-contrast:#333;--quml-color-warning:#ff0000;--quml-btn-border:#ccc;--quml-color-gray:#666;--quml-main-bg:#fff;--quml-navigation-btns:#333;--quml-header-metadata:#fff}.quml-header__container[_ngcontent-%COMP%], .quml-header__features[_ngcontent-%COMP%], .quml-header__metadata[_ngcontent-%COMP%]{display:flex;align-items:center}.quml-header__container[_ngcontent-%COMP%]{justify-content:space-between;position:absolute;top:0;background:var(--quml-main-bg);min-height:3.5rem;width:100%;padding:.5rem 1rem .5rem 0;z-index:8}.quml-header__features[_ngcontent-%COMP%]{justify-content:space-between}.quml-header__features[_ngcontent-%COMP%] img[_ngcontent-%COMP%], .quml-header__metadata[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{margin:0 1rem;cursor:pointer}.quml-header__metadata--portrait[_ngcontent-%COMP%]{display:none}.quml-navigation[_ngcontent-%COMP%]{display:flex;align-items:center}@media only screen and (max-width:480px){.quml-header__metadata--portrait[_ngcontent-%COMP%]{display:flex;position:fixed;bottom:0;width:100%;padding:.5rem 1rem;background-color:var(--white);z-index:5;min-height:3rem}.quml-header__metadata--portrait[_ngcontent-%COMP%] .quml-navigation[_ngcontent-%COMP%]{display:flex}.quml-navigation[_ngcontent-%COMP%]{display:none}}.quml-navigation__next[_ngcontent-%COMP%], .quml-navigation__previous[_ngcontent-%COMP%]{position:relative;width:3.75rem;height:2.25rem;background:var(--quml-header-metadata);border:.03125rem solid var(--quml-btn-border);border-radius:1rem;box-shadow:inset 0 -.09375rem .0625rem 0 rgba(0,0,0,.2);cursor:pointer}.quml-navigation__next[_ngcontent-%COMP%]::after, .quml-navigation__previous[_ngcontent-%COMP%]::after{content:"";display:inline-block;padding:.21875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border:solid var(--quml-navigation-btns);border-width:0 .125rem .125rem 0}.quml-navigation__next--active[_ngcontent-%COMP%], .quml-navigation__next[_ngcontent-%COMP%]:focus, .quml-navigation__next[_ngcontent-%COMP%]:hover, .quml-navigation__previous--active[_ngcontent-%COMP%], .quml-navigation__previous[_ngcontent-%COMP%]:focus, .quml-navigation__previous[_ngcontent-%COMP%]:hover{background-color:var(--quml-color-primary)}.quml-navigation__next[_ngcontent-%COMP%]::after{transform:translate(-50%,-50%) rotate(-45deg);-webkit-transform:translate(-50%,-50%) rotate(-45deg)}.quml-navigation__previous[_ngcontent-%COMP%]::after{transform:translate(-50%,-50%) rotate(135deg);-webkit-transform:translate(-50%,-50%) rotate(135deg)}.blink[_ngcontent-%COMP%]{-webkit-animation:1s steps(1,end) infinite blink;animation:1s steps(1,end) infinite blink;color:var(--quml-color-warning)}.duration[_ngcontent-%COMP%], quml-durationtimer[_ngcontent-%COMP%]{display:flex;align-items:center}.duration[_ngcontent-%COMP%]{color:var(--quml-color-primary-contrast);font-weight:700}quml-durationtimer[_ngcontent-%COMP%]{margin-right:.5rem}.current-slide[_ngcontent-%COMP%]{color:var(--quml-color-gray);font-weight:700}.navigation-icon-disabled[_ngcontent-%COMP%]{opacity:.6;cursor:not-allowed}@-webkit-keyframes blink{0%,100%{opacity:1}50%{opacity:0}}@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}']}),Oo.ctorParameters=()=>[{type:Po}],Oo.propDecorators={questions:[{type:t.IIB}],duration:[{type:t.IIB}],warningTime:[{type:t.IIB}],disablePreviousNavigation:[{type:t.IIB}],showTimer:[{type:t.IIB}],totalNoOfQuestions:[{type:t.IIB}],currentSlideIndex:[{type:t.IIB}],active:[{type:t.IIB}],initializeTimer:[{type:t.IIB}],endPageReached:[{type:t.IIB}],loadScoreBoard:[{type:t.IIB}],replayed:[{type:t.IIB}],currentSolutions:[{type:t.IIB}],showFeedBack:[{type:t.IIB}],disableNext:[{type:t.IIB}],startPageInstruction:[{type:t.IIB}],showStartPage:[{type:t.IIB}],attempts:[{type:t.IIB}],showDeviceOrientation:[{type:t.IIB}],showLegend:[{type:t.IIB}],nextSlideClicked:[{type:t.r_U}],prevSlideClicked:[{type:t.r_U}],durationEnds:[{type:t.r_U}],showSolution:[{type:t.r_U}],toggleScreenRotate:[{type:t.r_U}],onKeydownHandler:[{type:t.L6J,args:["document:keydown.escape",["$event"]]}]};class ws{constructor(){this.showPopup=new t.vpe}ngOnInit(){}showQumlPopup(){this.showPopup.emit()}}ws.\u0275fac=function(m){return new(m||ws)},ws.\u0275cmp=t.Xpm({type:ws,selectors:[["quml-mcq-question"]],inputs:{mcqQuestion:"mcqQuestion",layout:"layout"},outputs:{showPopup:"showPopup"},decls:4,vars:4,consts:[[3,"ngClass"],[1,"quml-question",3,"innerHTML"],["question",""]],template:function(m,h){1&m&&(t.TgZ(0,"div",0),t._UZ(1,"div",1,2),t.ALo(3,"safeHtml"),t.qZA()),2&m&&(t.Q6J("ngClass",h.mcqQuestion.includes("img")?"quml-mcq-image-questions":"quml-mcq-questions"),t.xp6(1),t.Q6J("innerHTML",t.lcZ(3,2,h.mcqQuestion),t.oJD))},dependencies:function(){return[tt.mk,la]},styles:[".quml-mcq-questions[_ngcontent-%COMP%]{display:flex;gap:1rem}.quml-mcq-image-questions[_ngcontent-%COMP%]{display:flex;justify-content:start;align-items:flex-start}img[_ngcontent-%COMP%]{width:100%!important}quml-audio[_ngcontent-%COMP%]{padding:4px 8px;margin-top:19px}.quml-question-icon[_ngcontent-%COMP%]{display:inline-block;float:left;padding-right:.5rem;content:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMzZweCIgaGVpZ2h0PSIzNnB4IiB2aWV3Qm94PSIwIDAgMzYgMzYiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogc2tldGNodG9vbCA2MiAoMTAxMDEwKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT40NjI5QzQ3QS1BQzY2LTQwRTEtOEM3OS0xNTIwOENFRUEzQTU8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIHNrZXRjaHRvb2wuPC9kZXNjPgogICAgPGRlZnM+CiAgICAgICAgPHJlY3QgaWQ9InBhdGgtMSIgeD0iMCIgeT0iMCIgd2lkdGg9IjMwIiBoZWlnaHQ9IjMwIiByeD0iMTUiPjwvcmVjdD4KICAgICAgICA8ZmlsdGVyIHg9Ii01LjAlIiB5PSItNS4wJSIgd2lkdGg9IjExMC4wJSIgaGVpZ2h0PSIxMTAuMCUiIGZpbHRlclVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgaWQ9ImZpbHRlci0yIj4KICAgICAgICAgICAgPGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMSIgaW49IlNvdXJjZUFscGhhIiByZXN1bHQ9InNoYWRvd0JsdXJJbm5lcjEiPjwvZmVHYXVzc2lhbkJsdXI+CiAgICAgICAgICAgIDxmZU9mZnNldCBkeD0iMCIgZHk9Ii0xIiBpbj0ic2hhZG93Qmx1cklubmVyMSIgcmVzdWx0PSJzaGFkb3dPZmZzZXRJbm5lcjEiPjwvZmVPZmZzZXQ+CiAgICAgICAgICAgIDxmZUNvbXBvc2l0ZSBpbj0ic2hhZG93T2Zmc2V0SW5uZXIxIiBpbjI9IlNvdXJjZUFscGhhIiBvcGVyYXRvcj0iYXJpdGhtZXRpYyIgazI9Ii0xIiBrMz0iMSIgcmVzdWx0PSJzaGFkb3dJbm5lcklubmVyMSI+PC9mZUNvbXBvc2l0ZT4KICAgICAgICAgICAgPGZlQ29sb3JNYXRyaXggdmFsdWVzPSIwIDAgMCAwIDAgICAwIDAgMCAwIDAgICAwIDAgMCAwIDAgIDAgMCAwIDAuNSAwIiB0eXBlPSJtYXRyaXgiIGluPSJzaGFkb3dJbm5lcklubmVyMSI+PC9mZUNvbG9yTWF0cml4PgogICAgICAgIDwvZmlsdGVyPgogICAgPC9kZWZzPgogICAgPGcgaWQ9ImRldnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJtY3ExIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTgwLjAwMDAwMCwgLTYwLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0iYXVkaW8tcGxheSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTgwLjAwMDAwMCwgNjAuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iR3JvdXAtOSI+CiAgICAgICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwIj4KICAgICAgICAgICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLUNvcHkiPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS01LUNvcHkiIGZpbGw9IiMwMDAwMDAiIGZpbGwtcnVsZT0ibm9uemVybyIgb3BhY2l0eT0iMC4yNzc1Mjk3NjIiIHg9IjAiIHk9IjAiIHdpZHRoPSIzNiIgaGVpZ2h0PSIzNiIgcng9IjE4Ij48L3JlY3Q+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iR3JvdXAtMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMy4wMDAwMDAsIDMuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGcgaWQ9IlJlY3RhbmdsZS01LUNvcHktMiIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHVzZSBmaWxsPSIjRkZGRkZGIiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHVzZSBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIxIiBmaWx0ZXI9InVybCgjZmlsdGVyLTIpIiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHJlY3Qgc3Ryb2tlLW9wYWNpdHk9IjAuNDg0MTU2NDY5IiBzdHJva2U9IiNDM0M4REIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVqb2luPSJzcXVhcmUiIHg9IjEiIHk9IjEiIHdpZHRoPSIyOCIgaGVpZ2h0PSIyOCIgcng9IjE0Ij48L3JlY3Q+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xNSw5IEwxNSwxNi4wMzMzMzMzIEMxNC42MDY2NjY3LDE1LjgwNjY2NjcgMTQuMTUzMzMzMywxNS42NjY2NjY3IDEzLjY2NjY2NjcsMTUuNjY2NjY2NyBDMTIuMTkzMzMzMywxNS42NjY2NjY3IDExLDE2Ljg2IDExLDE4LjMzMzMzMzMgQzExLDE5LjgwNjY2NjcgMTIuMTkzMzMzMywyMSAxMy42NjY2NjY3LDIxIEMxNS4xNCwyMSAxNi4zMzMzMzMzLDE5LjgwNjY2NjcgMTYuMzMzMzMzMywxOC4zMzMzMzMzIEwxNi4zMzMzMzMzLDExLjY2NjY2NjcgTDE5LDExLjY2NjY2NjcgTDE5LDkgTDE1LDkgTDE1LDkgWiIgaWQ9IlNoYXBlIiBmaWxsPSIjMDhCQzgyIj48L3BhdGg+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgICAgICAgICAgPGcgaWQ9ImljX2NoZXZyb25fbGVmdCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzAuMDAwMDAwLCAxOC4wMDAwMDApIHNjYWxlKC0xLCAxKSB0cmFuc2xhdGUoLTMwLjAwMDAwMCwgLTE4LjAwMDAwMCkgdHJhbnNsYXRlKDI2LjAwMDAwMCwgMTIuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iSWNvbi0yNHB4Ij48L2c+CiAgICAgICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==)}.quml-question[_ngcontent-%COMP%]{font-size:.875rem;color:#131415;padding-top:1rem;width:100%}.question-image[_ngcontent-%COMP%]{position:relative}.icon-zommin[_ngcontent-%COMP%]{position:absolute;bottom:0;right:0;content:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTlweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMTkgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYyICg5MTM5MCkgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+em9vbTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJkZXZzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iem9vbSI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik05LjUsMCBMMTgsMCBDMTguNTUyMjg0NywtMS4wMTQ1MzA2M2UtMTYgMTksMC40NDc3MTUyNSAxOSwxIEwxOSwxMyBDMTksMTYuMzEzNzA4NSAxNi4zMTM3MDg1LDE5IDEzLDE5IEwxLDE5IEMwLjQ0NzcxNTI1LDE5IDYuNzYzNTM3NTFlLTE3LDE4LjU1MjI4NDcgMCwxOCBMMCw5LjUgQy02LjQyNTM2MDY0ZS0xNiw0LjI1MzI5NDg4IDQuMjUzMjk0ODgsOS42MzgwNDA5NWUtMTYgOS41LDAgWiIgaWQ9IlJlY3RhbmdsZSIgZmlsbC1vcGFjaXR5PSIwLjUiIGZpbGw9IiM0MzQzNDMiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9wYXRoPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUuMDAwMDAwLCA0LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTQuNTgzMzMzMzMsMC43NSBDNi45NzY2NjY2NywwLjc1IDguOTE2NjY2NjcsMi42OSA4LjkxNjY2NjY3LDUuMDgzMzMzMzMgQzguOTE2NjY2NjcsNi4xNTY2NjY2NyA4LjUyMzMzMzMzLDcuMTQzMzMzMzMgNy44Nyw3LjkwMzMzMzMzIEw3Ljg3LDcuOTAzMzMzMzMgTDguMDU2NjY2NjcsOC4wODMzMzMzMyBMOC41ODMzMzMzMyw4LjA4MzMzMzMzIEwxMS45MSwxMS40MTY2NjY3IEwxMC45MTY2NjY3LDEyLjQxIEw3LjU4MzMzMzMzLDkuMDgzMzMzMzMgTDcuNTgzMzMzMzMsOC41NTY2NjY2NyBMNy40MDMzMzMzMyw4LjM3IEM2LjY0MzMzMzMzLDkuMDIzMzMzMzMgNS42NTY2NjY2Nyw5LjQxNjY2NjY3IDQuNTgzMzMzMzMsOS40MTY2NjY2NyBDMi4xOSw5LjQxNjY2NjY3IDAuMjUsNy40NzY2NjY2NyAwLjI1LDUuMDgzMzMzMzMgQzAuMjUsMi42OSAyLjE5LDAuNzUgNC41ODMzMzMzMywwLjc1IFogTTQuNTgzMzMzMzMsMi4wODMzMzMzMyBDMi45MjMzMzMzMywyLjA4MzMzMzMzIDEuNTgzMzMzMzMsMy40MjMzMzMzMyAxLjU4MzMzMzMzLDUuMDgzMzMzMzMgQzEuNTgzMzMzMzMsNi43NDMzMzMzMyAyLjkyMzMzMzMzLDguMDgzMzMzMzMgNC41ODMzMzMzMyw4LjA4MzMzMzMzIEM2LjI0MzMzMzMzLDguMDgzMzMzMzMgNy41ODMzMzMzMyw2Ljc0MzMzMzMzIDcuNTgzMzMzMzMsNS4wODMzMzMzMyBDNy41ODMzMzMzMywzLjQyMzMzMzMzIDYuMjQzMzMzMzMsMi4wODMzMzMzMyA0LjU4MzMzMzMzLDIuMDgzMzMzMzMgWiBNNC45MTY2NjY2NywzLjQxNjY2NjY3IEw0LjkxNjY2NjY3LDQuNzUgTDYuMjUsNC43NSBMNi4yNSw1LjQxNjY2NjY3IEw0LjkxNjY2NjY3LDUuNDE2NjY2NjcgTDQuOTE2NjY2NjcsNi43NSBMNC4yNSw2Ljc1IEw0LjI1LDUuNDE2NjY2NjcgTDIuOTE2NjY2NjcsNS40MTY2NjY2NyBMMi45MTY2NjY2Nyw0Ljc1IEw0LjI1LDQuNzUgTDQuMjUsMy40MTY2NjY2NyBMNC45MTY2NjY2NywzLjQxNjY2NjY3IFoiIGlkPSJDb21iaW5lZC1TaGFwZSI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=)}.question-image[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{vertical-align:bottom}"]}),ws.ctorParameters=()=>[],ws.propDecorators={mcqQuestion:[{type:t.IIB}],showPopup:[{type:t.r_U}],layout:[{type:t.IIB}]};class qa{constructor(m){this.utilService=m,this.showPopup=new t.vpe,this.optionSelected=new t.vpe,this.selectedOption=[]}ngOnChanges(){this.replayed&&this.mcqOptions.forEach(m=>{m.selected=!1}),this.tryAgain&&this.unselectOption()}unselectOption(){this.mcqOptions.forEach(m=>{m.selected=!1}),this.selectedOption=[],this.optionSelected.emit({name:"optionSelect",option:this.selectedOption,cardinality:this.cardinality,solutions:this.solutions})}onOptionSelect(m,h,H){m.hasOwnProperty("stopImmediatePropagation")&&m.stopImmediatePropagation(),this.cardinality===Cl_single?void 0!==H?(this.mcqOptions.forEach(ee=>ee.selected=!1),this.mcqOptions[H].selected=this.mcqOptions[H].label===h.label):this.mcqOptions.forEach(ee=>{ee.selected=ee.label===h.label}):this.cardinality===Cl_multiple&&this.mcqOptions.forEach(ee=>{ee.label===h.label&&!this.utilService.hasDuplicates(this.selectedOption,h)&&(ee.selected=!0,this.selectedOption.push(h))}),this.optionSelected.emit({name:"optionSelect",option:"single"===this.cardinality?h:this.selectedOption,cardinality:this.cardinality,solutions:this.solutions})}onImageOptionSelected(m){this.onOptionSelect(m,m.option)}showQumlPopup(){this.showPopup.emit()}onEnter(m,h,H){"Enter"===m.key&&(m.stopPropagation(),this.onOptionSelect(m,h,H))}}qa.\u0275fac=function(m){return new(m||qa)(t.Y36(Gr))},qa.\u0275cmp=t.Xpm({type:qa,selectors:[["quml-mcq-option"]],inputs:{mcqOptions:"mcqOptions",solutions:"solutions",layout:"layout",cardinality:"cardinality",replayed:"replayed",tryAgain:"tryAgain"},outputs:{showPopup:"showPopup",optionSelected:"optionSelected"},features:[t.TTD],decls:4,vars:4,consts:[["class","quml-mcq-options","role","radiogroup",4,"ngIf"],[4,"ngIf"],["class","",4,"ngIf"],["role","radiogroup",1,"quml-mcq-options"],["class","quml-option-card","tabindex","0","role","checkbox","aria-labelledby","option-checkbox",3,"keydown","click",4,"ngFor","ngForOf"],["tabindex","0","role","checkbox","aria-labelledby","option-checkbox",1,"quml-option-card",3,"keydown","click"],[1,"quml-option",3,"ngClass"],["tabindex","0",1,"option",3,"innerHTML"],[1,"container"],["type","radio","name","radio","id","option-checkbox","tabindex","-1",3,"checked"],[1,"checkmark"],[1,"qumlImageOption"],[1,"wrapper"],[4,"ngFor","ngForOf"],[3,"mcqOption","imgOptionSelected"],[1,"qumlOption-imageQaGrid"],[1,""]],template:function(m,h){1&m&&(t.YNc(0,pl,2,1,"div",0),t.YNc(1,Na,4,1,"div",1),t.YNc(2,yo,4,1,"div",1),t.YNc(3,mr,4,1,"div",2)),2&m&&(t.Q6J("ngIf","DEFAULT"==h.layout||"IMAGEQOPTION"==h.layout),t.xp6(1),t.Q6J("ngIf","IMAGEGRID"==h.layout),t.xp6(1),t.Q6J("ngIf","IMAGEQAGRID"==h.layout),t.xp6(1),t.Q6J("ngIf","MULTIIMAGEGRID"==h.layout))},dependencies:function(){return[tt.mk,tt.sg,tt.O5,xs,la]},styles:[':root{--quml-btn-border:#ccc;--quml-color-gray:#666;--quml-checkmark:#cdcdcd;--quml-color-primary-shade:rgba(0, 0, 0, .1);--quml-color-success:#08BC82;--quml-color-danger:#F1635D;--quml-option-card-bg:#fff;--quml-option-selected-checkmark:#fff;--quml-option-selected-checkmark-icon:#fff}.quml-mcq-options[_ngcontent-%COMP%]{align-items:center;margin-bottom:.5rem}.quml-option-card[_ngcontent-%COMP%] .option[_ngcontent-%COMP%]{color:var(--quml-active-slide);color:var(--quml-color-gray);font-size:.875rem} .quml-option-card .option p{margin-bottom:0}.quml-option[_ngcontent-%COMP%] label.container[_ngcontent-%COMP%]{margin:0 auto}.quml-option-card[_ngcontent-%COMP%]{margin-bottom:1rem}.quml-option[_ngcontent-%COMP%]{position:relative;background-color:var(--quml-option-card-bg);padding:1rem;border-radius:.25rem;border:.0625rem solid var(--quml-btn-border);box-shadow:0 .125rem .75rem 0 var(--quml-color-primary-shade);display:flex;align-items:center;justify-content:space-between;height:100%;gap:.5rem}.quml-option[_ngcontent-%COMP%] .option[_ngcontent-%COMP%]{flex:1}.quml-option--selected[_ngcontent-%COMP%]{border:.125rem solid var(--primary-color)}.selected-option[_ngcontent-%COMP%]{border:.125rem solid var(--primary-color)}.selected-option-text[_ngcontent-%COMP%]{color:var(--primary-color)!important}.container[_ngcontent-%COMP%]{padding-right:0!important}.checkmark[_ngcontent-%COMP%]{display:block;height:1.25rem;width:1.25rem;border-radius:50%;border:.125rem solid var(--quml-checkmark)}.container[_ngcontent-%COMP%] input[_ngcontent-%COMP%]{position:absolute;opacity:0;cursor:pointer}.container[_ngcontent-%COMP%] input[_ngcontent-%COMP%]:checked ~ .checkmark[_ngcontent-%COMP%], .quml-option--selected[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]{position:relative;background-color:var(--quml-option-selected-checkmark);border:.125rem solid var(--primary-color)}.quml-option--selected[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after, input[_ngcontent-%COMP%]:checked ~ .checkmark[_ngcontent-%COMP%]:after{content:"";opacity:1}.container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after, .quml-option--selected[_ngcontent-%COMP%] .container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after{margin:0;width:.75rem;height:.75rem;border-radius:50%;background:var(--primary-color);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);opacity:0}.quml-option--selected[_ngcontent-%COMP%] .container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after{opacity:1}img[_ngcontent-%COMP%]{width:100%!important}.option-img[_ngcontent-%COMP%]{position:relative}.option-img[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:100%}.icon-zommin[_ngcontent-%COMP%]{position:absolute;bottom:0;right:0;content:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTlweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMTkgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYyICg5MTM5MCkgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+em9vbTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJkZXZzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iem9vbSI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik05LjUsMCBMMTgsMCBDMTguNTUyMjg0NywtMS4wMTQ1MzA2M2UtMTYgMTksMC40NDc3MTUyNSAxOSwxIEwxOSwxMyBDMTksMTYuMzEzNzA4NSAxNi4zMTM3MDg1LDE5IDEzLDE5IEwxLDE5IEMwLjQ0NzcxNTI1LDE5IDYuNzYzNTM3NTFlLTE3LDE4LjU1MjI4NDcgMCwxOCBMMCw5LjUgQy02LjQyNTM2MDY0ZS0xNiw0LjI1MzI5NDg4IDQuMjUzMjk0ODgsOS42MzgwNDA5NWUtMTYgOS41LDAgWiIgaWQ9IlJlY3RhbmdsZSIgZmlsbC1vcGFjaXR5PSIwLjUiIGZpbGw9IiM0MzQzNDMiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9wYXRoPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUuMDAwMDAwLCA0LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTQuNTgzMzMzMzMsMC43NSBDNi45NzY2NjY2NywwLjc1IDguOTE2NjY2NjcsMi42OSA4LjkxNjY2NjY3LDUuMDgzMzMzMzMgQzguOTE2NjY2NjcsNi4xNTY2NjY2NyA4LjUyMzMzMzMzLDcuMTQzMzMzMzMgNy44Nyw3LjkwMzMzMzMzIEw3Ljg3LDcuOTAzMzMzMzMgTDguMDU2NjY2NjcsOC4wODMzMzMzMyBMOC41ODMzMzMzMyw4LjA4MzMzMzMzIEwxMS45MSwxMS40MTY2NjY3IEwxMC45MTY2NjY3LDEyLjQxIEw3LjU4MzMzMzMzLDkuMDgzMzMzMzMgTDcuNTgzMzMzMzMsOC41NTY2NjY2NyBMNy40MDMzMzMzMyw4LjM3IEM2LjY0MzMzMzMzLDkuMDIzMzMzMzMgNS42NTY2NjY2Nyw5LjQxNjY2NjY3IDQuNTgzMzMzMzMsOS40MTY2NjY2NyBDMi4xOSw5LjQxNjY2NjY3IDAuMjUsNy40NzY2NjY2NyAwLjI1LDUuMDgzMzMzMzMgQzAuMjUsMi42OSAyLjE5LDAuNzUgNC41ODMzMzMzMywwLjc1IFogTTQuNTgzMzMzMzMsMi4wODMzMzMzMyBDMi45MjMzMzMzMywyLjA4MzMzMzMzIDEuNTgzMzMzMzMsMy40MjMzMzMzMyAxLjU4MzMzMzMzLDUuMDgzMzMzMzMgQzEuNTgzMzMzMzMsNi43NDMzMzMzMyAyLjkyMzMzMzMzLDguMDgzMzMzMzMgNC41ODMzMzMzMyw4LjA4MzMzMzMzIEM2LjI0MzMzMzMzLDguMDgzMzMzMzMgNy41ODMzMzMzMyw2Ljc0MzMzMzMzIDcuNTgzMzMzMzMsNS4wODMzMzMzMyBDNy41ODMzMzMzMywzLjQyMzMzMzMzIDYuMjQzMzMzMzMsMi4wODMzMzMzMyA0LjU4MzMzMzMzLDIuMDgzMzMzMzMgWiBNNC45MTY2NjY2NywzLjQxNjY2NjY3IEw0LjkxNjY2NjY3LDQuNzUgTDYuMjUsNC43NSBMNi4yNSw1LjQxNjY2NjY3IEw0LjkxNjY2NjY3LDUuNDE2NjY2NjcgTDQuOTE2NjY2NjcsNi43NSBMNC4yNSw2Ljc1IEw0LjI1LDUuNDE2NjY2NjcgTDIuOTE2NjY2NjcsNS40MTY2NjY2NyBMMi45MTY2NjY2Nyw0Ljc1IEw0LjI1LDQuNzUgTDQuMjUsMy40MTY2NjY2NyBMNC45MTY2NjY2NywzLjQxNjY2NjY3IFoiIGlkPSJDb21iaW5lZC1TaGFwZSI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=)}.qumlImageOption[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{margin-top:2rem;display:-ms-grid;display:grid;gap:1rem}.qumlOption-imageQaGrid[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr);grid-gap:1rem}@media only screen and (max-width:640px){.qumlOption-imageQaGrid[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{-ms-grid-columns:(1fr)[1];grid-template-columns:repeat(1,1fr)}}@media only screen and (max-width:840px){.qumlImageOption[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr)}}@media only screen and (max-width:640px){.qumlImageOption[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{-ms-grid-columns:(1fr)[1];grid-template-columns:repeat(1,1fr)}}']}),qa.ctorParameters=()=>[{type:Gr}],qa.propDecorators={mcqOptions:[{type:t.IIB}],solutions:[{type:t.IIB}],layout:[{type:t.IIB}],cardinality:[{type:t.IIB}],showPopup:[{type:t.r_U}],optionSelected:[{type:t.r_U}],replayed:[{type:t.IIB}],tryAgain:[{type:t.IIB}]};class m1{constructor(){this.popUpClose=new t.vpe}ngOnInit(){}ngAfterViewInit(){const m=document.getElementById("htmlTag");m&&(m.getElementsByTagName("img")[0].style.width="70%")}closePopup(){this.popUpClose.emit()}}m1.\u0275fac=function(m){return new(m||m1)},m1.\u0275cmp=t.Xpm({type:m1,selectors:[["quml-quml-popup"]],inputs:{image:"image",htmlTag:"htmlTag"},outputs:{popUpClose:"popUpClose"},decls:5,vars:2,consts:[[1,"quml-popup"],[1,"quml-popup-icon",3,"click"],[3,"src",4,"ngIf"],["class","htmlTag","id","htmlTag",3,"innerHtml",4,"ngIf"],[3,"src"],["id","htmlTag",1,"htmlTag",3,"innerHtml"]],template:function(m,h){1&m&&(t.TgZ(0,"div",0)(1,"div",1),t.NdJ("click",function(){return h.closePopup()}),t._uU(2,"\u2715"),t.qZA(),t.YNc(3,B1,1,1,"img",2),t.qZA(),t.YNc(4,d1,2,3,"div",3)),2&m&&(t.xp6(3),t.Q6J("ngIf",!h.htmlTag),t.xp6(1),t.Q6J("ngIf",h.htmlTag))},dependencies:function(){return[tt.O5,la]},styles:[".quml-popup[_ngcontent-%COMP%]{position:absolute;left:0;bottom:0;right:0;background:rgba(0,0,0,.4);top:0;padding:1rem;display:flex;align-items:center;justify-content:center;z-index:2}.quml-popup[_ngcontent-%COMP%] .quml-popup-icon[_ngcontent-%COMP%]{font-size:1.25rem;right:10%;position:absolute;cursor:pointer;z-index:2;color:var(--white);top:8%}.quml-popup[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{box-shadow:0 .25rem .5rem 0 rgba(0,0,0,.2);height:90%;border-radius:.5rem;position:absolute;z-index:2}.htmlTag[_ngcontent-%COMP%]{position:absolute;top:15%;left:27%;z-index:10}@media only screen and (max-width:640px){.htmlTag[_ngcontent-%COMP%]{position:absolute;top:10%;left:27%;z-index:10}}"]}),m1.ctorParameters=()=>[],m1.propDecorators={image:[{type:t.IIB}],htmlTag:[{type:t.IIB}],popUpClose:[{type:t.r_U}]};class xs{constructor(){this.showQumlPopup=!1,this.imgOptionSelected=new t.vpe}showPopup(m){this.showQumlPopup=!0,this.qumlPopupImage=m}optionClicked(m,h){m.hasOwnProperty("stopImmediatePropagation")&&m.stopImmediatePropagation(),this.imgOptionSelected.emit({name:"optionSelect",option:h,solutions:this.solutions})}onEnter(m,h){"Enter"===m.key&&(m.stopPropagation(),this.optionClicked(m,h))}openPopup(m){this.showQumlPopup=!0,this.qumlPopupImage=m}closePopUp(){this.showQumlPopup=!1}}xs.\u0275fac=function(m){return new(m||xs)},xs.\u0275cmp=t.Xpm({type:xs,selectors:[["quml-mcq-image-option"]],inputs:{mcqQuestion:"mcqQuestion",solutions:"solutions",mcqOption:"mcqOption"},outputs:{imgOptionSelected:"imgOptionSelected"},decls:5,vars:3,consts:[["tabindex","0",1,"quml-mcq-option-card",3,"ngClass","click","keydown"],["class","option",3,"innerHTML",4,"ngIf"],[1,"container"],["type","radio","name","radio","role","radio",3,"checked"],[1,"checkmark"],[1,"option",3,"innerHTML"]],template:function(m,h){1&m&&(t.TgZ(0,"div",0),t.NdJ("click",function(ee){return h.optionClicked(ee,h.mcqOption)})("keydown",function(ee){return h.onEnter(ee,h.mcqOption)}),t.YNc(1,f1,2,3,"div",1),t.TgZ(2,"label",2),t._UZ(3,"input",3)(4,"span",4),t.qZA()()),2&m&&(t.Q6J("ngClass",null!=h.mcqOption&&h.mcqOption.selected?"quml-mcq-option-card quml-option--selected":"quml-mcq-option-card"),t.xp6(1),t.Q6J("ngIf",h.mcqOption),t.xp6(2),t.Q6J("checked",null==h.mcqOption?null:h.mcqOption.selected))},dependencies:function(){return[tt.mk,tt.O5,la]},styles:[':root{--quml-btn-border:#ccc;--quml-color-gray:#666;--quml-checkmark:#cdcdcd;--quml-color-primary-shade:rgba(0, 0, 0, .1);--quml-option-card-bg:#fff;--quml-option-selected-checkmark:#ffff}.quml-mcq-option-card[_ngcontent-%COMP%]{position:relative;background-color:var(--quml-option-card-bg);padding:1rem;border-radius:.25rem;border:.0625rem solid var(--quml-btn-border);box-shadow:0 .125rem .75rem 0 var(--quml-color-primary-shade);display:flex;align-items:center;justify-content:space-between;height:100%;gap:.5rem}.quml-mcq-option-card[_ngcontent-%COMP%] .option-image[_ngcontent-%COMP%]{position:relative}.quml-mcq-option-card[_ngcontent-%COMP%] .option-image[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{min-width:100%;vertical-align:bottom;width:100%!important}.quml-mcq-option-card[_ngcontent-%COMP%] .option[_ngcontent-%COMP%]{color:var(--quml-color-gray);font-size:.75rem;font-weight:700;flex:1}.quml-mcq-option-card[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{margin-bottom:0}.zoom-in-icon[_ngcontent-%COMP%]{position:absolute;right:.5rem;bottom:0} .quml-mcq-option-card .option img{max-width:100%} .quml-mcq-option-card .option label{margin-bottom:0}.selected-option-text[_ngcontent-%COMP%]{color:var(--primary-color)!important}.icon-zommin[_ngcontent-%COMP%]{position:absolute;bottom:2px;right:-1px;content:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTlweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMTkgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYyICg5MTM5MCkgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+em9vbTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJkZXZzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iem9vbSI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik05LjUsMCBMMTgsMCBDMTguNTUyMjg0NywtMS4wMTQ1MzA2M2UtMTYgMTksMC40NDc3MTUyNSAxOSwxIEwxOSwxMyBDMTksMTYuMzEzNzA4NSAxNi4zMTM3MDg1LDE5IDEzLDE5IEwxLDE5IEMwLjQ0NzcxNTI1LDE5IDYuNzYzNTM3NTFlLTE3LDE4LjU1MjI4NDcgMCwxOCBMMCw5LjUgQy02LjQyNTM2MDY0ZS0xNiw0LjI1MzI5NDg4IDQuMjUzMjk0ODgsOS42MzgwNDA5NWUtMTYgOS41LDAgWiIgaWQ9IlJlY3RhbmdsZSIgZmlsbC1vcGFjaXR5PSIwLjUiIGZpbGw9IiM0MzQzNDMiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9wYXRoPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUuMDAwMDAwLCA0LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTQuNTgzMzMzMzMsMC43NSBDNi45NzY2NjY2NywwLjc1IDguOTE2NjY2NjcsMi42OSA4LjkxNjY2NjY3LDUuMDgzMzMzMzMgQzguOTE2NjY2NjcsNi4xNTY2NjY2NyA4LjUyMzMzMzMzLDcuMTQzMzMzMzMgNy44Nyw3LjkwMzMzMzMzIEw3Ljg3LDcuOTAzMzMzMzMgTDguMDU2NjY2NjcsOC4wODMzMzMzMyBMOC41ODMzMzMzMyw4LjA4MzMzMzMzIEwxMS45MSwxMS40MTY2NjY3IEwxMC45MTY2NjY3LDEyLjQxIEw3LjU4MzMzMzMzLDkuMDgzMzMzMzMgTDcuNTgzMzMzMzMsOC41NTY2NjY2NyBMNy40MDMzMzMzMyw4LjM3IEM2LjY0MzMzMzMzLDkuMDIzMzMzMzMgNS42NTY2NjY2Nyw5LjQxNjY2NjY3IDQuNTgzMzMzMzMsOS40MTY2NjY2NyBDMi4xOSw5LjQxNjY2NjY3IDAuMjUsNy40NzY2NjY2NyAwLjI1LDUuMDgzMzMzMzMgQzAuMjUsMi42OSAyLjE5LDAuNzUgNC41ODMzMzMzMywwLjc1IFogTTQuNTgzMzMzMzMsMi4wODMzMzMzMyBDMi45MjMzMzMzMywyLjA4MzMzMzMzIDEuNTgzMzMzMzMsMy40MjMzMzMzMyAxLjU4MzMzMzMzLDUuMDgzMzMzMzMgQzEuNTgzMzMzMzMsNi43NDMzMzMzMyAyLjkyMzMzMzMzLDguMDgzMzMzMzMgNC41ODMzMzMzMyw4LjA4MzMzMzMzIEM2LjI0MzMzMzMzLDguMDgzMzMzMzMgNy41ODMzMzMzMyw2Ljc0MzMzMzMzIDcuNTgzMzMzMzMsNS4wODMzMzMzMyBDNy41ODMzMzMzMywzLjQyMzMzMzMzIDYuMjQzMzMzMzMsMi4wODMzMzMzMyA0LjU4MzMzMzMzLDIuMDgzMzMzMzMgWiBNNC45MTY2NjY2NywzLjQxNjY2NjY3IEw0LjkxNjY2NjY3LDQuNzUgTDYuMjUsNC43NSBMNi4yNSw1LjQxNjY2NjY3IEw0LjkxNjY2NjY3LDUuNDE2NjY2NjcgTDQuOTE2NjY2NjcsNi43NSBMNC4yNSw2Ljc1IEw0LjI1LDUuNDE2NjY2NjcgTDIuOTE2NjY2NjcsNS40MTY2NjY2NyBMMi45MTY2NjY2Nyw0Ljc1IEw0LjI1LDQuNzUgTDQuMjUsMy40MTY2NjY2NyBMNC45MTY2NjY2NywzLjQxNjY2NjY3IFoiIGlkPSJDb21iaW5lZC1TaGFwZSI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=)}.image-option-selected[_ngcontent-%COMP%]{border:.125rem solid var(--primary-color)}.checkmark[_ngcontent-%COMP%]{display:block;height:1.25rem;width:1.25rem;border-radius:50%;border:.125rem solid var(--quml-checkmark)}.container[_ngcontent-%COMP%] input[_ngcontent-%COMP%]{position:absolute;opacity:0;cursor:pointer}.container[_ngcontent-%COMP%] input[_ngcontent-%COMP%]:checked ~ .checkmark[_ngcontent-%COMP%], .quml-option--selected[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]{position:relative;background-color:var(--quml-option-selected-checkmark);border:.125rem solid var(--primary-color)}.quml-option--selected[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after, input[_ngcontent-%COMP%]:checked ~ .checkmark[_ngcontent-%COMP%]:after{content:"";opacity:1}.container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after, .quml-option--selected[_ngcontent-%COMP%] .container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after{margin:0;width:.75rem;height:.75rem;border-radius:50%;background:var(--primary-color);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);opacity:0}.quml-option--selected[_ngcontent-%COMP%] .container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after{opacity:1}.quml-option--selected[_ngcontent-%COMP%]{border:.125rem solid var(--primary-color)}']}),xs.propDecorators={mcqQuestion:[{type:t.IIB}],solutions:[{type:t.IIB}],mcqOption:[{type:t.IIB}],imgOptionSelected:[{type:t.r_U}]};class j1{constructor(){}ngOnInit(){}}j1.\u0275fac=function(m){return new(m||j1)},j1.\u0275cmp=t.Xpm({type:j1,selectors:[["quml-zoom-in"]],decls:22,vars:0,consts:[["version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink","x","0px","y","0px","width","12px","height","12px","viewBox","0 0 512 512",0,"xml","space","preserve",2,"enable-background","new 0 0 512 512"],["d","M506.141,477.851L361.689,333.399c65.814-80.075,61.336-198.944-13.451-273.73c-79.559-79.559-209.01-79.559-288.569,0\n\t\t\ts-79.559,209.01,0,288.569c74.766,74.766,193.62,79.293,273.73,13.451l144.452,144.452c7.812,7.812,20.477,7.812,28.289,0\n\t\t\tC513.953,498.328,513.953,485.663,506.141,477.851z M319.949,319.948c-63.96,63.96-168.03,63.959-231.99,0\n\t\t\tc-63.96-63.96-63.96-168.03,0-231.99c63.958-63.957,168.028-63.962,231.99,0C383.909,151.918,383.909,255.988,319.949,319.948z"],["d","M301.897,183.949h-77.94v-77.94c0-11.048-8.956-20.004-20.004-20.004c-11.048,0-20.004,8.956-20.004,20.004v77.94h-77.94\n\t\t\tc-11.048,0-20.004,8.956-20.004,20.004c0,11.048,8.956,20.004,20.004,20.004h77.94v77.94c0,11.048,8.956,20.004,20.004,20.004\n\t\t\tc11.048,0,20.004-8.956,20.004-20.004v-77.94h77.94c11.048,0,20.004-8.956,20.004-20.004\n\t\t\tC321.901,192.905,312.945,183.949,301.897,183.949z"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"g")(2,"g"),t._UZ(3,"path",1),t.qZA()(),t.TgZ(4,"g")(5,"g"),t._UZ(6,"path",2),t.qZA()(),t._UZ(7,"g")(8,"g")(9,"g")(10,"g")(11,"g")(12,"g")(13,"g")(14,"g")(15,"g")(16,"g")(17,"g")(18,"g")(19,"g")(20,"g")(21,"g"),t.qZA())}}),j1.ctorParameters=()=>[];class U1{constructor(){}ngOnInit(){}}U1.\u0275fac=function(m){return new(m||U1)},U1.\u0275cmp=t.Xpm({type:U1,selectors:[["quml-star"]],decls:9,vars:0,consts:[["width","18px","height","19px","viewBox","0 0 20 19","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["x1","50%","y1","0%","x2","50%","y2","100%","id","linearGradient-1"],["stop-color","#FFE500","offset","0%"],["stop-color","#E6B302","offset","100%"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["d","M9.52906513,1.05447851 C9.88447433,0.933955771 10.2858614,0.949017066 10.6489852,1.12822939 C10.9381809,1.27095597 11.1722611,1.50503624 11.3149877,1.79423187 L11.3149877,1.79423187 L12.3803318,3.95285472 C12.8901488,4.98585688 13.8756284,5.70184969 15.0156139,5.86749929 L15.0156139,5.86749929 L17.3977957,6.21365056 C17.7985266,6.27188017 18.1377182,6.4870255 18.3621696,6.78779616 C18.586621,7.08856682 18.6963323,7.47496281 18.6381027,7.87569375 C18.591728,8.19484007 18.4414393,8.48979843 18.2105028,8.71490584 L18.2105028,8.71490584 L16.4867399,10.3951594 C15.6618386,11.1992394 15.2854189,12.3577401 15.4801517,13.4931194 L15.4801517,13.4931194 L15.8870769,15.8656755 C15.9555299,16.2647872 15.8557305,16.6538611 15.6390399,16.9602703 C15.4223493,17.2666796 15.0887676,17.4904241 14.6896558,17.5588771 C14.3717991,17.6133938 14.0448352,17.5616079 13.7593821,17.4115363 L13.7593821,17.4115363 L11.6286939,16.2913672 C10.6090599,15.7553139 9.39094014,15.7553139 8.37130605,16.2913672 L8.37130605,16.2913672 L6.24061792,17.4115363 C5.88219327,17.5999712 5.48132228,17.6252868 5.12294871,17.5138875 C4.76457514,17.4024881 4.44869898,17.1543739 4.26026399,16.7959492 C4.11019239,16.5104961 4.0584064,16.1835322 4.1129231,15.8656755 L4.1129231,15.8656755 L4.51984832,13.4931194 C4.7145811,12.3577401 4.33816141,11.1992394 3.51326011,10.3951594 L3.51326011,10.3951594 L1.7894972,8.71490584 C1.49952557,8.43225335 1.35157308,8.05882533 1.34677662,7.68356752 C1.34198016,7.3083097 1.48033973,6.93122211 1.76299222,6.64125047 C1.98809962,6.41031402 2.28305798,6.26002523 2.6022043,6.21365056 L2.6022043,6.21365056 L4.98438605,5.86749929 C6.12437162,5.70184969 7.10985117,4.98585688 7.61966822,3.95285472 L7.61966822,3.95285472 L8.68501228,1.79423187 C8.86422461,1.43110804 9.17365593,1.17500126 9.52906513,1.05447851 Z","id","Star","stroke","#EDBA01","fill","url(#linearGradient-1)"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"Star"),t.qZA(),t.TgZ(3,"defs")(4,"linearGradient",1),t._UZ(5,"stop",2)(6,"stop",3),t.qZA()(),t.TgZ(7,"g",4),t._UZ(8,"path",5),t.qZA()())}}),U1.ctorParameters=()=>[];class Z1{constructor(){}ngOnInit(){}}Z1.\u0275fac=function(m){return new(m||Z1)},Z1.\u0275cmp=t.Xpm({type:Z1,selectors:[["quml-previous"]],decls:30,vars:0,consts:[["width","60px","height","36px","viewBox","0 0 60 36","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","path-1","x","0","y","0","width","60","height","36","rx","18"],["x","-5.8%","y","-9.7%","width","111.7%","height","119.4%","filterUnits","objectBoundingBox","id","filter-2"],["stdDeviation","3","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0","type","matrix","in","shadowInnerInner1"],["id","path-3","x","0","y","0","width","54","height","30","rx","15"],["x","-2.8%","y","-5.0%","width","105.6%","height","110.0%","filterUnits","objectBoundingBox","id","filter-4"],["stdDeviation","0.5","in","SourceGraphic"],["x","-5.6%","y","-10.0%","width","111.1%","height","120.0%","filterUnits","objectBoundingBox","id","filter-5"],["stdDeviation","1","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","-1","in","shadowBlurInner1","result","shadowOffsetInner1"],["id","button/previous2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Group-Copy"],["id","Rectangle-5-Copy","opacity","0.1","fill-rule","nonzero"],["fill","#CCCCCC",0,"xlink","href","#path-1"],["fill","black","fill-opacity","1","filter","url(#filter-2)",0,"xlink","href","#path-1"],["id","Group-2","transform","translate(3.000000, 3.000000)"],["id","Rectangle-5-Copy-2","fill-rule","nonzero","filter","url(#filter-4)"],["fill","#FFFFFF",0,"xlink","href","#path-3"],["fill","black","fill-opacity","1","filter","url(#filter-5)",0,"xlink","href","#path-3"],["id","Shape","fill","#6D7278","points","31 10.41 29.59 9 23.59 15 29.59 21 31 19.59 26.42 15"],["id","Icon-24px","transform","translate(30.000000, 18.000000) scale(-1, 1) translate(-30.000000, -18.000000) translate(26.000000, 12.000000)"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"Previous"),t.qZA(),t.TgZ(3,"defs"),t._UZ(4,"rect",1),t.TgZ(5,"filter",2),t._UZ(6,"feGaussianBlur",3)(7,"feOffset",4)(8,"feComposite",5)(9,"feColorMatrix",6),t.qZA(),t._UZ(10,"rect",7),t.TgZ(11,"filter",8),t._UZ(12,"feGaussianBlur",9),t.qZA(),t.TgZ(13,"filter",10),t._UZ(14,"feGaussianBlur",11)(15,"feOffset",12)(16,"feComposite",5)(17,"feColorMatrix",6),t.qZA()(),t.TgZ(18,"g",13)(19,"g",14)(20,"g",15)(21,"g",16),t._UZ(22,"use",17)(23,"use",18),t.qZA(),t.TgZ(24,"g",19)(25,"g",20),t._UZ(26,"use",21)(27,"use",22),t.qZA(),t._UZ(28,"polygon",23),t.qZA()(),t._UZ(29,"g",24),t.qZA()()())}}),Z1.ctorParameters=()=>[];class H1{constructor(){}ngOnInit(){}}H1.\u0275fac=function(m){return new(m||H1)},H1.\u0275cmp=t.Xpm({type:H1,selectors:[["quml-next"]],decls:30,vars:0,consts:[["width","60px","height","36px","viewBox","0 0 60 36","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","path-1","x","0","y","0","width","60","height","36","rx","18"],["x","-5.8%","y","-9.7%","width","111.7%","height","119.4%","filterUnits","objectBoundingBox","id","filter-2"],["stdDeviation","3","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0","type","matrix","in","shadowInnerInner1"],["id","path-3","x","0","y","0","width","54","height","30","rx","15"],["x","-2.8%","y","-5.0%","width","105.6%","height","110.0%","filterUnits","objectBoundingBox","id","filter-4"],["stdDeviation","0.5","in","SourceGraphic"],["x","-5.6%","y","-10.0%","width","111.1%","height","120.0%","filterUnits","objectBoundingBox","id","filter-5"],["stdDeviation","1","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","-1","in","shadowBlurInner1","result","shadowOffsetInner1"],["id","button/next2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Group-Copy"],["id","Rectangle-5-Copy","opacity","0.1","fill-rule","nonzero"],["fill","#CCCCCC",0,"xlink","href","#path-1"],["fill","black","fill-opacity","1","filter","url(#filter-2)",0,"xlink","href","#path-1"],["id","Group-2","transform","translate(3.000000, 3.000000)"],["id","Rectangle-5-Copy-2","fill-rule","nonzero","filter","url(#filter-4)"],["fill","#FFFFFF",0,"xlink","href","#path-3"],["fill","black","fill-opacity","1","filter","url(#filter-5)",0,"xlink","href","#path-3"],["id","Shape","fill","#6D7278","transform","translate(27.295000, 15.000000) scale(-1, 1) translate(-27.295000, -15.000000) ","points","31 10.41 29.59 9 23.59 15 29.59 21 31 19.59 26.42 15"],["id","Icon-24px","transform","translate(30.000000, 18.000000) scale(-1, 1) translate(-30.000000, -18.000000) translate(26.000000, 12.000000)"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"Next"),t.qZA(),t.TgZ(3,"defs"),t._UZ(4,"rect",1),t.TgZ(5,"filter",2),t._UZ(6,"feGaussianBlur",3)(7,"feOffset",4)(8,"feComposite",5)(9,"feColorMatrix",6),t.qZA(),t._UZ(10,"rect",7),t.TgZ(11,"filter",8),t._UZ(12,"feGaussianBlur",9),t.qZA(),t.TgZ(13,"filter",10),t._UZ(14,"feGaussianBlur",11)(15,"feOffset",12)(16,"feComposite",5)(17,"feColorMatrix",6),t.qZA()(),t.TgZ(18,"g",13)(19,"g",14)(20,"g",15)(21,"g",16),t._UZ(22,"use",17)(23,"use",18),t.qZA(),t.TgZ(24,"g",19)(25,"g",20),t._UZ(26,"use",21)(27,"use",22),t.qZA(),t._UZ(28,"polygon",23),t.qZA()(),t._UZ(29,"g",24),t.qZA()()())}}),H1.ctorParameters=()=>[];class vl{constructor(){}ngOnInit(){}}vl.\u0275fac=function(m){return new(m||vl)},vl.\u0275cmp=t.Xpm({type:vl,selectors:[["quml-bookmark"]],decls:5,vars:0,consts:[["width","14px","height","18px","viewBox","0 0 14 18","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["d","M12,0 L2,0 C0.9,0 0.01,0.9 0.01,2 L0,18 L7,15 L14,18 L14,2 C14,0.9 13.1,0 12,0 L12,0 Z M12,15 L7,12.82 L2,15 L2,2 L12,2 L12,15 L12,15 Z","id","bookmark","fill","#6D7278"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"bookmark"),t.qZA(),t.TgZ(3,"g",1),t._UZ(4,"path",2),t.qZA()())}}),vl.ctorParameters=()=>[];class G1{constructor(){}ngOnInit(){}}G1.\u0275fac=function(m){return new(m||G1)},G1.\u0275cmp=t.Xpm({type:G1,selectors:[["quml-hint"]],decls:5,vars:0,consts:[["width","14px","height","20px","viewBox","0 0 14 20","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["d","M4,19 C4,19.55 4.45,20 5,20 L9,20 C9.55,20 10,19.55 10,19 L10,18 L4,18 L4,19 L4,19 Z M7,0 C3.14,0 0,3.14 0,7 C0,9.38 1.19,11.47 3,12.74 L3,15 C3,15.55 3.45,16 4,16 L10,16 C10.55,16 11,15.55 11,15 L11,12.74 C12.81,11.47 14,9.38 14,7 C14,3.14 10.86,0 7,0 L7,0 Z M9.85,11.1 L9,11.7 L9,14 L5,14 L5,11.7 L4.15,11.1 C2.8,10.16 2,8.63 2,7 C2,4.24 4.24,2 7,2 C9.76,2 12,4.24 12,7 C12,8.63 11.2,10.16 9.85,11.1 L9.85,11.1 Z","id","hint","fill","#6D7278"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"hint"),t.qZA(),t.TgZ(3,"g",1),t._UZ(4,"path",2),t.qZA()())}}),G1.ctorParameters=()=>[];class Zs{constructor(){}ngOnInit(){}}Zs.\u0275fac=function(m){return new(m||Zs)},Zs.\u0275cmp=t.Xpm({type:Zs,selectors:[["quml-ans"]],decls:7,vars:0,consts:[["tabindex","0","width","25px","height","25px","viewBox","0 0 25 25","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","ans"],["id","Oval","stroke","#979797","cx","12.0235","cy","12.0235","r","11.5235"],["d","M5.9515,14.5235 L6.3675,13.1635 L8.4475,13.1635 L8.8635,14.5235 L10.1675,14.5235 L8.1435,8.7875 L6.6635,8.7875 L4.6475,14.5235 L5.9515,14.5235 Z M8.1595,12.1475 L6.6715,12.1475 L7.0795,10.8195 C7.10083333,10.7608333 7.1315,10.6608333 7.1715,10.5195 C7.2115,10.3781667 7.25416667,10.2288333 7.2995,10.0715 C7.34483333,9.91416667 7.38083333,9.78216667 7.4075,9.6755 C7.43416667,9.78216667 7.46883333,9.9075 7.5115,10.0515 C7.55416667,10.1955 7.59683333,10.3368333 7.6395,10.4755 C7.68216667,10.6141667 7.71683333,10.7288333 7.7435,10.8195 L7.7435,10.8195 L8.1595,12.1475 Z M11.9835,14.5235 L11.9835,12.4675 C11.9835,12.0035 12.0501667,11.6475 12.1835,11.3995 C12.3168333,11.1515 12.5648333,11.0275 12.9275,11.0275 C13.1728333,11.0275 13.3515,11.1061667 13.4635,11.2635 C13.5755,11.4208333 13.6315,11.6568333 13.6315,11.9715 L13.6315,11.9715 L13.6315,14.5235 L14.8235,14.5235 L14.8235,11.6755 C14.8235,11.1155 14.6821667,10.7088333 14.3995,10.4555 C14.1168333,10.2021667 13.7408333,10.0755 13.2715,10.0755 C12.9995,10.0755 12.7421667,10.1261667 12.4995,10.2275 C12.2568333,10.3288333 12.0661667,10.4915 11.9275,10.7155 L11.9275,10.7155 L11.8635,10.7155 L11.7035,10.1555 L10.7915,10.1555 L10.7915,14.5235 L11.9835,14.5235 Z M17.2315,14.6035 C17.8501667,14.6035 18.3155,14.4848333 18.6275,14.2475 C18.9395,14.0101667 19.0955,13.6701667 19.0955,13.2275 C19.0955,12.9715 19.0461667,12.7608333 18.9475,12.5955 C18.8488333,12.4301667 18.7088333,12.2928333 18.5275,12.1835 C18.3461667,12.0741667 18.1301667,11.9688333 17.8795,11.8675 C17.6235,11.7608333 17.4301667,11.6755 17.2995,11.6115 C17.1688333,11.5475 17.0808333,11.4875 17.0355,11.4315 C16.9901667,11.3755 16.9675,11.3128333 16.9675,11.2435 C16.9675,11.0515 17.1435,10.9555 17.4955,10.9555 C17.6928333,10.9555 17.8875,10.9861667 18.0795,11.0475 C18.2715,11.1088333 18.4741667,11.1848333 18.6875,11.2755 L18.6875,11.2755 L19.0475,10.4195 C18.7861667,10.2968333 18.5328333,10.2088333 18.2875,10.1555 C18.0421667,10.1021667 17.7835,10.0755 17.5115,10.0755 C16.9888333,10.0755 16.5701667,10.1768333 16.2555,10.3795 C15.9408333,10.5821667 15.7835,10.8861667 15.7835,11.2915 C15.7835,11.5368333 15.8261667,11.7408333 15.9115,11.9035 C15.9968333,12.0661667 16.1261667,12.2048333 16.2995,12.3195 C16.4728333,12.4341667 16.6981667,12.5501667 16.9755,12.6675 C17.2581667,12.7848333 17.4661667,12.8808333 17.5995,12.9555 C17.7328333,13.0301667 17.8195,13.0968333 17.8595,13.1555 C17.8995,13.2141667 17.9195,13.2808333 17.9195,13.3555 C17.9195,13.4675 17.8688333,13.5581667 17.7675,13.6275 C17.6661667,13.6968333 17.5008333,13.7315 17.2715,13.7315 C17.0635,13.7315 16.8235,13.6968333 16.5515,13.6275 C16.2795,13.5581667 16.0261667,13.4701667 15.7915,13.3635 L15.7915,13.3635 L15.7915,14.3475 C16.0101667,14.4381667 16.2288333,14.5035 16.4475,14.5435 C16.6661667,14.5835 16.9275,14.6035 17.2315,14.6035 Z","id","Ans","fill","#6D7278","fill-rule","nonzero"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"ans"),t.qZA(),t.TgZ(3,"g",1)(4,"g",2),t._UZ(5,"circle",3)(6,"path",4),t.qZA()()())}}),Zs.ctorParameters=()=>[];class _1{constructor(){}ngOnInit(){}}_1.\u0275fac=function(m){return new(m||_1)},_1.\u0275cmp=t.Xpm({type:_1,selectors:[["quml-share"]],decls:5,vars:0,consts:[["width","17px","height","18px","viewBox","0 0 17 18","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["d","M13.4613333,12.8088889 C12.7857778,12.8088889 12.1813333,13.0755556 11.7191111,13.4933333 L5.38133333,9.80444444 C5.42577778,9.6 5.46133333,9.39555556 5.46133333,9.18222222 C5.46133333,8.96888889 5.42577778,8.76444444 5.38133333,8.56 L11.648,4.90666667 C12.128,5.35111111 12.7591111,5.62666667 13.4613333,5.62666667 C14.9368889,5.62666667 16.128,4.43555556 16.128,2.96 C16.128,1.48444444 14.9368889,0.293333333 13.4613333,0.293333333 C11.9857778,0.293333333 10.7946667,1.48444444 10.7946667,2.96 C10.7946667,3.17333333 10.8302222,3.37777778 10.8746667,3.58222222 L4.608,7.23555556 C4.128,6.79111111 3.49688889,6.51555556 2.79466667,6.51555556 C1.31911111,6.51555556 0.128,7.70666667 0.128,9.18222222 C0.128,10.6577778 1.31911111,11.8488889 2.79466667,11.8488889 C3.49688889,11.8488889 4.128,11.5733333 4.608,11.1288889 L10.9368889,14.8266667 C10.8924444,15.0133333 10.8657778,15.2088889 10.8657778,15.4044444 C10.8657778,16.8355556 12.0302222,18 13.4613333,18 C14.8924444,18 16.0568889,16.8355556 16.0568889,15.4044444 C16.0568889,13.9733333 14.8924444,12.8088889 13.4613333,12.8088889 L13.4613333,12.8088889 Z","id","share","fill","#6D7278"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"share"),t.qZA(),t.TgZ(3,"g",1),t._UZ(4,"path",2),t.qZA()())}}),_1.ctorParameters=()=>[];class C1{constructor(){}ngOnInit(){}}C1.\u0275fac=function(m){return new(m||C1)},C1.\u0275cmp=t.Xpm({type:C1,selectors:[["quml-correct"]],decls:5,vars:0,consts:[["width","48px","height","48px","viewBox","0 0 21 20","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["d","M10.5,0 C4.98,0 0.5,4.48 0.5,10 C0.5,15.52 4.98,20 10.5,20 C16.02,20 20.5,15.52 20.5,10 C20.5,4.48 16.02,0 10.5,0 L10.5,0 Z M8.5,15 L3.5,10 L4.91,8.59 L8.5,12.17 L16.09,4.58 L17.5,6 L8.5,15 L8.5,15 Z","id","correct-option","fill","#31A679"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"correct option"),t.qZA(),t.TgZ(3,"g",1),t._UZ(4,"path",2),t.qZA()())}}),C1.ctorParameters=()=>[];class Ts{constructor(m){this.viewerService=m,this.submitClicked=new t.vpe,this.emitQuestionNo=new t.vpe,this.scoreBoardLoaded=new t.vpe}ngOnInit(){this.scoreBoardLoaded.emit({scoreBoardLoaded:!0}),this.subscription=(0,Rs.R)(document,"keydown").subscribe(m=>{"Enter"===m.key&&(m.stopPropagation(),document.activeElement.click())})}goToQuestion(m,h){this.emitQuestionNo.emit({questionNo:m,identifier:h})}onReviewClicked(){this.isSections?this.goToQuestion(1,this.scores[0].identifier):this.goToQuestion(1),this.viewerService.raiseHeartBeatEvent(Vi_scoreBoardReviewClicked,Ni_interact,ss_submitPage)}ngOnDestroy(){this.subscription.unsubscribe()}}Ts.\u0275fac=function(m){return new(m||Ts)(t.Y36(Po))},Ts.\u0275cmp=t.Xpm({type:Ts,selectors:[["quml-scoreboard"]],inputs:{scores:"scores",totalNoOfQuestions:"totalNoOfQuestions",contentName:"contentName",showFeedBack:"showFeedBack",isSections:"isSections",summary:"summary"},outputs:{submitClicked:"submitClicked",emitQuestionNo:"emitQuestionNo",scoreBoardLoaded:"scoreBoardLoaded"},decls:24,vars:7,consts:[[1,"scoreboard"],[1,"scoreboard__header"],[1,"scoreboard__title"],[1,"scoreboard__subtitle"],[1,"sections-score-card"],[1,"sections-score-count-info"],[1,"mb-15"],[1,"sections-score-count-sections"],["class","scoreboard__points",4,"ngIf"],[4,"ngIf"],[1,"scoreboard__btn-container"],["type","submit",1,"sb-btn","sb-btn-outline-primary","sb-btn-normal","sb-btn-radius","px-20","mx-8",3,"click"],["type","submit",1,"sb-btn","sb-btn-primary","sb-btn-normal","sb-btn-radius","px-20","mx-8",3,"click"],[1,"scoreboard__points"],["class","scoreboard__index","tabindex","0",3,"ngClass","click",4,"ngFor","ngForOf"],["tabindex","0",1,"scoreboard__index",3,"ngClass","click"],["class","sections-score-counts",4,"ngFor","ngForOf"],[1,"sections-score-counts"],[1,"sections-score-card__title"],[1,"sections-score-card__points"]],template:function(m,h){1&m&&(t.TgZ(0,"div",0)(1,"div",1)(2,"div",2),t._uU(3," Are you ready to submit? "),t.qZA(),t.TgZ(4,"div",3),t._uU(5),t.qZA()(),t.TgZ(6,"div",4)(7,"div",5)(8,"div",6),t._uU(9),t.qZA(),t.TgZ(10,"div",6),t._uU(11),t.qZA(),t.TgZ(12,"div",6),t._uU(13),t.qZA(),t.TgZ(14,"div",6),t._uU(15),t.qZA()(),t.TgZ(16,"div",7),t.YNc(17,E5,2,1,"div",8),t.YNc(18,I5,2,1,"div",9),t.qZA()(),t.TgZ(19,"div",10)(20,"button",11),t.NdJ("click",function(){return h.onReviewClicked()}),t._uU(21,"Review"),t.qZA(),t.TgZ(22,"button",12),t.NdJ("click",function(){return h.submitClicked.emit({type:"submit-clicked"})}),t._uU(23,"Submit"),t.qZA()()()),2&m&&(t.xp6(5),t.hij(" ",h.contentName," "),t.xp6(4),t.hij("Total Questions: ",h.totalNoOfQuestions,""),t.xp6(2),t.hij("Questions Answered: ",(null==h.summary?null:h.summary.correct)+(null==h.summary?null:h.summary.wrong),""),t.xp6(2),t.hij("Questions Skipped: ",null==h.summary?null:h.summary.skipped,""),t.xp6(2),t.hij("Questions not Viewed: ",h.totalNoOfQuestions-((null==h.summary?null:h.summary.correct)+(null==h.summary?null:h.summary.wrong)+(null==h.summary?null:h.summary.skipped)),""),t.xp6(2),t.Q6J("ngIf",!h.isSections),t.xp6(1),t.Q6J("ngIf",h.isSections))},dependencies:[tt.mk,tt.sg,tt.O5],styles:[":root{--quml-scoreboard-sub-title:#6d7278;--quml-scoreboard-skipped:#969696;--quml-scoreboard-unattempted:#575757;--quml-color-success:#08bc82;--quml-color-danger:#f1635d;--quml-color-primary-contrast:#333}.scoreboard[_ngcontent-%COMP%]{display:flex;flex-direction:column;align-items:center;width:100%;height:100%;padding:3.5rem 2.5rem 0}@media (max-width:767px){.scoreboard[_ngcontent-%COMP%]{top:0;height:calc(100% - 0px)}}.scoreboard__header[_ngcontent-%COMP%]{font-weight:700;text-align:center;line-height:normal;height:5rem}.scoreboard__title[_ngcontent-%COMP%]{color:var(--primary-color);font-size:1.25rem}.scoreboard__subtitle[_ngcontent-%COMP%]{color:var(--quml-scoreboard-sub-title);font-size:.875rem;margin-top:.5rem}.scoreboard__points[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;margin:0 auto;width:100%;max-height:calc(100vh - 12rem);align-items:center;overflow-y:auto;justify-content:center}.scoreboard__btn-container[_ngcontent-%COMP%]{display:flex;height:5rem;align-items:center}.scoreboard__index[_ngcontent-%COMP%]{font-size:.625rem;font-weight:500;border-radius:50%;width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center;margin:0 1rem 1rem;cursor:pointer}.scoreboard__index.skipped[_ngcontent-%COMP%]{color:var(--white);background:var(--quml-scoreboard-skipped);border:.0625rem solid var(--quml-scoreboard-skipped)}.scoreboard__index.correct[_ngcontent-%COMP%], .scoreboard__index.partial[_ngcontent-%COMP%], .scoreboard__index.wrong[_ngcontent-%COMP%]{color:var(--white);border:0 solid transparent}.scoreboard__index.correct[_ngcontent-%COMP%]{--correct-bg:var(--quml-color-success);background:var(--correct-bg)}.scoreboard__index.wrong[_ngcontent-%COMP%]{--wrong-bg:var(--quml-color-danger);background:var(--wrong-bg)}.scoreboard__index.partial[_ngcontent-%COMP%]{--partial-bg:linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );background:var(--partial-bg)}.scoreboard__index.unattempted[_ngcontent-%COMP%]{color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted)}.scoreboard__index.unattempted[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color);color:var(--primary-color)}.scoreboard__index.attempted[_ngcontent-%COMP%]{color:var(--white)!important;background:var(--primary-color);border:.03125rem solid var(--primary-color)}.sections-score-card[_ngcontent-%COMP%]{width:100%;height:calc(100% - 10rem);overflow-y:auto;display:flex}.sections-score-card__title[_ngcontent-%COMP%]{width:100%;color:var(--quml-color-primary-contrast);font-size:.875rem;font-weight:700;text-align:center;margin-bottom:1rem}.sections-score-card__points[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;margin:.5rem auto 0;width:100%;max-height:100%;align-items:center;overflow-y:auto;justify-content:center}@media screen and (orientation:portrait){.sections-score-card[_ngcontent-%COMP%]{flex-direction:column;text-align:center}}.sections-score-card[_ngcontent-%COMP%] .sections-score-count-info[_ngcontent-%COMP%]{width:100%;display:block;border-right:0;padding-bottom:1.5rem;position:-webkit-sticky;position:sticky;top:0;background:#fff}@media screen and (orientation:landscape){.scoreboard[_ngcontent-%COMP%] .scoreboard__header[_ngcontent-%COMP%]{display:block;width:100%;text-align:left}.sections-score-card[_ngcontent-%COMP%] .sections-score-count-info[_ngcontent-%COMP%]{width:40%;border-right:1px solid #979797}.sections-score-card[_ngcontent-%COMP%] .sections-score-count-sections[_ngcontent-%COMP%]{width:calc(100% - 40%)}}"]}),Ts.ctorParameters=()=>[{type:Po}],Ts.propDecorators={scores:[{type:t.IIB}],totalNoOfQuestions:[{type:t.IIB}],contentName:[{type:t.IIB}],showFeedBack:[{type:t.IIB}],isSections:[{type:t.IIB}],summary:[{type:t.IIB}],submitClicked:[{type:t.r_U}],emitQuestionNo:[{type:t.r_U}],scoreBoardLoaded:[{type:t.r_U}]};class V1{ngOnInit(){this.time;this.minutes=Math.floor(this.time/60),this.seconds=this.time-60*this.minutes<10?"0"+(this.time-60*this.minutes):this.time-60*this.minutes}}V1.\u0275fac=function(m){return new(m||V1)},V1.\u0275cmp=t.Xpm({type:V1,selectors:[["quml-startpage"]],inputs:{instructions:"instructions",totalNoOfQuestions:"totalNoOfQuestions",points:"points",time:"time",contentName:"contentName",showTimer:"showTimer"},decls:14,vars:6,consts:[["tabindex","0",1,"startpage"],[1,"startpage__header"],[1,"startpage__content"],[1,"startpage__metadata"],[1,"startpage__md-heading"],[1,"startpage__md-scores"],[1,"startpage__md-icon"],[1,"startpage__md-desc"],["class","startpage__metadata",4,"ngIf"],[4,"ngIf"],[1,"startpage__instruction"],[1,"startpage__instr-title"],[1,"startpage__instr-desc",3,"innerHTML"]],template:function(m,h){1&m&&(t.TgZ(0,"div",0)(1,"div",1),t._uU(2),t.qZA(),t.TgZ(3,"div",2)(4,"div",3)(5,"div",4),t._uU(6,"Questions"),t.qZA(),t.TgZ(7,"div",5),t._UZ(8,"quml-content",6),t.TgZ(9,"span",7),t._uU(10),t.qZA()()(),t.YNc(11,C3,7,2,"div",8),t.YNc(12,kc,8,1,"div",8),t.qZA(),t.YNc(13,Nc,6,3,"ng-container",9),t.qZA()),2&m&&(t.xp6(1),t.uIk("aria-label","question set title "+h.contentName),t.xp6(1),t.hij(" ",h.contentName," "),t.xp6(8),t.Oqu(h.totalNoOfQuestions),t.xp6(1),t.Q6J("ngIf",h.showTimer&&h.time>0),t.xp6(1),t.Q6J("ngIf",h.points),t.xp6(1),t.Q6J("ngIf",h.instructions))},dependencies:function(){return[tt.O5,yl,Es,v1,la]},styles:[":root{--quml-scoreboard-sub-title:#6D7278;--quml-color-primary-contrast:#333;--quml-zoom-btn-txt:#eee;--quml-zoom-btn-hover:#f2f2f2}.startpage__header[_ngcontent-%COMP%]{color:var(--primary-color);font-size:1.125rem;font-weight:700;margin:1rem 0;line-height:normal}.startpage__content[_ngcontent-%COMP%]{display:flex;border-bottom:.0625rem solid var(--quml-zoom-btn-txt);align-items:center;line-height:normal;margin-bottom:1rem;padding-bottom:1.5rem}.startpage__metadata[_ngcontent-%COMP%]{margin:0 4rem .5rem 0}.startpage__md-heading[_ngcontent-%COMP%]{color:var(--quml-scoreboard-sub-title);font-size:.75rem;line-height:normal;margin-bottom:.5rem}.startpage__md-icon[_ngcontent-%COMP%], .startpage__md-scores[_ngcontent-%COMP%]{display:flex;align-items:center}.startpage__md-desc[_ngcontent-%COMP%]{color:var(--primary-color);font-size:1.125rem;font-weight:700;margin-left:.5rem}.startpage__instr-title[_ngcontent-%COMP%]{color:var(--quml-scoreboard-sub-title);font-size:.75rem;font-weight:700;letter-spacing:0;line-height:18px}.startpage__instr-desc[_ngcontent-%COMP%]{padding:1rem 0;color:var(--quml-color-primary-contrast);font-size:.75rem;letter-spacing:0;line-height:17px} .startpage__instr-desc ul{list-style-type:disc} .startpage__instr-desc li{margin-bottom:.5rem;margin-left:.5rem} .startpage__instr-desc table{width:100%} .startpage__instr-desc td, .startpage__instr-desc th{border:.0625rem solid #ddd;padding:.5rem} .startpage__instr-desc tr:nth-child(even){background-color:var(--quml-zoom-btn-hover)}@media only screen and (max-width:480px){.startpage__header[_ngcontent-%COMP%]{margin-top:1.5rem}}",So]}),V1.propDecorators={instructions:[{type:t.IIB}],totalNoOfQuestions:[{type:t.IIB}],points:[{type:t.IIB}],time:[{type:t.IIB}],contentName:[{type:t.IIB}],showTimer:[{type:t.IIB}]};class yl{constructor(){}ngOnInit(){}}yl.\u0275fac=function(m){return new(m||yl)},yl.\u0275cmp=t.Xpm({type:yl,selectors:[["quml-timer"]],decls:12,vars:0,consts:[["width","18px","height","19px","viewBox","0 0 18 19","version","1.1","tabindex","-1","aria-hidden","true","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["x1","13.2653061%","y1","0%","x2","87.9981222%","y2","100%","id","linearGradient-1"],["stop-color","#F1635D","offset","0%"],["stop-color","#F97A74","offset","100%"],["id","Content-player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","player-intro-page","transform","translate(-446.000000, -159.000000)"],["id","Icon-24px","transform","translate(446.000000, 159.495625)"],["id","Shape","points","0 0 18 0 18 18 0 18"],["d","M11.25,0.75 L6.75,0.75 L6.75,2.25 L11.25,2.25 L11.25,0.75 L11.25,0.75 Z M8.25,10.5 L9.75,10.5 L9.75,6 L8.25,6 L8.25,10.5 L8.25,10.5 Z M14.2725,5.5425 L15.3375,4.4775 C15.015,4.095 14.6625,3.735 14.28,3.42 L13.215,4.485 C12.0525,3.555 10.59,3 9,3 C5.2725,3 2.25,6.0225 2.25,9.75 C2.25,13.4775 5.265,16.5 9,16.5 C12.735,16.5 15.75,13.4775 15.75,9.75 C15.75,8.16 15.195,6.6975 14.2725,5.5425 L14.2725,5.5425 Z M9,15 C6.0975,15 3.75,12.6525 3.75,9.75 C3.75,6.8475 6.0975,4.5 9,4.5 C11.9025,4.5 14.25,6.8475 14.25,9.75 C14.25,12.6525 11.9025,15 9,15 L9,15 Z","id","Shape","fill","#f8756f"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"ic_timer"),t.qZA(),t.TgZ(3,"defs")(4,"linearGradient",1),t._UZ(5,"stop",2)(6,"stop",3),t.qZA()(),t.TgZ(7,"g",4)(8,"g",5)(9,"g",6),t._UZ(10,"polygon",7)(11,"path",8),t.qZA()()()())}}),yl.ctorParameters=()=>[];class Es{constructor(){}ngOnInit(){}}Es.\u0275fac=function(m){return new(m||Es)},Es.\u0275cmp=t.Xpm({type:Es,selectors:[["quml-content"]],decls:12,vars:0,consts:[["width","18px","height","19px","viewBox","0 0 18 19","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink","tabindex","-1","aria-hidden","true"],["x1","16.5289256%","y1","0%","x2","84.622256%","y2","100%","id","linearGradient-1"],["stop-color","#F1635D","offset","0%"],["stop-color","#F97A74","offset","100%"],["id","Content-player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","player-intro-page","transform","translate(-447.000000, -95.000000)"],["id","Icon-24px","transform","translate(447.000000, 95.495625)"],["id","Shape","points","0 0 18 0 18 18 0 18"],["d","M14.25,1.5 L11.115,1.5 C10.8,0.63 9.975,0 9,0 C8.025,0 7.2,0.63 6.885,1.5 L3.75,1.5 C2.925,1.5 2.25,2.175 2.25,3 L2.25,15 C2.25,15.825 2.925,16.5 3.75,16.5 L14.25,16.5 C15.075,16.5 15.75,15.825 15.75,15 L15.75,3 C15.75,2.175 15.075,1.5 14.25,1.5 L14.25,1.5 Z M9,1.5 C9.4125,1.5 9.75,1.8375 9.75,2.25 C9.75,2.6625 9.4125,3 9,3 C8.5875,3 8.25,2.6625 8.25,2.25 C8.25,1.8375 8.5875,1.5 9,1.5 L9,1.5 Z M14.25,15 L3.75,15 L3.75,3 L5.25,3 L5.25,5.25 L12.75,5.25 L12.75,3 L14.25,3 L14.25,15 L14.25,15 Z","id","Shape","fill","#f8756f"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"ic_content_paste"),t.qZA(),t.TgZ(3,"defs")(4,"linearGradient",1),t._UZ(5,"stop",2)(6,"stop",3),t.qZA()(),t.TgZ(7,"g",4)(8,"g",5)(9,"g",6),t._UZ(10,"polygon",7)(11,"path",8),t.qZA()()()())}}),Es.ctorParameters=()=>[];class v1{constructor(){}ngOnInit(){}}v1.\u0275fac=function(m){return new(m||v1)},v1.\u0275cmp=t.Xpm({type:v1,selectors:[["quml-startpagestaricon"]],decls:10,vars:0,consts:[["width","14px","height","13px","viewBox","0 0 14 13","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["x1","0%","y1","0%","x2","101.719666%","y2","100%","id","linearGradient-1"],["stop-color","#F1635D","offset","0%"],["stop-color","#F97A74","offset","100%"],["id","Content-player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","player-intro-page","transform","translate(-448.000000, -226.000000)","fill","#f8756f"],["d","M454.069318,237.484914 L452.648859,238.231693 C452.008011,238.568607 451.215379,238.322219 450.878466,237.681372 C450.744305,237.426183 450.698009,237.133884 450.746746,236.849727 L451.018029,235.268023 C451.129305,234.619235 450.914208,233.957235 450.442836,233.49776 L449.293661,232.377591 C448.775204,231.872221 448.764596,231.042245 449.269966,230.523788 C449.471207,230.317336 449.734894,230.182981 450.020203,230.141523 L451.608325,229.910756 C452.259745,229.816099 452.822876,229.40696 453.1142,228.816673 L453.824429,227.377591 C454.144853,226.728342 454.930929,226.461776 455.580179,226.782199 C455.838713,226.909794 456.047976,227.119057 456.175571,227.377591 L456.8858,228.816673 C457.177124,229.40696 457.740255,229.816099 458.391675,229.910756 L459.979797,230.141523 C460.696286,230.245635 461.192716,230.910864 461.088604,231.627354 C461.047146,231.912664 460.912791,232.17635 460.706339,232.377591 L459.557164,233.49776 C459.085792,233.957235 458.870695,234.619235 458.981971,235.268023 L459.253254,236.849727 C459.375645,237.563322 458.89638,238.241022 458.182786,238.363413 C457.898629,238.412149 457.60633,238.365854 457.351141,238.231693 L455.930682,237.484914 C455.348034,237.178598 454.651966,237.178598 454.069318,237.484914 Z","id","Star"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"Star"),t.qZA(),t.TgZ(3,"defs")(4,"linearGradient",1),t._UZ(5,"stop",2)(6,"stop",3),t.qZA()(),t.TgZ(7,"g",4)(8,"g",5),t._UZ(9,"path",6),t.qZA()()())}}),v1.ctorParameters=()=>[];class Ba{constructor(){}ngOnInit(){}}Ba.\u0275fac=function(m){return new(m||Ba)},Ba.\u0275cmp=t.Xpm({type:Ba,selectors:[["quml-previous-active"]],decls:20,vars:0,consts:[["width","60px","height","36px","viewBox","0 0 60 36","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","path-1","x","0","y","0","width","56","height","32","rx","16"],["x","-2.7%","y","-4.7%","width","105.4%","height","109.4%","filterUnits","objectBoundingBox","id","filter-2"],["stdDeviation","0.5","in","SourceGraphic"],["x","-5.4%","y","-9.4%","width","110.7%","height","118.8%","filterUnits","objectBoundingBox","id","filter-3"],["stdDeviation","1","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","-1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0","type","matrix","in","shadowInnerInner1"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group","transform","translate(30.000000, 18.000000) scale(-1, 1) translate(-30.000000, -18.000000) translate(2.000000, 2.000000)"],["id","Group-2"],["id","Rectangle-5-Copy-2","fill-rule","nonzero","filter","url(#filter-2)"],["fill","#FFFFFF",0,"xlink","href","#path-1"],["fill","black","fill-opacity","1","filter","url(#filter-3)",0,"xlink","href","#path-1"],["id","Shape","fill","#6D7278","transform","translate(28.000000, 16.000000) scale(-1, 1) translate(-28.000000, -16.000000) ","points","31.705 11.41 30.295 10 24.295 16 30.295 22 31.705 20.59 27.125 16"],["id","Icon-24px","transform","translate(27.000000, 15.000000) scale(-1, 1) translate(-27.000000, -15.000000) translate(23.000000, 9.000000)"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"Previous"),t.qZA(),t.TgZ(3,"defs"),t._UZ(4,"rect",1),t.TgZ(5,"filter",2),t._UZ(6,"feGaussianBlur",3),t.qZA(),t.TgZ(7,"filter",4),t._UZ(8,"feGaussianBlur",5)(9,"feOffset",6)(10,"feComposite",7)(11,"feColorMatrix",8),t.qZA()(),t.TgZ(12,"g",9)(13,"g",10)(14,"g",11)(15,"g",12),t._UZ(16,"use",13)(17,"use",14),t.qZA(),t._UZ(18,"polygon",15),t.qZA(),t._UZ(19,"g",16),t.qZA()()())}}),Ba.ctorParameters=()=>[];class W1{constructor(){}ngOnInit(){}}W1.\u0275fac=function(m){return new(m||W1)},W1.\u0275cmp=t.Xpm({type:W1,selectors:[["quml-next-active"]],decls:30,vars:0,consts:[["width","60px","height","36px","viewBox","0 0 60 36","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","path-1","x","0","y","0","width","60","height","36","rx","18"],["x","-5.8%","y","-9.7%","width","111.7%","height","119.4%","filterUnits","objectBoundingBox","id","filter-2"],["stdDeviation","3","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0","type","matrix","in","shadowInnerInner1"],["id","path-3","x","0","y","0","width","54","height","30","rx","15"],["x","-2.8%","y","-5.0%","width","105.6%","height","110.0%","filterUnits","objectBoundingBox","id","filter-4"],["stdDeviation","0.5","in","SourceGraphic"],["x","-5.6%","y","-10.0%","width","111.1%","height","120.0%","filterUnits","objectBoundingBox","id","filter-5"],["stdDeviation","1","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","-1","in","shadowBlurInner1","result","shadowOffsetInner1"],["id","button/next2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Group-Copy"],["id","Rectangle-5-Copy","opacity","0.1","fill-rule","nonzero"],["fill","#CCCCCC",0,"xlink","href","#path-1"],["fill","black","fill-opacity","1","filter","url(#filter-2)",0,"xlink","href","#path-1"],["id","Group-2","transform","translate(3.000000, 3.000000)"],["id","Rectangle-5-Copy-2","fill-rule","nonzero","filter","url(#filter-4)"],["fill","#FFD655",0,"xlink","href","#path-3"],["fill","black","fill-opacity","1","filter","url(#filter-5)",0,"xlink","href","#path-3"],["id","Shape","fill","#666","transform","translate(27.295000, 15.000000) scale(-1, 1) translate(-27.295000, -15.000000) ","points","31 10.41 29.59 9 23.59 15 29.59 21 31 19.59 26.42 15"],["id","Icon-24px","transform","translate(30.000000, 18.000000) scale(-1, 1) translate(-30.000000, -18.000000) translate(26.000000, 12.000000)"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"Next"),t.qZA(),t.TgZ(3,"defs"),t._UZ(4,"rect",1),t.TgZ(5,"filter",2),t._UZ(6,"feGaussianBlur",3)(7,"feOffset",4)(8,"feComposite",5)(9,"feColorMatrix",6),t.qZA(),t._UZ(10,"rect",7),t.TgZ(11,"filter",8),t._UZ(12,"feGaussianBlur",9),t.qZA(),t.TgZ(13,"filter",10),t._UZ(14,"feGaussianBlur",11)(15,"feOffset",12)(16,"feComposite",5)(17,"feColorMatrix",6),t.qZA()(),t.TgZ(18,"g",13)(19,"g",14)(20,"g",15)(21,"g",16),t._UZ(22,"use",17)(23,"use",18),t.qZA(),t.TgZ(24,"g",19)(25,"g",20),t._UZ(26,"use",21)(27,"use",22),t.qZA(),t._UZ(28,"polygon",23),t.qZA()(),t._UZ(29,"g",24),t.qZA()()())}}),W1.ctorParameters=()=>[];class y1{constructor(){this.closeAlert=new t.vpe,this.showSolution=new t.vpe,this.showHint=new t.vpe,this.isFocusSet=!1}onKeydownHandler(m){this.close("close")}ngOnInit(){this.isFocusSet=!1,this.previousActiveElement=document.activeElement,this.subscription=(0,Rs.R)(document,"keydown").subscribe(m=>{if("Tab"===m.key){const h=document.querySelector(".quml-navigation__previous");h&&(this.close("close"),h.focus(),this.isFocusSet=!0,m.stopPropagation())}})}ngAfterViewInit(){document.querySelector(".quml-alert__body");setTimeout(()=>{const h=document.querySelector("#wrongButton"),H=document.querySelector("#correctButton");document.querySelector("#hintButton");"wrong"===this.alertType&&h?h.focus():"correct"===this.alertType&&this.showSolutionButton&&H&&H.focus()},200)}viewHint(){this.showHint.emit({hint:!0})}viewSolution(){this.showSolution.emit({solution:!0})}close(m){this.closeAlert.emit({type:m})}ngOnDestroy(){this.previousActiveElement&&!this.isFocusSet&&this.previousActiveElement.focus(),this.subscription&&this.subscription.unsubscribe()}}y1.\u0275fac=function(m){return new(m||y1)},y1.\u0275cmp=t.Xpm({type:y1,selectors:[["quml-alert"]],hostBindings:function(m,h){1&m&&t.NdJ("keydown.escape",function(ee){return h.onKeydownHandler(ee)},!1,t.evT)},inputs:{alertType:"alertType",isHintAvailable:"isHintAvailable",showSolutionButton:"showSolutionButton"},outputs:{closeAlert:"closeAlert",showSolution:"showSolution",showHint:"showHint"},decls:9,vars:4,consts:[[1,"quml-alert"],[1,"quml-alert__overlay",3,"click","keyup.enter"],[1,"quml-alert__container"],[1,"quml-alert__body"],["class","quml-alert__image quml-alert__image--correct",4,"ngIf"],["class","quml-alert__image quml-alert__image--wrong",4,"ngIf"],[1,"quml-alert__solution-container"],["class","quml-alert__try-again",4,"ngIf"],["class","quml-alert__view-hint quml-alert__view-hint--disabled",4,"ngIf"],[1,"quml-alert__image","quml-alert__image--correct"],[1,"quml-alert__icon-container"],["src","assets/quml-correct.svg","alt","Correct Answer",1,"quml-alert__icon"],[1,"quml-alert__icon-empty"],["src","assets/banner-correct.svg","alt","",1,"quml-alert__banner"],[1,"quml-alert__image","quml-alert__image--wrong"],["src","assets/quml-wrong.svg","alt","Wrong Answer",1,"quml-alert__icon"],["src","assets/banner-wrong.svg","alt","",1,"quml-alert__banner"],[1,"quml-alert__try-again"],["tabindex","0","id","wrongButton","aria-label","Try again",3,"click","keyup.enter",4,"ngIf"],["tabindex","0","id","correctButton","aria-label","View Solution",3,"click","keyup.enter",4,"ngIf"],["tabindex","0","id","wrongButton","aria-label","Try again",3,"click","keyup.enter"],["tabindex","0","id","correctButton","aria-label","View Solution",3,"click","keyup.enter"],[1,"quml-alert__view-hint","quml-alert__view-hint--disabled"],["tabindex","0","id","hintButton","src","assets/view-hint.svg","alt","View Hint logo",1,"view-hint-icon",3,"click","keyup.enter"]],template:function(m,h){1&m&&(t.TgZ(0,"div",0)(1,"div",1),t.NdJ("click",function(){return h.close("close")})("keyup.enter",function(){return h.close("close")}),t.qZA(),t.TgZ(2,"div",2)(3,"div",3),t.YNc(4,Ql,5,0,"div",4),t.YNc(5,w2,5,0,"div",5),t.TgZ(6,"div",6),t.YNc(7,L5,3,2,"div",7),t.qZA(),t.YNc(8,p1,2,0,"div",8),t.qZA()()()),2&m&&(t.xp6(4),t.Q6J("ngIf","correct"===h.alertType),t.xp6(1),t.Q6J("ngIf","wrong"===h.alertType),t.xp6(2),t.Q6J("ngIf","wrong"===h.alertType||"correct"===h.alertType&&h.showSolutionButton),t.xp6(1),t.Q6J("ngIf",h.isHintAvailable))},dependencies:[tt.O5],styles:[":root{--quml-color-primary:#FFD555;--quml-color-primary-rgba:#f6bc42;--quml-color-primary-shade:rgba(0, 0, 0, .1);--quml-color-tertiary:#FA6400;--quml-color-tertiary-rgba:rgba(250, 100, 0, 0.6);--quml-color-rgba:rgba(0, 0, 0, .6)}.quml-alert__overlay[_ngcontent-%COMP%]{position:absolute;width:100%;height:100%;top:0;left:0}.quml-alert__container[_ngcontent-%COMP%]{position:absolute;bottom:.75rem;height:5.625rem;left:0;right:0;border-radius:.5rem;box-shadow:0 .125rem .875rem 0 var(-quml-color-primary-shade);padding:.5rem 1.5rem .5rem .5rem;-webkit-animation-name:example;animation-name:example;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-duration:.3s;animation-duration:.4s;margin:0 auto .5rem;width:23.25rem;background:linear-gradient(145deg,var(--quml-color-primary),var(--quml-color-primary) 60%,var(--quml-color-primary-rgba) 60%);z-index:1}@media only screen and (max-width:480px){.quml-alert__container[_ngcontent-%COMP%]{position:absolute;bottom:3.75rem;border-radius:.5rem;background-color:var(--white);box-shadow:0 .125rem .875rem 0 var(-quml-color-primary-shade);width:21.75rem;padding:.5rem}}.quml-alert__body[_ngcontent-%COMP%]{display:flex;align-items:center;position:relative;height:100%}.quml-alert__image[_ngcontent-%COMP%]{position:relative;height:100%;width:7.625rem;overflow:hidden}.quml-alert__icon-container[_ngcontent-%COMP%]{background:var(--white);border-radius:.5rem;position:absolute;width:4.5rem;z-index:1;height:4rem;left:0;right:0;margin:0 auto;bottom:-54px;-webkit-animation:.2s ease-out .3s forwards sign-board-animation;animation:.2s ease-out .3s forwards sign-board-animation}.quml-alert__icon-empty[_ngcontent-%COMP%]{position:absolute;background:var(--quml-color-primary);width:7.625rem;z-index:2;height:1.25rem;margin:0 auto;bottom:0}.quml-alert__icon[_ngcontent-%COMP%]{position:absolute;top:15%;left:0;width:1.75rem;height:1.75rem;right:0;margin:0 auto;-webkit-animation:.1s ease-out .7s forwards correct-button-anim;animation:.1s ease-out .7s forwards correct-button-anim}.quml-alert__banner[_ngcontent-%COMP%]{position:absolute;bottom:0;z-index:3;height:2.1875rem}.quml-alert__solution-container[_ngcontent-%COMP%]{display:flex;align-items:center;justify-content:center;width:calc(100% - 122px)}.quml-alert__try-again[_ngcontent-%COMP%], .quml-alert__view-solution[_ngcontent-%COMP%]{line-height:normal;cursor:pointer;background:var(--white);padding:.5rem 1rem;border-radius:1rem;font-size:.75rem;color:var(--quml-color-tertiary);box-shadow:0 .125rem .875rem 0 var(--quml-color-tertiary-rgba);margin-left:.5rem}.quml-alert__view-hint[_ngcontent-%COMP%]{width:2rem;height:2rem;margin-left:auto;background:var(--white);border-radius:50%;box-shadow:0 .375rem 1rem -.4375rem var(--quml-color-rgba);position:relative}.quml-alert__view-hint--disabled[_ngcontent-%COMP%]{opacity:.6}.quml-alert__try-again[_ngcontent-%COMP%], .quml-alert__view-hint[_ngcontent-%COMP%]{cursor:pointer;text-transform:capitalize}@-webkit-keyframes sign-board-animation{from{visibility:hidden;transform:translateY(0)}to{visibility:visible;transform:translateY(-80%)}}@keyframes sign-board-animation{from{visibility:hidden;transform:translateY(0)}to{visibility:visible;transform:translateY(-100%)}}@-webkit-keyframes correct-button-anim{from{visibility:hidden;transform:scale(.2)}to{visibility:visible;-khtml-transform:scale(1.1);transform:scale(1.1)}}@keyframes correct-button-anim{from{visibility:hidden;transform:scale(.2)}to{visibility:visible;-khtml-transform:scale(1.1);transform:scale(1.1)}}@-webkit-keyframes example{from{margin-bottom:-50px}to{margin-bottom:8px}}@keyframes example{from{margin-bottom:-50px}to{margin-bottom:8px}}"]}),y1.propDecorators={alertType:[{type:t.IIB}],isHintAvailable:[{type:t.IIB}],showSolutionButton:[{type:t.IIB}],closeAlert:[{type:t.r_U}],showSolution:[{type:t.r_U}],showHint:[{type:t.r_U}],onKeydownHandler:[{type:t.L6J,args:["document:keydown.escape",["$event"]]}]};class Q1{constructor(){}ngOnInit(){}}Q1.\u0275fac=function(m){return new(m||Q1)},Q1.\u0275cmp=t.Xpm({type:Q1,selectors:[["quml-close"]],decls:9,vars:0,consts:[["width","100%","height","100%","viewBox","0 0 24 24","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","PDF-Player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","pdf-portrait-pop","transform","translate(-320.000000, -397.000000)"],["id","Group-18-Copy","transform","translate(0.000000, 381.000000)"],["id","Icon-24px","transform","translate(320.000000, 16.000000)"],["id","Shape","fill","#000000","points","19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12"],["id","Shape","points","0 0 24 0 24 24 0 24"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"Icon 24px"),t.qZA(),t.TgZ(3,"g",1)(4,"g",2)(5,"g",3)(6,"g",4),t._UZ(7,"polygon",5)(8,"polygon",6),t.qZA()()()()())}}),Q1.ctorParameters=()=>[];class bl{constructor(){this.close=new t.vpe}closeSolution(){this.solutionVideoPlayer&&this.solutionVideoPlayer.nativeElement.pause(),this.close.emit({close:!0})}}bl.\u0275fac=function(m){return new(m||bl)},bl.\u0275cmp=t.Xpm({type:bl,selectors:[["quml-mcq-solutions"]],viewQuery:function(m,h){if(1&m&&t.Gf(D5,7),2&m){let H;t.iGM(H=t.CRH())&&(h.solutionVideoPlayer=H.first)}},inputs:{question:"question",options:"options",solutions:"solutions"},outputs:{close:"close"},decls:15,vars:5,consts:[[1,"solutions"],["role","button","tabindex","0","aria-label","Close",1,"close-icon",3,"click","keydown.enter"],["tabindex","-1"],[1,"solution-header"],[3,"innerHtml"],[1,"solution-options-container"],["class","solution-options",4,"ngFor","ngForOf"],[4,"ngIf"],[1,"scoreboard-button-container"],["type","submit",1,"sb-btn","sb-btn-primary","sb-btn-normal","sb-btn-radius",3,"click"],[1,"solution-options"],[4,"ngFor","ngForOf"],[3,"ngSwitch"],[3,"innerHtml",4,"ngSwitchCase"],["class","video-container",4,"ngSwitchCase"],[4,"ngSwitchCase"],[1,"video-container"],["width","400","controls","",3,"poster"],["solutionVideoPlayer",""],["type","video/mp4",3,"src"],["type","video/webm",3,"src"],["alt","mcq option with image",3,"src"]],template:function(m,h){1&m&&(t.TgZ(0,"div",0)(1,"div",1),t.NdJ("click",function(){return h.closeSolution()})("keydown.enter",function(){return h.closeSolution()}),t._UZ(2,"quml-close",2),t.qZA(),t.TgZ(3,"div",3),t._uU(4,"Question"),t.qZA(),t._UZ(5,"div",4),t.ALo(6,"safeHtml"),t.TgZ(7,"div",3),t._uU(8,"Options"),t.qZA(),t.TgZ(9,"div",5),t.YNc(10,x2,3,3,"div",6),t.qZA(),t.YNc(11,P5,4,1,"ng-container",7),t.TgZ(12,"div",8)(13,"button",9),t.NdJ("click",function(){return h.closeSolution()}),t._uU(14,"Done"),t.qZA()()()),2&m&&(t.xp6(5),t.Q6J("innerHtml",t.lcZ(6,3,h.question),t.oJD),t.xp6(5),t.Q6J("ngForOf",h.options),t.xp6(1),t.Q6J("ngIf",h.solutions&&h.solutions.length))},dependencies:function(){return[tt.sg,tt.O5,tt.RF,tt.n9,Q1,la]},styles:[":root{--quml-close-icon:#000}.solutions[_ngcontent-%COMP%]{top:0;left:0;width:100%;height:100%;padding:1rem;overflow:auto}.solution-header[_ngcontent-%COMP%]{color:var(--gray-800);font-size:.875rem;font-weight:700;margin:1rem 0;clear:both}.close-icon[_ngcontent-%COMP%]{float:right;cursor:pointer;width:3rem;height:3rem;border-radius:50%;padding:.25rem}.close-icon[_ngcontent-%COMP%]:hover{background:rgba(0,0,0,.15)}.close-icon[_ngcontent-%COMP%]:hover quml-close[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] polygon#Shape[_ngcontent-%COMP%]{fill:var(--white)}.close-icon[_ngcontent-%COMP%] quml-close[_ngcontent-%COMP%]{display:flex;align-items:center;justify-content:center}.close-icon[_ngcontent-%COMP%] quml-close[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] g[_ngcontent-%COMP%] polygon[_ngcontent-%COMP%]:first-child{fill:var(--quml-close-icon)}.video-container[_ngcontent-%COMP%]{text-align:center;margin:.5rem auto}.scoreboard-button-container[_ngcontent-%COMP%]{text-align:center;clear:both;margin:1rem 0}.solution-options-container[_ngcontent-%COMP%]{display:flex;align-items:flex-start;flex-direction:column}.solution-options-container[_ngcontent-%COMP%] .solution-options[_ngcontent-%COMP%]{margin-bottom:.5rem}"]}),bl.propDecorators={question:[{type:t.IIB}],options:[{type:t.IIB}],solutions:[{type:t.IIB}],close:[{type:t.r_U}],solutionVideoPlayer:[{type:t.i9L,args:["solutionVideoPlayer",{static:!0}]}]};class Is{constructor(){}ngOnInit(){}}Is.\u0275fac=function(m){return new(m||Is)},Is.\u0275cmp=t.Xpm({type:Is,selectors:[["quml-durationtimer"]],decls:6,vars:0,consts:[["width","10px","height","16px","viewBox","0 0 10 16","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","timer/active","transform","translate(-8.000000, -2.000000)","fill","#6D7278"],["d","M8,2 L8,6.8 L8.008,6.8 L8,6.808 L11.2,10 L8,13.2 L8.008,13.208 L8,13.208 L8,18 L17.6,18 L17.6,13.208 L17.592,13.208 L17.6,13.2 L14.4,10 L17.6,6.808 L17.592,6.8 L17.6,6.8 L17.6,2 L8,2 L8,2 Z M16,13.6 L16,16.4 L9.6,16.4 L9.6,13.6 L12.8,10.4 L16,13.6 L16,13.6 Z M12.8,9.6 L9.6,6.4 L9.6,3.6 L16,3.6 L16,6.4 L12.8,9.6 L12.8,9.6 Z","id","Shape"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"Shape"),t.qZA(),t.TgZ(3,"g",1)(4,"g",2),t._UZ(5,"path",3),t.qZA()()())}}),Is.ctorParameters=()=>[];class Ml{constructor(){}ngOnInit(){}}Ml.\u0275fac=function(m){return new(m||Ml)},Ml.\u0275cmp=t.Xpm({type:Ml,selectors:[["quml-audio"]],decls:16,vars:0,consts:[["width","36px","height","36px","viewBox","0 0 36 36","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","path-1","x","0","y","0","width","36","height","36","rx","18"],["x","-4.2%","y","-4.2%","width","108.3%","height","108.3%","filterUnits","objectBoundingBox","id","filter-2"],["stdDeviation","1","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","-1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0","type","matrix","in","shadowInnerInner1"],["id","audio-play","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Rectangle-5-Copy-2","fill-rule","nonzero"],["fill","#FFFFFF",0,"xlink","href","#path-1"],["fill-opacity","1","filter","url(#filter-2)",0,"xlink","href","#path-1"],["stroke-opacity","0.484156469","stroke","#C3C8DB","stroke-width","2","stroke-linejoin","square","x","1","y","1","width","34","height","34","rx","17"],["d","M19.483871,8.64533333 C23.6232258,9.616 26.7096774,13.4346667 26.7096774,18 C26.7096774,22.5653333 23.6232258,26.384 19.483871,27.3546667 L19.483871,27.3546667 L19.483871,25.1573333 C22.4670968,24.24 24.6451613,21.3813333 24.6451613,18 C24.6451613,14.6186667 22.4670968,11.76 19.483871,10.8426667 L19.483871,10.8426667 Z M17.4193548,9.46666667 L17.4193548,26.5333333 L12.2580645,21.2 L8.12903226,21.2 L8.12903226,14.8 L12.2580645,14.8 L17.4193548,9.46666667 Z M19.483871,13.7013333 C21.0116129,14.4906667 22.0645161,16.112 22.0645161,18 C22.0645161,19.888 21.0116129,21.5093333 19.483871,22.288 L19.483871,22.288 Z","id","Combined-Shape","fill","#6D7278"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"audio play"),t.qZA(),t.TgZ(3,"defs"),t._UZ(4,"rect",1),t.TgZ(5,"filter",2),t._UZ(6,"feGaussianBlur",3)(7,"feOffset",4)(8,"feComposite",5)(9,"feColorMatrix",6),t.qZA()(),t.TgZ(10,"g",7)(11,"g",8),t._UZ(12,"use",9)(13,"use",10)(14,"rect",11),t.qZA(),t._UZ(15,"path",12),t.qZA()())}}),Ml.ctorParameters=()=>[];class K1{constructor(){}ngOnInit(){}}K1.\u0275fac=function(m){return new(m||K1)},K1.\u0275cmp=t.Xpm({type:K1,selectors:[["quml-wrong"]],decls:11,vars:0,consts:[["width","48px","height","48px","viewBox","0 0 48 48","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["x1","0%","y1","0%","x2","101.719666%","y2","100%","id","linearGradient-1"],["stop-color","#F1635D","offset","0%"],["stop-color","#F97A74","offset","100%"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","wrong"],["id","Oval","fill","#f77f79","fill-rule","nonzero","opacity","0.900000036","cx","24","cy","24","r","24"],["id","Shape","fill","#fff","points","36.0349854 14.4171429 33.6107955 12 24 21.5828571 14.3892045 12 11.9650146 14.4171429 21.5758101 24 11.9650146 33.5828571 14.3892045 36 24 26.4171429 33.6107955 36 36.0349854 33.5828571 26.4241899 24"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"wrong"),t.qZA(),t.TgZ(3,"defs")(4,"linearGradient",1),t._UZ(5,"stop",2)(6,"stop",3),t.qZA()(),t.TgZ(7,"g",4)(8,"g",5),t._UZ(9,"circle",6)(10,"polygon",7),t.qZA()()())}}),K1.ctorParameters=()=>[];class Y1{constructor(){}ngOnInit(){}}Y1.\u0275fac=function(m){return new(m||Y1)},Y1.\u0275cmp=t.Xpm({type:Y1,selectors:[["quml-menu"]],decls:6,vars:0,consts:[["width","18px","height","12px","viewBox","0 0 18 12","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","icon/menu","fill","#333333"],["d","M0,12 L18,12 L18,10 L0,10 L0,12 L0,12 Z M0,7 L18,7 L18,5 L0,5 L0,7 L0,7 Z M0,0 L0,2 L18,2 L18,0 L0,0 L0,0 Z","id","Shape"]],template:function(m,h){1&m&&(t.O4$(),t.TgZ(0,"svg",0)(1,"title"),t._uU(2,"Shape"),t.qZA(),t.TgZ(3,"g",1)(4,"g",2),t._UZ(5,"path",3),t.qZA()()())}}),Y1.ctorParameters=()=>[];class la{constructor(m){this.sanitized=m}transform(m){return this.sanitized.bypassSecurityTrustHtml(m)}}la.\u0275fac=function(m){return new(m||la)(t.Y36(tn.H7,16))},la.\u0275pipe=t.Yjl({name:"safeHtml",type:la,pure:!0}),la.ctorParameters=()=>[{type:tn.H7}];class Ra{constructor(m,h,H,ee,Ue){this.viewerService=m,this.utilService=h,this.questionCursor=H,this.cdRef=ee,this.errorService=Ue,this.sectionIndex=0,this.playerEvent=new t.vpe,this.sectionEnd=new t.vpe,this.showScoreBoard=new t.vpe,this.destroy$=new Ec.xQ,this.loadView=!1,this.showContentError=!1,this.noOfTimesApiCalled=0,this.currentSlideIndex=0,this.showStartPage=!0,this.questions=[],this.progressBarClass=[],this.tryAgainClicked=!1,this.carouselConfig={NEXT:1,PREV:2},this.active=!1,this.showQuestions=!1,this.showZoomModal=!1,this.imageZoomCount=100,this.showRootInstruction=!0,this.slideDuration=0,this.isAssessEventRaised=!1}ngOnChanges(m){m&&Object.values(m)[0].firstChange&&this.subscribeToEvents(),this.setConfig()}ngAfterViewInit(){this.viewerService.raiseStartEvent(0),this.viewerService.raiseHeartBeatEvent(Vi_startPageLoaded,"impression",0)}subscribeToEvents(){this.viewerService.qumlPlayerEvent.asObservable().pipe(vo(this.destroy$)).subscribe(m=>{this.playerEvent.emit(m)}),this.viewerService.qumlQuestionEvent.pipe(vo(this.destroy$)).subscribe(m=>{var h,H,ee,Ue;if(null!==(h=m)&&void 0!==h&&h.error){const{traceId:Lt}=null===(H=this.sectionConfig)||void 0===H?void 0:H.config;return navigator.onLine&&this.viewerService.isAvailableLocally?this.viewerService.raiseExceptionLog(Gi.uY.contentLoadFails,Gi.N3.contentLoadFails,new Error(Gi.N3.contentLoadFails),Lt):this.viewerService.raiseExceptionLog(Gi.uY.internetConnectivity,Gi.N3.internetConnectivity,new Error(Gi.N3.internetConnectivity),Lt),void(this.showContentError=!0)}if(null===(ee=m)||void 0===ee||!ee.questions)return;const mt=Zi(this.questions,m.questions,"identifier");this.questions=Da(this.questions.concat(mt),"identifier"),this.sortQuestions(),this.viewerService.updateSectionQuestions(this.sectionConfig.metadata.identifier,this.questions),this.cdRef.detectChanges(),this.noOfTimesApiCalled++,this.loadView=!0,this.currentSlideIndex>0&&this.myCarousel&&(this.myCarousel.selectSlide(this.currentSlideIndex),this.questions[this.currentSlideIndex-1]&&(this.currentQuestionsMedia=null===(Ue=this.questions[this.currentSlideIndex-1])||void 0===Ue?void 0:Ue.media,this.setImageZoom(),this.highlightQuestion())),0===this.currentSlideIndex&&(this.showStartPage?this.active=0===this.sectionIndex:setTimeout(()=>{this.nextSlide()})),this.removeAttribute()})}setConfig(){var m,h,H,ee,Ue,mt,Lt,Cn,ii,ri,yi,jn,Yi,dn,_r,Ji,xi,ua,ca,Xa,ar,Ls,$1,Vs;this.noOfTimesApiCalled=0,this.currentSlideIndex=0,this.active=0===this.currentSlideIndex&&0===this.sectionIndex&&this.showStartPage,this.myCarousel&&this.myCarousel.selectSlide(this.currentSlideIndex),this.threshold=(null===(m=this.sectionConfig.context)||void 0===m?void 0:m.threshold)||3,this.questionIds=fa(this.sectionConfig.metadata.childNodes),this.parentConfig.isReplayed&&(this.initializeTimer=!0,this.viewerService.raiseStartEvent(0),this.viewerService.raiseHeartBeatEvent(Vi_startPageLoaded,"impression",0),this.disableNext=!1,this.currentSlideIndex=0,this.myCarousel.selectSlide(0),this.showRootInstruction=!0,this.currentQuestionsMedia=(0,tr.Z)(this.questions[0],"media"),this.setImageZoom(),this.loadView=!0,this.removeAttribute(),setTimeout(()=>{const Ws=document.querySelector("#overlay-button");Ws&&Ws.focus()},200));const za=this.sectionConfig.metadata.maxQuestions;za&&(this.questionIds=this.questionIds.slice(0,za)),this.noOfQuestions=this.questionIds.length,this.viewerService.initialize(this.sectionConfig,this.threshold,this.questionIds,this.parentConfig),this.checkCompatibilityLevel(this.sectionConfig.metadata.compatibilityLevel),this.timeLimit=(null===(H=null===(h=this.sectionConfig.metadata)||void 0===h?void 0:h.timeLimits)||void 0===H?void 0:H.maxTime)||0,this.warningTime=(null===(Ue=null===(ee=this.sectionConfig.metadata)||void 0===ee?void 0:ee.timeLimits)||void 0===Ue?void 0:Ue.warningTime)||0,this.showTimer="no"!==(null===(Lt=null===(mt=this.sectionConfig.metadata)||void 0===mt?void 0:mt.showTimer)||void 0===Lt?void 0:Lt.toLowerCase()),null!==(Cn=this.sectionConfig.metadata)&&void 0!==Cn&&Cn.showFeedback?this.showFeedBack="no"!==(null===(ri=null===(ii=this.sectionConfig.metadata)||void 0===ii?void 0:ii.showFeedback)||void 0===ri?void 0:ri.toLowerCase()):this.showFeedBack=this.parentConfig.showFeedback,this.showUserSolution="no"!==(null===(jn=null===(yi=this.sectionConfig.metadata)||void 0===yi?void 0:yi.showSolutions)||void 0===jn?void 0:jn.toLowerCase()),this.startPageInstruction=(null===(dn=null===(Yi=this.sectionConfig.metadata)||void 0===Yi?void 0:Yi.instructions)||void 0===dn?void 0:dn.default)||this.parentConfig.instructions,this.linearNavigation="non-linear"!==this.sectionConfig.metadata.navigationMode,this.showHints="no"!==(null===(Ji=null===(_r=this.sectionConfig.metadata)||void 0===_r?void 0:_r.showHints)||void 0===Ji?void 0:Ji.toLowerCase()),this.points=null===(xi=this.sectionConfig.metadata)||void 0===xi?void 0:xi.points,this.allowSkip="no"!==(null===(ca=null===(ua=this.sectionConfig.metadata)||void 0===ua?void 0:ua.allowSkip)||void 0===ca?void 0:ca.toLowerCase()),this.showStartPage="no"!==(null===(ar=null===(Xa=this.sectionConfig.metadata)||void 0===Xa?void 0:Xa.showStartPage)||void 0===ar?void 0:ar.toLowerCase()),this.progressBarClass=this.parentConfig.isSectionsAvailable?null===(Ls=this.mainProgressBar.find(Ws=>Ws.isActive))||void 0===Ls?void 0:Ls.children:this.mainProgressBar,this.progressBarClass&&this.progressBarClass.forEach(Ws=>Ws.showFeedback=this.showFeedBack),this.questions=this.viewerService.getSectionQuestions(this.sectionConfig.metadata.identifier),this.sortQuestions(),this.viewerService.updateSectionQuestions(this.sectionConfig.metadata.identifier,this.questions),this.resetQuestionState(),this.jumpToQuestion?this.goToQuestion(this.jumpToQuestion):1===this.threshold?this.viewerService.getQuestion():this.threshold>1&&this.viewerService.getQuestions(),!(null===(Vs=null===($1=this.sectionConfig.metadata)||void 0===$1?void 0:$1.children)||void 0===Vs)&&Vs.length||(this.loadView=!0,this.disableNext=!0),this.initializeTimer||(this.initializeTimer=!0),this.initialTime=this.initialSlideDuration=(new Date).getTime()}removeAttribute(){setTimeout(()=>{const m=document.querySelector(".carousel.slide");m&&m.removeAttribute("tabindex")},100)}sortQuestions(){if(this.questions.length&&this.questionIds.length){const m=[];this.questionIds.forEach(h=>{const H=this.questions.find(ee=>ee.identifier===h);H&&m.push(H)}),this.questions=m}}createSummaryObj(){var m,h,H,ee,Ue,mt,Lt,Cn;const ii=ia(this.progressBarClass,"class");return{skipped:(null===(h=null===(m=ii)||void 0===m?void 0:m.skipped)||void 0===h?void 0:h.length)||0,correct:(null===(ee=null===(H=ii)||void 0===H?void 0:H.correct)||void 0===ee?void 0:ee.length)||0,wrong:(null===(mt=null===(Ue=ii)||void 0===Ue?void 0:Ue.wrong)||void 0===mt?void 0:mt.length)||0,partial:(null===(Cn=null===(Lt=ii)||void 0===Lt?void 0:Lt.partial)||void 0===Cn?void 0:Cn.length)||0}}nextSlide(){if(this.currentQuestionsMedia=(0,tr.Z)(this.questions[this.currentSlideIndex],"media"),this.getQuestion(),this.viewerService.raiseHeartBeatEvent(Vi_nextClicked,Ni_interact,this.myCarousel.getCurrentSlideIndex()+1),this.viewerService.raiseHeartBeatEvent(Vi_nextClicked,Ni_impression,this.myCarousel.getCurrentSlideIndex()+1),this.currentSlideIndex!==this.questions.length&&(this.currentSlideIndex=this.currentSlideIndex+1),(this.myCarousel.isLast(this.myCarousel.getCurrentSlideIndex())||this.noOfQuestions===this.myCarousel.getCurrentSlideIndex())&&this.calculateScore(),this.myCarousel.getCurrentSlideIndex()>0&&"MCQ"===this.questions[this.myCarousel.getCurrentSlideIndex()-1].qType&&this.currentOptionSelected){const m=this.currentOptionSelected&&this.currentOptionSelected.option?this.currentOptionSelected.option:void 0,h=this.questions[this.myCarousel.getCurrentSlideIndex()-1].identifier,H=this.questions[this.myCarousel.getCurrentSlideIndex()-1].qType;this.viewerService.raiseResponseEvent(h,H,m)}if(this.questions[this.myCarousel.getCurrentSlideIndex()]&&this.setSkippedClass(this.myCarousel.getCurrentSlideIndex()),this.myCarousel.getCurrentSlideIndex()===this.noOfQuestions)return this.clearTimeInterval(),void this.emitSectionEnd();this.myCarousel.move(this.carouselConfig.NEXT),this.setImageZoom(),this.resetQuestionState(),this.clearTimeInterval()}prevSlide(){this.disableNext=!1,this.currentSolutions=void 0,this.viewerService.raiseHeartBeatEvent(Vi_prevClicked,Ni_interact,this.myCarousel.getCurrentSlideIndex()-1),this.showAlert=!1,this.currentSlideIndex!==this.questions.length&&(this.currentSlideIndex=this.currentSlideIndex+1),this.myCarousel.getCurrentSlideIndex()+1===this.noOfQuestions&&this.endPageReached?this.endPageReached=!1:this.myCarousel.move(this.carouselConfig.PREV),this.currentSlideIndex=this.myCarousel.getCurrentSlideIndex(),this.active=0===this.currentSlideIndex&&0===this.sectionIndex&&this.showStartPage,this.currentQuestionsMedia=(0,tr.Z)(this.questions[this.myCarousel.getCurrentSlideIndex()-1],"media"),this.setImageZoom(),this.setSkippedClass(this.myCarousel.getCurrentSlideIndex()-1)}getQuestion(){this.myCarousel.getCurrentSlideIndex()>0&&this.threshold*this.noOfTimesApiCalled-1===this.myCarousel.getCurrentSlideIndex()&&this.threshold*this.noOfTimesApiCalled>=this.questions.length&&this.threshold>1&&this.viewerService.getQuestions(),this.myCarousel.getCurrentSlideIndex()>0&&void 0===this.questions[this.myCarousel.getCurrentSlideIndex()]&&this.threshold>1&&this.viewerService.getQuestions(),1===this.threshold&&this.myCarousel.getCurrentSlideIndex()>=0&&this.viewerService.getQuestion()}resetQuestionState(){this.active=!1,this.showAlert=!1,this.optionSelectedObj=void 0,this.currentOptionSelected=void 0,this.currentQuestion=void 0,this.currentOptions=void 0,this.currentSolutions=void 0}activeSlideChange(m){this.initialSlideDuration=(new Date).getTime(),this.isAssessEventRaised=!1;const h=document.querySelector("li.progressBar-border"),H=document.querySelector(".lanscape-mode-right");H&&h&&!this.parentConfig.isReplayed&&this.utilService.scrollParentToChild(H,h)}nextSlideClicked(m){var h;if(!this.showRootInstruction||!this.parentConfig.isSectionsAvailable)return 0===this.myCarousel.getCurrentSlideIndex()?this.nextSlide():void("next"===(null===(h=m)||void 0===h?void 0:h.type)&&this.validateSelectedOption(this.optionSelectedObj,"next"));this.showRootInstruction=!1}previousSlideClicked(m){if("previous clicked"===m.event)if(this.optionSelectedObj&&this.showFeedBack)this.stopAutoNavigation=!1,this.validateSelectedOption(this.optionSelectedObj,"previous");else{if(this.stopAutoNavigation=!0,0===this.currentSlideIndex&&this.parentConfig.isSectionsAvailable&&this.getCurrentSectionIndex()>0){const h=this.mainProgressBar[this.getCurrentSectionIndex()-1].identifier;return void this.jumpToSection(h)}this.prevSlide()}}getCurrentSectionIndex(){const m=this.sectionConfig.metadata.identifier;return this.mainProgressBar.findIndex(h=>h.identifier===m)}goToSlideClicked(m,h){var H;null!==(H=this.progressBarClass)&&void 0!==H&&H.length?(m.stopPropagation(),this.active=!1,this.jumpSlideIndex=h,this.optionSelectedObj&&this.showFeedBack?(this.stopAutoNavigation=!1,this.validateSelectedOption(this.optionSelectedObj,"jump")):(this.stopAutoNavigation=!0,this.goToSlide(this.jumpSlideIndex))):0===h&&(this.jumpSlideIndex=0,this.goToSlide(this.jumpSlideIndex))}onEnter(m,h){13===m.keyCode&&(m.stopPropagation(),this.goToSlideClicked(m,h))}jumpToSection(m){this.showRootInstruction=!1,this.emitSectionEnd(!1,m)}onSectionEnter(m,h){13===m.keyCode&&(m.stopPropagation(),this.optionSelectedObj&&this.validateSelectedOption(this.optionSelectedObj,"jump"),this.jumpToSection(h))}onScoreBoardClicked(){this.viewerService.updateSectionQuestions(this.sectionConfig.metadata.identifier,this.questions),this.showScoreBoard.emit()}onScoreBoardEnter(m){m.stopPropagation(),"Enter"===m.key&&this.onScoreBoardClicked()}focusOnNextButton(){setTimeout(()=>{const m=document.querySelector(".quml-navigation__next");m&&m.focus()},100)}getOptionSelected(m){var h;if(JSON.stringify(this.currentOptionSelected)===JSON.stringify(m))return;this.focusOnNextButton(),this.active=!0,this.currentOptionSelected=m;const H=this.myCarousel.getCurrentSlideIndex()-1;this.viewerService.raiseHeartBeatEvent(Vi_optionClicked,Ni_interact,this.myCarousel.getCurrentSlideIndex()),(0,To.Z)(null===(h=m)||void 0===h?void 0:h.option)?(this.optionSelectedObj=void 0,this.currentSolutions=void 0,this.updateScoreBoard(H,"skipped")):(this.optionSelectedObj=m,this.isAssessEventRaised=!1,this.currentSolutions=(0,To.Z)(m.solutions)?void 0:m.solutions),this.media=this.questions[this.myCarousel.getCurrentSlideIndex()-1].media,this.currentSolutions&&this.currentSolutions.forEach((ee,Ue)=>{"video"===ee.type&&this.media.forEach(mt=>{mt.id===this.currentSolutions[Ue].value&&(this.currentSolutions[Ue].type="video",this.currentSolutions[Ue].src=mt.src,this.currentSolutions[Ue].thumbnail=mt.thumbnail)})}),this.showFeedBack||this.validateSelectedOption(this.optionSelectedObj)}durationEnds(){this.showSolution=!1,this.showAlert=!1,this.emitSectionEnd(!0)}checkCompatibilityLevel(m){var h,H;if(m){const ee=this.errorService.checkContentCompatibility(m);ee.isCompitable||this.viewerService.raiseExceptionLog(Gi.uY.contentCompatibility,Gi.N3.contentCompatibility,ee.error,null===(H=null===(h=this.sectionConfig)||void 0===h?void 0:h.config)||void 0===H?void 0:H.traceId)}}emitSectionEnd(m=!1,h){const H={summary:this.createSummaryObj(),score:this.calculateScore(),durationSpent:this.utilService.getTimeSpentText(this.initialTime),slideIndex:this.myCarousel.getCurrentSlideIndex(),isDurationEnded:m};h&&(H.jumpToSection=h),this.viewerService.updateSectionQuestions(this.sectionConfig.metadata.identifier,this.questions),this.sectionEnd.emit(H)}closeAlertBox(m){var h,H;"close"===(null===(h=m)||void 0===h?void 0:h.type)?this.viewerService.raiseHeartBeatEvent(Vi_closedFeedBack,Ni_interact,this.myCarousel.getCurrentSlideIndex()):"tryAgain"===(null===(H=m)||void 0===H?void 0:H.type)&&(this.tryAgainClicked=!0,setTimeout(()=>{this.tryAgainClicked=!1},2e3),this.viewerService.raiseHeartBeatEvent(Vi_tryAgain,Ni_interact,this.myCarousel.getCurrentSlideIndex())),this.showAlert=!1}setSkippedClass(m){this.progressBarClass&&"unattempted"===(0,tr.Z)(this.progressBarClass[m],"class")&&(this.progressBarClass[m].class="skipped")}toggleScreenRotate(m){this.viewerService.raiseHeartBeatEvent(Vi_deviceRotationClicked,Ni_interact,this.myCarousel.getCurrentSlideIndex()+1)}validateSelectedOption(m,h){var H,ee,Ue;const mt=null===(ee=null===(H=m)||void 0===H?void 0:H.option)||void 0===ee?void 0:ee.value,Lt=this.myCarousel.getCurrentSlideIndex()-1,Cn=!this.optionSelectedObj&&this.allowSkip&&"MCQ"===this.utilService.getQuestionType(this.questions,Lt),ii="SA"===this.utilService.getQuestionType(this.questions,Lt),ri=this.startPageInstruction&&0===this.myCarousel.getCurrentSlideIndex(),yi=!this.optionSelectedObj&&this.active,jn=this.questions[Lt],Yi=jn.responseDeclaration?this.utilService.getKeyValue(Object.keys(jn.responseDeclaration)):"";this.slideDuration=Math.round(((new Date).getTime()-this.initialSlideDuration)/1e3);const _r={id:jn.identifier,title:jn.name,desc:jn.description,type:jn.qType.toLowerCase(),maxscore:0===Yi.length?0:jn.responseDeclaration[Yi].maxScore||0,params:"MCQ"===jn.qType.toUpperCase()&&(null===(xi=null===(Ji=jn)||void 0===Ji?void 0:Ji.editorState)||void 0===xi?void 0:xi.options)?jn.editorState.options:"MCQ"!==jn.qType.toUpperCase()||(0,To.Z)(null===(ua=jn)||void 0===ua?void 0:ua.editorState)?[]:[null===(ca=jn)||void 0===ca?void 0:ca.editorState]};var Ji,xi,ua,ca;if(_r&&this.parentConfig.isSectionsAvailable&&(_r.sectionId=this.sectionConfig.metadata.identifier),!this.optionSelectedObj&&!this.isAssessEventRaised&&"SA"!==jn.qType.toUpperCase()&&(this.isAssessEventRaised=!0,this.viewerService.raiseAssesEvent(_r,Lt+1,"No",0,[],this.slideDuration)),this.optionSelectedObj){if(this.currentQuestion=jn.body,this.currentOptions=jn.interactions[Yi].options,"single"===m.cardinality){const Ji=Number(jn.responseDeclaration[Yi].correctResponse.value);if(this.showAlert=!0,(null===(Ue=m.option)||void 0===Ue?void 0:Ue.value)===Ji){const xi=this.getScore(Lt,Yi,!0);this.isAssessEventRaised||(this.isAssessEventRaised=!0,this.viewerService.raiseAssesEvent(_r,Lt+1,"Yes",xi,[m.option],this.slideDuration)),this.alertType="correct",this.showFeedBack&&this.correctFeedBackTimeOut(h),this.updateScoreBoard(Lt,"correct",void 0,xi)}else{const xi=this.getScore(Lt,Yi,!1,m);this.alertType="wrong";const ua="partial"===this.progressBarClass[Lt].class?"partial":"wrong";this.updateScoreBoard(Lt,ua,mt,xi),this.isAssessEventRaised||(this.isAssessEventRaised=!0,this.viewerService.raiseAssesEvent(_r,Lt+1,"No",0,[m.option],this.slideDuration))}}if("multiple"===m.cardinality){const Ji=this.questions[Lt].responseDeclaration,xi=this.utilService.getMultiselectScore(m.option,Ji);this.showAlert=!0,0===xi?(this.alertType="wrong",this.updateScoreBoard(Lt+1,"wrong")):(this.updateScoreBoard(Lt+1,"correct",void 0,xi),this.showFeedBack&&this.correctFeedBackTimeOut(h),this.alertType="correct")}this.optionSelectedObj=void 0}else Cn||ii||ri||yi?this.nextSlide():(this.startPageInstruction&&!this.optionSelectedObj&&!this.active&&!this.allowSkip&&this.myCarousel.getCurrentSlideIndex()>0&&"MCQ"===this.utilService.getQuestionType(this.questions,Lt)&&this.utilService.canGo(this.progressBarClass[this.myCarousel.getCurrentSlideIndex()])||!this.optionSelectedObj&&!this.active&&!this.allowSkip&&this.myCarousel.getCurrentSlideIndex()>=0&&"MCQ"===this.utilService.getQuestionType(this.questions,Lt)&&this.utilService.canGo(this.progressBarClass[this.myCarousel.getCurrentSlideIndex()]))&&this.infoPopupTimeOut()}infoPopupTimeOut(){this.infoPopup=!0,setTimeout(()=>{this.infoPopup=!1},2e3)}correctFeedBackTimeOut(m){this.intervalRef=setTimeout(()=>{this.showAlert&&(this.showAlert=!1,this.myCarousel.isLast(this.myCarousel.getCurrentSlideIndex())||"next"!==m?"previous"!==m||this.stopAutoNavigation?"jump"!==m||this.stopAutoNavigation?this.myCarousel.isLast(this.myCarousel.getCurrentSlideIndex())&&(this.endPageReached=!0,this.emitSectionEnd()):this.goToSlide(this.jumpSlideIndex):this.prevSlide():this.nextSlide())},4e3)}goToSlide(m){var h,H;if(this.viewerService.raiseHeartBeatEvent(Vi_goToQuestion,Ni_interact,this.myCarousel.getCurrentSlideIndex()),this.disableNext=!1,this.currentSlideIndex=m,this.showRootInstruction=!1,0===m)return this.optionSelectedObj=void 0,this.myCarousel.selectSlide(0),this.active=0===this.currentSlideIndex&&0===this.sectionIndex&&this.showStartPage,this.showRootInstruction=!0,void(null!==(H=null===(h=this.sectionConfig.metadata)||void 0===h?void 0:h.children)&&void 0!==H&&H.length||(this.disableNext=!0));this.currentQuestionsMedia=(0,tr.Z)(this.questions[this.currentSlideIndex-1],"media"),this.setSkippedClass(this.currentSlideIndex-1),this.initializeTimer||(this.initializeTimer=!0),void 0===this.questions[m-1]?(this.showQuestions=!1,this.viewerService.getQuestions(0,m),this.currentSlideIndex=m):void 0!==this.questions[m-1]&&this.myCarousel.selectSlide(m),this.setImageZoom(),this.currentSolutions=void 0,this.highlightQuestion()}goToQuestion(m){this.active=!1,this.showRootInstruction=!1,this.disableNext=!1,this.initializeTimer=!0;const h=m.questionNo;this.viewerService.getQuestions(0,h),this.currentSlideIndex=h,this.myCarousel.selectSlide(h),this.highlightQuestion()}highlightQuestion(){var m,h,H;const ee=this.questions[this.currentSlideIndex-1],Ue=null===(h=null===(m=ee)||void 0===m?void 0:m.qType)||void 0===h?void 0:h.toUpperCase(),mt=document.getElementById(null===(H=ee)||void 0===H?void 0:H.identifier);if(mt&&Ue){let Lt;if("MCQ"===Ue)Lt=mt.querySelector(".mcq-title");else Lt=mt.querySelector(".question-container");Lt&&setTimeout(()=>{Lt.focus()},0)}}getSolutions(){this.showAlert=!1,this.viewerService.raiseHeartBeatEvent(Vi_showAnswer,Ni_interact,this.myCarousel.getCurrentSlideIndex()),this.viewerService.raiseHeartBeatEvent(Vi_showAnswer,Ni_impression,this.myCarousel.getCurrentSlideIndex());const m=this.myCarousel.getCurrentSlideIndex()-1;this.currentQuestion=this.questions[m].body,this.currentOptions=this.questions[m].interactions.response1.options,this.currentQuestionsMedia=(0,tr.Z)(this.questions[m],"media"),setTimeout(()=>{this.setImageZoom()}),setTimeout(()=>{this.setImageHeightWidthClass()},100),this.currentSolutions&&(this.showSolution=!0),this.clearTimeInterval()}viewSolution(){this.viewerService.raiseHeartBeatEvent(Vi_viewSolutionClicked,Ni_interact,this.myCarousel.getCurrentSlideIndex()),this.showSolution=!0,this.showAlert=!1,this.currentQuestionsMedia=(0,tr.Z)(this.questions[this.myCarousel.getCurrentSlideIndex()-1],"media"),setTimeout(()=>{this.setImageZoom(),this.setImageHeightWidthClass()}),clearTimeout(this.intervalRef)}closeSolution(){this.setImageZoom(),this.viewerService.raiseHeartBeatEvent(Vi_solutionClosed,Ni_interact,this.myCarousel.getCurrentSlideIndex()),this.showSolution=!1,this.myCarousel.selectSlide(this.currentSlideIndex),this.focusOnNextButton()}viewHint(){this.viewerService.raiseHeartBeatEvent(Vi_viewHint,Ni_interact,this.myCarousel.getCurrentSlideIndex())}onAnswerKeyDown(m){"Enter"===m.key&&(m.stopPropagation(),this.getSolutions())}showAnswerClicked(m,h){var H;if(null!==(H=m)&&void 0!==H&&H.showAnswer){if(this.focusOnNextButton(),this.active=!0,this.progressBarClass[this.myCarousel.getCurrentSlideIndex()-1].class="correct",h){const ee=this.questions.findIndex(Ue=>Ue.identifier===h.identifier);ee>-1&&(this.questions[ee].isAnswerShown=!0,this.viewerService.updateSectionQuestions(this.sectionConfig.metadata.identifier,this.questions))}this.viewerService.raiseHeartBeatEvent(Vi_showAnswer,Ni_interact,ss_shortAnswer),this.viewerService.raiseHeartBeatEvent(Vi_pageScrolled,Ni_impression,this.myCarousel.getCurrentSlideIndex()-1)}}getScore(m,h,H,ee){if(H)return this.questions[m].responseDeclaration[h].correctResponse.outcomes.SCORE?this.questions[m].responseDeclaration[h].correctResponse.outcomes.SCORE:this.questions[m].responseDeclaration[h].maxScore||1;{const Ue=ee.option.value,mt=this.questions[m].responseDeclaration.mapping;let Lt=0;return mt&&mt.forEach(Cn=>{Ue===Cn.response&&(Lt=Cn.outcomes.SCORE||0,Cn.outcomes.SCORE&&(this.progressBarClass[m].class="partial"))}),Lt}}calculateScore(){return this.progressBarClass.reduce((m,h)=>m+h.score,0)}updateScoreBoard(m,h,H,ee){this.progressBarClass.forEach(Ue=>{Ue.index-1===m&&(Ue.class=h,Ue.score=ee||0,this.showFeedBack||(Ue.value=H))})}setImageHeightWidthClass(){document.querySelectorAll("[data-asset-variable]").forEach(m=>{m.removeAttribute("class"),m.clientHeight>m.clientWidth?m.setAttribute("class","portrait"):m.clientHeight{const Ue=ee.getAttribute("data-asset-variable");ee.setAttribute("class","option-image"),ee.setAttribute("id",Ue),(0,Ia.Z)(this.currentQuestionsMedia,Lt=>{if(Ue===Lt.id)if(this.parentConfig.isAvailableLocally&&this.parentConfig.baseUrl){let Cn=this.parentConfig.baseUrl;Cn=`${Cn.substring(0,Cn.lastIndexOf("/"))}/${this.sectionConfig.metadata.identifier}`,H&&(ee.src=`${Cn}/${H}/${Lt.src}`)}else Lt.baseUrl&&(ee.src=Lt.baseUrl+Lt.src)});const mt=document.createElement("div");mt.setAttribute("class","magnify-icon"),mt.onclick=Lt=>{this.viewerService.raiseHeartBeatEvent(Vi_zoomClicked,Ni_interact,this.myCarousel.getCurrentSlideIndex()),this.zoomImgSrc=ee.src,this.showZoomModal=!0;const Cn=document.getElementById("imageModal");Cn.clientHeight>ee.clientWidth?Cn.setAttribute("class","portrait"):ee.clientHeight100&&(this.imageZoomCount=this.imageZoomCount-10,this.setImageModalHeightWidth())}setImageModalHeightWidth(){this.imageModal.nativeElement.style.width=`${this.imageZoomCount}%`,this.imageModal.nativeElement.style.height=`${this.imageZoomCount}%`}closeZoom(){this.viewerService.raiseHeartBeatEvent(Vi_zoomCloseClicked,Ni_interact,this.myCarousel.getCurrentSlideIndex()),document.getElementById("imageModal").removeAttribute("style"),this.showZoomModal=!1}clearTimeInterval(){this.intervalRef&&clearTimeout(this.intervalRef)}ngOnDestroy(){this.destroy$.next(!0),this.destroy$.unsubscribe(),this.errorService.getInternetConnectivityError.unsubscribe(),this.subscription&&this.subscription.unsubscribe()}}Ra.\u0275fac=function(m){return new(m||Ra)(t.Y36(Po),t.Y36(Gr),t.Y36(z1),t.Y36(t.sBO),t.Y36(Gi.T_))},Ra.\u0275cmp=t.Xpm({type:Ra,selectors:[["quml-section-player"]],viewQuery:function(m,h){if(1&m&&(t.Gf(as,5),t.Gf(Rc,7),t.Gf(O5,5)),2&m){let H;t.iGM(H=t.CRH())&&(h.myCarousel=H.first),t.iGM(H=t.CRH())&&(h.imageModal=H.first),t.iGM(H=t.CRH())&&(h.questionSlide=H.first)}},hostBindings:function(m,h){1&m&&t.NdJ("beforeunload",function(){return h.ngOnDestroy()},!1,t.Jf7)},inputs:{sectionIndex:"sectionIndex",sectionConfig:"sectionConfig",attempts:"attempts",jumpToQuestion:"jumpToQuestion",mainProgressBar:"mainProgressBar",parentConfig:"parentConfig"},outputs:{playerEvent:"playerEvent",sectionEnd:"sectionEnd",showScoreBoard:"showScoreBoard"},features:[t.TTD],decls:11,vars:5,consts:[["class","quml-container",3,"hidden",4,"ngIf"],["class","info-popup",4,"ngIf"],[4,"ngIf"],[1,"image-viewer__overlay",3,"hidden"],[1,"image-viewer__close",3,"click"],[1,"image-viewer__container"],["id","imageModal","alt","Zoomed image",1,"image-viewer__img",3,"src"],["imageModal",""],[1,"image-viewer__zoom"],[1,"image-viewer__zoomin",3,"click"],[1,"image-viewer__zoomout",3,"click"],[1,"quml-container",3,"hidden"],[1,"quml-landscape",3,"hidden"],[1,"main-header",3,"disablePreviousNavigation","duration","warningTime","showTimer","showLegend","currentSlideIndex","totalNoOfQuestions","active","showFeedBack","currentSolutions","initializeTimer","replayed","disableNext","startPageInstruction","attempts","showStartPage","showDeviceOrientation","durationEnds","nextSlideClicked","prevSlideClicked","showSolution","toggleScreenRotate"],[1,"landscape-mode"],[1,"lanscape-mode-left"],["class","current-slide",4,"ngIf"],[1,"landscape-content"],[1,"landscape-center",3,"interval","showIndicators","noWrap","activeSlideChange"],["myCarousel",""],[3,"instructions","points","time","showTimer","totalNoOfQuestions","contentName"],[4,"ngFor","ngForOf"],[1,"lanscape-mode-right"],["tabindex","0",1,"showFeedBack-progressBar","info-page","hover-effect",3,"ngClass","keydown","click"],["class","scoreboard-sections",4,"ngIf"],["class","singleContent",4,"ngIf"],["class","singleContent nonFeedback",4,"ngIf"],["class","requiresSubmit cursor-pointer showFeedBack-progressBar hover-effect","tabindex","0","aria-label","scoreboard",3,"click","keydown",4,"ngIf"],[3,"alertType","isHintAvailable","showSolutionButton","showSolution","showHint","closeAlert",4,"ngIf"],[3,"question","options","solutions","close",4,"ngIf"],[1,"current-slide"],[3,"click","keydown"],["questionSlide",""],[3,"id"],[3,"question","replayed","identifier","tryAgain","optionSelected"],[3,"questions","replayed","baseUrl","showAnswerClicked"],[1,"scoreboard-sections"],["class","section relative",3,"ngClass","click","keydown",4,"ngFor","ngForOf"],[1,"section","relative",3,"ngClass","click","keydown"],["tabindex","0",1,"progressBar-border",3,"for","ngClass"],["class","nonFeedback",4,"ngIf"],["tabindex","0","class","showFeedBack-progressBar",3,"ngClass","click","keydown",4,"ngFor","ngForOf"],["tabindex","0",1,"showFeedBack-progressBar",3,"ngClass","click","keydown"],[1,"nonFeedback"],[1,"singleContent"],["tabindex","0","class","showFeedBack-progressBar hover-effect",3,"ngClass","click","keydown",4,"ngFor","ngForOf"],["tabindex","0",1,"showFeedBack-progressBar","hover-effect",3,"ngClass","click","keydown"],[1,"singleContent","nonFeedback"],["tabindex","0","aria-label","scoreboard",1,"requiresSubmit","cursor-pointer","showFeedBack-progressBar","hover-effect",3,"click","keydown"],["src","./assets/flag_inactive.svg","alt","Flag logo: Show scoreboard"],[3,"alertType","isHintAvailable","showSolutionButton","showSolution","showHint","closeAlert"],[3,"question","options","solutions","close"],[1,"info-popup"]],template:function(m,h){1&m&&(t.YNc(0,_l,27,38,"div",0),t.YNc(1,T2,2,0,"div",1),t.YNc(2,Kl,1,0,"sb-player-contenterror",2),t.TgZ(3,"div",3)(4,"div",4),t.NdJ("click",function(){return h.closeZoom()}),t.qZA(),t.TgZ(5,"div",5),t._UZ(6,"img",6,7),t.qZA(),t.TgZ(8,"div",8)(9,"div",9),t.NdJ("click",function(){return h.zoomIn()}),t.qZA(),t.TgZ(10,"div",10),t.NdJ("click",function(){return h.zoomOut()}),t.qZA()()()),2&m&&(t.Q6J("ngIf",h.loadView),t.xp6(1),t.Q6J("ngIf",h.infoPopup),t.xp6(1),t.Q6J("ngIf",h.showContentError),t.xp6(1),t.Q6J("hidden",!h.showZoomModal),t.xp6(3),t.Q6J("src",h.zoomImgSrc,t.LSH))},dependencies:[tt.mk,tt.sg,tt.O5,os,Jt,Gi.vM,Us,Oo,R1,Zs,V1,y1,bl],styles:["@charset \"UTF-8\"; :root{--quml-scoreboard-sub-title:#6D7278;--quml-scoreboard-skipped:#969696;--quml-scoreboard-unattempted:#575757;--quml-color-success:#08BC82;--quml-color-danger:#F1635D;--quml-color-primary-contrast:#333;--quml-btn-border:#ccc;--quml-heder-text-color:#6250f5;--quml-header-bg-color:#c2c2c2;--quml-mcq-title-txt:#131415;--quml-zoom-btn-txt:#eee;--quml-zoom-btn-hover:#f2f2f2;--quml-main-bg:#fff;--quml-btn-color:#fff;--quml-question-bg:#fff}.quml-header[_ngcontent-%COMP%]{background:var(--quml-header-bg-color);display:flow-root;height:2.25rem;position:fixed}.quml-container[_ngcontent-%COMP%]{overflow:hidden;width:100%;height:100%;position:relative}.quml-landscape[_ngcontent-%COMP%]{width:100%;height:100%} .carousel{outline:0}.col[_ngcontent-%COMP%]{padding-left:0;padding-right:0}.quml-button[_ngcontent-%COMP%]{background-color:var(--primary-color);border:none;color:var(--quml-btn-color);padding:.25rem;text-align:center;text-decoration:none;font-size:1rem;margin:.125rem .5rem .125rem .125rem;cursor:pointer;width:3rem;height:2.5rem;border-radius:10%}.landscape-mode[_ngcontent-%COMP%]{height:100%;width:100%;position:relative;background-color:var(--quml-main-bg)}.landscape-content[_ngcontent-%COMP%]{padding:2.5rem 4rem 0;overflow:auto;height:100%;width:100%}@media only screen and (max-width:480px){.landscape-content[_ngcontent-%COMP%]{padding:5rem 1rem 0;height:calc(100% - 3rem)}}.lanscape-mode-left[_ngcontent-%COMP%]{position:absolute;left:0;top:3.5rem;text-align:center;z-index:1;width:4rem}.lanscape-mode-left[_ngcontent-%COMP%] div[_ngcontent-%COMP%]{padding-bottom:1.5rem}.landscape-center[_ngcontent-%COMP%]{width:100%}.lanscape-mode-right[_ngcontent-%COMP%]{-ms-overflow-style:none;scrollbar-width:none;position:absolute;padding:0 1rem;right:.5rem;color:var(--quml-scoreboard-unattempted);font-size:.75rem;height:calc(100% - 4rem);overflow-y:auto;top:3.5rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style:none;margin-top:.5rem;padding:0;text-align:center;position:relative}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before{content:\"\";width:.0625rem;height:100%;position:absolute;left:0;right:0;background-color:rgba(204,204,204,.5);z-index:1;margin:0 auto}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{position:relative;z-index:2}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%]{color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted);border-radius:50%;width:1.25rem;height:1.25rem;background:var(--white)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover{border:1px solid var(--primary-color);color:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%]{color:var(--white);background:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover{border:1px solid var(--primary-color);color:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%]{color:var(--white);background:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.progressBar-border[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:focus::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover::after{border:1px solid var(--primary-color);content:\"\";width:1.65rem;height:1.65rem;border-radius:50%;padding:.25rem;position:absolute}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after{content:\"\";display:inline-block;transform:rotate(45deg);height:.6rem;width:.3rem;border-bottom:.12rem solid var(--primary-color);border-right:.12rem solid var(--primary-color);position:absolute;top:.25rem;right:-.7rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after{content:\"\";position:absolute;top:.525rem;right:-.7rem;height:.375rem;width:.375rem;border-radius:.375rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after{--correct-bg:var(--quml-color-success);background:var(--correct-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after{--wrong-bg:var(--quml-color-danger);background:var(--wrong-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after{--partial-bg:linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );background:var(--partial-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%] label[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{color:var(--white)!important;background:var(--primary-color);border:.03125rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{background-color:var(--quml-question-bg);border-radius:.25rem;width:1.25rem;padding:.25rem;height:1.25rem;display:flex;align-items:center;justify-content:center;color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted);margin-bottom:2.25rem;cursor:pointer}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%]{color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted);border-radius:50%;background:var(--white)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover{color:var(--primary-color);border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover::after{border:1px solid var(--primary-color);content:\"\";height:1.65rem;border-radius:.25rem;position:absolute;width:1.65rem;background:var(--quml-question-bg);z-index:-1}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.skipped[_ngcontent-%COMP%]{color:var(--white);background:var(--quml-scoreboard-skipped);border:.0625rem solid var(--quml-scoreboard-skipped)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%]{color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color);color:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]{display:none}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%]{height:0;transform:scaleY(0)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%]{height:100%;transform-origin:top;transition:transform .2s ease-out;transform:scaleY(1)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ label[_ngcontent-%COMP%]{border:.0625rem solid var(--primary-color);color:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]{background-color:var(--quml-question-bg);border-radius:50%;width:1.25rem;padding:.25rem;height:1.25rem;display:flex;align-items:center;justify-content:center;border:.0625rem solid #ccc;margin-bottom:2.25rem;cursor:pointer}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.requiresSubmit[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] .active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.att-color[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.progressBar-border[_ngcontent-%COMP%]{color:var(--primary-color);border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.info-page[_ngcontent-%COMP%]{color:var(--white);background:var(--primary-color);border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%]{color:var(--white);background:var(--quml-scoreboard-skipped);border:.0625rem solid var(--quml-scoreboard-skipped)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%]:hover{color:var(--white)!important}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%]{color:var(--white);border:0 solid transparent}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%]{--correct-bg:var(--quml-color-success);background:var(--correct-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%]{--wrong-bg:var(--quml-color-danger);background:var(--wrong-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%]{--partial-bg:linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );background:var(--partial-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%]{color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color);color:var(--primary-color)}.current-slide[_ngcontent-%COMP%]{color:var(--quml-scoreboard-sub-title);font-size:.875rem;font-weight:900;letter-spacing:0}@media only screen and (max-width:480px){.lanscape-mode-right[_ngcontent-%COMP%]{background:var(--white);display:flex;align-items:center;overflow-x:auto;overflow-y:hidden;width:90%;height:2.5rem;padding:1rem 0 0;margin:auto;left:0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style:none;padding:0;text-align:center;position:relative;display:flex;height:1.5rem;margin-top:0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]{margin-right:2.25rem;z-index:1}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child{margin-right:0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%]{display:flex}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child{margin-right:2.25rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{top:-1.75rem;position:inherit;margin:.5rem 2.25rem;padding-left:1.25rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before{background:0 0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after{content:\"\";top:-.8125rem;right:auto;left:.625rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after{content:\"\";top:-.525rem;left:.5rem;right:auto}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{margin-right:2.25rem;margin-bottom:0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before{content:\"\";width:100%;height:.0625rem;position:absolute;left:0;top:50%;transform:translate(0,-50%);right:0;background-color:rgba(204,204,204,.5);z-index:0;margin:0 auto}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%]{width:0;transform:scaleX(0);margin:0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%]{width:calc(100% - 4rem);transform-origin:left;transition:transform .2s ease-out;transform:scaleX(1);margin:-1.25rem 3rem 0 4rem}.landscape-center[_ngcontent-%COMP%]{margin-top:2rem}.lanscape-mode-left[_ngcontent-%COMP%]{display:none}.landscape-mode[_ngcontent-%COMP%]{grid-template-areas:\"right right right\" \"center center center\" \"left left left\"} .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-mcq-solutions .mcq-title, quml-sa .mcq-title{margin-top:1rem}}.quml-timer[_ngcontent-%COMP%]{padding:.5rem}.quml-header-text[_ngcontent-%COMP%]{margin:.5rem;text-align:center;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.quml-arrow-button[_ngcontent-%COMP%]{border-radius:28%;font-size:0;outline:0;background-color:var(--primary-color);padding:.5rem}.info-popup[_ngcontent-%COMP%]{position:absolute;top:18%;right:10%;font-size:.875rem;font-family:noto-sans;box-shadow:0 .125rem .875rem 0 rgba(0,0,0,.1);padding:.75rem}.quml-menu[_ngcontent-%COMP%]{width:1.5rem;height:1.5rem}.quml-card[_ngcontent-%COMP%]{background-color:var(--white);padding:1.25rem;box-shadow:0 .25rem .5rem 0 rgba(0,0,0,.2);width:25%;position:absolute;left:37%;text-align:center;top:25%;z-index:2}.quml-card-title[_ngcontent-%COMP%]{font-size:1.25rem;text-align:center}.quml-card-body[_ngcontent-%COMP%] .wrong[_ngcontent-%COMP%]{color:red}.quml-card-body[_ngcontent-%COMP%] .right[_ngcontent-%COMP%]{color:green}.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%] button[_ngcontent-%COMP%]{color:var(--white);background-color:var(--primary-color);border-color:var(--primary-color);outline:0;font-size:.875rem;padding:.25rem 1.5rem}.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%]{width:40%;display:inline;padding-right:.75rem} .carousel.slide .carousel-control.carousel-control-next, .carousel.slide a.left.carousel-control.carousel-control-prev{display:none} .carousel-item{perspective:unset}.potrait-header-top[_ngcontent-%COMP%]{visibility:hidden;margin-top:-2.5rem}.potrait-header-top[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{display:-ms-grid;display:grid;-ms-grid-columns:1fr 15fr;grid-template-columns:1fr 15fr}.potrait-header-top[_ngcontent-%COMP%] .quml-menu[_ngcontent-%COMP%]{color:var(--quml-heder-text-color);font-size:1.5rem;padding-left:1.25rem;margin-top:.25rem}.potrait-header-top[_ngcontent-%COMP%] .quml-header-text[_ngcontent-%COMP%]{font-size:.875rem;color:var(--quml-heder-text-color)}.row[_ngcontent-%COMP%]{margin-right:0;margin-left:0}.portrait-header[_ngcontent-%COMP%]{visibility:hidden}.image-viewer__close[_ngcontent-%COMP%], .image-viewer__container[_ngcontent-%COMP%], .image-viewer__overlay[_ngcontent-%COMP%], .image-viewer__zoom[_ngcontent-%COMP%]{position:absolute}.image-viewer__overlay[_ngcontent-%COMP%]{width:100%;height:100%;background:var(--quml-color-primary-contrast);z-index:11111}.image-viewer__container[_ngcontent-%COMP%]{background-color:var(--quml-color-primary-contrast);top:50%;left:50%;transform:translate(-50%,-50%);z-index:11111;width:80%;height:80%}.image-viewer__img[_ngcontent-%COMP%]{width:100%;height:100%}.image-viewer__close[_ngcontent-%COMP%]{top:1rem;right:1rem;text-align:center;cursor:pointer;z-index:999999;background:rgba(0,0,0,.5);border-radius:100%;width:3rem;height:3rem;position:fixed}.image-viewer__close[_ngcontent-%COMP%]::after{content:\"\u2715\";color:var(--white);font-size:2rem}.image-viewer__close[_ngcontent-%COMP%]:hover{background:#000}.image-viewer__zoom[_ngcontent-%COMP%]{bottom:1rem;right:1rem;width:2.5rem;height:auto;border-radius:.5rem;background:var(--white);display:flex;flex-direction:column;align-items:center;overflow:hidden;z-index:99999;position:fixed;border:.0625rem solid var(--quml-zoom-btn-txt)}.image-viewer__zoomin[_ngcontent-%COMP%], .image-viewer__zoomout[_ngcontent-%COMP%]{text-align:center;height:2.5rem;position:relative;width:2.5rem;cursor:pointer}.image-viewer__zoomin[_ngcontent-%COMP%]:hover, .image-viewer__zoomout[_ngcontent-%COMP%]:hover{background-color:var(--quml-zoom-btn-hover)}.image-viewer__zoomin[_ngcontent-%COMP%]::after, .image-viewer__zoomout[_ngcontent-%COMP%]::after{font-size:1.5rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.image-viewer__zoomin[_ngcontent-%COMP%]{border-bottom:.0625rem solid var(--quml-btn-border)}.image-viewer__zoomin[_ngcontent-%COMP%]::after{content:\"+\"}.image-viewer__zoomout[_ngcontent-%COMP%]::after{content:\"\u2212\"} quml-ans{cursor:pointer} quml-ans svg circle{fill:var(--quml-zoom-btn-txt)} .magnify-icon{position:absolute;right:0;width:1.5rem;height:1.5rem;border-top-left-radius:.5rem;cursor:pointer;background-color:var(--quml-color-primary-contrast)} .magnify-icon::after{content:\"\";position:absolute;bottom:.125rem;right:.125rem;z-index:1;width:1rem;height:1rem;background-image:url(\"data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='512' height='512' x='0' y='0' viewBox='0 0 37.166 37.166' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35.829,32.045l-6.833-6.833c-0.513-0.513-1.167-0.788-1.836-0.853c2.06-2.567,3.298-5.819,3.298-9.359 c0-8.271-6.729-15-15-15c-8.271,0-15,6.729-15,15c0,8.271,6.729,15,15,15c3.121,0,6.021-0.96,8.424-2.598 c0.018,0.744,0.305,1.482,0.872,2.052l6.833,6.833c0.585,0.586,1.354,0.879,2.121,0.879s1.536-0.293,2.121-0.879 C37.001,35.116,37.001,33.217,35.829,32.045z M15.458,25c-5.514,0-10-4.484-10-10c0-5.514,4.486-10,10-10c5.514,0,10,4.486,10,10 C25.458,20.516,20.972,25,15.458,25z M22.334,15c0,1.104-0.896,2-2,2h-2.75v2.75c0,1.104-0.896,2-2,2s-2-0.896-2-2V17h-2.75 c-1.104,0-2-0.896-2-2s0.896-2,2-2h2.75v-2.75c0-1.104,0.896-2,2-2s2,0.896,2,2V13h2.75C21.438,13,22.334,13.895,22.334,15z' fill='%23ffffff' data-original='%23000000' style='' class=''/%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A\");background-size:cover;background-repeat:no-repeat;background-position:center} .solution-options figure.image{border:.0625rem solid var(--quml-btn-border);overflow:hidden;border-radius:.25rem;position:relative;width:7.5rem;height:7.5rem} .image-viewer__overlay .image-viewer__container, .solutions .solution-options figure.image{display:flex;align-items:center;justify-content:center} .image-viewer__overlay .image-viewer__container .portrait, .solutions .solution-options figure.image .portrait{width:auto;height:100%} .image-viewer__overlay .image-viewer__container .neutral, .solutions .solution-options figure.image .neutral{width:auto;height:auto}@media only screen and (max-width:768px){ .image-viewer__overlay .image-viewer__container .neutral, .solutions .solution-options figure.image .neutral{width:100%}}@media only screen and (min-width:768px){ .image-viewer__overlay .image-viewer__container .neutral, .solutions .solution-options figure.image .neutral{height:100%}} .image-viewer__overlay .image-viewer__container .landscape, .solutions .solution-options figure.image .landscape{width:100%;height:auto} .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-mcq-solutions .mcq-title, quml-sa .mcq-title{color:var(--quml-mcq-title-txt)} .quml-mcq .quml-mcq--question p, .quml-sa .quml-mcq--question p, quml-mcq-solutions .quml-mcq--question p, quml-sa .quml-mcq--question p{line-height:normal} .quml-mcq .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-mcq .quml-mcq--option .quml-mcq-option-card p:last-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:first-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:last-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child{margin-bottom:0} quml-mcq-solutions .mcq-title p, quml-mcq-solutions .text-center, quml-mcq-solutions .text-left, quml-mcq-solutions .text-right, quml-mcq-solutions h1, quml-mcq-solutions h2, quml-mcq-solutions h3, quml-mcq-solutions h4, quml-mcq-solutions h5, quml-mcq-solutions h6, quml-mcq-solutions p{text-align:center!important} quml-mcq-solutions .solutions .solution-options-container{align-items:center} quml-mcq-solutions .image-style-align-left, quml-mcq-solutions .image-style-align-right{float:none!important;text-align:center!important;margin:0 auto!important} quml-mcq-solutions figure.image, quml-mcq-solutions figure.image.resize-100, quml-mcq-solutions figure.image.resize-25, quml-mcq-solutions figure.image.resize-50, quml-mcq-solutions figure.image.resize-75, quml-mcq-solutions figure.image.resize-original{width:25%;height:auto} quml-mcq-solutions .solution-options p{margin-bottom:1rem}.endPage-container-height[_ngcontent-%COMP%]{height:100%}.scoreboard-sections[_ngcontent-%COMP%]{display:contents}.scoreboard-sections[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{position:relative;z-index:2}.hover-effect.progressBar-border[_ngcontent-%COMP%]::after, .hover-effect[_ngcontent-%COMP%]:focus::after, .hover-effect[_ngcontent-%COMP%]:hover::after{border:1px solid var(--primary-color);content:\"\";width:1.65rem;height:1.65rem;border-radius:50%;padding:.25rem;position:absolute}",So]}),Ra.ctorParameters=()=>[{type:Po},{type:Gr},{type:z1},{type:t.sBO},{type:Gi.T_}],Ra.propDecorators={sectionConfig:[{type:t.IIB}],attempts:[{type:t.IIB}],jumpToQuestion:[{type:t.IIB}],mainProgressBar:[{type:t.IIB}],sectionIndex:[{type:t.IIB}],parentConfig:[{type:t.IIB}],playerEvent:[{type:t.r_U}],sectionEnd:[{type:t.r_U}],showScoreBoard:[{type:t.r_U}],myCarousel:[{type:t.i9L,args:["myCarousel",{static:!1}]}],imageModal:[{type:t.i9L,args:["imageModal",{static:!0}]}],questionSlide:[{type:t.i9L,args:["questionSlide",{static:!1}]}],ngOnDestroy:[{type:t.L6J,args:["window:beforeunload"]}]};class Hs{constructor(m,h){this.viewerService=m,this.utilService=h,this.playerEvent=new t.vpe,this.telemetryEvent=new t.vpe,this.isLoading=!1,this.isSectionsAvailable=!1,this.isMultiLevelSection=!1,this.sections=[],this.sectionIndex=0,this.parentConfig={loadScoreBoard:!1,requiresSubmit:!1,isSectionsAvailable:!1,isReplayed:!1,identifier:"",contentName:"",baseUrl:"",isAvailableLocally:!1,instructions:{},questionCount:0,sideMenuConfig:{enable:!0,showShare:!0,showDownload:!1,showExit:!1},showFeedback:!1,showLegend:!0},this.endPageReached=!1,this.isEndEventRaised=!1,this.isSummaryEventRaised=!1,this.showReplay=!0,this.mainProgressBar=[],this.loadScoreBoard=!1,this.summary={correct:0,partial:0,skipped:0,wrong:0},this.isDurationExpired=!1,this.finalScore=0,this.totalNoOfQuestions=0,this.totalVisitedQuestion=0}onTelemetryEvent(m){this.telemetryEvent.emit(m.detail)}ngOnInit(){if("string"==typeof this.playerConfig)try{this.playerConfig=JSON.parse(this.playerConfig)}catch(m){console.error("Invalid playerConfig: ",m)}this.isLoading=!0,this.setConfig(),this.initializeSections()}initializeSections(){var m,h,H,ee,Ue,mt,Lt,Cn,ii,ri;const yi=ra(this.playerConfig.metadata.children,"mimeType");if(this.parentConfig.isSectionsAvailable=this.isSectionsAvailable=yi[0]===Jl_questionSet,this.viewerService.sectionQuestions=[],this.isSectionsAvailable)if(this.isMultiLevelSection=this.getMultilevelSection(this.playerConfig.metadata),this.isMultiLevelSection)this.contentError={messageHeader:"Unable to load content",messageTitle:"Multi level sections are not supported as of now"};else{let jn=this.playerConfig.metadata.children;this.sections=ra(jn,Yi=>{var dn,_r,Ji,xi,ua,ca;let Xa=(null===(_r=null===(dn=Yi)||void 0===dn?void 0:dn.children)||void 0===_r?void 0:_r.map(Ls=>Ls.identifier))||[];const ar=null===(Ji=Yi)||void 0===Ji?void 0:Ji.maxQuestions;return(null===(xi=Yi)||void 0===xi?void 0:xi.shuffle)&&!(null!==(ca=null===(ua=this.playerConfig.config)||void 0===ua?void 0:ua.progressBar)&&void 0!==ca&&ca.length)&&(Xa=A(Xa)),ar&&(Xa=Xa.slice(0,ar)),this.playerConfig.metadata.timeLimits&&(Yi=Object.assign(Object.assign({},Yi),{timeLimits:this.playerConfig.metadata.timeLimits,showTimer:this.playerConfig.metadata.showTimer})),Object.assign(Object.assign({},this.playerConfig),{metadata:Object.assign(Object.assign({},Yi),{childNodes:Xa})})}),this.setInitialScores(),this.activeSection=fa(this.sections[0]),this.isLoading=!1}else{let jn=[];jn=null!==(h=null===(m=this.playerConfig.metadata)||void 0===m?void 0:m.children)&&void 0!==h&&h.length?this.playerConfig.metadata.children.map(dn=>dn.identifier):this.playerConfig.metadata.childNodes;const Yi=this.playerConfig.metadata.maxQuestions;if(Yi&&(jn=jn.slice(0,Yi)),(null===(H=this.playerConfig.metadata)||void 0===H?void 0:H.shuffle)&&!(null!==(Ue=null===(ee=this.playerConfig.config)||void 0===ee?void 0:ee.progressBar)&&void 0!==Ue&&Ue.length)&&(jn=A(jn)),jn.forEach((dn,_r)=>{this.totalNoOfQuestions++,this.mainProgressBar.push({index:_r+1,class:"unattempted",value:void 0,score:0})}),this.playerConfig.metadata.childNodes=jn,!(null===(Lt=null===(mt=this.playerConfig.config)||void 0===mt?void 0:mt.progressBar)||void 0===Lt)&&Lt.length&&(this.mainProgressBar=fa(this.playerConfig.config.progressBar)),null!==(ii=null===(Cn=this.playerConfig.config)||void 0===Cn?void 0:Cn.questions)&&void 0!==ii&&ii.length){const dn=this.playerConfig.config.questions.find(_r=>_r.id===this.playerConfig.metadata.identifier);null!==(ri=dn)&&void 0!==ri&&ri.questions&&this.viewerService.updateSectionQuestions(this.playerConfig.metadata.identifier,dn.questions)}this.activeSection=fa(this.playerConfig),this.isLoading=!1,this.parentConfig.questionCount=this.totalNoOfQuestions}}setConfig(){var m,h,H,ee,Ue,mt,Lt,Cn,ii,ri,yi,jn,Yi,dn,_r,Ji,xi;this.parentConfig.contentName=null===(m=this.playerConfig.metadata)||void 0===m?void 0:m.name,this.parentConfig.identifier=null===(h=this.playerConfig.metadata)||void 0===h?void 0:h.identifier,this.parentConfig.requiresSubmit="no"!==(null===(ee=null===(H=this.playerConfig.metadata)||void 0===H?void 0:H.requiresSubmit)||void 0===ee?void 0:ee.toLowerCase()),this.parentConfig.instructions=null===(mt=null===(Ue=this.playerConfig.metadata)||void 0===Ue?void 0:Ue.instructions)||void 0===mt?void 0:mt.default,this.parentConfig.showLegend=void 0===(null===(Lt=this.playerConfig.config)||void 0===Lt?void 0:Lt.showLegend)||this.playerConfig.config.showLegend,this.nextContent=null===(Cn=this.playerConfig.config)||void 0===Cn?void 0:Cn.nextContent,this.showEndPage="no"!==(null===(ri=null===(ii=this.playerConfig.metadata)||void 0===ii?void 0:ii.showEndPage)||void 0===ri?void 0:ri.toLowerCase()),this.parentConfig.showFeedback=this.showFeedBack="yes"===(null===(jn=null===(yi=this.playerConfig.metadata)||void 0===yi?void 0:yi.showFeedback)||void 0===jn?void 0:jn.toLowerCase()),this.parentConfig.sideMenuConfig=Object.assign(Object.assign({},this.parentConfig.sideMenuConfig),this.playerConfig.config.sideMenu),this.userName=this.playerConfig.context.userData.firstName+" "+this.playerConfig.context.userData.lastName,this.playerConfig.metadata.isAvailableLocally&&this.playerConfig.metadata.basePath&&(this.parentConfig.baseUrl=this.playerConfig.metadata.basePath,this.parentConfig.isAvailableLocally=!0),this.attempts={max:null===(Yi=this.playerConfig.metadata)||void 0===Yi?void 0:Yi.maxAttempts,current:null!==(dn=this.playerConfig.metadata)&&void 0!==dn&&dn.currentAttempt?this.playerConfig.metadata.currentAttempt+1:1},this.totalScore=this.playerConfig.metadata.maxScore,this.showReplay=!((null===(_r=this.attempts)||void 0===_r?void 0:_r.max)&&(null===(Ji=this.attempts)||void 0===Ji?void 0:Ji.current)>=this.attempts.max),"string"==typeof(null===(xi=this.playerConfig.metadata)||void 0===xi?void 0:xi.timeLimits)&&(this.playerConfig.metadata.timeLimits=JSON.parse(this.playerConfig.metadata.timeLimits)),this.initialTime=(new Date).getTime(),this.emitMaxAttemptEvents()}getMultilevelSection(m){let h;return m.children.forEach(H=>{H.children&&!h&&(h=this.hasChildren(H.children))}),h}hasChildren(m){return m.some(h=>h.children)}emitMaxAttemptEvents(){var m,h,H,ee,Ue,mt;(null===(m=this.playerConfig.metadata)||void 0===m?void 0:m.maxAttempts)-1===(null===(h=this.playerConfig.metadata)||void 0===h?void 0:h.currentAttempt)?this.playerEvent.emit(this.viewerService.generateMaxAttemptEvents(null===(H=this.attempts)||void 0===H?void 0:H.current,!1,!0)):(null===(ee=this.playerConfig.metadata)||void 0===ee?void 0:ee.currentAttempt)>=(null===(Ue=this.playerConfig.metadata)||void 0===Ue?void 0:Ue.maxAttempts)&&this.playerEvent.emit(this.viewerService.generateMaxAttemptEvents(null===(mt=this.attempts)||void 0===mt?void 0:mt.current,!0,!1))}getActiveSectionIndex(){return this.sections.findIndex(m=>{var h,H;return(null===(h=m.metadata)||void 0===h?void 0:h.identifier)===(null===(H=this.activeSection.metadata)||void 0===H?void 0:H.identifier)})}onShowScoreBoard(m){if(this.parentConfig.isSectionsAvailable){const h=this.getActiveSectionIndex();this.updateSectionScore(h)}this.getSummaryObject(),this.loadScoreBoard=!0}onSectionEnd(m){if(this.parentConfig.isSectionsAvailable){const h=this.getActiveSectionIndex();this.updateSectionScore(h),this.setNextSection(m,h)}else this.prepareEnd(m)}onPlayerEvent(m){this.playerEvent.emit(m)}getSummaryObject(){const m=this.isSectionsAvailable?Ae(this.mainProgressBar.map(H=>H.children)):this.mainProgressBar,h=ia(m,"class");this.summary={skipped:(0,tr.Z)(h,"skipped.length")||0,correct:(0,tr.Z)(h,"correct.length")||0,wrong:(0,tr.Z)(h,"wrong.length")||0,partial:(0,tr.Z)(h,"partial.length")||0},this.totalVisitedQuestion=this.summary.correct+this.summary.wrong+this.summary.partial+this.summary.skipped,this.viewerService.totalNumberOfQuestions=this.totalNoOfQuestions}updateSectionScore(m){this.mainProgressBar[m].score=this.mainProgressBar[m].children.reduce((h,H)=>h+H.score,0)}setNextSection(m,h){var H,ee,Ue,mt;this.summary=this.utilService.sumObjectsByKey(this.summary,m.summary);const Lt=0===m.summary.skipped&&(null===(H=m.summary)||void 0===H?void 0:H.correct)+(null===(ee=m.summary)||void 0===ee?void 0:ee.wrong)===(null===(mt=null===(Ue=this.mainProgressBar[h])||void 0===Ue?void 0:Ue.children)||void 0===mt?void 0:mt.length),Cn=m.summary.skipped>0;if(m.isDurationEnded)return this.isDurationExpired=!0,void this.prepareEnd(m);let ii=h+1;if(m.jumpToSection){const ri=this.sections.findIndex(yi=>{var jn;return(null===(jn=yi.metadata)||void 0===jn?void 0:jn.identifier)===m.jumpToSection});ii=ri>-1?ri:ii}this.sectionIndex=fa(ii),this.mainProgressBar.forEach((ri,yi)=>{ri.isActive=yi===ii,yi===h&&(Lt?ri.class="attempted":Cn&&(ri.class="partial"))}),ii=this.attempts.max),this.totalNoOfQuestions=0,this.totalVisitedQuestion=0,this.mainProgressBar=[],this.jumpToQuestion=void 0,this.summary={correct:0,partial:0,skipped:0,wrong:0},this.sections=[],this.initialTime=(new Date).getTime(),this.initializeSections(),this.endPageReached=!1,this.loadScoreBoard=!1,this.activeSection=this.isSectionsAvailable?fa(this.sections[0]):this.playerConfig,(null===(H=this.attempts)||void 0===H?void 0:H.max)===(null===(ee=this.attempts)||void 0===ee?void 0:ee.current)&&this.playerEvent.emit(this.viewerService.generateMaxAttemptEvents((0,tr.Z)(this.attempts,"current"),!1,!0)),this.viewerService.raiseHeartBeatEvent(Vi_replayClicked,Ni_interact,ss_endPage),setTimeout(()=>{this.parentConfig.isReplayed=!1;const Ue=document.querySelector("li.info-page");Ue&&Ue.scrollIntoView({behavior:"smooth"})},1e3)}setInitialScores(m=0){const h="abcdefghijklmnopqrstuvwxyz".split("");this.sections.forEach((H,ee)=>{var Ue;this.mainProgressBar.push({index:h[ee].toLocaleUpperCase(),class:"unattempted",value:void 0,score:0,isActive:ee===m,identifier:null===(Ue=H.metadata)||void 0===Ue?void 0:Ue.identifier});const mt=[];H.metadata.childNodes.forEach((Lt,Cn)=>{mt.push({index:Cn+1,class:"unattempted",value:void 0,score:0}),this.totalNoOfQuestions++}),this.mainProgressBar[this.mainProgressBar.length-1]=Object.assign(Object.assign({},(0,Yn.Z)(this.mainProgressBar)),{children:mt})}),this.parentConfig.questionCount=this.totalNoOfQuestions}calculateScore(){return this.finalScore=this.mainProgressBar.reduce((m,h)=>m+h.score,0),this.generateOutComeLabel(),this.finalScore}exitContent(m){var h;this.calculateScore(),"EXIT"===(null===(h=m)||void 0===h?void 0:h.type)&&(this.viewerService.raiseHeartBeatEvent(Vi_endPageExitClicked,Ni_interact,ss_endPage),this.getSummaryObject(),this.viewerService.raiseSummaryEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore,this.summary),this.isSummaryEventRaised=!0,this.raiseEndEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore))}raiseEndEvent(m,h,H){this.isEndEventRaised||(this.isEndEventRaised=!0,this.viewerService.metaData.progressBar=this.mainProgressBar,this.viewerService.raiseEndEvent(m,h,H),(0,tr.Z)(this.attempts,"current")>=(0,tr.Z)(this.attempts,"max")&&this.playerEvent.emit(this.viewerService.generateMaxAttemptEvents((0,tr.Z)(this.attempts,"current"),!0,!1)))}setDurationSpent(){var m;"Score"!==(null===(m=this.playerConfig.metadata)||void 0===m?void 0:m.summaryType)&&(this.viewerService.metaData.duration=(new Date).getTime()-this.initialTime,this.durationSpent=this.utilService.getTimeSpentText(this.initialTime))}onScoreBoardLoaded(m){var h;null!==(h=m)&&void 0!==h&&h.scoreBoardLoaded&&this.calculateScore()}onScoreBoardSubmitted(){this.endPageReached=!0,this.getSummaryObject(),this.setDurationSpent(),this.viewerService.raiseHeartBeatEvent(Vi_scoreBoardSubmitClicked,Ni_interact,ss_submitPage),this.viewerService.raiseSummaryEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore,this.summary),this.raiseEndEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore),this.loadScoreBoard=!1,this.isSummaryEventRaised=!0}generateOutComeLabel(){switch(this.outcomeLabel=this.finalScore.toString(),(0,tr.Z)(this.playerConfig,"metadata.summaryType")){case"Complete":this.outcomeLabel=this.totalScore?`${this.finalScore} / ${this.totalScore}`:this.outcomeLabel;break;case"Duration":this.outcomeLabel=""}}goToQuestion(m){if(this.parentConfig.isSectionsAvailable&&m.identifier){const h=this.sections.findIndex(H=>{var ee;return(null===(ee=H.metadata)||void 0===ee?void 0:ee.identifier)===m.identifier});this.activeSection=fa(this.sections[h]),this.mainProgressBar.forEach((H,ee)=>{H.isActive=ee===h})}this.jumpToQuestion=m,this.loadScoreBoard=!1}playNextContent(m){var h,H;this.viewerService.raiseHeartBeatEvent(null===(h=m)||void 0===h?void 0:h.type,Ni_interact,ss_endPage,null===(H=m)||void 0===H?void 0:H.identifier)}toggleScreenRotate(m){this.viewerService.raiseHeartBeatEvent(Vi_deviceRotationClicked,Ni_interact,this.sectionPlayer.myCarousel.getCurrentSlideIndex()+1)}sideBarEvents(m){("OPEN_MENU"===m.type||"CLOSE_MENU"===m.type)&&this.handleSideBarAccessibility(m),this.viewerService.raiseHeartBeatEvent(m.type,Ni_interact,this.sectionPlayer.myCarousel.getCurrentSlideIndex()+1)}handleSideBarAccessibility(m){var h,H;const ee=document.querySelector(".navBlock"),Ue=document.querySelector("#overlay-input"),mt=document.querySelector("#overlay-button"),Lt=document.querySelector("#sidebar-list");if("OPEN_MENU"===m.type){const Cn=null===(H=null===(h=this.playerConfig.config)||void 0===h?void 0:h.sideMenu)||void 0===H?void 0:H.showExit;this.disabledHandle=Cn?Ic.Z.hidden({filter:[Lt,mt,Ue]}):Ic.Z.tabFocus({context:ee}),this.subscription=(0,Rs.R)(document,"keydown").subscribe(ii=>{if("Escape"===ii.key){document.getElementById("overlay-input").checked=!1,document.getElementById("playerSideMenu").style.visibility="hidden",document.querySelector(".navBlock").style.marginLeft="-100%",this.viewerService.raiseHeartBeatEvent("CLOSE_MENU",Ni_interact,this.sectionPlayer.myCarousel.getCurrentSlideIndex()+1),this.disabledHandle.disengage(),this.subscription.unsubscribe(),this.disabledHandle=null,this.subscription=null}})}else"CLOSE_MENU"===m.type&&this.disabledHandle&&(this.disabledHandle.disengage(),this.disabledHandle=null,this.subscription&&(this.subscription.unsubscribe(),this.subscription=null))}ngOnDestroy(){this.calculateScore(),this.getSummaryObject(),!1===this.isSummaryEventRaised&&this.viewerService.raiseSummaryEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore,this.summary),this.raiseEndEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore)}}Hs.\u0275fac=function(m){return new(m||Hs)(t.Y36(Po),t.Y36(Gr))},Hs.\u0275cmp=t.Xpm({type:Hs,selectors:[["quml-main-player"]],viewQuery:function(m,h){if(1&m&&t.Gf(Ra,5),2&m){let H;t.iGM(H=t.CRH())&&(h.sectionPlayer=H.first)}},hostBindings:function(m,h){1&m&&t.NdJ("TelemetryEvent",function(ee){return h.onTelemetryEvent(ee)},!1,t.evT)("beforeunload",function(){return h.ngOnDestroy()},!1,t.Jf7)},inputs:{playerConfig:"playerConfig"},outputs:{playerEvent:"playerEvent",telemetryEvent:"telemetryEvent"},decls:5,vars:6,consts:[[3,"title",4,"ngIf"],[4,"ngIf"],[3,"showLegend","disablePreviousNavigation","disableNext","attempts","loadScoreBoard","showDeviceOrientation","toggleScreenRotate",4,"ngIf"],[3,"title","config"],["class","main-container",4,"ngIf"],[3,"title"],[3,"showLegend","disablePreviousNavigation","disableNext","attempts","loadScoreBoard","showDeviceOrientation","toggleScreenRotate"],[1,"main-container"],[1,"main-container",3,"hidden"],[3,"sectionConfig","attempts","mainProgressBar","parentConfig","sectionIndex","jumpToQuestion","sectionEnd","showScoreBoard","playerEvent"],[3,"contentName","scores","totalNoOfQuestions","showFeedBack","isSections","summary","scoreBoardLoaded","submitClicked","emitQuestionNo",4,"ngIf"],["class","endPage-container",3,"ngClass",4,"ngIf"],[3,"contentName","scores","totalNoOfQuestions","showFeedBack","isSections","summary","scoreBoardLoaded","submitClicked","emitQuestionNo"],[1,"endPage-container",3,"ngClass"],[3,"contentName","outcome","outcomeLabel","userName","timeSpentLabel","showExit","showReplay","nextContent","replayContent","exitContent","playNextContent",4,"ngIf"],[3,"contentName","outcome","outcomeLabel","userName","timeSpentLabel","showExit","showReplay","nextContent","replayContent","exitContent","playNextContent"],["class","sb-color-primary mt-8 fnormal font-weight-bold d-block",4,"ngIf"],["class","attempts sb-color-primary mt-8 fnormal font-weight-bold d-block",4,"ngIf"],[1,"sb-color-primary","mt-8","fnormal","font-weight-bold","d-block"],[1,"attempts","sb-color-primary","mt-8","fnormal","font-weight-bold","d-block"],[3,"errorMsg"]],template:function(m,h){1&m&&(t.YNc(0,Yl,1,1,"sb-player-start-page",0),t.YNc(1,E2,1,0,"sb-player-side-menu-icon",1),t.YNc(2,E3,1,6,"quml-header",2),t._UZ(3,"sb-player-sidebar",3),t.YNc(4,Uc,6,10,"div",4)),2&m&&(t.Q6J("ngIf",h.isLoading),t.xp6(1),t.Q6J("ngIf",(null==h.parentConfig||null==h.parentConfig.sideMenuConfig?null:h.parentConfig.sideMenuConfig.enable)&&!h.endPageReached),t.xp6(1),t.Q6J("ngIf",h.loadScoreBoard&&(null==h.parentConfig?null:h.parentConfig.requiresSubmit)&&!h.endPageReached),t.xp6(1),t.Q6J("title",null==h.parentConfig?null:h.parentConfig.contentName)("config",null==h.parentConfig?null:h.parentConfig.sideMenuConfig),t.xp6(1),t.Q6J("ngIf",!h.isLoading))},dependencies:[tt.mk,tt.O5,Gi.u_,Gi.ye,Gi.bf,Gi.Z2,Gi.vM,Oo,Ts,Ra],styles:[":root{--quml-main-bg:#fff} #overlay-button{top:.6rem!important}.main-container[_ngcontent-%COMP%]{width:100%;height:100%;background:var(--quml-main-bg)}.endPage-container-height[_ngcontent-%COMP%]{height:100%}"]}),Hs.ctorParameters=()=>[{type:Po},{type:Gr}],Hs.propDecorators={playerConfig:[{type:t.IIB}],playerEvent:[{type:t.r_U}],telemetryEvent:[{type:t.r_U}],sectionPlayer:[{type:t.i9L,args:[Ra]}],onTelemetryEvent:[{type:t.L6J,args:["document:TelemetryEvent",["$event"]]}],ngOnDestroy:[{type:t.L6J,args:["window:beforeunload"]}]};class ls{constructor(){this.close=new t.vpe,this.indicators=[{iconText:"1",title:"Correct",class:"correct"},{iconText:"1",title:"Incorrect",class:"incorrect"},{iconText:"1",title:"Attempted",class:"attempted"},{iconText:"1",title:"Not viewed",class:""},{iconText:"1",title:"Skipped",class:"skipped"},{iconText:"1",title:"Current",class:"current"},{iconText:"i",title:"Info page",class:""},{iconText:'Flag logo: Show scoreboard',title:"Summary page",class:""}]}ngOnInit(){}}ls.\u0275fac=function(m){return new(m||ls)},ls.\u0275cmp=t.Xpm({type:ls,selectors:[["quml-progress-indicators"]],outputs:{close:"close"},decls:13,vars:1,consts:[[1,"progress-indicators"],[1,"progress-indicators__overlay"],["aria-modal","true",1,"progress-indicators__popup"],[1,"close-btn",3,"click"],["type","button","id","close","data-animation","showShadow","aria-label","player-close-btn",1,"close-icon"],[1,"progress-indicators__metadata"],[1,"progress-indicators__title","text-left"],[1,"progress-indicators__content"],["class","progress-indicators__item",4,"ngFor","ngForOf"],[1,"progress-indicators__action-btns"],["type","button",1,"sb-btn","sb-btn-normal","sb-btn-primary","sb-btn-radius","submit-btn",3,"click"],[1,"progress-indicators__item"],[1,"default",3,"ngClass","innerHtml"]],template:function(m,h){1&m&&(t.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"div",3),t.NdJ("click",function(){return h.close.emit(!0)}),t._UZ(4,"button",4),t.qZA(),t.TgZ(5,"div",5)(6,"h5",6),t._uU(7,"Progress bar indicators"),t.qZA(),t.TgZ(8,"div",7),t.YNc(9,Zc,4,3,"div",8),t.qZA(),t.TgZ(10,"div",9)(11,"button",10),t.NdJ("click",function(){return h.close.emit(!0)}),t._uU(12,"Close"),t.qZA()()()()()()),2&m&&(t.xp6(9),t.Q6J("ngForOf",h.indicators))},dependencies:[tt.mk,tt.sg],styles:['[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%]{width:100%;height:100%;position:absolute;top:0;left:0;z-index:99;transition:.3s;opacity:1}[_nghost-%COMP%] .progress-indicators__overlay[_ngcontent-%COMP%]{width:100%;height:100%;background:rgba(var(--rc-rgba-black),.5);display:flex;align-items:center;justify-content:center;transition:.3s}[_nghost-%COMP%] .progress-indicators__popup[_ngcontent-%COMP%]{width:90%;max-width:22.5rem;min-height:13.125rem;background:var(--white);border-radius:1rem;box-shadow:0 0 1.5em 0 rgba(var(--rc-rgba-black),.22);padding:1.5rem;position:relative;transition:.3s ease-in;transform:scale(1)}[_nghost-%COMP%] .progress-indicators__close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem;width:1.5rem;height:1.5rem;cursor:pointer}[_nghost-%COMP%] .progress-indicators__close-btn[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{max-width:100%}[_nghost-%COMP%] .progress-indicators__metadata[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%}[_nghost-%COMP%] .progress-indicators__title[_ngcontent-%COMP%]{font-size:1rem;font-weight:700;line-height:1.375rem;word-break:break-word}[_nghost-%COMP%] .progress-indicators__content[_ngcontent-%COMP%]{display:flex;flex-direction:row;align-items:center;justify-content:space-between;flex-wrap:wrap}[_nghost-%COMP%] .progress-indicators__content[_ngcontent-%COMP%] div[_ngcontent-%COMP%]{width:50%}[_nghost-%COMP%] .progress-indicators__item[_ngcontent-%COMP%]{display:flex;align-items:center;justify-content:flex-start;margin-bottom:1rem}[_nghost-%COMP%] .progress-indicators__item[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{padding-left:8px;margin:0}[_nghost-%COMP%] .progress-indicators__text[_ngcontent-%COMP%]{color:var(--gray-400);word-break:break-word}[_nghost-%COMP%] .progress-indicators__size[_ngcontent-%COMP%]{color:var(--black)}[_nghost-%COMP%] .progress-indicators__size[_ngcontent-%COMP%], [_nghost-%COMP%] .progress-indicators__text[_ngcontent-%COMP%]{font-size:.875rem;line-height:1.25rem}[_nghost-%COMP%] .progress-indicators__size[_ngcontent-%COMP%], [_nghost-%COMP%] .progress-indicators__text[_ngcontent-%COMP%], [_nghost-%COMP%] .progress-indicators__title[_ngcontent-%COMP%]{margin:0 0 1.5em}[_nghost-%COMP%] .progress-indicators__action-btns[_ngcontent-%COMP%]{display:flex;align-items:center;justify-content:flex-end}[_nghost-%COMP%] .progress-indicators__action-btns[_ngcontent-%COMP%] .cancel-btn[_ngcontent-%COMP%], [_nghost-%COMP%] .progress-indicators__action-btns[_ngcontent-%COMP%] .submit-btn[_ngcontent-%COMP%]{outline:0;border:none;font-size:.75rem;text-transform:uppercase;cursor:pointer;line-height:normal}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]{width:1.875rem;height:1.875rem;background:0 0;border-radius:50%;cursor:pointer;display:flex;justify-content:center;align-items:center;padding:0}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::after{content:"";transform:rotate(-45deg)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::before{content:"";transform:rotate(45deg)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:after, [_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:before{content:"";width:1.25rem;height:.125rem;position:absolute;background-color:var(--black)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]{box-shadow:0 0 0 0 var(--red) inset;transition:.2s cubic-bezier(.175,.885,.52,1.775);border:0 solid var(--white)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:before{transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:after{transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover{box-shadow:0 0 0 .25rem var(--red) inset}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:before{transform:scale(.7) rotate(45deg);transition-delay:.1s;background-color:var(--red)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:after{transform:scale(.7) rotate(-45deg);transition-delay:.1s;background-color:var(--red)}[_nghost-%COMP%] .default[_ngcontent-%COMP%]{background-color:var(--quml-question-bg);border-radius:50%;width:1.25rem;padding:.25rem;height:1.25rem;display:flex;align-items:center;justify-content:center;border:.0625rem solid #ccc;font-size:.8rem;font-weight:700;line-height:1.6rem}[_nghost-%COMP%] .correct[_ngcontent-%COMP%]{--correct-bg:var(--quml-color-success);background:var(--correct-bg);color:var(--white);border:0 solid transparent}[_nghost-%COMP%] .incorrect[_ngcontent-%COMP%]{--wrong-bg:var(--quml-color-danger);background:var(--wrong-bg);color:var(--white);border:0 solid transparent}[_nghost-%COMP%] .skipped[_ngcontent-%COMP%]{color:var(--white);background:var(--quml-scoreboard-skipped);border:.0625rem solid var(--quml-scoreboard-skipped)}[_nghost-%COMP%] .current[_ngcontent-%COMP%]{color:var(--primary-color);border:.0625rem solid var(--primary-color)}[_nghost-%COMP%] .current[_ngcontent-%COMP%]::after{border:1px solid var(--primary-color);content:"";width:1.65rem;height:1.65rem;border-radius:50%;padding:.25rem;position:absolute}[_nghost-%COMP%] .attempted[_ngcontent-%COMP%]{color:var(--white);background:var(--primary-color)} html[dir=rtl] .close-btn{left:.75rem;right:auto}']}),ls.ctorParameters=()=>[],ls.propDecorators={close:[{type:t.r_U}]};class J1{}J1.\u0275fac=function(m){return new(m||J1)},J1.\u0275mod=t.oAB({type:J1}),J1.\u0275inj=t.cJS({providers:[Fa],imports:[tt.ez,bs,Gi.gQ]})},3122:(vt,_e,w)=>{"use strict";var t=w(1473);vt.exports=function(N,G){return void 0===G&&(G=!1),function(K,$,le){if(K)N(K);else if($.statusCode>=400&&$.statusCode<=599){var R=le;if(G)if(t.TextDecoder){var ae=function F(U){return void 0===U&&(U=""),U.toLowerCase().split(";").reduce(function(N,G){var K=G.split("="),$=K[0],le=K[1];return"charset"===$.trim()?le.trim():N},"utf-8")}($.headers&&$.headers["content-type"]);try{R=new TextDecoder(ae).decode(le)}catch{}}else R=String.fromCharCode.apply(null,new Uint8Array(le));N({cause:R})}else N(null,le)}}},8783:(vt,_e,w)=>{"use strict";var t=w(1473),C=w(8932),F=w(9880);$.httpHandler=w(3122);function K(be,Be,Ne){var ke=be;return F(Be)?(Ne=Be,"string"==typeof be&&(ke={uri:be})):ke=C({},Be,{uri:be}),ke.callback=Ne,ke}function $(be,Be,Ne){return le(Be=K(be,Be,Ne))}function le(be){if(typeof be.callback>"u")throw new Error("callback argument missing");var Be=!1,Ne=function(st,bt,Tt){Be||(Be=!0,be.callback(st,bt,Tt))};function Re(){var Qe=void 0;if(Qe=pe.response?pe.response:pe.responseText||function R(be){try{if("document"===be.responseType)return be.responseXML;var Be=be.responseXML&&"parsererror"===be.responseXML.documentElement.nodeName;if(""===be.responseType&&!Be)return be.responseXML}catch{}return null}(pe),Z)try{Qe=JSON.parse(Qe)}catch{}return Qe}function fe(Qe){return clearTimeout(Ce),Qe instanceof Error||(Qe=new Error(""+(Qe||"Unknown XMLHttpRequest Error"))),Qe.statusCode=0,Ne(Qe,Te)}function de(){if(!et){var Qe;clearTimeout(Ce),Qe=be.useXDR&&void 0===pe.status?200:1223===pe.status?204:pe.status;var st=Te,bt=null;return 0!==Qe?(st={body:Re(),statusCode:Qe,method:We,headers:{},url:$e,rawRequest:pe},pe.getAllResponseHeaders&&(st.headers=function(Be){var Ne={};return Be&&Be.trim().split("\n").forEach(function(ke){var Re=ke.indexOf(":"),fe=ke.slice(0,Re).trim().toLowerCase(),de=ke.slice(Re+1).trim();typeof Ne[fe]>"u"?Ne[fe]=de:Array.isArray(Ne[fe])?Ne[fe].push(de):Ne[fe]=[Ne[fe],de]}),Ne}(pe.getAllResponseHeaders()))):bt=new Error("Internal XMLHttpRequest Error"),Ne(bt,st,st.body)}}var pe=be.xhr||null;pe||(pe=be.cors||be.useXDR?new $.XDomainRequest:new $.XMLHttpRequest);var Pe,et,Ce,$e=pe.url=be.uri||be.url,We=pe.method=be.method||"GET",Ie=be.body||be.data,He=pe.headers=be.headers||{},T=!!be.sync,Z=!1,Te={body:void 0,headers:{},statusCode:0,method:We,url:$e,rawRequest:pe};if("json"in be&&!1!==be.json&&(Z=!0,He.accept||He.Accept||(He.Accept="application/json"),"GET"!==We&&"HEAD"!==We&&(He["content-type"]||He["Content-Type"]||(He["Content-Type"]="application/json"),Ie=JSON.stringify(!0===be.json?Ie:be.json))),pe.onreadystatechange=function ke(){4===pe.readyState&&setTimeout(de,0)},pe.onload=de,pe.onerror=fe,pe.onprogress=function(){},pe.onabort=function(){et=!0},pe.ontimeout=fe,pe.open(We,$e,!T,be.username,be.password),T||(pe.withCredentials=!!be.withCredentials),!T&&be.timeout>0&&(Ce=setTimeout(function(){if(!et){et=!0,pe.abort("timeout");var Qe=new Error("XMLHttpRequest timeout");Qe.code="ETIMEDOUT",fe(Qe)}},be.timeout)),pe.setRequestHeader)for(Pe in He)He.hasOwnProperty(Pe)&&pe.setRequestHeader(Pe,He[Pe]);else if(be.headers&&!function G(be){for(var Be in be)if(be.hasOwnProperty(Be))return!1;return!0}(be.headers))throw new Error("Headers cannot be set on an XDomainRequest object");return"responseType"in be&&(pe.responseType=be.responseType),"beforeSend"in be&&"function"==typeof be.beforeSend&&be.beforeSend(pe),pe.send(Ie||null),pe}vt.exports=$,vt.exports.default=$,$.XMLHttpRequest=t.XMLHttpRequest||function ae(){},$.XDomainRequest="withCredentials"in new $.XMLHttpRequest?$.XMLHttpRequest:t.XDomainRequest,function N(be,Be){for(var Ne=0;Ne{"use strict";function w(F,U){return void 0===U&&(U=Object),U&&"function"==typeof U.freeze?U.freeze(F):F}var t=w({HTML:"text/html",isHTML:function(F){return F===t.HTML},XML_APPLICATION:"application/xml",XML_TEXT:"text/xml",XML_XHTML_APPLICATION:"application/xhtml+xml",XML_SVG_IMAGE:"image/svg+xml"}),C=w({HTML:"http://www.w3.org/1999/xhtml",isHTML:function(F){return F===C.HTML},SVG:"http://www.w3.org/2000/svg",XML:"http://www.w3.org/XML/1998/namespace",XMLNS:"http://www.w3.org/2000/xmlns/"});_e.freeze=w,_e.MIME_TYPE=t,_e.NAMESPACE=C},5317:(vt,_e,w)=>{var C=w(8558),F=w(2979),U=w(8448),N=w(5524),G=F.DOMImplementation,K=C.NAMESPACE,$=N.ParseError,le=N.XMLReader;function R(fe){this.options=fe||{locator:{}}}function be(){this.cdata=!1}function Be(fe,de){de.lineNumber=fe.lineNumber,de.columnNumber=fe.columnNumber}function Ne(fe){if(fe)return"\n@"+(fe.systemId||"")+"#[line:"+fe.lineNumber+",col:"+fe.columnNumber+"]"}function ke(fe,de,pe){return"string"==typeof fe?fe.substr(de,pe):fe.length>=de+pe||de?new java.lang.String(fe,de,pe)+"":fe}function Re(fe,de){fe.currentElement?fe.currentElement.appendChild(de):fe.doc.appendChild(de)}R.prototype.parseFromString=function(fe,de){var pe=this.options,Pe=new le,et=pe.domBuilder||new be,$e=pe.errorHandler,We=pe.locator,Ie=pe.xmlns||{},He=/\/x?html?$/.test(de),T=He?U.HTML_ENTITIES:U.XML_ENTITIES;return We&&et.setDocumentLocator(We),Pe.errorHandler=function ae(fe,de,pe){if(!fe){if(de instanceof be)return de;fe=de}var Pe={},et=fe instanceof Function;function $e(We){var Ie=fe[We];!Ie&&et&&(Ie=2==fe.length?function(He){fe(We,He)}:fe),Pe[We]=Ie&&function(He){Ie("[xmldom "+We+"]\t"+He+Ne(pe))}||function(){}}return pe=pe||{},$e("warning"),$e("error"),$e("fatalError"),Pe}($e,et,We),Pe.domBuilder=pe.domBuilder||et,He&&(Ie[""]=K.HTML),Ie.xml=Ie.xml||K.XML,fe&&"string"==typeof fe?Pe.parse(fe,Ie,T):Pe.errorHandler.error("invalid doc source"),et.doc},be.prototype={startDocument:function(){this.doc=(new G).createDocument(null,null,null),this.locator&&(this.doc.documentURI=this.locator.systemId)},startElement:function(fe,de,pe,Pe){var et=this.doc,$e=et.createElementNS(fe,pe||de),We=Pe.length;Re(this,$e),this.currentElement=$e,this.locator&&Be(this.locator,$e);for(var Ie=0;Ie{var C=w(8558).NAMESPACE;function F(Ee){return""!==Ee}function N(Ee,ye){return Ee.hasOwnProperty(ye)||(Ee[ye]=!0),Ee}function G(Ee){if(!Ee)return[];var ye=function U(Ee){return Ee?Ee.split(/[\t\n\f\r ]+/).filter(F):[]}(Ee);return Object.keys(ye.reduce(N,{}))}function $(Ee,ye){for(var nt in Ee)ye[nt]=Ee[nt]}function le(Ee,ye){var nt=Ee.prototype;if(!(nt instanceof ye)){let un=function(){};un.prototype=ye.prototype,un=new un,$(nt,un),Ee.prototype=nt=un}nt.constructor!=Ee&&("function"!=typeof Ee&&console.error("unknown Class:"+Ee),nt.constructor=Ee)}var R={},ae=R.ELEMENT_NODE=1,be=R.ATTRIBUTE_NODE=2,Be=R.TEXT_NODE=3,Ne=R.CDATA_SECTION_NODE=4,ke=R.ENTITY_REFERENCE_NODE=5,Re=R.ENTITY_NODE=6,fe=R.PROCESSING_INSTRUCTION_NODE=7,de=R.COMMENT_NODE=8,pe=R.DOCUMENT_NODE=9,Pe=R.DOCUMENT_TYPE_NODE=10,et=R.DOCUMENT_FRAGMENT_NODE=11,$e=R.NOTATION_NODE=12,We={},Ie={},Z=(We.INDEX_SIZE_ERR=(Ie[1]="Index size error",1),We.DOMSTRING_SIZE_ERR=(Ie[2]="DOMString size error",2),We.HIERARCHY_REQUEST_ERR=(Ie[3]="Hierarchy request error",3)),bt=(We.WRONG_DOCUMENT_ERR=(Ie[4]="Wrong document",4),We.INVALID_CHARACTER_ERR=(Ie[5]="Invalid character",5),We.NO_DATA_ALLOWED_ERR=(Ie[6]="No data allowed",6),We.NO_MODIFICATION_ALLOWED_ERR=(Ie[7]="No modification allowed",7),We.NOT_FOUND_ERR=(Ie[8]="Not found",8)),wt=(We.NOT_SUPPORTED_ERR=(Ie[9]="Not supported",9),We.INUSE_ATTRIBUTE_ERR=(Ie[10]="Attribute in use",10));We.INVALID_STATE_ERR=(Ie[11]="Invalid state",11),We.SYNTAX_ERR=(Ie[12]="Syntax error",12),We.INVALID_MODIFICATION_ERR=(Ie[13]="Invalid modification",13),We.NAMESPACE_ERR=(Ie[14]="Invalid namespace",14),We.INVALID_ACCESS_ERR=(Ie[15]="Invalid access",15);function Bt(Ee,ye){if(ye instanceof Error)var nt=ye;else nt=this,Error.call(this,Ie[Ee]),this.message=Ie[Ee],Error.captureStackTrace&&Error.captureStackTrace(this,Bt);return nt.code=Ee,ye&&(this.message=this.message+": "+ye),nt}function Qt(){}function Rt(Ee,ye){this._node=Ee,this._refresh=ye,_n(this)}function _n(Ee){var ye=Ee._node._inc||Ee._node.ownerDocument._inc;if(Ee._inc!=ye){var nt=Ee._refresh(Ee._node);vi(Ee,"length",nt.length),$(nt,Ee),Ee._inc=ye}}function Ln(){}function ie(Ee,ye){for(var nt=Ee.length;nt--;)if(Ee[nt]===ye)return nt}function yt(Ee,ye,nt,Ot){if(Ot?ye[ie(ye,Ot)]=nt:ye[ye.length++]=nt,Ee){nt.ownerElement=Ee;var un=Ee.ownerDocument;un&&(Ot&&Je(un,Ee,Ot),function Ge(Ee,ye,nt){Ee&&Ee._inc++,nt.namespaceURI===C.XMLNS&&(ye._nsMap[nt.prefix?nt.localName:""]=nt.value)}(un,Ee,nt))}}function Xe(Ee,ye,nt){var Ot=ie(ye,nt);if(!(Ot>=0))throw Bt(bt,new Error(Ee.tagName+"@"+nt));for(var un=ye.length-1;Ot"==Ee&&">")||"&"==Ee&&"&"||'"'==Ee&&"""||"&#"+Ee.charCodeAt()+";"}function fn(Ee,ye){if(ye(Ee))return!0;if(Ee=Ee.firstChild)do{if(fn(Ee,ye))return!0}while(Ee=Ee.nextSibling)}function Xt(){}function Je(Ee,ye,nt,Ot){Ee&&Ee._inc++,nt.namespaceURI===C.XMLNS&&delete ye._nsMap[nt.prefix?nt.localName:""]}function Fe(Ee,ye,nt){if(Ee&&Ee._inc){Ee._inc++;var Ot=ye.childNodes;if(nt)Ot[Ot.length++]=nt;else{for(var un=ye.firstChild,Un=0;un;)Ot[Un++]=un,un=un.nextSibling;Ot.length=Un}}}function Me(Ee,ye){var nt=ye.previousSibling,Ot=ye.nextSibling;return nt?nt.nextSibling=Ot:Ee.firstChild=Ot,Ot?Ot.previousSibling=nt:Ee.lastChild=nt,Fe(Ee.ownerDocument,Ee),ye}function kt(Ee,ye,nt){var Ot=ye.parentNode;if(Ot&&Ot.removeChild(ye),ye.nodeType===et){var un=ye.firstChild;if(null==un)return ye;var Un=ye.lastChild}else un=Un=ye;var Vn=nt?nt.previousSibling:Ee.lastChild;un.previousSibling=Vn,Un.nextSibling=nt,Vn?Vn.nextSibling=un:Ee.firstChild=un,null==nt?Ee.lastChild=Un:nt.previousSibling=Un;do{un.parentNode=Ee}while(un!==Un&&(un=un.nextSibling));return Fe(Ee.ownerDocument||Ee,Ee),ye.nodeType==et&&(ye.firstChild=ye.lastChild=null),ye}function Ye(){this._nsMap={}}function ct(){}function dt(){}function Nt(){}function Zt(){}function Kt(){}function we(){}function q(){}function re(){}function je(){}function ut(){}function nn(){}function Yt(){}function an(Ee,ye){var nt=[],Ot=9==this.nodeType&&this.documentElement||this,un=Ot.prefix,Un=Ot.namespaceURI;if(Un&&null==un&&null==(un=Ot.lookupPrefix(Un)))var Vn=[{namespace:Un,prefix:null}];return Dn(this,nt,Ee,ye,Vn),nt.join("")}function zt(Ee,ye,nt){var Ot=Ee.prefix||"",un=Ee.namespaceURI;if(!un||"xml"===Ot&&un===C.XML||un===C.XMLNS)return!1;for(var Un=nt.length;Un--;){var Vn=nt[Un];if(Vn.prefix===Ot)return Vn.namespace!==un}return!0}function Pn(Ee,ye,nt){Ee.push(" ",ye,'="',nt.replace(/[<&"]/g,at),'"')}function Dn(Ee,ye,nt,Ot,un){if(un||(un=[]),Ot){if(!(Ee=Ot(Ee)))return;if("string"==typeof Ee)return void ye.push(Ee)}switch(Ee.nodeType){case ae:var Un=Ee.attributes,Vn=Un.length,yn=Ee.firstChild,Fi=Ee.tagName,Cr=Fi;if(!(nt=C.isHTML(Ee.namespaceURI)||nt)&&!Ee.prefix&&Ee.namespaceURI){for(var Lr,qi=0;qi=0;Oi--){if(""===(At=un[Oi]).prefix&&At.namespace===Ee.namespaceURI){Lr=At.namespace;break}}if(Lr!==Ee.namespaceURI)for(Oi=un.length-1;Oi>=0;Oi--){var At;if((At=un[Oi]).namespace===Ee.namespaceURI){At.prefix&&(Cr=At.prefix+":"+Fi);break}}}ye.push("<",Cr);for(var ue=0;ue"),nt&&/^script$/i.test(Fi))for(;yn;)yn.data?ye.push(yn.data):Dn(yn,ye,nt,Ot,un.slice()),yn=yn.nextSibling;else for(;yn;)Dn(yn,ye,nt,Ot,un.slice()),yn=yn.nextSibling;ye.push("")}else ye.push("/>");return;case pe:case et:for(yn=Ee.firstChild;yn;)Dn(yn,ye,nt,Ot,un.slice()),yn=yn.nextSibling;return;case be:return Pn(ye,Ee.name,Ee.value);case Be:return ye.push(Ee.data.replace(/[<&]/g,at).replace(/]]>/g,"]]>"));case Ne:return ye.push("");case de:return ye.push("\x3c!--",Ee.data,"--\x3e");case Pe:var In=Ee.publicId,qn=Ee.systemId;if(ye.push("");else if(qn&&"."!=qn)ye.push(" SYSTEM ",qn,">");else{var oi=Ee.internalSubset;oi&&ye.push(" [",oi,"]"),ye.push(">")}return;case fe:return ye.push("");case ke:return ye.push("&",Ee.nodeName,";");default:ye.push("??",Ee.nodeName)}}function $n(Ee,ye,nt){var Ot;switch(ye.nodeType){case ae:(Ot=ye.cloneNode(!1)).ownerDocument=Ee;case et:break;case be:nt=!0}if(Ot||(Ot=ye.cloneNode(!1)),Ot.ownerDocument=Ee,Ot.parentNode=null,nt)for(var un=ye.firstChild;un;)Ot.appendChild($n(Ee,un,nt)),un=un.nextSibling;return Ot}function vn(Ee,ye,nt){var Ot=new ye.constructor;for(var un in ye){var Un=ye[un];"object"!=typeof Un&&Un!=Ot[un]&&(Ot[un]=Un)}switch(ye.childNodes&&(Ot.childNodes=new Qt),Ot.ownerDocument=Ee,Ot.nodeType){case ae:var Vn=ye.attributes,Fi=Ot.attributes=new Ln,Cr=Vn.length;Fi._ownerElement=Ot;for(var Lr=0;Lr0},lookupPrefix:function(Ee){for(var ye=this;ye;){var nt=ye._nsMap;if(nt)for(var Ot in nt)if(nt[Ot]==Ee)return Ot;ye=ye.nodeType==be?ye.ownerDocument:ye.parentNode}return null},lookupNamespaceURI:function(Ee){for(var ye=this;ye;){var nt=ye._nsMap;if(nt&&Ee in nt)return nt[Ee];ye=ye.nodeType==be?ye.ownerDocument:ye.parentNode}return null},isDefaultNamespace:function(Ee){return null==this.lookupPrefix(Ee)}},$(R,Et),$(R,Et.prototype),Xt.prototype={nodeName:"#document",nodeType:pe,doctype:null,documentElement:null,_inc:1,insertBefore:function(Ee,ye){if(Ee.nodeType==et){for(var nt=Ee.firstChild;nt;){var Ot=nt.nextSibling;this.insertBefore(nt,ye),nt=Ot}return Ee}return null==this.documentElement&&Ee.nodeType==ae&&(this.documentElement=Ee),kt(this,Ee,ye),Ee.ownerDocument=this,Ee},removeChild:function(Ee){return this.documentElement==Ee&&(this.documentElement=null),Me(this,Ee)},importNode:function(Ee,ye){return $n(this,Ee,ye)},getElementById:function(Ee){var ye=null;return fn(this.documentElement,function(nt){if(nt.nodeType==ae&&nt.getAttribute("id")==Ee)return ye=nt,!0}),ye},getElementsByClassName:function(Ee){var ye=G(Ee);return new Rt(this,function(nt){var Ot=[];return ye.length>0&&fn(nt.documentElement,function(un){if(un!==nt&&un.nodeType===ae){var Un=un.getAttribute("class");if(Un){var Vn=Ee===Un;if(!Vn){var Fi=G(Un);Vn=ye.every(function K(Ee){return function(ye){return Ee&&-1!==Ee.indexOf(ye)}}(Fi))}Vn&&Ot.push(un)}}}),Ot})},createElement:function(Ee){var ye=new Ye;return ye.ownerDocument=this,ye.nodeName=Ee,ye.tagName=Ee,ye.localName=Ee,ye.childNodes=new Qt,(ye.attributes=new Ln)._ownerElement=ye,ye},createDocumentFragment:function(){var Ee=new ut;return Ee.ownerDocument=this,Ee.childNodes=new Qt,Ee},createTextNode:function(Ee){var ye=new Nt;return ye.ownerDocument=this,ye.appendData(Ee),ye},createComment:function(Ee){var ye=new Zt;return ye.ownerDocument=this,ye.appendData(Ee),ye},createCDATASection:function(Ee){var ye=new Kt;return ye.ownerDocument=this,ye.appendData(Ee),ye},createProcessingInstruction:function(Ee,ye){var nt=new nn;return nt.ownerDocument=this,nt.tagName=nt.target=Ee,nt.nodeValue=nt.data=ye,nt},createAttribute:function(Ee){var ye=new ct;return ye.ownerDocument=this,ye.name=Ee,ye.nodeName=Ee,ye.localName=Ee,ye.specified=!0,ye},createEntityReference:function(Ee){var ye=new je;return ye.ownerDocument=this,ye.nodeName=Ee,ye},createElementNS:function(Ee,ye){var nt=new Ye,Ot=ye.split(":"),un=nt.attributes=new Ln;return nt.childNodes=new Qt,nt.ownerDocument=this,nt.nodeName=ye,nt.tagName=ye,nt.namespaceURI=Ee,2==Ot.length?(nt.prefix=Ot[0],nt.localName=Ot[1]):nt.localName=ye,un._ownerElement=nt,nt},createAttributeNS:function(Ee,ye){var nt=new ct,Ot=ye.split(":");return nt.ownerDocument=this,nt.nodeName=ye,nt.name=ye,nt.namespaceURI=Ee,nt.specified=!0,2==Ot.length?(nt.prefix=Ot[0],nt.localName=Ot[1]):nt.localName=ye,nt}},le(Xt,Et),Ye.prototype={nodeType:ae,hasAttribute:function(Ee){return null!=this.getAttributeNode(Ee)},getAttribute:function(Ee){var ye=this.getAttributeNode(Ee);return ye&&ye.value||""},getAttributeNode:function(Ee){return this.attributes.getNamedItem(Ee)},setAttribute:function(Ee,ye){var nt=this.ownerDocument.createAttribute(Ee);nt.value=nt.nodeValue=""+ye,this.setAttributeNode(nt)},removeAttribute:function(Ee){var ye=this.getAttributeNode(Ee);ye&&this.removeAttributeNode(ye)},appendChild:function(Ee){return Ee.nodeType===et?this.insertBefore(Ee,null):function qt(Ee,ye){var nt=ye.parentNode;if(nt){var Ot=Ee.lastChild;nt.removeChild(ye),Ot=Ee.lastChild}return Ot=Ee.lastChild,ye.parentNode=Ee,ye.previousSibling=Ot,ye.nextSibling=null,Ot?Ot.nextSibling=ye:Ee.firstChild=ye,Ee.lastChild=ye,Fe(Ee.ownerDocument,Ee,ye),ye}(this,Ee)},setAttributeNode:function(Ee){return this.attributes.setNamedItem(Ee)},setAttributeNodeNS:function(Ee){return this.attributes.setNamedItemNS(Ee)},removeAttributeNode:function(Ee){return this.attributes.removeNamedItem(Ee.nodeName)},removeAttributeNS:function(Ee,ye){var nt=this.getAttributeNodeNS(Ee,ye);nt&&this.removeAttributeNode(nt)},hasAttributeNS:function(Ee,ye){return null!=this.getAttributeNodeNS(Ee,ye)},getAttributeNS:function(Ee,ye){var nt=this.getAttributeNodeNS(Ee,ye);return nt&&nt.value||""},setAttributeNS:function(Ee,ye,nt){var Ot=this.ownerDocument.createAttributeNS(Ee,ye);Ot.value=Ot.nodeValue=""+nt,this.setAttributeNode(Ot)},getAttributeNodeNS:function(Ee,ye){return this.attributes.getNamedItemNS(Ee,ye)},getElementsByTagName:function(Ee){return new Rt(this,function(ye){var nt=[];return fn(ye,function(Ot){Ot!==ye&&Ot.nodeType==ae&&("*"===Ee||Ot.tagName==Ee)&&nt.push(Ot)}),nt})},getElementsByTagNameNS:function(Ee,ye){return new Rt(this,function(nt){var Ot=[];return fn(nt,function(un){un!==nt&&un.nodeType===ae&&("*"===Ee||un.namespaceURI===Ee)&&("*"===ye||un.localName==ye)&&Ot.push(un)}),Ot})}},Xt.prototype.getElementsByTagName=Ye.prototype.getElementsByTagName,Xt.prototype.getElementsByTagNameNS=Ye.prototype.getElementsByTagNameNS,le(Ye,Et),ct.prototype.nodeType=be,le(ct,Et),dt.prototype={data:"",substringData:function(Ee,ye){return this.data.substring(Ee,Ee+ye)},appendData:function(Ee){Ee=this.data+Ee,this.nodeValue=this.data=Ee,this.length=Ee.length},insertData:function(Ee,ye){this.replaceData(Ee,0,ye)},appendChild:function(Ee){throw new Error(Ie[Z])},deleteData:function(Ee,ye){this.replaceData(Ee,ye,"")},replaceData:function(Ee,ye,nt){nt=this.data.substring(0,Ee)+nt+this.data.substring(Ee+ye),this.nodeValue=this.data=nt,this.length=nt.length}},le(dt,Et),Nt.prototype={nodeName:"#text",nodeType:Be,splitText:function(Ee){var ye=this.data,nt=ye.substring(Ee);ye=ye.substring(0,Ee),this.data=this.nodeValue=ye,this.length=ye.length;var Ot=this.ownerDocument.createTextNode(nt);return this.parentNode&&this.parentNode.insertBefore(Ot,this.nextSibling),Ot}},le(Nt,dt),Zt.prototype={nodeName:"#comment",nodeType:de},le(Zt,dt),Kt.prototype={nodeName:"#cdata-section",nodeType:Ne},le(Kt,dt),we.prototype.nodeType=Pe,le(we,Et),q.prototype.nodeType=$e,le(q,Et),re.prototype.nodeType=Re,le(re,Et),je.prototype.nodeType=ke,le(je,Et),ut.prototype.nodeName="#document-fragment",ut.prototype.nodeType=et,le(ut,Et),nn.prototype.nodeType=fe,le(nn,Et),Yt.prototype.serializeToString=function(Ee,ye,nt){return an.call(Ee,ye,nt)},Et.prototype.toString=an;try{if(Object.defineProperty){let Ee=function(ye){switch(ye.nodeType){case ae:case et:var nt=[];for(ye=ye.firstChild;ye;)7!==ye.nodeType&&8!==ye.nodeType&&nt.push(Ee(ye)),ye=ye.nextSibling;return nt.join("");default:return ye.nodeValue}};Object.defineProperty(Rt.prototype,"length",{get:function(){return _n(this),this.$$length}}),Object.defineProperty(Et.prototype,"textContent",{get:function(){return Ee(this)},set:function(ye){switch(this.nodeType){case ae:case et:for(;this.firstChild;)this.removeChild(this.firstChild);(ye||String(ye))&&this.appendChild(this.ownerDocument.createTextNode(ye));break;default:this.data=ye,this.value=ye,this.nodeValue=ye}}}),vi=function(ye,nt,Ot){ye["$$"+nt]=Ot}}}catch{}_e.DocumentType=we,_e.DOMException=Bt,_e.DOMImplementation=lt,_e.Element=Ye,_e.Node=Et,_e.NodeList=Qt,_e.XMLSerializer=Yt},8448:(vt,_e,w)=>{var t=w(8558).freeze;_e.XML_ENTITIES=t({amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}),_e.HTML_ENTITIES=t({lt:"<",gt:">",amp:"&",quot:'"',apos:"'",Agrave:"\xc0",Aacute:"\xc1",Acirc:"\xc2",Atilde:"\xc3",Auml:"\xc4",Aring:"\xc5",AElig:"\xc6",Ccedil:"\xc7",Egrave:"\xc8",Eacute:"\xc9",Ecirc:"\xca",Euml:"\xcb",Igrave:"\xcc",Iacute:"\xcd",Icirc:"\xce",Iuml:"\xcf",ETH:"\xd0",Ntilde:"\xd1",Ograve:"\xd2",Oacute:"\xd3",Ocirc:"\xd4",Otilde:"\xd5",Ouml:"\xd6",Oslash:"\xd8",Ugrave:"\xd9",Uacute:"\xda",Ucirc:"\xdb",Uuml:"\xdc",Yacute:"\xdd",THORN:"\xde",szlig:"\xdf",agrave:"\xe0",aacute:"\xe1",acirc:"\xe2",atilde:"\xe3",auml:"\xe4",aring:"\xe5",aelig:"\xe6",ccedil:"\xe7",egrave:"\xe8",eacute:"\xe9",ecirc:"\xea",euml:"\xeb",igrave:"\xec",iacute:"\xed",icirc:"\xee",iuml:"\xef",eth:"\xf0",ntilde:"\xf1",ograve:"\xf2",oacute:"\xf3",ocirc:"\xf4",otilde:"\xf5",ouml:"\xf6",oslash:"\xf8",ugrave:"\xf9",uacute:"\xfa",ucirc:"\xfb",uuml:"\xfc",yacute:"\xfd",thorn:"\xfe",yuml:"\xff",nbsp:"\xa0",iexcl:"\xa1",cent:"\xa2",pound:"\xa3",curren:"\xa4",yen:"\xa5",brvbar:"\xa6",sect:"\xa7",uml:"\xa8",copy:"\xa9",ordf:"\xaa",laquo:"\xab",not:"\xac",shy:"\xad\xad",reg:"\xae",macr:"\xaf",deg:"\xb0",plusmn:"\xb1",sup2:"\xb2",sup3:"\xb3",acute:"\xb4",micro:"\xb5",para:"\xb6",middot:"\xb7",cedil:"\xb8",sup1:"\xb9",ordm:"\xba",raquo:"\xbb",frac14:"\xbc",frac12:"\xbd",frac34:"\xbe",iquest:"\xbf",times:"\xd7",divide:"\xf7",forall:"\u2200",part:"\u2202",exist:"\u2203",empty:"\u2205",nabla:"\u2207",isin:"\u2208",notin:"\u2209",ni:"\u220b",prod:"\u220f",sum:"\u2211",minus:"\u2212",lowast:"\u2217",radic:"\u221a",prop:"\u221d",infin:"\u221e",ang:"\u2220",and:"\u2227",or:"\u2228",cap:"\u2229",cup:"\u222a",int:"\u222b",there4:"\u2234",sim:"\u223c",cong:"\u2245",asymp:"\u2248",ne:"\u2260",equiv:"\u2261",le:"\u2264",ge:"\u2265",sub:"\u2282",sup:"\u2283",nsub:"\u2284",sube:"\u2286",supe:"\u2287",oplus:"\u2295",otimes:"\u2297",perp:"\u22a5",sdot:"\u22c5",Alpha:"\u0391",Beta:"\u0392",Gamma:"\u0393",Delta:"\u0394",Epsilon:"\u0395",Zeta:"\u0396",Eta:"\u0397",Theta:"\u0398",Iota:"\u0399",Kappa:"\u039a",Lambda:"\u039b",Mu:"\u039c",Nu:"\u039d",Xi:"\u039e",Omicron:"\u039f",Pi:"\u03a0",Rho:"\u03a1",Sigma:"\u03a3",Tau:"\u03a4",Upsilon:"\u03a5",Phi:"\u03a6",Chi:"\u03a7",Psi:"\u03a8",Omega:"\u03a9",alpha:"\u03b1",beta:"\u03b2",gamma:"\u03b3",delta:"\u03b4",epsilon:"\u03b5",zeta:"\u03b6",eta:"\u03b7",theta:"\u03b8",iota:"\u03b9",kappa:"\u03ba",lambda:"\u03bb",mu:"\u03bc",nu:"\u03bd",xi:"\u03be",omicron:"\u03bf",pi:"\u03c0",rho:"\u03c1",sigmaf:"\u03c2",sigma:"\u03c3",tau:"\u03c4",upsilon:"\u03c5",phi:"\u03c6",chi:"\u03c7",psi:"\u03c8",omega:"\u03c9",thetasym:"\u03d1",upsih:"\u03d2",piv:"\u03d6",OElig:"\u0152",oelig:"\u0153",Scaron:"\u0160",scaron:"\u0161",Yuml:"\u0178",fnof:"\u0192",circ:"\u02c6",tilde:"\u02dc",ensp:"\u2002",emsp:"\u2003",thinsp:"\u2009",zwnj:"\u200c",zwj:"\u200d",lrm:"\u200e",rlm:"\u200f",ndash:"\u2013",mdash:"\u2014",lsquo:"\u2018",rsquo:"\u2019",sbquo:"\u201a",ldquo:"\u201c",rdquo:"\u201d",bdquo:"\u201e",dagger:"\u2020",Dagger:"\u2021",bull:"\u2022",hellip:"\u2026",permil:"\u2030",prime:"\u2032",Prime:"\u2033",lsaquo:"\u2039",rsaquo:"\u203a",oline:"\u203e",euro:"\u20ac",trade:"\u2122",larr:"\u2190",uarr:"\u2191",rarr:"\u2192",darr:"\u2193",harr:"\u2194",crarr:"\u21b5",lceil:"\u2308",rceil:"\u2309",lfloor:"\u230a",rfloor:"\u230b",loz:"\u25ca",spades:"\u2660",clubs:"\u2663",hearts:"\u2665",diams:"\u2666"}),_e.entityMap=_e.HTML_ENTITIES},9936:(vt,_e,w)=>{var C=w(2979);C.DOMImplementation,C.XMLSerializer,_e.DOMParser=w(5317).DOMParser},5524:(vt,_e,w)=>{var t=w(8558).NAMESPACE,C=/[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,F=new RegExp("[\\-\\.0-9"+C.source.slice(1,-1)+"\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"),U=new RegExp("^"+C.source+F.source+"*(?::"+C.source+F.source+"*)?$");function Be(T,Z){this.message=T,this.locator=Z,Error.captureStackTrace&&Error.captureStackTrace(this,Be)}function Ne(){}function Re(T,Z){return Z.lineNumber=T.lineNumber,Z.columnNumber=T.columnNumber,Z}function fe(T,Z,Ce,Te,Qe,st){function bt(on,Bt,Qt){Ce.attributeNames.hasOwnProperty(on)&&st.fatalError("Attribute "+on+" redefined"),Ce.addValue(on,Bt,Qt)}for(var Tt,Dt=++Z,Mt=0;;){var St=T.charAt(Dt);switch(St){case"=":if(1===Mt)Tt=T.slice(Z,Dt),Mt=3;else{if(2!==Mt)throw new Error("attribute equal must after attrName");Mt=3}break;case"'":case'"':if(3===Mt||1===Mt){if(1===Mt&&(st.warning('attribute value must after "="'),Tt=T.slice(Z,Dt)),Z=Dt+1,!((Dt=T.indexOf(St,Z))>0))throw new Error("attribute value no end '"+St+"' match");bt(Tt,wt=T.slice(Z,Dt).replace(/&#?\w+;/g,Qe),Z-1),Mt=5}else{if(4!=Mt)throw new Error('attribute value must after "="');bt(Tt,wt=T.slice(Z,Dt).replace(/&#?\w+;/g,Qe),Z),st.warning('attribute "'+Tt+'" missed start quot('+St+")!!"),Z=Dt+1,Mt=5}break;case"/":switch(Mt){case 0:Ce.setTagName(T.slice(Z,Dt));case 5:case 6:case 7:Mt=7,Ce.closed=!0;case 4:case 1:case 2:break;default:throw new Error("attribute invalid close char('/')")}break;case"":return st.error("unexpected end of input"),0==Mt&&Ce.setTagName(T.slice(Z,Dt)),Dt;case">":switch(Mt){case 0:Ce.setTagName(T.slice(Z,Dt));case 5:case 6:case 7:break;case 4:case 1:"/"===(wt=T.slice(Z,Dt)).slice(-1)&&(Ce.closed=!0,wt=wt.slice(0,-1));case 2:2===Mt&&(wt=Tt),4==Mt?(st.warning('attribute "'+wt+'" missed quot(")!'),bt(Tt,wt.replace(/&#?\w+;/g,Qe),Z)):((!t.isHTML(Te[""])||!wt.match(/^(?:disabled|checked|selected)$/i))&&st.warning('attribute "'+wt+'" missed value!! "'+wt+'" instead!!'),bt(wt,wt,Z));break;case 3:throw new Error("attribute value missed!!")}return Dt;case"\x80":St=" ";default:if(St<=" ")switch(Mt){case 0:Ce.setTagName(T.slice(Z,Dt)),Mt=6;break;case 1:Tt=T.slice(Z,Dt),Mt=2;break;case 4:var wt=T.slice(Z,Dt).replace(/&#?\w+;/g,Qe);st.warning('attribute "'+wt+'" missed quot(")!!'),bt(Tt,wt,Z);case 5:Mt=6}else switch(Mt){case 2:Ce.tagName;(!t.isHTML(Te[""])||!Tt.match(/^(?:disabled|checked|selected)$/i))&&st.warning('attribute "'+Tt+'" missed value!! "'+Tt+'" instead2!!'),bt(Tt,Tt,Z),Z=Dt,Mt=1;break;case 5:st.warning('attribute space is required"'+Tt+'"!!');case 6:Mt=1,Z=Dt;break;case 3:Mt=4,Z=Dt;break;case 7:throw new Error("elements closed character '/' and '>' must be connected to")}}Dt++}}function de(T,Z,Ce){for(var Te=T.tagName,Qe=null,St=T.length;St--;){var st=T[St],bt=st.qName,Tt=st.value;if((Gt=bt.indexOf(":"))>0)var wt=st.prefix=bt.slice(0,Gt),Dt=bt.slice(Gt+1),Mt="xmlns"===wt&&Dt;else Dt=bt,wt=null,Mt="xmlns"===bt&&"";st.localName=Dt,!1!==Mt&&(null==Qe&&(Qe={},et(Ce,Ce={})),Ce[Mt]=Qe[Mt]=Tt,st.uri=t.XMLNS,Z.startPrefixMapping(Mt,Tt))}for(St=T.length;St--;){(wt=(st=T[St]).prefix)&&("xml"===wt&&(st.uri=t.XML),"xmlns"!==wt&&(st.uri=Ce[wt||""]))}var Gt;(Gt=Te.indexOf(":"))>0?(wt=T.prefix=Te.slice(0,Gt),Dt=T.localName=Te.slice(Gt+1)):(wt=null,Dt=T.localName=Te);var on=T.uri=Ce[wt||""];if(Z.startElement(on,Dt,Te,T),!T.closed)return T.currentNSMap=Ce,T.localNSMap=Qe,!0;if(Z.endElement(on,Dt,Te),Qe)for(wt in Qe)Z.endPrefixMapping(wt)}function pe(T,Z,Ce,Te,Qe){if(/^(?:script|textarea)$/i.test(Ce)){var st=T.indexOf("",Z),bt=T.substring(Z+1,st);if(/[&<]/.test(bt))return/^script$/i.test(Ce)?(Qe.characters(bt,0,bt.length),st):(bt=bt.replace(/&#?\w+;/g,Te),Qe.characters(bt,0,bt.length),st)}return Z+1}function Pe(T,Z,Ce,Te){var Qe=Te[Ce];return null==Qe&&((Qe=T.lastIndexOf(""))Z?(Ce.comment(T,Z+4,st-Z-4),st+3):(Te.error("Unclosed comment"),-1):-1;if("CDATA["==T.substr(Z+3,6)){var st=T.indexOf("]]>",Z+9);return Ce.startCDATA(),Ce.characters(T,Z+9,st-Z-9),Ce.endCDATA(),st+3}var bt=function He(T,Z){var Ce,Te=[],Qe=/'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;for(Qe.lastIndex=Z,Qe.exec(T);Ce=Qe.exec(T);)if(Te.push(Ce),Ce[1])return Te}(T,Z),Tt=bt.length;if(Tt>1&&/!doctype/i.test(bt[0][0])){var wt=bt[1][0],Dt=!1,Mt=!1;Tt>3&&(/^public$/i.test(bt[2][0])?(Dt=bt[3][0],Mt=Tt>4&&bt[4][0]):/^system$/i.test(bt[2][0])&&(Mt=bt[3][0]));var St=bt[Tt-1];return Ce.startDTD(wt,Dt,Mt),Ce.endDTD(),St.index+St[0].length}return-1}function We(T,Z,Ce){var Te=T.indexOf("?>",Z);if(Te){var Qe=T.substring(Z,Te).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);if(Qe){Qe[0].length;return Ce.processingInstruction(Qe[1],Qe[2]),Te+2}return-1}return-1}function Ie(){this.attributeNames={}}Be.prototype=new Error,Be.prototype.name=Be.name,Ne.prototype={parse:function(T,Z,Ce){var Te=this.domBuilder;Te.startDocument(),et(Z,Z={}),function ke(T,Z,Ce,Te,Qe){function st(qt){if(qt>65535){var Ye=55296+((qt-=65536)>>10),ct=56320+(1023&qt);return String.fromCharCode(Ye,ct)}return String.fromCharCode(qt)}function bt(qt){var Ye=qt.slice(1,-1);return Ye in Ce?Ce[Ye]:"#"===Ye.charAt(0)?st(parseInt(Ye.substr(1).replace("x","0x"))):(Qe.error("entity not found:"+qt),qt)}function Tt(qt){if(qt>Qt){var Ye=T.substring(Qt,qt).replace(/&#?\w+;/g,bt);Gt&&wt(Qt),Te.characters(Ye,0,qt-Qt),Qt=qt}}function wt(qt,Ye){for(;qt>=Mt&&(Ye=St.exec(T));)Dt=Ye.index,Mt=Dt+Ye[0].length,Gt.lineNumber++;Gt.columnNumber=qt-Dt+1}for(var Dt=0,Mt=0,St=/.*(?:\r\n?|\n)|.*$/g,Gt=Te.locator,on=[{currentNSMap:Z}],Bt={},Qt=0;;){try{var Rt=T.indexOf("<",Qt);if(Rt<0){if(!T.substr(Qt).match(/^\s*$/)){var _n=Te.doc,Ln=_n.createTextNode(T.substr(Qt));_n.appendChild(Ln),Te.currentElement=Ln}return}switch(Rt>Qt&&Tt(Rt),T.charAt(Rt+1)){case"/":var Ge=T.indexOf(">",Rt+3),ie=T.substring(Rt+2,Ge).replace(/[ \t\n\r]+$/g,""),yt=on.pop();Ge<0?(ie=T.substring(Rt+2).replace(/[\s<].*/,""),Qe.error("end tag name: "+ie+" is not complete:"+yt.tagName),Ge=Rt+1+ie.length):ie.match(/\sQt?Qt=Ge:Tt(Math.max(Rt,Qt)+1)}}(T,Z,Ce,Te,this.errorHandler),Te.endDocument()}},Ie.prototype={setTagName:function(T){if(!U.test(T))throw new Error("invalid tagName:"+T);this.tagName=T},addValue:function(T,Z,Ce){if(!U.test(T))throw new Error("invalid attribute:"+T);this.attributeNames[T]=this.length,this[this.length++]={qName:T,value:Z,offset:Ce}},length:0,getLocalName:function(T){return this[T].localName},getLocator:function(T){return this[T].locator},getQName:function(T){return this[T].qName},getURI:function(T){return this[T].uri},getValue:function(T){return this[T].value}},_e.XMLReader=Ne,_e.ParseError=Be},6855:(vt,_e,w)=>{"use strict";function t(Q){if(!Q)return[];if(Array.isArray(Q))return Q;if(void 0!==Q.nodeType)return[Q];if("string"==typeof Q&&(Q=document.querySelectorAll(Q)),void 0!==Q.length)return[].slice.call(Q,0);throw new TypeError("unexpected input "+String(Q))}function C(Q){var V=Q.context,he=Q.label,Le=void 0===he?"context-to-element":he,Ve=Q.resolveDocument,Ct=Q.defaultToDocument,cn=t(V)[0];if(Ve&&cn&&cn.nodeType===Node.DOCUMENT_NODE&&(cn=cn.documentElement),!cn&&Ct)return document.documentElement;if(!cn)throw new TypeError(Le+" requires valid options.context");if(cn.nodeType!==Node.ELEMENT_NODE&&cn.nodeType!==Node.DOCUMENT_FRAGMENT_NODE)throw new TypeError(Le+" requires options.context to be an Element");return cn}function F(){for(var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=[],Le=C({label:"get/parents",context:V});Le;)he.push(Le),(Le=Le.parentNode)&&Le.nodeType!==Node.ELEMENT_NODE&&(Le=null);return he}w.d(_e,{Z:()=>Lo});var U=["matches","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector"],N=null;function K(Q,V){return N||function G(Q){U.some(function(V){return!!Q[V]&&(N=V,!0)})}(Q),Q[N](V)}var $=w(834),le=w.n($),R=JSON.parse(JSON.stringify(le())),ae=R.os.family||"",be="Android"===ae,Be="Windows"===ae.slice(0,7),Ne="OS X"===ae,ke="iOS"===ae,Re="Blink"===R.layout,fe="Gecko"===R.layout,de="Trident"===R.layout,pe="EdgeHTML"===R.layout,Pe="WebKit"===R.layout,et=parseFloat(R.version),$e=Math.floor(et);R.majorVersion=$e,R.is={ANDROID:be,WINDOWS:Be,OSX:Ne,IOS:ke,BLINK:Re,GECKO:fe,TRIDENT:de,EDGE:pe,WEBKIT:Pe,IE9:de&&9===$e,IE10:de&&10===$e,IE11:de&&11===$e};const We=R;function Z(Q){var V=function Ie(){var Q={activeElement:document.activeElement,windowScrollTop:window.scrollTop,windowScrollLeft:window.scrollLeft,bodyScrollTop:document.body.scrollTop,bodyScrollLeft:document.body.scrollLeft},V=document.createElement("iframe");V.setAttribute("style","position:absolute; position:fixed; top:0; left:-2px; width:1px; height:1px; overflow:hidden;"),V.setAttribute("aria-live","off"),V.setAttribute("aria-busy","true"),V.setAttribute("aria-hidden","true"),document.body.appendChild(V);var he=V.contentWindow,Le=he.document;Le.open(),Le.close();var Ve=Le.createElement("div");return Le.body.appendChild(Ve),Q.iframe=V,Q.wrapper=Ve,Q.window=he,Q.document=Le,Q}(),he={};return Object.keys(Q).map(function(Le){he[Le]=function He(Q,V){Q.wrapper.innerHTML="";var he="string"==typeof V.element?Q.document.createElement(V.element):V.element(Q.wrapper,Q.document),Le=V.mutate&&V.mutate(he,Q.wrapper,Q.document);return!Le&&!1!==Le&&(Le=he),!he.parentNode&&Q.wrapper.appendChild(he),Le&&Le.focus&&Le.focus(),V.validate?V.validate(he,Le,Q.document):Q.document.activeElement===Le}(V,Q[Le])}),function T(Q){Q.activeElement===document.body?(document.activeElement&&document.activeElement.blur&&document.activeElement.blur(),We.is.IE10&&document.body.focus()):Q.activeElement&&Q.activeElement.focus&&Q.activeElement.focus(),document.body.removeChild(Q.iframe),window.scrollTop=Q.windowScrollTop,window.scrollLeft=Q.windowScrollLeft,document.body.scrollTop=Q.bodyScrollTop,document.body.scrollLeft=Q.bodyScrollLeft}(V),he}var bt=typeof window<"u"&&window.navigator.userAgent||"",Tt="ally-supports-cache",wt=function Qe(Q){var V=void 0;try{V=(V=window.localStorage&&window.localStorage.getItem(Q))?JSON.parse(V):{}}catch{V={}}return V}(Tt);(wt.userAgent!==bt||"1.4.1"!==wt.version)&&(wt={}),wt.userAgent=bt,wt.version="1.4.1";const Dt_get=function(){return wt},Dt_set=function(V){Object.keys(V).forEach(function(he){wt[he]=V[he]}),wt.time=(new Date).toISOString(),function st(Q,V){if(document.hasFocus())try{window.localStorage&&window.localStorage.setItem(Q,JSON.stringify(V))}catch{}else try{window.localStorage&&window.localStorage.removeItem(Q)}catch{}}(Tt,wt)};function Mt(){var Q=void 0;try{document.querySelector("html >>> :first-child"),Q=">>>"}catch{try{document.querySelector("html /deep/ :first-child"),Q="/deep/"}catch{Q=""}}return Q}const St="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",Gt={element:"div",mutate:function(V){return V.innerHTML='',V.querySelector("area")}},on={element:"div",mutate:function(V){return V.innerHTML='',!1},validate:function(V,he,Le){if(We.is.GECKO)return!0;var Ve=V.querySelector("area");return Ve.focus(),Le.activeElement===Ve}},Bt={element:"div",mutate:function(V){return V.innerHTML='',V.querySelector("area")},validate:function(V,he,Le){return!!We.is.GECKO||Le.activeElement===he}},Rt={name:"can-focus-audio-without-controls",element:"audio",mutate:function(V){try{V.setAttribute("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}catch{}}},Ln={element:"div",mutate:function(V){return V.innerHTML='',V.querySelector("area")}},at={element:"a",mutate:function(V){return V.href="#void",V.innerHTML='',V.querySelector("img")}},fn={element:"div",mutate:function(V){return V.innerHTML='',V.querySelector("img")}};var Ge=!We.is.WEBKIT;const kt="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBpZD0ic3ZnIj48dGV4dCB4PSIxMCIgeT0iMjAiIGlkPSJzdmctbGluay10ZXh0Ij50ZXh0PC90ZXh0Pjwvc3ZnPg==",qt={element:"object",mutate:function(V){V.setAttribute("type","image/svg+xml"),V.setAttribute("data",kt),V.setAttribute("width","200"),V.setAttribute("height","50"),V.style.visibility="hidden"}},Ye={name:"can-focus-object-svg",element:"object",mutate:function(V){V.setAttribute("type","image/svg+xml"),V.setAttribute("data",kt),V.setAttribute("width","200"),V.setAttribute("height","50")},validate:function(V,he,Le){return!!We.is.GECKO||Le.activeElement===V}};var ct=!We.is.IE9;const Nt={element:"div",mutate:function(V){return V.innerHTML='',V.querySelector("img")},validate:function(V,he,Le){var Ve=V.querySelector("area");return Le.activeElement===Ve}};function ut(Q){if(!(Q.ownerSVGElement||"svg"===Q.nodeName.toLowerCase()))return!1;var he=function je(){var Q=document.createElement("div");return Q.innerHTML='\n \n ',Q.firstChild.firstChild}();Q.appendChild(he);var Le=he.querySelector("input");return Le.focus(),Le.disabled=!0,Q.removeChild(he),!0}function nn(Q){return''+Q+""}function an(Q,V,he){return function Yt(Q){if(!Q.focus)try{HTMLElement.prototype.focus.call(Q)}catch{ut(Q)}}(V),he.activeElement===V}const zt={element:"div",mutate:function(V){return V.innerHTML=nn('a'),V.querySelector("text")},validate:an},Pn={element:"div",mutate:function(V){return V.innerHTML=nn('a'),V.querySelector("text")},validate:an},Dn={element:"div",mutate:function(V){return V.innerHTML=nn('a'),V.querySelector("text")},validate:an},$n={element:"div",mutate:function(V){return V.innerHTML=nn(['link',''].join("")),V.querySelector("use")},validate:an},vn={element:"div",mutate:function(V){return V.innerHTML=nn(''),V.querySelector("foreignObject")||V.getElementsByTagName("foreignObject")[0]},validate:an};var vi=Boolean(We.is.GECKO&&typeof SVGElement<"u"&&SVGElement.prototype.focus);const Ee={element:"div",mutate:function(V){return V.innerHTML=nn(""),V.firstChild},validate:an},un={element:"video",mutate:function(V){try{V.setAttribute("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}catch{}}};var Un=We.is.GECKO||We.is.TRIDENT||We.is.EDGE;var Fi={cssShadowPiercingDeepCombinator:Mt,focusInZeroDimensionObject:function Je(){return Ge},focusObjectSwf:function dt(){return ct},focusSvgInIframe:function Ir(){return vi},tabsequenceAreaAtImgPosition:function Vn(){return Un}},Cr={focusAreaImgTabindex:Gt,focusAreaTabindex:on,focusAreaWithoutHref:Bt,focusAudioWithoutControls:Rt,focusBrokenImageMap:Ln,focusChildrenOfFocusableFlexbox:{element:"div",mutate:function(V){return V.setAttribute("tabindex","-1"),V.setAttribute("style","display: -webkit-flex; display: -ms-flexbox; display: flex;"),V.innerHTML='hello',V.querySelector("span")}},focusFieldsetDisabled:{element:"fieldset",mutate:function(V){V.setAttribute("tabindex",0),V.setAttribute("disabled","disabled")}},focusFieldset:{element:"fieldset",mutate:function(V){V.innerHTML="legend

content

"}},focusFlexboxContainer:{element:"span",mutate:function(V){V.setAttribute("style","display: -webkit-flex; display: -ms-flexbox; display: flex;"),V.innerHTML='hello'}},focusFormDisabled:{element:"form",mutate:function(V){V.setAttribute("tabindex",0),V.setAttribute("disabled","disabled")}},focusImgIsmap:at,focusImgUsemapTabindex:fn,focusInHiddenIframe:{element:function(V,he){var Le=he.createElement("iframe");V.appendChild(Le);var Ve=Le.contentWindow.document;return Ve.open(),Ve.close(),Le},mutate:function(V){V.style.visibility="hidden";var he=V.contentWindow.document,Le=he.createElement("input");return he.body.appendChild(Le),Le},validate:function(V){var he=V.contentWindow.document,Le=he.querySelector("input");return he.activeElement===Le}},focusInvalidTabindex:{element:"div",mutate:function(V){V.setAttribute("tabindex","invalid-value")}},focusLabelTabindex:{element:"label",mutate:function(V){V.setAttribute("tabindex","-1")},validate:function(V,he,Le){V.offsetHeight;return V.focus(),Le.activeElement===V}},focusObjectSvg:Ye,focusObjectSvgHidden:qt,focusRedirectImgUsemap:Nt,focusRedirectLegend:{element:"fieldset",mutate:function(V){return V.innerHTML='legend',!1},validate:function(V,he,Le){var Ve=V.querySelector('input[tabindex="-1"]'),Ct=V.querySelector('input[tabindex="0"]');return V.focus(),V.querySelector("legend").focus(),(Le.activeElement===Ve?"focusable":Le.activeElement===Ct&&"tabbable")||""}},focusScrollBody:{element:"div",mutate:function(V){return V.setAttribute("style","width: 100px; height: 50px; overflow: auto;"),V.innerHTML='
scrollable content
',V.querySelector("div")}},focusScrollContainerWithoutOverflow:{element:"div",mutate:function(V){V.setAttribute("style","width: 100px; height: 50px;"),V.innerHTML='
scrollable content
'}},focusScrollContainer:{element:"div",mutate:function(V){V.setAttribute("style","width: 100px; height: 50px; overflow: auto;"),V.innerHTML='
scrollable content
'}},focusSummary:{element:"details",mutate:function(V){return V.innerHTML="foo

content

",V.firstElementChild}},focusSvgFocusableAttribute:zt,focusSvgTabindexAttribute:Pn,focusSvgNegativeTabindexAttribute:Dn,focusSvgUseTabindex:$n,focusSvgForeignobjectTabindex:vn,focusSvg:Ee,focusTabindexTrailingCharacters:{element:"div",mutate:function(V){V.setAttribute("tabindex","3x")}},focusTable:{element:"table",mutate:function(V,he,Le){var Ve=Le.createDocumentFragment();Ve.innerHTML="cell",V.appendChild(Ve)}},focusVideoWithoutControls:un};var qi=null;function Oi(){return qi||((qi=Dt_get()).time||(Dt_set(function Lr(){var Q=Z(Cr);return Object.keys(Fi).forEach(function(V){Q[V]=Fi[V]()}),Q}()),qi=Dt_get()),qi)}var At=void 0,ue=/^\s*(-|\+)?[0-9]+\s*$/,ze=/^\s*(-|\+)?[0-9]+.*$/;function It(Q){At||(At=Oi());var V=At.focusTabindexTrailingCharacters?ze:ue,he=C({label:"is/valid-tabindex",resolveDocument:!0,context:Q}),Le=he.hasAttribute("tabindex"),Ve=he.hasAttribute("tabIndex");if(!Le&&!Ve)return!1;if((he.ownerSVGElement||"svg"===he.nodeName.toLowerCase())&&!At.focusSvgTabindexAttribute)return!1;if(At.focusInvalidTabindex)return!0;var cn=he.getAttribute(Le?"tabindex":"tabIndex");return"-32768"!==cn&&Boolean(cn&&V.test(cn))}function sn(Q){if(!It(Q))return null;var he=Q.hasAttribute("tabindex")?"tabindex":"tabIndex",Le=parseInt(Q.getAttribute(he),10);return isNaN(Le)?-1:Le}function yn(Q){var V=Q.webkitUserModify||"";return Boolean(V&&-1!==V.indexOf("write"))}function In(Q){return[Q.getPropertyValue("overflow"),Q.getPropertyValue("overflow-x"),Q.getPropertyValue("overflow-y")].some(function(V){return"auto"===V||"scroll"===V})}function qn(Q){return Q.display.indexOf("flex")>-1}function oi(Q,V,he,Le){return!("div"!==V&&"span"!==V||he&&"div"!==he&&"span"!==he&&!In(Le))&&(Q.offsetHeight0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.except,Le=void 0===he?{flexbox:!1,scrollable:!1,shadow:!1}:he;ai||(ai=Oi());var Ve=C({label:"is/focus-relevant",resolveDocument:!0,context:V});if(!Le.shadow&&Ve.shadowRoot)return!0;var Ct=Ve.nodeName.toLowerCase();if("input"===Ct&&"hidden"===Ve.type)return!1;if("input"===Ct||"select"===Ct||"button"===Ct||"textarea"===Ct||"legend"===Ct&&ai.focusRedirectLegend||"label"===Ct||"area"===Ct||"a"===Ct&&Ve.hasAttribute("href"))return!0;if("object"===Ct&&Ve.hasAttribute("usemap"))return!1;if("object"===Ct){var cn=Ve.getAttribute("type");if(!ai.focusObjectSvg&&"image/svg+xml"===cn)return!1;if(!ai.focusObjectSwf&&"application/x-shockwave-flash"===cn)return!1}if("iframe"===Ct||"object"===Ct||"embed"===Ct||"keygen"===Ct||Ve.hasAttribute("contenteditable")||"audio"===Ct&&(ai.focusAudioWithoutControls||Ve.hasAttribute("controls"))||"video"===Ct&&(ai.focusVideoWithoutControls||Ve.hasAttribute("controls"))||ai.focusSummary&&"summary"===Ct)return!0;var Hn=It(Ve);if("img"===Ct&&Ve.hasAttribute("usemap"))return Hn&&ai.focusImgUsemapTabindex||ai.focusRedirectImgUsemap;if(ai.focusTable&&("table"===Ct||"td"===Ct)||ai.focusFieldset&&"fieldset"===Ct)return!0;var Kn="svg"===Ct,Yn=Ve.ownerSVGElement,Ki=Ve.getAttribute("focusable"),Zi=sn(Ve);if("use"===Ct&&null!==Zi&&!ai.focusSvgUseTabindex)return!1;if("foreignobject"===Ct)return null!==Zi&&ai.focusSvgForeignobjectTabindex;if(K(Ve,"svg a")&&Ve.hasAttribute("xlink:href"))return!0;if((Kn||Yn)&&Ve.focus&&!ai.focusSvgNegativeTabindexAttribute&&Zi<0)return!1;if(Kn)return Hn||ai.focusSvg||ai.focusSvgInIframe||Boolean(ai.focusSvgFocusableAttribute&&Ki&&"true"===Ki);if(Yn){if(ai.focusSvgTabindexAttribute&&Hn)return!0;if(ai.focusSvgFocusableAttribute)return"true"===Ki}if(Hn)return!0;var kr=window.getComputedStyle(Ve,null);if(yn(kr))return!0;if(ai.focusImgIsmap&&"img"===Ct&&Ve.hasAttribute("ismap")){var Da=F({context:Ve}).some(function(Wa){return"a"===Wa.nodeName.toLowerCase()&&Wa.hasAttribute("href")});if(Da)return!0}if(!Le.scrollable&&ai.focusScrollContainer)if(ai.focusScrollContainerWithoutOverflow){if(oi(Ve,Ct))return!0}else if(In(kr))return!0;if(!Le.flexbox&&ai.focusFlexboxContainer&&qn(kr))return!0;var tr=Ve.parentElement;if(!Le.scrollable&&tr){var Jn=tr.nodeName.toLowerCase(),po=window.getComputedStyle(tr,null);if(ai.focusScrollBody&&oi(tr,Ct,Jn,po)||ai.focusChildrenOfFocusableFlexbox&&qn(po))return!0}return!1}Xi.except=function(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=function(Le){return Xi({context:Le,except:Q})};return V.rules=Xi,V};const rn=Xi.except({});function zn(Q,V){if(Q.findIndex)return Q.findIndex(V);var he=Q.length;if(0===he)return-1;for(var Le=0;Le0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.except,Le=void 0===he?{notRendered:!1,cssDisplay:!1,cssVisibility:!1,detailsElement:!1,browsingContext:!1}:he,Ve=C({label:"is/visible",resolveDocument:!0,context:V}),Ct=Ve.nodeName.toLowerCase();if(!Le.notRendered&&Bn.test(Ct))return!0;var cn=F({context:Ve}),Hn="audio"===Ct&&!Ve.hasAttribute("controls");if(!Le.cssDisplay&&cr(Hn?cn.slice(1):cn)||!Le.cssVisibility&&ko(cn)||!Le.detailsElement&&gi(cn))return!1;if(!Le.browsingContext){var Kn=pi(Ve),Yn=Si.except(Le);if(Kn&&!Yn(Kn))return!1}return!0}Si.except=function(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=function(Le){return Si({context:Le,except:Q})};return V.rules=Si,V};const Sr=Si.except({});var Wi=w(6260),Ko=w.n(Wi);function No(Q,V){return V.querySelector('map[name="'+Ko()(Q)+'"]')||null}function Yo(Q){var V=Q.parentElement;return V.name&&"map"===V.nodeName.toLowerCase()&&Bi(Q).querySelector('img[usemap="#'+Ko()(V.name)+'"]')||null}var $r=void 0;var Wr=void 0,dr=void 0,Pr={input:!0,select:!0,textarea:!0,button:!0,fieldset:!0,form:!0};function or(Q){Wr||((Wr=Oi()).focusFieldsetDisabled&&delete Pr.fieldset,Wr.focusFormDisabled&&delete Pr.form,dr=new RegExp("^("+Object.keys(Pr).join("|")+")$"));var he=C({label:"is/native-disabled-supported",context:Q}).nodeName.toLowerCase();return Boolean(dr.test(he))}var fr=void 0;function er(Q){return"fieldset"===Q.nodeName.toLowerCase()&&Q.disabled}function Or(Q){return"form"===Q.nodeName.toLowerCase()&&Q.disabled}function Xr(Q){fr||(fr=Oi());var V=C({label:"is/disabled",context:Q});if(V.hasAttribute("data-ally-disabled"))return!0;if(!or(V))return!1;if(V.disabled)return!0;var he=F({context:V});return!!(he.some(er)||!fr.focusFormDisabled&&he.some(Or))}function eo(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.except,Le=void 0===he?{onlyFocusableBrowsingContext:!1,visible:!1}:he,Ve=C({label:"is/only-tabbable",resolveDocument:!0,context:V});if(!Le.visible&&!Sr(Ve))return!1;if(!Le.onlyFocusableBrowsingContext&&(We.is.GECKO||We.is.TRIDENT||We.is.EDGE)){var Ct=pi(Ve);if(Ct&&sn(Ct)<0)return!1}var cn=Ve.nodeName.toLowerCase(),Hn=sn(Ve);return"label"===cn&&We.is.GECKO?null!==Hn&&Hn>=0:!!(We.is.GECKO&&Ve.ownerSVGElement&&!Ve.focus&&"a"===cn&&Ve.hasAttribute("xlink:href")&&We.is.GECKO)}eo.except=function(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=function(Le){return eo({context:Le,except:Q})};return V.rules=eo,V};const yr=eo.except({});var bi=void 0;function Jo(Q){var V=Q.nodeName.toLowerCase();if("embed"===V||"keygen"===V)return!0;var he=sn(Q);if(Q.shadowRoot&&null===he)return!0;if("label"===V)return!bi.focusLabelTabindex||null===he;if("legend"===V)return null===he;if(bi.focusSvgFocusableAttribute&&(Q.ownerSVGElement||"svg"===V)){var Le=Q.getAttribute("focusable");return Le&&"false"===Le}return"img"===V&&Q.hasAttribute("usemap")?null===he||!bi.focusImgUsemapTabindex:"area"===V&&!function Mo(Q){$r||($r=Oi());var V=C({label:"is/valid-area",context:Q});if("area"!==V.nodeName.toLowerCase())return!1;var Le=V.hasAttribute("tabindex");if(!$r.focusAreaTabindex&&Le)return!1;var Ve=Yo(V);return!(!Ve||!Sr(Ve)||!$r.focusBrokenImageMap&&(!Ve.complete||!Ve.naturalHeight||Ve.offsetWidth<=0||Ve.offsetHeight<=0))&&($r.focusAreaWithoutHref||V.href?!F({context:Ve}).slice(1).some(function(cn){var Hn=cn.nodeName.toLowerCase();return"button"===Hn||"a"===Hn}):$r.focusAreaTabindex&&Le||$r.focusAreaImgTabindex&&Ve.hasAttribute("tabindex"))}(Q)}function Tn(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.except,Le=void 0===he?{disabled:!1,visible:!1,onlyTabbable:!1}:he;bi||(bi=Oi());var Ve=yr.rules.except({onlyFocusableBrowsingContext:!0,visible:Le.visible}),Ct=C({label:"is/focusable",resolveDocument:!0,context:V}),cn=rn.rules({context:Ct,except:Le});if(!cn||Jo(Ct)||!Le.disabled&&Xr(Ct)||!Le.onlyTabbable&&Ve(Ct))return!1;if(!Le.visible){var Hn={context:Ct,except:{}};if(bi.focusInHiddenIframe&&(Hn.except.browsingContext=!0),bi.focusObjectSvgHidden){var Kn=Ct.nodeName.toLowerCase();"object"===Kn&&(Hn.except.cssVisibility=!0)}if(!Sr.rules(Hn))return!1}var Yn=pi(Ct);if(Yn){var Ki=Yn.nodeName.toLowerCase();if(!("object"!==Ki||bi.focusInZeroDimensionObject||Yn.offsetWidth&&Yn.offsetHeight))return!1}var Zi=Ct.nodeName.toLowerCase();return!("svg"===Zi&&bi.focusSvgInIframe&&!Yn&&null===Ct.getAttribute("tabindex"))}Tn.except=function(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=function(Le){return Tn({context:Le,except:Q})};return V.rules=Tn,V};const $o=Tn.except({});function Ii(Q){var V=function(Le){return Le.shadowRoot||Q(Le)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP};return V.acceptNode=V,V}var Fo=Ii(rn);function xo(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.includeContext,Le=Q.includeOnlyTabbable,Ve=Q.strategy;V||(V=document.documentElement);for(var Ct=$o.rules.except({onlyTabbable:Le}),cn=Bi(V),Hn=cn.createTreeWalker(V,NodeFilter.SHOW_ELEMENT,"all"===Ve?Fo:Ii(Ct),!1),Kn=[];Hn.nextNode();)Hn.currentNode.shadowRoot?(Ct(Hn.currentNode)&&Kn.push(Hn.currentNode),Kn=Kn.concat(xo({context:Hn.currentNode.shadowRoot,includeOnlyTabbable:Le,strategy:Ve}))):Kn.push(Hn.currentNode);return he&&("all"===Ve?rn(V)&&Kn.unshift(V):Ct(V)&&Kn.unshift(V)),Kn}var pr=void 0,qo=void 0;function Xo(){return pr||(pr=Oi()),"string"==typeof qo||(qo=Ai(qo=(pr.focusTable?"table, td,":"")+(pr.focusFieldset?"fieldset,":"")+"svg a,a[href],area[href],input, select, textarea, button,iframe, object, embed,keygen,"+(pr.focusAudioWithoutControls?"audio,":"audio[controls],")+(pr.focusVideoWithoutControls?"video,":"video[controls],")+(pr.focusSummary?"summary,":"")+"[tabindex],[contenteditable]")),qo}function oo(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.includeContext,Le=Q.includeOnlyTabbable,Ve=Xo(),Ct=V.querySelectorAll(Ve),cn=$o.rules.except({onlyTabbable:Le}),Hn=[].filter.call(Ct,cn);return he&&cn(V)&&Hn.unshift(V),Hn}function Bo(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.includeContext,Le=Q.includeOnlyTabbable,Ve=Q.strategy,Ct=void 0===Ve?"quick":Ve,cn=C({label:"query/focusable",resolveDocument:!0,defaultToDocument:!0,context:V}),Hn={context:cn,includeContext:he,includeOnlyTabbable:Le,strategy:Ct};if("quick"===Ct)return oo(Hn);if("strict"===Ct||"all"===Ct)return xo(Hn);throw new TypeError('query/focusable requires option.strategy to be one of ["quick", "strict", "all"]')}function Br(Q){var V=Q.element,he=Q.attribute,Le="data-cached-"+he;if(null===V.getAttribute(Le)){var Ct=V.getAttribute(he);if(null===Ct)return;V.setAttribute(Le,Ct||""),V.removeAttribute(he)}else{var cn=V.getAttribute(Le);V.removeAttribute(Le),V.setAttribute(he,cn)}}function ao(Q){var V=Q.element,he=Q.attribute,Le=Q.temporaryValue,Ve=Q.saveValue,Ct="data-cached-"+he;if(void 0!==Le){var cn=Ve||V.getAttribute(he);V.setAttribute(Ct,cn||""),V.setAttribute(he,Le)}else{var Hn=V.getAttribute(Ct);V.removeAttribute(Ct),""===Hn?V.removeAttribute(he):V.setAttribute(he,Hn)}}var ti=function(){};const Ar=typeof console<"u"?console:{log:ti,debug:ti,info:ti,warn:ti,error:ti};var br=void 0;function Ps(){Ar.warn("trying to focus inert element",this)}function Kr(Q,V){(function go(Q,V){ao({element:Q,attribute:"aria-disabled",temporaryValue:V?"true":void 0})})(Q,V),function Qr(Q,V){if(V){var he=sn(Q);ao({element:Q,attribute:"tabindex",temporaryValue:"-1",saveValue:null!==he?he:""})}else ao({element:Q,attribute:"tabindex"})}(Q,V),function Os(Q,V){V?Q.focus=Ps:delete Q.focus}(Q,V),function hs(Q,V){if(V){var he=Q.style.pointerEvents||"";Q.setAttribute("data-inert-pointer-events",he),Q.style.pointerEvents="none"}else{var Le=Q.getAttribute("data-inert-pointer-events");Q.removeAttribute("data-inert-pointer-events"),Q.style.pointerEvents=Le}}(Q,V);var he=Q.nodeName.toLowerCase();("video"===he||"audio"===he)&&function ts(Q,V){Br({element:Q,attribute:"controls",remove:V})}(Q,V),("svg"===he||Q.ownerSVGElement)&&(br.focusSvgFocusableAttribute?function fa(Q,V){ao({element:Q,attribute:"focusable",temporaryValue:V?"false":void 0})}(Q,V):!br.focusSvgTabindexAttribute&&"a"===he&&function To(Q,V){Br({element:Q,attribute:"xlink:href",remove:V})}(Q,V)),V?Q.setAttribute("data-ally-disabled","true"):Q.removeAttribute("data-ally-disabled")}function gs(Q,V){br||(br=Oi());var he=C({label:"element/disabled",context:Q});V=Boolean(V);var Le=he.hasAttribute("data-ally-disabled"),Ve=1===arguments.length;return or(he)?Ve?he.disabled:(he.disabled=V,he):Ve?Le:(Le===V||Kr(he,V),he)}var so=function(V){return V.shadowRoot?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP};function ea(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=C({label:"query/shadow-hosts",resolveDocument:!0,defaultToDocument:!0,context:V}),Le=Bi(V),Ve=Le.createTreeWalker(he,NodeFilter.SHOW_ELEMENT,so,!1),Ct=[];for(he.shadowRoot&&(Ct.push(he),Ct=Ct.concat(ea({context:he.shadowRoot})));Ve.nextNode();)Ct.push(Ve.currentNode),Ct=Ct.concat(ea({context:Ve.currentNode.shadowRoot}));return Ct}so.acceptNode=so;var ki="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(Q){return typeof Q}:function(Q){return Q&&"function"==typeof Symbol&&Q.constructor===Symbol&&Q!==Symbol.prototype?"symbol":typeof Q},Eo=function(){function Q(V,he){for(var Le=0;Le0&&void 0!==arguments[0]?arguments[0]:{},Le=he.context,Ve=he.callback,Ct=he.config;Io(this,Q),this.config=Ct,this.disengage=this.disengage.bind(this),this.clientObserver=new MutationObserver(Ve),this.hostObserver=new MutationObserver(function(cn){return cn.forEach(V.handleHostMutation,V)}),this.observeContext(Le),this.observeShadowHosts(Le)}return Eo(Q,[{key:"disengage",value:function(){this.clientObserver&&this.clientObserver.disconnect(),this.clientObserver=null,this.hostObserver&&this.hostObserver.disconnect(),this.hostObserver=null}},{key:"observeShadowHosts",value:function(he){var Le=this;ea({context:he}).forEach(function(Ct){return Le.observeContext(Ct.shadowRoot)})}},{key:"observeContext",value:function(he){this.clientObserver.observe(he,this.config),this.hostObserver.observe(he,Ro)}},{key:"handleHostMutation",value:function(he){"childList"===he.type&&t(he.addedNodes).filter(function(Ve){return Ve.nodeType===Node.ELEMENT_NODE}).forEach(this.observeShadowHosts,this)}}]),Q}();function ns(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.callback,Le=Q.config;if("function"!=typeof he)throw new TypeError("observe/shadow-mutations requires options.callback to be a function");if("object"!==(typeof Le>"u"?"undefined":ki(Le)))throw new TypeError("observe/shadow-mutations requires options.config to be an object");if(!window.MutationObserver)return{disengage:function(){}};var Ve=C({label:"observe/shadow-mutations",resolveDocument:!0,defaultToDocument:!0,context:V}),Ct=new hr({context:Ve,callback:he,config:Le});return{disengage:Ct.disengage}}function Li(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.parent,he=Q.element,Le=Q.includeSelf;if(V)return function(Ct){return Boolean(Le&&Ct===V||V.compareDocumentPosition(Ct)&Node.DOCUMENT_POSITION_CONTAINED_BY)};if(he)return function(Ct){return Boolean(Le&&he===Ct||Ct.compareDocumentPosition(he)&Node.DOCUMENT_POSITION_CONTAINED_BY)};throw new TypeError("util/compare-position#getParentComparator required either options.parent or options.element")}var _i=function(){function Q(V,he){for(var Le=0;Le0&&void 0!==arguments[0]?arguments[0]:{},Le=he.context,Ve=he.filter;lo(this,Q),this._context=t(Le||document.documentElement)[0],this._filter=t(Ve),this._inertElementCache=[],this.disengage=this.disengage.bind(this),this.handleMutation=this.handleMutation.bind(this),this.renderInert=this.renderInert.bind(this),this.filterElements=this.filterElements.bind(this),this.filterParentElements=this.filterParentElements.bind(this);var Ct=Bo({context:this._context,includeContext:!0,strategy:"all"});this.renderInert(Ct),this.shadowObserver=ns({context:this._context,config:ms,callback:function(Hn){return Hn.forEach(V.handleMutation)}})}return _i(Q,[{key:"disengage",value:function(){!this._context||(ui(this._context),this._inertElementCache.forEach(function(he){return ui(he)}),this._inertElementCache=null,this._filter=null,this._context=null,this.shadowObserver&&this.shadowObserver.disengage(),this.shadowObserver=null)}},{key:"listQueryFocusable",value:function(he){return he.map(function(Le){return Bo({context:Le,includeContext:!0,strategy:"all"})}).reduce(function(Le,Ve){return Le.concat(Ve)},[])}},{key:"renderInert",value:function(he){var Le=this;he.filter(this.filterElements).filter(this.filterParentElements).filter(function(Ct){return!gs(Ct)}).forEach(function(cn){Le._inertElementCache.push(cn),function Za(Q){return gs(Q,!0)}(cn)})}},{key:"filterElements",value:function(he){var Le=Li({element:he,includeSelf:!0});return!this._filter.some(Le)}},{key:"filterParentElements",value:function(he){var Le=Li({parent:he});return!this._filter.some(Le)}},{key:"handleMutation",value:function(he){if("childList"===he.type){var Le=t(he.addedNodes).filter(function(Ct){return Ct.nodeType===Node.ELEMENT_NODE});if(!Le.length)return;var Ve=this.listQueryFocusable(Le);this.renderInert(Ve)}else"attributes"===he.type&&this.renderInert([he.target])}}]),Q}();function ci(Q){var V=Q.context,he=Q.filter,Ve=[],Ct=function(Yn){return he.some(function(Ki){return Yn===Ki})?NodeFilter.FILTER_REJECT:function(Yn){var Ki=Li({parent:Yn});return he.some(Ki)}(Yn)?NodeFilter.FILTER_ACCEPT:(Ve.push(Yn),NodeFilter.FILTER_REJECT)};Ct.acceptNode=Ct;for(var Hn=Bi(V).createTreeWalker(V,NodeFilter.SHOW_ELEMENT,Ct,!1);Hn.nextNode(););return Ve}function Ga(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.filter;if(V=C({label:"get/insignificant-branches",defaultToDocument:!0,context:V}),!(he=t(he)).length)throw new TypeError("get/insignificant-branches requires valid options.filter");return ci({context:V,filter:he})}var mo=function(){function Q(V,he){for(var Le=0;Le0&&void 0!==arguments[0]?arguments[0]:{},he=V.context,Le=V.filter;uo(this,Q),this._context=t(he||document.documentElement)[0],this._filter=t(Le),this.disengage=this.disengage.bind(this),this.handleMutation=this.handleMutation.bind(this),this.isInsignificantBranch=this.isInsignificantBranch.bind(this);var Ve=Ga({context:this._context,filter:this._filter});Ve.forEach(zi),this.startObserver()}return mo(Q,[{key:"disengage",value:function(){!this._context||([].forEach.call(this._context.querySelectorAll("[data-cached-aria-hidden]"),Ea),this._context=null,this._filter=null,this._observer&&this._observer.disconnect(),this._observer=null)}},{key:"startObserver",value:function(){var he=this;!window.MutationObserver||(this._observer=new MutationObserver(function(Le){return Le.forEach(he.handleMutation)}),this._observer.observe(this._context,Ia))}},{key:"handleMutation",value:function(he){"childList"===he.type&&t(he.addedNodes).filter(function(Le){return Le.nodeType===Node.ELEMENT_NODE}).filter(this.isInsignificantBranch).forEach(zi)}},{key:"isInsignificantBranch",value:function(he){if(F({context:he}).some(function(Ct){return"true"===Ct.getAttribute("aria-hidden")}))return!1;var Ve=Li({element:he});return!this._filter.some(Ve)}}]),Q}();function Rr(){for(var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=C({label:"get/shadow-host",context:V}),Le=null;he;)Le=he,he=he.parentNode;return Le.nodeType===Le.DOCUMENT_FRAGMENT_NODE&&Le.host?Le.host:null}function ha(Q){var V=C({label:"is/active-element",resolveDocument:!0,context:Q});if(Bi(V).activeElement===V)return!0;var Le=Rr({context:V});return!(!Le||Le.shadowRoot.activeElement!==V)}var An=void 0,Mr=/^(fieldset|table|td|body)$/;function oe(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.except,Le=void 0===he?{flexbox:!1,scrollable:!1,shadow:!1,visible:!1,onlyTabbable:!1}:he;An||(An=Oi());var Ve=C({label:"is/tabbable",resolveDocument:!0,context:V});if(We.is.BLINK&&We.is.ANDROID&&We.majorVersion>42)return!1;var Ct=pi(Ve);if(Ct){if(We.is.WEBKIT&&We.is.IOS||sn(Ct)<0||!Le.visible&&(We.is.BLINK||We.is.WEBKIT)&&!Sr(Ct))return!1;var cn=Ct.nodeName.toLowerCase();if("object"===cn){var Hn="Chrome"===We.name&&We.majorVersion>=54||"Opera"===We.name&&We.majorVersion>=41;if(We.is.WEBKIT||We.is.BLINK&&!Hn)return!1}}var Kn=Ve.nodeName.toLowerCase(),Yn=sn(Ve),Ki=null===Yn?null:Yn>=0;if(We.is.EDGE&&We.majorVersion>=14&&Ct&&Ve.ownerSVGElement&&Yn<0)return!0;var Zi=!1!==Ki,kr=null!==Yn&&Yn>=0;if(Ve.hasAttribute("contenteditable"))return Zi;if(Mr.test(Kn)&&!0!==Ki)return!1;if(We.is.WEBKIT&&We.is.IOS){var Da="input"===Kn&&"text"===Ve.type||"password"===Ve.type||"select"===Kn||"textarea"===Kn||Ve.hasAttribute("contenteditable");if(!Da){var tr=window.getComputedStyle(Ve,null);Da=yn(tr)}if(!Da)return!1}if("use"===Kn&&null!==Yn&&(We.is.BLINK||We.is.WEBKIT&&9===We.majorVersion)||K(Ve,"svg a")&&Ve.hasAttribute("xlink:href")&&(Zi||Ve.focus&&!An.focusSvgNegativeTabindexAttribute)||"svg"===Kn&&An.focusSvgInIframe&&Zi)return!0;if(We.is.TRIDENT||We.is.EDGE){if("svg"===Kn)return!!An.focusSvg||(Ve.hasAttribute("focusable")||kr);if(Ve.ownerSVGElement)return!(!An.focusSvgTabindexAttribute||!kr)||Ve.hasAttribute("focusable")}if(void 0===Ve.tabIndex)return Boolean(Le.onlyTabbable);if("audio"===Kn){if(!Ve.hasAttribute("controls"))return!1;if(We.is.BLINK)return!0}if("video"===Kn)if(Ve.hasAttribute("controls")){if(We.is.BLINK||We.is.GECKO)return!0}else if(We.is.TRIDENT||We.is.EDGE)return!1;if("object"===Kn&&(We.is.BLINK||We.is.WEBKIT)||"iframe"===Kn)return!1;if(!Le.scrollable&&We.is.GECKO){var Jn=window.getComputedStyle(Ve,null);if(In(Jn))return Zi}if(We.is.TRIDENT||We.is.EDGE){if("area"===Kn){var po=Yo(Ve);if(po&&sn(po)<0)return!1}var Wa=window.getComputedStyle(Ve,null);if(yn(Wa))return Ve.tabIndex>=0;if(!Le.flexbox&&qn(Wa))return null!==Yn?kr:M(Ve)&&X(Ve);if(oi(Ve,Kn))return!1;var ma=Ve.parentElement;if(ma){var _o=ma.nodeName.toLowerCase(),Qa=window.getComputedStyle(ma,null);if(oi(ma,Kn,_o,Qa))return!1;if(qn(Qa))return kr}}return Ve.tabIndex>=0}oe.except=function(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=function(Le){return oe({context:Le,except:Q})};return V.rules=oe,V};var M=rn.rules.except({flexbox:!0}),X=oe.except({flexbox:!0});const $t=oe.except({});function hi(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.includeContext,Le=Q.includeOnlyTabbable,Ve=Q.strategy,Ct=$t.rules.except({onlyTabbable:Le});return Bo({context:V,includeContext:he,includeOnlyTabbable:Le,strategy:Ve}).filter(Ct)}function Yr(Q,V){return Q.compareDocumentPosition(V)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1}function Vt(Q){return Q.sort(Yr)}function Va(Q,V,he){var Le=[];return V.forEach(function(Ve){var Ct=!0,cn=Q.indexOf(Ve);-1===cn&&(cn=function Zn(Q,V){return zn(Q,function(he){return V.compareDocumentPosition(he)&Node.DOCUMENT_POSITION_FOLLOWING})}(Q,Ve),Ct=!1),-1===cn&&(cn=Q.length);var Hn=t(he?he(Ve):Ve);!Hn.length||Le.push({offset:cn,replace:Ct,elements:Hn})}),Le}function ks(Q,V){var he=0;V.sort(function(Le,Ve){return Le.offset-Ve.offset}),V.forEach(function(Le){var Ve=Le.replace?1:0,Ct=[Le.offset+he,Ve].concat(Le.elements);Q.splice.apply(Q,Ct),he+=Le.elements.length-Ve})}function Qi(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.list,he=Q.elements,Le=Q.resolveElement,Ve=V.slice(0),Ct=t(he).slice(0);Vt(Ct);var cn=Va(Ve,Ct,Le);return ks(Ve,cn),Ve}var ga=function(){function Q(V,he){for(var Le=0;Le-1?[he].concat(Le):Le}},{key:"_cleanup",value:function(){Object.keys(this.hosts).forEach(function(he){delete this.hosts[he]._sortingId},this)}}]),Q}();function al(Q,V,he){var Le=new fo(V,he),Ve=Le.extractElements(Q);return Ve.length===Q.length?he(Q):Le.sort(Ve)}var kn=void 0;function zo(Q,V){var he=Q.indexOf(V);return he>0?Q.splice(he,1).concat(Q):Q}function r1(Q,V){return kn.tabsequenceAreaAtImgPosition&&(Q=function La(Q,V){var he=V.querySelectorAll("img[usemap]"),Le=new to(V),Ve=Le.extractAreasFromList(Q);return he.length?Qi({list:Ve,elements:he,resolveElement:function(cn){var Hn=cn.getAttribute("usemap").slice(1);return Le.getAreasFor(Hn)}}):Ve}(Q,V)),Q=function i1(Q){var V={},he=[],Le=Q.filter(function(Ct){var cn=Ct.tabIndex;return void 0===cn&&(cn=sn(Ct)),cn<=0||null==cn||(V[cn]||(V[cn]=[],he.push(cn)),V[cn].push(Ct),!1)});return he.sort().map(function(Ct){return V[Ct]}).reduceRight(function(Ct,cn){return cn.concat(Ct)},Le)}(Q),Q}function na(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.includeContext,Le=Q.includeOnlyTabbable,Ve=Q.strategy;kn||(kn=Oi());var Ct=t(V)[0]||document.documentElement,cn=hi({context:Ct,includeContext:he,includeOnlyTabbable:Le,strategy:Ve});return cn=document.body.createShadowRoot&&We.is.BLINK?al(cn,Ct,r1):r1(cn,Ct),he&&(cn=zo(cn,Ct)),cn}for(var wr={tab:9,left:37,up:38,right:39,down:40,pageUp:33,"page-up":33,pageDown:34,"page-down":34,end:35,home:36,enter:13,escape:27,space:32,shift:16,capsLock:20,"caps-lock":20,ctrl:17,alt:18,meta:91,pause:19,insert:45,delete:46,backspace:8,_alias:{91:[92,93,224]}},_s=1;_s<26;_s++)wr["f"+_s]=_s+111;for(var wi=0;wi<10;wi++){var k=wi+48,x=wi+96;wr[wi]=k,wr["num-"+wi]=x,wr._alias[k]=[x]}for(var ne=0;ne<26;ne++){var Se=ne+65;wr[String.fromCharCode(Se).toLowerCase()]=Se}const Pt=wr;var pn={alt:"altKey",ctrl:"ctrlKey",meta:"metaKey",shift:"shiftKey"},On=Object.keys(pn).map(function(Q){return pn[Q]});function ei(Q,V){return!On.some(function(he){return"boolean"==typeof Q[he]&&Boolean(V[he])!==Q[he]})}function Ui(Q){return Q.split(/\s+/).map(function(V){var he=V.split("+"),Le=function di(Q){var he=function si(Q){var V=!!Q&&null;return{altKey:V,ctrlKey:V,metaKey:V,shiftKey:V}}(-1!==Q.indexOf("*"));return Q.forEach(function(Le){if("*"!==Le){var Ve=!0,Ct=Le.slice(0,1);"?"===Ct?Ve=null:"!"===Ct&&(Ve=!1),!0!==Ve&&(Le=Le.slice(1));var cn=pn[Le];if(!cn)throw new TypeError('Unknown modifier "'+Le+'"');he[cn]=Ve}}),he}(he.slice(0,-1)),Ve=function Ci(Q){var V=Pt[Q]||parseInt(Q,10);if(!V||"number"!=typeof V||isNaN(V))throw new TypeError('Unknown key "'+Q+'"');return[V].concat(Pt._alias[V]||[])}(he.slice(-1));return{keyCodes:Ve,modifiers:Le,matchModifiers:ei.bind(null,Le)}})}function fi(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V={},he=t(Q.context)[0]||document.documentElement;delete Q.context;var Le=t(Q.filter);delete Q.filter;var Ve=Object.keys(Q);if(!Ve.length)throw new TypeError("when/key requires at least one option key");var Ct=function(Yn){Yn.keyCodes.forEach(function(Ki){V[Ki]||(V[Ki]=[]),V[Ki].push(Yn)})};Ve.forEach(function(Kn){if("function"!=typeof Q[Kn])throw new TypeError('when/key requires option["'+Kn+'"] to be a function');Ui(Kn).map(function(Zi){return Zi.callback=Q[Kn],Zi}).forEach(Ct)});var cn=function(Yn){if(!Yn.defaultPrevented){if(Le.length){var Ki=Li({element:Yn.target,includeSelf:!0});if(Le.some(Ki))return}var Zi=Yn.keyCode||Yn.which;!V[Zi]||V[Zi].forEach(function(kr){!kr.matchModifiers(Yn)||kr.callback.call(he,Yn,Hn)})}};he.addEventListener("keydown",cn,!1);var Hn=function(){he.removeEventListener("keydown",cn,!1)};return{disengage:Hn}}const Lo={disabled:function Ha(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.filter,Le=new pa({context:V,filter:he});return{disengage:Le.disengage}},hidden:function co(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context,he=Q.filter,Le=new As({context:V,filter:he});return{disengage:Le.disengage}},tabFocus:function xr(){var Q=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},V=Q.context;return V||(V=document.documentElement),na(),fi({"?alt+?shift+tab":function(Le){Le.preventDefault();var Ve=na({context:V}),Ct=Le.shiftKey,cn=Ve[0],Hn=Ve[Ve.length-1],Yn=Ct?Hn:cn;if(ha(Ct?cn:Hn))Yn.focus();else{var Ki=void 0;if(Ve.some(function(Da,tr){return!!ha(Da)&&(Ki=tr,!0)}))Ve[Ki+(Ct?-1:1)].focus();else cn.focus()}}})}}},6260:function(vt){ +/*! https://mths.be/cssescape v1.5.1 by @mathias | MIT license */ +var _e;_e=typeof global<"u"?global:this,vt.exports=function(_e){if(_e.CSS&&_e.CSS.escape)return _e.CSS.escape;var w=function(t){if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");for(var N,C=String(t),F=C.length,U=-1,G="",K=C.charCodeAt(0);++U=1&&N<=31||127==N||0==U&&N>=48&&N<=57||1==U&&N>=48&&N<=57&&45==K?"\\"+N.toString(16)+" ":0==U&&1==F&&45==N||!(N>=128||45==N||95==N||N>=48&&N<=57||N>=65&&N<=90||N>=97&&N<=122)?"\\"+C.charAt(U):C.charAt(U):G+="\ufffd";return G};return _e.CSS||(_e.CSS={}),_e.CSS.escape=w,w}(_e)},7314:(vt,_e,w)=>{var F,t=typeof global<"u"?global:typeof window<"u"?window:{},C=w(5893);typeof document<"u"?F=document:(F=t["__GLOBAL_DOCUMENT_CACHE@4"])||(F=t["__GLOBAL_DOCUMENT_CACHE@4"]=C),vt.exports=F},1473:vt=>{var _e;_e=typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},vt.exports=_e},9880:vt=>{vt.exports=function w(t){if(!t)return!1;var C=_e.call(t);return"[object Function]"===C||"function"==typeof t&&"[object RegExp]"!==C||typeof window<"u"&&(t===window.setTimeout||t===window.alert||t===window.confirm||t===window.prompt)};var _e=Object.prototype.toString},8244:(vt,_e)=>{function w(G){if(G&&"object"==typeof G){var K=G.which||G.keyCode||G.charCode;K&&(G=K)}if("number"==typeof G)return U[G];var le,$=String(G);return(le=t[$.toLowerCase()])?le:(le=C[$.toLowerCase()])||(1===$.length?$.charCodeAt(0):void 0)}w.isEventKey=function(K,$){if(K&&"object"==typeof K){var le=K.which||K.keyCode||K.charCode;if(null==le)return!1;if("string"==typeof $){var R;if(R=t[$.toLowerCase()])return R===le;if(R=C[$.toLowerCase()])return R===le}else if("number"==typeof $)return $===le;return!1}};var t=(_e=vt.exports=w).code=_e.codes={backspace:8,tab:9,enter:13,shift:16,ctrl:17,alt:18,"pause/break":19,"caps lock":20,esc:27,space:32,"page up":33,"page down":34,end:35,home:36,left:37,up:38,right:39,down:40,insert:45,delete:46,command:91,"left command":91,"right command":93,"numpad *":106,"numpad +":107,"numpad -":109,"numpad .":110,"numpad /":111,"num lock":144,"scroll lock":145,"my computer":182,"my calculator":183,";":186,"=":187,",":188,"-":189,".":190,"/":191,"`":192,"[":219,"\\":220,"]":221,"'":222},C=_e.aliases={windows:91,"\u21e7":16,"\u2325":18,"\u2303":17,"\u2318":91,ctl:17,control:17,option:18,pause:19,break:19,caps:20,return:13,escape:27,spc:32,spacebar:32,pgup:33,pgdn:34,ins:45,del:46,cmd:91}; +/*! + * Programatically add the following + */for(F=97;F<123;F++)t[String.fromCharCode(F)]=F-32;for(var F=48;F<58;F++)t[F-48]=F;for(F=1;F<13;F++)t["f"+F]=F+111;for(F=0;F<10;F++)t["numpad "+F]=F+96;var U=_e.names=_e.title={};for(F in t)U[t[F]]=F;for(var N in C)t[N]=C[N]},9480:(vt,_e,w)=>{var t=w(8526).getUint64;vt.exports=function(F){var U=new DataView(F.buffer,F.byteOffset,F.byteLength),N={version:F[0],flags:new Uint8Array(F.subarray(1,4)),references:[],referenceId:U.getUint32(4),timescale:U.getUint32(8)},G=12;0===N.version?(N.earliestPresentationTime=U.getUint32(G),N.firstOffset=U.getUint32(G+4),G+=8):(N.earliestPresentationTime=t(F.subarray(G)),N.firstOffset=t(F.subarray(G+8)),G+=16),G+=2;var K=U.getUint16(G);for(G+=2;K>0;G+=12,K--)N.references.push({referenceType:(128&F[G])>>>7,referencedSize:2147483647&U.getUint32(G),subsegmentDuration:U.getUint32(G+4),startsWithSap:!!(128&F[G+8]),sapType:(112&F[G+8])>>>4,sapDeltaTime:268435455&U.getUint32(G+8)});return N}},9296:vt=>{var w,t,C,F,U,N,G;w=function(K){return 9e4*K},t=function(K,$){return K*$},C=function(K){return K/9e4},F=function(K,$){return K/$},U=function(K,$){return w(F(K,$))},N=function(K,$){return t(C(K),$)},G=function(K,$,le){return C(le?K:K-$)},vt.exports={ONE_SECOND_IN_TS:9e4,secondsToVideoTs:w,secondsToAudioTs:t,videoTsToSeconds:C,audioTsToSeconds:F,audioTsToVideoTs:U,videoTsToAudioTs:N,metadataTsToSeconds:G}},8526:vt=>{var _e=Math.pow(2,32);vt.exports={getUint64:function(t){var F,C=new DataView(t.buffer,t.byteOffset,t.byteLength);return C.getBigUint64?(F=C.getBigUint64(0)) + * Copyright 2014-2016 Benjamin Tan + * Copyright 2011-2013 John-David Dalton + * Available under MIT license + */vt=w.nmd(vt),function(){"use strict";var C={function:!0,object:!0},F=C[typeof window]&&window||this,U=F,N=C[typeof _e]&&_e,G=C.object&&vt&&!vt.nodeType&&vt,K=N&&G&&"object"==typeof global&&global;K&&(K.global===K||K.window===K||K.self===K)&&(F=K);var $=Math.pow(2,53)-1,le=/\bOpera/,R=this,ae=Object.prototype,be=ae.hasOwnProperty,Be=ae.toString;function Ne(T){return(T=String(T)).charAt(0).toUpperCase()+T.slice(1)}function fe(T){return T=We(T),/^(?:webOS|i(?:OS|P))/.test(T)?T:Ne(T)}function de(T,Z){for(var Ce in T)be.call(T,Ce)&&Z(T[Ce],Ce,T)}function pe(T){return null==T?Ne(T):Be.call(T).slice(8,-1)}function Pe(T,Z){var Ce=null!=T?typeof T[Z]:"number";return!(/^(?:boolean|number|string|undefined)$/.test(Ce)||"object"==Ce&&!T[Z])}function et(T){return String(T).replace(/([ -])(?!$)/g,"$1?")}function $e(T,Z){var Ce=null;return function Re(T,Z){var Ce=-1,Te=T?T.length:0;if("number"==typeof Te&&Te>-1&&Te<=$)for(;++Ce3?"WebKit":/\bOpera\b/.test(Ge)&&(/\bOPR\b/.test(T)?"Blink":"Presto"))||/\b(?:Midori|Nook|Safari)\b/i.test(T)&&!/^(?:Trident|EdgeHTML)$/.test(Xt)&&"WebKit"||!Xt&&/\bMSIE\b/i.test(T)&&("Mac OS"==Me?"Tasman":"Trident")||"WebKit"==Xt&&/\bPlayStation\b(?! Vita\b)/i.test(Ge)&&"NetFront")&&(Xt=[ie]),"IE"==Ge&&(ie=(/; *(?:XBLWP|ZuneWP)(\d+)/i.exec(T)||0)[1])?(Ge+=" Mobile",Me="Windows Phone "+(/\+$/.test(ie)?ie:ie+".x"),Xe.unshift("desktop mode")):/\bWPDesktop\b/i.test(T)?(Ge="IE Mobile",Me="Windows Phone 8.x",Xe.unshift("desktop mode"),at||(at=(/\brv:([\d.]+)/.exec(T)||0)[1])):"IE"!=Ge&&"Trident"==Xt&&(ie=/\brv:([\d.]+)/.exec(T))&&(Ge&&Xe.push("identifying as "+Ge+(at?" "+at:"")),Ge="IE",at=ie[1]),Et){if(Pe(Z,"global"))if(Gt&&(yt=(ie=Gt.lang.System).getProperty("os.arch"),Me=Me||ie.getProperty("os.name")+" "+ie.getProperty("os.version")),st&&Pe(Z,"system")&&(ie=[Z.system])[0]){Me||(Me=ie[0].os||null);try{ie[1]=Z.require("ringo/engine").version,at=ie[1].join("."),Ge="RingoJS"}catch{ie[0].global.system==Z.system&&(Ge="Narwhal")}}else"object"==typeof Z.process&&!Z.process.browser&&(ie=Z.process)?(Ge="Node.js",yt=ie.arch,Me=ie.platform,at=/[\d.]+/.exec(ie.version)[0]):on&&(Ge="Rhino");else pe(ie=Z.runtime)==wt?(Ge="Adobe AIR",Me=ie.flash.system.Capabilities.os):pe(ie=Z.phantom)==St?(Ge="PhantomJS",at=(ie=ie.version||null)&&ie.major+"."+ie.minor+"."+ie.patch):"number"==typeof Rt.documentMode&&(ie=/\bTrident\/(\d+)/i.exec(T))&&(at=[at,Rt.documentMode],(ie=+ie[1]+4)!=at[1]&&(Xe.push("IE "+at[1]+" mode"),Xt&&(Xt[1]=""),at[1]=ie),at="IE"==Ge?String(at[1].toFixed(1)):at[0]);Me=Me&&fe(Me)}at&&(ie=/(?:[ab]|dp|pre|[ab]\d+pre)(?:\d+\+?)?$/i.exec(at)||/(?:alpha|beta)(?: ?\d)?/i.exec(T+";"+(Et&&Te.appMinorVersion))||/\bMinefield\b/i.test(T)&&"a")&&(lt=/b/i.test(ie)?"beta":"alpha",at=at.replace(RegExp(ie+"\\+?$"),"")+("beta"==lt?Qt:Bt)+(/\d+\+?/.exec(ie)||"")),"Fennec"==Ge||"Firefox"==Ge&&/\b(?:Android|Firefox OS)\b/.test(Me)?Ge="Firefox Mobile":"Maxthon"==Ge&&at?at=at.replace(/\.[\d.]+/,".x"):/\bXbox\b/i.test(Je)?(Me=null,"Xbox 360"==Je&&/\bIEMobile\b/.test(T)&&Xe.unshift("mobile mode")):!/^(?:Chrome|IE|Opera)$/.test(Ge)&&(!Ge||Je||/Browser|Mobi/.test(Ge))||"Windows CE"!=Me&&!/Mobi/i.test(T)?"IE"==Ge&&Et&&null===Z.external?Xe.unshift("platform preview"):(/\bBlackBerry\b/.test(Je)||/\bBB10\b/.test(T))&&(ie=(RegExp(Je.replace(/ +/g," *")+"/([.\\d]+)","i").exec(T)||0)[1]||at)?(Me=((ie=[ie,/BB10/.test(T)])[1]?(Je=null,Fe="BlackBerry"):"Device Software")+" "+ie[0],at=null):this!=de&&"Wii"!=Je&&(Et&&_n||/Opera/.test(Ge)&&/\b(?:MSIE|Firefox)\b/i.test(T)||"Firefox"==Ge&&/\bOS X (?:\d+\.){2,}/.test(Me)||"IE"==Ge&&(Me&&!/^Win/.test(Me)&&at>5.5||/\bWindows XP\b/.test(Me)&&at>8||8==at&&!/\bTrident\b/.test(T)))&&!le.test(ie=Ie.call(de,T.replace(le,"")+";"))&&ie.name&&(ie="ing as "+ie.name+((ie=ie.version)?" "+ie:""),le.test(Ge)?(/\bIE\b/.test(ie)&&"Mac OS"==Me&&(Me=null),ie="identify"+ie):(ie="mask"+ie,Ge=Ln?fe(Ln.replace(/([a-z])([A-Z])/g,"$1 $2")):"Opera",/\bIE\b/.test(ie)&&(Me=null),Et||(at=null)),Xt=["Presto"],Xe.push(ie)):Ge+=" Mobile",(ie=(/\bAppleWebKit\/([\d.]+\+?)/i.exec(T)||0)[1])&&(ie=[parseFloat(ie.replace(/\.(\d)$/,".0$1")),ie],"Safari"==Ge&&"+"==ie[1].slice(-1)?(Ge="WebKit Nightly",lt="alpha",at=ie[1].slice(0,-1)):(at==ie[1]||at==(ie[2]=(/\bSafari\/([\d.]+\+?)/i.exec(T)||0)[1]))&&(at=null),ie[1]=(/\bChrome\/([\d.]+)/i.exec(T)||0)[1],537.36==ie[0]&&537.36==ie[2]&&parseFloat(ie[1])>=28&&"WebKit"==Xt&&(Xt=["Blink"]),Et&&(bt||ie[1])?(Xt&&(Xt[1]="like Chrome"),ie=ie[1]||((ie=ie[0])<530?1:ie<532?2:ie<532.05?3:ie<533?4:ie<534.03?5:ie<534.07?6:ie<534.1?7:ie<534.13?8:ie<534.16?9:ie<534.24?10:ie<534.3?11:ie<535.01?12:ie<535.02?"13+":ie<535.07?15:ie<535.11?16:ie<535.19?17:ie<536.05?18:ie<536.1?19:ie<537.01?20:ie<537.11?"21+":ie<537.13?23:ie<537.18?24:ie<537.24?25:ie<537.36?26:"Blink"!=Xt?"27":"28")):(Xt&&(Xt[1]="like Safari"),ie=(ie=ie[0])<400?1:ie<500?2:ie<526?3:ie<533?4:ie<534?"4+":ie<535?5:ie<537?6:ie<538?7:ie<601?8:"8"),Xt&&(Xt[1]+=" "+(ie+="number"==typeof ie?".x":/[.+]/.test(ie)?"":"+")),"Safari"==Ge&&(!at||parseInt(at)>45)&&(at=ie)),"Opera"==Ge&&(ie=/\bzbov|zvav$/.exec(Me))?(Ge+=" ",Xe.unshift("desktop mode"),"zvav"==ie?(Ge+="Mini",at=null):Ge+="Mobile",Me=Me.replace(RegExp(" *"+ie+"$"),"")):"Safari"==Ge&&/\bChrome\b/.exec(Xt&&Xt[1])&&(Xe.unshift("desktop mode"),Ge="Chrome Mobile",at=null,/\bOS X\b/.test(Me)?(Fe="Apple",Me="iOS 4.3+"):Me=null),at&&0==at.indexOf(ie=/[\d.]+$/.exec(Me))&&T.indexOf("/"+ie+"-")>-1&&(Me=We(Me.replace(ie,""))),Xt&&!/\b(?:Avant|Nook)\b/.test(Ge)&&(/Browser|Lunascape|Maxthon/.test(Ge)||"Safari"!=Ge&&/^iOS/.test(Me)&&/\bSafari\b/.test(Xt[1])||/^(?:Adobe|Arora|Breach|Midori|Opera|Phantom|Rekonq|Rock|Sleipnir|Web)/.test(Ge)&&Xt[1])&&(ie=Xt[Xt.length-1])&&Xe.push(ie),Xe.length&&(Xe=["("+Xe.join("; ")+")"]),Fe&&Je&&Je.indexOf(Fe)<0&&Xe.push("on "+Fe),Je&&Xe.push((/^on /.test(Xe[Xe.length-1])?"":"on ")+Je),Me&&(ie=/ ([\d.+]+)$/.exec(Me),fn=ie&&"/"==Me.charAt(Me.length-ie[0].length-1),Me={architecture:32,family:ie&&!fn?Me.replace(ie[0],""):Me,version:ie?ie[1]:null,toString:function(){var we=this.version;return this.family+(we&&!fn?" "+we:"")+(64==this.architecture?" 64-bit":"")}}),(ie=/\b(?:AMD|IA|Win|WOW|x86_|x)64\b/i.exec(yt))&&!/\bi686\b/i.test(yt)?(Me&&(Me.architecture=64,Me.family=Me.family.replace(RegExp(" *"+ie),"")),Ge&&(/\bWOW64\b/i.test(T)||Et&&/\w(?:86|32)$/.test(Te.cpuClass||Te.platform)&&!/\bWin64; x64\b/i.test(T))&&Xe.unshift("32-bit")):Me&&/^OS X/.test(Me.family)&&"Chrome"==Ge&&parseFloat(at)>=39&&(Me.architecture=64),T||(T=null);var Kt={};return Kt.description=T,Kt.layout=Xt&&Xt[0],Kt.manufacturer=Fe,Kt.name=Ge,Kt.prerelease=lt,Kt.product=Je,Kt.ua=T,Kt.version=Ge&&at,Kt.os=Me||{architecture:null,family:null,version:null,toString:function(){return"null"}},Kt.parse=Ie,Kt.toString=function Zt(){return this.description||""},Kt.version&&Xe.unshift(at),Kt.name&&Xe.unshift(Ge),Me&&Ge&&!(Me==String(Me).split(" ")[0]&&(Me==Ge.split(" ")[0]||Je))&&Xe.push(Je?"("+Me+")":"on "+Me),Xe.length&&(Kt.description=Xe.join(" ")),Kt}();F.platform=He,void 0!==(t=function(){return He}.call(_e,w,_e,vt))&&(vt.exports=t)}.call(this)},5649:()=>{ +/*! ***************************************************************************** + Copyright (C) Microsoft. All rights reserved. + Licensed under the Apache License, Version 2.0 (the "License"); you may not use + this file except in compliance with the License. You may obtain a copy of the + License at http://www.apache.org/licenses/LICENSE-2.0 + + THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED + WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, + MERCHANTABLITY OR NON-INFRINGEMENT. + + See the Apache Version 2.0 License for specific language governing permissions + and limitations under the License. + ***************************************************************************** */ +var vt,_e;_e=vt||(vt={}),function(w){var t="object"==typeof global?global:"object"==typeof self?self:"object"==typeof this?this:Function("return this;")(),C=F(_e);function F(U,N){return function(G,K){"function"!=typeof U[G]&&Object.defineProperty(U,G,{configurable:!0,writable:!0,value:K}),N&&N(G,K)}}typeof t.Reflect>"u"?t.Reflect=_e:C=F(t.Reflect,C),function(w){var t=Object.prototype.hasOwnProperty,C="function"==typeof Symbol,F=C&&typeof Symbol.toPrimitive<"u"?Symbol.toPrimitive:"@@toPrimitive",U=C&&typeof Symbol.iterator<"u"?Symbol.iterator:"@@iterator",N="function"==typeof Object.create,G={__proto__:[]}instanceof Array,K=!N&&!G,$={create:N?function(){return qt(Object.create(null))}:G?function(){return qt({__proto__:null})}:function(){return qt({})},has:K?function(Ye,ct){return t.call(Ye,ct)}:function(Ye,ct){return ct in Ye},get:K?function(Ye,ct){return t.call(Ye,ct)?Ye[ct]:void 0}:function(Ye,ct){return Ye[ct]}},le=Object.getPrototypeOf(Function),R="object"==typeof process&&process.env&&"true"===process.env.REFLECT_METADATA_USE_MAP_POLYFILL,ae=R||"function"!=typeof Map||"function"!=typeof Map.prototype.entries?Fe():Map,be=R||"function"!=typeof Set||"function"!=typeof Set.prototype.entries?Me():Set,Ne=new(R||"function"!=typeof WeakMap?kt():WeakMap);function ke(Ye,ct,dt,Nt){if(Mt(dt)){if(!ie(Ye))throw new TypeError;if(!Xe(ct))throw new TypeError;return He(Ye,ct)}if(!ie(Ye))throw new TypeError;if(!on(ct))throw new TypeError;if(!on(Nt)&&!Mt(Nt)&&!St(Nt))throw new TypeError;return St(Nt)&&(Nt=void 0),T(Ye,ct,dt=Ln(dt),Nt)}function Re(Ye,ct){function dt(Nt,Zt){if(!on(Nt))throw new TypeError;if(!Mt(Zt)&&!lt(Zt))throw new TypeError;bt(Ye,ct,Nt,Zt)}return dt}function fe(Ye,ct,dt,Nt){if(!on(dt))throw new TypeError;return Mt(Nt)||(Nt=Ln(Nt)),bt(Ye,ct,dt,Nt)}function de(Ye,ct,dt){if(!on(ct))throw new TypeError;return Mt(dt)||(dt=Ln(dt)),Ce(Ye,ct,dt)}function pe(Ye,ct,dt){if(!on(ct))throw new TypeError;return Mt(dt)||(dt=Ln(dt)),Te(Ye,ct,dt)}function Pe(Ye,ct,dt){if(!on(ct))throw new TypeError;return Mt(dt)||(dt=Ln(dt)),Qe(Ye,ct,dt)}function et(Ye,ct,dt){if(!on(ct))throw new TypeError;return Mt(dt)||(dt=Ln(dt)),st(Ye,ct,dt)}function $e(Ye,ct){if(!on(Ye))throw new TypeError;return Mt(ct)||(ct=Ln(ct)),Tt(Ye,ct)}function We(Ye,ct){if(!on(Ye))throw new TypeError;return Mt(ct)||(ct=Ln(ct)),wt(Ye,ct)}function Ie(Ye,ct,dt){if(!on(ct))throw new TypeError;Mt(dt)||(dt=Ln(dt));var Nt=Z(ct,dt,!1);if(Mt(Nt)||!Nt.delete(Ye))return!1;if(Nt.size>0)return!0;var Zt=Ne.get(ct);return Zt.delete(dt),Zt.size>0||Ne.delete(ct),!0}function He(Ye,ct){for(var dt=Ye.length-1;dt>=0;--dt){var Zt=(0,Ye[dt])(ct);if(!Mt(Zt)&&!St(Zt)){if(!Xe(Zt))throw new TypeError;ct=Zt}}return ct}function T(Ye,ct,dt,Nt){for(var Zt=Ye.length-1;Zt>=0;--Zt){var we=(0,Ye[Zt])(ct,dt,Nt);if(!Mt(we)&&!St(we)){if(!on(we))throw new TypeError;Nt=we}}return Nt}function Z(Ye,ct,dt){var Nt=Ne.get(Ye);if(Mt(Nt)){if(!dt)return;Nt=new ae,Ne.set(Ye,Nt)}var Zt=Nt.get(ct);if(Mt(Zt)){if(!dt)return;Zt=new ae,Nt.set(ct,Zt)}return Zt}function Ce(Ye,ct,dt){if(Te(Ye,ct,dt))return!0;var Zt=Je(ct);return!St(Zt)&&Ce(Ye,Zt,dt)}function Te(Ye,ct,dt){var Nt=Z(ct,dt,!1);return!Mt(Nt)&&Rt(Nt.has(Ye))}function Qe(Ye,ct,dt){if(Te(Ye,ct,dt))return st(Ye,ct,dt);var Zt=Je(ct);return St(Zt)?void 0:Qe(Ye,Zt,dt)}function st(Ye,ct,dt){var Nt=Z(ct,dt,!1);if(!Mt(Nt))return Nt.get(Ye)}function bt(Ye,ct,dt,Nt){Z(dt,Nt,!0).set(Ye,ct)}function Tt(Ye,ct){var dt=wt(Ye,ct),Nt=Je(Ye);if(null===Nt)return dt;var Zt=Tt(Nt,ct);if(Zt.length<=0)return dt;if(dt.length<=0)return Zt;for(var Kt=new be,we=[],q=0,re=dt;q=0&&q=this._keys.length?(this._index=-1,this._keys=ct,this._values=ct):this._index++,{value:re,done:!1}}return{value:void 0,done:!0}},we.prototype.throw=function(q){throw this._index>=0&&(this._index=-1,this._keys=ct,this._values=ct),q},we.prototype.return=function(q){return this._index>=0&&(this._index=-1,this._keys=ct,this._values=ct),{value:q,done:!0}},we}();return function(){function we(){this._keys=[],this._values=[],this._cacheKey=Ye,this._cacheIndex=-2}return Object.defineProperty(we.prototype,"size",{get:function(){return this._keys.length},enumerable:!0,configurable:!0}),we.prototype.has=function(q){return this._find(q,!1)>=0},we.prototype.get=function(q){var re=this._find(q,!1);return re>=0?this._values[re]:void 0},we.prototype.set=function(q,re){var je=this._find(q,!0);return this._values[je]=re,this},we.prototype.delete=function(q){var re=this._find(q,!1);if(re>=0){for(var je=this._keys.length,ut=re+1;ut{"use strict";w.d(_e,{y:()=>ae});var t=w(14);var F=w(1482),U=w(9957);var G=w(6831),K=w(1356);function le(Be){return 0===Be.length?K.y:1===Be.length?Be[0]:function(ke){return Be.reduce((Re,fe)=>fe(Re),ke)}}var R=w(146);class ae{constructor(Ne){this._isScalar=!1,Ne&&(this._subscribe=Ne)}lift(Ne){const ke=new ae;return ke.source=this,ke.operator=Ne,ke}subscribe(Ne,ke,Re){const{operator:fe}=this,de=function N(Be,Ne,ke){if(Be){if(Be instanceof t.L)return Be;if(Be[F.b])return Be[F.b]()}return Be||Ne||ke?new t.L(Be,Ne,ke):new t.L(U.c)}(Ne,ke,Re);if(fe?de.add(fe.call(de,this.source)):de.add(this.source||R.v.useDeprecatedSynchronousErrorHandling&&!de.syncErrorThrowable?this._subscribe(de):this._trySubscribe(de)),R.v.useDeprecatedSynchronousErrorHandling&&de.syncErrorThrowable&&(de.syncErrorThrowable=!1,de.syncErrorThrown))throw de.syncErrorValue;return de}_trySubscribe(Ne){try{return this._subscribe(Ne)}catch(ke){R.v.useDeprecatedSynchronousErrorHandling&&(Ne.syncErrorThrown=!0,Ne.syncErrorValue=ke),function C(Be){for(;Be;){const{closed:Ne,destination:ke,isStopped:Re}=Be;if(Ne||Re)return!1;Be=ke&&ke instanceof t.L?ke:null}return!0}(Ne)?Ne.error(ke):console.warn(ke)}}forEach(Ne,ke){return new(ke=be(ke))((Re,fe)=>{let de;de=this.subscribe(pe=>{try{Ne(pe)}catch(Pe){fe(Pe),de&&de.unsubscribe()}},fe,Re)})}_subscribe(Ne){const{source:ke}=this;return ke&&ke.subscribe(Ne)}[G.L](){return this}pipe(...Ne){return 0===Ne.length?this:le(Ne)(this)}toPromise(Ne){return new(Ne=be(Ne))((ke,Re)=>{let fe;this.subscribe(de=>fe=de,de=>Re(de),()=>ke(fe))})}}function be(Be){if(Be||(Be=R.v.Promise||Promise),!Be)throw new Error("no Promise impl found");return Be}ae.create=Be=>new ae(Be)},9957:(vt,_e,w)=>{"use strict";w.d(_e,{c:()=>F});var t=w(146),C=w(8897);const F={closed:!0,next(U){},error(U){if(t.v.useDeprecatedSynchronousErrorHandling)throw U;(0,C.z)(U)},complete(){}}},2218:(vt,_e,w)=>{"use strict";w.d(_e,{Yc:()=>K,xQ:()=>$});var t=w(5901),C=w(14),F=w(6957),U=w(9086),N=w(1722),G=w(1482);class K extends C.L{constructor(ae){super(ae),this.destination=ae}}class $ extends t.y{constructor(){super(),this.observers=[],this.closed=!1,this.isStopped=!1,this.hasError=!1,this.thrownError=null}[G.b](){return new K(this)}lift(ae){const be=new le(this,this);return be.operator=ae,be}next(ae){if(this.closed)throw new U.N;if(!this.isStopped){const{observers:be}=this,Be=be.length,Ne=be.slice();for(let ke=0;kenew le(R,ae);class le extends ${constructor(ae,be){super(),this.destination=ae,this.source=be}next(ae){const{destination:be}=this;be&&be.next&&be.next(ae)}error(ae){const{destination:be}=this;be&&be.error&&this.destination.error(ae)}complete(){const{destination:ae}=this;ae&&ae.complete&&this.destination.complete()}_subscribe(ae){const{source:be}=this;return be?this.source.subscribe(ae):F.w.EMPTY}}},1722:(vt,_e,w)=>{"use strict";w.d(_e,{W:()=>C});var t=w(6957);class C extends t.w{constructor(U,N){super(),this.subject=U,this.subscriber=N,this.closed=!1}unsubscribe(){if(this.closed)return;this.closed=!0;const U=this.subject,N=U.observers;if(this.subject=null,!N||0===N.length||U.isStopped||U.closed)return;const G=N.indexOf(this.subscriber);-1!==G&&N.splice(G,1)}}},14:(vt,_e,w)=>{"use strict";w.d(_e,{L:()=>K});var t=w(1900),C=w(9957),F=w(6957),U=w(1482),N=w(146),G=w(8897);class K extends F.w{constructor(R,ae,be){switch(super(),this.syncErrorValue=null,this.syncErrorThrown=!1,this.syncErrorThrowable=!1,this.isStopped=!1,arguments.length){case 0:this.destination=C.c;break;case 1:if(!R){this.destination=C.c;break}if("object"==typeof R){R instanceof K?(this.syncErrorThrowable=R.syncErrorThrowable,this.destination=R,R.add(this)):(this.syncErrorThrowable=!0,this.destination=new $(this,R));break}default:this.syncErrorThrowable=!0,this.destination=new $(this,R,ae,be)}}[U.b](){return this}static create(R,ae,be){const Be=new K(R,ae,be);return Be.syncErrorThrowable=!1,Be}next(R){this.isStopped||this._next(R)}error(R){this.isStopped||(this.isStopped=!0,this._error(R))}complete(){this.isStopped||(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe())}_next(R){this.destination.next(R)}_error(R){this.destination.error(R),this.unsubscribe()}_complete(){this.destination.complete(),this.unsubscribe()}_unsubscribeAndRecycle(){const{_parentOrParents:R}=this;return this._parentOrParents=null,this.unsubscribe(),this.closed=!1,this.isStopped=!1,this._parentOrParents=R,this}}class $ extends K{constructor(R,ae,be,Be){super(),this._parentSubscriber=R;let Ne,ke=this;(0,t.m)(ae)?Ne=ae:ae&&(Ne=ae.next,be=ae.error,Be=ae.complete,ae!==C.c&&(ke=Object.create(ae),(0,t.m)(ke.unsubscribe)&&this.add(ke.unsubscribe.bind(ke)),ke.unsubscribe=this.unsubscribe.bind(this))),this._context=ke,this._next=Ne,this._error=be,this._complete=Be}next(R){if(!this.isStopped&&this._next){const{_parentSubscriber:ae}=this;N.v.useDeprecatedSynchronousErrorHandling&&ae.syncErrorThrowable?this.__tryOrSetError(ae,this._next,R)&&this.unsubscribe():this.__tryOrUnsub(this._next,R)}}error(R){if(!this.isStopped){const{_parentSubscriber:ae}=this,{useDeprecatedSynchronousErrorHandling:be}=N.v;if(this._error)be&&ae.syncErrorThrowable?(this.__tryOrSetError(ae,this._error,R),this.unsubscribe()):(this.__tryOrUnsub(this._error,R),this.unsubscribe());else if(ae.syncErrorThrowable)be?(ae.syncErrorValue=R,ae.syncErrorThrown=!0):(0,G.z)(R),this.unsubscribe();else{if(this.unsubscribe(),be)throw R;(0,G.z)(R)}}}complete(){if(!this.isStopped){const{_parentSubscriber:R}=this;if(this._complete){const ae=()=>this._complete.call(this._context);N.v.useDeprecatedSynchronousErrorHandling&&R.syncErrorThrowable?(this.__tryOrSetError(R,ae),this.unsubscribe()):(this.__tryOrUnsub(ae),this.unsubscribe())}else this.unsubscribe()}}__tryOrUnsub(R,ae){try{R.call(this._context,ae)}catch(be){if(this.unsubscribe(),N.v.useDeprecatedSynchronousErrorHandling)throw be;(0,G.z)(be)}}__tryOrSetError(R,ae,be){if(!N.v.useDeprecatedSynchronousErrorHandling)throw new Error("bad call");try{ae.call(this._context,be)}catch(Be){return N.v.useDeprecatedSynchronousErrorHandling?(R.syncErrorValue=Be,R.syncErrorThrown=!0,!0):((0,G.z)(Be),!0)}return!1}_unsubscribe(){const{_parentSubscriber:R}=this;this._context=null,this._parentSubscriber=null,R.unsubscribe()}}},6957:(vt,_e,w)=>{"use strict";w.d(_e,{w:()=>G});var t=w(4327),C=w(6549),F=w(1900);const N=(()=>{function $(le){return Error.call(this),this.message=le?`${le.length} errors occurred during unsubscription:\n${le.map((R,ae)=>`${ae+1}) ${R.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=le,this}return $.prototype=Object.create(Error.prototype),$})();class G{constructor(le){this.closed=!1,this._parentOrParents=null,this._subscriptions=null,le&&(this._ctorUnsubscribe=!0,this._unsubscribe=le)}unsubscribe(){let le;if(this.closed)return;let{_parentOrParents:R,_ctorUnsubscribe:ae,_unsubscribe:be,_subscriptions:Be}=this;if(this.closed=!0,this._parentOrParents=null,this._subscriptions=null,R instanceof G)R.remove(this);else if(null!==R)for(let Ne=0;Nele.concat(R instanceof N?R.errors:R),[])}G.EMPTY=(($=new G).closed=!0,$)},146:(vt,_e,w)=>{"use strict";w.d(_e,{v:()=>C});let t=!1;const C={Promise:void 0,set useDeprecatedSynchronousErrorHandling(F){if(F){const U=new Error;console.warn("DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \n"+U.stack)}else t&&console.log("RxJS: Back to a better error behavior. Thank you. <3");t=F},get useDeprecatedSynchronousErrorHandling(){return t}}},2831:(vt,_e,w)=>{"use strict";w.d(_e,{Ds:()=>G,IY:()=>U,ft:()=>$});var t=w(14),C=w(5901),F=w(3956);class U extends t.L{constructor(R){super(),this.parent=R}_next(R){this.parent.notifyNext(R)}_error(R){this.parent.notifyError(R),this.unsubscribe()}_complete(){this.parent.notifyComplete(),this.unsubscribe()}}class G extends t.L{notifyNext(R){this.destination.next(R)}notifyError(R){this.destination.error(R)}notifyComplete(){this.destination.complete()}}function $(le,R){if(R.closed)return;if(le instanceof C.y)return le.subscribe(R);let ae;try{ae=(0,F.s)(le)(R)}catch(be){R.error(be)}return ae}},4350:(vt,_e,w)=>{"use strict";w.d(_e,{D:()=>G});var t=w(5901),C=w(4327),F=w(6942),U=w(6549),N=w(4858);function G(...$){if(1===$.length){const le=$[0];if((0,C.k)(le))return K(le,null);if((0,U.K)(le)&&Object.getPrototypeOf(le)===Object.prototype){const R=Object.keys(le);return K(R.map(ae=>le[ae]),R)}}if("function"==typeof $[$.length-1]){const le=$.pop();return K($=1===$.length&&(0,C.k)($[0])?$[0]:$,null).pipe((0,F.U)(R=>le(...R)))}return K($,null)}function K($,le){return new t.y(R=>{const ae=$.length;if(0===ae)return void R.complete();const be=new Array(ae);let Be=0,Ne=0;for(let ke=0;ke{fe||(fe=!0,Ne++),be[ke]=de},error:de=>R.error(de),complete:()=>{Be++,(Be===ae||!fe)&&(Ne===ae&&R.next(le?le.reduce((de,pe,Pe)=>(de[pe]=be[Pe],de),{}):be),R.complete())}}))}})}},4858:(vt,_e,w)=>{"use strict";w.d(_e,{D:()=>ke});var t=w(5901),C=w(3956),F=w(6957),U=w(6831);var K=w(8403),$=w(2803);var ae=w(5192),be=w(5122);function Ne(Re,fe){if(null!=Re){if(function R(Re){return Re&&"function"==typeof Re[U.L]}(Re))return function N(Re,fe){return new t.y(de=>{const pe=new F.w;return pe.add(fe.schedule(()=>{const Pe=Re[U.L]();pe.add(Pe.subscribe({next(et){pe.add(fe.schedule(()=>de.next(et)))},error(et){pe.add(fe.schedule(()=>de.error(et)))},complete(){pe.add(fe.schedule(()=>de.complete()))}}))})),pe})}(Re,fe);if((0,ae.t)(Re))return function G(Re,fe){return new t.y(de=>{const pe=new F.w;return pe.add(fe.schedule(()=>Re.then(Pe=>{pe.add(fe.schedule(()=>{de.next(Pe),pe.add(fe.schedule(()=>de.complete()))}))},Pe=>{pe.add(fe.schedule(()=>de.error(Pe)))}))),pe})}(Re,fe);if((0,be.z)(Re))return(0,K.r)(Re,fe);if(function Be(Re){return Re&&"function"==typeof Re[$.hZ]}(Re)||"string"==typeof Re)return function le(Re,fe){if(!Re)throw new Error("Iterable cannot be null");return new t.y(de=>{const pe=new F.w;let Pe;return pe.add(()=>{Pe&&"function"==typeof Pe.return&&Pe.return()}),pe.add(fe.schedule(()=>{Pe=Re[$.hZ](),pe.add(fe.schedule(function(){if(de.closed)return;let et,$e;try{const We=Pe.next();et=We.value,$e=We.done}catch(We){return void de.error(We)}$e?de.complete():(de.next(et),this.schedule())}))})),pe})}(Re,fe)}throw new TypeError((null!==Re&&typeof Re||Re)+" is not observable")}function ke(Re,fe){return fe?Ne(Re,fe):Re instanceof t.y?Re:new t.y((0,C.s)(Re))}},8005:(vt,_e,w)=>{"use strict";w.d(_e,{n:()=>U});var t=w(5901),C=w(5414),F=w(8403);function U(N,G){return G?(0,F.r)(N,G):new t.y((0,C.V)(N))}},6312:(vt,_e,w)=>{"use strict";w.d(_e,{R:()=>G});var t=w(5901),C=w(4327),F=w(1900),U=w(6942);Object.prototype.toString;function G(ae,be,Be,Ne){return(0,F.m)(Be)&&(Ne=Be,Be=void 0),Ne?G(ae,be,Be).pipe((0,U.U)(ke=>(0,C.k)(ke)?Ne(...ke):Ne(ke))):new t.y(ke=>{K(ae,be,function Re(fe){arguments.length>1?ke.next(Array.prototype.slice.call(arguments)):ke.next(fe)},ke,Be)})}function K(ae,be,Be,Ne,ke){let Re;if(function R(ae){return ae&&"function"==typeof ae.addEventListener&&"function"==typeof ae.removeEventListener}(ae)){const fe=ae;ae.addEventListener(be,Be,ke),Re=()=>fe.removeEventListener(be,Be,ke)}else if(function le(ae){return ae&&"function"==typeof ae.on&&"function"==typeof ae.off}(ae)){const fe=ae;ae.on(be,Be),Re=()=>fe.off(be,Be)}else if(function $(ae){return ae&&"function"==typeof ae.addListener&&"function"==typeof ae.removeListener}(ae)){const fe=ae;ae.addListener(be,Be),Re=()=>fe.removeListener(be,Be)}else{if(!ae||!ae.length)throw new TypeError("Invalid event target");for(let fe=0,de=ae.length;fe{"use strict";w.d(_e,{T:()=>K});var t=w(5901),C=w(7507),F=w(522),U=w(1356);var G=w(8005);function K(...$){let le=Number.POSITIVE_INFINITY,R=null,ae=$[$.length-1];return(0,C.K)(ae)?(R=$.pop(),$.length>1&&"number"==typeof $[$.length-1]&&(le=$.pop())):"number"==typeof ae&&(le=$.pop()),null===R&&1===$.length&&$[0]instanceof t.y?$[0]:function N($=Number.POSITIVE_INFINITY){return(0,F.zg)(U.y,$)}(le)((0,G.n)($,R))}},4139:(vt,_e,w)=>{"use strict";w.d(_e,{of:()=>U});var t=w(7507),C=w(8005),F=w(8403);function U(...N){let G=N[N.length-1];return(0,t.K)(G)?(N.pop(),(0,F.r)(N,G)):(0,C.n)(N)}},6587:(vt,_e,w)=>{"use strict";w.d(_e,{_:()=>C});var t=w(5901);function C(U,N){return N?new t.y(G=>N.schedule(F,0,{error:U,subscriber:G})):new t.y(G=>G.error(U))}function F({error:U,subscriber:N}){N.error(U)}},6942:(vt,_e,w)=>{"use strict";w.d(_e,{U:()=>C});var t=w(14);function C(N,G){return function($){if("function"!=typeof N)throw new TypeError("argument is not a function. Are you looking for `mapTo()`?");return $.lift(new F(N,G))}}class F{constructor(G,K){this.project=G,this.thisArg=K}call(G,K){return K.subscribe(new U(G,this.project,this.thisArg))}}class U extends t.L{constructor(G,K,$){super(G),this.project=K,this.count=0,this.thisArg=$||this}_next(G){let K;try{K=this.project.call(this.thisArg,G,this.count++)}catch($){return void this.destination.error($)}this.destination.next(K)}}},522:(vt,_e,w)=>{"use strict";w.d(_e,{zg:()=>U});var t=w(6942),C=w(4858),F=w(2831);function U($,le,R=Number.POSITIVE_INFINITY){return"function"==typeof le?ae=>ae.pipe(U((be,Be)=>(0,C.D)($(be,Be)).pipe((0,t.U)((Ne,ke)=>le(be,Ne,Be,ke))),R)):("number"==typeof le&&(R=le),ae=>ae.lift(new N($,R)))}class N{constructor(le,R=Number.POSITIVE_INFINITY){this.project=le,this.concurrent=R}call(le,R){return R.subscribe(new G(le,this.project,this.concurrent))}}class G extends F.Ds{constructor(le,R,ae=Number.POSITIVE_INFINITY){super(le),this.project=R,this.concurrent=ae,this.hasCompleted=!1,this.buffer=[],this.active=0,this.index=0}_next(le){this.active0?this._next(le.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()}}},8403:(vt,_e,w)=>{"use strict";w.d(_e,{r:()=>F});var t=w(5901),C=w(6957);function F(U,N){return new t.y(G=>{const K=new C.w;let $=0;return K.add(N.schedule(function(){$!==U.length?(G.next(U[$++]),G.closed||K.add(this.schedule())):G.complete()})),K})}},2803:(vt,_e,w)=>{"use strict";w.d(_e,{hZ:()=>C});const C=function t(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},6831:(vt,_e,w)=>{"use strict";w.d(_e,{L:()=>t});const t="function"==typeof Symbol&&Symbol.observable||"@@observable"},1482:(vt,_e,w)=>{"use strict";w.d(_e,{b:()=>t});const t="function"==typeof Symbol?Symbol("rxSubscriber"):"@@rxSubscriber_"+Math.random()},9086:(vt,_e,w)=>{"use strict";w.d(_e,{N:()=>C});const C=(()=>{function F(){return Error.call(this),this.message="object unsubscribed",this.name="ObjectUnsubscribedError",this}return F.prototype=Object.create(Error.prototype),F})()},8897:(vt,_e,w)=>{"use strict";function t(C){setTimeout(()=>{throw C},0)}w.d(_e,{z:()=>t})},1356:(vt,_e,w)=>{"use strict";function t(C){return C}w.d(_e,{y:()=>t})},4327:(vt,_e,w)=>{"use strict";w.d(_e,{k:()=>t});const t=Array.isArray||(C=>C&&"number"==typeof C.length)},5122:(vt,_e,w)=>{"use strict";w.d(_e,{z:()=>t});const t=C=>C&&"number"==typeof C.length&&"function"!=typeof C},1900:(vt,_e,w)=>{"use strict";function t(C){return"function"==typeof C}w.d(_e,{m:()=>t})},6549:(vt,_e,w)=>{"use strict";function t(C){return null!==C&&"object"==typeof C}w.d(_e,{K:()=>t})},5192:(vt,_e,w)=>{"use strict";function t(C){return!!C&&"function"!=typeof C.subscribe&&"function"==typeof C.then}w.d(_e,{t:()=>t})},7507:(vt,_e,w)=>{"use strict";function t(C){return C&&"function"==typeof C.schedule}w.d(_e,{K:()=>t})},3956:(vt,_e,w)=>{"use strict";w.d(_e,{s:()=>ae});var t=w(5414),C=w(8897);var U=w(2803);var G=w(6831);var $=w(5122),le=w(5192),R=w(6549);const ae=be=>{if(be&&"function"==typeof be[G.L])return(be=>Be=>{const Ne=be[G.L]();if("function"!=typeof Ne.subscribe)throw new TypeError("Provided object does not correctly implement Symbol.observable");return Ne.subscribe(Be)})(be);if((0,$.z)(be))return(0,t.V)(be);if((0,le.t)(be))return(be=>Be=>(be.then(Ne=>{Be.closed||(Be.next(Ne),Be.complete())},Ne=>Be.error(Ne)).then(null,C.z),Be))(be);if(be&&"function"==typeof be[U.hZ])return(be=>Be=>{const Ne=be[U.hZ]();for(;;){let ke;try{ke=Ne.next()}catch(Re){return Be.error(Re),Be}if(ke.done){Be.complete();break}if(Be.next(ke.value),Be.closed)break}return"function"==typeof Ne.return&&Be.add(()=>{Ne.return&&Ne.return()}),Be})(be);{const Ne=`You provided ${(0,R.K)(be)?"an invalid object":`'${be}'`} where a stream was expected. You can provide an Observable, Promise, Array, or Iterable.`;throw new TypeError(Ne)}}},5414:(vt,_e,w)=>{"use strict";w.d(_e,{V:()=>t});const t=C=>F=>{for(let U=0,N=C.length;U{vt.exports=function _e(w,t){var C,F=null;try{C=JSON.parse(w,t)}catch(U){F=U}return[F,C]}},3004:function(vt){var w,t,C,F,U;w=/^(?=((?:[a-zA-Z0-9+\-.]+:)?))\1(?=((?:\/\/[^\/?#]*)?))\2(?=((?:(?:[^?#\/]*\/)*[^;?#\/]*)?))\3((?:;[^?#]*)?)(\?[^#]*)?(#[^]*)?$/,t=/^(?=([^\/?#]*))\1([^]*)$/,C=/(?:\/|^)\.(?=\/)/g,F=/(?:\/|^)\.\.\/(?!\.\.\/)[^\/]*(?=\/)/g,U={buildAbsoluteURL:function(N,G,K){if(K=K||{},N=N.trim(),!(G=G.trim())){if(!K.alwaysNormalize)return N;var $=U.parseURL(N);if(!$)throw new Error("Error trying to parse base URL.");return $.path=U.normalizePath($.path),U.buildURLFromParts($)}var le=U.parseURL(G);if(!le)throw new Error("Error trying to parse relative URL.");if(le.scheme)return K.alwaysNormalize?(le.path=U.normalizePath(le.path),U.buildURLFromParts(le)):G;var R=U.parseURL(N);if(!R)throw new Error("Error trying to parse base URL.");if(!R.netLoc&&R.path&&"/"!==R.path[0]){var ae=t.exec(R.path);R.netLoc=ae[1],R.path=ae[2]}R.netLoc&&!R.path&&(R.path="/");var be={scheme:R.scheme,netLoc:le.netLoc,path:null,params:le.params,query:le.query,fragment:le.fragment};if(!le.netLoc&&(be.netLoc=R.netLoc,"/"!==le.path[0]))if(le.path){var Be=R.path,Ne=Be.substring(0,Be.lastIndexOf("/")+1)+le.path;be.path=U.normalizePath(Ne)}else be.path=R.path,le.params||(be.params=R.params,le.query||(be.query=R.query));return null===be.path&&(be.path=K.alwaysNormalize?U.normalizePath(le.path):le.path),U.buildURLFromParts(be)},parseURL:function(N){var G=w.exec(N);return G?{scheme:G[1]||"",netLoc:G[2]||"",path:G[3]||"",params:G[4]||"",query:G[5]||"",fragment:G[6]||""}:null},normalizePath:function(N){for(N=N.split("").reverse().join("").replace(C,"");N.length!==(N=N.replace(F,"")).length;);return N.split("").reverse().join("")},buildURLFromParts:function(N){return N.scheme+N.netLoc+N.path+N.params+N.query+N.fragment}},vt.exports=U},9155:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>B6});var t=w(1473),C=w.n(t),F=w(7314),U=w.n(F);function N(){return N=Object.assign?Object.assign.bind():function(f){for(var o=1;o"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 de(f,o,s){return(de=fe()?Reflect.construct.bind():function(e,r,u){var p=[null];p.push.apply(p,r);var y=new(Function.bind.apply(e,p));return u&&le(y,u.prototype),y}).apply(null,arguments)}var Pe=w(3004),et=w.n(Pe),$e="http://example.com";const Ie=function(o,s){if(/^[a-z]+:/i.test(s))return s;/^data:/.test(o)&&(o=C().location&&C().location.href||"");var a="function"==typeof C().URL,e=/^\/\//.test(o),r=!C().location&&!/\/\//i.test(o);if(a?o=new(C().URL)(o,C().location||$e):/\/\//i.test(o)||(o=et().buildAbsoluteURL(C().location&&C().location.href||"",o)),a){var u=new URL(s,o);return r?u.href.slice($e.length):e?u.href.slice(u.protocol.length):u.href}return et().buildAbsoluteURL(o,s)};var He=function(){function f(){this.listeners={}}var o=f.prototype;return o.on=function(a,e){this.listeners[a]||(this.listeners[a]=[]),this.listeners[a].push(e)},o.off=function(a,e){if(!this.listeners[a])return!1;var r=this.listeners[a].indexOf(e);return this.listeners[a]=this.listeners[a].slice(0),this.listeners[a].splice(r,1),r>-1},o.trigger=function(a){var e=this.listeners[a];if(e)if(2===arguments.length)for(var r=e.length,u=0;u-1;r=this.buffer.indexOf("\n"))this.trigger("data",this.buffer.substring(0,r)),this.buffer=this.buffer.substring(r+1)},o}(He),Te=String.fromCharCode(9),Qe=function(o){var s=/([0-9.]*)?@?([0-9.]*)?/.exec(o||""),a={};return s[1]&&(a.length=parseInt(s[1],10)),s[2]&&(a.offset=parseInt(s[2],10)),a},bt=function(o){for(var r,s=o.split(new RegExp('(?:^|,)((?:[^=]*)=(?:"[^"]*"|[^,]*))')),a={},e=s.length;e--;)""!==s[e]&&((r=/([^=]*)=(.*)/.exec(s[e]).slice(1))[0]=r[0].replace(/^\s+|\s+$/g,""),r[1]=r[1].replace(/^\s+|\s+$/g,""),r[1]=r[1].replace(/^['"](.*)['"]$/g,"$1"),a[r[0]]=r[1]);return a},Tt=function(f){function o(){var a;return(a=f.call(this)||this).customParsers=[],a.tagMappers=[],a}R(o,f);var s=o.prototype;return s.push=function(e){var u,p,r=this;if(0!==(e=e.trim()).length){if("#"!==e[0])return void this.trigger("data",{type:"uri",uri:e});this.tagMappers.reduce(function(y,D){var j=D(e);return j===e?y:y.concat([j])},[e]).forEach(function(y){for(var D=0;D0&&(u.duration=xe.duration),0===xe.duration&&(u.duration=.01,this.trigger("info",{message:"updating zero segment duration to a small value"})),this.manifest.segments=r},key:function(){if(xe.attributes)if("NONE"!==xe.attributes.METHOD)if(xe.attributes.URI){if("com.apple.streamingkeydelivery"===xe.attributes.KEYFORMAT)return this.manifest.contentProtection=this.manifest.contentProtection||{},void(this.manifest.contentProtection["com.apple.fps.1_0"]={attributes:xe.attributes});if("urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed"===xe.attributes.KEYFORMAT){return-1===["SAMPLE-AES","SAMPLE-AES-CTR","SAMPLE-AES-CENC"].indexOf(xe.attributes.METHOD)?void this.trigger("warn",{message:"invalid key method provided for Widevine"}):("SAMPLE-AES-CENC"===xe.attributes.METHOD&&this.trigger("warn",{message:"SAMPLE-AES-CENC is deprecated, please use SAMPLE-AES-CTR instead"}),"data:text/plain;base64,"!==xe.attributes.URI.substring(0,23)?void this.trigger("warn",{message:"invalid key URI provided for Widevine"}):xe.attributes.KEYID&&"0x"===xe.attributes.KEYID.substring(0,2)?(this.manifest.contentProtection=this.manifest.contentProtection||{},void(this.manifest.contentProtection["com.widevine.alpha"]={attributes:{schemeIdUri:xe.attributes.KEYFORMAT,keyId:xe.attributes.KEYID.substring(2)},pssh:Z(xe.attributes.URI.split(",")[1])})):void this.trigger("warn",{message:"invalid key ID provided for Widevine"}))}xe.attributes.METHOD||this.trigger("warn",{message:"defaulting key method to AES-128"}),_={method:xe.attributes.METHOD||"AES-128",uri:xe.attributes.URI},typeof xe.attributes.IV<"u"&&(_.iv=xe.attributes.IV)}else this.trigger("warn",{message:"ignoring key declaration without URI"});else _=null;else this.trigger("warn",{message:"ignoring key declaration without attribute list"})},"media-sequence":function(){isFinite(xe.number)?this.manifest.mediaSequence=xe.number:this.trigger("warn",{message:"ignoring invalid media sequence: "+xe.number})},"discontinuity-sequence":function(){isFinite(xe.number)?(this.manifest.discontinuitySequence=xe.number,ce=xe.number):this.trigger("warn",{message:"ignoring invalid discontinuity sequence: "+xe.number})},"playlist-type":function(){/VOD|EVENT/.test(xe.playlistType)?this.manifest.playlistType=xe.playlistType:this.trigger("warn",{message:"ignoring unknown playlist type: "+xe.playlist})},map:function(){p={},xe.uri&&(p.uri=xe.uri),xe.byterange&&(p.byterange=xe.byterange),_&&(p.key=_)},"stream-inf":function(){this.manifest.playlists=r,this.manifest.mediaGroups=this.manifest.mediaGroups||j,xe.attributes?(u.attributes||(u.attributes={}),N(u.attributes,xe.attributes)):this.trigger("warn",{message:"ignoring empty stream-inf attributes"})},media:function(){if(this.manifest.mediaGroups=this.manifest.mediaGroups||j,xe.attributes&&xe.attributes.TYPE&&xe.attributes["GROUP-ID"]&&xe.attributes.NAME){var Ut=this.manifest.mediaGroups[xe.attributes.TYPE];Ut[xe.attributes["GROUP-ID"]]=Ut[xe.attributes["GROUP-ID"]]||{},ht=Ut[xe.attributes["GROUP-ID"]],(_t={default:/yes/i.test(xe.attributes.DEFAULT)}).default?_t.autoselect=!0:_t.autoselect=/yes/i.test(xe.attributes.AUTOSELECT),xe.attributes.LANGUAGE&&(_t.language=xe.attributes.LANGUAGE),xe.attributes.URI&&(_t.uri=xe.attributes.URI),xe.attributes["INSTREAM-ID"]&&(_t.instreamId=xe.attributes["INSTREAM-ID"]),xe.attributes.CHARACTERISTICS&&(_t.characteristics=xe.attributes.CHARACTERISTICS),xe.attributes.FORCED&&(_t.forced=/yes/i.test(xe.attributes.FORCED)),ht[xe.attributes.NAME]=_t}else this.trigger("warn",{message:"ignoring incomplete or missing media group"})},discontinuity:function(){ce+=1,u.discontinuity=!0,this.manifest.discontinuityStarts.push(r.length)},"program-date-time":function(){typeof this.manifest.dateTimeString>"u"&&(this.manifest.dateTimeString=xe.dateTimeString,this.manifest.dateTimeObject=xe.dateTimeObject),u.dateTimeString=xe.dateTimeString,u.dateTimeObject=xe.dateTimeObject},targetduration:function(){!isFinite(xe.duration)||xe.duration<0?this.trigger("warn",{message:"ignoring invalid target duration: "+xe.duration}):(this.manifest.targetDuration=xe.duration,Mt.call(this,this.manifest))},start:function(){xe.attributes&&!isNaN(xe.attributes["TIME-OFFSET"])?this.manifest.start={timeOffset:xe.attributes["TIME-OFFSET"],precise:xe.attributes.PRECISE}:this.trigger("warn",{message:"ignoring start declaration without appropriate attribute list"})},"cue-out":function(){u.cueOut=xe.data},"cue-out-cont":function(){u.cueOutCont=xe.data},"cue-in":function(){u.cueIn=xe.data},skip:function(){this.manifest.skip=Dt(xe.attributes),this.warnOnMissingAttributes_("#EXT-X-SKIP",xe.attributes,["SKIPPED-SEGMENTS"])},part:function(){var Ut=this;y=!0;var gn=this.manifest.segments.length,Mn=Dt(xe.attributes);u.parts=u.parts||[],u.parts.push(Mn),Mn.byterange&&(Mn.byterange.hasOwnProperty("offset")||(Mn.byterange.offset=me),me=Mn.byterange.offset+Mn.byterange.length);var en=u.parts.length-1;this.warnOnMissingAttributes_("#EXT-X-PART #"+en+" for segment #"+gn,xe.attributes,["URI","DURATION"]),this.manifest.renditionReports&&this.manifest.renditionReports.forEach(function(En,wn){En.hasOwnProperty("lastPart")||Ut.trigger("warn",{message:"#EXT-X-RENDITION-REPORT #"+wn+" lacks required attribute(s): LAST-PART"})})},"server-control":function(){var Ut=this.manifest.serverControl=Dt(xe.attributes);Ut.hasOwnProperty("canBlockReload")||(Ut.canBlockReload=!1,this.trigger("info",{message:"#EXT-X-SERVER-CONTROL defaulting CAN-BLOCK-RELOAD to false"})),Mt.call(this,this.manifest),Ut.canSkipDateranges&&!Ut.hasOwnProperty("canSkipUntil")&&this.trigger("warn",{message:"#EXT-X-SERVER-CONTROL lacks required attribute CAN-SKIP-UNTIL which is required when CAN-SKIP-DATERANGES is set"})},"preload-hint":function(){var Ut=this.manifest.segments.length,gn=Dt(xe.attributes),Mn=gn.type&&"PART"===gn.type;u.preloadHints=u.preloadHints||[],u.preloadHints.push(gn),gn.byterange&&(gn.byterange.hasOwnProperty("offset")||(gn.byterange.offset=Mn?me:0,Mn&&(me=gn.byterange.offset+gn.byterange.length)));var en=u.preloadHints.length-1;if(this.warnOnMissingAttributes_("#EXT-X-PRELOAD-HINT #"+en+" for segment #"+Ut,xe.attributes,["TYPE","URI"]),gn.type)for(var En=0;Ena.timeline?1:-1})},nt=function(o){var s=[];return function(o,s,a){s.forEach(function(e){for(var r in o.mediaGroups[e])for(var u in o.mediaGroups[e][r]){var p=o.mediaGroups[e][r][u];a(p,e,r,u)}})}(o,vi,function(a,e,r,u){s=s.concat(a.playlists||[])}),s},Ot=function(o){var s=o.playlist,a=o.mediaSequence;s.mediaSequence=a,s.segments.forEach(function(e,r){e.number=s.mediaSequence+r})},Un=function(o){var s=o.oldManifest,a=o.newManifest,e=s.playlists.concat(nt(s)),r=a.playlists.concat(nt(a));return a.timelineStarts=Ee([s.timelineStarts,a.timelineStarts]),function(o){var s=o.oldPlaylists,a=o.newPlaylists,e=o.timelineStarts;a.forEach(function(r){r.discontinuitySequence=re(e,function(D){return D.timeline===r.timeline});var u=function(o,s){for(var a=0;au.timeline||u.segments.length&&r.timeline>u.segments[u.segments.length-1].timeline)&&r.discontinuitySequence--);u.segments[_].discontinuity&&!p.discontinuity&&(p.discontinuity=!0,r.discontinuityStarts.unshift(0),r.discontinuitySequence--),Ot({playlist:r,mediaSequence:u.segments[_].number})}})}({oldPlaylists:e,newPlaylists:r,timelineStarts:a.timelineStarts}),a},Vn=function(o){return o&&o.uri+"-"+function(o){var s;return s="bigint"==typeof o.offset||"bigint"==typeof o.length?C().BigInt(o.offset)+C().BigInt(o.length)-C().BigInt(1):o.offset+o.length-1,o.offset+"-"+s}(o.byterange)},Fi=function(o){return Nt(o.reduce(function(a,e){var r=e.attributes.id+(e.attributes.lang||"");if(a[r]){var u;if(e.segments)e.segments[0]&&(e.segments[0].discontinuity=!0),(u=a[r].segments).push.apply(u,e.segments);e.attributes.contentProtection&&(a[r].attributes.contentProtection=e.attributes.contentProtection)}else a[r]=e,a[r].attributes.timelineStarts=[];return a[r].attributes.timelineStarts.push({start:e.attributes.periodStart,timeline:e.attributes.periodStart}),a},{})).map(function(a){return a.discontinuityStarts=function(o,s){return o.reduce(function(a,e,r){return e[s]&&a.push(r),a},[])}(a.segments||[],"discontinuity"),a})},Cr=function(o,s){var a=Vn(o.sidx),e=a&&s[a]&&s[a].sidx;return e&&vn(o,e,o.sidx.resolvedUri),o},Lr=function(o,s){if(void 0===s&&(s={}),!Object.keys(s).length)return o;for(var a in o)o[a]=Cr(o[a],s);return o},It=function(o){var s,a=o.attributes,e=o.segments,r=o.sidx,u=o.discontinuityStarts,p={attributes:(s={NAME:a.id,AUDIO:"audio",SUBTITLES:"subs",RESOLUTION:{width:a.width,height:a.height},CODECS:a.codecs,BANDWIDTH:a.bandwidth},s["PROGRAM-ID"]=1,s),uri:"",endList:"static"===a.type,timeline:a.periodStart,resolvedUri:"",targetDuration:a.duration,discontinuityStarts:u,timelineStarts:a.timelineStarts,segments:e};return a.contentProtection&&(p.contentProtection=a.contentProtection),r&&(p.sidx=r),p},sn=function(o){var s=o.attributes;return"video/mp4"===s.mimeType||"video/webm"===s.mimeType||"video"===s.contentType},yn=function(o){var s=o.attributes;return"audio/mp4"===s.mimeType||"audio/webm"===s.mimeType||"audio"===s.contentType},In=function(o){var s=o.attributes;return"text/vtt"===s.mimeType||"text"===s.contentType},oi=function(o){return o?Object.keys(o).reduce(function(s,a){var e=o[a];return s.concat(e.playlists)},[]):[]},ai=function(o){var s,a=o.dashPlaylists,e=o.locations,r=o.sidxMapping,u=void 0===r?{}:r,p=o.previousManifest;if(!a.length)return{};var _=a[0].attributes,y=_.sourceDuration,D=_.type,j=_.suggestedPresentationDelay,B=_.minimumUpdatePeriod,ce=Fi(a.filter(sn)).map(It),De=Fi(a.filter(yn)),me=Fi(a.filter(In)),xe=a.map(function(Mn){return Mn.attributes.captionServices}).filter(Boolean),ht={allowCache:!0,discontinuityStarts:[],segments:[],endList:!0,mediaGroups:(s={AUDIO:{},VIDEO:{}},s["CLOSED-CAPTIONS"]={},s.SUBTITLES={},s),uri:"",duration:y,playlists:Lr(ce,u)};B>=0&&(ht.minimumUpdatePeriod=1e3*B),e&&(ht.locations=e),"dynamic"===D&&(ht.suggestedPresentationDelay=j);var _t=0===ht.playlists.length,Ft=De.length?function(o,s,a){void 0===s&&(s={}),void 0===a&&(a=!1);var e,r=o.reduce(function(p,_){var y=_.attributes.role&&_.attributes.role.value||"",D=_.attributes.lang||"",j=_.attributes.label||"main";if(D&&!_.attributes.label){var B=y?" ("+y+")":"";j=""+_.attributes.lang+B}p[j]||(p[j]={language:D,autoselect:!0,default:"main"===y,playlists:[],uri:""});var ce=Cr(function(o,s){var a,e=o.attributes,r=o.segments,u=o.sidx,p=o.mediaSequence,_=o.discontinuitySequence,y=o.discontinuityStarts,D={attributes:(a={NAME:e.id,BANDWIDTH:e.bandwidth,CODECS:e.codecs},a["PROGRAM-ID"]=1,a),uri:"",endList:"static"===e.type,timeline:e.periodStart,resolvedUri:"",targetDuration:e.duration,discontinuitySequence:_,discontinuityStarts:y,timelineStarts:e.timelineStarts,mediaSequence:p,segments:r};return e.contentProtection&&(D.contentProtection=e.contentProtection),u&&(D.sidx=u),s&&(D.attributes.AUDIO="audio",D.attributes.SUBTITLES="subs"),D}(_,a),s);return p[j].playlists.push(ce),typeof e>"u"&&"main"===y&&((e=_).default=!0),p},{});return e||(r[Object.keys(r)[0]].default=!0),r}(De,u,_t):null,jt=me.length?function(o,s){return void 0===s&&(s={}),o.reduce(function(a,e){var r=e.attributes.lang||"text";return a[r]||(a[r]={language:r,default:!1,autoselect:!1,playlists:[],uri:""}),a[r].playlists.push(Cr(function(o){var s,a=o.attributes,e=o.segments,r=o.mediaSequence,u=o.discontinuityStarts,p=o.discontinuitySequence;typeof e>"u"&&(e=[{uri:a.baseUrl,timeline:a.periodStart,resolvedUri:a.baseUrl||"",duration:a.sourceDuration,number:0}],a.duration=a.sourceDuration);var _=((s={NAME:a.id,BANDWIDTH:a.bandwidth})["PROGRAM-ID"]=1,s);return a.codecs&&(_.CODECS=a.codecs),{attributes:_,uri:"",endList:"static"===a.type,timeline:a.periodStart,resolvedUri:a.baseUrl||"",targetDuration:a.duration,timelineStarts:a.timelineStarts,discontinuityStarts:u,discontinuitySequence:p,mediaSequence:r,segments:e}}(e),s)),a},{})}(me,u):null,Ut=ce.concat(oi(Ft),oi(jt)),gn=Ut.map(function(Mn){return Mn.timelineStarts});return ht.timelineStarts=Ee(gn),function(o,s){o.forEach(function(a){a.mediaSequence=0,a.discontinuitySequence=re(s,function(e){return e.timeline===a.timeline}),a.segments&&a.segments.forEach(function(e,r){e.number=r})})}(Ut,ht.timelineStarts),Ft&&(ht.mediaGroups.AUDIO.audio=Ft),jt&&(ht.mediaGroups.SUBTITLES.subs=jt),xe.length&&(ht.mediaGroups["CLOSED-CAPTIONS"].cc=function(o){return o.reduce(function(s,a){return a&&a.forEach(function(e){var r=e.channel,u=e.language;s[u]={autoselect:!1,default:!1,instreamId:r,language:u},e.hasOwnProperty("aspectRatio")&&(s[u].aspectRatio=e.aspectRatio),e.hasOwnProperty("easyReader")&&(s[u].easyReader=e.easyReader),e.hasOwnProperty("3D")&&(s[u]["3D"]=e["3D"])}),s},{})}(xe)),p?Un({oldManifest:p,newManifest:ht}):ht},Xi=function(o,s,a){var e=o.NOW,r=o.clientOffset,u=o.availabilityStartTime,p=o.timescale,_=void 0===p?1:p,y=o.periodStart,D=void 0===y?0:y,j=o.minimumUpdatePeriod,xe=(e+r)/1e3+(void 0===j?0:j)-(u+D);return Math.ceil((xe*_-s)/a)},ur=function(o,s){for(var a=o.type,e=o.minimumUpdatePeriod,r=void 0===e?0:e,u=o.media,p=void 0===u?"":u,_=o.sourceDuration,y=o.timescale,D=void 0===y?1:y,j=o.startNumber,B=void 0===j?1:j,ce=o.periodStart,De=[],me=-1,xe=0;xeme&&(me=jt);var Ut=void 0;if(Ft<0){var gn=xe+1;Ut=gn===s.length?"dynamic"===a&&r>0&&p.indexOf("$Number$")>0?Xi(o,me,_t):(_*D-me)/_t:(s[gn].t-me)/_t}else Ut=Ft+1;for(var Mn=B+De.length+Ut,en=B+De.length;en"u")return s;var u=""+o[a];return"RepresentationID"===a||(r=e?parseInt(r,10):1,u.length>=r)?u:""+new Array(r-u.length+1).join("0")+u}}(s))},vr=function(o,s){var a={RepresentationID:o.id,Bandwidth:o.bandwidth||0},e=o.initialization,r=void 0===e?{sourceURL:"",range:""}:e,u=nn({baseUrl:o.baseUrl,source:Ei(r.sourceURL,a),range:r.range}),p=function(o,s){return o.duration||s?o.duration?Dn(o):ur(o,s):[{number:o.startNumber||1,duration:o.sourceDuration,time:0,timeline:o.periodStart}]}(o,s);return p.map(function(_){a.Number=_.number,a.Time=_.time;var y=Ei(o.media||"",a),D=o.timescale||1,j=o.presentationTimeOffset||0,B=o.periodStart+(_.time-j)/D;return{uri:y,timeline:_.timeline,duration:_.duration,resolvedUri:Ie(o.baseUrl||"",y),map:u,number:_.number,presentationTime:B}})},Ai=function(o,s){var a=o.duration,e=o.segmentUrls,r=void 0===e?[]:e,u=o.periodStart;if(!a&&!s||a&&s)throw new Error(ut_SEGMENT_TIME_UNSPECIFIED);var _,p=r.map(function(D){return function(o,s){var a=o.baseUrl,e=o.initialization,r=void 0===e?{}:e,u=nn({baseUrl:a,source:r.sourceURL,range:r.range}),p=nn({baseUrl:a,source:s.media,range:s.mediaRange});return p.map=u,p}(o,D)});return a&&(_=Dn(o)),s&&(_=ur(o,s)),_.map(function(D,j){if(p[j]){var B=p[j],ce=o.timescale||1,De=o.presentationTimeOffset||0;return B.timeline=D.timeline,B.duration=D.duration,B.number=D.number,B.presentationTime=u+(D.time-De)/ce,B}}).filter(function(D){return D})},Di=function(o){var e,r,s=o.attributes,a=o.segmentInfo;a.template?(r=vr,e=dt(s,a.template)):a.base?(r=$n,e=dt(s,a.base)):a.list&&(r=Ai,e=dt(s,a.list));var u={attributes:s};if(!r)return u;var p=r(e,a.segmentTimeline);if(e.duration){var _=e,y=_.duration,D=_.timescale,j=void 0===D?1:D;e.duration=y/j}else p.length?e.duration=p.reduce(function(B,ce){return Math.max(B,Math.ceil(ce.duration))},0):e.duration=0;return u.attributes=e,u.segments=p,a.base&&e.indexRange&&(u.sidx=p[0],u.segments=[]),u},pi=function(o,s){return we(o.childNodes).filter(function(a){return a.tagName===s})},Bn=function(o){return o.textContent.trim()},Dr=function(o){var _=/P(?:(\d*)Y)?(?:(\d*)M)?(?:(\d*)D)?(?:T(?:(\d*)H)?(?:(\d*)M)?(?:([\d.]*)S)?)?/.exec(o);if(!_)return 0;var y=_.slice(1),D=y[0],j=y[1],B=y[2],ce=y[3],De=y[4],me=y[5];return 31536e3*parseFloat(D||0)+2592e3*parseFloat(j||0)+86400*parseFloat(B||0)+3600*parseFloat(ce||0)+60*parseFloat(De||0)+parseFloat(me||0)},ko={mediaPresentationDuration:function(o){return Dr(o)},availabilityStartTime:function(o){return function(o){return/^\d+-\d+-\d+T\d+:\d+:\d+(\.\d+)?$/.test(o)&&(o+="Z"),Date.parse(o)}(o)/1e3},minimumUpdatePeriod:function(o){return Dr(o)},suggestedPresentationDelay:function(o){return Dr(o)},type:function(o){return o},timeShiftBufferDepth:function(o){return Dr(o)},start:function(o){return Dr(o)},width:function(o){return parseInt(o,10)},height:function(o){return parseInt(o,10)},bandwidth:function(o){return parseInt(o,10)},startNumber:function(o){return parseInt(o,10)},timescale:function(o){return parseInt(o,10)},presentationTimeOffset:function(o){return parseInt(o,10)},duration:function(o){var s=parseInt(o,10);return isNaN(s)?Dr(o):s},d:function(o){return parseInt(o,10)},t:function(o){return parseInt(o,10)},r:function(o){return parseInt(o,10)},DEFAULT:function(o){return o}},gi=function(o){return o&&o.attributes?we(o.attributes).reduce(function(s,a){var e=ko[a.name]||ko.DEFAULT;return s[a.name]=e(a.value),s},{}):{}},Si={"urn:uuid:1077efec-c0b2-4d02-ace3-3c1e52e2fb4b":"org.w3.clearkey","urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed":"com.widevine.alpha","urn:uuid:9a04f079-9840-4286-ab92-e65be0885f95":"com.microsoft.playready","urn:uuid:f239e769-efa3-4850-9c16-a903c6932efb":"com.adobe.primetime"},Qo=function(o,s){return s.length?Kt(o.map(function(a){return s.map(function(e){return Ie(a,Bn(e))})})):o},Sr=function(o){var s=pi(o,"SegmentTemplate")[0],a=pi(o,"SegmentList")[0],e=a&&pi(a,"SegmentURL").map(function(B){return dt({tag:"SegmentURL"},gi(B))}),r=pi(o,"SegmentBase")[0],u=a||s,p=u&&pi(u,"SegmentTimeline")[0],_=a||r||s,y=_&&pi(_,"Initialization")[0],D=s&&gi(s);D&&y?D.initialization=y&&gi(y):D&&D.initialization&&(D.initialization={sourceURL:D.initialization});var j={template:D,segmentTimeline:p&&pi(p,"S").map(function(B){return gi(B)}),list:a&&dt(gi(a),{segmentUrls:e,initialization:gi(y)}),base:r&&dt(gi(r),{initialization:gi(y)})};return Object.keys(j).forEach(function(B){j[B]||delete j[B]}),j},mi=function(o,s,a){return function(e){var r=gi(e),u=Qo(s,pi(e,"BaseURL")),p=pi(e,"Role")[0],_={role:gi(p)},y=dt(o,r,_),D=pi(e,"Accessibility")[0],j=function(o){return"urn:scte:dash:cc:cea-608:2015"===o.schemeIdUri?("string"!=typeof o.value?[]:o.value.split(";")).map(function(e){var r,u;if(u=e,/^CC\d=/.test(e)){var p=e.split("=");r=p[0],u=p[1]}else/^CC\d$/.test(e)&&(r=e);return{channel:r,language:u}}):"urn:scte:dash:cc:cea-708:2015"===o.schemeIdUri?("string"!=typeof o.value?[]:o.value.split(";")).map(function(e){var r={channel:void 0,language:void 0,aspectRatio:1,easyReader:0,"3D":0};if(/=/.test(e)){var u=e.split("="),p=u[0],_=u[1],y=void 0===_?"":_;r.channel=p,r.language=e,y.split(",").forEach(function(D){var j=D.split(":"),B=j[0],ce=j[1];"lang"===B?r.language=ce:"er"===B?r.easyReader=Number(ce):"war"===B?r.aspectRatio=Number(ce):"3D"===B&&(r["3D"]=Number(ce))})}else r.language=e;return r.channel&&(r.channel="SERVICE"+r.channel),r}):void 0}(gi(D));j&&(y=dt(y,{captionServices:j}));var B=pi(e,"Label")[0];if(B&&B.childNodes.length){var ce=B.childNodes[0].nodeValue.trim();y=dt(y,{label:ce})}var De=function(o){return o.reduce(function(s,a){var e=gi(a),r=Si[e.schemeIdUri];if(r){s[r]={attributes:e};var u=pi(a,"cenc:pssh")[0];if(u){var p=Bn(u),_=p&&Z(p);s[r].pssh=_}}return s},{})}(pi(e,"ContentProtection"));Object.keys(De).length&&(y=dt(y,{contentProtection:De}));var me=Sr(e),xe=pi(e,"Representation"),ht=dt(a,me);return Kt(xe.map(function(o,s,a){return function(e){var r=pi(e,"BaseURL"),u=Qo(s,r),p=dt(o,gi(e)),_=Sr(e);return u.map(function(y){return{segmentInfo:dt(a,_),attributes:dt(p,{baseUrl:y})}})}}(y,u,ht)))}},Yo=function(o,s){return function(a,e){var r=Qo(s,pi(a.node,"BaseURL")),u=dt(o,{periodStart:a.attributes.start});"number"==typeof a.attributes.duration&&(u.periodDuration=a.attributes.duration);var p=pi(a.node,"AdaptationSet"),_=Sr(a.node);return Kt(p.map(mi(u,r,_)))}},Wr=function(o){if(""===o)throw new Error(ut_DASH_EMPTY_MANIFEST);var a,e,s=new qt.DOMParser;try{e=(a=s.parseFromString(o,"application/xml"))&&"MPD"===a.documentElement.tagName?a.documentElement:null}catch{}if(!e||e&&e.getElementsByTagName("parsererror").length>0)throw new Error(ut_DASH_INVALID_XML);return e},or=function(o,s){void 0===s&&(s={});var a=function(o,s){void 0===s&&(s={});var a=s,e=a.manifestUri,r=void 0===e?"":e,u=a.NOW,p=void 0===u?Date.now():u,_=a.clientOffset,y=void 0===_?0:_,D=pi(o,"Period");if(!D.length)throw new Error(ut_INVALID_NUMBER_OF_PERIOD);var j=pi(o,"Location"),B=gi(o),ce=Qo([r],pi(o,"BaseURL"));B.type=B.type||"static",B.sourceDuration=B.mediaPresentationDuration||0,B.NOW=p,B.clientOffset=y,j.length&&(B.locations=j.map(Bn));var De=[];return D.forEach(function(me,xe){var ht=gi(me),_t=De[xe-1];ht.start=function(o){var s=o.attributes,a=o.priorPeriodAttributes,e=o.mpdType;return"number"==typeof s.start?s.start:a&&"number"==typeof a.start&&"number"==typeof a.duration?a.start+a.duration:a||"static"!==e?null:0}({attributes:ht,priorPeriodAttributes:_t?_t.attributes:null,mpdType:B.type}),De.push({node:me,attributes:ht})}),{locations:B.locations,representationInfo:Kt(De.map(Yo(B,ce)))}}(Wr(o),s),e=function(o){return o.map(Di)}(a.representationInfo);return ai({dashPlaylists:e,locations:a.locations,sidxMapping:s.sidxMapping,previousManifest:s.previousManifest})},fr=function(o){return function(o){var s=pi(o,"UTCTiming")[0];if(!s)return null;var a=gi(s);switch(a.schemeIdUri){case"urn:mpeg:dash:utc:http-head:2014":case"urn:mpeg:dash:utc:http-head:2012":a.method="HEAD";break;case"urn:mpeg:dash:utc:http-xsdate:2014":case"urn:mpeg:dash:utc:http-iso:2014":case"urn:mpeg:dash:utc:http-xsdate:2012":case"urn:mpeg:dash:utc:http-iso:2012":a.method="GET";break;case"urn:mpeg:dash:utc:direct:2014":case"urn:mpeg:dash:utc:direct:2012":a.method="DIRECT",a.value=Date.parse(a.value);break;default:throw new Error(ut_UNSUPPORTED_UTC_TIMING_SCHEME)}return a}(Wr(o))},er=w(9480),Or=w.n(er),Jo=function(o){return function(o){return"function"===ArrayBuffer.isView?ArrayBuffer.isView(o):o&&o.buffer instanceof ArrayBuffer}(o)},Tn=function(o){return o instanceof Uint8Array?o:(!Array.isArray(o)&&!Jo(o)&&!(o instanceof ArrayBuffer)&&(o="number"!=typeof o||"number"==typeof o&&o!=o?0:[o]),new Uint8Array(o&&o.buffer||o,o&&o.byteOffset||0,o&&o.byteLength||0))},Ii=C().BigInt||Number,Fo=[Ii("0x1"),Ii("0x100"),Ii("0x10000"),Ii("0x1000000"),Ii("0x100000000"),Ii("0x10000000000"),Ii("0x1000000000000"),Ii("0x100000000000000"),Ii("0x10000000000000000")],Xo=(f=new Uint16Array([65484]),255===(o=new Uint8Array(f.buffer,f.byteOffset,f.byteLength))[0]||o[0],function(o,s){var a=void 0===s?{}:s,e=a.signed,r=void 0!==e&&e,u=a.le,p=void 0!==u&&u;o=Tn(o);var _=p?"reduce":"reduceRight",D=(o[_]?o[_]:Array.prototype[_]).call(o,function(B,ce,De){var me=p?De:Math.abs(De+1-o.length);return B+Ii(ce)*Fo[me]},Ii(0));if(r){var j=Fo[o.length]/Ii(2)-Ii(1);(D=Ii(D))>j&&(D-=j,D-=j,D-=Ii(2))}return Number(D)}),oo=function(o,s){var e=(void 0===s?{}:s).le,r=void 0!==e&&e;("bigint"!=typeof o&&"number"!=typeof o||"number"==typeof o&&o!=o)&&(o=0);for(var u=function(o){return Math.ceil(function(o){return o.toString(2).length}(o)/8)}(o=Ii(o)),p=new Uint8Array(new ArrayBuffer(u)),_=0;_=s.length&&y.call(s,function(D,j){return D===(_[j]?_[j]&o[u+j]:o[u+j])})},br=Tn([73,68,51]),Qr=function f(o,s){return void 0===s&&(s=0),(o=Tn(o)).length-s<10||!ti(o,br,{offset:s})?s:(s+=function(o,s){void 0===s&&(s=0);var a=(o=Tn(o))[s+5],e=o[s+6]<<21|o[s+7]<<14|o[s+8]<<7|o[s+9];return(16&a)>>4?e+20:e+10}(o,s),f(o,s))},Kr=(new Uint8Array([79,112,117,115,72,101,97,100]),function(o){return"string"==typeof o?Br(o):o}),ea=function(o){o=Tn(o);for(var s=[],a=0;o.length>a;){var e=o[a],r=0,u=0,p=o[++u];for(u++;128&p;)r=(127&p)<<7,p=o[u],u++;r+=127&p;for(var _=0;_>>0,p=o.subarray(r+4,r+8);if(0===u)break;var _=r+u;if(_>o.length){if(a)break;_=o.length}var y=o.subarray(r+8,_);ti(p,s[0])&&(1===s.length?e.push(y):e.push.apply(e,f(y,s.slice(1),a))),r=_}return e},_i={EBML:Tn([26,69,223,163]),DocType:Tn([66,130]),Segment:Tn([24,83,128,103]),SegmentInfo:Tn([21,73,169,102]),Tracks:Tn([22,84,174,107]),Track:Tn([174]),TrackNumber:Tn([215]),DefaultDuration:Tn([35,227,131]),TrackEntry:Tn([174]),TrackType:Tn([131]),FlagDefault:Tn([136]),CodecID:Tn([134]),CodecPrivate:Tn([99,162]),VideoTrack:Tn([224]),AudioTrack:Tn([225]),Cluster:Tn([31,67,182,117]),Timestamp:Tn([231]),TimestampScale:Tn([42,215,177]),BlockGroup:Tn([160]),BlockDuration:Tn([155]),Block:Tn([161]),SimpleBlock:Tn([163])},lo=[128,64,32,16,8,4,2,1],ui=function(o,s,a,e){void 0===a&&(a=!0),void 0===e&&(e=!1);var r=function(o){for(var s=1,a=0;a=s.length)return s.length;var e=ui(s,a,!1);if(ti(o.bytes,e.bytes))return a;var r=ui(s,a+e.length);return f(o,s,a+r.length+r.value+e.length)},ci=function f(o,s){s=function(o){return Array.isArray(o)?o.map(function(s){return ms(s)}):[ms(o)]}(s),o=Tn(o);var a=[];if(!s.length)return a;for(var e=0;eo.length?o.length:p+u.value,y=o.subarray(p,_);ti(s[0],r.bytes)&&(1===s.length?a.push(y):a=a.concat(f(y,s.slice(1)))),e+=r.length+u.length+y.length}return a},Ea=Tn([0,0,0,1]),Ia=Tn([0,0,1]),As=Tn([0,0,3]),co=function(o){for(var s=[],a=1;a>1&63),-1!==a.indexOf(y)&&(u=r+_),r+=_+("h264"===s?1:2)}else r++}return o.subarray(0,0)},Mr={webm:Tn([119,101,98,109]),matroska:Tn([109,97,116,114,111,115,107,97]),flac:Tn([102,76,97,67]),ogg:Tn([79,103,103,83]),ac3:Tn([11,119]),riff:Tn([82,73,70,70]),avi:Tn([65,86,73]),wav:Tn([87,65,86,69]),"3gp":Tn([102,116,121,112,51,103]),mp4:Tn([102,116,121,112]),fmp4:Tn([115,116,121,112]),mov:Tn([102,116,121,112,113,116]),moov:Tn([109,111,111,118]),moof:Tn([109,111,111,102])},oe={aac:function(o){var s=Qr(o);return ti(o,[255,16],{offset:s,mask:[255,22]})},mp3:function(o){var s=Qr(o);return ti(o,[255,2],{offset:s,mask:[255,6]})},webm:function(o){var s=ci(o,[_i.EBML,_i.DocType])[0];return ti(s,Mr.webm)},mkv:function(o){var s=ci(o,[_i.EBML,_i.DocType])[0];return ti(s,Mr.matroska)},mp4:function(o){return!oe["3gp"](o)&&!oe.mov(o)&&(!!(ti(o,Mr.mp4,{offset:4})||ti(o,Mr.fmp4,{offset:4})||ti(o,Mr.moof,{offset:4})||ti(o,Mr.moov,{offset:4}))||void 0)},mov:function(o){return ti(o,Mr.mov,{offset:4})},"3gp":function(o){return ti(o,Mr["3gp"],{offset:4})},ac3:function(o){var s=Qr(o);return ti(o,Mr.ac3,{offset:s})},ts:function(o){if(o.length<189&&o.length>=1)return 71===o[0];for(var s=0;s+188 + * Copyright Brightcove, Inc. + * Available under Apache License Version 2.0 + * + * + * Includes vtt.js + * Available under Apache License Version 2.0 + * + */ +for(var La,X=oe,it=function(o){o=Tn(o);for(var s=0;s0?_:0)}if(C().console){var y=C().console[a];!y&&"debug"===a&&(y=C().console.info||C().console.log),y&&u&&p.test(a)&&y[Array.isArray(r)?"apply":"call"](C().console,r)}}}(f,a),a.createLogger=function(e){return i1(f+": "+e)},a.levels={all:"debug|log|warn|error",off:"",debug:"debug|log|warn|error",info:"log|warn|error",warn:"warn|error",error:"error",DEFAULT:o},a.level=function(e){if("string"==typeof e){if(!a.levels.hasOwnProperty(e))throw new Error('"'+e+'" in not a valid log level');o=e}return o},a.history=function(){return fo?[].concat(fo):[]},a.history.filter=function(e){return(fo||[]).filter(function(r){return new RegExp(".*"+e+".*").test(r[0])})},a.history.clear=function(){fo&&(fo.length=0)},a.history.disable=function(){null!==fo&&(fo.length=0,fo=null)},a.history.enable=function(){null===fo&&(fo=[])},a.error=function(){for(var e=arguments.length,r=new Array(e),u=0;u1?o-1:0),a=1;a=0)throw new Error("class has illegal whitespace characters")}function Zi(){return U()===C().document}function kr(f){return k(f)&&1===f.nodeType}function Da(){try{return C().parent!==C().self}catch{return!0}}function tr(f){return function(o,s){if(!Kn(o))return U()[f](null);Kn(s)&&(s=U().querySelector(s));var a=kr(s)?s:U();return a[f]&&a[f](o)}}function Jn(f,o,s,a){void 0===f&&(f="div"),void 0===o&&(o={}),void 0===s&&(s={});var e=U().createElement(f);return Object.getOwnPropertyNames(o).forEach(function(r){var u=o[r];-1!==r.indexOf("aria-")||"role"===r||"type"===r?(kn.warn("Setting attributes in the second argument of createEl()\nhas been deprecated. Use the third argument instead.\ncreateEl(type, properties, attributes). Attempting to set "+r+" to "+u+"."),e.setAttribute(r,u)):"textContent"===r?po(e,u):(e[r]!==u||"tabIndex"===r)&&(e[r]=u)}),Object.getOwnPropertyNames(s).forEach(function(r){e.setAttribute(r,s[r])}),a&&Ca(e,a),e}function po(f,o){return typeof f.textContent>"u"?f.innerText=o:f.textContent=o,f}function Wa(f,o){o.firstChild?o.insertBefore(f,o.firstChild):o.appendChild(f)}function ma(f,o){return Yn(o),f.classList?f.classList.contains(o):function Ki(f){return new RegExp("(^|\\s)"+f+"($|\\s)")}(o).test(f.className)}function _o(f,o){return f.classList?f.classList.add(o):ma(f,o)||(f.className=(f.className+" "+o).trim()),f}function Qa(f,o){return f?(f.classList?f.classList.remove(o):(Yn(o),f.className=f.className.split(/\s+/).filter(function(s){return s!==o}).join(" ")),f):(kn.warn("removeClass was called with an element that doesn't exist"),null)}function g2(f,o,s){var a=ma(f,o);if("function"==typeof s&&(s=s(f,o)),"boolean"!=typeof s&&(s=!a),s!==a)return s?_o(f,o):Qa(f,o),f}function m2(f,o){Object.getOwnPropertyNames(o).forEach(function(s){var a=o[s];null===a||typeof a>"u"||!1===a?f.removeAttribute(s):f.setAttribute(s,!0===a?"":a)})}function Cs(f){var o={};if(f&&f.attributes&&f.attributes.length>0)for(var a=f.attributes,e=a.length-1;e>=0;e--){var r=a[e].name,u=a[e].value;("boolean"==typeof f[r]||-1!==",autoplay,controls,playsinline,loop,muted,default,defaultMuted,".indexOf(","+r+","))&&(u=null!==u),o[r]=u}return o}function _2(f,o){return f.getAttribute(o)}function ia(f,o,s){f.setAttribute(o,s)}function Sa(f,o){f.removeAttribute(o)}function vs(){U().body.focus(),U().onselectstart=function(){return!1}}function Ka(){U().onselectstart=function(){return!0}}function ra(f){if(f&&f.getBoundingClientRect&&f.parentNode){var o=f.getBoundingClientRect(),s={};return["bottom","height","left","right","top","width"].forEach(function(a){void 0!==o[a]&&(s[a]=o[a])}),s.height||(s.height=parseFloat(ne(f,"height"))),s.width||(s.width=parseFloat(ne(f,"width"))),s}}function _a(f){if(!f||f&&!f.offsetParent)return{left:0,top:0,width:0,height:0};for(var o=f.offsetWidth,s=f.offsetHeight,a=0,e=0;f.offsetParent&&f!==U()[ga.fullscreenElement];)a+=f.offsetLeft,e+=f.offsetTop,f=f.offsetParent;return{left:a,top:e,width:o,height:s}}function oa(f,o){var s={x:0,y:0};if(Ct)for(var a=f;a&&"html"!==a.nodeName.toLowerCase();){var e=ne(a,"transform");if(/^matrix/.test(e)){var r=e.slice(7,-1).split(/,\s/).map(Number);s.x+=r[4],s.y+=r[5]}else if(/^matrix3d/.test(e)){var u=e.slice(9,-1).split(/,\s/).map(Number);s.x+=u[12],s.y+=u[13]}a=a.parentNode}var p={},_=_a(o.target),y=_a(f),D=y.width,j=y.height,B=o.offsetY-(y.top-_.top),ce=o.offsetX-(y.left-_.left);return o.changedTouches&&(ce=o.changedTouches[0].pageX-y.left,B=o.changedTouches[0].pageY+y.top,Ct&&(ce-=s.x,B-=s.y)),p.y=1-Math.max(0,Math.min(1,B/j)),p.x=Math.max(0,Math.min(1,ce/D)),p}function o1(f){return k(f)&&3===f.nodeType}function jo(f){for(;f.firstChild;)f.removeChild(f.firstChild);return f}function rs(f){return"function"==typeof f&&(f=f()),(Array.isArray(f)?f:[f]).map(function(o){return"function"==typeof o&&(o=o()),kr(o)||o1(o)?o:"string"==typeof o&&/\S/.test(o)?U().createTextNode(o):void 0}).filter(function(o){return o})}function Ca(f,o){return rs(o).forEach(function(s){return f.appendChild(s)}),f}function k1(f,o){return Ca(jo(f),o)}function Pa(f){return void 0===f.button&&void 0===f.buttons||0===f.button&&void 0===f.buttons||"mouseup"===f.type&&0===f.button&&0===f.buttons||!(0!==f.button||1!==f.buttons)}var s1,Do=tr("querySelector"),a1=tr("querySelectorAll"),Ya=Object.freeze({__proto__:null,isReal:Zi,isEl:kr,isInFrame:Da,createEl:Jn,textContent:po,prependTo:Wa,hasClass:ma,addClass:_o,removeClass:Qa,toggleClass:g2,setAttributes:m2,getAttributes:Cs,getAttribute:_2,setAttribute:ia,removeAttribute:Sa,blockTextSelection:vs,unblockTextSelection:Ka,getBoundingClientRect:ra,findPosition:_a,getPointerPosition:oa,isTextNode:o1,emptyEl:jo,normalizeContent:rs,appendContent:Ca,insertContent:k1,isSingleLeftClick:Pa,$:Do,$$:a1}),lu=!1,C2=function(){if(!1!==s1.options.autoSetup){var o=Array.prototype.slice.call(U().getElementsByTagName("video")),s=Array.prototype.slice.call(U().getElementsByTagName("audio")),a=Array.prototype.slice.call(U().getElementsByTagName("video-js")),e=o.concat(s,a);if(e&&e.length>0)for(var r=0,u=e.length;r-1&&(e={passive:!0}),f.addEventListener(o,a.dispatcher,e)}else f.attachEvent&&f.attachEvent("on"+o,a.dispatcher)}function jr(f,o,s){if(Rn.has(f)){var a=Rn.get(f);if(a.handlers){if(Array.isArray(o))return ji(jr,f,o,s);var e=function(y,D){a.handlers[D]=[],ni(y,D)};if(void 0===o){for(var r in a.handlers)Object.prototype.hasOwnProperty.call(a.handlers||{},r)&&e(f,r);return}var u=a.handlers[o];if(u){if(!s)return void e(f,o);if(s.guid)for(var p=0;p=s&&(o.apply(void 0,arguments),a=u)}},ho=function(){};ho.prototype.allowedEvents_={},ho.prototype.on=function(f,o){var s=this.addEventListener;this.addEventListener=function(){},Pi(this,f,o),this.addEventListener=s},ho.prototype.addEventListener=ho.prototype.on,ho.prototype.off=function(f,o){jr(this,f,o)},ho.prototype.removeEventListener=ho.prototype.off,ho.prototype.one=function(f,o){var s=this.addEventListener;this.addEventListener=function(){},l1(this,f,o),this.addEventListener=s},ho.prototype.any=function(f,o){var s=this.addEventListener;this.addEventListener=function(){},v2(this,f,o),this.addEventListener=s},ho.prototype.trigger=function(f){var o=f.type||f;"string"==typeof f&&(f={type:o}),f=zr(f),this.allowedEvents_[o]&&this["on"+o]&&this["on"+o](f),Oa(this,f)},ho.prototype.dispatchEvent=ho.prototype.trigger,ho.prototype.queueTrigger=function(f){var o=this;Fs||(Fs=new Map);var s=f.type||f,a=Fs.get(this);a||(a=new Map,Fs.set(this,a));var e=a.get(s);a.delete(s),C().clearTimeout(e);var r=C().setTimeout(function(){0===a.size&&(a=null,Fs.delete(o)),o.trigger(f)},0);a.set(s,r)};var sa=function(o){return"function"==typeof o.name?o.name():"string"==typeof o.name?o.name:o.name_?o.name_:o.constructor&&o.constructor.name?o.constructor.name:typeof o},ys=function(o){return o instanceof ho||!!o.eventBusEl_&&["on","one","off","trigger"].every(function(s){return"function"==typeof o[s]})},l3=function(o){return"string"==typeof o&&/\S/.test(o)||Array.isArray(o)&&!!o.length},jl=function(o,s,a){if(!o||!o.nodeName&&!ys(o))throw new Error("Invalid target for "+sa(s)+"#"+a+"; must be a DOM node or evented object.")},b2=function(o,s,a){if(!l3(o))throw new Error("Invalid event type for "+sa(s)+"#"+a+"; must be a non-empty string or array.")},w5=function(o,s,a){if("function"!=typeof o)throw new Error("Invalid listener for "+sa(s)+"#"+a+"; must be a function.")},uu=function(o,s,a){var r,u,p,e=s.length<3||s[0]===o||s[0]===o.eventBusEl_;return e?(r=o.eventBusEl_,s.length>=3&&s.shift(),u=s[0],p=s[1]):(r=s[0],u=s[1],p=s[2]),jl(r,o,a),b2(u,o,a),w5(p,o,a),{isTargetingSelf:e,target:r,type:u,listener:p=Hi(o,p)}},sl=function(o,s,a,e){jl(o,o,s),o.nodeName?zl[s](o,a,e):o[s](a,e)},x5={on:function(){for(var o=this,s=arguments.length,a=new Array(s),e=0;e=0;a--)this.children_[a].dispose&&this.children_[a].dispose();this.children_=null,this.childIndex_=null,this.childNameIndex_=null,this.parentComponent_=null,this.el_&&(this.el_.parentNode&&this.el_.parentNode.removeChild(this.el_),this.el_=null),this.player_=null}},o.isDisposed=function(){return Boolean(this.isDisposed_)},o.player=function(){return this.player_},o.options=function(a){return a?(this.options_=Tr(this.options_,a),this.options_):this.options_},o.el=function(){return this.el_},o.createEl=function(a,e,r){return Jn(a,e,r)},o.localize=function(a,e,r){void 0===r&&(r=a);var u=this.player_.language&&this.player_.language(),p=this.player_.languages&&this.player_.languages(),_=p&&p[u],y=u&&u.split("-")[0],D=p&&p[y],j=r;return _&&_[a]?j=_[a]:D&&D[a]&&(j=D[a]),e&&(j=j.replace(/\{(\d+)\}/g,function(B,ce){var De=e[ce-1],me=De;return typeof De>"u"&&(me=B),me})),j},o.handleLanguagechange=function(){},o.contentEl=function(){return this.contentEl_||this.el_},o.id=function(){return this.id_},o.name=function(){return this.name_},o.children=function(){return this.children_},o.getChildById=function(a){return this.childIndex_[a]},o.getChild=function(a){if(a)return this.childNameIndex_[a]},o.getDescendant=function(){for(var a=arguments.length,e=new Array(a),r=0;r=0;r--)if(this.children_[r]===a){e=!0,this.children_.splice(r,1);break}if(e){a.parentComponent_=null,this.childIndex_[a.id()]=null,this.childNameIndex_[Nr(a.name())]=null,this.childNameIndex_[Ur(a.name())]=null;var u=a.el();u&&u.parentNode===this.contentEl()&&this.contentEl().removeChild(a.el())}}},o.initChildren=function(){var a=this,e=this.options_.children;if(e){var p,r=this.options_,_=f.getComponent("Tech");(p=Array.isArray(e)?e:Object.keys(e)).concat(Object.keys(this.options_).filter(function(y){return!p.some(function(D){return"string"==typeof D?y===D:y===D.name})})).map(function(y){var D,j;return"string"==typeof y?j=e[D=y]||a.options_[D]||{}:(D=y.name,j=y),{name:D,opts:j}}).filter(function(y){var D=f.getComponent(y.opts.componentClass||Nr(y.name));return D&&!_.isTech(D)}).forEach(function(D){var j=D.name,B=D.opts;if(void 0!==r[j]&&(B=r[j]),!1!==B){!0===B&&(B={}),B.playerOptions=a.options_.playerOptions;var ce=a.addChild(j,B);ce&&(a[j]=ce)}})}},o.buildCSSClass=function(){return""},o.ready=function(a,e){if(void 0===e&&(e=!1),a){if(!this.isReady_)return this.readyQueue_=this.readyQueue_||[],void this.readyQueue_.push(a);e?a.call(this):this.setTimeout(a,1)}},o.triggerReady=function(){this.isReady_=!0,this.setTimeout(function(){var a=this.readyQueue_;this.readyQueue_=[],a&&a.length>0&&a.forEach(function(e){e.call(this)},this),this.trigger("ready")},1)},o.$=function(a,e){return Do(a,e||this.contentEl())},o.$$=function(a,e){return a1(a,e||this.contentEl())},o.hasClass=function(a){return ma(this.el_,a)},o.addClass=function(a){_o(this.el_,a)},o.removeClass=function(a){Qa(this.el_,a)},o.toggleClass=function(a,e){g2(this.el_,a,e)},o.show=function(){this.removeClass("vjs-hidden")},o.hide=function(){this.addClass("vjs-hidden")},o.lockShowing=function(){this.addClass("vjs-lock-showing")},o.unlockShowing=function(){this.removeClass("vjs-lock-showing")},o.getAttribute=function(a){return _2(this.el_,a)},o.setAttribute=function(a,e){ia(this.el_,a,e)},o.removeAttribute=function(a){Sa(this.el_,a)},o.width=function(a,e){return this.dimension("width",a,e)},o.height=function(a,e){return this.dimension("height",a,e)},o.dimensions=function(a,e){this.width(a,!0),this.height(e)},o.dimension=function(a,e,r){if(void 0!==e)return(null===e||e!=e)&&(e=0),-1!==(""+e).indexOf("%")||-1!==(""+e).indexOf("px")?this.el_.style[a]=e:this.el_.style[a]="auto"===e?"":e+"px",void(r||this.trigger("componentresize"));if(!this.el_)return 0;var u=this.el_.style[a],p=u.indexOf("px");return parseInt(-1!==p?u.slice(0,p):this.el_["offset"+Nr(a)],10)},o.currentDimension=function(a){var e=0;if("width"!==a&&"height"!==a)throw new Error("currentDimension only accepts width or height value");if(e=ne(this.el_,a),0===(e=parseFloat(e))||isNaN(e)){var r="offset"+Nr(a);e=this.el_[r]}return e},o.currentDimensions=function(){return{width:this.currentDimension("width"),height:this.currentDimension("height")}},o.currentWidth=function(){return this.currentDimension("width")},o.currentHeight=function(){return this.currentDimension("height")},o.focus=function(){this.el_.focus()},o.blur=function(){this.el_.blur()},o.handleKeyDown=function(a){this.player_&&(K().isEventKey(a,"Tab")||a.stopPropagation(),this.player_.handleKeyDown(a))},o.handleKeyPress=function(a){this.handleKeyDown(a)},o.emitTapEvents=function(){var p,a=0,e=null;this.on("touchstart",function(y){1===y.touches.length&&(e={pageX:y.touches[0].pageX,pageY:y.touches[0].pageY},a=C().performance.now(),p=!0)}),this.on("touchmove",function(y){if(y.touches.length>1)p=!1;else if(e){var D=y.touches[0].pageX-e.pageX,j=y.touches[0].pageY-e.pageY;Math.sqrt(D*D+j*j)>10&&(p=!1)}});var _=function(){p=!1};this.on("touchleave",_),this.on("touchcancel",_),this.on("touchend",function(y){(e=null,!0===p)&&(C().performance.now()-a<200&&(y.preventDefault(),this.trigger("tap")))})},o.enableTouchActivity=function(){if(this.player()&&this.player().reportUserActivity){var e,a=Hi(this.player(),this.player().reportUserActivity);this.on("touchstart",function(){a(),this.clearInterval(e),e=this.setInterval(a,250)});var r=function(p){a(),this.clearInterval(e)};this.on("touchmove",a),this.on("touchend",r),this.on("touchcancel",r)}},o.setTimeout=function(a,e){var u,r=this;return a=Hi(this,a),this.clearTimersOnDispose_(),u=C().setTimeout(function(){r.setTimeoutIds_.has(u)&&r.setTimeoutIds_.delete(u),a()},e),this.setTimeoutIds_.add(u),u},o.clearTimeout=function(a){return this.setTimeoutIds_.has(a)&&(this.setTimeoutIds_.delete(a),C().clearTimeout(a)),a},o.setInterval=function(a,e){a=Hi(this,a),this.clearTimersOnDispose_();var r=C().setInterval(a,e);return this.setIntervalIds_.add(r),r},o.clearInterval=function(a){return this.setIntervalIds_.has(a)&&(this.setIntervalIds_.delete(a),C().clearInterval(a)),a},o.requestAnimationFrame=function(a){var r,e=this;return this.supportsRaf_?(this.clearTimersOnDispose_(),a=Hi(this,a),r=C().requestAnimationFrame(function(){e.rafIds_.has(r)&&e.rafIds_.delete(r),a()}),this.rafIds_.add(r),r):this.setTimeout(a,1e3/60)},o.requestNamedAnimationFrame=function(a,e){var r=this;if(!this.namedRafs_.has(a)){this.clearTimersOnDispose_(),e=Hi(this,e);var u=this.requestAnimationFrame(function(){e(),r.namedRafs_.has(a)&&r.namedRafs_.delete(a)});return this.namedRafs_.set(a,u),a}},o.cancelNamedAnimationFrame=function(a){!this.namedRafs_.has(a)||(this.cancelAnimationFrame(this.namedRafs_.get(a)),this.namedRafs_.delete(a))},o.cancelAnimationFrame=function(a){return this.supportsRaf_?(this.rafIds_.has(a)&&(this.rafIds_.delete(a),C().cancelAnimationFrame(a)),a):this.clearTimeout(a)},o.clearTimersOnDispose_=function(){var a=this;this.clearingTimersOnDispose_||(this.clearingTimersOnDispose_=!0,this.one("dispose",function(){[["namedRafs_","cancelNamedAnimationFrame"],["rafIds_","cancelAnimationFrame"],["setTimeoutIds_","clearTimeout"],["setIntervalIds_","clearInterval"]].forEach(function(e){var r=e[0],u=e[1];a[r].forEach(function(p,_){return a[u](_)})}),a.clearingTimersOnDispose_=!1}))},f.registerComponent=function(a,e){if("string"!=typeof a||!a)throw new Error('Illegal component name, "'+a+'"; must be a non-empty string.');var _,r=f.getComponent("Tech"),u=r&&r.isTech(e),p=f===e||f.prototype.isPrototypeOf(e.prototype);if(u||!p)throw _=u?"techs must be registered using Tech.registerTech()":"must be a Component subclass",new Error('Illegal component, "'+a+'"; '+_+".");a=Nr(a),f.components_||(f.components_={});var y=f.getComponent("Player");if("Player"===a&&y&&y.players){var D=y.players,j=Object.keys(D);if(D&&j.length>0&&j.map(function(B){return D[B]}).every(Boolean))throw new Error("Can not register Player component after player has been created.")}return f.components_[a]=e,f.components_[Ur(a)]=e,e},f.getComponent=function(a){if(a&&f.components_)return f.components_[a]},f}();function bs(f,o,s,a){return function os(f,o,s){if("number"!=typeof o||o<0||o>s)throw new Error("Failed to execute '"+f+"' on 'TimeRanges': The index provided ("+o+") is non-numeric or out of bounds (0-"+s+").")}(f,a,s.length-1),s[a][o]}function du(f){var o;return o=void 0===f||0===f.length?{length:0,start:function(){throw new Error("This TimeRanges object is empty")},end:function(){throw new Error("This TimeRanges object is empty")}}:{length:f.length,start:bs.bind(null,"start",0,f),end:bs.bind(null,"end",1,f)},C().Symbol&&C().Symbol.iterator&&(o[C().Symbol.iterator]=function(){return(f||[]).values()}),o}function Rs(f,o){return Array.isArray(f)?du(f):void 0===f||void 0===o?du():du([[f,o]])}function Ec(f,o){var a,e,s=0;if(!o)return 0;(!f||!f.length)&&(f=Rs(0,0));for(var r=0;ro&&(e=o),s+=e-a;return s/o}function Gi(f){if(f instanceof Gi)return f;"number"==typeof f?this.code=f:"string"==typeof f?this.message=f:k(f)&&("number"==typeof f.code&&(this.code=f.code),wi(this,f)),this.message||(this.message=Gi.defaultMessages[this.code]||"")}Jt.prototype.supportsRaf_="function"==typeof C().requestAnimationFrame&&"function"==typeof C().cancelAnimationFrame,Jt.registerComponent("Component",Jt),Gi.prototype.code=0,Gi.prototype.message="",Gi.prototype.status=null,Gi.errorTypes=["MEDIA_ERR_CUSTOM","MEDIA_ERR_ABORTED","MEDIA_ERR_NETWORK","MEDIA_ERR_DECODE","MEDIA_ERR_SRC_NOT_SUPPORTED","MEDIA_ERR_ENCRYPTED"],Gi.defaultMessages={1:"You aborted the media playback",2:"A network error caused the media download to fail part-way.",3:"The media playback was aborted due to a corruption problem or because the media used features your browser did not support.",4:"The media could not be loaded, either because the server or network failed or because the format is not supported.",5:"The media is encrypted and we do not have the keys to decrypt it."};for(var zs=0;zs=0;r--)if(a[r].enabled){pu(a,a[r]);break}return(e=f.call(this,a)||this).changing_=!1,e}R(o,f);var s=o.prototype;return s.addTrack=function(e){var r=this;e.enabled&&pu(this,e),f.prototype.addTrack.call(this,e),e.addEventListener&&(e.enabledChange_=function(){r.changing_||(r.changing_=!0,pu(r,e),r.changing_=!1,r.trigger("change"))},e.addEventListener("enabledchange",e.enabledChange_))},s.removeTrack=function(e){f.prototype.removeTrack.call(this,e),e.removeEventListener&&e.enabledChange_&&(e.removeEventListener("enabledchange",e.enabledChange_),e.enabledChange_=null)},o}(ul),cl=function(o,s){for(var a=0;a=0;r--)if(a[r].selected){cl(a,a[r]);break}return(e=f.call(this,a)||this).changing_=!1,Object.defineProperty($(e),"selectedIndex",{get:function(){for(var p=0;p0&&(C().console&&C().console.groupCollapsed&&C().console.groupCollapsed("Text Track parsing errors for "+s.src),e.forEach(function(r){return kn.error(r)}),C().console&&C().console.groupEnd&&C().console.groupEnd()),a.flush()},fl=function(o,s){var a={uri:o},e=Zl(o);e&&(a.cors=e);var r="use-credentials"===s.tech_.crossOrigin();r&&(a.withCredentials=r),Ne()(a,Hi(this,function(u,p,_){if(u)return kn.error(u,p);s.loaded_=!0,"function"!=typeof C().WebVTT?s.tech_&&s.tech_.any(["vttjsloaded","vttjserror"],function(y){if("vttjserror"!==y.type)return M2(_,s);kn.error("vttjs failed to load, stopping trying to process "+s.src)}):M2(_,s)}))},Hl=function(f){function o(a){var e;if(void 0===a&&(a={}),!a.tech)throw new Error("A tech was not provided.");var r=Tr(a,{kind:Pc[a.kind]||"subtitles",language:a.language||a.srclang||""}),u=mu[r.mode]||"disabled",p=r.default;("metadata"===r.kind||"chapters"===r.kind)&&(u="hidden"),(e=f.call(this,r)||this).tech_=r.tech,e.cues_=[],e.activeCues_=[],e.preload_=!1!==e.tech_.preloadTextTracks;var _=new dl(e.cues_),y=new dl(e.activeCues_),D=!1,j=Hi($(e),function(){!this.tech_.isReady_||this.tech_.isDisposed()||(this.activeCues=this.activeCues,D&&(this.trigger("cuechange"),D=!1))});return e.tech_.one("dispose",function(){e.tech_.off("timeupdate",j)}),"disabled"!==u&&e.tech_.on("timeupdate",j),Object.defineProperties($(e),{default:{get:function(){return p},set:function(){}},mode:{get:function(){return u},set:function(De){!mu[De]||u!==De&&(u=De,!this.preload_&&"disabled"!==u&&0===this.cues.length&&fl(this.src,this),this.tech_.off("timeupdate",j),"disabled"!==u&&this.tech_.on("timeupdate",j),this.trigger("modechange"))}},cues:{get:function(){return this.loaded_?_:null},set:function(){}},activeCues:{get:function(){if(!this.loaded_)return null;if(0===this.cues.length)return y;for(var De=this.tech_.currentTime(),me=[],xe=0,ht=this.cues.length;xe=De||_t.startTime===_t.endTime&&_t.startTime<=De&&_t.startTime+.5>=De)&&me.push(_t)}if(D=!1,me.length!==this.activeCues_.length)D=!0;else for(var Ft=0;Ft0)return void this.trigger("vttjsloaded");var r=U().createElement("script");r.src=this.options_["vtt.js"]||"https://vjs.zencdn.net/vttjs/0.14.1/vtt.min.js",r.onload=function(){e.trigger("vttjsloaded")},r.onerror=function(){e.trigger("vttjserror")},this.on("dispose",function(){r.onload=null,r.onerror=null}),C().WebVTT=!0,this.el().parentNode.appendChild(r)}else this.ready(this.addWebVttScript_)},s.emulateTextTracks=function(){var e=this,r=this.textTracks(),u=this.remoteTextTracks(),p=function(B){return r.addTrack(B.track)},_=function(B){return r.removeTrack(B.track)};u.on("addtrack",p),u.on("removetrack",_),this.addWebVttScript_();var y=function(){return e.trigger("texttrackchange")},D=function(){y();for(var B=0;B=0;e--){var r=f[e];r[o]&&r[o](a,s)}}(f,s,p,u),p}var kc={buffered:1,currentTime:1,duration:1,muted:1,played:1,paused:1,seekable:1,volume:1,ended:1},Nc={setCurrentTime:1,setMuted:1,setVolume:1},Ql={play:1,pause:1};function w2(f){return function(o,s){return o===f1?f1:s[f]?s[f](o):o}}function p1(f,o,s,a,e,r){void 0===f&&(f={}),void 0===o&&(o=[]),void 0===e&&(e=[]),void 0===r&&(r=!1);var u=o,p=u[0],_=u.slice(1);if("string"==typeof p)p1(f,B1[p],s,a,e,r);else if(p){var y=function L5(f,o){var s=d1[f.id()],a=null;if(null==s)return a=o(f),d1[f.id()]=[[o,a]],a;for(var e=0;e0;this.player_.tech(!0)&&!((Lo||Ui)&&r)&&this.player_.tech(!0).focus(),this.player_.paused()?Ja(this.player_.play()):this.player_.pause()}},o}(hl);Jt.registerComponent("PosterImage",P5);var as="#222",O5={monospace:"monospace",sansSerif:"sans-serif",serif:"serif",monospaceSansSerif:'"Andale Mono", "Lucida Console", monospace',monospaceSerif:'"Courier New", monospace',proportionalSansSerif:"sans-serif",proportionalSerif:"serif",casual:'"Comic Sans MS", Impact, fantasy',script:'"Monotype Corsiva", cursive',smallcaps:'"Andale Mono", "Lucida Console", monospace, sans-serif'};function y3(f,o){var s;if(4===f.length)s=f[1]+f[1]+f[2]+f[2]+f[3]+f[3];else{if(7!==f.length)throw new Error("Invalid color code provided, "+f+"; must be formatted as e.g. #f0e or #f604e2.");s=f.slice(1)}return"rgba("+parseInt(s.slice(0,2),16)+","+parseInt(s.slice(2,4),16)+","+parseInt(s.slice(4,6),16)+","+o+")"}function Cu(f,o,s){try{f.style[o]=s}catch{return}}var b3=function(f){function o(a,e,r){var u;u=f.call(this,a,e,r)||this;var p=function(y){return u.updateDisplay(y)};return a.on("loadstart",function(_){return u.toggleDisplay(_)}),a.on("texttrackchange",p),a.on("loadedmetadata",function(_){return u.preselectTrack(_)}),a.ready(Hi($(u),function(){if(a.tech_&&a.tech_.featuresNativeTextTracks)this.hide();else{a.on("fullscreenchange",p),a.on("playerresize",p),C().addEventListener("orientationchange",p),a.on("dispose",function(){return C().removeEventListener("orientationchange",p)});for(var _=this.options_.playerOptions.tracks||[],y=0;y<_.length;y++)this.player_.addRemoteTextTrack(_[y],!0);this.preselectTrack()}})),u}R(o,f);var s=o.prototype;return s.preselectTrack=function(){for(var p,_,y,e={captions:1,subtitles:1},r=this.player_.textTracks(),u=this.player_.cache_.selectedLanguage,D=0;D0;return Ja(r),void(this.player_.tech(!0)&&(!Lo&&!Ui||!u)&&this.player_.tech(!0).focus())}var p=this.player_.getChild("controlBar"),_=p&&p.getChild("playToggle");if(_){var y=function(){return _.focus()};vo(r)?r.then(y,function(){}):this.setTimeout(y,1)}else this.player_.tech(!0).focus()},s.handleKeyDown=function(e){this.mouseused_=!1,f.prototype.handleKeyDown.call(this,e)},s.handleMouseDown=function(e){this.mouseused_=!0},o}($a);yu.prototype.controlText_="Play Video",Jt.registerComponent("BigPlayButton",yu);var M3=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).controlText(e&&e.controlText||r.localize("Close")),r}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-close-button "+f.prototype.buildCSSClass.call(this)},s.handleClick=function(e){this.trigger({type:"close",bubbles:!1})},s.handleKeyDown=function(e){K().isEventKey(e,"Esc")?(e.preventDefault(),e.stopPropagation(),this.trigger("click")):f.prototype.handleKeyDown.call(this,e)},o}($a);Jt.registerComponent("CloseButton",M3);var gl=function(f){function o(a,e){var r;return void 0===e&&(e={}),r=f.call(this,a,e)||this,e.replay=void 0===e.replay||e.replay,r.on(a,"play",function(u){return r.handlePlay(u)}),r.on(a,"pause",function(u){return r.handlePause(u)}),e.replay&&r.on(a,"ended",function(u){return r.handleEnded(u)}),r}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-play-control "+f.prototype.buildCSSClass.call(this)},s.handleClick=function(e){this.player_.paused()?Ja(this.player_.play()):this.player_.pause()},s.handleSeeked=function(e){this.removeClass("vjs-ended"),this.player_.paused()?this.handlePause(e):this.handlePlay(e)},s.handlePlay=function(e){this.removeClass("vjs-ended"),this.removeClass("vjs-paused"),this.addClass("vjs-playing"),this.controlText("Pause")},s.handlePause=function(e){this.removeClass("vjs-playing"),this.addClass("vjs-paused"),this.controlText("Play")},s.handleEnded=function(e){var r=this;this.removeClass("vjs-playing"),this.addClass("vjs-ended"),this.controlText("Replay"),this.one(this.player_,"seeked",function(u){return r.handleSeeked(u)})},o}($a);gl.prototype.controlText_="Play",Jt.registerComponent("PlayToggle",gl);var w3=function(o,s){o=o<0?0:o;var a=Math.floor(o%60),e=Math.floor(o/60%60),r=Math.floor(o/3600),u=Math.floor(s/60%60),p=Math.floor(s/3600);return(isNaN(o)||o===1/0)&&(r=e=a="-"),(r=r>0||p>0?r+":":"")+(e=((r||u>=10)&&e<10?"0"+e:e)+":")+(a=a<10?"0"+a:a)},bu=w3;function h1(f,o){return void 0===o&&(o=f),bu(f,o)}var ml=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).on(a,["timeupdate","ended"],function(u){return r.updateContent(u)}),r.updateTextNode_(),r}R(o,f);var s=o.prototype;return s.createEl=function(){var e=this.buildCSSClass(),r=f.prototype.createEl.call(this,"div",{className:e+" vjs-time-control vjs-control"}),u=Jn("span",{className:"vjs-control-text",textContent:this.localize(this.labelText_)+"\xa0"},{role:"presentation"});return r.appendChild(u),this.contentEl_=Jn("span",{className:e+"-display"},{"aria-live":"off",role:"presentation"}),r.appendChild(this.contentEl_),r},s.dispose=function(){this.contentEl_=null,this.textNode_=null,f.prototype.dispose.call(this)},s.updateTextNode_=function(e){var r=this;void 0===e&&(e=0),e=h1(e),this.formattedTime_!==e&&(this.formattedTime_=e,this.requestNamedAnimationFrame("TimeDisplay#updateTextNode_",function(){if(r.contentEl_){var u=r.textNode_;u&&r.contentEl_.firstChild!==u&&(u=null,kn.warn("TimeDisplay#updateTextnode_: Prevented replacement of text node element since it was no longer a child of this node. Appending a new node instead.")),r.textNode_=U().createTextNode(r.formattedTime_),r.textNode_&&(u?r.contentEl_.replaceChild(r.textNode_,u):r.contentEl_.appendChild(r.textNode_))}}))},s.updateContent=function(e){},o}(Jt);ml.prototype.labelText_="Time",ml.prototype.controlText_="Time",Jt.registerComponent("TimeDisplay",ml);var Mu=function(f){function o(){return f.apply(this,arguments)||this}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-current-time"},s.updateContent=function(e){var r;r=this.player_.ended()?this.player_.duration():this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime(),this.updateTextNode_(r)},o}(ml);Mu.prototype.labelText_="Current Time",Mu.prototype.controlText_="Current Time",Jt.registerComponent("CurrentTimeDisplay",Mu);var wu=function(f){function o(a,e){var r,u=function(_){return r.updateContent(_)};return(r=f.call(this,a,e)||this).on(a,"durationchange",u),r.on(a,"loadstart",u),r.on(a,"loadedmetadata",u),r}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-duration"},s.updateContent=function(e){var r=this.player_.duration();this.updateTextNode_(r)},o}(ml);wu.prototype.labelText_="Duration",wu.prototype.controlText_="Duration",Jt.registerComponent("DurationDisplay",wu);var T3=function(f){function o(){return f.apply(this,arguments)||this}return R(o,f),o.prototype.createEl=function(){var e=f.prototype.createEl.call(this,"div",{className:"vjs-time-control vjs-time-divider"},{"aria-hidden":!0}),r=f.prototype.createEl.call(this,"div"),u=f.prototype.createEl.call(this,"span",{textContent:"/"});return r.appendChild(u),e.appendChild(r),e},o}(Jt);Jt.registerComponent("TimeDivider",T3);var xu=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).on(a,"durationchange",function(u){return r.updateContent(u)}),r}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-remaining-time"},s.createEl=function(){var e=f.prototype.createEl.call(this);return!1!==this.options_.displayNegative&&e.insertBefore(Jn("span",{},{"aria-hidden":!0},"-"),this.contentEl_),e},s.updateContent=function(e){var r;"number"==typeof this.player_.duration()&&(r=this.player_.ended()?0:this.player_.remainingTimeDisplay?this.player_.remainingTimeDisplay():this.player_.remainingTime(),this.updateTextNode_(r))},o}(ml);xu.prototype.labelText_="Remaining Time",xu.prototype.controlText_="Remaining Time",Jt.registerComponent("RemainingTimeDisplay",xu);var jc=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).updateShowing(),r.on(r.player(),"durationchange",function(u){return r.updateShowing(u)}),r}R(o,f);var s=o.prototype;return s.createEl=function(){var e=f.prototype.createEl.call(this,"div",{className:"vjs-live-control vjs-control"});return this.contentEl_=Jn("div",{className:"vjs-live-display"},{"aria-live":"off"}),this.contentEl_.appendChild(Jn("span",{className:"vjs-control-text",textContent:this.localize("Stream Type")+"\xa0"})),this.contentEl_.appendChild(U().createTextNode(this.localize("LIVE"))),e.appendChild(this.contentEl_),e},s.dispose=function(){this.contentEl_=null,f.prototype.dispose.call(this)},s.updateShowing=function(e){this.player().duration()===1/0?this.show():this.hide()},o}(Jt);Jt.registerComponent("LiveDisplay",jc);var Uo=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).updateLiveEdgeStatus(),r.player_.liveTracker&&(r.updateLiveEdgeStatusHandler_=function(u){return r.updateLiveEdgeStatus(u)},r.on(r.player_.liveTracker,"liveedgechange",r.updateLiveEdgeStatusHandler_)),r}R(o,f);var s=o.prototype;return s.createEl=function(){var e=f.prototype.createEl.call(this,"button",{className:"vjs-seek-to-live-control vjs-control"});return this.textEl_=Jn("span",{className:"vjs-seek-to-live-text",textContent:this.localize("LIVE")},{"aria-hidden":"true"}),e.appendChild(this.textEl_),e},s.updateLiveEdgeStatus=function(){!this.player_.liveTracker||this.player_.liveTracker.atLiveEdge()?(this.setAttribute("aria-disabled",!0),this.addClass("vjs-at-live-edge"),this.controlText("Seek to live, currently playing live")):(this.setAttribute("aria-disabled",!1),this.removeClass("vjs-at-live-edge"),this.controlText("Seek to live, currently behind live"))},s.handleClick=function(){this.player_.liveTracker.seekToLiveEdge()},s.dispose=function(){this.player_.liveTracker&&this.off(this.player_.liveTracker,"liveedgechange",this.updateLiveEdgeStatusHandler_),this.textEl_=null,f.prototype.dispose.call(this)},o}($a);Uo.prototype.controlText_="Seek to live, currently playing live",Jt.registerComponent("SeekToLive",Uo);var _l=function(o,s,a){return o=Number(o),Math.min(a,Math.max(s,isNaN(o)?s:o))},T2=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).handleMouseDown_=function(u){return r.handleMouseDown(u)},r.handleMouseUp_=function(u){return r.handleMouseUp(u)},r.handleKeyDown_=function(u){return r.handleKeyDown(u)},r.handleClick_=function(u){return r.handleClick(u)},r.handleMouseMove_=function(u){return r.handleMouseMove(u)},r.update_=function(u){return r.update(u)},r.bar=r.getChild(r.options_.barName),r.vertical(!!r.options_.vertical),r.enable(),r}R(o,f);var s=o.prototype;return s.enabled=function(){return this.enabled_},s.enable=function(){this.enabled()||(this.on("mousedown",this.handleMouseDown_),this.on("touchstart",this.handleMouseDown_),this.on("keydown",this.handleKeyDown_),this.on("click",this.handleClick_),this.on(this.player_,"controlsvisible",this.update),this.playerEvent&&this.on(this.player_,this.playerEvent,this.update),this.removeClass("disabled"),this.setAttribute("tabindex",0),this.enabled_=!0)},s.disable=function(){if(this.enabled()){var e=this.bar.el_.ownerDocument;this.off("mousedown",this.handleMouseDown_),this.off("touchstart",this.handleMouseDown_),this.off("keydown",this.handleKeyDown_),this.off("click",this.handleClick_),this.off(this.player_,"controlsvisible",this.update_),this.off(e,"mousemove",this.handleMouseMove_),this.off(e,"mouseup",this.handleMouseUp_),this.off(e,"touchmove",this.handleMouseMove_),this.off(e,"touchend",this.handleMouseUp_),this.removeAttribute("tabindex"),this.addClass("disabled"),this.playerEvent&&this.off(this.player_,this.playerEvent,this.update),this.enabled_=!1}},s.createEl=function(e,r,u){return void 0===r&&(r={}),void 0===u&&(u={}),r.className=r.className+" vjs-slider",r=wi({tabIndex:0},r),u=wi({role:"slider","aria-valuenow":0,"aria-valuemin":0,"aria-valuemax":100,tabIndex:0},u),f.prototype.createEl.call(this,e,r,u)},s.handleMouseDown=function(e){var r=this.bar.el_.ownerDocument;"mousedown"===e.type&&e.preventDefault(),"touchstart"===e.type&&!fi&&e.preventDefault(),vs(),this.addClass("vjs-sliding"),this.trigger("slideractive"),this.on(r,"mousemove",this.handleMouseMove_),this.on(r,"mouseup",this.handleMouseUp_),this.on(r,"touchmove",this.handleMouseMove_),this.on(r,"touchend",this.handleMouseUp_),this.handleMouseMove(e,!0)},s.handleMouseMove=function(e){},s.handleMouseUp=function(){var e=this.bar.el_.ownerDocument;Ka(),this.removeClass("vjs-sliding"),this.trigger("sliderinactive"),this.off(e,"mousemove",this.handleMouseMove_),this.off(e,"mouseup",this.handleMouseUp_),this.off(e,"touchmove",this.handleMouseMove_),this.off(e,"touchend",this.handleMouseUp_),this.update()},s.update=function(){var e=this;if(this.el_&&this.bar){var r=this.getProgress();return r===this.progress_||(this.progress_=r,this.requestNamedAnimationFrame("Slider#update",function(){var u=e.vertical()?"height":"width";e.bar.el().style[u]=(100*r).toFixed(2)+"%"})),r}},s.getProgress=function(){return Number(_l(this.getPercent(),0,1).toFixed(4))},s.calculateDistance=function(e){var r=oa(this.el_,e);return this.vertical()?r.y:r.x},s.handleKeyDown=function(e){K().isEventKey(e,"Left")||K().isEventKey(e,"Down")?(e.preventDefault(),e.stopPropagation(),this.stepBack()):K().isEventKey(e,"Right")||K().isEventKey(e,"Up")?(e.preventDefault(),e.stopPropagation(),this.stepForward()):f.prototype.handleKeyDown.call(this,e)},s.handleClick=function(e){e.stopPropagation(),e.preventDefault()},s.vertical=function(e){if(void 0===e)return this.vertical_||!1;this.vertical_=!!e,this.vertical_?this.addClass("vjs-slider-vertical"):this.addClass("vjs-slider-horizontal")},o}(Jt);Jt.registerComponent("Slider",T2);var Kl=function(o,s){return _l(o/s*100,0,100).toFixed(2)+"%"},So=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).partEls_=[],r.on(a,"progress",function(u){return r.update(u)}),r}R(o,f);var s=o.prototype;return s.createEl=function(){var e=f.prototype.createEl.call(this,"div",{className:"vjs-load-progress"}),r=Jn("span",{className:"vjs-control-text"}),u=Jn("span",{textContent:this.localize("Loaded")}),p=U().createTextNode(": ");return this.percentageEl_=Jn("span",{className:"vjs-control-text-loaded-percentage",textContent:"0%"}),e.appendChild(r),r.appendChild(u),r.appendChild(p),r.appendChild(this.percentageEl_),e},s.dispose=function(){this.partEls_=null,this.percentageEl_=null,f.prototype.dispose.call(this)},s.update=function(e){var r=this;this.requestNamedAnimationFrame("LoadProgressBar#update",function(){var u=r.player_.liveTracker,p=r.player_.buffered(),_=u&&u.isLive()?u.seekableEnd():r.player_.duration(),y=r.player_.bufferedEnd(),D=r.partEls_,j=Kl(y,_);r.percent_!==j&&(r.el_.style.width=j,po(r.percentageEl_,j),r.percent_=j);for(var B=0;Bp.length;xe--)r.el_.removeChild(D[xe-1]);D.length=p.length})},o}(Jt);Jt.registerComponent("LoadProgressBar",So);var Yl=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).update=Aa(Hi($(r),r.update),30),r}R(o,f);var s=o.prototype;return s.createEl=function(){return f.prototype.createEl.call(this,"div",{className:"vjs-time-tooltip"},{"aria-hidden":"true"})},s.update=function(e,r,u){var p=_a(this.el_),_=ra(this.player_.el()),y=e.width*r;if(_&&p){var D=e.left-_.left+y,j=e.width-y+(_.right-e.right),B=p.width/2;Dp.width&&(B=p.width),B=Math.round(B),this.el_.style.right="-"+B+"px",this.write(u)}},s.write=function(e){po(this.el_,e)},s.updateTime=function(e,r,u,p){var _=this;this.requestNamedAnimationFrame("TimeTooltip#updateTime",function(){var y,D=_.player_.duration();if(_.player_.liveTracker&&_.player_.liveTracker.isLive()){var j=_.player_.liveTracker.liveWindow(),B=j-r*j;y=(B<1?"":"-")+h1(B,j)}else y=h1(u,D);_.update(e,r,y),p&&p()})},o}(Jt);Jt.registerComponent("TimeTooltip",Yl);var E2=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).update=Aa(Hi($(r),r.update),30),r}R(o,f);var s=o.prototype;return s.createEl=function(){return f.prototype.createEl.call(this,"div",{className:"vjs-play-progress vjs-slider-bar"},{"aria-hidden":"true"})},s.update=function(e,r){var u=this.getChild("timeTooltip");if(u){var p=this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime();u.updateTime(e,r,p)}},o}(Jt);E2.prototype.options_={children:[]},!Ct&&!si&&E2.prototype.options_.children.push("timeTooltip"),Jt.registerComponent("PlayProgressBar",E2);var E3=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).update=Aa(Hi($(r),r.update),30),r}R(o,f);var s=o.prototype;return s.createEl=function(){return f.prototype.createEl.call(this,"div",{className:"vjs-mouse-display"})},s.update=function(e,r){var u=this,p=r*this.player_.duration();this.getChild("timeTooltip").updateTime(e,r,p,function(){u.el_.style.left=e.width*r+"px"})},o}(Jt);E3.prototype.options_={children:["timeTooltip"]},Jt.registerComponent("MouseTimeDisplay",E3);var Eu=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).setEventHandlers_(),r}R(o,f);var s=o.prototype;return s.setEventHandlers_=function(){var e=this;this.update_=Hi(this,this.update),this.update=Aa(this.update_,30),this.on(this.player_,["ended","durationchange","timeupdate"],this.update),this.player_.liveTracker&&this.on(this.player_.liveTracker,"liveedgechange",this.update),this.updateInterval=null,this.enableIntervalHandler_=function(r){return e.enableInterval_(r)},this.disableIntervalHandler_=function(r){return e.disableInterval_(r)},this.on(this.player_,["playing"],this.enableIntervalHandler_),this.on(this.player_,["ended","pause","waiting"],this.disableIntervalHandler_),"hidden"in U()&&"visibilityState"in U()&&this.on(U(),"visibilitychange",this.toggleVisibility_)},s.toggleVisibility_=function(e){"hidden"===U().visibilityState?(this.cancelNamedAnimationFrame("SeekBar#update"),this.cancelNamedAnimationFrame("Slider#update"),this.disableInterval_(e)):(!this.player_.ended()&&!this.player_.paused()&&this.enableInterval_(),this.update())},s.enableInterval_=function(){this.updateInterval||(this.updateInterval=this.setInterval(this.update,30))},s.disableInterval_=function(e){this.player_.liveTracker&&this.player_.liveTracker.isLive()&&e&&"ended"!==e.type||!this.updateInterval||(this.clearInterval(this.updateInterval),this.updateInterval=null)},s.createEl=function(){return f.prototype.createEl.call(this,"div",{className:"vjs-progress-holder"},{"aria-label":this.localize("Progress Bar")})},s.update=function(e){var r=this;if("hidden"!==U().visibilityState){var u=f.prototype.update.call(this);return this.requestNamedAnimationFrame("SeekBar#update",function(){var p=r.player_.ended()?r.player_.duration():r.getCurrentTime_(),_=r.player_.liveTracker,y=r.player_.duration();_&&_.isLive()&&(y=r.player_.liveTracker.liveCurrentTime()),r.percent_!==u&&(r.el_.setAttribute("aria-valuenow",(100*u).toFixed(2)),r.percent_=u),(r.currentTime_!==p||r.duration_!==y)&&(r.el_.setAttribute("aria-valuetext",r.localize("progress bar timing: currentTime={1} duration={2}",[h1(p,y),h1(y,y)],"{1} of {2}")),r.currentTime_=p,r.duration_=y),r.bar&&r.bar.update(ra(r.el()),r.getProgress())}),u}},s.userSeek_=function(e){this.player_.liveTracker&&this.player_.liveTracker.isLive()&&this.player_.liveTracker.nextSeekedFromUser(),this.player_.currentTime(e)},s.getCurrentTime_=function(){return this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime()},s.getPercent=function(){var r,e=this.getCurrentTime_(),u=this.player_.liveTracker;return u&&u.isLive()?(r=(e-u.seekableStart())/u.liveWindow(),u.atLiveEdge()&&(r=1)):r=e/this.player_.duration(),r},s.handleMouseDown=function(e){!Pa(e)||(e.stopPropagation(),this.videoWasPlaying=!this.player_.paused(),this.player_.pause(),f.prototype.handleMouseDown.call(this,e))},s.handleMouseMove=function(e,r){if(void 0===r&&(r=!1),Pa(e)){!r&&!this.player_.scrubbing()&&this.player_.scrubbing(!0);var u,p=this.calculateDistance(e),_=this.player_.liveTracker;if(_&&_.isLive()){if(p>=.99)return void _.seekToLiveEdge();var y=_.seekableStart(),D=_.liveCurrentTime();if((u=y+p*_.liveWindow())>=D&&(u=D),u<=y&&(u=y+.1),u===1/0)return}else(u=p*this.player_.duration())===this.player_.duration()&&(u-=.1);this.userSeek_(u)}},s.enable=function(){f.prototype.enable.call(this);var e=this.getChild("mouseTimeDisplay");!e||e.show()},s.disable=function(){f.prototype.disable.call(this);var e=this.getChild("mouseTimeDisplay");!e||e.hide()},s.handleMouseUp=function(e){f.prototype.handleMouseUp.call(this,e),e&&e.stopPropagation(),this.player_.scrubbing(!1),this.player_.trigger({type:"timeupdate",target:this,manuallyTriggered:!0}),this.videoWasPlaying?Ja(this.player_.play()):this.update_()},s.stepForward=function(){this.userSeek_(this.player_.currentTime()+5)},s.stepBack=function(){this.userSeek_(this.player_.currentTime()-5)},s.handleAction=function(e){this.player_.paused()?this.player_.play():this.player_.pause()},s.handleKeyDown=function(e){var r=this.player_.liveTracker;if(K().isEventKey(e,"Space")||K().isEventKey(e,"Enter"))e.preventDefault(),e.stopPropagation(),this.handleAction(e);else if(K().isEventKey(e,"Home"))e.preventDefault(),e.stopPropagation(),this.userSeek_(0);else if(K().isEventKey(e,"End"))e.preventDefault(),e.stopPropagation(),r&&r.isLive()?this.userSeek_(r.liveCurrentTime()):this.userSeek_(this.player_.duration());else if(/^[0-9]$/.test(K()(e))){e.preventDefault(),e.stopPropagation();var u=10*(K().codes[K()(e)]-K().codes[0])/100;r&&r.isLive()?this.userSeek_(r.seekableStart()+r.liveWindow()*u):this.userSeek_(this.player_.duration()*u)}else K().isEventKey(e,"PgDn")?(e.preventDefault(),e.stopPropagation(),this.userSeek_(this.player_.currentTime()-60)):K().isEventKey(e,"PgUp")?(e.preventDefault(),e.stopPropagation(),this.userSeek_(this.player_.currentTime()+60)):f.prototype.handleKeyDown.call(this,e)},s.dispose=function(){this.disableInterval_(),this.off(this.player_,["ended","durationchange","timeupdate"],this.update),this.player_.liveTracker&&this.off(this.player_.liveTracker,"liveedgechange",this.update),this.off(this.player_,["playing"],this.enableIntervalHandler_),this.off(this.player_,["ended","pause","waiting"],this.disableIntervalHandler_),"hidden"in U()&&"visibilityState"in U()&&this.off(U(),"visibilitychange",this.toggleVisibility_),f.prototype.dispose.call(this)},o}(T2);Eu.prototype.options_={children:["loadProgressBar","playProgressBar"],barName:"playProgressBar"},!Ct&&!si&&Eu.prototype.options_.children.splice(1,0,"mouseTimeDisplay"),Jt.registerComponent("SeekBar",Eu);var Iu=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).handleMouseMove=Aa(Hi($(r),r.handleMouseMove),30),r.throttledHandleMouseSeek=Aa(Hi($(r),r.handleMouseSeek),30),r.handleMouseUpHandler_=function(u){return r.handleMouseUp(u)},r.handleMouseDownHandler_=function(u){return r.handleMouseDown(u)},r.enable(),r}R(o,f);var s=o.prototype;return s.createEl=function(){return f.prototype.createEl.call(this,"div",{className:"vjs-progress-control vjs-control"})},s.handleMouseMove=function(e){var r=this.getChild("seekBar");if(r){var u=r.getChild("playProgressBar"),p=r.getChild("mouseTimeDisplay");if(u||p){var _=r.el(),y=_a(_),D=oa(_,e).x;D=_l(D,0,1),p&&p.update(y,D),u&&u.update(y,r.getProgress())}}},s.handleMouseSeek=function(e){var r=this.getChild("seekBar");r&&r.handleMouseMove(e)},s.enabled=function(){return this.enabled_},s.disable=function(){if(this.children().forEach(function(r){return r.disable&&r.disable()}),this.enabled()&&(this.off(["mousedown","touchstart"],this.handleMouseDownHandler_),this.off(this.el_,"mousemove",this.handleMouseMove),this.removeListenersAddedOnMousedownAndTouchstart(),this.addClass("disabled"),this.enabled_=!1,this.player_.scrubbing())){var e=this.getChild("seekBar");this.player_.scrubbing(!1),e.videoWasPlaying&&Ja(this.player_.play())}},s.enable=function(){this.children().forEach(function(e){return e.enable&&e.enable()}),!this.enabled()&&(this.on(["mousedown","touchstart"],this.handleMouseDownHandler_),this.on(this.el_,"mousemove",this.handleMouseMove),this.removeClass("disabled"),this.enabled_=!0)},s.removeListenersAddedOnMousedownAndTouchstart=function(){var e=this.el_.ownerDocument;this.off(e,"mousemove",this.throttledHandleMouseSeek),this.off(e,"touchmove",this.throttledHandleMouseSeek),this.off(e,"mouseup",this.handleMouseUpHandler_),this.off(e,"touchend",this.handleMouseUpHandler_)},s.handleMouseDown=function(e){var r=this.el_.ownerDocument,u=this.getChild("seekBar");u&&u.handleMouseDown(e),this.on(r,"mousemove",this.throttledHandleMouseSeek),this.on(r,"touchmove",this.throttledHandleMouseSeek),this.on(r,"mouseup",this.handleMouseUpHandler_),this.on(r,"touchend",this.handleMouseUpHandler_)},s.handleMouseUp=function(e){var r=this.getChild("seekBar");r&&r.handleMouseUp(e),this.removeListenersAddedOnMousedownAndTouchstart()},o}(Jt);Iu.prototype.options_={children:["seekBar"]},Jt.registerComponent("ProgressControl",Iu);var I3=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).on(a,["enterpictureinpicture","leavepictureinpicture"],function(u){return r.handlePictureInPictureChange(u)}),r.on(a,["disablepictureinpicturechanged","loadedmetadata"],function(u){return r.handlePictureInPictureEnabledChange(u)}),r.disable(),r}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-picture-in-picture-control "+f.prototype.buildCSSClass.call(this)},s.handlePictureInPictureEnabledChange=function(){U().pictureInPictureEnabled&&!1===this.player_.disablePictureInPicture()?this.enable():this.disable()},s.handlePictureInPictureChange=function(e){this.player_.isInPictureInPicture()?this.controlText("Exit Picture-in-Picture"):this.controlText("Picture-in-Picture"),this.handlePictureInPictureEnabledChange()},s.handleClick=function(e){this.player_.isInPictureInPicture()?this.player_.exitPictureInPicture():this.player_.requestPictureInPicture()},o}($a);I3.prototype.controlText_="Picture-in-Picture",Jt.registerComponent("PictureInPictureToggle",I3);var Lu=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).on(a,"fullscreenchange",function(u){return r.handleFullscreenChange(u)}),!1===U()[a.fsApi_.fullscreenEnabled]&&r.disable(),r}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-fullscreen-control "+f.prototype.buildCSSClass.call(this)},s.handleFullscreenChange=function(e){this.player_.isFullscreen()?this.controlText("Non-Fullscreen"):this.controlText("Fullscreen")},s.handleClick=function(e){this.player_.isFullscreen()?this.player_.exitFullscreen():this.player_.requestFullscreen()},o}($a);Lu.prototype.controlText_="Fullscreen",Jt.registerComponent("FullscreenToggle",Lu);var Zc=function(f){function o(){return f.apply(this,arguments)||this}return R(o,f),o.prototype.createEl=function(){var e=f.prototype.createEl.call(this,"div",{className:"vjs-volume-level"});return e.appendChild(f.prototype.createEl.call(this,"span",{className:"vjs-control-text"})),e},o}(Jt);Jt.registerComponent("VolumeLevel",Zc);var Gr=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).update=Aa(Hi($(r),r.update),30),r}R(o,f);var s=o.prototype;return s.createEl=function(){return f.prototype.createEl.call(this,"div",{className:"vjs-volume-tooltip"},{"aria-hidden":"true"})},s.update=function(e,r,u,p){if(!u){var _=ra(this.el_),y=ra(this.player_.el()),D=e.width*r;if(!y||!_)return;var j=e.left-y.left+D,B=e.width-D+(y.right-e.right),ce=_.width/2;j_.width&&(ce=_.width),this.el_.style.right="-"+ce+"px"}this.write(p+"%")},s.write=function(e){po(this.el_,e)},s.updateVolume=function(e,r,u,p,_){var y=this;this.requestNamedAnimationFrame("VolumeLevelTooltip#updateVolume",function(){y.update(e,r,u,p.toFixed(0)),_&&_()})},o}(Jt);Jt.registerComponent("VolumeLevelTooltip",Gr);var Fa=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).update=Aa(Hi($(r),r.update),30),r}R(o,f);var s=o.prototype;return s.createEl=function(){return f.prototype.createEl.call(this,"div",{className:"vjs-mouse-display"})},s.update=function(e,r,u){var p=this,_=100*r;this.getChild("volumeLevelTooltip").updateVolume(e,r,u,_,function(){u?p.el_.style.bottom=e.height*r+"px":p.el_.style.left=e.width*r+"px"})},o}(Jt);Fa.prototype.options_={children:["volumeLevelTooltip"]},Jt.registerComponent("MouseVolumeLevelDisplay",Fa);var g1=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).on("slideractive",function(u){return r.updateLastVolume_(u)}),r.on(a,"volumechange",function(u){return r.updateARIAAttributes(u)}),a.ready(function(){return r.updateARIAAttributes()}),r}R(o,f);var s=o.prototype;return s.createEl=function(){return f.prototype.createEl.call(this,"div",{className:"vjs-volume-bar vjs-slider-bar"},{"aria-label":this.localize("Volume Level"),"aria-live":"polite"})},s.handleMouseDown=function(e){!Pa(e)||f.prototype.handleMouseDown.call(this,e)},s.handleMouseMove=function(e){var r=this.getChild("mouseVolumeLevelDisplay");if(r){var u=this.el(),p=ra(u),_=this.vertical(),y=oa(u,e);y=_?y.y:y.x,y=_l(y,0,1),r.update(p,y,_)}!Pa(e)||(this.checkMuted(),this.player_.volume(this.calculateDistance(e)))},s.checkMuted=function(){this.player_.muted()&&this.player_.muted(!1)},s.getPercent=function(){return this.player_.muted()?0:this.player_.volume()},s.stepForward=function(){this.checkMuted(),this.player_.volume(this.player_.volume()+.1)},s.stepBack=function(){this.checkMuted(),this.player_.volume(this.player_.volume()-.1)},s.updateARIAAttributes=function(e){var r=this.player_.muted()?0:this.volumeAsPercentage_();this.el_.setAttribute("aria-valuenow",r),this.el_.setAttribute("aria-valuetext",r+"%")},s.volumeAsPercentage_=function(){return Math.round(100*this.player_.volume())},s.updateLastVolume_=function(){var e=this,r=this.player_.volume();this.one("sliderinactive",function(){0===e.player_.volume()&&e.player_.lastVolume_(r)})},o}(T2);g1.prototype.options_={children:["volumeLevel"],barName:"volumeLevel"},!Ct&&!si&&g1.prototype.options_.children.splice(0,0,"mouseVolumeLevelDisplay"),g1.prototype.playerEvent="volumechange",Jt.registerComponent("VolumeBar",g1);var Us=function(f){function o(a,e){var r;return void 0===e&&(e={}),e.vertical=e.vertical||!1,(typeof e.volumeBar>"u"||x(e.volumeBar))&&(e.volumeBar=e.volumeBar||{},e.volumeBar.vertical=e.vertical),function(o,s){s.tech_&&!s.tech_.featuresVolumeControl&&o.addClass("vjs-hidden"),o.on(s,"loadstart",function(){s.tech_.featuresVolumeControl?o.removeClass("vjs-hidden"):o.addClass("vjs-hidden")})}($(r=f.call(this,a,e)||this),a),r.throttledHandleMouseMove=Aa(Hi($(r),r.handleMouseMove),30),r.handleMouseUpHandler_=function(u){return r.handleMouseUp(u)},r.on("mousedown",function(u){return r.handleMouseDown(u)}),r.on("touchstart",function(u){return r.handleMouseDown(u)}),r.on("mousemove",function(u){return r.handleMouseMove(u)}),r.on(r.volumeBar,["focus","slideractive"],function(){r.volumeBar.addClass("vjs-slider-active"),r.addClass("vjs-slider-active"),r.trigger("slideractive")}),r.on(r.volumeBar,["blur","sliderinactive"],function(){r.volumeBar.removeClass("vjs-slider-active"),r.removeClass("vjs-slider-active"),r.trigger("sliderinactive")}),r}R(o,f);var s=o.prototype;return s.createEl=function(){var e="vjs-volume-horizontal";return this.options_.vertical&&(e="vjs-volume-vertical"),f.prototype.createEl.call(this,"div",{className:"vjs-volume-control vjs-control "+e})},s.handleMouseDown=function(e){var r=this.el_.ownerDocument;this.on(r,"mousemove",this.throttledHandleMouseMove),this.on(r,"touchmove",this.throttledHandleMouseMove),this.on(r,"mouseup",this.handleMouseUpHandler_),this.on(r,"touchend",this.handleMouseUpHandler_)},s.handleMouseUp=function(e){var r=this.el_.ownerDocument;this.off(r,"mousemove",this.throttledHandleMouseMove),this.off(r,"touchmove",this.throttledHandleMouseMove),this.off(r,"mouseup",this.handleMouseUpHandler_),this.off(r,"touchend",this.handleMouseUpHandler_)},s.handleMouseMove=function(e){this.volumeBar.handleMouseMove(e)},o}(Jt);Us.prototype.options_={children:["volumeBar"]},Jt.registerComponent("VolumeControl",Us);var ss=function(f){function o(a,e){var r;return function(o,s){s.tech_&&!s.tech_.featuresMuteControl&&o.addClass("vjs-hidden"),o.on(s,"loadstart",function(){s.tech_.featuresMuteControl?o.removeClass("vjs-hidden"):o.addClass("vjs-hidden")})}($(r=f.call(this,a,e)||this),a),r.on(a,["loadstart","volumechange"],function(u){return r.update(u)}),r}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-mute-control "+f.prototype.buildCSSClass.call(this)},s.handleClick=function(e){var r=this.player_.volume(),u=this.player_.lastVolume_();if(0===r){var p=u<.1?.1:u;this.player_.volume(p),this.player_.muted(!1)}else this.player_.muted(!this.player_.muted())},s.update=function(e){this.updateIcon_(),this.updateControlText_()},s.updateIcon_=function(){var e=this.player_.volume(),r=3;Ct&&this.player_.tech_&&this.player_.tech_.el_&&this.player_.muted(this.player_.tech_.el_.muted),0===e||this.player_.muted()?r=0:e<.33?r=1:e<.67&&(r=2);for(var u=0;u<4;u++)Qa(this.el_,"vjs-vol-"+u);_o(this.el_,"vjs-vol-"+r)},s.updateControlText_=function(){var r=this.player_.muted()||0===this.player_.volume()?"Unmute":"Mute";this.controlText()!==r&&this.controlText(r)},o}($a);ss.prototype.controlText_="Mute",Jt.registerComponent("MuteToggle",ss);var Vi=function(f){function o(a,e){var r;return void 0===e&&(e={}),typeof e.inline<"u"?e.inline=e.inline:e.inline=!0,(typeof e.volumeControl>"u"||x(e.volumeControl))&&(e.volumeControl=e.volumeControl||{},e.volumeControl.vertical=!e.inline),(r=f.call(this,a,e)||this).handleKeyPressHandler_=function(u){return r.handleKeyPress(u)},r.on(a,["loadstart"],function(u){return r.volumePanelState_(u)}),r.on(r.muteToggle,"keyup",function(u){return r.handleKeyPress(u)}),r.on(r.volumeControl,"keyup",function(u){return r.handleVolumeControlKeyUp(u)}),r.on("keydown",function(u){return r.handleKeyPress(u)}),r.on("mouseover",function(u){return r.handleMouseOver(u)}),r.on("mouseout",function(u){return r.handleMouseOut(u)}),r.on(r.volumeControl,["slideractive"],r.sliderActive_),r.on(r.volumeControl,["sliderinactive"],r.sliderInactive_),r}R(o,f);var s=o.prototype;return s.sliderActive_=function(){this.addClass("vjs-slider-active")},s.sliderInactive_=function(){this.removeClass("vjs-slider-active")},s.volumePanelState_=function(){this.volumeControl.hasClass("vjs-hidden")&&this.muteToggle.hasClass("vjs-hidden")&&this.addClass("vjs-hidden"),this.volumeControl.hasClass("vjs-hidden")&&!this.muteToggle.hasClass("vjs-hidden")&&this.addClass("vjs-mute-toggle-only")},s.createEl=function(){var e="vjs-volume-panel-horizontal";return this.options_.inline||(e="vjs-volume-panel-vertical"),f.prototype.createEl.call(this,"div",{className:"vjs-volume-panel vjs-control "+e})},s.dispose=function(){this.handleMouseOut(),f.prototype.dispose.call(this)},s.handleVolumeControlKeyUp=function(e){K().isEventKey(e,"Esc")&&this.muteToggle.focus()},s.handleMouseOver=function(e){this.addClass("vjs-hover"),Pi(U(),"keyup",this.handleKeyPressHandler_)},s.handleMouseOut=function(e){this.removeClass("vjs-hover"),jr(U(),"keyup",this.handleKeyPressHandler_)},s.handleKeyPress=function(e){K().isEventKey(e,"Esc")&&this.handleMouseOut()},o}(Jt);Vi.prototype.options_={children:["muteToggle","volumeControl"]},Jt.registerComponent("VolumePanel",Vi);var Ni=function(f){function o(a,e){var r;return r=f.call(this,a,e)||this,e&&(r.menuButton_=e.menuButton),r.focusedChild_=-1,r.on("keydown",function(u){return r.handleKeyDown(u)}),r.boundHandleBlur_=function(u){return r.handleBlur(u)},r.boundHandleTapClick_=function(u){return r.handleTapClick(u)},r}R(o,f);var s=o.prototype;return s.addEventListenerForItem=function(e){e instanceof Jt&&(this.on(e,"blur",this.boundHandleBlur_),this.on(e,["tap","click"],this.boundHandleTapClick_))},s.removeEventListenerForItem=function(e){e instanceof Jt&&(this.off(e,"blur",this.boundHandleBlur_),this.off(e,["tap","click"],this.boundHandleTapClick_))},s.removeChild=function(e){"string"==typeof e&&(e=this.getChild(e)),this.removeEventListenerForItem(e),f.prototype.removeChild.call(this,e)},s.addItem=function(e){var r=this.addChild(e);r&&this.addEventListenerForItem(r)},s.createEl=function(){var e=this.options_.contentElType||"ul";this.contentEl_=Jn(e,{className:"vjs-menu-content"}),this.contentEl_.setAttribute("role","menu");var r=f.prototype.createEl.call(this,"div",{append:this.contentEl_,className:"vjs-menu"});return r.appendChild(this.contentEl_),Pi(r,"click",function(u){u.preventDefault(),u.stopImmediatePropagation()}),r},s.dispose=function(){this.contentEl_=null,this.boundHandleBlur_=null,this.boundHandleTapClick_=null,f.prototype.dispose.call(this)},s.handleBlur=function(e){var r=e.relatedTarget||U().activeElement;if(!this.children().some(function(p){return p.el()===r})){var u=this.menuButton_;u&&u.buttonPressed_&&r!==u.el().firstChild&&u.unpressButton()}},s.handleTapClick=function(e){if(this.menuButton_){this.menuButton_.unpressButton();var r=this.children();if(!Array.isArray(r))return;var u=r.filter(function(p){return p.el()===e.target})[0];if(!u)return;"CaptionSettingsMenuItem"!==u.name()&&this.menuButton_.focus()}},s.handleKeyDown=function(e){K().isEventKey(e,"Left")||K().isEventKey(e,"Down")?(e.preventDefault(),e.stopPropagation(),this.stepForward()):(K().isEventKey(e,"Right")||K().isEventKey(e,"Up"))&&(e.preventDefault(),e.stopPropagation(),this.stepBack())},s.stepForward=function(){var e=0;void 0!==this.focusedChild_&&(e=this.focusedChild_+1),this.focus(e)},s.stepBack=function(){var e=0;void 0!==this.focusedChild_&&(e=this.focusedChild_-1),this.focus(e)},s.focus=function(e){void 0===e&&(e=0);var r=this.children().slice();r.length&&r[0].hasClass("vjs-menu-title")&&r.shift(),r.length>0&&(e<0?e=0:e>=r.length&&(e=r.length-1),this.focusedChild_=e,r[e].el_.focus())},o}(Jt);Jt.registerComponent("Menu",Ni);var Jl=function(f){function o(a,e){var r;void 0===e&&(e={}),(r=f.call(this,a,e)||this).menuButton_=new $a(a,e),r.menuButton_.controlText(r.controlText_),r.menuButton_.el_.setAttribute("aria-haspopup","true");var u=$a.prototype.buildCSSClass();r.menuButton_.el_.className=r.buildCSSClass()+" "+u,r.menuButton_.removeClass("vjs-control"),r.addChild(r.menuButton_),r.update(),r.enabled_=!0;var p=function(y){return r.handleClick(y)};return r.handleMenuKeyUp_=function(_){return r.handleMenuKeyUp(_)},r.on(r.menuButton_,"tap",p),r.on(r.menuButton_,"click",p),r.on(r.menuButton_,"keydown",function(_){return r.handleKeyDown(_)}),r.on(r.menuButton_,"mouseenter",function(){r.addClass("vjs-hover"),r.menu.show(),Pi(U(),"keyup",r.handleMenuKeyUp_)}),r.on("mouseleave",function(_){return r.handleMouseLeave(_)}),r.on("keydown",function(_){return r.handleSubmenuKeyDown(_)}),r}R(o,f);var s=o.prototype;return s.update=function(){var e=this.createMenu();this.menu&&(this.menu.dispose(),this.removeChild(this.menu)),this.menu=e,this.addChild(e),this.buttonPressed_=!1,this.menuButton_.el_.setAttribute("aria-expanded","false"),this.items&&this.items.length<=this.hideThreshold_?this.hide():this.show()},s.createMenu=function(){var e=new Ni(this.player_,{menuButton:this});if(this.hideThreshold_=0,this.options_.title){var r=Jn("li",{className:"vjs-menu-title",textContent:Nr(this.options_.title),tabIndex:-1}),u=new Jt(this.player_,{el:r});e.addItem(u)}if(this.items=this.createItems(),this.items)for(var p=0;p-1&&"showing"===y.mode){u=!1;break}}u!==this.isSelected_&&this.selected(u)},s.handleSelectedLanguageChange=function(e){for(var r=this.player().textTracks(),u=!0,p=0,_=r.length;p<_;p++){var y=r[p];if(["captions","descriptions","subtitles"].indexOf(y.kind)>-1&&"showing"===y.mode){u=!1;break}}u&&(this.player_.cache_.selectedLanguage={enabled:!1})},o}(Oo);Jt.registerComponent("OffTextTrackMenuItem",ws);var qa=function(f){function o(a,e){return void 0===e&&(e={}),e.tracks=a.textTracks(),f.call(this,a,e)||this}return R(o,f),o.prototype.createItems=function(e,r){var u;void 0===e&&(e=[]),void 0===r&&(r=Oo),this.label_&&(u=this.label_+" off"),e.push(new ws(this.player_,{kinds:this.kinds_,kind:this.kind_,label:u})),this.hideThreshold_+=1;var p=this.player_.textTracks();Array.isArray(this.kinds_)||(this.kinds_=[this.kind_]);for(var _=0;_-1){var D=new r(this.player_,{track:y,kinds:this.kinds_,kind:this.kind_,selectable:!0,multiSelectable:!1});D.addClass("vjs-"+y.kind+"-menu-item"),e.push(D)}}return e},o}(Cl);Jt.registerComponent("TextTrackButton",qa);var m1=function(f){function o(a,e){var r,u=e.track,p=e.cue,_=a.currentTime();return e.selectable=!0,e.multiSelectable=!1,e.label=p.text,e.selected=p.startTime<=_&&_=0;r--){var u=e[r];if(u.kind===this.kind_)return u}},s.getMenuCaption=function(){return this.track_&&this.track_.label?this.track_.label:this.localize(Nr(this.kind_))},s.createMenu=function(){return this.options_.title=this.getMenuCaption(),f.prototype.createMenu.call(this)},s.createItems=function(){var e=[];if(!this.track_)return e;var r=this.track_.cues;if(!r)return e;for(var u=0,p=r.length;u-1&&(r.label_="captions"),r.menuButton_.controlText(Nr(r.label_)),r}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-subs-caps-button "+f.prototype.buildCSSClass.call(this)},s.buildWrapperCSSClass=function(){return"vjs-subs-caps-button "+f.prototype.buildWrapperCSSClass.call(this)},s.createItems=function(){var e=[];return!(this.player().tech_&&this.player().tech_.featuresNativeTextTracks)&&this.player().getChild("textTrackSettings")&&(e.push(new Z1(this.player_,{kind:this.label_})),this.hideThreshold_+=1),e=f.prototype.createItems.call(this,e,vl)},o}(qa);G1.prototype.kinds_=["captions","subtitles"],G1.prototype.controlText_="Subtitles",Jt.registerComponent("SubsCapsButton",G1);var Zs=function(f){function o(a,e){var r,u=e.track,p=a.audioTracks();e.label=u.label||u.language||"Unknown",e.selected=u.enabled,(r=f.call(this,a,e)||this).track=u,r.addClass("vjs-"+u.kind+"-menu-item");var _=function(){for(var D=arguments.length,j=new Array(D),B=0;B=0;u--)r.push(new C1(this.player(),{rate:e[u]+"x"}));return r},s.updateARIAAttributes=function(){this.el().setAttribute("aria-valuenow",this.player().playbackRate())},s.handleClick=function(e){var r=this.player().playbackRate(),u=this.playbackRates(),_=(u.indexOf(r)+1)%u.length;this.player().playbackRate(u[_])},s.handlePlaybackRateschange=function(e){this.update()},s.playbackRates=function(){var e=this.player();return e.playbackRates&&e.playbackRates()||[]},s.playbackRateSupported=function(){return this.player().tech_&&this.player().tech_.featuresPlaybackRate&&this.playbackRates()&&this.playbackRates().length>0},s.updateVisibility=function(e){this.playbackRateSupported()?this.removeClass("vjs-hidden"):this.addClass("vjs-hidden")},s.updateLabel=function(e){this.playbackRateSupported()&&(this.labelEl_.textContent=this.player().playbackRate()+"x")},o}(Jl);Ts.prototype.controlText_="Playback Rate",Jt.registerComponent("PlaybackRateMenuButton",Ts);var V1=function(f){function o(){return f.apply(this,arguments)||this}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-spacer "+f.prototype.buildCSSClass.call(this)},s.createEl=function(e,r,u){return void 0===e&&(e="div"),void 0===r&&(r={}),void 0===u&&(u={}),r.className||(r.className=this.buildCSSClass()),f.prototype.createEl.call(this,e,r,u)},o}(Jt);Jt.registerComponent("Spacer",V1);var yl=function(f){function o(){return f.apply(this,arguments)||this}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-custom-control-spacer "+f.prototype.buildCSSClass.call(this)},s.createEl=function(){return f.prototype.createEl.call(this,"div",{className:this.buildCSSClass(),textContent:"\xa0"})},o}(V1);Jt.registerComponent("CustomControlSpacer",yl);var Es=function(f){function o(){return f.apply(this,arguments)||this}return R(o,f),o.prototype.createEl=function(){return f.prototype.createEl.call(this,"div",{className:"vjs-control-bar",dir:"ltr"})},o}(Jt);Es.prototype.options_={children:["playToggle","volumePanel","currentTimeDisplay","timeDivider","durationDisplay","progressControl","liveDisplay","seekToLive","remainingTimeDisplay","customControlSpacer","playbackRateMenuButton","chaptersButton","descriptionsButton","subsCapsButton","audioTrackButton","fullscreenToggle"]},"exitPictureInPicture"in U()&&Es.prototype.options_.children.splice(Es.prototype.options_.children.length-1,0,"pictureInPictureToggle"),Jt.registerComponent("ControlBar",Es);var v1=function(f){function o(a,e){var r;return(r=f.call(this,a,e)||this).on(a,"error",function(u){return r.open(u)}),r}R(o,f);var s=o.prototype;return s.buildCSSClass=function(){return"vjs-error-display "+f.prototype.buildCSSClass.call(this)},s.content=function(){var e=this.player().error();return e?this.localize(e.message):""},o}(ll);v1.prototype.options_=N({},ll.prototype.options_,{pauseOnOpen:!1,fillAlways:!0,temporary:!1,uncloseable:!0}),Jt.registerComponent("ErrorDisplay",v1);var Ba="vjs-text-track-settings",W1=["#000","Black"],y1=["#00F","Blue"],Q1=["#0FF","Cyan"],bl=["#0F0","Green"],Is=["#F0F","Magenta"],Ml=["#F00","Red"],K1=["#FFF","White"],Y1=["#FF0","Yellow"],la=["1","Opaque"],Ra=["0.5","Semi-Transparent"],Hs=["0","Transparent"],Gs={backgroundColor:{selector:".vjs-bg-color > select",id:"captions-background-color-%s",label:"Color",options:[W1,K1,Ml,bl,y1,Y1,Is,Q1]},backgroundOpacity:{selector:".vjs-bg-opacity > select",id:"captions-background-opacity-%s",label:"Transparency",options:[la,Ra,Hs]},color:{selector:".vjs-fg-color > select",id:"captions-foreground-color-%s",label:"Color",options:[K1,W1,Ml,bl,y1,Y1,Is,Q1]},edgeStyle:{selector:".vjs-edge-style > select",id:"%s",label:"Text Edge Style",options:[["none","None"],["raised","Raised"],["depressed","Depressed"],["uniform","Uniform"],["dropshadow","Dropshadow"]]},fontFamily:{selector:".vjs-font-family > select",id:"captions-font-family-%s",label:"Font Family",options:[["proportionalSansSerif","Proportional Sans-Serif"],["monospaceSansSerif","Monospace Sans-Serif"],["proportionalSerif","Proportional Serif"],["monospaceSerif","Monospace Serif"],["casual","Casual"],["script","Script"],["small-caps","Small Caps"]]},fontPercent:{selector:".vjs-font-percent > select",id:"captions-font-size-%s",label:"Font Size",options:[["0.50","50%"],["0.75","75%"],["1.00","100%"],["1.25","125%"],["1.50","150%"],["1.75","175%"],["2.00","200%"],["3.00","300%"],["4.00","400%"]],default:2,parser:function(o){return"1.00"===o?null:Number(o)}},textOpacity:{selector:".vjs-text-opacity > select",id:"captions-foreground-opacity-%s",label:"Transparency",options:[la,Ra]},windowColor:{selector:".vjs-window-color > select",id:"captions-window-color-%s",label:"Color"},windowOpacity:{selector:".vjs-window-opacity > select",id:"captions-window-opacity-%s",label:"Transparency",options:[Hs,Ra,la]}};function ls(f,o){if(o&&(f=o(f)),f&&"none"!==f)return f}Gs.windowColor.options=Gs.backgroundColor.options;var m=function(f){function o(a,e){var r;return e.temporary=!1,(r=f.call(this,a,e)||this).updateDisplay=r.updateDisplay.bind($(r)),r.fill(),r.hasBeenOpened_=r.hasBeenFilled_=!0,r.endDialog=Jn("p",{className:"vjs-control-text",textContent:r.localize("End of dialog window.")}),r.el().appendChild(r.endDialog),r.setDefaults(),void 0===e.persistTextTrackSettings&&(r.options_.persistTextTrackSettings=r.options_.playerOptions.persistTextTrackSettings),r.on(r.$(".vjs-done-button"),"click",function(){r.saveSettings(),r.close()}),r.on(r.$(".vjs-default-button"),"click",function(){r.setDefaults(),r.updateDisplay()}),wr(Gs,function(u){r.on(r.$(u.selector),"change",r.updateDisplay)}),r.options_.persistTextTrackSettings&&r.restoreSettings(),r}R(o,f);var s=o.prototype;return s.dispose=function(){this.endDialog=null,f.prototype.dispose.call(this)},s.createElSelect_=function(e,r,u){var p=this;void 0===r&&(r=""),void 0===u&&(u="label");var _=Gs[e],y=_.id.replace("%s",this.id_),D=[r,y].join(" ").trim();return["<"+u+' id="'+y+'" class="'+("label"===u?"vjs-label":"")+'">',this.localize(_.label),"",'").join("")},s.createElFgColor_=function(){var e="captions-text-legend-"+this.id_;return['
','',this.localize("Text"),"",this.createElSelect_("color",e),'',this.createElSelect_("textOpacity",e),"","
"].join("")},s.createElBgColor_=function(){var e="captions-background-"+this.id_;return['
','',this.localize("Background"),"",this.createElSelect_("backgroundColor",e),'',this.createElSelect_("backgroundOpacity",e),"","
"].join("")},s.createElWinColor_=function(){var e="captions-window-"+this.id_;return['
','',this.localize("Window"),"",this.createElSelect_("windowColor",e),'',this.createElSelect_("windowOpacity",e),"","
"].join("")},s.createElColors_=function(){return Jn("div",{className:"vjs-track-settings-colors",innerHTML:[this.createElFgColor_(),this.createElBgColor_(),this.createElWinColor_()].join("")})},s.createElFont_=function(){return Jn("div",{className:"vjs-track-settings-font",innerHTML:['
',this.createElSelect_("fontPercent","","legend"),"
",'
',this.createElSelect_("edgeStyle","","legend"),"
",'
',this.createElSelect_("fontFamily","","legend"),"
"].join("")})},s.createElControls_=function(){var e=this.localize("restore all settings to the default values");return Jn("div",{className:"vjs-track-settings-controls",innerHTML:['",'"].join("")})},s.content=function(){return[this.createElColors_(),this.createElFont_(),this.createElControls_()]},s.label=function(){return this.localize("Caption Settings Dialog")},s.description=function(){return this.localize("Beginning of dialog window. Escape will cancel and close the window.")},s.buildCSSClass=function(){return f.prototype.buildCSSClass.call(this)+" vjs-text-track-settings"},s.getValues=function(){var e=this;return function _s(f,o,s){return void 0===s&&(s=0),na(f).reduce(function(a,e){return o(a,f[e],e)},s)}(Gs,function(r,u,p){var _=function J1(f,o){return ls(f.options[f.options.selectedIndex].value,o)}(e.$(u.selector),u.parser);return void 0!==_&&(r[p]=_),r},{})},s.setValues=function(e){var r=this;wr(Gs,function(u,p){!function E(f,o,s){if(o)for(var a=0;athis.options_.liveTolerance;(!this.timeupdateSeen_||p===1/0)&&(y=!1),y!==this.behindLiveEdge_&&(this.behindLiveEdge_=y,this.trigger("liveedgechange"))}},s.handleDurationchange=function(){this.toggleTracking()},s.toggleTracking=function(){this.player_.duration()===1/0&&this.liveWindow()>=this.options_.trackingThreshold?(this.player_.options_.liveui&&this.player_.addClass("vjs-liveui"),this.startTracking()):(this.player_.removeClass("vjs-liveui"),this.stopTracking())},s.startTracking=function(){this.isTracking()||(this.timeupdateSeen_||(this.timeupdateSeen_=this.player_.hasStarted()),this.trackingInterval_=this.setInterval(this.trackLiveHandler_,30),this.trackLive_(),this.on(this.player_,["play","pause"],this.trackLiveHandler_),this.timeupdateSeen_?this.on(this.player_,"seeked",this.handleSeeked_):(this.one(this.player_,"play",this.handlePlay_),this.one(this.player_,"timeupdate",this.handleFirstTimeupdate_)))},s.handleFirstTimeupdate=function(){this.timeupdateSeen_=!0,this.on(this.player_,"seeked",this.handleSeeked_)},s.handleSeeked=function(){var e=Math.abs(this.liveCurrentTime()-this.player_.currentTime());this.seekedBehindLive_=this.nextSeekedFromUser_&&e>2,this.nextSeekedFromUser_=!1,this.trackLive_()},s.handlePlay=function(){this.one(this.player_,"timeupdate",this.seekToLiveEdge_)},s.reset_=function(){this.lastTime_=-1,this.pastSeekEnd_=0,this.lastSeekEnd_=-1,this.behindLiveEdge_=!0,this.timeupdateSeen_=!1,this.seekedBehindLive_=!1,this.nextSeekedFromUser_=!1,this.clearInterval(this.trackingInterval_),this.trackingInterval_=null,this.off(this.player_,["play","pause"],this.trackLiveHandler_),this.off(this.player_,"seeked",this.handleSeeked_),this.off(this.player_,"play",this.handlePlay_),this.off(this.player_,"timeupdate",this.handleFirstTimeupdate_),this.off(this.player_,"timeupdate",this.seekToLiveEdge_)},s.nextSeekedFromUser=function(){this.nextSeekedFromUser_=!0},s.stopTracking=function(){!this.isTracking()||(this.reset_(),this.trigger("liveedgechange"))},s.seekableEnd=function(){for(var e=this.player_.seekable(),r=[],u=e?e.length:0;u--;)r.push(e.end(u));return r.length?r.sort()[r.length-1]:1/0},s.seekableStart=function(){for(var e=this.player_.seekable(),r=[],u=e?e.length:0;u--;)r.push(e.start(u));return r.length?r.sort()[0]:0},s.liveWindow=function(){var e=this.liveCurrentTime();return e===1/0?0:e-this.seekableStart()},s.isLive=function(){return this.isTracking()},s.atLiveEdge=function(){return!this.behindLiveEdge()},s.liveCurrentTime=function(){return this.pastSeekEnd()+this.seekableEnd()},s.pastSeekEnd=function(){var e=this.seekableEnd();return-1!==this.lastSeekEnd_&&e!==this.lastSeekEnd_&&(this.pastSeekEnd_=0),this.lastSeekEnd_=e,this.pastSeekEnd_},s.behindLiveEdge=function(){return this.behindLiveEdge_},s.isTracking=function(){return"number"==typeof this.trackingInterval_},s.seekToLiveEdge=function(){this.seekedBehindLive_=!1,!this.atLiveEdge()&&(this.nextSeekedFromUser_=!1,this.player_.currentTime(this.liveCurrentTime()))},s.dispose=function(){this.off(U(),"visibilitychange",this.handleVisibilityChange_),this.stopTracking(),f.prototype.dispose.call(this)},o}(Jt);Jt.registerComponent("LiveTracker",ee);var _r,Ue=function(o){var s=o.el();if(s.hasAttribute("src"))return o.triggerSourceset(s.src),!0;var a=o.$$("source"),e=[],r="";if(!a.length)return!1;for(var u=0;u=2&&_.push("loadeddata"),e.readyState>=3&&_.push("canplay"),e.readyState>=4&&_.push("canplaythrough"),this.ready(function(){_.forEach(function(y){this.trigger(y)},this)})}},s.setScrubbing=function(e){this.isScrubbing_=e},s.scrubbing=function(){return this.isScrubbing_},s.setCurrentTime=function(e){try{this.isScrubbing_&&this.el_.fastSeek&&cn?this.el_.fastSeek(e):this.el_.currentTime=e}catch(r){kn(r,"Video is not ready. (Video.js)")}},s.duration=function(){var e=this;if(this.el_.duration===1/0&&si&&fi&&0===this.el_.currentTime){return this.on("timeupdate",function u(){e.el_.currentTime>0&&(e.el_.duration===1/0&&e.trigger("durationchange"),e.off("timeupdate",u))}),NaN}return this.el_.duration||NaN},s.width=function(){return this.el_.offsetWidth},s.height=function(){return this.el_.offsetHeight},s.proxyWebkitFullscreen_=function(){var e=this;if("webkitDisplayingFullscreen"in this.el_){var r=function(){this.trigger("fullscreenchange",{isFullscreen:!1}),this.el_.controls&&!this.options_.nativeControlsForTouch&&this.controls()&&(this.el_.controls=!1)},u=function(){"webkitPresentationMode"in this.el_&&"picture-in-picture"!==this.el_.webkitPresentationMode&&(this.one("webkitendfullscreen",r),this.trigger("fullscreenchange",{isFullscreen:!0,nativeIOSFullscreen:!0}))};this.on("webkitbeginfullscreen",u),this.on("dispose",function(){e.off("webkitbeginfullscreen",u),e.off("webkitendfullscreen",r)})}},s.supportsFullScreen=function(){if("function"==typeof this.el_.webkitEnterFullScreen){var e=C().navigator&&C().navigator.userAgent||"";if(/Android/.test(e)||!/Chrome|Mac OS X 10.5/.test(e))return!0}return!1},s.enterFullScreen=function(){var e=this.el_;if(e.paused&&e.networkState<=e.HAVE_METADATA)Ja(this.el_.play()),this.setTimeout(function(){e.pause();try{e.webkitEnterFullScreen()}catch(r){this.trigger("fullscreenerror",r)}},0);else try{e.webkitEnterFullScreen()}catch(r){this.trigger("fullscreenerror",r)}},s.exitFullScreen=function(){this.el_.webkitDisplayingFullscreen?this.el_.webkitExitFullScreen():this.trigger("fullscreenerror",new Error("The video is not fullscreen"))},s.requestPictureInPicture=function(){return this.el_.requestPictureInPicture()},s.src=function(e){if(void 0===e)return this.el_.src;this.setSrc(e)},s.reset=function(){o.resetMediaElement(this.el_)},s.currentSrc=function(){return this.currentSource_?this.currentSource_.src:this.el_.currentSrc},s.setControls=function(e){this.el_.controls=!!e},s.addTextTrack=function(e,r,u){return this.featuresNativeTextTracks?this.el_.addTextTrack(e,r,u):f.prototype.addTextTrack.call(this,e,r,u)},s.createRemoteTextTrack=function(e){if(!this.featuresNativeTextTracks)return f.prototype.createRemoteTextTrack.call(this,e);var r=U().createElement("track");return e.kind&&(r.kind=e.kind),e.label&&(r.label=e.label),(e.language||e.srclang)&&(r.srclang=e.language||e.srclang),e.default&&(r.default=e.default),e.id&&(r.id=e.id),e.src&&(r.src=e.src),r},s.addRemoteTextTrack=function(e,r){var u=f.prototype.addRemoteTextTrack.call(this,e,r);return this.featuresNativeTextTracks&&this.el().appendChild(u),u},s.removeRemoteTextTrack=function(e){if(f.prototype.removeRemoteTextTrack.call(this,e),this.featuresNativeTextTracks)for(var r=this.$$("track"),u=r.length;u--;)(e===r[u]||e===r[u].track)&&this.el().removeChild(r[u])},s.getVideoPlaybackQuality=function(){if("function"==typeof this.el().getVideoPlaybackQuality)return this.el().getVideoPlaybackQuality();var e={};return typeof this.el().webkitDroppedFrameCount<"u"&&typeof this.el().webkitDecodedFrameCount<"u"&&(e.droppedVideoFrames=this.el().webkitDroppedFrameCount,e.totalVideoFrames=this.el().webkitDecodedFrameCount),C().performance&&"function"==typeof C().performance.now?e.creationTime=C().performance.now():C().performance&&C().performance.timing&&"number"==typeof C().performance.timing.navigationStart&&(e.creationTime=C().Date.now()-C().performance.timing.navigationStart),e},o}(mr);Yi(dn,"TEST_VID",function(){if(Zi()){var f=U().createElement("video"),o=U().createElement("track");return o.kind="captions",o.srclang="en",o.label="English",f.appendChild(o),f}}),dn.isSupported=function(){try{dn.TEST_VID.volume=.5}catch{return!1}return!(!dn.TEST_VID||!dn.TEST_VID.canPlayType)},dn.canPlayType=function(f){return dn.TEST_VID.canPlayType(f)},dn.canPlaySource=function(f,o){return dn.canPlayType(f.type)},dn.canControlVolume=function(){try{var f=dn.TEST_VID.volume;dn.TEST_VID.volume=f/2+.1;var o=f!==dn.TEST_VID.volume;return o&&Ct?(C().setTimeout(function(){dn&&dn.prototype&&(dn.prototype.featuresVolumeControl=f!==dn.TEST_VID.volume)}),!1):o}catch{return!1}},dn.canMuteVolume=function(){try{var f=dn.TEST_VID.muted;return dn.TEST_VID.muted=!f,dn.TEST_VID.muted?ia(dn.TEST_VID,"muted","muted"):Sa(dn.TEST_VID,"muted"),f!==dn.TEST_VID.muted}catch{return!1}},dn.canControlPlaybackRate=function(){if(si&&fi&&xr<58)return!1;try{var f=dn.TEST_VID.playbackRate;return dn.TEST_VID.playbackRate=f/2+.1,f!==dn.TEST_VID.playbackRate}catch{return!1}},dn.canOverrideAttributes=function(){try{var f=function(){};Object.defineProperty(U().createElement("video"),"src",{get:f,set:f}),Object.defineProperty(U().createElement("audio"),"src",{get:f,set:f}),Object.defineProperty(U().createElement("video"),"innerHTML",{get:f,set:f}),Object.defineProperty(U().createElement("audio"),"innerHTML",{get:f,set:f})}catch{return!1}return!0},dn.supportsNativeTextTracks=function(){return cn||Ct&&fi},dn.supportsNativeVideoTracks=function(){return!(!dn.TEST_VID||!dn.TEST_VID.videoTracks)},dn.supportsNativeAudioTracks=function(){return!(!dn.TEST_VID||!dn.TEST_VID.audioTracks)},dn.Events=["loadstart","suspend","abort","error","emptied","stalled","loadedmetadata","loadeddata","canplay","canplaythrough","playing","waiting","seeking","seeked","ended","durationchange","timeupdate","progress","play","pause","ratechange","resize","volumechange"],[["featuresMuteControl","canMuteVolume"],["featuresPlaybackRate","canControlPlaybackRate"],["featuresSourceset","canOverrideAttributes"],["featuresNativeTextTracks","supportsNativeTextTracks"],["featuresNativeVideoTracks","supportsNativeVideoTracks"],["featuresNativeAudioTracks","supportsNativeAudioTracks"]].forEach(function(f){var o=f[0],s=f[1];Yi(dn.prototype,o,function(){return dn[s]()},!0)}),dn.prototype.featuresVolumeControl=dn.canControlVolume(),dn.prototype.movingMediaElementInDOM=!Ct,dn.prototype.featuresFullscreenResize=!0,dn.prototype.featuresProgressEvents=!0,dn.prototype.featuresTimeupdateEvents=!0,dn.patchCanPlayType=function(){di>=4&&!ei&&!fi&&(_r=dn.TEST_VID&&dn.TEST_VID.constructor.prototype.canPlayType,dn.TEST_VID.constructor.prototype.canPlayType=function(f){return f&&/^application\/(?:x-|vnd\.apple\.)mpegurl/i.test(f)?"maybe":_r.call(this,f)})},dn.unpatchCanPlayType=function(){var f=dn.TEST_VID.constructor.prototype.canPlayType;return _r&&(dn.TEST_VID.constructor.prototype.canPlayType=_r),f},dn.patchCanPlayType(),dn.disposeMediaElement=function(f){if(f){for(f.parentNode&&f.parentNode.removeChild(f);f.hasChildNodes();)f.removeChild(f.firstChild);f.removeAttribute("src"),"function"==typeof f.load&&function(){try{f.load()}catch{}}()}},dn.resetMediaElement=function(f){if(f){for(var o=f.querySelectorAll("source"),s=o.length;s--;)f.removeChild(o[s]);f.removeAttribute("src"),"function"==typeof f.load&&function(){try{f.load()}catch{}}()}},["muted","defaultMuted","autoplay","controls","loop","playsinline"].forEach(function(f){dn.prototype[f]=function(){return this.el_[f]||this.el_.hasAttribute(f)}}),["muted","defaultMuted","autoplay","loop","playsinline"].forEach(function(f){dn.prototype["set"+Nr(f)]=function(o){this.el_[f]=o,o?this.el_.setAttribute(f,f):this.el_.removeAttribute(f)}}),["paused","currentTime","buffered","volume","poster","preload","error","seeking","seekable","ended","playbackRate","defaultPlaybackRate","disablePictureInPicture","played","networkState","readyState","videoWidth","videoHeight","crossOrigin"].forEach(function(f){dn.prototype[f]=function(){return this.el_[f]}}),["volume","src","poster","preload","playbackRate","defaultPlaybackRate","disablePictureInPicture","crossOrigin"].forEach(function(f){dn.prototype["set"+Nr(f)]=function(o){this.el_[f]=o}}),["pause","load","play"].forEach(function(f){dn.prototype[f]=function(){return this.el_[f]()}}),mr.withSourceHandlers(dn),dn.nativeSourceHandler={},dn.nativeSourceHandler.canPlayType=function(f){try{return dn.TEST_VID.canPlayType(f)}catch{return""}},dn.nativeSourceHandler.canHandleSource=function(f,o){if(f.type)return dn.nativeSourceHandler.canPlayType(f.type);if(f.src){var s=Hr(f.src);return dn.nativeSourceHandler.canPlayType("video/"+s)}return""},dn.nativeSourceHandler.handleSource=function(f,o,s){o.setSrc(f.src)},dn.nativeSourceHandler.dispose=function(){},dn.registerSourceHandler(dn.nativeSourceHandler),mr.registerTech("Html5",dn);var Ji=["progress","abort","suspend","emptied","stalled","loadedmetadata","loadeddata","timeupdate","resize","volumechange","texttrackchange"],xi={canplay:"CanPlay",canplaythrough:"CanPlayThrough",playing:"Playing",seeked:"Seeked"},ua=["tiny","xsmall","small","medium","large","xlarge","huge"],ca={};ua.forEach(function(f){var o="x"===f.charAt(0)?"x-"+f.substring(1):f;ca[f]="vjs-layout-"+o});var Xa={tiny:210,xsmall:320,small:425,medium:768,large:1440,xlarge:2560,huge:1/0},ar=function(f){function o(a,e,r){var u;if(a.id=a.id||e.id||"vjs_video_"+tn(),(e=wi(o.getTagSettings(a),e)).initChildren=!1,e.createEl=!1,e.evented=!1,e.reportTouchActivity=!1,!e.language)if("function"==typeof a.closest){var p=a.closest("[lang]");p&&p.getAttribute&&(e.language=p.getAttribute("lang"))}else for(var _=a;_&&1===_.nodeType;){if(Cs(_).hasOwnProperty("lang")){e.language=_.getAttribute("lang");break}_=_.parentNode}if((u=f.call(this,null,e,r)||this).boundDocumentFullscreenChange_=function(B){return u.documentFullscreenChange_(B)},u.boundFullWindowOnEscKey_=function(B){return u.fullWindowOnEscKey(B)},u.boundUpdateStyleEl_=function(B){return u.updateStyleEl_(B)},u.boundApplyInitTime_=function(B){return u.applyInitTime_(B)},u.boundUpdateCurrentBreakpoint_=function(B){return u.updateCurrentBreakpoint_(B)},u.boundHandleTechClick_=function(B){return u.handleTechClick_(B)},u.boundHandleTechDoubleClick_=function(B){return u.handleTechDoubleClick_(B)},u.boundHandleTechTouchStart_=function(B){return u.handleTechTouchStart_(B)},u.boundHandleTechTouchMove_=function(B){return u.handleTechTouchMove_(B)},u.boundHandleTechTouchEnd_=function(B){return u.handleTechTouchEnd_(B)},u.boundHandleTechTap_=function(B){return u.handleTechTap_(B)},u.isFullscreen_=!1,u.log=zo(u.id_),u.fsApi_=ga,u.isPosterFromTech_=!1,u.queuedCallbacks_=[],u.isReady_=!1,u.hasStarted_=!1,u.userActive_=!1,u.debugEnabled_=!1,!u.options_||!u.options_.techOrder||!u.options_.techOrder.length)throw new Error("No techOrder specified. Did you overwrite videojs.options instead of just changing the properties you want to override?");if(u.tag=a,u.tagAttributes=a&&Cs(a),u.language(u.options_.language),e.languages){var y={};Object.getOwnPropertyNames(e.languages).forEach(function(B){y[B.toLowerCase()]=e.languages[B]}),u.languages_=y}else u.languages_=o.prototype.options_.languages;u.resetCache_(),u.poster_=e.poster||"",u.controls_=!!e.controls,a.controls=!1,a.removeAttribute("controls"),u.changingSrc_=!1,u.playCallbacks_=[],u.playTerminatedQueue_=[],a.hasAttribute("autoplay")?u.autoplay(!0):u.autoplay(u.options_.autoplay),e.plugins&&Object.keys(e.plugins).forEach(function(B){if("function"!=typeof u[B])throw new Error('plugin "'+B+'" does not exist')}),u.scrubbing_=!1,u.el_=u.createEl(),qs($(u),{eventBusKey:"el_"}),u.fsApi_.requestFullscreen&&(Pi(U(),u.fsApi_.fullscreenchange,u.boundDocumentFullscreenChange_),u.on(u.fsApi_.fullscreenchange,u.boundDocumentFullscreenChange_)),u.fluid_&&u.on(["playerreset","resize"],u.boundUpdateStyleEl_);var D=Tr(u.options_);e.plugins&&Object.keys(e.plugins).forEach(function(B){u[B](e.plugins[B])}),e.debug&&u.debug(!0),u.options_.playerOptions=D,u.middleware_=[],u.playbackRates(e.playbackRates),u.initChildren(),u.isAudio("audio"===a.nodeName.toLowerCase()),u.controls()?u.addClass("vjs-controls-enabled"):u.addClass("vjs-controls-disabled"),u.el_.setAttribute("role","region"),u.isAudio()?u.el_.setAttribute("aria-label",u.localize("Audio Player")):u.el_.setAttribute("aria-label",u.localize("Video Player")),u.isAudio()&&u.addClass("vjs-audio"),u.flexNotSupported_()&&u.addClass("vjs-no-flex"),he&&u.addClass("vjs-touch-enabled"),Ct||u.addClass("vjs-workinghover"),o.players[u.id_]=$(u);var j="7.18.1".split(".")[0];return u.addClass("vjs-v"+j),u.userActive(!0),u.reportUserActivity(),u.one("play",function(B){return u.listenForUserActivity_(B)}),u.on("stageclick",function(B){return u.handleStageClick_(B)}),u.on("keydown",function(B){return u.handleKeyDown(B)}),u.on("languagechange",function(B){return u.handleLanguagechange(B)}),u.breakpoints(u.options_.breakpoints),u.responsive(u.options_.responsive),u}R(o,f);var s=o.prototype;return s.dispose=function(){var e=this;this.trigger("dispose"),this.off("dispose"),jr(U(),this.fsApi_.fullscreenchange,this.boundDocumentFullscreenChange_),jr(U(),"keydown",this.boundFullWindowOnEscKey_),this.styleEl_&&this.styleEl_.parentNode&&(this.styleEl_.parentNode.removeChild(this.styleEl_),this.styleEl_=null),o.players[this.id_]=null,this.tag&&this.tag.player&&(this.tag.player=null),this.el_&&this.el_.player&&(this.el_.player=null),this.tech_&&(this.tech_.dispose(),this.isPosterFromTech_=!1,this.poster_=""),this.playerElIngest_&&(this.playerElIngest_=null),this.tag&&(this.tag=null),function v3(f){d1[f.id()]=null}(this),yo.names.forEach(function(r){var u=yo[r],p=e[u.getterName]();p&&p.off&&p.off()}),f.prototype.dispose.call(this)},s.createEl=function(){var r,e=this.tag,u=this.playerElIngest_=e.parentNode&&e.parentNode.hasAttribute&&e.parentNode.hasAttribute("data-vjs-player"),p="video-js"===this.tag.tagName.toLowerCase();u?r=this.el_=e.parentNode:p||(r=this.el_=f.prototype.createEl.call(this,"div"));var _=Cs(e);if(p){for(r=this.el_=e,e=this.tag=U().createElement("video");r.children.length;)e.appendChild(r.firstChild);ma(r,"video-js")||_o(r,"video-js"),r.appendChild(e),u=this.playerElIngest_=r,Object.keys(r).forEach(function(De){try{e[De]=r[De]}catch{}})}if(e.setAttribute("tabindex","-1"),_.tabindex="-1",(Lo||fi&&V)&&(e.setAttribute("role","application"),_.role="application"),e.removeAttribute("width"),e.removeAttribute("height"),"width"in _&&delete _.width,"height"in _&&delete _.height,Object.getOwnPropertyNames(_).forEach(function(De){p&&"class"===De||r.setAttribute(De,_[De]),p&&e.setAttribute(De,_[De])}),e.playerId=e.id,e.id+="_html5_api",e.className="vjs-tech",e.player=r.player=this,this.addClass("vjs-paused"),!0!==C().VIDEOJS_NO_DYNAMIC_STYLE){this.styleEl_=te("vjs-styles-dimensions");var y=Do(".vjs-styles-defaults"),D=Do("head");D.insertBefore(this.styleEl_,y?y.nextSibling:D.firstChild)}this.fill_=!1,this.fluid_=!1,this.width(this.options_.width),this.height(this.options_.height),this.fill(this.options_.fill),this.fluid(this.options_.fluid),this.aspectRatio(this.options_.aspectRatio),this.crossOrigin(this.options_.crossOrigin||this.options_.crossorigin);for(var j=e.getElementsByTagName("a"),B=0;B0?this.videoWidth()+":"+this.videoHeight():"16:9").split(":"),B=j[1]/j[0];p=void 0!==this.width_?this.width_:void 0!==this.height_?this.height_/B:this.videoWidth()||300,_=void 0!==this.height_?this.height_:p*B,D=/^[^a-zA-Z]/.test(this.id())?"dimensions-"+this.id():this.id()+"-dimensions",this.addClass(D),ve(this.styleEl_,"\n ."+D+" {\n width: "+p+"px;\n height: "+_+"px;\n }\n\n ."+D+".vjs-fluid {\n padding-top: "+100*B+"%;\n }\n ")}else{var e="number"==typeof this.width_?this.width_:this.options_.width,r="number"==typeof this.height_?this.height_:this.options_.height,u=this.tech_&&this.tech_.el();u&&(e>=0&&(u.width=e),r>=0&&(u.height=r))}},s.loadTech_=function(e,r){var u=this;this.tech_&&this.unloadTech_();var p=Nr(e),_=e.charAt(0).toLowerCase()+e.slice(1);"Html5"!==p&&this.tag&&(mr.getTech("Html5").disposeMediaElement(this.tag),this.tag.player=null,this.tag=null),this.techName_=p,this.isReady_=!1;var y=this.autoplay();("string"==typeof this.autoplay()||!0===this.autoplay()&&this.options_.normalizeAutoplay)&&(y=!1);var D={source:r,autoplay:y,nativeControlsForTouch:this.options_.nativeControlsForTouch,playerId:this.id(),techId:this.id()+"_"+_+"_api",playsinline:this.options_.playsinline,preload:this.options_.preload,loop:this.options_.loop,disablePictureInPicture:this.options_.disablePictureInPicture,muted:this.options_.muted,poster:this.poster(),language:this.language(),playerElIngest:this.playerElIngest_||!1,"vtt.js":this.options_["vtt.js"],canOverridePoster:!!this.options_.techCanOverridePoster,enableSourceset:this.options_.enableSourceset,Promise:this.options_.Promise};yo.names.forEach(function(B){var ce=yo[B];D[ce.getterName]=u[ce.privateName]}),wi(D,this.options_[p]),wi(D,this.options_[_]),wi(D,this.options_[e.toLowerCase()]),this.tag&&(D.tag=this.tag),r&&r.src===this.cache_.src&&this.cache_.currentTime>0&&(D.startTime=this.cache_.currentTime);var j=mr.getTech(e);if(!j)throw new Error("No Tech named '"+p+"' exists! '"+p+"' should be registered using videojs.registerTech()'");this.tech_=new j(D),this.tech_.ready(Hi(this,this.handleTechReady_),!0),d3_jsonToTextTracks(this.textTracksJson_||[],this.tech_),Ji.forEach(function(B){u.on(u.tech_,B,function(ce){return u["handleTech"+Nr(B)+"_"](ce)})}),Object.keys(xi).forEach(function(B){u.on(u.tech_,B,function(ce){0===u.tech_.playbackRate()&&u.tech_.seeking()?u.queuedCallbacks_.push({callback:u["handleTech"+xi[B]+"_"].bind(u),event:ce}):u["handleTech"+xi[B]+"_"](ce)})}),this.on(this.tech_,"loadstart",function(B){return u.handleTechLoadStart_(B)}),this.on(this.tech_,"sourceset",function(B){return u.handleTechSourceset_(B)}),this.on(this.tech_,"waiting",function(B){return u.handleTechWaiting_(B)}),this.on(this.tech_,"ended",function(B){return u.handleTechEnded_(B)}),this.on(this.tech_,"seeking",function(B){return u.handleTechSeeking_(B)}),this.on(this.tech_,"play",function(B){return u.handleTechPlay_(B)}),this.on(this.tech_,"firstplay",function(B){return u.handleTechFirstPlay_(B)}),this.on(this.tech_,"pause",function(B){return u.handleTechPause_(B)}),this.on(this.tech_,"durationchange",function(B){return u.handleTechDurationChange_(B)}),this.on(this.tech_,"fullscreenchange",function(B,ce){return u.handleTechFullscreenChange_(B,ce)}),this.on(this.tech_,"fullscreenerror",function(B,ce){return u.handleTechFullscreenError_(B,ce)}),this.on(this.tech_,"enterpictureinpicture",function(B){return u.handleTechEnterPictureInPicture_(B)}),this.on(this.tech_,"leavepictureinpicture",function(B){return u.handleTechLeavePictureInPicture_(B)}),this.on(this.tech_,"error",function(B){return u.handleTechError_(B)}),this.on(this.tech_,"posterchange",function(B){return u.handleTechPosterChange_(B)}),this.on(this.tech_,"textdata",function(B){return u.handleTechTextData_(B)}),this.on(this.tech_,"ratechange",function(B){return u.handleTechRateChange_(B)}),this.on(this.tech_,"loadedmetadata",this.boundUpdateStyleEl_),this.usingNativeControls(this.techGet_("controls")),this.controls()&&!this.usingNativeControls()&&this.addTechControlsListeners_(),this.tech_.el().parentNode!==this.el()&&("Html5"!==p||!this.tag)&&Wa(this.tech_.el(),this.el()),this.tag&&(this.tag.player=null,this.tag=null)},s.unloadTech_=function(){var e=this;yo.names.forEach(function(r){var u=yo[r];e[u.privateName]=e[u.getterName]()}),this.textTracksJson_=d3_textTracksToJson(this.tech_),this.isReady_=!1,this.tech_.dispose(),this.tech_=!1,this.isPosterFromTech_&&(this.poster_="",this.trigger("posterchange")),this.isPosterFromTech_=!1},s.tech=function(e){return void 0===e&&kn.warn("Using the tech directly can be dangerous. I hope you know what you're doing.\nSee https://github.com/videojs/video.js/issues/2617 for more info.\n"),this.tech_},s.addTechControlsListeners_=function(){this.removeTechControlsListeners_(),this.on(this.tech_,"click",this.boundHandleTechClick_),this.on(this.tech_,"dblclick",this.boundHandleTechDoubleClick_),this.on(this.tech_,"touchstart",this.boundHandleTechTouchStart_),this.on(this.tech_,"touchmove",this.boundHandleTechTouchMove_),this.on(this.tech_,"touchend",this.boundHandleTechTouchEnd_),this.on(this.tech_,"tap",this.boundHandleTechTap_)},s.removeTechControlsListeners_=function(){this.off(this.tech_,"tap",this.boundHandleTechTap_),this.off(this.tech_,"touchstart",this.boundHandleTechTouchStart_),this.off(this.tech_,"touchmove",this.boundHandleTechTouchMove_),this.off(this.tech_,"touchend",this.boundHandleTechTouchEnd_),this.off(this.tech_,"click",this.boundHandleTechClick_),this.off(this.tech_,"dblclick",this.boundHandleTechDoubleClick_)},s.handleTechReady_=function(){this.triggerReady(),this.cache_.volume&&this.techCall_("setVolume",this.cache_.volume),this.handleTechPosterChange_(),this.handleTechDurationChange_()},s.handleTechLoadStart_=function(){this.removeClass("vjs-ended"),this.removeClass("vjs-seeking"),this.error(null),this.handleTechDurationChange_(),this.paused()?(this.hasStarted(!1),this.trigger("loadstart")):(this.trigger("loadstart"),this.trigger("firstplay")),this.manualAutoplay_(!0===this.autoplay()&&this.options_.normalizeAutoplay?"play":this.autoplay())},s.manualAutoplay_=function(e){var r=this;if(this.tech_&&"string"==typeof e){var p,u=function(){var y=r.muted();r.muted(!0);var D=function(){r.muted(y)};r.playTerminatedQueue_.push(D);var j=r.play();if(vo(j))return j.catch(function(B){throw D(),new Error("Rejection at manualAutoplay. Restoring muted value. "+(B||""))})};if("any"!==e||this.muted()?p="muted"!==e||this.muted()?this.play():u():vo(p=this.play())&&(p=p.catch(u)),vo(p))return p.then(function(){r.trigger({type:"autoplay-success",autoplay:e})}).catch(function(){r.trigger({type:"autoplay-failure",autoplay:e})})}},s.updateSourceCaches_=function(e){void 0===e&&(e="");var r=e,u="";"string"!=typeof r&&(r=e.src,u=e.type),this.cache_.source=this.cache_.source||{},this.cache_.sources=this.cache_.sources||[],r&&!u&&(u=function(o,s){if(!s)return"";if(o.cache_.source.src===s&&o.cache_.source.type)return o.cache_.source.type;var a=o.cache_.sources.filter(function(p){return p.src===s});if(a.length)return a[0].type;for(var e=o.$$("source"),r=0;r0&&0===this.cache_.lastPlaybackRate&&(this.queuedCallbacks_.forEach(function(e){return e.callback(e.event)}),this.queuedCallbacks_=[]),this.cache_.lastPlaybackRate=this.tech_.playbackRate(),this.trigger("ratechange")},s.handleTechWaiting_=function(){var e=this;this.addClass("vjs-waiting"),this.trigger("waiting");var r=this.currentTime();this.on("timeupdate",function p(){r!==e.currentTime()&&(e.removeClass("vjs-waiting"),e.off("timeupdate",p))})},s.handleTechCanPlay_=function(){this.removeClass("vjs-waiting"),this.trigger("canplay")},s.handleTechCanPlayThrough_=function(){this.removeClass("vjs-waiting"),this.trigger("canplaythrough")},s.handleTechPlaying_=function(){this.removeClass("vjs-waiting"),this.trigger("playing")},s.handleTechSeeking_=function(){this.addClass("vjs-seeking"),this.trigger("seeking")},s.handleTechSeeked_=function(){this.removeClass("vjs-seeking"),this.removeClass("vjs-ended"),this.trigger("seeked")},s.handleTechFirstPlay_=function(){this.options_.starttime&&(kn.warn("Passing the `starttime` option to the player will be deprecated in 6.0"),this.currentTime(this.options_.starttime)),this.addClass("vjs-has-started"),this.trigger("firstplay")},s.handleTechPause_=function(){this.removeClass("vjs-playing"),this.addClass("vjs-paused"),this.trigger("pause")},s.handleTechEnded_=function(){this.addClass("vjs-ended"),this.removeClass("vjs-waiting"),this.options_.loop?(this.currentTime(0),this.play()):this.paused()||this.pause(),this.trigger("ended")},s.handleTechDurationChange_=function(){this.duration(this.techGet_("duration"))},s.handleTechClick_=function(e){!this.controls_||(void 0===this.options_||void 0===this.options_.userActions||void 0===this.options_.userActions.click||!1!==this.options_.userActions.click)&&(void 0!==this.options_&&void 0!==this.options_.userActions&&"function"==typeof this.options_.userActions.click?this.options_.userActions.click.call(this,e):this.paused()?Ja(this.play()):this.pause())},s.handleTechDoubleClick_=function(e){this.controls_&&(Array.prototype.some.call(this.$$(".vjs-control-bar, .vjs-modal-dialog"),function(u){return u.contains(e.target)})||(void 0===this.options_||void 0===this.options_.userActions||void 0===this.options_.userActions.doubleClick||!1!==this.options_.userActions.doubleClick)&&(void 0!==this.options_&&void 0!==this.options_.userActions&&"function"==typeof this.options_.userActions.doubleClick?this.options_.userActions.doubleClick.call(this,e):this.isFullscreen()?this.exitFullscreen():this.requestFullscreen()))},s.handleTechTap_=function(){this.userActive(!this.userActive())},s.handleTechTouchStart_=function(){this.userWasActive=this.userActive()},s.handleTechTouchMove_=function(){this.userWasActive&&this.reportUserActivity()},s.handleTechTouchEnd_=function(e){e.cancelable&&e.preventDefault()},s.handleStageClick_=function(){this.reportUserActivity()},s.toggleFullscreenClass_=function(){this.isFullscreen()?this.addClass("vjs-fullscreen"):this.removeClass("vjs-fullscreen")},s.documentFullscreenChange_=function(e){var r=e.target.player;if(!r||r===this){var u=this.el(),p=U()[this.fsApi_.fullscreenElement]===u;!p&&u.matches?p=u.matches(":"+this.fsApi_.fullscreen):!p&&u.msMatchesSelector&&(p=u.msMatchesSelector(":"+this.fsApi_.fullscreen)),this.isFullscreen(p)}},s.handleTechFullscreenChange_=function(e,r){var u=this;r&&(r.nativeIOSFullscreen&&(this.addClass("vjs-ios-native-fs"),this.tech_.one("webkitendfullscreen",function(){u.removeClass("vjs-ios-native-fs")})),this.isFullscreen(r.isFullscreen))},s.handleTechFullscreenError_=function(e,r){this.trigger("fullscreenerror",r)},s.togglePictureInPictureClass_=function(){this.isInPictureInPicture()?this.addClass("vjs-picture-in-picture"):this.removeClass("vjs-picture-in-picture")},s.handleTechEnterPictureInPicture_=function(e){this.isInPictureInPicture(!0)},s.handleTechLeavePictureInPicture_=function(e){this.isInPictureInPicture(!1)},s.handleTechError_=function(){var e=this.tech_.error();this.error(e)},s.handleTechTextData_=function(){var e=null;arguments.length>1&&(e=arguments[1]),this.trigger("textdata",e)},s.getCache=function(){return this.cache_},s.resetCache_=function(){this.cache_={currentTime:0,initTime:0,inactivityTimeout:this.options_.inactivityTimeout,duration:NaN,lastVolume:1,lastPlaybackRate:this.defaultPlaybackRate(),media:null,src:"",source:{},sources:[],playbackRates:[],volume:1}},s.techCall_=function(e,r){this.ready(function(){if(e in Nc)return function I5(f,o,s,a){return o[s](f.reduce(w2(s),a))}(this.middleware_,this.tech_,e,r);if(e in Ql)return C3(this.middleware_,this.tech_,e,r);try{this.tech_&&this.tech_[e](r)}catch(u){throw kn(u),u}},!0)},s.techGet_=function(e){if(this.tech_&&this.tech_.isReady_){if(e in kc)return function Ac(f,o,s){return f.reduceRight(w2(s),o[s]())}(this.middleware_,this.tech_,e);if(e in Ql)return C3(this.middleware_,this.tech_,e);try{return this.tech_[e]()}catch(r){throw void 0===this.tech_[e]?(kn("Video.js: "+e+" method not defined for "+this.techName_+" playback technology.",r),r):"TypeError"===r.name?(kn("Video.js: "+e+" unavailable on "+this.techName_+" playback technology element.",r),this.tech_.isReady_=!1,r):(kn(r),r)}}},s.play=function(){var e=this,r=this.options_.Promise||C().Promise;return r?new r(function(u){e.play_(u)}):this.play_()},s.play_=function(e){var r=this;void 0===e&&(e=Ja),this.playCallbacks_.push(e);var u=Boolean(!this.changingSrc_&&(this.src()||this.currentSrc()));if(this.waitToPlay_&&(this.off(["ready","loadstart"],this.waitToPlay_),this.waitToPlay_=null),!this.isReady_||!u)return this.waitToPlay_=function(_){r.play_()},this.one(["ready","loadstart"],this.waitToPlay_),void(!u&&(cn||Ct)&&this.load());var p=this.techGet_("play");null===p?this.runPlayTerminatedQueue_():this.runPlayCallbacks_(p)},s.runPlayTerminatedQueue_=function(){var e=this.playTerminatedQueue_.slice(0);this.playTerminatedQueue_=[],e.forEach(function(r){r()})},s.runPlayCallbacks_=function(e){var r=this.playCallbacks_.slice(0);this.playCallbacks_=[],this.playTerminatedQueue_=[],r.forEach(function(u){u(e)})},s.pause=function(){this.techCall_("pause")},s.paused=function(){return!1!==this.techGet_("paused")},s.played=function(){return this.techGet_("played")||Rs(0,0)},s.scrubbing=function(e){if(typeof e>"u")return this.scrubbing_;this.scrubbing_=!!e,this.techCall_("setScrubbing",this.scrubbing_),e?this.addClass("vjs-scrubbing"):this.removeClass("vjs-scrubbing")},s.currentTime=function(e){return typeof e<"u"?(e<0&&(e=0),this.isReady_&&!this.changingSrc_&&this.tech_&&this.tech_.isReady_?(this.techCall_("setCurrentTime",e),void(this.cache_.initTime=0)):(this.cache_.initTime=e,this.off("canplay",this.boundApplyInitTime_),void this.one("canplay",this.boundApplyInitTime_))):(this.cache_.currentTime=this.techGet_("currentTime")||0,this.cache_.currentTime)},s.applyInitTime_=function(){this.currentTime(this.cache_.initTime)},s.duration=function(e){if(void 0===e)return void 0!==this.cache_.duration?this.cache_.duration:NaN;(e=parseFloat(e))<0&&(e=1/0),e!==this.cache_.duration&&(this.cache_.duration=e,e===1/0?this.addClass("vjs-live"):this.removeClass("vjs-live"),isNaN(e)||this.trigger("durationchange"))},s.remainingTime=function(){return this.duration()-this.currentTime()},s.remainingTimeDisplay=function(){return Math.floor(this.duration())-Math.floor(this.currentTime())},s.buffered=function(){var e=this.techGet_("buffered");return(!e||!e.length)&&(e=Rs(0,0)),e},s.bufferedPercent=function(){return Ec(this.buffered(),this.duration())},s.bufferedEnd=function(){var e=this.buffered(),r=this.duration(),u=e.end(e.length-1);return u>r&&(u=r),u},s.volume=function(e){var r;return void 0!==e?(r=Math.max(0,Math.min(1,parseFloat(e))),this.cache_.volume=r,this.techCall_("setVolume",r),void(r>0&&this.lastVolume_(r))):(r=parseFloat(this.techGet_("volume")),isNaN(r)?1:r)},s.muted=function(e){if(void 0===e)return this.techGet_("muted")||!1;this.techCall_("setMuted",e)},s.defaultMuted=function(e){return void 0!==e?this.techCall_("setDefaultMuted",e):this.techGet_("defaultMuted")||!1},s.lastVolume_=function(e){if(void 0===e||0===e)return this.cache_.lastVolume;this.cache_.lastVolume=e},s.supportsFullScreen=function(){return this.techGet_("supportsFullScreen")||!1},s.isFullscreen=function(e){if(void 0!==e){var r=this.isFullscreen_;return this.isFullscreen_=Boolean(e),this.isFullscreen_!==r&&this.fsApi_.prefixed&&this.trigger("fullscreenchange"),void this.toggleFullscreenClass_()}return this.isFullscreen_},s.requestFullscreen=function(e){var r=this.options_.Promise||C().Promise;if(r){var u=this;return new r(function(p,_){function y(){u.off("fullscreenerror",j),u.off("fullscreenchange",D)}function D(){y(),p()}function j(ce,De){y(),_(De)}u.one("fullscreenchange",D),u.one("fullscreenerror",j);var B=u.requestFullscreenHelper_(e);B&&(B.then(y,y),B.then(p,_))})}return this.requestFullscreenHelper_()},s.requestFullscreenHelper_=function(e){var u,r=this;if(this.fsApi_.prefixed||(u=this.options_.fullscreen&&this.options_.fullscreen.options||{},void 0!==e&&(u=e)),this.fsApi_.requestFullscreen){var p=this.el_[this.fsApi_.requestFullscreen](u);return p&&p.then(function(){return r.isFullscreen(!0)},function(){return r.isFullscreen(!1)}),p}this.tech_.supportsFullScreen()&&!this.options_.preferFullWindow?this.techCall_("enterFullScreen"):this.enterFullWindow()},s.exitFullscreen=function(){var e=this.options_.Promise||C().Promise;if(e){var r=this;return new e(function(u,p){function _(){r.off("fullscreenerror",D),r.off("fullscreenchange",y)}function y(){_(),u()}function D(B,ce){_(),p(ce)}r.one("fullscreenchange",y),r.one("fullscreenerror",D);var j=r.exitFullscreenHelper_();j&&(j.then(_,_),j.then(u,p))})}return this.exitFullscreenHelper_()},s.exitFullscreenHelper_=function(){var e=this;if(this.fsApi_.requestFullscreen){var r=U()[this.fsApi_.exitFullscreen]();return r&&Ja(r.then(function(){return e.isFullscreen(!1)})),r}this.tech_.supportsFullScreen()&&!this.options_.preferFullWindow?this.techCall_("exitFullScreen"):this.exitFullWindow()},s.enterFullWindow=function(){this.isFullscreen(!0),this.isFullWindow=!0,this.docOrigOverflow=U().documentElement.style.overflow,Pi(U(),"keydown",this.boundFullWindowOnEscKey_),U().documentElement.style.overflow="hidden",_o(U().body,"vjs-full-window"),this.trigger("enterFullWindow")},s.fullWindowOnEscKey=function(e){K().isEventKey(e,"Esc")&&!0===this.isFullscreen()&&(this.isFullWindow?this.exitFullWindow():this.exitFullscreen())},s.exitFullWindow=function(){this.isFullscreen(!1),this.isFullWindow=!1,jr(U(),"keydown",this.boundFullWindowOnEscKey_),U().documentElement.style.overflow=this.docOrigOverflow,Qa(U().body,"vjs-full-window"),this.trigger("exitFullWindow")},s.disablePictureInPicture=function(e){if(void 0===e)return this.techGet_("disablePictureInPicture");this.techCall_("setDisablePictureInPicture",e),this.options_.disablePictureInPicture=e,this.trigger("disablepictureinpicturechanged")},s.isInPictureInPicture=function(e){return void 0!==e?(this.isInPictureInPicture_=!!e,void this.togglePictureInPictureClass_()):!!this.isInPictureInPicture_},s.requestPictureInPicture=function(){if("pictureInPictureEnabled"in U()&&!1===this.disablePictureInPicture())return this.techGet_("requestPictureInPicture")},s.exitPictureInPicture=function(){if("pictureInPictureEnabled"in U())return U().exitPictureInPicture()},s.handleKeyDown=function(e){var r=this.options_.userActions;if(r&&r.hotkeys){(function(_){var y=_.tagName.toLowerCase();if(_.isContentEditable)return!0;if("input"===y)return-1===["button","checkbox","hidden","radio","reset","submit"].indexOf(_.type);return-1!==["textarea"].indexOf(y)})(this.el_.ownerDocument.activeElement)||("function"==typeof r.hotkeys?r.hotkeys.call(this,e):this.handleHotkeys(e))}},s.handleHotkeys=function(e){var r=this.options_.userActions?this.options_.userActions.hotkeys:{},u=r.fullscreenKey,p=void 0===u?function(me){return K().isEventKey(me,"f")}:u,_=r.muteKey,y=void 0===_?function(me){return K().isEventKey(me,"m")}:_,D=r.playPauseKey,j=void 0===D?function(me){return K().isEventKey(me,"k")||K().isEventKey(me,"Space")}:D;if(p.call(this,e)){e.preventDefault(),e.stopPropagation();var B=Jt.getComponent("FullscreenToggle");!1!==U()[this.fsApi_.fullscreenEnabled]&&B.prototype.handleClick.call(this,e)}else if(y.call(this,e)){e.preventDefault(),e.stopPropagation(),Jt.getComponent("MuteToggle").prototype.handleClick.call(this,e)}else if(j.call(this,e)){e.preventDefault(),e.stopPropagation(),Jt.getComponent("PlayToggle").prototype.handleClick.call(this,e)}},s.canPlayType=function(e){for(var r,u=0,p=this.options_.techOrder;u"u")return this.cache_.src||"";this.resetRetryOnError_&&this.resetRetryOnError_();var p=_u(e);if(p.length){if(this.changingSrc_=!0,r||(this.cache_.sources=p),this.updateSourceCaches_(p[0]),E5(this,p[0],function(D,j){if(u.middleware_=j,r||(u.cache_.sources=p),u.updateSourceCaches_(D),u.src_(D))return p.length>1?u.handleSrc_(p.slice(1)):(u.changingSrc_=!1,u.setTimeout(function(){this.error({code:4,message:this.localize(this.options_.notSupportedMessage)})},0),void u.triggerReady());!function _3(f,o){f.forEach(function(s){return s.setTech&&s.setTech(o)})}(j,u.tech_)}),this.options_.retryOnError&&p.length>1){var _=function(){u.error(null),u.handleSrc_(p.slice(1),!0)},y=function(){u.off("error",_)};this.one("error",_),this.one("playing",y),this.resetRetryOnError_=function(){u.off("error",_),u.off("playing",y)}}}else this.setTimeout(function(){this.error({code:4,message:this.localize(this.options_.notSupportedMessage)})},0)},s.src=function(e){return this.handleSrc_(e,!1)},s.src_=function(e){var r=this,u=this.selectSource([e]);return!u||(function(o,s){return Nr(o)===Nr(s)}(u.tech,this.techName_)?(this.ready(function(){this.tech_.constructor.prototype.hasOwnProperty("setSource")?this.techCall_("setSource",e):this.techCall_("src",e.src),this.changingSrc_=!1},!0),!1):(this.changingSrc_=!0,this.loadTech_(u.tech,u.source),this.tech_.ready(function(){r.changingSrc_=!1}),!1))},s.load=function(){this.techCall_("load")},s.reset=function(){var e=this,r=this.options_.Promise||C().Promise;this.paused()||!r?this.doReset_():Ja(this.play().then(function(){return e.doReset_()}))},s.doReset_=function(){this.tech_&&this.tech_.clearTracks("text"),this.resetCache_(),this.poster(""),this.loadTech_(this.options_.techOrder[0],null),this.techCall_("reset"),this.resetControlBarUI_(),ys(this)&&this.trigger("playerreset")},s.resetControlBarUI_=function(){this.resetProgressBar_(),this.resetPlaybackRate_(),this.resetVolumeBar_()},s.resetProgressBar_=function(){this.currentTime(0);var e=this.controlBar,r=e.durationDisplay,u=e.remainingTimeDisplay;r&&r.updateContent(),u&&u.updateContent()},s.resetPlaybackRate_=function(){this.playbackRate(this.defaultPlaybackRate()),this.handleTechRateChange_()},s.resetVolumeBar_=function(){this.volume(1),this.trigger("volumechange")},s.currentSources=function(){var e=this.currentSource(),r=[];return 0!==Object.keys(e).length&&r.push(e),this.cache_.sources||r},s.currentSource=function(){return this.cache_.source||{}},s.currentSrc=function(){return this.currentSource()&&this.currentSource().src||""},s.currentType=function(){return this.currentSource()&&this.currentSource().type||""},s.preload=function(e){return void 0!==e?(this.techCall_("setPreload",e),void(this.options_.preload=e)):this.techGet_("preload")},s.autoplay=function(e){if(void 0===e)return this.options_.autoplay||!1;var r;"string"==typeof e&&/(any|play|muted)/.test(e)||!0===e&&this.options_.normalizeAutoplay?(this.options_.autoplay=e,this.manualAutoplay_("string"==typeof e?e:"play"),r=!1):this.options_.autoplay=!!e,r=typeof r>"u"?this.options_.autoplay:r,this.tech_&&this.techCall_("setAutoplay",r)},s.playsinline=function(e){return void 0!==e?(this.techCall_("setPlaysinline",e),this.options_.playsinline=e,this):this.techGet_("playsinline")},s.loop=function(e){return void 0!==e?(this.techCall_("setLoop",e),void(this.options_.loop=e)):this.techGet_("loop")},s.poster=function(e){if(void 0===e)return this.poster_;e||(e=""),e!==this.poster_&&(this.poster_=e,this.techCall_("setPoster",e),this.isPosterFromTech_=!1,this.trigger("posterchange"))},s.handleTechPosterChange_=function(){if((!this.poster_||this.options_.techCanOverridePoster)&&this.tech_&&this.tech_.poster){var e=this.tech_.poster()||"";e!==this.poster_&&(this.poster_=e,this.isPosterFromTech_=!0,this.trigger("posterchange"))}},s.controls=function(e){if(void 0===e)return!!this.controls_;e=!!e,this.controls_!==e&&(this.controls_=e,this.usingNativeControls()&&this.techCall_("setControls",e),this.controls_?(this.removeClass("vjs-controls-disabled"),this.addClass("vjs-controls-enabled"),this.trigger("controlsenabled"),this.usingNativeControls()||this.addTechControlsListeners_()):(this.removeClass("vjs-controls-enabled"),this.addClass("vjs-controls-disabled"),this.trigger("controlsdisabled"),this.usingNativeControls()||this.removeTechControlsListeners_()))},s.usingNativeControls=function(e){if(void 0===e)return!!this.usingNativeControls_;e=!!e,this.usingNativeControls_!==e&&(this.usingNativeControls_=e,this.usingNativeControls_?(this.addClass("vjs-using-native-controls"),this.trigger("usingnativecontrols")):(this.removeClass("vjs-using-native-controls"),this.trigger("usingcustomcontrols")))},s.error=function(e){var r=this;if(void 0===e)return this.error_||null;if(Zn("beforeerror").forEach(function(p){var _=p(r,e);k(_)&&!Array.isArray(_)||"string"==typeof _||"number"==typeof _||null===_?e=_:r.log.error("please return a value that MediaError expects in beforeerror hooks")}),this.options_.suppressNotSupportedError&&e&&4===e.code){var u=function(){this.error(e)};return this.options_.suppressNotSupportedError=!1,this.any(["click","touchstart"],u),void this.one("loadstart",function(){this.off(["click","touchstart"],u)})}if(null===e)return this.error_=e,this.removeClass("vjs-error"),void(this.errorDisplay&&this.errorDisplay.close());this.error_=new Gi(e),this.addClass("vjs-error"),kn.error("(CODE:"+this.error_.code+" "+Gi.errorTypes[this.error_.code]+")",this.error_.message,this.error_),this.trigger("error"),Zn("error").forEach(function(p){return p(r,r.error_)})},s.reportUserActivity=function(e){this.userActivity_=!0},s.userActive=function(e){if(void 0===e)return this.userActive_;if((e=!!e)!==this.userActive_){if(this.userActive_=e,this.userActive_)return this.userActivity_=!0,this.removeClass("vjs-user-inactive"),this.addClass("vjs-user-active"),void this.trigger("useractive");this.tech_&&this.tech_.one("mousemove",function(r){r.stopPropagation(),r.preventDefault()}),this.userActivity_=!1,this.removeClass("vjs-user-active"),this.addClass("vjs-user-inactive"),this.trigger("userinactive")}},s.listenForUserActivity_=function(){var e,r,u,p=Hi(this,this.reportUserActivity),D=function(De){p(),this.clearInterval(e)};this.on("mousedown",function(){p(),this.clearInterval(e),e=this.setInterval(p,250)}),this.on("mousemove",function(De){(De.screenX!==r||De.screenY!==u)&&(r=De.screenX,u=De.screenY,p())}),this.on("mouseup",D),this.on("mouseleave",D);var B,j=this.getChild("controlBar");j&&!Ct&&!si&&(j.on("mouseenter",function(ce){0!==this.player().options_.inactivityTimeout&&(this.player().cache_.inactivityTimeout=this.player().options_.inactivityTimeout),this.player().options_.inactivityTimeout=0}),j.on("mouseleave",function(ce){this.player().options_.inactivityTimeout=this.player().cache_.inactivityTimeout})),this.on("keydown",p),this.on("keyup",p),this.setInterval(function(){if(this.userActivity_){this.userActivity_=!1,this.userActive(!0),this.clearTimeout(B);var ce=this.options_.inactivityTimeout;ce<=0||(B=this.setTimeout(function(){this.userActivity_||this.userActive(!1)},ce))}},250)},s.playbackRate=function(e){if(void 0===e)return this.tech_&&this.tech_.featuresPlaybackRate?this.cache_.lastPlaybackRate||this.techGet_("playbackRate"):1;this.techCall_("setPlaybackRate",e)},s.defaultPlaybackRate=function(e){return void 0!==e?this.techCall_("setDefaultPlaybackRate",e):this.tech_&&this.tech_.featuresPlaybackRate?this.techGet_("defaultPlaybackRate"):1},s.isAudio=function(e){if(void 0===e)return!!this.isAudio_;this.isAudio_=!!e},s.addTextTrack=function(e,r,u){if(this.tech_)return this.tech_.addTextTrack(e,r,u)},s.addRemoteTextTrack=function(e,r){if(this.tech_)return this.tech_.addRemoteTextTrack(e,r)},s.removeRemoteTextTrack=function(e){void 0===e&&(e={});var u=e.track;if(u||(u=e),this.tech_)return this.tech_.removeRemoteTextTrack(u)},s.getVideoPlaybackQuality=function(){return this.techGet_("getVideoPlaybackQuality")},s.videoWidth=function(){return this.tech_&&this.tech_.videoWidth&&this.tech_.videoWidth()||0},s.videoHeight=function(){return this.tech_&&this.tech_.videoHeight&&this.tech_.videoHeight()||0},s.language=function(e){if(void 0===e)return this.language_;this.language_!==String(e).toLowerCase()&&(this.language_=String(e).toLowerCase(),ys(this)&&this.trigger("languagechange"))},s.languages=function(){return Tr(o.prototype.options_.languages,this.languages_)},s.toJSON=function(){var e=Tr(this.options_),r=e.tracks;e.tracks=[];for(var u=0;u"):function(){}},wl=1/30,M1=.1,N5=function(o,s){var e,a=[];if(o&&o.length)for(e=0;e=s})},Ds=function(o,s){return N5(o,function(a){return a-wl>=s})},Gc=function(o){var s=[];if(!o||!o.length)return"";for(var a=0;a "+o.end(a));return s.join(", ")},$l=function(o){for(var s=[],a=0;au)){if(s>r&&s<=u){a+=u-s;continue}a+=u-r}}return a},P3=pt.createTimeRange,Vc=function(o,s){if(!s.preload)return s.duration;var a=0;return(s.parts||[]).forEach(function(e){a+=e.duration}),(s.preloadHints||[]).forEach(function(e){"PART"===e.type&&(a+=o.partTargetDuration)}),a},Wc=function(o){return(o.segments||[]).reduce(function(s,a,e){return a.parts?a.parts.forEach(function(r,u){s.push({duration:r.duration,segmentIndex:e,partIndex:u,part:r,segment:a})}):s.push({duration:a.duration,segmentIndex:e,partIndex:null,segment:a,part:null}),s},[])},Qc=function(o){var s=o.segments&&o.segments.length&&o.segments[o.segments.length-1];return s&&s.parts||[]},R5=function(o){var s=o.preloadSegment;if(s){var a=s.parts,r=(s.preloadHints||[]).reduce(function(u,p){return u+("PART"===p.type?1:0)},0);return r+=a&&a.length?a.length:0}},z5=function(o,s){if(s.endList)return 0;if(o&&o.suggestedPresentationDelay)return o.suggestedPresentationDelay;var a=Qc(s).length>0;return a&&s.serverControl&&s.serverControl.partHoldBack?s.serverControl.partHoldBack:a&&s.partTargetDuration?3*s.partTargetDuration:s.serverControl&&s.serverControl.holdBack?s.serverControl.holdBack:s.targetDuration?3*s.targetDuration:0},Kc=function(o,s,a){if(typeof s>"u"&&(s=o.mediaSequence+o.segments.length),s"u"){if(o.totalDuration)return o.totalDuration;if(!o.endList)return C()[1/0]}return Kc(o,s,a)},L2=function(o){var s=o.defaultDuration,a=o.durationList,e=o.startIndex,r=o.endIndex,u=0;if(e>r){var p=[r,e];e=p[0],r=p[1]}if(e<0){for(var _=e;_Date.now()},Jc=function(o){return o.excludeUntil&&o.excludeUntil===1/0},D2=function(o){var s=Yc(o);return!o.disabled&&!s},U5=function(o,s){return s.attributes&&s.attributes[o]},$c=function(o,s){if(1===o.playlists.length)return!0;var a=s.attributes.BANDWIDTH||Number.MAX_VALUE;return 0===o.playlists.filter(function(e){return!!D2(e)&&(e.attributes.BANDWIDTH||0)0)for(var ce=D-1;ce>=0;ce--){var De=y[ce];if(_+=De.duration,p){if(_<0)continue}else if(_+wl<=0)continue;return{partIndex:De.partIndex,segmentIndex:De.segmentIndex,startTime:u-L2({defaultDuration:s.targetDuration,durationList:y,startIndex:D,endIndex:ce})}}return{partIndex:y[0]&&y[0].partIndex||null,segmentIndex:y[0]&&y[0].segmentIndex||0,startTime:a}}if(D<0){for(var me=D;me<0;me++)if((_-=s.targetDuration)<0)return{partIndex:y[0]&&y[0].partIndex||null,segmentIndex:y[0]&&y[0].segmentIndex||0,startTime:a};D=0}for(var xe=D;xe0)continue}else if(_-wl>=0)continue;return{partIndex:ht.partIndex,segmentIndex:ht.segmentIndex,startTime:u+L2({defaultDuration:s.targetDuration,durationList:y,startIndex:D,endIndex:xe})}}return{segmentIndex:y[y.length-1].segmentIndex,partIndex:y[y.length-1].partIndex,startTime:a}},isEnabled:D2,isDisabled:function(o){return o.disabled},isBlacklisted:Yc,isIncompatible:Jc,playlistEnd:O3,isAes:function(o){for(var s=0;s-1&&p!==u.length-1&&(a._HLS_part=p),(p>-1||u.length)&&r--}a._HLS_msn=r}if(s.serverControl&&s.serverControl.canSkipUntil&&(a._HLS_skip=s.serverControl.canSkipDateranges?"v2":"YES"),Object.keys(a).length){var _=new(C().URL)(o);["_HLS_skip","_HLS_msn","_HLS_part"].forEach(function(y){!a.hasOwnProperty(y)||_.searchParams.set(y,a[y])}),o=_.toString()}return o}(u,r)),this.state="HAVE_CURRENT_METADATA",this.request=this.vhs_.xhr({uri:u,withCredentials:this.withCredentials},function(p,_){if(e.request){if(p)return e.playlistRequestError(e.request,e.media(),"HAVE_METADATA");e.haveMetadata({playlistString:e.request.responseText,url:e.media().uri,id:e.media().id})}})}},s.playlistRequestError=function(e,r,u){var p=r.uri,_=r.id;this.request=null,u&&(this.state=u),this.error={playlist:this.master.playlists[_],status:e.status,message:"HLS playlist request error at URL: "+p+".",responseText:e.responseText,code:e.status>=500?4:2},this.trigger("error")},s.parseManifest_=function(e){var r=this,u=e.url;return function(o){var s=o.onwarn,a=o.oninfo,e=o.manifestString,r=o.customTagParsers,u=void 0===r?[]:r,p=o.customTagMappers,_=void 0===p?[]:p,y=o.experimentalLLHLS,D=new St;s&&D.on("warn",s),a&&D.on("info",a),u.forEach(function(me){return D.addParser(me)}),_.forEach(function(me){return D.addTagMapper(me)}),D.push(e),D.end();var j=D.manifest;if(y||(["preloadSegment","skip","serverControl","renditionReports","partInf","partTargetDuration"].forEach(function(me){j.hasOwnProperty(me)&&delete j[me]}),j.segments&&j.segments.forEach(function(me){["parts","preloadHints"].forEach(function(xe){me.hasOwnProperty(xe)&&delete me[xe]})})),!j.targetDuration){var B=10;j.segments&&j.segments.length&&(B=j.segments.reduce(function(me,xe){return Math.max(me,xe.duration)},0)),s&&s("manifest has no targetDuration defaulting to "+B),j.targetDuration=B}var ce=Qc(j);if(ce.length&&!j.partTargetDuration){var De=ce.reduce(function(me,xe){return Math.max(me,xe.duration)},0);s&&(s("manifest has no partTargetDuration defaulting to "+De),e0.error("LL-HLS manifest has parts but lacks required #EXT-X-PART-INF:PART-TARGET value. See https://datatracker.ietf.org/doc/html/draft-pantos-hls-rfc8216bis-09#section-4.4.3.7. Playback is not guaranteed.")),j.partTargetDuration=De}return j}({onwarn:function(y){var D=y.message;return r.logger_("m3u8-parser warn for "+u+": "+D)},oninfo:function(y){var D=y.message;return r.logger_("m3u8-parser info for "+u+": "+D)},manifestString:e.manifestString,customTagParsers:this.customTagParsers,customTagMappers:this.customTagMappers,experimentalLLHLS:this.experimentalLLHLS})},s.haveMetadata=function(e){var r=e.playlistString,u=e.playlistObject,p=e.url,_=e.id;this.request=null,this.state="HAVE_METADATA";var y=u||this.parseManifest_({url:p,manifestString:r});y.lastRequest=Date.now(),H5({playlist:y,uri:p,id:_});var D=i0(this.master,y);this.targetDuration=y.partTargetDuration||y.targetDuration,this.pendingMedia_=null,D?(this.master=D,this.media_=this.master.playlists[_]):this.trigger("playlistunchanged"),this.updateMediaUpdateTimeout_(ku(this.media(),!!D)),this.trigger("loadedplaylist")},s.dispose=function(){this.trigger("dispose"),this.stopRequest(),C().clearTimeout(this.mediaUpdateTimeout),C().clearTimeout(this.finalRenditionTimeout),this.off()},s.stopRequest=function(){if(this.request){var e=this.request;this.request=null,e.onreadystatechange=null,e.abort()}},s.media=function(e,r){var u=this;if(!e)return this.media_;if("HAVE_NOTHING"===this.state)throw new Error("Cannot switch media playlist from "+this.state);if("string"==typeof e){if(!this.master.playlists[e])throw new Error("Unknown playlist URI: "+e);e=this.master.playlists[e]}if(C().clearTimeout(this.finalRenditionTimeout),r){var p=(e.partTargetDuration||e.targetDuration)/2*1e3||5e3;this.finalRenditionTimeout=C().setTimeout(this.media.bind(this,e,!1),p)}else{var _=this.state,y=!this.media_||e.id!==this.media_.id,D=this.master.playlists[e.id];if(D&&D.endList||e.endList&&e.segments.length)return this.request&&(this.request.onreadystatechange=null,this.request.abort(),this.request=null),this.state="HAVE_METADATA",this.media_=e,void(y&&(this.trigger("mediachanging"),"HAVE_MASTER"===_?this.trigger("loadedmetadata"):this.trigger("mediachange")));if(this.updateMediaUpdateTimeout_(ku(e,!0)),y){if(this.state="SWITCHING_MEDIA",this.request){if(e.resolvedUri===this.request.url)return;this.request.onreadystatechange=null,this.request.abort(),this.request=null}this.media_&&this.trigger("mediachanging"),this.pendingMedia_=e,this.request=this.vhs_.xhr({uri:e.resolvedUri,withCredentials:this.withCredentials},function(j,B){if(u.request){if(e.lastRequest=Date.now(),e.resolvedUri=Du(u.handleManifestRedirects,e.resolvedUri,B),j)return u.playlistRequestError(u.request,e,_);u.haveMetadata({playlistString:B.responseText,url:e.uri,id:e.id}),"HAVE_MASTER"===_?u.trigger("loadedmetadata"):u.trigger("mediachange")}})}}},s.pause=function(){this.mediaUpdateTimeout&&(C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null),this.stopRequest(),"HAVE_NOTHING"===this.state&&(this.started=!1),"SWITCHING_MEDIA"===this.state?this.media_?this.state="HAVE_METADATA":this.state="HAVE_MASTER":"HAVE_CURRENT_METADATA"===this.state&&(this.state="HAVE_METADATA")},s.load=function(e){var r=this;this.mediaUpdateTimeout&&(C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null);var u=this.media();if(e){var p=u?(u.partTargetDuration||u.targetDuration)/2*1e3:5e3;this.mediaUpdateTimeout=C().setTimeout(function(){r.mediaUpdateTimeout=null,r.load()},p)}else this.started?u&&!u.endList?this.trigger("mediaupdatetimeout"):this.trigger("loadedplaylist"):this.start()},s.updateMediaUpdateTimeout_=function(e){var r=this;this.mediaUpdateTimeout&&(C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null),this.media()&&!this.media().endList&&(this.mediaUpdateTimeout=C().setTimeout(function(){r.mediaUpdateTimeout=null,r.trigger("mediaupdatetimeout"),r.updateMediaUpdateTimeout_(e)},e))},s.start=function(){var e=this;if(this.started=!0,"object"==typeof this.src)return this.src.uri||(this.src.uri=C().location.href),this.src.resolvedUri=this.src.uri,void setTimeout(function(){e.setupInitialPlaylist(e.src)},0);this.request=this.vhs_.xhr({uri:this.src,withCredentials:this.withCredentials},function(r,u){if(e.request){if(e.request=null,r)return e.error={status:u.status,message:"HLS playlist request error at URL: "+e.src+".",responseText:u.responseText,code:2},"HAVE_NOTHING"===e.state&&(e.started=!1),e.trigger("error");e.src=Du(e.handleManifestRedirects,e.src,u);var p=e.parseManifest_({manifestString:u.responseText,url:e.src});e.setupInitialPlaylist(p)}})},s.srcUri=function(){return"string"==typeof this.src?this.src:this.src.uri},s.setupInitialPlaylist=function(e){if(this.state="HAVE_MASTER",e.playlists)return this.master=e,B8(this.master,this.srcUri()),e.playlists.forEach(function(u){u.segments=F3(u),u.segments.forEach(function(p){K5(p,u.resolvedUri)})}),this.trigger("loadedplaylist"),void(this.request||this.media(this.master.playlists[0]));var r=this.srcUri()||C().location.href;this.master=function(o,s){var a=k3(0,s),e={mediaGroups:{AUDIO:{},VIDEO:{},"CLOSED-CAPTIONS":{},SUBTITLES:{}},uri:C().location.href,resolvedUri:C().location.href,playlists:[{uri:s,id:a,resolvedUri:s,attributes:{}}]};return e.playlists[a]=e.playlists[0],e.playlists[s]=e.playlists[0],e}(0,r),this.haveMetadata({playlistObject:e,url:r,id:this.master.playlists[0].id}),this.trigger("loadedmetadata")},o}(n0),P2=pt.xhr,Y5=pt.mergeOptions,Nu=function(o,s,a,e){var r="arraybuffer"===o.responseType?o.response:o.responseText;!s&&r&&(o.responseTime=Date.now(),o.roundTripTime=o.responseTime-o.requestTime,o.bytesReceived=r.byteLength||r.length,o.bandwidth||(o.bandwidth=Math.floor(o.bytesReceived/o.roundTripTime*8*1e3))),a.headers&&(o.responseHeaders=a.headers),s&&"ETIMEDOUT"===s.code&&(o.timedout=!0),!s&&!o.aborted&&200!==a.statusCode&&206!==a.statusCode&&0!==a.statusCode&&(s=new Error("XHR Failed with a response of: "+(o&&(r||o.responseText)))),e(s,o)},J5=function(){var o=function s(a,e){a=Y5({timeout:45e3},a);var r=s.beforeRequest||pt.Vhs.xhr.beforeRequest;if(r&&"function"==typeof r){var u=r(a);u&&(a=u)}var _=(!0===pt.Vhs.xhr.original?P2:pt.Vhs.xhr)(a,function(D,j){return Nu(_,D,j,e)}),y=_.abort;return _.abort=function(){return _.aborted=!0,y.apply(_,arguments)},_.uri=a.uri,_.requestTime=Date.now(),_};return o.original=!0,o},q3=function(o){var s={};return o.byterange&&(s.Range=function(o){return"bytes="+o.offset+"-"+("bigint"==typeof o.offset||"bigint"==typeof o.length?C().BigInt(o.offset)+C().BigInt(o.length)-C().BigInt(1):o.offset+o.length-1)}(o.byterange)),s},O2=function(o,s){return o.start(s)+"-"+o.end(s)},z8=function(o,s){var a=o.toString(16);return"00".substring(0,2-a.length)+a+(s%2?" ":"")},j8=function(o){return o>=32&&o<126?String.fromCharCode(o):"."},$5=function(o){var s={};return Object.keys(o).forEach(function(a){var e=o[a];ArrayBuffer.isView(e)?s[a]={bytes:e.buffer,byteOffset:e.byteOffset,byteLength:e.byteLength}:s[a]=e}),s},B3=function(o){var s=o.byterange||{length:1/0,offset:0};return[s.length,s.offset,o.resolvedUri].join(",")},R3=function(o){return o.resolvedUri},X5=function(o){for(var s=Array.prototype.slice.call(o),a=16,e="",p=0;pa){if(o>a+.25*u.duration)return null;e=u}return{segment:e,estimatedStart:e.videoTimingInfo?e.videoTimingInfo.transmuxedPresentationStart:a-e.duration,type:e.videoTimingInfo?"accurate":"estimate"}}(e,s);if(!u)return r({message:"valid programTime was not found"});if("estimate"===u.type)return r({message:"Accurate programTime could not be determined. Please seek to e.seekTime and try again",seekTime:u.estimatedStart});var p={mediaSeconds:e},_=function(o,s){if(!s.dateTimeObject)return null;var a=s.videoTimingInfo.transmuxerPrependedSeconds,u=o-(s.videoTimingInfo.transmuxedPresentationStart+a);return new Date(s.dateTimeObject.getTime()+1e3*u)}(e,u.segment);return _&&(p.programDateTime=_.toISOString()),r(null,p)},nd=function f(o){var s=o.programTime,a=o.playlist,e=o.retryCount,r=void 0===e?2:e,u=o.seekTo,p=o.pauseAfterSeek,_=void 0===p||p,y=o.tech,D=o.callback;if(!D)throw new Error("seekToProgramTime: callback must be provided");if(typeof s>"u"||!a||!u)return D({message:"seekToProgramTime: programTime, seekTo and playlist must be provided"});if(!a.endList&&!y.hasStarted_)return D({message:"player must be playing a live stream to start buffering"});if(!function(o){if(!o.segments||0===o.segments.length)return!1;for(var s=0;snew Date(_.getTime()+1e3*y)?null:(a>_&&(e=p),{segment:e,estimatedStart:e.videoTimingInfo?e.videoTimingInfo.transmuxedPresentationStart:Zo.duration(s,s.mediaSequence+s.segments.indexOf(e)),type:e.videoTimingInfo?"accurate":"estimate"})}(s,a);if(!j)return D({message:s+" was not found in the stream"});var B=j.segment,ce=function(o,s){var a,e;try{a=new Date(o),e=new Date(s)}catch{}var r=a.getTime();return(e.getTime()-r)/1e3}(B.dateTimeObject,s);if("estimate"===j.type)return 0===r?D({message:s+" is not buffered yet. Try again"}):(u(j.estimatedStart+ce),void y.one("seeked",function(){f({programTime:s,playlist:a,retryCount:r-1,seekTo:u,pauseAfterSeek:_,tech:y,callback:D})}));var De=B.start+ce;y.one("seeked",function(){return D(null,y.currentTime())}),_&&y.pause(),u(De)},z3=function(o,s){if(4===o.readyState)return s()},W8=function(o,s,a){var r,e=[],u=!1,p=function(B,ce,De,me){return ce.abort(),u=!0,a(B,ce,De,me)},_=function(B,ce){if(!u){if(B)return p(B,ce,"",e);var De=ce.responseText.substring(e&&e.byteLength||0,ce.responseText.length);if(e=function(){for(var o=arguments.length,s=new Array(o),a=0;a=ht+xe)return D(j,{response:De.subarray(xe,xe+ht),status:B.status,uri:B.uri});p.request=p.vhs_.xhr({uri:y,responseType:"arraybuffer",headers:q3({byterange:e.sidx.byterange})},D)})}else this.mediaRequest_=C().setTimeout(function(){return u(!1)},0)},s.dispose=function(){this.trigger("dispose"),this.stopRequest(),this.loadedPlaylists_={},C().clearTimeout(this.minimumUpdatePeriodTimeout_),C().clearTimeout(this.mediaRequest_),C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null,this.mediaRequest_=null,this.minimumUpdatePeriodTimeout_=null,this.masterPlaylistLoader_.createMupOnMedia_&&(this.off("loadedmetadata",this.masterPlaylistLoader_.createMupOnMedia_),this.masterPlaylistLoader_.createMupOnMedia_=null),this.off()},s.hasPendingRequest=function(){return this.request||this.mediaRequest_},s.stopRequest=function(){if(this.request){var e=this.request;this.request=null,e.onreadystatechange=null,e.abort()}},s.media=function(e){var r=this;if(!e)return this.media_;if("HAVE_NOTHING"===this.state)throw new Error("Cannot switch media playlist from "+this.state);var u=this.state;if("string"==typeof e){if(!this.masterPlaylistLoader_.master.playlists[e])throw new Error("Unknown playlist URI: "+e);e=this.masterPlaylistLoader_.master.playlists[e]}var p=!this.media_||e.id!==this.media_.id;if(p&&this.loadedPlaylists_[e.id]&&this.loadedPlaylists_[e.id].endList)return this.state="HAVE_METADATA",this.media_=e,void(p&&(this.trigger("mediachanging"),this.trigger("mediachange")));!p||(this.media_&&this.trigger("mediachanging"),this.addSidxSegments_(e,u,function(_){r.haveMetadata({startingState:u,playlist:e})}))},s.haveMetadata=function(e){var r=e.startingState,u=e.playlist;this.state="HAVE_METADATA",this.loadedPlaylists_[u.id]=u,this.mediaRequest_=null,this.refreshMedia_(u.id),"HAVE_MASTER"===r?this.trigger("loadedmetadata"):this.trigger("mediachange")},s.pause=function(){this.masterPlaylistLoader_.createMupOnMedia_&&(this.off("loadedmetadata",this.masterPlaylistLoader_.createMupOnMedia_),this.masterPlaylistLoader_.createMupOnMedia_=null),this.stopRequest(),C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null,this.isMaster_&&(C().clearTimeout(this.masterPlaylistLoader_.minimumUpdatePeriodTimeout_),this.masterPlaylistLoader_.minimumUpdatePeriodTimeout_=null),"HAVE_NOTHING"===this.state&&(this.started=!1)},s.load=function(e){var r=this;C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null;var u=this.media();if(e){var p=u?u.targetDuration/2*1e3:5e3;this.mediaUpdateTimeout=C().setTimeout(function(){return r.load()},p)}else this.started?u&&!u.endList?(this.isMaster_&&!this.minimumUpdatePeriodTimeout_&&(this.trigger("minimumUpdatePeriod"),this.updateMinimumUpdatePeriodTimeout_()),this.trigger("mediaupdatetimeout")):this.trigger("loadedplaylist"):this.start()},s.start=function(){var e=this;this.started=!0,this.isMaster_?this.requestMaster_(function(r,u){e.haveMaster_(),!e.hasPendingRequest()&&!e.media_&&e.media(e.masterPlaylistLoader_.master.playlists[0])}):this.mediaRequest_=C().setTimeout(function(){return e.haveMaster_()},0)},s.requestMaster_=function(e){var r=this;this.request=this.vhs_.xhr({uri:this.masterPlaylistLoader_.srcUrl,withCredentials:this.withCredentials},function(u,p){if(!r.requestErrored_(u,p)){var _=p.responseText!==r.masterPlaylistLoader_.masterXml_;return r.masterPlaylistLoader_.masterXml_=p.responseText,p.responseHeaders&&p.responseHeaders.date?r.masterLoaded_=Date.parse(p.responseHeaders.date):r.masterLoaded_=Date.now(),r.masterPlaylistLoader_.srcUrl=Du(r.handleManifestRedirects,r.masterPlaylistLoader_.srcUrl,p),_?(r.handleMaster_(),void r.syncClientServerClock_(function(){return e(p,_)})):e(p,_)}"HAVE_NOTHING"===r.state&&(r.started=!1)})},s.syncClientServerClock_=function(e){var r=this,u=fr(this.masterPlaylistLoader_.masterXml_);return null===u?(this.masterPlaylistLoader_.clientOffset_=this.masterLoaded_-Date.now(),e()):"DIRECT"===u.method?(this.masterPlaylistLoader_.clientOffset_=u.value-Date.now(),e()):void(this.request=this.vhs_.xhr({uri:Qs(this.masterPlaylistLoader_.srcUrl,u.value),method:u.method,withCredentials:this.withCredentials},function(p,_){if(r.request){if(p)return r.masterPlaylistLoader_.clientOffset_=r.masterLoaded_-Date.now(),e();var y;y="HEAD"===u.method?_.responseHeaders&&_.responseHeaders.date?Date.parse(_.responseHeaders.date):r.masterLoaded_:Date.parse(_.responseText),r.masterPlaylistLoader_.clientOffset_=y-Date.now(),e()}}))},s.haveMaster_=function(){this.state="HAVE_MASTER",this.isMaster_?this.trigger("loadedplaylist"):this.media_||this.media(this.childPlaylist_)},s.handleMaster_=function(){this.mediaRequest_=null;var e=this.masterPlaylistLoader_.master,r=function(o){var s=o.masterXml,a=o.srcUrl,e=o.clientOffset,r=o.sidxMapping,u=o.previousManifest,p=or(s,{manifestUri:a,clientOffset:e,sidxMapping:r,previousManifest:u});return B8(p,a),p}({masterXml:this.masterPlaylistLoader_.masterXml_,srcUrl:this.masterPlaylistLoader_.srcUrl,clientOffset:this.masterPlaylistLoader_.clientOffset_,sidxMapping:this.masterPlaylistLoader_.sidxMapping_,previousManifest:e});e&&(r=function(o,s,a){for(var e=!0,r=o0(o,{duration:s.duration,minimumUpdatePeriod:s.minimumUpdatePeriod,timelineStarts:s.timelineStarts}),u=0;u-1)},this.trigger=function(L){var S,P,W,J;if(S=b[L])if(2===arguments.length)for(W=S.length,P=0;P"u")){for(se in Nn)Nn.hasOwnProperty(se)&&(Nn[se]=[se.charCodeAt(0),se.charCodeAt(1),se.charCodeAt(2),se.charCodeAt(3)]);sr=new Uint8Array(["i".charCodeAt(0),"s".charCodeAt(0),"o".charCodeAt(0),"m".charCodeAt(0)]),$i=new Uint8Array(["a".charCodeAt(0),"v".charCodeAt(0),"c".charCodeAt(0),"1".charCodeAt(0)]),Ua=new Uint8Array([0,0,0,1]),Z2=new Uint8Array([0,0,0,0,0,0,0,0,118,105,100,101,0,0,0,0,0,0,0,0,0,0,0,0,86,105,100,101,111,72,97,110,100,108,101,114,0]),cs=new Uint8Array([0,0,0,0,0,0,0,0,115,111,117,110,0,0,0,0,0,0,0,0,0,0,0,0,83,111,117,110,100,72,97,110,100,108,101,114,0]),ds={video:Z2,audio:cs},il=new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,12,117,114,108,32,0,0,0,1]),E1=new Uint8Array([0,0,0,0,0,0,0,0]),da=new Uint8Array([0,0,0,0,0,0,0,0]),I1=da,L1=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0]),H2=da,Js=new Uint8Array([0,0,0,1,0,0,0,0,0,0,0,0])}})(),u=function(b){var P,W,L=[],S=0;for(P=1;P>>1,b.samplingfrequencyindex<<7|b.channelcount<<3,6,1,2]))},y=function(){return u(Nn.ftyp,sr,Ua,sr,$i)},Ut=function(b){return u(Nn.hdlr,ds[b])},D=function(b){return u(Nn.mdat,b)},jt=function(b){var L=new Uint8Array([0,0,0,0,0,0,0,2,0,0,0,3,0,1,95,144,b.duration>>>24&255,b.duration>>>16&255,b.duration>>>8&255,255&b.duration,85,196,0,0]);return b.samplerate&&(L[12]=b.samplerate>>>24&255,L[13]=b.samplerate>>>16&255,L[14]=b.samplerate>>>8&255,L[15]=255&b.samplerate),u(Nn.mdhd,L)},Ft=function(b){return u(Nn.mdia,jt(b),Ut(b.type),B(b))},j=function(b){return u(Nn.mfhd,new Uint8Array([0,0,0,0,(4278190080&b)>>24,(16711680&b)>>16,(65280&b)>>8,255&b]))},B=function(b){return u(Nn.minf,"video"===b.type?u(Nn.vmhd,Js):u(Nn.smhd,E1),p(),Mn(b))},ce=function(b,L){for(var S=[],P=L.length;P--;)S[P]=En(L[P]);return u.apply(null,[Nn.moof,j(b)].concat(S))},De=function(b){for(var L=b.length,S=[];L--;)S[L]=ht(b[L]);return u.apply(null,[Nn.moov,xe(4294967295)].concat(S).concat(me(b)))},me=function(b){for(var L=b.length,S=[];L--;)S[L]=wn(b[L]);return u.apply(null,[Nn.mvex].concat(S))},xe=function(b){var L=new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,2,0,1,95,144,(4278190080&b)>>24,(16711680&b)>>16,(65280&b)>>8,255&b,0,1,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,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,255,255,255]);return u(Nn.mvhd,L)},gn=function(b){var P,W,L=b.samples||[],S=new Uint8Array(4+L.length);for(W=0;W>>8),J.push(255&P[Ze].byteLength),J=J.concat(Array.prototype.slice.call(P[Ze]));for(Ze=0;Ze>>8),Oe.push(255&W[Ze].byteLength),Oe=Oe.concat(Array.prototype.slice.call(W[Ze]));if(rt=[Nn.avc1,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(65280&S.width)>>8,255&S.width,(65280&S.height)>>8,255&S.height,0,72,0,0,0,72,0,0,0,0,0,0,0,1,19,118,105,100,101,111,106,115,45,99,111,110,116,114,105,98,45,104,108,115,0,0,0,0,0,0,0,0,0,0,0,0,0,24,17,17]),u(Nn.avcC,new Uint8Array([1,S.profileIdc,S.profileCompatibility,S.levelIdc,255].concat([P.length],J,[W.length],Oe))),u(Nn.btrt,new Uint8Array([0,28,156,128,0,45,198,192,0,45,198,192]))],S.sarRatio){var Ke=S.sarRatio[0],ft=S.sarRatio[1];rt.push(u(Nn.pasp,new Uint8Array([(4278190080&Ke)>>24,(16711680&Ke)>>16,(65280&Ke)>>8,255&Ke,(4278190080&ft)>>24,(16711680&ft)>>16,(65280&ft)>>8,255&ft])))}return u.apply(null,rt)},b=function(S){return u(Nn.mp4a,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,(65280&S.channelcount)>>8,255&S.channelcount,(65280&S.samplesize)>>8,255&S.samplesize,0,0,0,0,(65280&S.samplerate)>>8,255&S.samplerate,0,0]),_(S))},_t=function(b){var L=new Uint8Array([0,0,0,7,0,0,0,0,0,0,0,0,(4278190080&b.id)>>24,(16711680&b.id)>>16,(65280&b.id)>>8,255&b.id,0,0,0,0,(4278190080&b.duration)>>24,(16711680&b.duration)>>16,(65280&b.duration)>>8,255&b.duration,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,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,64,0,0,0,(65280&b.width)>>8,255&b.width,0,0,(65280&b.height)>>8,255&b.height,0,0]);return u(Nn.tkhd,L)},En=function(b){var L,S,P,W,Oe,Ze;return L=u(Nn.tfhd,new Uint8Array([0,0,0,58,(4278190080&b.id)>>24,(16711680&b.id)>>16,(65280&b.id)>>8,255&b.id,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0])),Oe=Math.floor(b.baseMediaDecodeTime/r),Ze=Math.floor(b.baseMediaDecodeTime%r),S=u(Nn.tfdt,new Uint8Array([1,0,0,0,Oe>>>24&255,Oe>>>16&255,Oe>>>8&255,255&Oe,Ze>>>24&255,Ze>>>16&255,Ze>>>8&255,255&Ze])),92,"audio"===b.type?(P=Ti(b,92),u(Nn.traf,L,S,P)):(W=gn(b),P=Ti(b,W.length+92),u(Nn.traf,L,S,P,W))},ht=function(b){return b.duration=b.duration||4294967295,u(Nn.trak,_t(b),Ft(b))},wn=function(b){var L=new Uint8Array([0,0,0,0,(4278190080&b.id)>>24,(16711680&b.id)>>16,(65280&b.id)>>8,255&b.id,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1]);return"video"!==b.type&&(L[L.length-1]=0),u(Nn.trex,L)},function(){var se,b,L;L=function(P,W){var J=0,Oe=0,Ze=0,rt=0;return P.length&&(void 0!==P[0].duration&&(J=1),void 0!==P[0].size&&(Oe=2),void 0!==P[0].flags&&(Ze=4),void 0!==P[0].compositionTimeOffset&&(rt=8)),[0,0,J|Oe|Ze|rt,1,(4278190080&P.length)>>>24,(16711680&P.length)>>>16,(65280&P.length)>>>8,255&P.length,(4278190080&W)>>>24,(16711680&W)>>>16,(65280&W)>>>8,255&W]},b=function(P,W){var J,Oe,Ze,rt,Ke,ft;for(W+=20+16*(rt=P.samples||[]).length,Ze=L(rt,W),(Oe=new Uint8Array(Ze.length+16*rt.length)).set(Ze),J=Ze.length,ft=0;ft>>24,Oe[J++]=(16711680&Ke.duration)>>>16,Oe[J++]=(65280&Ke.duration)>>>8,Oe[J++]=255&Ke.duration,Oe[J++]=(4278190080&Ke.size)>>>24,Oe[J++]=(16711680&Ke.size)>>>16,Oe[J++]=(65280&Ke.size)>>>8,Oe[J++]=255&Ke.size,Oe[J++]=Ke.flags.isLeading<<2|Ke.flags.dependsOn,Oe[J++]=Ke.flags.isDependedOn<<6|Ke.flags.hasRedundancy<<4|Ke.flags.paddingValue<<1|Ke.flags.isNonSyncSample,Oe[J++]=61440&Ke.flags.degradationPriority,Oe[J++]=15&Ke.flags.degradationPriority,Oe[J++]=(4278190080&Ke.compositionTimeOffset)>>>24,Oe[J++]=(16711680&Ke.compositionTimeOffset)>>>16,Oe[J++]=(65280&Ke.compositionTimeOffset)>>>8,Oe[J++]=255&Ke.compositionTimeOffset;return u(Nn.trun,Oe)},se=function(P,W){var J,Oe,Ze,rt,Ke,ft;for(W+=20+8*(rt=P.samples||[]).length,Ze=L(rt,W),(J=new Uint8Array(Ze.length+8*rt.length)).set(Ze),Oe=Ze.length,ft=0;ft>>24,J[Oe++]=(16711680&Ke.duration)>>>16,J[Oe++]=(65280&Ke.duration)>>>8,J[Oe++]=255&Ke.duration,J[Oe++]=(4278190080&Ke.size)>>>24,J[Oe++]=(16711680&Ke.size)>>>16,J[Oe++]=(65280&Ke.size)>>>8,J[Oe++]=255&Ke.size;return u(Nn.trun,J)},Ti=function(P,W){return"audio"===P.type?se(P,W):b(P,W)}}();var B0,j0,U0,ic,Z0,kd,ju,Pl,Ru_mdat=D,Ru_moof=ce,Ru_initSegment=function(b){var P,L=y(),S=De(b);return(P=new Uint8Array(L.byteLength+S.byteLength)).set(L),P.set(S,L.byteLength),P},G2=function(b,L){var S={size:0,flags:{isLeading:0,dependsOn:1,isDependedOn:0,hasRedundancy:0,degradationPriority:0,isNonSyncSample:1}};return S.dataOffset=L,S.compositionTimeOffset=b.pts-b.dts,S.duration=b.duration,S.size=4*b.length,S.size+=b.byteLength,b.keyFrame&&(S.flags.dependsOn=2,S.flags.isNonSyncSample=0),S},zu_groupNalsIntoFrames=function(b){var L,S,P=[],W=[];for(W.byteLength=0,W.nalCount=0,W.duration=0,P.byteLength=0,L=0;L1&&(L=b.shift(),b.byteLength-=L.byteLength,b.nalCount-=L.nalCount,b[0][0].dts=L.dts,b[0][0].pts=L.pts,b[0][0].duration+=L.duration),b},zu_generateSampleTable=function(b,L){var S,P,W,J,Oe,Ze=L||0,rt=[];for(S=0;Sir_ONE_SECOND_IN_TS/2))){for((Ke=R0()[b.samplerate])||(Ke=L[0].data),ft=0;ft=S?b:(L.minSegmentDts=1/0,b.filter(function(P){return P.dts>=S&&(L.minSegmentDts=Math.min(L.minSegmentDts,P.dts),L.minSegmentPts=L.minSegmentDts,!0)}))},fs_generateSampleTable=function(b){var L,S,P=[];for(L=0;L=this.virtualRowCount&&"function"==typeof this.beforeRowOverflow&&this.beforeRowOverflow(se),this.rows.length>0&&(this.rows.push(""),this.rowIdx++);this.rows.length>this.virtualRowCount;)this.rows.shift(),this.rowIdx--},S1.prototype.isEmpty=function(){return 0===this.rows.length||1===this.rows.length&&""===this.rows[0]},S1.prototype.addText=function(se){this.rows[this.rowIdx]+=se},S1.prototype.backspace=function(){if(!this.isEmpty()){var se=this.rows[this.rowIdx];this.rows[this.rowIdx]=se.substr(0,se.length-1)}};var Hu=function(b,L,S){this.serviceNum=b,this.text="",this.currentWindow=new S1(-1),this.windows=[],this.stream=S,"string"==typeof L&&this.createTextDecoder(L)};Hu.prototype.init=function(se,b){this.startPts=se;for(var L=0;L<8;L++)this.windows[L]=new S1(L),"function"==typeof b&&(this.windows[L].beforeRowOverflow=b)},Hu.prototype.setCurrentWindow=function(se){this.currentWindow=this.windows[se]},Hu.prototype.createTextDecoder=function(se){if(typeof TextDecoder>"u")this.stream.trigger("log",{level:"warn",message:"The `encoding` option is unsupported without TextDecoder support"});else try{this.textDecoder_=new TextDecoder(se)}catch(b){this.stream.trigger("log",{level:"warn",message:"TextDecoder could not be created with "+se+" encoding. "+b})}};var Er=function se(b){b=b||{},se.prototype.init.call(this);var W,L=this,S=b.captionServices||{},P={};Object.keys(S).forEach(function(J){W=S[J],/^SERVICE/.test(J)&&(P[J]=W.encoding)}),this.serviceEncodings=P,this.current708Packet=null,this.services={},this.push=function(J){3===J.type?(L.new708Packet(),L.add708Bytes(J)):(null===L.current708Packet&&L.new708Packet(),L.add708Bytes(J))}};Er.prototype=new o,Er.prototype.new708Packet=function(){null!==this.current708Packet&&this.push708Packet(),this.current708Packet={data:[],ptsVals:[]}},Er.prototype.add708Bytes=function(se){var b=se.ccData,L=b>>>8,S=255&b;this.current708Packet.ptsVals.push(se.pts),this.current708Packet.data.push(L),this.current708Packet.data.push(S)},Er.prototype.push708Packet=function(){var se=this.current708Packet,b=se.data,L=null,S=null,P=0,W=b[P++];for(se.seq=W>>6,se.sizeCode=63&W;P>5)&&S>0&&(L=W=b[P++]),this.pushServiceBlock(L,P,S),S>0&&(P+=S-1)},Er.prototype.pushServiceBlock=function(se,b,L){var S,P=b,W=this.current708Packet.data,J=this.services[se];for(J||(J=this.initService(se,P));P>5,W.rowLock=(16&S)>>4,W.columnLock=(8&S)>>3,W.priority=7&S,S=L[++se],W.relativePositioning=(128&S)>>7,W.anchorVertical=127&S,S=L[++se],W.anchorHorizontal=S,S=L[++se],W.anchorPoint=(240&S)>>4,W.rowCount=15&S,S=L[++se],W.columnCount=63&S,S=L[++se],W.windowStyle=(56&S)>>3,W.penStyle=7&S,W.virtualRowCount=W.rowCount+1,se},Er.prototype.setWindowAttributes=function(se,b){var L=this.current708Packet.data,S=L[se],P=b.currentWindow.winAttr;return S=L[++se],P.fillOpacity=(192&S)>>6,P.fillRed=(48&S)>>4,P.fillGreen=(12&S)>>2,P.fillBlue=3&S,S=L[++se],P.borderType=(192&S)>>6,P.borderRed=(48&S)>>4,P.borderGreen=(12&S)>>2,P.borderBlue=3&S,S=L[++se],P.borderType+=(128&S)>>5,P.wordWrap=(64&S)>>6,P.printDirection=(48&S)>>4,P.scrollDirection=(12&S)>>2,P.justify=3&S,S=L[++se],P.effectSpeed=(240&S)>>4,P.effectDirection=(12&S)>>2,P.displayEffect=3&S,se},Er.prototype.flushDisplayed=function(se,b){for(var L=[],S=0;S<8;S++)b.windows[S].visible&&!b.windows[S].isEmpty()&&L.push(b.windows[S].getText());b.endPts=se,b.text=L.join("\n\n"),this.pushCaption(b),b.startPts=se},Er.prototype.pushCaption=function(se){""!==se.text&&(this.trigger("data",{startPts:se.startPts,endPts:se.endPts,text:se.text,stream:"cc708_"+se.serviceNum}),se.text="",se.startPts=se.endPts)},Er.prototype.displayWindows=function(se,b){var S=this.current708Packet.data[++se],P=this.getPts(se);this.flushDisplayed(P,b);for(var W=0;W<8;W++)S&1<>4,P.offset=(12&S)>>2,P.penSize=3&S,S=L[++se],P.italics=(128&S)>>7,P.underline=(64&S)>>6,P.edgeType=(56&S)>>3,P.fontStyle=7&S,se},Er.prototype.setPenColor=function(se,b){var L=this.current708Packet.data,S=L[se],P=b.currentWindow.penColor;return S=L[++se],P.fgOpacity=(192&S)>>6,P.fgRed=(48&S)>>4,P.fgGreen=(12&S)>>2,P.fgBlue=3&S,S=L[++se],P.bgOpacity=(192&S)>>6,P.bgRed=(48&S)>>4,P.bgGreen=(12&S)>>2,P.bgBlue=3&S,S=L[++se],P.edgeRed=(48&S)>>4,P.edgeGreen=(12&S)>>2,P.edgeBlue=3&S,se},Er.prototype.setPenLocation=function(se,b){var L=this.current708Packet.data,S=L[se],P=b.currentWindow.penLoc;return b.currentWindow.pendingNewLine=!0,S=L[++se],P.row=15&S,S=L[++se],P.column=63&S,se},Er.prototype.reset=function(se,b){var L=this.getPts(se);return this.flushDisplayed(L,b),this.initService(b.serviceNum,se)};var Nd={42:225,92:233,94:237,95:243,96:250,123:231,124:247,125:209,126:241,127:9608,304:174,305:176,306:189,307:191,308:8482,309:162,310:163,311:9834,312:224,313:160,314:232,315:226,316:234,317:238,318:244,319:251,544:193,545:201,546:211,547:218,548:220,549:252,550:8216,551:161,552:42,553:39,554:8212,555:169,556:8480,557:8226,558:8220,559:8221,560:192,561:194,562:199,563:200,564:202,565:203,566:235,567:206,568:207,569:239,570:212,571:217,572:249,573:219,574:171,575:187,800:195,801:227,802:205,803:204,804:236,805:210,806:242,807:213,808:245,809:123,810:125,811:92,812:94,813:95,814:124,815:126,816:196,817:228,818:214,819:246,820:223,821:165,822:164,823:9474,824:197,825:229,826:216,827:248,828:9484,829:9488,830:9492,831:9496},Gu=function(b){return null===b?"":(b=Nd[b]||b,String.fromCharCode(b))},Fd=[4352,4384,4608,4640,5376,5408,5632,5664,5888,5920,4096,4864,4896,5120,5152],Ol=function(){for(var b=[],L=15;L--;)b.push("");return b},Jr=function se(b,L){se.prototype.init.call(this),this.field_=b||0,this.dataChannel_=L||0,this.name_="CC"+(1+(this.field_<<1|this.dataChannel_)),this.setConstants(),this.reset(),this.push=function(S){var P,W,J,Oe,Ze;if((P=32639&S.ccData)!==this.lastControlCode_){if(4096==(61440&P)?this.lastControlCode_=P:P!==this.PADDING_&&(this.lastControlCode_=null),J=P>>>8,Oe=255&P,P!==this.PADDING_)if(P===this.RESUME_CAPTION_LOADING_)this.mode_="popOn";else if(P===this.END_OF_CAPTION_)this.mode_="popOn",this.clearFormatting(S.pts),this.flushDisplayed(S.pts),W=this.displayed_,this.displayed_=this.nonDisplayed_,this.nonDisplayed_=W,this.startPts_=S.pts;else if(P===this.ROLL_UP_2_ROWS_)this.rollUpRows_=2,this.setRollUp(S.pts);else if(P===this.ROLL_UP_3_ROWS_)this.rollUpRows_=3,this.setRollUp(S.pts);else if(P===this.ROLL_UP_4_ROWS_)this.rollUpRows_=4,this.setRollUp(S.pts);else if(P===this.CARRIAGE_RETURN_)this.clearFormatting(S.pts),this.flushDisplayed(S.pts),this.shiftRowsUp_(),this.startPts_=S.pts;else if(P===this.BACKSPACE_)"popOn"===this.mode_?this.nonDisplayed_[this.row_]=this.nonDisplayed_[this.row_].slice(0,-1):this.displayed_[this.row_]=this.displayed_[this.row_].slice(0,-1);else if(P===this.ERASE_DISPLAYED_MEMORY_)this.flushDisplayed(S.pts),this.displayed_=Ol();else if(P===this.ERASE_NON_DISPLAYED_MEMORY_)this.nonDisplayed_=Ol();else if(P===this.RESUME_DIRECT_CAPTIONING_)"paintOn"!==this.mode_&&(this.flushDisplayed(S.pts),this.displayed_=Ol()),this.mode_="paintOn",this.startPts_=S.pts;else if(this.isSpecialCharacter(J,Oe))Ze=Gu((J=(3&J)<<8)|Oe),this[this.mode_](S.pts,Ze),this.column_++;else if(this.isExtCharacter(J,Oe))"popOn"===this.mode_?this.nonDisplayed_[this.row_]=this.nonDisplayed_[this.row_].slice(0,-1):this.displayed_[this.row_]=this.displayed_[this.row_].slice(0,-1),Ze=Gu((J=(3&J)<<8)|Oe),this[this.mode_](S.pts,Ze),this.column_++;else if(this.isMidRowCode(J,Oe))this.clearFormatting(S.pts),this[this.mode_](S.pts," "),this.column_++,14==(14&Oe)&&this.addFormatting(S.pts,["i"]),1==(1&Oe)&&this.addFormatting(S.pts,["u"]);else if(this.isOffsetControlCode(J,Oe))this.column_+=3&Oe;else if(this.isPAC(J,Oe)){var rt=Fd.indexOf(7968&P);"rollUp"===this.mode_&&(rt-this.rollUpRows_+1<0&&(rt=this.rollUpRows_-1),this.setRollUp(S.pts,rt)),rt!==this.row_&&(this.clearFormatting(S.pts),this.row_=rt),1&Oe&&-1===this.formatting_.indexOf("u")&&this.addFormatting(S.pts,["u"]),16==(16&P)&&(this.column_=4*((14&P)>>1)),this.isColorPAC(Oe)&&14==(14&Oe)&&this.addFormatting(S.pts,["i"])}else this.isNormalChar(J)&&(0===Oe&&(Oe=null),Ze=Gu(J),Ze+=Gu(Oe),this[this.mode_](S.pts,Ze),this.column_+=Ze.length)}else this.lastControlCode_=null}};Jr.prototype=new o,Jr.prototype.flushDisplayed=function(se){var b=this.displayed_.map(function(L,S){try{return L.trim()}catch{return this.trigger("log",{level:"warn",message:"Skipping a malformed 608 caption at index "+S+"."}),""}},this).join("\n").replace(/^\n+|\n+$/g,"");b.length&&this.trigger("data",{startPts:this.startPts_,endPts:se,text:b,stream:this.name_})},Jr.prototype.reset=function(){this.mode_="popOn",this.topRow_=0,this.startPts_=0,this.displayed_=Ol(),this.nonDisplayed_=Ol(),this.lastControlCode_=null,this.column_=0,this.row_=14,this.rollUpRows_=2,this.formatting_=[]},Jr.prototype.setConstants=function(){0===this.dataChannel_?(this.BASE_=16,this.EXT_=17,this.CONTROL_=(20|this.field_)<<8,this.OFFSET_=23):1===this.dataChannel_&&(this.BASE_=24,this.EXT_=25,this.CONTROL_=(28|this.field_)<<8,this.OFFSET_=31),this.PADDING_=0,this.RESUME_CAPTION_LOADING_=32|this.CONTROL_,this.END_OF_CAPTION_=47|this.CONTROL_,this.ROLL_UP_2_ROWS_=37|this.CONTROL_,this.ROLL_UP_3_ROWS_=38|this.CONTROL_,this.ROLL_UP_4_ROWS_=39|this.CONTROL_,this.CARRIAGE_RETURN_=45|this.CONTROL_,this.RESUME_DIRECT_CAPTIONING_=41|this.CONTROL_,this.BACKSPACE_=33|this.CONTROL_,this.ERASE_DISPLAYED_MEMORY_=44|this.CONTROL_,this.ERASE_NON_DISPLAYED_MEMORY_=46|this.CONTROL_},Jr.prototype.isSpecialCharacter=function(se,b){return se===this.EXT_&&b>=48&&b<=63},Jr.prototype.isExtCharacter=function(se,b){return(se===this.EXT_+1||se===this.EXT_+2)&&b>=32&&b<=63},Jr.prototype.isMidRowCode=function(se,b){return se===this.EXT_&&b>=32&&b<=47},Jr.prototype.isOffsetControlCode=function(se,b){return se===this.OFFSET_&&b>=33&&b<=35},Jr.prototype.isPAC=function(se,b){return se>=this.BASE_&&se=64&&b<=127},Jr.prototype.isColorPAC=function(se){return se>=64&&se<=79||se>=96&&se<=127},Jr.prototype.isNormalChar=function(se){return se>=32&&se<=127},Jr.prototype.setRollUp=function(se,b){if("rollUp"!==this.mode_&&(this.row_=14,this.mode_="rollUp",this.flushDisplayed(se),this.nonDisplayed_=Ol(),this.displayed_=Ol()),void 0!==b&&b!==this.row_)for(var L=0;L"},"");this[this.mode_](se,L)},Jr.prototype.clearFormatting=function(se){if(this.formatting_.length){var b=this.formatting_.reverse().reduce(function(L,S){return L+""},"");this.formatting_=[],this[this.mode_](se,b)}},Jr.prototype.popOn=function(se,b){var L=this.nonDisplayed_[this.row_];L+=b,this.nonDisplayed_[this.row_]=L},Jr.prototype.rollUp=function(se,b){var L=this.displayed_[this.row_];L+=b,this.displayed_[this.row_]=L},Jr.prototype.shiftRowsUp_=function(){var se;for(se=0;seL&&(S=-1);Math.abs(L-b)>4294967296;)b+=8589934592*S;return b},Bd=function se(b){var L,S;se.prototype.init.call(this),this.type_=b||"shared",this.push=function(P){"shared"!==this.type_&&P.type!==this.type_||(void 0===S&&(S=P.dts),P.dts=Wu(P.dts,S),P.pts=Wu(P.pts,S),L=P.dts,this.trigger("data",P))},this.flush=function(){S=L,this.trigger("done")},this.endTimeline=function(){this.flush(),this.trigger("endedtimeline")},this.discontinuity=function(){S=void 0,L=void 0},this.reset=function(){this.discontinuity(),this.trigger("reset")}};Bd.prototype=new o;var Ju,Qu_TimestampRolloverStream=Bd,Qu_handleRollover=Wu,Ku=function(b,L,S){var P,W="";for(P=L;P>>2;hn*=4,hn+=3&Sn[7],ft.timeStamp=hn,void 0===Ze.pts&&void 0===Ze.dts&&(Ze.pts=ft.timeStamp,Ze.dts=ft.timeStamp),this.trigger("timestamp",ft)}Ze.frames.push(ft),rt+=10,rt+=Ke}while(rt>>4>1&&(Oe+=W[Oe]+1),0===J.pid)J.type="pat",b(W.subarray(Oe),J),this.trigger("data",J);else if(J.pid===this.pmtPid)for(J.type="pmt",b(W.subarray(Oe),J),this.trigger("data",J);this.packetsWaitingForPmt.length;)this.processPes_.apply(this,this.packetsWaitingForPmt.shift());else void 0===this.programMapTable?this.packetsWaitingForPmt.push([W,Oe,J]):this.processPes_(W,Oe,J)},this.processPes_=function(W,J,Oe){Oe.pid===this.programMapTable.video?Oe.streamType=Wo.H264_STREAM_TYPE:Oe.pid===this.programMapTable.audio?Oe.streamType=Wo.ADTS_STREAM_TYPE:Oe.streamType=this.programMapTable["timed-metadata"][Oe.pid],Oe.type="pes",Oe.data=W.subarray(J),this.trigger("data",Oe)}},tu.prototype=new o,tu.STREAM_TYPES={h264:27,adts:15},nu=function(){var J,b=this,L=!1,S={data:[],size:0},P={data:[],size:0},W={data:[],size:0},Ze=function(Ke,ft,Ht){var Ta,bn=new Uint8Array(Ke.size),Sn={type:ft},hn=0,Wn=0,bo=!1;if(Ke.data.length&&!(Ke.size<9)){for(Sn.trackId=Ke.data[0].pid,hn=0;hn>>3,ft.pts*=4,ft.pts+=(6&Ke[13])>>>1,ft.dts=ft.pts,64&Ht&&(ft.dts=(14&Ke[14])<<27|(255&Ke[15])<<20|(254&Ke[16])<<12|(255&Ke[17])<<5|(254&Ke[18])>>>3,ft.dts*=4,ft.dts+=(6&Ke[18])>>>1)),ft.data=Ke.subarray(9+Ke[8]))})(bn,Sn),bo="video"===ft||Sn.packetLength<=Ke.size,(Ht||bo)&&(Ke.size=0,Ke.data.length=0),bo&&b.trigger("data",Sn)}};nu.prototype.init.call(this),this.push=function(rt){({pat:function(){},pes:function(){var ft,Ht;switch(rt.streamType){case Wo.H264_STREAM_TYPE:ft=S,Ht="video";break;case Wo.ADTS_STREAM_TYPE:ft=P,Ht="audio";break;case Wo.METADATA_STREAM_TYPE:ft=W,Ht="timed-metadata";break;default:return}rt.payloadUnitStartIndicator&&Ze(ft,Ht,!0),ft.data.push(rt),ft.size+=rt.data.byteLength},pmt:function(){var ft={type:"metadata",tracks:[]};null!==(J=rt.programMapTable).video&&ft.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+J.video,codec:"avc",type:"video"}),null!==J.audio&&ft.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+J.audio,codec:"adts",type:"audio"}),L=!0,b.trigger("data",ft)}})[rt.type]()},this.reset=function(){S.size=0,S.data.length=0,P.size=0,P.data.length=0,this.trigger("reset")},this.flushStreams_=function(){Ze(S,"video"),Ze(P,"audio"),Ze(W,"timed-metadata")},this.flush=function(){if(!L&&J){var rt={type:"metadata",tracks:[]};null!==J.video&&rt.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+J.video,codec:"avc",type:"video"}),null!==J.audio&&rt.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+J.audio,codec:"adts",type:"audio"}),b.trigger("data",rt)}L=!1,this.flushStreams_(),this.trigger("done")}},nu.prototype=new o;var W0={PAT_PID:0,MP2T_PACKET_LENGTH:188,TransportPacketStream:$u,TransportParseStream:tu,ElementaryStream:nu,TimestampRolloverStream:G0,CaptionStream:ac.CaptionStream,Cea608Stream:ac.Cea608Stream,Cea708Stream:ac.Cea708Stream,MetadataStream:Rd};for(var lc in Wo)Wo.hasOwnProperty(lc)&&(W0[lc]=Wo[lc]);var uc,P1=W0,zd=ir_ONE_SECOND_IN_TS,Q0=[96e3,88200,64e3,48e3,44100,32e3,24e3,22050,16e3,12e3,11025,8e3,7350];uc=function(b){var L,S=0;uc.prototype.init.call(this),this.skipWarn_=function(P,W){this.trigger("log",{level:"warn",message:"adts skiping bytes "+P+" to "+W+" in frame "+S+" outside syncword"})},this.push=function(P){var J,Oe,Ze,rt,Ke,W=0;if(b||(S=0),"audio"===P.type){L&&L.length?(Ze=L,(L=new Uint8Array(Ze.byteLength+P.data.byteLength)).set(Ze),L.set(P.data,Ze.byteLength)):L=P.data;for(var ft;W+7>5,Ke=(rt=1024*(1+(3&L[W+6])))*zd/Q0[(60&L[W+2])>>>2],L.byteLength-W>>6&3),channelcount:(1&L[W+2])<<2|(192&L[W+3])>>>6,samplerate:Q0[(60&L[W+2])>>>2],samplingfrequencyindex:(60&L[W+2])>>>2,samplesize:16,data:L.subarray(W+7+Oe,W+J)}),S++,W+=J}else"number"!=typeof ft&&(ft=W),W++;"number"==typeof ft&&(this.skipWarn_(ft,W),ft=null),L=L.subarray(W)}},this.flush=function(){S=0,this.trigger("done")},this.reset=function(){L=void 0,this.trigger("reset")},this.endTimeline=function(){L=void 0,this.trigger("endedtimeline")}},uc.prototype=new o;var cc,K0=uc;cc=function(b){var L=b.byteLength,S=0,P=0;this.length=function(){return 8*L},this.bitsAvailable=function(){return 8*L+P},this.loadWord=function(){var W=b.byteLength-L,J=new Uint8Array(4),Oe=Math.min(4,L);if(0===Oe)throw new Error("no bytes available");J.set(b.subarray(W,W+Oe)),S=new DataView(J.buffer).getUint32(0),P=8*Oe,L-=Oe},this.skipBits=function(W){var J;P>W?(S<<=W,P-=W):(W-=P,W-=8*(J=Math.floor(W/8)),L-=J,this.loadWord(),S<<=W,P-=W)},this.readBits=function(W){var J=Math.min(P,W),Oe=S>>>32-J;return(P-=J)>0?S<<=J:L>0&&this.loadWord(),(J=W-J)>0?Oe<>>W))return S<<=W,P-=W,W;return this.loadWord(),W+this.skipLeadingZeros()},this.skipUnsignedExpGolomb=function(){this.skipBits(1+this.skipLeadingZeros())},this.skipExpGolomb=function(){this.skipBits(1+this.skipLeadingZeros())},this.readUnsignedExpGolomb=function(){var W=this.skipLeadingZeros();return this.readBits(W+1)-1},this.readExpGolomb=function(){var W=this.readUnsignedExpGolomb();return 1&W?1+W>>>1:-1*(W>>>1)},this.readBoolean=function(){return 1===this.readBits(1)},this.readUnsignedByte=function(){return this.readBits(8)},this.loadWord()};var iu,ru,Y0,dc=cc;ru=function(){var L,S,b=0;ru.prototype.init.call(this),this.push=function(P){var W;S?((W=new Uint8Array(S.byteLength+P.data.byteLength)).set(S),W.set(P.data,S.byteLength),S=W):S=P.data;for(var J=S.byteLength;b3&&this.trigger("data",S.subarray(b+3)),S=null,b=0,this.trigger("done")},this.endTimeline=function(){this.flush(),this.trigger("endedtimeline")}},ru.prototype=new o,Y0={100:!0,110:!0,122:!0,244:!0,44:!0,83:!0,86:!0,118:!0,128:!0,138:!0,139:!0,134:!0},iu=function(){var L,S,P,W,J,Oe,Ze,b=new ru;iu.prototype.init.call(this),L=this,this.push=function(rt){"video"===rt.type&&(S=rt.trackId,P=rt.pts,W=rt.dts,b.push(rt))},b.on("data",function(rt){var Ke={trackId:S,pts:P,dts:W,data:rt,nalUnitTypeCode:31&rt[0]};switch(Ke.nalUnitTypeCode){case 5:Ke.nalUnitType="slice_layer_without_partitioning_rbsp_idr";break;case 6:Ke.nalUnitType="sei_rbsp",Ke.escapedRBSP=J(rt.subarray(1));break;case 7:Ke.nalUnitType="seq_parameter_set_rbsp",Ke.escapedRBSP=J(rt.subarray(1)),Ke.config=Oe(Ke.escapedRBSP);break;case 8:Ke.nalUnitType="pic_parameter_set_rbsp";break;case 9:Ke.nalUnitType="access_unit_delimiter_rbsp"}L.trigger("data",Ke)}),b.on("done",function(){L.trigger("done")}),b.on("partialdone",function(){L.trigger("partialdone")}),b.on("reset",function(){L.trigger("reset")}),b.on("endedtimeline",function(){L.trigger("endedtimeline")}),this.flush=function(){b.flush()},this.partialFlush=function(){b.partialFlush()},this.reset=function(){b.reset()},this.endTimeline=function(){b.endTimeline()},Ze=function(Ke,ft){var Sn,Ht=8,bn=8;for(Sn=0;Sn=0?S:0,(16&b[L+5])>>4?S+20:S+10},Zd=function se(b,L){return b.length-L<10||b[L]!=="I".charCodeAt(0)||b[L+1]!=="D".charCodeAt(0)||b[L+2]!=="3".charCodeAt(0)?L:se(b,L+=J0(b,L))},Q6=function(b){return b[0]<<21|b[1]<<14|b[2]<<7|b[3]},Y6=function(b,L,S){return unescape(function(b,L,S){var P,W="";for(P=L;P=L+2&&255==(255&b[L])&&240==(240&b[L+1])&&16==(22&b[L+1])},parseId3TagSize:J0,parseAdtsSize:function(b,L){var S=(224&b[L+5])>>5,P=b[L+4]<<3;return 6144&b[L+3]|P|S},parseType:function(b,L){return b[L]==="I".charCodeAt(0)&&b[L+1]==="D".charCodeAt(0)&&b[L+2]==="3".charCodeAt(0)?"timed-metadata":!0&b[L]&&240==(240&b[L+1])?"audio":null},parseSampleRate:function(b){for(var L=0;L+5>>2];L++}return null},parseAacTimestamp:function(b){var L,S,P;L=10,64&b[5]&&(L+=4,L+=Q6(b.subarray(10,14)));do{if((S=Q6(b.subarray(L+4,L+8)))<1)return null;if("PRIV"===String.fromCharCode(b[L],b[L+1],b[L+2],b[L+3])){P=b.subarray(L+10,L+S+10);for(var J=0;J>>2;return rt*=4,rt+=3&Ze[7]}break}}L+=10,L+=S}while(L=3;)if(b[W]!=="I".charCodeAt(0)||b[W+1]!=="D".charCodeAt(0)||b[W+2]!=="3".charCodeAt(0))if(255!=(255&b[W])||240!=(240&b[W+1]))W++;else{if(b.length-W<7||W+(P=fc.parseAdtsSize(b,W))>b.length)break;Ze={type:"audio",data:b.subarray(W,W+P),pts:L,dts:L},this.trigger("data",Ze),W+=P}else{if(b.length-W<10||W+(P=fc.parseId3TagSize(b,W))>b.length)break;Oe={type:"timed-metadata",data:b.subarray(W,W+P)},this.trigger("data",Oe),W+=P}J=b.length-W,b=J>0?b.subarray(W):new Uint8Array},this.reset=function(){b=new Uint8Array,this.trigger("reset")},this.endTimeline=function(){b=new Uint8Array,this.trigger("endedtimeline")}},pc.prototype=new o;var Xu,a2,$0,rl,Wd=pc,hc=["audioobjecttype","channelcount","samplerate","samplingfrequencyindex","samplesize"],Al=["width","height","profileIdc","levelIdc","profileCompatibility","sarRatio"],X6=jd.H264Stream,e4=fc.isLikelyAacData,Kd=ir_ONE_SECOND_IN_TS,X0=function(b,L){L.stream=b,this.trigger("log",L)},$s=function(b,L){for(var S=Object.keys(L),P=0;P=-1e4&&Ht<=45e3&&(!bn||ft>Ht)&&(bn=hn,ft=Ht));return bn?bn.gop:null},this.alignGopsAtStart_=function(Ze){var rt,Ke,ft,Ht,bn,Sn,hn,Wn;for(bn=Ze.byteLength,Sn=Ze.nalCount,hn=Ze.duration,rt=Ke=0;rtft.pts?rt++:(Ke++,bn-=Ht.byteLength,Sn-=Ht.nalCount,hn-=Ht.duration);return 0===Ke?Ze:Ke===Ze.length?null:((Wn=Ze.slice(Ke)).byteLength=bn,Wn.duration=hn,Wn.nalCount=Sn,Wn.pts=Wn[0].pts,Wn.dts=Wn[0].dts,Wn)},this.alignGopsAtEnd_=function(Ze){var rt,Ke,ft,Ht,bn,Sn,hn;for(rt=W.length-1,Ke=Ze.length-1,bn=null,Sn=!1;rt>=0&&Ke>=0;){if(ft=W[rt],Ht=Ze[Ke],ft.pts===Ht.pts){Sn=!0;break}ft.pts>Ht.pts?rt--:(rt===W.length-1&&(bn=Ke),Ke--)}if(!Sn&&null===bn)return null;if(0===(hn=Sn?Ke:bn))return Ze;var Wn=Ze.slice(hn),bo=Wn.reduce(function(Ta,d2){return Ta.byteLength+=d2.byteLength,Ta.duration+=d2.duration,Ta.nalCount+=d2.nalCount,Ta},{byteLength:0,duration:0,nalCount:0});return Wn.byteLength=bo.byteLength,Wn.duration=bo.duration,Wn.nalCount=bo.nalCount,Wn.pts=Wn[0].pts,Wn.dts=Wn[0].dts,Wn},this.alignGopsWith=function(Ze){W=Ze}},Xu.prototype=new o,rl=function(b,L){this.numberOfTracks=0,this.metadataStream=L,typeof(b=b||{}).remux<"u"?this.remuxTracks=!!b.remux:this.remuxTracks=!0,"boolean"==typeof b.keepOriginalTimestamps?this.keepOriginalTimestamps=b.keepOriginalTimestamps:this.keepOriginalTimestamps=!1,this.pendingTracks=[],this.videoTrack=null,this.pendingBoxes=[],this.pendingCaptions=[],this.pendingMetadata=[],this.pendingBytes=0,this.emittedTracks=0,rl.prototype.init.call(this),this.push=function(S){return S.text?this.pendingCaptions.push(S):S.frames?this.pendingMetadata.push(S):(this.pendingTracks.push(S.track),this.pendingBytes+=S.boxes.byteLength,"video"===S.track.type&&(this.videoTrack=S.track,this.pendingBoxes.push(S.boxes)),void("audio"===S.track.type&&(this.audioTrack=S.track,this.pendingBoxes.unshift(S.boxes))))}},rl.prototype=new o,rl.prototype.flush=function(se){var S,P,W,Oe,b=0,L={captions:[],captionStreams:{},metadata:[],info:{}},J=0;if(this.pendingTracks.length=this.numberOfTracks&&(this.trigger("done"),this.emittedTracks=0))}if(this.videoTrack?(J=this.videoTrack.timelineStartInfo.pts,Al.forEach(function(Ze){L.info[Ze]=this.videoTrack[Ze]},this)):this.audioTrack&&(J=this.audioTrack.timelineStartInfo.pts,hc.forEach(function(Ze){L.info[Ze]=this.audioTrack[Ze]},this)),this.videoTrack||this.audioTrack){for(1===this.pendingTracks.length?L.type=this.pendingTracks[0].type:L.type="combined",this.emittedTracks+=this.pendingTracks.length,W=Ru_initSegment(this.pendingTracks),L.initSegment=new Uint8Array(W.byteLength),L.initSegment.set(W),L.data=new Uint8Array(this.pendingBytes),Oe=0;Oe=this.numberOfTracks&&(this.trigger("done"),this.emittedTracks=0)},rl.prototype.setRemux=function(se){this.remuxTracks=se},$0=function(b){var P,W,L=this,S=!0;$0.prototype.init.call(this),b=b||{},this.baseMediaDecodeTime=b.baseMediaDecodeTime||0,this.transmuxPipeline_={},this.setupAacPipeline=function(){var J={};this.transmuxPipeline_=J,J.type="aac",J.metadataStream=new P1.MetadataStream,J.aacStream=new Wd,J.audioTimestampRolloverStream=new P1.TimestampRolloverStream("audio"),J.timedMetadataTimestampRolloverStream=new P1.TimestampRolloverStream("timed-metadata"),J.adtsStream=new K0,J.coalesceStream=new rl(b,J.metadataStream),J.headOfPipeline=J.aacStream,J.aacStream.pipe(J.audioTimestampRolloverStream).pipe(J.adtsStream),J.aacStream.pipe(J.timedMetadataTimestampRolloverStream).pipe(J.metadataStream).pipe(J.coalesceStream),J.metadataStream.on("timestamp",function(Oe){J.aacStream.setTimestamp(Oe.timeStamp)}),J.aacStream.on("data",function(Oe){"timed-metadata"!==Oe.type&&"audio"!==Oe.type||J.audioSegmentStream||(W=W||{timelineStartInfo:{baseMediaDecodeTime:L.baseMediaDecodeTime},codec:"adts",type:"audio"},J.coalesceStream.numberOfTracks++,J.audioSegmentStream=new a2(W,b),J.audioSegmentStream.on("log",L.getLogTrigger_("audioSegmentStream")),J.audioSegmentStream.on("timingInfo",L.trigger.bind(L,"audioTimingInfo")),J.adtsStream.pipe(J.audioSegmentStream).pipe(J.coalesceStream),L.trigger("trackinfo",{hasAudio:!!W,hasVideo:!!P}))}),J.coalesceStream.on("data",this.trigger.bind(this,"data")),J.coalesceStream.on("done",this.trigger.bind(this,"done")),$s(this,J)},this.setupTsPipeline=function(){var J={};this.transmuxPipeline_=J,J.type="ts",J.metadataStream=new P1.MetadataStream,J.packetStream=new P1.TransportPacketStream,J.parseStream=new P1.TransportParseStream,J.elementaryStream=new P1.ElementaryStream,J.timestampRolloverStream=new P1.TimestampRolloverStream,J.adtsStream=new K0,J.h264Stream=new X6,J.captionStream=new P1.CaptionStream(b),J.coalesceStream=new rl(b,J.metadataStream),J.headOfPipeline=J.packetStream,J.packetStream.pipe(J.parseStream).pipe(J.elementaryStream).pipe(J.timestampRolloverStream),J.timestampRolloverStream.pipe(J.h264Stream),J.timestampRolloverStream.pipe(J.adtsStream),J.timestampRolloverStream.pipe(J.metadataStream).pipe(J.coalesceStream),J.h264Stream.pipe(J.captionStream).pipe(J.coalesceStream),J.elementaryStream.on("data",function(Oe){var Ze;if("metadata"===Oe.type){for(Ze=Oe.tracks.length;Ze--;)P||"video"!==Oe.tracks[Ze].type?!W&&"audio"===Oe.tracks[Ze].type&&((W=Oe.tracks[Ze]).timelineStartInfo.baseMediaDecodeTime=L.baseMediaDecodeTime):(P=Oe.tracks[Ze]).timelineStartInfo.baseMediaDecodeTime=L.baseMediaDecodeTime;P&&!J.videoSegmentStream&&(J.coalesceStream.numberOfTracks++,J.videoSegmentStream=new Xu(P,b),J.videoSegmentStream.on("log",L.getLogTrigger_("videoSegmentStream")),J.videoSegmentStream.on("timelineStartInfo",function(rt){W&&!b.keepOriginalTimestamps&&(W.timelineStartInfo=rt,J.audioSegmentStream.setEarliestDts(rt.dts-L.baseMediaDecodeTime))}),J.videoSegmentStream.on("processedGopsInfo",L.trigger.bind(L,"gopInfo")),J.videoSegmentStream.on("segmentTimingInfo",L.trigger.bind(L,"videoSegmentTimingInfo")),J.videoSegmentStream.on("baseMediaDecodeTime",function(rt){W&&J.audioSegmentStream.setVideoBaseMediaDecodeTime(rt)}),J.videoSegmentStream.on("timingInfo",L.trigger.bind(L,"videoTimingInfo")),J.h264Stream.pipe(J.videoSegmentStream).pipe(J.coalesceStream)),W&&!J.audioSegmentStream&&(J.coalesceStream.numberOfTracks++,J.audioSegmentStream=new a2(W,b),J.audioSegmentStream.on("log",L.getLogTrigger_("audioSegmentStream")),J.audioSegmentStream.on("timingInfo",L.trigger.bind(L,"audioTimingInfo")),J.audioSegmentStream.on("segmentTimingInfo",L.trigger.bind(L,"audioSegmentTimingInfo")),J.adtsStream.pipe(J.audioSegmentStream).pipe(J.coalesceStream)),L.trigger("trackinfo",{hasAudio:!!W,hasVideo:!!P})}}),J.coalesceStream.on("data",this.trigger.bind(this,"data")),J.coalesceStream.on("id3Frame",function(Oe){Oe.dispatchType=J.metadataStream.dispatchType,L.trigger("id3Frame",Oe)}),J.coalesceStream.on("caption",this.trigger.bind(this,"caption")),J.coalesceStream.on("done",this.trigger.bind(this,"done")),$s(this,J)},this.setBaseMediaDecodeTime=function(J){var Oe=this.transmuxPipeline_;b.keepOriginalTimestamps||(this.baseMediaDecodeTime=J),W&&(W.timelineStartInfo.dts=void 0,W.timelineStartInfo.pts=void 0,no_clearDtsInfo(W),Oe.audioTimestampRolloverStream&&Oe.audioTimestampRolloverStream.discontinuity()),P&&(Oe.videoSegmentStream&&(Oe.videoSegmentStream.gopCache_=[]),P.timelineStartInfo.dts=void 0,P.timelineStartInfo.pts=void 0,no_clearDtsInfo(P),Oe.captionStream.reset()),Oe.timestampRolloverStream&&Oe.timestampRolloverStream.discontinuity()},this.setAudioAppendStart=function(J){W&&this.transmuxPipeline_.audioSegmentStream.setAudioAppendStart(J)},this.setRemux=function(J){var Oe=this.transmuxPipeline_;b.remux=J,Oe&&Oe.coalesceStream&&Oe.coalesceStream.setRemux(J)},this.alignGopsWith=function(J){P&&this.transmuxPipeline_.videoSegmentStream&&this.transmuxPipeline_.videoSegmentStream.alignGopsWith(J)},this.getLogTrigger_=function(J){var Oe=this;return function(Ze){Ze.stream=J,Oe.trigger("log",Ze)}},this.push=function(J){if(S){var Oe=e4(J);Oe&&"aac"!==this.transmuxPipeline_.type?this.setupAacPipeline():!Oe&&"ts"!==this.transmuxPipeline_.type&&this.setupTsPipeline(),S=!1}this.transmuxPipeline_.headOfPipeline.push(J)},this.flush=function(){S=!0,this.transmuxPipeline_.headOfPipeline.flush()},this.endTimeline=function(){this.transmuxPipeline_.headOfPipeline.endTimeline()},this.reset=function(){this.transmuxPipeline_.headOfPipeline&&this.transmuxPipeline_.headOfPipeline.reset()},this.resetCaptions=function(){this.transmuxPipeline_.captionStream&&this.transmuxPipeline_.captionStream.reset()}},$0.prototype=new o;var s8,c8,s5,O1={Transmuxer:$0,VideoSegmentStream:Xu,AudioSegmentStream:a2,AUDIO_PROPERTIES:hc,VIDEO_PROPERTIES:Al,generateSegmentTimingInfo:e5},e3_toUnsigned=function(b){return b>>>0},e3_toHexString=function(b){return("00"+b.toString(16)).slice(-2)},s2=function(b){var L="";return L+=String.fromCharCode(b[0]),L+=String.fromCharCode(b[1]),L+=String.fromCharCode(b[2]),L+=String.fromCharCode(b[3])},t4=e3_toUnsigned,Fr=function se(b,L){var P,W,J,Oe,Ze,S=[];if(!L.length)return null;for(P=0;P1?P+W:b.byteLength,J===L[0]&&(1===L.length?S.push(b.subarray(P+8,Oe)):(Ze=se(b.subarray(P+8,Oe),L.slice(1))).length&&(S=S.concat(Ze))),P=Oe;return S},t5=e3_toUnsigned,t3=e.getUint64,n5=function(b){var L={version:b[0],flags:new Uint8Array(b.subarray(1,4))};return 1===L.version?L.baseMediaDecodeTime=t3(b.subarray(4)):L.baseMediaDecodeTime=t5(b[4]<<24|b[5]<<16|b[6]<<8|b[7]),L},i5=function(b){return{isLeading:(12&b[0])>>>2,dependsOn:3&b[0],isDependedOn:(192&b[1])>>>6,hasRedundancy:(48&b[1])>>>4,paddingValue:(14&b[1])>>>1,isNonSyncSample:1&b[1],degradationPriority:b[2]<<8|b[3]}},n3=function(b){var Ht,L={version:b[0],flags:new Uint8Array(b.subarray(1,4)),samples:[]},S=new DataView(b.buffer,b.byteOffset,b.byteLength),P=1&L.flags[2],W=4&L.flags[2],J=1&L.flags[1],Oe=2&L.flags[1],Ze=4&L.flags[1],rt=8&L.flags[1],Ke=S.getUint32(4),ft=8;for(P&&(L.dataOffset=S.getInt32(ft),ft+=4),W&&Ke&&(Ht={flags:i5(b.subarray(ft,ft+4))},ft+=4,J&&(Ht.duration=S.getUint32(ft),ft+=4),Oe&&(Ht.size=S.getUint32(ft),ft+=4),rt&&(1===L.version?Ht.compositionTimeOffset=S.getInt32(ft):Ht.compositionTimeOffset=S.getUint32(ft),ft+=4),L.samples.push(Ht),Ke--);Ke--;)Ht={},J&&(Ht.duration=S.getUint32(ft),ft+=4),Oe&&(Ht.size=S.getUint32(ft),ft+=4),Ze&&(Ht.flags=i5(b.subarray(ft,ft+4)),ft+=4),rt&&(1===L.version?Ht.compositionTimeOffset=S.getInt32(ft):Ht.compositionTimeOffset=S.getUint32(ft),ft+=4),L.samples.push(Ht);return L},r5=function(b){var ft,L=new DataView(b.buffer,b.byteOffset,b.byteLength),S={version:b[0],flags:new Uint8Array(b.subarray(1,4)),trackId:L.getUint32(4)},P=1&S.flags[2],W=2&S.flags[2],J=8&S.flags[2],Oe=16&S.flags[2],Ze=32&S.flags[2],rt=65536&S.flags[0],Ke=131072&S.flags[0];return ft=8,P&&(ft+=4,S.baseDataOffset=L.getUint32(12),ft+=4),W&&(S.sampleDescriptionIndex=L.getUint32(ft),ft+=4),J&&(S.defaultSampleDuration=L.getUint32(ft),ft+=4),Oe&&(S.defaultSampleSize=L.getUint32(ft),ft+=4),Ze&&(S.defaultSampleFlags=L.getUint32(ft)),rt&&(S.durationIsEmpty=!0),!P&&Ke&&(S.baseDataOffsetIsMoof=!0),S},o5=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},kl=typeof window<"u"?window:typeof o5<"u"?o5:typeof self<"u"?self:{},a5=D1_discardEmulationPreventionBytes,Xd=ac.CaptionStream,e8=function(b,L){for(var S=b,P=0;P0?n5(bn[0]).baseMediaDecodeTime:0,hn=Fr(rt,["trun"]);L===Ht&&hn.length>0&&(Wn=function(b,L,S){var P=L,W=S.defaultSampleDuration||0,J=S.defaultSampleSize||0,Oe=S.trackId,Ze=[];return b.forEach(function(rt){var ft=n3(rt).samples;ft.forEach(function(Ht){void 0===Ht.duration&&(Ht.duration=W),void 0===Ht.size&&(Ht.size=J),Ht.trackId=Oe,Ht.dts=P,void 0===Ht.compositionTimeOffset&&(Ht.compositionTimeOffset=0),"bigint"==typeof P?(Ht.pts=P+kl.BigInt(Ht.compositionTimeOffset),P+=kl.BigInt(Ht.duration)):(Ht.pts=P+Ht.compositionTimeOffset,P+=Ht.duration)}),Ze=Ze.concat(ft)}),Ze}(hn,Sn,ft),bo=function(b,L,S){var J,Oe,Ze,rt,P=new DataView(b.buffer,b.byteOffset,b.byteLength),W={logs:[],seiNals:[]};for(Oe=0;Oe+40;){var Ht=S.shift();this.parse(Ht,rt,Ke)}return ft=function(b,L,S){if(null===L)return null;var W=i8(b,L)[L]||{};return{seiNals:W.seiNals,logs:W.logs,timescale:S}}(Ze,P,W),ft&&ft.logs&&(J.logs=J.logs.concat(ft.logs)),null!==ft&&ft.seiNals?(this.pushNals(ft.seiNals),this.flushStream(),J):J.logs.length?{logs:J.logs,captions:[],captionStreams:[]}:null},this.pushNals=function(Ze){if(!this.isInitialized()||!Ze||0===Ze.length)return null;Ze.forEach(function(rt){L.push(rt)})},this.flushStream=function(){if(!this.isInitialized())return null;Oe?L.partialFlush():L.flush()},this.clearParsedCaptions=function(){J.captions=[],J.captionStreams={},J.logs=[]},this.resetCaptionStream=function(){if(!this.isInitialized())return null;L.reset()},this.clearAllCaptions=function(){this.clearParsedCaptions(),this.resetCaptionStream()},this.reset=function(){S=[],P=null,W=null,J?this.clearParsedCaptions():J={captions:[],captionStreams:{},logs:[]},this.resetCaptionStream()},this.reset()},gc=e3_toUnsigned,i3=e3_toHexString,s4=e.getUint64;s8=function(b,L){var P=Fr(L,["moof","traf"]).reduce(function(W,J){var Ht,bn,Oe=Fr(J,["tfhd"])[0],Ze=gc(Oe[4]<<24|Oe[5]<<16|Oe[6]<<8|Oe[7]),rt=b[Ze]||9e4,Ke=Fr(J,["tfdt"])[0],ft=new DataView(Ke.buffer,Ke.byteOffset,Ke.byteLength);return"bigint"==typeof(Ht=1===Ke[0]?s4(Ke.subarray(4,12)):ft.getUint32(4))?bn=Ht/kl.BigInt(rt):"number"==typeof Ht&&!isNaN(Ht)&&(bn=Ht/rt),bn11?(W.codec+=".",W.codec+=i3(Sn[9]),W.codec+=i3(Sn[10]),W.codec+=i3(Sn[11])):W.codec="avc1.4d400d"):/^mp4[a,v]$/i.test(W.codec)?(Sn=bn.subarray(28),"esds"===s2(Sn.subarray(4,8))&&Sn.length>20&&0!==Sn[19]?(W.codec+="."+i3(Sn[19]),W.codec+="."+i3(Sn[20]>>>2&63).replace(/^0/,"")):W.codec="mp4a.40.2"):W.codec=W.codec.toLowerCase())}var Wn=Fr(P,["mdia","mdhd"])[0];Wn&&(W.timescale=s5(Wn)),S.push(W)}),S};var d8_startTime=s8,d8_tracks=c8,f8=function(b){var L=31&b[1];return L<<=8,L|=b[2]},mc=function(b){return!!(64&b[1])},_c=function(b){var L=0;return(48&b[3])>>>4>1&&(L+=b[4]+1),L},Cc=function(b){switch(b){case 5:return"slice_layer_without_partitioning_rbsp_idr";case 6:return"sei_rbsp";case 7:return"seq_parameter_set_rbsp";case 8:return"pic_parameter_set_rbsp";case 9:return"access_unit_delimiter_rbsp";default:return null}},g8={parseType:function(b,L){var S=f8(b);return 0===S?"pat":S===L?"pmt":L?"pes":null},parsePat:function(b){var L=mc(b),S=4+_c(b);return L&&(S+=b[S]+1),(31&b[S+10])<<8|b[S+11]},parsePmt:function(b){var L={},S=mc(b),P=4+_c(b);if(S&&(P+=b[P]+1),1&b[P+5]){var J;J=3+((15&b[P+1])<<8|b[P+2])-4;for(var Ze=12+((15&b[P+10])<<8|b[P+11]);Ze=b.byteLength)return null;var W,P=null;return 192&(W=b[S+7])&&((P={}).pts=(14&b[S+9])<<27|(255&b[S+10])<<20|(254&b[S+11])<<12|(255&b[S+12])<<5|(254&b[S+13])>>>3,P.pts*=4,P.pts+=(6&b[S+13])>>>1,P.dts=P.pts,64&W&&(P.dts=(14&b[S+14])<<27|(255&b[S+15])<<20|(254&b[S+16])<<12|(255&b[S+17])<<5|(254&b[S+18])>>>3,P.dts*=4,P.dts+=(6&b[S+18])>>>1)),P},videoPacketContainsKeyFrame:function(b){for(var L=4+_c(b),S=b.subarray(L),P=0,W=0,J=!1;W3&&("slice_layer_without_partitioning_rbsp_idr"===Cc(31&S[W+3])&&(J=!0)),J}},u2=Qu_handleRollover,rr={};rr.ts=g8,rr.aac=fc;var Nl=ir_ONE_SECOND_IN_TS,xa=188,l5=function(b,L,S){for(var J,Ze,rt,Ke,P=0,W=xa,ft=!1;W<=b.byteLength;)if(71!==b[P]||71!==b[W]&&W!==b.byteLength)P++,W++;else{if("pes"===(J=b.subarray(P,W),rr.ts.parseType(J,L.pid)))Ze=rr.ts.parsePesType(J,L.table),rt=rr.ts.parsePayloadUnitStartIndicator(J),"audio"===Ze&&rt&&((Ke=rr.ts.parsePesTime(J))&&(Ke.type="audio",S.audio.push(Ke),ft=!0));if(ft)break;P+=xa,W+=xa}for(P=(W=b.byteLength)-xa,ft=!1;P>=0;)if(71!==b[P]||71!==b[W]&&W!==b.byteLength)P--,W--;else{if("pes"===(J=b.subarray(P,W),rr.ts.parseType(J,L.pid)))Ze=rr.ts.parsePesType(J,L.table),rt=rr.ts.parsePayloadUnitStartIndicator(J),"audio"===Ze&&rt&&((Ke=rr.ts.parsePesTime(J))&&(Ke.type="audio",S.audio.push(Ke),ft=!0));if(ft)break;P-=xa,W-=xa}},c2=function(b,L,S){for(var J,Ze,rt,Ke,ft,Ht,bn,P=0,W=xa,Sn=!1,hn={data:[],size:0};W=0;)if(71!==b[P]||71!==b[W])P--,W--;else{if("pes"===(J=b.subarray(P,W),rr.ts.parseType(J,L.pid)))Ze=rr.ts.parsePesType(J,L.table),rt=rr.ts.parsePayloadUnitStartIndicator(J),"video"===Ze&&rt&&((Ke=rr.ts.parsePesTime(J))&&(Ke.type="video",S.video.push(Ke),Sn=!0));if(Sn)break;P-=xa,W-=xa}},ou=function(b){var L={pid:null,table:null},S={};for(var P in function(b,L){for(var W,S=0,P=xa;P=3;){switch(rr.aac.parseType(b,Oe)){case"timed-metadata":if(b.length-Oe<10){L=!0;break}if((J=rr.aac.parseId3TagSize(b,Oe))>b.length){L=!0;break}null===W&&(Ze=b.subarray(Oe,Oe+J),W=rr.aac.parseAacTimestamp(Ze)),Oe+=J;break;case"audio":if(b.length-Oe<7){L=!0;break}if((J=rr.aac.parseAdtsSize(b,Oe))>b.length){L=!0;break}null===P&&(Ze=b.subarray(Oe,Oe+J),P=rr.aac.parseSampleRate(Ze)),S++,Oe+=J;break;default:Oe++}if(L)return null}if(null===P||null===W)return null;var Ke=Nl/P;return{audio:[{type:"audio",dts:W,pts:W},{type:"audio",dts:W+1024*S*Ke,pts:W+1024*S*Ke}]}}(b):ou(b),P&&(P.audio||P.video)?(function(b,L){if(b.audio&&b.audio.length){var S=L;(typeof S>"u"||isNaN(S))&&(S=b.audio[0].dts),b.audio.forEach(function(J){J.dts=u2(J.dts,S),J.pts=u2(J.pts,S),J.dtsTime=J.dts/Nl,J.ptsTime=J.pts/Nl})}if(b.video&&b.video.length){var P=L;if((typeof P>"u"||isNaN(P))&&(P=b.video[0].dts),b.video.forEach(function(J){J.dts=u2(J.dts,P),J.pts=u2(J.pts,P),J.dtsTime=J.dts/Nl,J.ptsTime=J.pts/Nl}),b.firstKeyFrame){var W=b.firstKeyFrame;W.dts=u2(W.dts,P),W.pts=u2(W.pts,P),W.dtsTime=W.dts/Nl,W.ptsTime=W.pts/Nl}}}(P,L),P):null},c5=function(){function se(L,S){this.options=S||{},this.self=L,this.init()}var b=se.prototype;return b.init=function(){this.transmuxer&&this.transmuxer.dispose(),this.transmuxer=new O1.Transmuxer(this.options),function(b,L){L.on("data",function(S){var P=S.initSegment;S.initSegment={data:P.buffer,byteOffset:P.byteOffset,byteLength:P.byteLength};var W=S.data;S.data=W.buffer,b.postMessage({action:"data",segment:S,byteOffset:W.byteOffset,byteLength:W.byteLength},[S.data])}),L.on("done",function(S){b.postMessage({action:"done"})}),L.on("gopInfo",function(S){b.postMessage({action:"gopInfo",gopInfo:S})}),L.on("videoSegmentTimingInfo",function(S){var P={start:{decode:ir_videoTsToSeconds(S.start.dts),presentation:ir_videoTsToSeconds(S.start.pts)},end:{decode:ir_videoTsToSeconds(S.end.dts),presentation:ir_videoTsToSeconds(S.end.pts)},baseMediaDecodeTime:ir_videoTsToSeconds(S.baseMediaDecodeTime)};S.prependedContentDuration&&(P.prependedContentDuration=ir_videoTsToSeconds(S.prependedContentDuration)),b.postMessage({action:"videoSegmentTimingInfo",videoSegmentTimingInfo:P})}),L.on("audioSegmentTimingInfo",function(S){var P={start:{decode:ir_videoTsToSeconds(S.start.dts),presentation:ir_videoTsToSeconds(S.start.pts)},end:{decode:ir_videoTsToSeconds(S.end.dts),presentation:ir_videoTsToSeconds(S.end.pts)},baseMediaDecodeTime:ir_videoTsToSeconds(S.baseMediaDecodeTime)};S.prependedContentDuration&&(P.prependedContentDuration=ir_videoTsToSeconds(S.prependedContentDuration)),b.postMessage({action:"audioSegmentTimingInfo",audioSegmentTimingInfo:P})}),L.on("id3Frame",function(S){b.postMessage({action:"id3Frame",id3Frame:S})}),L.on("caption",function(S){b.postMessage({action:"caption",caption:S})}),L.on("trackinfo",function(S){b.postMessage({action:"trackinfo",trackInfo:S})}),L.on("audioTimingInfo",function(S){b.postMessage({action:"audioTimingInfo",audioTimingInfo:{start:ir_videoTsToSeconds(S.start),end:ir_videoTsToSeconds(S.end)}})}),L.on("videoTimingInfo",function(S){b.postMessage({action:"videoTimingInfo",videoTimingInfo:{start:ir_videoTsToSeconds(S.start),end:ir_videoTsToSeconds(S.end)}})}),L.on("log",function(S){b.postMessage({action:"log",log:S})})}(this.self,this.transmuxer)},b.pushMp4Captions=function(S){this.captionParser||(this.captionParser=new a4,this.captionParser.init());var P=new Uint8Array(S.data,S.byteOffset,S.byteLength),W=this.captionParser.parse(P,S.trackIds,S.timescales);this.self.postMessage({action:"mp4Captions",captions:W&&W.captions||[],logs:W&&W.logs||[],data:P.buffer},[P.buffer])},b.probeMp4StartTime=function(S){var P=S.timescales,W=S.data,J=d8_startTime(P,W);this.self.postMessage({action:"probeMp4StartTime",startTime:J,data:W},[W.buffer])},b.probeMp4Tracks=function(S){var P=S.data,W=d8_tracks(P);this.self.postMessage({action:"probeMp4Tracks",tracks:W,data:P},[P.buffer])},b.probeTs=function(S){var P=S.data,W=S.baseStartTime,J="number"!=typeof W||isNaN(W)?void 0:W*ir_ONE_SECOND_IN_TS,Oe=u5_inspect(P,J),Ze=null;Oe&&((Ze={hasVideo:Oe.video&&2===Oe.video.length||!1,hasAudio:Oe.audio&&2===Oe.audio.length||!1}).hasVideo&&(Ze.videoStart=Oe.video[0].ptsTime),Ze.hasAudio&&(Ze.audioStart=Oe.audio[0].ptsTime)),this.self.postMessage({action:"probeTs",result:Ze,data:P},[P.buffer])},b.clearAllMp4Captions=function(){this.captionParser&&this.captionParser.clearAllCaptions()},b.clearParsedMp4Captions=function(){this.captionParser&&this.captionParser.clearParsedCaptions()},b.push=function(S){var P=new Uint8Array(S.data,S.byteOffset,S.byteLength);this.transmuxer.push(P)},b.reset=function(){this.transmuxer.reset()},b.setTimestampOffset=function(S){var P=S.timestampOffset||0;this.transmuxer.setBaseMediaDecodeTime(Math.round(ir_secondsToVideoTs(P)))},b.setAudioAppendStart=function(S){this.transmuxer.setAudioAppendStart(Math.ceil(ir_secondsToVideoTs(S.appendStart)))},b.setRemux=function(S){this.transmuxer.setRemux(S.remux)},b.flush=function(S){this.transmuxer.flush(),self.postMessage({action:"done",type:"transmuxed"})},b.endTimeline=function(){this.transmuxer.endTimeline(),self.postMessage({action:"endedtimeline",type:"transmuxed"})},b.alignGopsWith=function(S){this.transmuxer.alignGopsWith(S.gopsToAlignWith.slice())},se}();self.onmessage=function(se){"init"===se.data.action&&se.data.options?this.messageHandlers=new c5(self,se.data.options):(this.messageHandlers||(this.messageHandlers=new c5(self)),se.data&&se.data.action&&"init"!==se.data.action&&this.messageHandlers[se.data.action]&&this.messageHandlers[se.data.action](se.data))}})),Y8=u0(tl),c0=function(o){var s=o.transmuxer,a=o.bytes,e=o.audioAppendStart,r=o.gopsToAlignWith,u=o.remux,p=o.onData,_=o.onTrackInfo,y=o.onAudioTimingInfo,D=o.onVideoTimingInfo,j=o.onVideoSegmentTimingInfo,B=o.onAudioSegmentTimingInfo,ce=o.onId3,De=o.onCaptions,me=o.onDone,xe=o.onEndedTimeline,ht=o.onTransmuxerLog,_t=o.isEndOfTimeline,Ft={buffer:[]},jt=_t;if(s.onmessage=function(En){s.currentTransmux===o&&("data"===En.data.action&&function(o,s,a){var e=o.data.segment,r=e.type,u=e.initSegment,p=e.captions,_=e.captionStreams,y=e.metadata,D=e.videoFrameDtsTime,j=e.videoFramePtsTime;s.buffer.push({captions:p,captionStreams:_,metadata:y});var B=o.data.segment.boxes||{data:o.data.segment.data},ce={type:r,data:new Uint8Array(B.data,B.data.byteOffset,B.data.byteLength),initSegment:new Uint8Array(u.data,u.byteOffset,u.byteLength)};typeof D<"u"&&(ce.videoFrameDtsTime=D),typeof j<"u"&&(ce.videoFramePtsTime=j),a(ce)}(En,Ft,p),"trackinfo"===En.data.action&&_(En.data.trackInfo),"gopInfo"===En.data.action&&function(o,s){s.gopInfo=o.data.gopInfo}(En,Ft),"audioTimingInfo"===En.data.action&&y(En.data.audioTimingInfo),"videoTimingInfo"===En.data.action&&D(En.data.videoTimingInfo),"videoSegmentTimingInfo"===En.data.action&&j(En.data.videoSegmentTimingInfo),"audioSegmentTimingInfo"===En.data.action&&B(En.data.audioSegmentTimingInfo),"id3Frame"===En.data.action&&ce([En.data.id3Frame],En.data.id3Frame.dispatchType),"caption"===En.data.action&&De(En.data.caption),"endedtimeline"===En.data.action&&(jt=!1,xe()),"log"===En.data.action&&ht(En.data.log),"transmuxed"===En.data.type&&(jt||(s.onmessage=null,function(o){var s=o.transmuxedData,a=o.callback;s.buffer=[],a(s)}({transmuxedData:Ft,callback:me}),$8(s))))},e&&s.postMessage({action:"setAudioAppendStart",appendStart:e}),Array.isArray(r)&&s.postMessage({action:"alignGopsWith",gopsToAlignWith:r}),typeof u<"u"&&s.postMessage({action:"setRemux",remux:u}),a.byteLength){var gn=a instanceof ArrayBuffer?a:a.buffer,Mn=a instanceof ArrayBuffer?0:a.byteOffset;s.postMessage({action:"push",data:gn,byteOffset:Mn,byteLength:a.byteLength},[gn])}_t&&s.postMessage({action:"endTimeline"}),s.postMessage({action:"flush"})},$8=function(o){o.currentTransmux=null,o.transmuxQueue.length&&(o.currentTransmux=o.transmuxQueue.shift(),"function"==typeof o.currentTransmux?o.currentTransmux():c0(o.currentTransmux))},d0=function(o,s){o.postMessage({action:s}),$8(o)},X8=function(o,s){if(!s.currentTransmux)return s.currentTransmux=o,void d0(s,o);s.transmuxQueue.push(d0.bind(null,s,o))},f0=function(o){if(!o.transmuxer.currentTransmux)return o.transmuxer.currentTransmux=o,void c0(o);o.transmuxer.transmuxQueue.push(o)},p0_reset=function(o){X8("reset",o)},p0_createTransmuxer=function(o){var s=new Y8;s.currentTransmux=null,s.transmuxQueue=[];var a=s.terminate;return s.terminate=function(){return s.currentTransmux=null,s.transmuxQueue.length=0,a.call(s)},s.postMessage({action:"init",options:o}),s},es=function(o){var s=o.transmuxer,a=o.endAction||o.action,e=o.callback,r=N({},o,{endAction:null,transmuxer:null,callback:null});if(s.addEventListener("message",function y(D){D.data.action===a&&(s.removeEventListener("message",y),D.data.data&&(D.data.data=new Uint8Array(D.data.data,o.byteOffset||0,o.byteLength||D.data.data.byteLength),o.data&&(o.data=D.data.data)),e(D.data))}),o.data){var p=o.data instanceof ArrayBuffer;r.byteOffset=p?0:o.data.byteOffset,r.byteLength=o.data.byteLength;var _=[p?o.data:o.data.buffer];s.postMessage(r,_)}else s.postMessage(r)},w1_FAILURE=2,w1_TIMEOUT=-101,w1_ABORTED=-102,U3=function(o){o.forEach(function(s){s.abort()})},h0=function(o,s){return s.timedout?{status:s.status,message:"HLS request timed-out at URL: "+s.uri,code:w1_TIMEOUT,xhr:s}:s.aborted?{status:s.status,message:"HLS request aborted at URL: "+s.uri,code:w1_ABORTED,xhr:s}:o?{status:s.status,message:"HLS request errored at URL: "+s.uri,code:w1_FAILURE,xhr:s}:"arraybuffer"===s.responseType&&0===s.response.byteLength?{status:s.status,message:"Empty HLS response at URL: "+s.uri,code:w1_FAILURE,xhr:s}:null},ld=function(o,s,a){return function(e,r){var u=r.response,p=h0(e,r);if(p)return a(p,o);if(16!==u.byteLength)return a({status:r.status,message:"Invalid HLS key at URL: "+r.uri,code:w1_FAILURE,xhr:r},o);for(var _=new DataView(u),y=new Uint32Array([_.getUint32(0),_.getUint32(4),_.getUint32(8),_.getUint32(12)]),D=0;D0}(me)){s.isFmp4=!0;var xe=s.map.tracks,ht={isFmp4:!0,hasVideo:!!xe.video,hasAudio:!!xe.audio};xe.audio&&xe.audio.codec&&"enca"!==xe.audio.codec&&(ht.audioCodec=xe.audio.codec),xe.video&&xe.video.codec&&"encv"!==xe.video.codec&&(ht.videoCodec=xe.video.codec),xe.video&&xe.audio&&(ht.isMuxed=!0),e(s,ht);var _t=function(jt){B(s,{data:me,type:ht.hasAudio&&!ht.isMuxed?"audio":"video"}),jt&&jt.length&&y(s,jt),ce(null,s,{})};es({action:"probeMp4StartTime",timescales:s.map.timescales,data:me,transmuxer:s.transmuxer,callback:function(jt){var Ut=jt.data,gn=jt.startTime;a=Ut.buffer,s.bytes=me=Ut,ht.hasAudio&&!ht.isMuxed&&r(s,"audio","start",gn),ht.hasVideo&&r(s,"video","start",gn),xe.video&&Ut.byteLength&&s.transmuxer?es({action:"pushMp4Captions",endAction:"mp4Captions",transmuxer:s.transmuxer,data:me,timescales:s.map.timescales,trackIds:[xe.video.id],callback:function(en){a=en.data.buffer,s.bytes=me=en.data,en.logs.forEach(function(En){De(pt.mergeOptions(En,{stream:"mp4CaptionParser"}))}),_t(en.captions)}}):_t()}})}else{if(s.transmuxer)return typeof s.container>"u"&&(s.container=it(me)),"ts"!==s.container&&"aac"!==s.container?(e(s,{hasAudio:!1,hasVideo:!1}),void ce(null,s,{})):void a6({segment:s,bytes:a,trackInfoFn:e,timingInfoFn:r,videoSegmentTimingInfoFn:u,audioSegmentTimingInfoFn:p,id3Fn:_,captionsFn:y,isEndOfTimeline:D,endedTimelineFn:j,dataFn:B,doneFn:ce,onTransmuxerLog:De});ce(null,s,{})}},m0=function(o,s){var _,a=o.id,e=o.key,r=o.encryptedBytes,u=o.decryptionWorker;u.addEventListener("message",function y(D){if(D.data.source===a){u.removeEventListener("message",y);var j=D.data.decrypted;s(new Uint8Array(j.bytes,j.byteOffset,j.byteLength))}}),_=e.bytes.slice?e.bytes.slice():new Uint32Array(Array.prototype.slice.call(e.bytes)),u.postMessage($5({source:a,encrypted:r,key:_,iv:e.iv}),[r.buffer,_.buffer])},cd=function(o){var s=o.activeXhrs,a=o.decryptionWorker,e=o.trackInfoFn,r=o.timingInfoFn,u=o.videoSegmentTimingInfoFn,p=o.audioSegmentTimingInfoFn,_=o.id3Fn,y=o.captionsFn,D=o.isEndOfTimeline,j=o.endedTimelineFn,B=o.dataFn,ce=o.doneFn,De=o.onTransmuxerLog,me=0,xe=!1;return function(ht,_t){if(!xe){if(ht)return xe=!0,U3(s),ce(ht,_t);if((me+=1)===s.length){var Ft=function(){if(_t.encryptedBytes)return function(o){var s=o.decryptionWorker,a=o.segment,e=o.trackInfoFn,r=o.timingInfoFn,u=o.videoSegmentTimingInfoFn,p=o.audioSegmentTimingInfoFn,_=o.id3Fn,y=o.captionsFn,D=o.isEndOfTimeline,j=o.endedTimelineFn,B=o.dataFn,ce=o.doneFn,De=o.onTransmuxerLog;m0({id:a.requestId,key:a.key,encryptedBytes:a.encryptedBytes,decryptionWorker:s},function(me){a.bytes=me,li({segment:a,bytes:a.bytes,trackInfoFn:e,timingInfoFn:r,videoSegmentTimingInfoFn:u,audioSegmentTimingInfoFn:p,id3Fn:_,captionsFn:y,isEndOfTimeline:D,endedTimelineFn:j,dataFn:B,doneFn:ce,onTransmuxerLog:De})})}({decryptionWorker:a,segment:_t,trackInfoFn:e,timingInfoFn:r,videoSegmentTimingInfoFn:u,audioSegmentTimingInfoFn:p,id3Fn:_,captionsFn:y,isEndOfTimeline:D,endedTimelineFn:j,dataFn:B,doneFn:ce,onTransmuxerLog:De});li({segment:_t,bytes:_t.bytes,trackInfoFn:e,timingInfoFn:r,videoSegmentTimingInfoFn:u,audioSegmentTimingInfoFn:p,id3Fn:_,captionsFn:y,isEndOfTimeline:D,endedTimelineFn:j,dataFn:B,doneFn:ce,onTransmuxerLog:De})};if(_t.endOfAllRequests=Date.now(),_t.map&&_t.map.encryptedBytes&&!_t.map.bytes)return m0({decryptionWorker:a,id:_t.requestId+"-init",encryptedBytes:_t.map.encryptedBytes,key:_t.map.key},function(jt){_t.map.bytes=jt,g0(_t,function(Ut){if(Ut)return U3(s),ce(Ut,_t);Ft()})});Ft()}}}},l6=function(o){var s=o.segment,a=o.progressFn;return o.trackInfoFn,o.timingInfoFn,o.videoSegmentTimingInfoFn,o.audioSegmentTimingInfoFn,o.id3Fn,o.captionsFn,o.isEndOfTimeline,o.endedTimelineFn,o.dataFn,function(e){if(!e.target.aborted)return s.stats=pt.mergeOptions(s.stats,function(o){var s=o.target,e={bandwidth:1/0,bytesReceived:0,roundTripTime:Date.now()-s.requestTime||0};return e.bytesReceived=o.loaded,e.bandwidth=Math.floor(e.bytesReceived/e.roundTripTime*8*1e3),e}(e)),!s.stats.firstBytesReceivedAt&&s.stats.bytesReceived&&(s.stats.firstBytesReceivedAt=Date.now()),a(e,s)}},dd=function(o){var s=o.xhr,a=o.xhrOptions,e=o.decryptionWorker,r=o.segment,u=o.abortFn,p=o.progressFn,_=o.trackInfoFn,y=o.timingInfoFn,D=o.videoSegmentTimingInfoFn,j=o.audioSegmentTimingInfoFn,B=o.id3Fn,ce=o.captionsFn,De=o.isEndOfTimeline,me=o.endedTimelineFn,xe=o.dataFn,ht=o.doneFn,_t=o.onTransmuxerLog,Ft=[],jt=cd({activeXhrs:Ft,decryptionWorker:e,trackInfoFn:_,timingInfoFn:y,videoSegmentTimingInfoFn:D,audioSegmentTimingInfoFn:j,id3Fn:B,captionsFn:ce,isEndOfTimeline:De,endedTimelineFn:me,dataFn:xe,doneFn:ht,onTransmuxerLog:_t});if(r.key&&!r.key.bytes){var Ut=[r.key];r.map&&!r.map.bytes&&r.map.key&&r.map.key.resolvedUri===r.key.resolvedUri&&Ut.push(r.map.key);var en=s(pt.mergeOptions(a,{uri:r.key.resolvedUri,responseType:"arraybuffer"}),ld(r,Ut,jt));Ft.push(en)}if(r.map&&!r.map.bytes){if(r.map.key&&(!r.key||r.key.resolvedUri!==r.map.key.resolvedUri)){var Nn=s(pt.mergeOptions(a,{uri:r.map.key.resolvedUri,responseType:"arraybuffer"}),ld(r,[r.map.key],jt));Ft.push(Nn)}var sr=pt.mergeOptions(a,{uri:r.map.resolvedUri,responseType:"arraybuffer",headers:q3(r.map)}),Ua=function(o){var s=o.segment,a=o.finishProcessingFn;return function(e,r){var u=h0(e,r);if(u)return a(u,s);var p=new Uint8Array(r.response);if(s.map.key)return s.map.encryptedBytes=p,a(null,s);s.map.bytes=p,g0(s,function(_){if(_)return _.xhr=r,_.status=r.status,a(_,s);a(null,s)})}}({segment:r,finishProcessingFn:jt}),$i=s(sr,Ua);Ft.push($i)}var Z2=pt.mergeOptions(a,{uri:r.part&&r.part.resolvedUri||r.resolvedUri,responseType:"arraybuffer",headers:q3(r)}),ds=s(Z2,o6({segment:r,finishProcessingFn:jt,responseType:Z2.responseType}));ds.addEventListener("progress",l6({segment:r,progressFn:p,trackInfoFn:_,timingInfoFn:y,videoSegmentTimingInfoFn:D,audioSegmentTimingInfoFn:j,id3Fn:B,captionsFn:ce,isEndOfTimeline:De,endedTimelineFn:me,dataFn:xe})),Ft.push(ds);var Js={};return Ft.forEach(function(E1){E1.addEventListener("loadend",function(o){var s=o.loadendState,a=o.abortFn;return function(e){e.target.aborted&&a&&!s.calledAbortFn&&(a(),s.calledAbortFn=!0)}}({loadendState:Js,abortFn:u}))}),function(){return U3(Ft)}},u6=Ks("CodecUtils"),pd=function(o,s){var a=s.attributes||{};return o&&o.mediaGroups&&o.mediaGroups.AUDIO&&a.AUDIO&&o.mediaGroups.AUDIO[a.AUDIO]},Z3=function(o){var s={};return o.forEach(function(a){var e=a.mediaType,r=a.type,u=a.details;s[e]=s[e]||[],s[e].push(Qt(""+r+u))}),Object.keys(s).forEach(function(a){if(s[a].length>1)return u6("multiple "+a+" codecs found as attributes: "+s[a].join(", ")+". Setting playlist codecs to null so that we wait for mux.js to probe segments for real codecs."),void(s[a]=null);s[a]=s[a][0]}),s},_0=function(o){var s=0;return o.audio&&s++,o.video&&s++,s},F2=function(o,s){var a=s.attributes||{},e=Z3(function(o){var s=o.attributes||{};if(s.CODECS)return Ln(s.CODECS)}(s)||[]);if(pd(o,s)&&!e.audio&&!function(o,s){if(!pd(o,s))return!0;var a=s.attributes||{},e=o.mediaGroups.AUDIO[a.AUDIO];for(var r in e)if(!e[r].uri&&!e[r].playlists)return!0;return!1}(o,s)){var r=Z3(function(o,s){if(!o.mediaGroups.AUDIO||!s)return null;var a=o.mediaGroups.AUDIO[s];if(!a)return null;for(var e in a){var r=a[e];if(r.default&&r.playlists)return Ln(r.playlists[0].attributes.CODECS)}return null}(o,a.AUDIO)||[]);r.audio&&(e.audio=r.audio)}return e},ya=Ks("PlaylistSelector"),hd=function(o){if(o&&o.playlist){var s=o.playlist;return JSON.stringify({id:s.id,bandwidth:o.bandwidth,width:o.width,height:o.height,codecs:s.attributes&&s.attributes.CODECS||""})}},q2=function(o,s){if(!o)return"";var a=C().getComputedStyle(o);return a?a[s]:""},Tl=function(o,s){var a=o.slice();o.sort(function(e,r){var u=s(e,r);return 0===u?a.indexOf(e)-a.indexOf(r):u})},C0=function(o,s){var a,e;return o.attributes.BANDWIDTH&&(a=o.attributes.BANDWIDTH),a=a||C().Number.MAX_VALUE,s.attributes.BANDWIDTH&&(e=s.attributes.BANDWIDTH),a-(e=e||C().Number.MAX_VALUE)},gd=function(o,s,a,e,r,u){if(o){var p={bandwidth:s,width:a,height:e,limitRenditionByPlayerDimensions:r},_=o.playlists;Zo.isAudioOnly(o)&&(_=u.getAudioTrackPlaylists_(),p.audioOnly=!0);var y=_.map(function(wn){var Nn=wn.attributes&&wn.attributes.RESOLUTION&&wn.attributes.RESOLUTION.width,sr=wn.attributes&&wn.attributes.RESOLUTION&&wn.attributes.RESOLUTION.height;return{bandwidth:wn.attributes&&wn.attributes.BANDWIDTH||C().Number.MAX_VALUE,width:Nn,height:sr,playlist:wn}});Tl(y,function(wn,Ti){return wn.bandwidth-Ti.bandwidth});var D=(y=y.filter(function(wn){return!Zo.isIncompatible(wn.playlist)})).filter(function(wn){return Zo.isEnabled(wn.playlist)});D.length||(D=y.filter(function(wn){return!Zo.isDisabled(wn.playlist)}));var j=D.filter(function(wn){return wn.bandwidth*Ho.BANDWIDTH_VARIANCEa||wn.height>e})).filter(function(wn){return wn.width===Ft[0].width&&wn.height===Ft[0].height}),B=jt[jt.length-1],Ut=jt.filter(function(wn){return wn.bandwidth===B.bandwidth})[0]),u.experimentalLeastPixelDiffSelector){var Mn=xe.map(function(wn){return wn.pixelDiff=Math.abs(wn.width-a)+Math.abs(wn.height-e),wn});Tl(Mn,function(wn,Ti){return wn.pixelDiff===Ti.pixelDiff?Ti.bandwidth-wn.bandwidth:wn.pixelDiff-Ti.pixelDiff}),gn=Mn[0]}var en=gn||Ut||_t||ce||D[0]||y[0];if(en&&en.playlist){var En="sortedPlaylistReps";return gn?En="leastPixelDiffRep":Ut?En="resolutionPlusOneRep":_t?En="resolutionBestRep":ce?En="bandwidthBestRep":D[0]&&(En="enabledPlaylistReps"),ya("choosing "+hd(en)+" using "+En+" with options",p),en.playlist}return ya("could not choose a playlist with options",p),null}},md=function(){var o=this.useDevicePixelRatio&&C().devicePixelRatio||1;return gd(this.playlists.master,this.systemBandwidth,parseInt(q2(this.tech_.el(),"width"),10)*o,parseInt(q2(this.tech_.el(),"height"),10)*o,this.limitRenditionByPlayerDimensions,this.masterPlaylistController_)},H3=function(o){var s=o.inbandTextTracks,a=o.metadataArray,e=o.timestampOffset,r=o.videoDuration;if(a){var u=C().WebKitDataCue||C().VTTCue,p=s.metadataTrack_;if(p&&(a.forEach(function(ce){var De=ce.cueTime+e;"number"!=typeof De||C().isNaN(De)||De<0||!(De<1/0)||ce.frames.forEach(function(me){var xe=new u(De,De,me.value||me.url||me.data||"");xe.frame=me,xe.value=me,function(o){Object.defineProperties(o.frame,{id:{get:function(){return pt.log.warn("cue.frame.id is deprecated. Use cue.value.key instead."),o.value.key}},value:{get:function(){return pt.log.warn("cue.frame.value is deprecated. Use cue.value.data instead."),o.value.data}},privateData:{get:function(){return pt.log.warn("cue.frame.privateData is deprecated. Use cue.value.data instead."),o.value.data}}})}(xe),p.addCue(xe)})}),p.cues&&p.cues.length)){for(var _=p.cues,y=[],D=0;D<_.length;D++)_[D]&&y.push(_[D]);var j=y.reduce(function(ce,De){var me=ce[De.startTime]||[];return me.push(De),ce[De.startTime]=me,ce},{}),B=Object.keys(j).sort(function(ce,De){return Number(ce)-Number(De)});B.forEach(function(ce,De){var me=j[ce],xe=Number(B[De+1])||r;me.forEach(function(ht){ht.endTime=xe})})}}},B2=function(o,s,a){var e,r;if(a&&a.cues)for(e=a.cues.length;e--;)(r=a.cues[e]).startTime>=o&&r.endTime<=s&&a.removeCue(r)},G3=function(o){return"number"==typeof o&&isFinite(o)},Il=1/60,j2=function(o){var s=o.startOfSegment,a=o.duration,e=o.segment,r=o.part,u=o.playlist,p=u.mediaSequence,_=u.id,y=u.segments,D=void 0===y?[]:y,j=o.mediaIndex,B=o.partIndex,ce=o.timeline,De=D.length-1,me="mediaIndex/partIndex increment";o.getMediaInfoForTime?me="getMediaInfoForTime ("+o.getMediaInfoForTime+")":o.isSyncRequest&&(me="getSyncSegmentCandidate (isSyncRequest)"),o.independent&&(me+=" with independent "+o.independent);var xe="number"==typeof B,ht=o.segment.uri?"segment":"pre-segment",_t=xe?R5({preloadSegment:e})-1:0;return ht+" ["+(p+j)+"/"+(p+De)+"]"+(xe?" part ["+B+"/"+_t+"]":"")+" segment start/end ["+e.start+" => "+e.end+"]"+(xe?" part start/end ["+r.start+" => "+r.end+"]":"")+" startOfSegment ["+s+"] duration ["+a+"] timeline ["+ce+"] selected by ["+me+"] playlist ["+_+"]"},t2=function(o){return o+"TimingInfo"},y0=function(o){var s=o.timelineChangeController,a=o.currentTimeline,e=o.segmentTimeline,r=o.loaderType,u=o.audioDisabled;if(a===e)return!1;if("audio"===r){var p=s.lastTimelineChange({type:"main"});return!p||p.to!==e}if("main"===r&&u){var _=s.pendingTimelineChange({type:"audio"});return!(_&&_.to===e)}return!1},Ss=function(o){var s=o.segmentDuration,a=o.maxDuration;return!!s&&Math.round(s)>a+wl},yd=function(o,s){if("hls"!==s)return null;var a=function(o){var s=0;return["video","audio"].forEach(function(a){var e=o[a+"TimingInfo"];if(e){var p,r=e.start,u=e.end;"bigint"==typeof r||"bigint"==typeof u?p=C().BigInt(u)-C().BigInt(r):"number"==typeof r&&"number"==typeof u&&(p=u-r),typeof p<"u"&&p>s&&(s=p)}}),"bigint"==typeof s&&s=11,r.appendInitSegment_={audio:!0,video:!0},r.playlistOfLastInitSegment_={audio:null,video:null},r.callQueue_=[],r.loadQueue_=[],r.metadataQueue_={id3:[],caption:[]},r.waitingOnRemove_=!1,r.quotaExceededErrorRetryTimeout_=null,r.activeInitSegmentId_=null,r.initSegments_={},r.cacheEncryptionKeys_=a.cacheEncryptionKeys,r.keyCache_={},r.decrypter_=a.decrypter,r.syncController_=a.syncController,r.syncPoint_={segmentIndex:0,time:0},r.transmuxer_=r.createTransmuxer_(),r.triggerSyncInfoUpdate_=function(){return r.trigger("syncinfoupdate")},r.syncController_.on("syncinfoupdate",r.triggerSyncInfoUpdate_),r.mediaSource_.addEventListener("sourceopen",function(){r.isEndOfStream_()||(r.ended_=!1)}),r.fetchAtBuffer_=!1,r.logger_=Ks("SegmentLoader["+r.loaderType_+"]"),Object.defineProperty($(r),"state",{get:function(){return this.state_},set:function(p){p!==this.state_&&(this.logger_(this.state_+" -> "+p),this.state_=p,this.trigger("statechange"))}}),r.sourceUpdater_.on("ready",function(){r.hasEnoughInfoToAppend_()&&r.processCallQueue_()}),"main"===r.loaderType_&&r.timelineChangeController_.on("pendingtimelinechange",function(){r.hasEnoughInfoToAppend_()&&r.processCallQueue_()}),"audio"===r.loaderType_&&r.timelineChangeController_.on("timelinechange",function(){r.hasEnoughInfoToLoad_()&&r.processLoadQueue_(),r.hasEnoughInfoToAppend_()&&r.processCallQueue_()}),r}R(o,f);var s=o.prototype;return s.createTransmuxer_=function(){return p0_createTransmuxer({remux:!1,alignGopsAtEnd:this.safeAppend_,keepOriginalTimestamps:!0,parse708captions:this.parse708captions_,captionServices:this.captionServices_})},s.resetStats_=function(){this.mediaBytesTransferred=0,this.mediaRequests=0,this.mediaRequestsAborted=0,this.mediaRequestsTimedout=0,this.mediaRequestsErrored=0,this.mediaTransferDuration=0,this.mediaSecondsLoaded=0,this.mediaAppends=0},s.dispose=function(){this.trigger("dispose"),this.state="DISPOSED",this.pause(),this.abort_(),this.transmuxer_&&this.transmuxer_.terminate(),this.resetStats_(),this.checkBufferTimeout_&&C().clearTimeout(this.checkBufferTimeout_),this.syncController_&&this.triggerSyncInfoUpdate_&&this.syncController_.off("syncinfoupdate",this.triggerSyncInfoUpdate_),this.off()},s.setAudio=function(e){this.audioDisabled_=!e,e?this.appendInitSegment_.audio=!0:this.sourceUpdater_.removeAudio(0,this.duration_())},s.abort=function(){"WAITING"===this.state?(this.abort_(),this.state="READY",this.paused()||this.monitorBuffer_()):this.pendingSegment_&&(this.pendingSegment_=null)},s.abort_=function(){this.pendingSegment_&&this.pendingSegment_.abortRequests&&this.pendingSegment_.abortRequests(),this.pendingSegment_=null,this.callQueue_=[],this.loadQueue_=[],this.metadataQueue_.id3=[],this.metadataQueue_.caption=[],this.timelineChangeController_.clearPendingTimelineChange(this.loaderType_),this.waitingOnRemove_=!1,C().clearTimeout(this.quotaExceededErrorRetryTimeout_),this.quotaExceededErrorRetryTimeout_=null},s.checkForAbort_=function(e){return"APPENDING"!==this.state||this.pendingSegment_?!this.pendingSegment_||this.pendingSegment_.requestId!==e:(this.state="READY",!0)},s.error=function(e){return typeof e<"u"&&(this.logger_("error occurred:",e),this.error_=e),this.pendingSegment_=null,this.error_},s.endOfStream=function(){this.ended_=!0,this.transmuxer_&&p0_reset(this.transmuxer_),this.gopBuffer_.length=0,this.pause(),this.trigger("ended")},s.buffered_=function(){var e=this.getMediaInfo_();if(!this.sourceUpdater_||!e)return pt.createTimeRanges();if("main"===this.loaderType_){var r=e.hasAudio,u=e.hasVideo,p=e.isMuxed;if(u&&r&&!this.audioDisabled_&&!p)return this.sourceUpdater_.buffered();if(u)return this.sourceUpdater_.videoBuffered()}return this.sourceUpdater_.audioBuffered()},s.initSegmentForMap=function(e,r){if(void 0===r&&(r=!1),!e)return null;var u=B3(e),p=this.initSegments_[u];return r&&!p&&e.bytes&&(this.initSegments_[u]=p={resolvedUri:e.resolvedUri,byterange:e.byterange,bytes:e.bytes,tracks:e.tracks,timescales:e.timescales}),p||e},s.segmentKey=function(e,r){if(void 0===r&&(r=!1),!e)return null;var u=R3(e),p=this.keyCache_[u];this.cacheEncryptionKeys_&&r&&!p&&e.bytes&&(this.keyCache_[u]=p={resolvedUri:e.resolvedUri,bytes:e.bytes});var _={resolvedUri:(p||e).resolvedUri};return p&&(_.bytes=p.bytes),_},s.couldBeginLoading_=function(){return this.playlist_&&!this.paused()},s.load=function(){if(this.monitorBuffer_(),this.playlist_){if("INIT"===this.state&&this.couldBeginLoading_())return this.init_();!this.couldBeginLoading_()||"READY"!==this.state&&"INIT"!==this.state||(this.state="READY")}},s.init_=function(){return this.state="READY",this.resetEverything(),this.monitorBuffer_()},s.playlist=function(e,r){if(void 0===r&&(r={}),e){var u=this.playlist_,p=this.pendingSegment_;this.playlist_=e,this.xhrOptions_=r,"INIT"===this.state&&(e.syncInfo={mediaSequence:e.mediaSequence,time:0},"main"===this.loaderType_&&this.syncController_.setDateTimeMappingForStart(e));var _=null;if(u&&(u.id?_=u.id:u.uri&&(_=u.uri)),this.logger_("playlist update ["+_+" => "+(e.id||e.uri)+"]"),this.trigger("syncinfoupdate"),"INIT"===this.state&&this.couldBeginLoading_())return this.init_();if(!u||u.uri!==e.uri)return null!==this.mediaIndex&&(e.endList?this.resyncLoader():this.resetLoader()),this.currentMediaInfo_=void 0,void this.trigger("playlistupdate");var y=e.mediaSequence-u.mediaSequence;if(this.logger_("live window shift ["+y+"]"),null!==this.mediaIndex)if(this.mediaIndex-=y,this.mediaIndex<0)this.mediaIndex=null,this.partIndex=null;else{var D=this.playlist_.segments[this.mediaIndex];if(this.partIndex&&(!D.parts||!D.parts.length||!D.parts[this.partIndex])){var j=this.mediaIndex;this.logger_("currently processing part (index "+this.partIndex+") no longer exists."),this.resetLoader(),this.mediaIndex=j}}p&&(p.mediaIndex-=y,p.mediaIndex<0?(p.mediaIndex=null,p.partIndex=null):(p.mediaIndex>=0&&(p.segment=e.segments[p.mediaIndex]),p.partIndex>=0&&p.segment.parts&&(p.part=p.segment.parts[p.partIndex]))),this.syncController_.saveExpiredSegmentInfo(u,e)}},s.pause=function(){this.checkBufferTimeout_&&(C().clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=null)},s.paused=function(){return null===this.checkBufferTimeout_},s.resetEverything=function(e){this.ended_=!1,this.appendInitSegment_={audio:!0,video:!0},this.resetLoader(),this.remove(0,1/0,e),this.transmuxer_&&(this.transmuxer_.postMessage({action:"clearAllMp4Captions"}),this.transmuxer_.postMessage({action:"reset"}))},s.resetLoader=function(){this.fetchAtBuffer_=!1,this.resyncLoader()},s.resyncLoader=function(){this.transmuxer_&&p0_reset(this.transmuxer_),this.mediaIndex=null,this.partIndex=null,this.syncPoint_=null,this.isPendingTimestampOffset_=!1,this.callQueue_=[],this.loadQueue_=[],this.metadataQueue_.id3=[],this.metadataQueue_.caption=[],this.abort(),this.transmuxer_&&this.transmuxer_.postMessage({action:"clearParsedMp4Captions"})},s.remove=function(e,r,u,p){if(void 0===u&&(u=function(){}),void 0===p&&(p=!1),r===1/0&&(r=this.duration_()),r<=e)this.logger_("skipping remove because end ${end} is <= start ${start}");else if(this.sourceUpdater_&&this.getMediaInfo_()){var _=1,y=function(){0===--_&&u()};for(var D in(p||!this.audioDisabled_)&&(_++,this.sourceUpdater_.removeAudio(e,r,y)),(p||"main"===this.loaderType_)&&(this.gopBuffer_=function(o,s,a,e){for(var r=Math.ceil((s-e)*hi.ONE_SECOND_IN_TS),u=Math.ceil((a-e)*hi.ONE_SECOND_IN_TS),p=o.slice(),_=o.length;_--&&!(o[_].pts<=u););if(-1===_)return p;for(var y=_+1;y--&&!(o[y].pts<=r););return y=Math.max(y,0),p.splice(y,_-y+1),p}(this.gopBuffer_,e,r,this.timeMapping_),_++,this.sourceUpdater_.removeVideo(e,r,y)),this.inbandTextTracks_)B2(e,r,this.inbandTextTracks_[D]);B2(e,r,this.segmentMetadataTrack_),y()}else this.logger_("skipping remove because no source updater or starting media info")},s.monitorBuffer_=function(){this.checkBufferTimeout_&&C().clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=C().setTimeout(this.monitorBufferTick_.bind(this),1)},s.monitorBufferTick_=function(){"READY"===this.state&&this.fillBuffer_(),this.checkBufferTimeout_&&C().clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=C().setTimeout(this.monitorBufferTick_.bind(this),500)},s.fillBuffer_=function(){if(!this.sourceUpdater_.updating()){var e=this.chooseNextRequest_();!e||("number"==typeof e.timestampOffset&&(this.isPendingTimestampOffset_=!1,this.timelineChangeController_.pendingTimelineChange({type:this.loaderType_,from:this.currentTimeline_,to:e.timeline})),this.loadSegment_(e))}},s.isEndOfStream_=function(e,r,u){if(void 0===e&&(e=this.mediaIndex),void 0===r&&(r=this.playlist_),void 0===u&&(u=this.partIndex),!r||!this.mediaSource_)return!1;var p="number"==typeof e&&r.segments[e],_=e+1===r.segments.length,y=!p||!p.parts||u+1===p.parts.length;return r.endList&&"open"===this.mediaSource_.readyState&&_&&y},s.chooseNextRequest_=function(){var e=this.buffered_(),r=B5(e)||0,u=Pu(e,this.currentTime_()),p=!this.hasPlayed_()&&u>=1,_=u>=this.goalBufferLength_(),y=this.playlist_.segments;if(!y.length||p||_)return null;this.syncPoint_=this.syncPoint_||this.syncController_.getSyncPoint(this.playlist_,this.duration_(),this.currentTimeline_,this.currentTime_());var D={partIndex:null,mediaIndex:null,startOfSegment:null,playlist:this.playlist_,isSyncRequest:Boolean(!this.syncPoint_)};if(D.isSyncRequest)D.mediaIndex=function(o,s,a){s=s||[];for(var e=[],r=0,u=0;ua))return u}return 0===e.length?0:e[e.length-1]}(this.currentTimeline_,y,r);else if(null!==this.mediaIndex){var j=y[this.mediaIndex],B="number"==typeof this.partIndex?this.partIndex:-1;D.startOfSegment=j.end?j.end:r,j.parts&&j.parts[B+1]?(D.mediaIndex=this.mediaIndex,D.partIndex=B+1):D.mediaIndex=this.mediaIndex+1}else{var ce=Zo.getMediaInfoForTime({experimentalExactManifestTimings:this.experimentalExactManifestTimings,playlist:this.playlist_,currentTime:this.fetchAtBuffer_?r:this.currentTime_(),startingPartIndex:this.syncPoint_.partIndex,startingSegmentIndex:this.syncPoint_.segmentIndex,startTime:this.syncPoint_.time}),De=ce.segmentIndex,me=ce.startTime,xe=ce.partIndex;D.getMediaInfoForTime=this.fetchAtBuffer_?"bufferedEnd "+r:"currentTime "+this.currentTime_(),D.mediaIndex=De,D.startOfSegment=me,D.partIndex=xe}var ht=y[D.mediaIndex],_t=ht&&"number"==typeof D.partIndex&&ht.parts&&ht.parts[D.partIndex];if(!ht||"number"==typeof D.partIndex&&!_t)return null;if("number"!=typeof D.partIndex&&ht.parts&&(D.partIndex=0,_t=ht.parts[0]),!u&&_t&&!_t.independent)if(0===D.partIndex){var Ft=y[D.mediaIndex-1],jt=Ft.parts&&Ft.parts.length&&Ft.parts[Ft.parts.length-1];jt&&jt.independent&&(D.mediaIndex-=1,D.partIndex=Ft.parts.length-1,D.independent="previous segment")}else ht.parts[D.partIndex-1].independent&&(D.partIndex-=1,D.independent="previous part");var Ut=this.mediaSource_&&"ended"===this.mediaSource_.readyState;return D.mediaIndex>=y.length-1&&Ut&&!this.seeking_()?null:this.generateSegmentInfo_(D)},s.generateSegmentInfo_=function(e){var r=e.independent,u=e.playlist,p=e.mediaIndex,_=e.startOfSegment,y=e.isSyncRequest,D=e.partIndex,j=e.forceTimestampOffset,B=e.getMediaInfoForTime,ce=u.segments[p],De="number"==typeof D&&ce.parts[D],me={requestId:"segment-loader-"+Math.random(),uri:De&&De.resolvedUri||ce.resolvedUri,mediaIndex:p,partIndex:De?D:null,isSyncRequest:y,startOfSegment:_,playlist:u,bytes:null,encryptedBytes:null,timestampOffset:null,timeline:ce.timeline,duration:De&&De.duration||ce.duration,segment:ce,part:De,byteLength:0,transmuxer:this.transmuxer_,getMediaInfoForTime:B,independent:r},xe=typeof j<"u"?j:this.isPendingTimestampOffset_;me.timestampOffset=this.timestampOffsetForSegment_({segmentTimeline:ce.timeline,currentTimeline:this.currentTimeline_,startOfSegment:_,buffered:this.buffered_(),overrideCheck:xe});var ht=B5(this.sourceUpdater_.audioBuffered());return"number"==typeof ht&&(me.audioAppendStart=ht-this.sourceUpdater_.audioTimestampOffset()),this.sourceUpdater_.videoBuffered().length&&(me.gopsToAlignWith=function(o,s,a){if(typeof s>"u"||null===s||!o.length)return[];var r,e=Math.ceil((s-a+3)*hi.ONE_SECOND_IN_TS);for(r=0;re);r++);return o.slice(r)}(this.gopBuffer_,this.currentTime_()-this.sourceUpdater_.videoTimestampOffset(),this.timeMapping_)),me},s.timestampOffsetForSegment_=function(e){return function(o){var s=o.segmentTimeline,a=o.currentTimeline,e=o.startOfSegment,r=o.buffered;return o.overrideCheck||s!==a?s "+ce+" for "+D),function(o,s,a){if(!o[a]){s.trigger({type:"usage",name:"vhs-608"}),s.trigger({type:"usage",name:"hls-608"});var e=a;/^cc708_/.test(a)&&(e="SERVICE"+a.split("_")[1]);var r=s.textTracks().getTrackById(e);if(r)o[a]=r;else{var p=a,_=a,y=!1,D=(s.options_.vhs&&s.options_.vhs.captionServices||{})[e];D&&(p=D.label,_=D.language,y=D.default),o[a]=s.addRemoteTextTrack({kind:"captions",id:e,default:y,label:p,language:_},!1).track}}}(me,u.vhs_.tech_,D),B2(B,ce,me[D]),function(o){var s=o.inbandTextTracks,a=o.captionArray,e=o.timestampOffset;if(a){var r=C().WebKitDataCue||C().VTTCue;a.forEach(function(u){var p=u.stream;s[p].addCue(new r(u.startTime+e,u.endTime+e,u.text))})}}({captionArray:De,inbandTextTracks:me,timestampOffset:_})}),this.transmuxer_&&this.transmuxer_.postMessage({action:"clearParsedMp4Captions"})}},s.handleId3_=function(e,r,u){if(this.earlyAbortWhenNeeded_(e.stats),!this.checkForAbort_(e.requestId)){if(!this.pendingSegment_.hasAppendedData_)return void this.metadataQueue_.id3.push(this.handleId3_.bind(this,e,r,u));var _=null===this.sourceUpdater_.videoTimestampOffset()?this.sourceUpdater_.audioTimestampOffset():this.sourceUpdater_.videoTimestampOffset();(function(o,s,a){o.metadataTrack_||(o.metadataTrack_=a.addRemoteTextTrack({kind:"metadata",label:"Timed Metadata"},!1).track,o.metadataTrack_.inBandMetadataTrackDispatchType=s)})(this.inbandTextTracks_,u,this.vhs_.tech_),H3({inbandTextTracks:this.inbandTextTracks_,metadataArray:r,timestampOffset:_,videoDuration:this.duration_()})}},s.processMetadataQueue_=function(){this.metadataQueue_.id3.forEach(function(e){return e()}),this.metadataQueue_.caption.forEach(function(e){return e()}),this.metadataQueue_.id3=[],this.metadataQueue_.caption=[]},s.processCallQueue_=function(){var e=this.callQueue_;this.callQueue_=[],e.forEach(function(r){return r()})},s.processLoadQueue_=function(){var e=this.loadQueue_;this.loadQueue_=[],e.forEach(function(r){return r()})},s.hasEnoughInfoToLoad_=function(){if("audio"!==this.loaderType_)return!0;var e=this.pendingSegment_;return!!e&&(!this.getCurrentMediaInfo_()||!y0({timelineChangeController:this.timelineChangeController_,currentTimeline:this.currentTimeline_,segmentTimeline:e.timeline,loaderType:this.loaderType_,audioDisabled:this.audioDisabled_}))},s.getCurrentMediaInfo_=function(e){return void 0===e&&(e=this.pendingSegment_),e&&e.trackInfo||this.currentMediaInfo_},s.getMediaInfo_=function(e){return void 0===e&&(e=this.pendingSegment_),this.getCurrentMediaInfo_(e)||this.startingMediaInfo_},s.hasEnoughInfoToAppend_=function(){if(!this.sourceUpdater_.ready()||this.waitingOnRemove_||this.quotaExceededErrorRetryTimeout_)return!1;var e=this.pendingSegment_,r=this.getCurrentMediaInfo_();if(!e||!r)return!1;var u=r.hasAudio,p=r.hasVideo,_=r.isMuxed;return!(p&&!e.videoTimingInfo||u&&!this.audioDisabled_&&!_&&!e.audioTimingInfo||y0({timelineChangeController:this.timelineChangeController_,currentTimeline:this.currentTimeline_,segmentTimeline:e.timeline,loaderType:this.loaderType_,audioDisabled:this.audioDisabled_}))},s.handleData_=function(e,r){if(this.earlyAbortWhenNeeded_(e.stats),!this.checkForAbort_(e.requestId)){if(this.callQueue_.length||!this.hasEnoughInfoToAppend_())return void this.callQueue_.push(this.handleData_.bind(this,e,r));var u=this.pendingSegment_;if(this.setTimeMapping_(u.timeline),this.updateMediaSecondsLoaded_(u.part||u.segment),"closed"!==this.mediaSource_.readyState){if(e.map&&(e.map=this.initSegmentForMap(e.map,!0),u.segment.map=e.map),e.key&&this.segmentKey(e.key,!0),u.isFmp4=e.isFmp4,u.timingInfo=u.timingInfo||{},u.isFmp4)this.trigger("fmp4"),u.timingInfo.start=u[t2(r.type)].start;else{var y,p=this.getCurrentMediaInfo_(),_="main"===this.loaderType_&&p&&p.hasVideo;_&&(y=u.videoTimingInfo.start),u.timingInfo.start=this.trueSegmentStart_({currentStart:u.timingInfo.start,playlist:u.playlist,mediaIndex:u.mediaIndex,currentVideoTimestampOffset:this.sourceUpdater_.videoTimestampOffset(),useVideoTimingInfo:_,firstVideoFrameTimeForData:y,videoTimingInfo:u.videoTimingInfo,audioTimingInfo:u.audioTimingInfo})}if(this.updateAppendInitSegmentStatus(u,r.type),this.updateSourceBufferTimestampOffset_(u),u.isSyncRequest){this.updateTimingInfoEnd_(u),this.syncController_.saveSegmentTimingInfo({segmentInfo:u,shouldSaveTimelineMapping:"main"===this.loaderType_});var D=this.chooseNextRequest_();if(D.mediaIndex!==u.mediaIndex||D.partIndex!==u.partIndex)return void this.logger_("sync segment was incorrect, not appending");this.logger_("sync segment was correct, appending")}u.hasAppendedData_=!0,this.processMetadataQueue_(),this.appendData_(u,r)}}},s.updateAppendInitSegmentStatus=function(e,r){"main"===this.loaderType_&&"number"==typeof e.timestampOffset&&!e.changedTimestampOffset&&(this.appendInitSegment_={audio:!0,video:!0}),this.playlistOfLastInitSegment_[r]!==e.playlist&&(this.appendInitSegment_[r]=!0)},s.getInitSegmentAndUpdateState_=function(e){var r=e.type,u=e.initSegment,p=e.map,_=e.playlist;if(p){var y=B3(p);if(this.activeInitSegmentId_===y)return null;u=this.initSegmentForMap(p,!0).bytes,this.activeInitSegmentId_=y}return u&&this.appendInitSegment_[r]?(this.playlistOfLastInitSegment_[r]=_,this.appendInitSegment_[r]=!1,this.activeInitSegmentId_=null,u):null},s.handleQuotaExceededError_=function(e,r){var u=this,p=e.segmentInfo,_=e.type,y=e.bytes,D=this.sourceUpdater_.audioBuffered(),j=this.sourceUpdater_.videoBuffered();D.length>1&&this.logger_("On QUOTA_EXCEEDED_ERR, found gaps in the audio buffer: "+$l(D).join(", ")),j.length>1&&this.logger_("On QUOTA_EXCEEDED_ERR, found gaps in the video buffer: "+$l(j).join(", "));var B=D.length?D.start(0):0,ce=D.length?D.end(D.length-1):0,De=j.length?j.start(0):0,me=j.length?j.end(j.length-1):0;if(ce-B<=1&&me-De<=1)return this.logger_("On QUOTA_EXCEEDED_ERR, single segment too large to append to buffer, triggering an error. Appended byte length: "+y.byteLength+", audio buffer: "+$l(D).join(", ")+", video buffer: "+$l(j).join(", ")+", "),this.error({message:"Quota exceeded error with append of a single segment of content",excludeUntil:1/0}),void this.trigger("error");this.waitingOnRemove_=!0,this.callQueue_.push(this.appendToSourceBuffer_.bind(this,{segmentInfo:p,type:_,bytes:y}));var ht=this.currentTime_()-1;this.logger_("On QUOTA_EXCEEDED_ERR, removing audio/video from 0 to "+ht),this.remove(0,ht,function(){u.logger_("On QUOTA_EXCEEDED_ERR, retrying append in 1s"),u.waitingOnRemove_=!1,u.quotaExceededErrorRetryTimeout_=C().setTimeout(function(){u.logger_("On QUOTA_EXCEEDED_ERR, re-processing call queue"),u.quotaExceededErrorRetryTimeout_=null,u.processCallQueue_()},1e3)},!0)},s.handleAppendError_=function(e,r){var u=e.segmentInfo,p=e.type,_=e.bytes;if(r){if(22===r.code)return void this.handleQuotaExceededError_({segmentInfo:u,type:p,bytes:_});this.logger_("Received non QUOTA_EXCEEDED_ERR on append",r),this.error(p+" append of "+_.length+"b failed for segment #"+u.mediaIndex+" in playlist "+u.playlist.id),this.trigger("appenderror")}},s.appendToSourceBuffer_=function(e){var r=e.segmentInfo,u=e.type,p=e.initSegment,_=e.data,y=e.bytes;if(!y){var D=[_],j=_.byteLength;p&&(D.unshift(p),j+=p.byteLength),y=function(o){var a,s=0;return o.bytes&&(a=new Uint8Array(o.bytes),o.segments.forEach(function(e){a.set(e,s),s+=e.byteLength})),a}({bytes:j,segments:D})}this.sourceUpdater_.appendBuffer({segmentInfo:r,type:u,bytes:y},this.handleAppendError_.bind(this,{segmentInfo:r,type:u,bytes:y}))},s.handleSegmentTimingInfo_=function(e,r,u){if(this.pendingSegment_&&r===this.pendingSegment_.requestId){var p=this.pendingSegment_.segment,_=e+"TimingInfo";p[_]||(p[_]={}),p[_].transmuxerPrependedSeconds=u.prependedContentDuration||0,p[_].transmuxedPresentationStart=u.start.presentation,p[_].transmuxedDecodeStart=u.start.decode,p[_].transmuxedPresentationEnd=u.end.presentation,p[_].transmuxedDecodeEnd=u.end.decode,p[_].baseMediaDecodeTime=u.baseMediaDecodeTime}},s.appendData_=function(e,r){var u=r.type,p=r.data;if(p&&p.byteLength&&("audio"!==u||!this.audioDisabled_)){var _=this.getInitSegmentAndUpdateState_({type:u,initSegment:r.initSegment,playlist:e.playlist,map:e.isFmp4?e.segment.map:null});this.appendToSourceBuffer_({segmentInfo:e,type:u,initSegment:_,data:p})}},s.loadSegment_=function(e){var r=this;this.state="WAITING",this.pendingSegment_=e,this.trimBackBuffer_(e),"number"==typeof e.timestampOffset&&this.transmuxer_&&this.transmuxer_.postMessage({action:"clearAllMp4Captions"}),this.hasEnoughInfoToLoad_()?this.updateTransmuxerAndRequestSegment_(e):this.loadQueue_.push(function(){var u=N({},e,{forceTimestampOffset:!0});N(e,r.generateSegmentInfo_(u)),r.isPendingTimestampOffset_=!1,r.updateTransmuxerAndRequestSegment_(e)})},s.updateTransmuxerAndRequestSegment_=function(e){var r=this;this.shouldUpdateTransmuxerTimestampOffset_(e.timestampOffset)&&(this.gopBuffer_.length=0,e.gopsToAlignWith=[],this.timeMapping_=0,this.transmuxer_.postMessage({action:"reset"}),this.transmuxer_.postMessage({action:"setTimestampOffset",timestampOffset:e.timestampOffset}));var u=this.createSimplifiedSegmentObj_(e),p=this.isEndOfStream_(e.mediaIndex,e.playlist,e.partIndex),_=null!==this.mediaIndex,y=e.timeline!==this.currentTimeline_&&e.timeline>0,D=p||_&&y;this.logger_("Requesting "+j2(e)),u.map&&!u.map.bytes&&(this.logger_("going to request init segment."),this.appendInitSegment_={video:!0,audio:!0}),e.abortRequests=dd({xhr:this.vhs_.xhr,xhrOptions:this.xhrOptions_,decryptionWorker:this.decrypter_,segment:u,abortFn:this.handleAbort_.bind(this,e),progressFn:this.handleProgress_.bind(this),trackInfoFn:this.handleTrackInfo_.bind(this),timingInfoFn:this.handleTimingInfo_.bind(this),videoSegmentTimingInfoFn:this.handleSegmentTimingInfo_.bind(this,"video",e.requestId),audioSegmentTimingInfoFn:this.handleSegmentTimingInfo_.bind(this,"audio",e.requestId),captionsFn:this.handleCaptions_.bind(this),isEndOfTimeline:D,endedTimelineFn:function(){r.logger_("received endedtimeline callback")},id3Fn:this.handleId3_.bind(this),dataFn:this.handleData_.bind(this),doneFn:this.segmentRequestFinished_.bind(this),onTransmuxerLog:function(B){var ce=B.message,De=B.level,me=B.stream;r.logger_(j2(e)+" logged from transmuxer stream "+me+" as a "+De+": "+ce)}})},s.trimBackBuffer_=function(e){var r=function(o,s,a){var e=s-Ho.BACK_BUFFER_LENGTH;o.length&&(e=Math.max(e,o.start(0)));var r=s-a;return Math.min(r,e)}(this.seekable_(),this.currentTime_(),this.playlist_.targetDuration||10);r>0&&this.remove(0,r)},s.createSimplifiedSegmentObj_=function(e){var r=e.segment,u=e.part,p={resolvedUri:u?u.resolvedUri:r.resolvedUri,byterange:u?u.byterange:r.byterange,requestId:e.requestId,transmuxer:e.transmuxer,audioAppendStart:e.audioAppendStart,gopsToAlignWith:e.gopsToAlignWith,part:e.part},_=e.playlist.segments[e.mediaIndex-1];if(_&&_.timeline===r.timeline&&(_.videoTimingInfo?p.baseStartTime=_.videoTimingInfo.transmuxedDecodeEnd:_.audioTimingInfo&&(p.baseStartTime=_.audioTimingInfo.transmuxedDecodeEnd)),r.key){var y=r.key.iv||new Uint32Array([0,0,0,e.mediaIndex+e.playlist.mediaSequence]);p.key=this.segmentKey(r.key),p.key.iv=y}return r.map&&(p.map=this.initSegmentForMap(r.map)),p},s.saveTransferStats_=function(e){this.mediaRequests+=1,e&&(this.mediaBytesTransferred+=e.bytesReceived,this.mediaTransferDuration+=e.roundTripTime)},s.saveBandwidthRelatedStats_=function(e,r){this.pendingSegment_.byteLength=r.bytesReceived,e=e);r++);return o.slice(0,r).concat(s)}(this.gopBuffer_,u.gopInfo,this.safeAppend_)),this.state="APPENDING",this.trigger("appending"),this.waitForAppendsToComplete_(p)}},s.setTimeMapping_=function(e){var r=this.syncController_.mappingForTimeline(e);null!==r&&(this.timeMapping_=r)},s.updateMediaSecondsLoaded_=function(e){"number"==typeof e.start&&"number"==typeof e.end?this.mediaSecondsLoaded+=e.end-e.start:this.mediaSecondsLoaded+=e.duration},s.shouldUpdateTransmuxerTimestampOffset_=function(e){return null!==e&&("main"===this.loaderType_&&e!==this.sourceUpdater_.videoTimestampOffset()||!this.audioDisabled_&&e!==this.sourceUpdater_.audioTimestampOffset())},s.trueSegmentStart_=function(e){var r=e.currentStart,u=e.playlist,p=e.mediaIndex,_=e.firstVideoFrameTimeForData,y=e.currentVideoTimestampOffset,D=e.useVideoTimingInfo,j=e.videoTimingInfo,B=e.audioTimingInfo;if(typeof r<"u")return r;if(!D)return B.start;var ce=u.segments[p-1];return 0===p||!ce||typeof ce.start>"u"||ce.end!==_+y?_:j.start},s.waitForAppendsToComplete_=function(e){var r=this.getCurrentMediaInfo_(e);if(!r)return this.error({message:"No starting media returned, likely due to an unsupported media format.",blacklistDuration:1/0}),void this.trigger("error");var u=r.hasAudio,p=r.hasVideo,_=r.isMuxed,y="main"===this.loaderType_&&p,D=!this.audioDisabled_&&u&&!_;if(e.waitingOnAppends=0,!e.hasAppendedData_)return!e.timingInfo&&"number"==typeof e.timestampOffset&&(this.isPendingTimestampOffset_=!0),e.timingInfo={start:0},e.waitingOnAppends++,this.isPendingTimestampOffset_||(this.updateSourceBufferTimestampOffset_(e),this.processMetadataQueue_()),void this.checkAppendsDone_(e);y&&e.waitingOnAppends++,D&&e.waitingOnAppends++,y&&this.sourceUpdater_.videoQueueCallback(this.checkAppendsDone_.bind(this,e)),D&&this.sourceUpdater_.audioQueueCallback(this.checkAppendsDone_.bind(this,e))},s.checkAppendsDone_=function(e){this.checkForAbort_(e.requestId)||(e.waitingOnAppends--,0===e.waitingOnAppends&&this.handleAppendsDone_())},s.checkForIllegalMediaSwitch=function(e){var r=function(o,s,a){return"main"===o&&s&&a?a.hasAudio||a.hasVideo?s.hasVideo&&!a.hasVideo?"Only audio found in segment when we expected video. We can't switch to audio only from a stream that had video. To get rid of this message, please add codec information to the manifest.":!s.hasVideo&&a.hasVideo?"Video found in segment when we expected only audio. We can't switch to a stream with video from an audio only stream. To get rid of this message, please add codec information to the manifest.":null:"Neither audio nor video found in segment.":null}(this.loaderType_,this.getCurrentMediaInfo_(),e);return!!r&&(this.error({message:r,blacklistDuration:1/0}),this.trigger("error"),!0)},s.updateSourceBufferTimestampOffset_=function(e){if(null!==e.timestampOffset&&"number"==typeof e.timingInfo.start&&!e.changedTimestampOffset&&"main"===this.loaderType_){var r=!1;e.timestampOffset-=e.timingInfo.start,e.changedTimestampOffset=!0,e.timestampOffset!==this.sourceUpdater_.videoTimestampOffset()&&(this.sourceUpdater_.videoTimestampOffset(e.timestampOffset),r=!0),e.timestampOffset!==this.sourceUpdater_.audioTimestampOffset()&&(this.sourceUpdater_.audioTimestampOffset(e.timestampOffset),r=!0),r&&this.trigger("timestampoffset")}},s.updateTimingInfoEnd_=function(e){e.timingInfo=e.timingInfo||{};var r=this.getMediaInfo_(),p="main"===this.loaderType_&&r&&r.hasVideo&&e.videoTimingInfo?e.videoTimingInfo:e.audioTimingInfo;!p||(e.timingInfo.end="number"==typeof p.end?p.end:p.start+e.duration)},s.handleAppendsDone_=function(){if(this.pendingSegment_&&this.trigger("appendsdone"),!this.pendingSegment_)return this.state="READY",void(this.paused()||this.monitorBuffer_());var e=this.pendingSegment_;this.updateTimingInfoEnd_(e),this.shouldSaveSegmentTimingInfo_&&this.syncController_.saveSegmentTimingInfo({segmentInfo:e,shouldSaveTimelineMapping:"main"===this.loaderType_});var r=yd(e,this.sourceType_);if(r&&("warn"===r.severity?pt.log.warn(r.message):this.logger_(r.message)),this.recordThroughput_(e),this.pendingSegment_=null,this.state="READY",!e.isSyncRequest||(this.trigger("syncinfoupdate"),e.hasAppendedData_)){this.logger_("Appended "+j2(e)),this.addSegmentMetadataCue_(e),this.fetchAtBuffer_=!0,this.currentTimeline_!==e.timeline&&(this.timelineChangeController_.lastTimelineChange({type:this.loaderType_,from:this.currentTimeline_,to:e.timeline}),"main"===this.loaderType_&&!this.audioDisabled_&&this.timelineChangeController_.lastTimelineChange({type:"audio",from:this.currentTimeline_,to:e.timeline})),this.currentTimeline_=e.timeline,this.trigger("syncinfoupdate");var u=e.segment,p=e.part,_=u.end&&this.currentTime_()-u.end>3*e.playlist.targetDuration,y=p&&p.end&&this.currentTime_()-p.end>3*e.playlist.partTargetDuration;if(_||y)return this.logger_("bad "+(_?"segment":"part")+" "+j2(e)),void this.resetEverything();null!==this.mediaIndex&&this.trigger("bandwidthupdate"),this.trigger("progress"),this.mediaIndex=e.mediaIndex,this.partIndex=e.partIndex,this.isEndOfStream_(e.mediaIndex,e.playlist,e.partIndex)&&this.endOfStream(),this.trigger("appended"),e.hasAppendedData_&&this.mediaAppends++,this.paused()||this.monitorBuffer_()}else this.logger_("Throwing away un-appended sync request "+j2(e))},s.recordThroughput_=function(e){if(e.duration"u"||(this.subtitlesTrack_=e,"INIT"===this.state&&this.couldBeginLoading_()&&this.init_()),this.subtitlesTrack_},s.remove=function(e,r){B2(e,r,this.subtitlesTrack_)},s.fillBuffer_=function(){var e=this,r=this.chooseNextRequest_();if(r){if(null===this.syncController_.timestampOffsetForTimeline(r.timeline)){return this.syncController_.one("timestampoffset",function(){e.state="READY",e.paused()||e.monitorBuffer_()}),void(this.state="WAITING_ON_TIMELINE")}this.loadSegment_(r)}},s.timestampOffsetForSegment_=function(){return null},s.chooseNextRequest_=function(){return this.skipEmptySegments_(f.prototype.chooseNextRequest_.call(this))},s.skipEmptySegments_=function(e){for(;e&&e.segment.empty;){if(e.mediaIndex+1>=e.playlist.segments.length){e=null;break}e=this.generateSegmentInfo_({playlist:e.playlist,mediaIndex:e.mediaIndex+1,startOfSegment:e.startOfSegment+e.duration,isSyncRequest:e.isSyncRequest})}return e},s.stopForError=function(e){this.error(e),this.state="READY",this.pause(),this.trigger("error")},s.segmentRequestFinished_=function(e,r,u){var p=this;if(this.subtitlesTrack_){if(this.saveTransferStats_(r.stats),!this.pendingSegment_)return this.state="READY",void(this.mediaRequestsAborted+=1);if(e)return e.code===w1_TIMEOUT&&this.handleTimeout_(),e.code===w1_ABORTED?this.mediaRequestsAborted+=1:this.mediaRequestsErrored+=1,void this.stopForError(e);var _=this.pendingSegment_;this.saveBandwidthRelatedStats_(_.duration,r.stats),this.state="APPENDING",this.trigger("appending");var y=_.segment;if(y.map&&(y.map.bytes=r.map.bytes),_.bytes=r.bytes,"function"!=typeof C().WebVTT&&this.subtitlesTrack_&&this.subtitlesTrack_.tech_){var D,j=function(){p.subtitlesTrack_.tech_.off("vttjsloaded",D),p.stopForError({message:"Error loading vtt.js"})};return D=function(){p.subtitlesTrack_.tech_.off("vttjserror",j),p.segmentRequestFinished_(e,r,u)},this.state="WAITING_ON_VTTJS",this.subtitlesTrack_.tech_.one("vttjsloaded",D),void this.subtitlesTrack_.tech_.one("vttjserror",j)}y.requested=!0;try{this.parseVTTCues_(_)}catch(B){return void this.stopForError({message:B.message})}if(this.updateTimeMapping_(_,this.syncController_.timelines[_.timeline],this.playlist_),_.cues.length?_.timingInfo={start:_.cues[0].startTime,end:_.cues[_.cues.length-1].endTime}:_.timingInfo={start:_.startOfSegment,end:_.startOfSegment+_.duration},_.isSyncRequest)return this.trigger("syncinfoupdate"),this.pendingSegment_=null,void(this.state="READY");_.byteLength=_.bytes.byteLength,this.mediaSecondsLoaded+=y.duration,_.cues.forEach(function(B){p.subtitlesTrack_.addCue(p.featuresNativeTextTracks_?new(C().VTTCue)(B.startTime,B.endTime,B.text):B)}),function(o){var s=o.cues;if(s)for(var a=0;a1&&e.push(s[u]);e.length&&e.forEach(function(p){return o.removeCue(p)})}}(this.subtitlesTrack_),this.handleAppendsDone_()}else this.state="READY"},s.handleData_=function(){},s.updateTimingInfoEnd_=function(){},s.parseVTTCues_=function(e){var r,u=!1;"function"==typeof C().TextDecoder?r=new(C().TextDecoder)("utf8"):(r=C().WebVTT.StringDecoder(),u=!0);var p=new(C().WebVTT.Parser)(C(),C().vttjs,r);if(e.cues=[],e.timestampmap={MPEGTS:0,LOCAL:0},p.oncue=e.cues.push.bind(e.cues),p.ontimestampmap=function(D){e.timestampmap=D},p.onparsingerror=function(D){pt.log.warn("Error encountered when parsing cues: "+D.message)},e.segment.map){var _=e.segment.map.bytes;u&&(_=Y3(_)),p.parse(_)}var y=e.bytes;u&&(y=Y3(y)),p.parse(y),p.flush()},s.updateTimeMapping_=function(e,r,u){var p=e.segment;if(r){if(!e.cues.length)return void(p.empty=!0);var _=e.timestampmap,y=_.MPEGTS/hi.ONE_SECOND_IN_TS-_.LOCAL+r.mapping;if(e.cues.forEach(function(B){B.startTime+=y,B.endTime+=y}),!u.syncInfo){var D=e.cues[0].startTime,j=e.cues[e.cues.length-1].startTime;u.syncInfo={mediaSequence:u.mediaSequence+e.mediaIndex,time:Math.min(D,j-p.duration)}}}},o}(b0),E6=function(o,s){for(var a=o.cues,e=0;e=r.adStartTime&&s<=r.adEndTime)return r}return null},T0=[{name:"VOD",run:function(o,s,a,e,r){if(a!==1/0){return{time:0,segmentIndex:0,partIndex:null}}return null}},{name:"ProgramDateTime",run:function(o,s,a,e,r){if(!Object.keys(o.timelineToDatetimeMappings).length)return null;var u=null,p=null,_=Wc(s);r=r||0;for(var y=0;y<_.length;y++){var j=_[s.endList||0===r?y:_.length-(y+1)],B=j.segment,ce=o.timelineToDatetimeMappings[B.timeline];if(ce&&B.dateTimeObject){var me=B.dateTimeObject.getTime()/1e3+ce;if(B.parts&&"number"==typeof j.partIndex)for(var xe=0;xe=De)&&(p=De,u={time:ce,segmentIndex:j.segmentIndex,partIndex:j.partIndex})}}return u}},{name:"Discontinuity",run:function(o,s,a,e,r){var u=null;if(r=r||0,s.discontinuityStarts&&s.discontinuityStarts.length)for(var p=null,_=0;_=B)&&(p=B,u={time:j.time,segmentIndex:y,partIndex:null})}}return u}},{name:"Playlist",run:function(o,s,a,e,r){return s.syncInfo?{time:s.syncInfo.time,segmentIndex:s.syncInfo.mediaSequence-s.mediaSequence,partIndex:null}:null}}],i9=function(f){function o(a){var e;return(e=f.call(this)||this).timelines=[],e.discontinuities=[],e.timelineToDatetimeMappings={},e.logger_=Ks("SyncController"),e}R(o,f);var s=o.prototype;return s.getSyncPoint=function(e,r,u,p){var _=this.runStrategies_(e,r,u,p);return _.length?this.selectSyncPoint_(_,{key:"time",value:p}):null},s.getExpiredTime=function(e,r){if(!e||!e.segments)return null;var u=this.runStrategies_(e,r,e.discontinuitySequence,0);if(!u.length)return null;var p=this.selectSyncPoint_(u,{key:"segmentIndex",value:0});return p.segmentIndex>0&&(p.time*=-1),Math.abs(p.time+L2({defaultDuration:e.targetDuration,durationList:e.segments,startIndex:p.segmentIndex,endIndex:0}))},s.runStrategies_=function(e,r,u,p){for(var _=[],y=0;y86400)pt.log.warn("Not saving expired segment info. Media sequence gap "+u+" is too large.");else for(var p=u-1;p>=0;p--){var _=e.segments[p];if(_&&typeof _.start<"u"){r.syncInfo={mediaSequence:e.mediaSequence+p,time:_.start},this.logger_("playlist refresh sync: [time:"+r.syncInfo.time+", mediaSequence: "+r.syncInfo.mediaSequence+"]"),this.trigger("syncinfoupdate");break}}},s.setDateTimeMappingForStart=function(e){if(this.timelineToDatetimeMappings={},e.segments&&e.segments.length&&e.segments[0].dateTimeObject){var r=e.segments[0],u=r.dateTimeObject.getTime()/1e3;this.timelineToDatetimeMappings[r.timeline]=-u}},s.saveSegmentTimingInfo=function(e){var r=e.segmentInfo,u=e.shouldSaveTimelineMapping,p=this.calculateSegmentTimeMapping_(r,r.timingInfo,u),_=r.segment;p&&(this.saveDiscontinuitySyncInfo_(r),r.playlist.syncInfo||(r.playlist.syncInfo={mediaSequence:r.playlist.mediaSequence+r.mediaIndex,time:_.start}));var y=_.dateTimeObject;_.discontinuity&&u&&y&&(this.timelineToDatetimeMappings[_.timeline]=-y.getTime()/1e3)},s.timestampOffsetForTimeline=function(e){return typeof this.timelines[e]>"u"?null:this.timelines[e].time},s.mappingForTimeline=function(e){return typeof this.timelines[e]>"u"?null:this.timelines[e].mapping},s.calculateSegmentTimeMapping_=function(e,r,u){var D,j,p=e.segment,_=e.part,y=this.timelines[e.timeline];if("number"==typeof e.timestampOffset)y={time:e.startOfSegment,mapping:e.startOfSegment-r.start},u&&(this.timelines[e.timeline]=y,this.trigger("timestampoffset"),this.logger_("time mapping for timeline "+e.timeline+": [time: "+y.time+"] [mapping: "+y.mapping+"]")),D=e.startOfSegment,j=r.end+y.mapping;else{if(!y)return!1;D=r.start+y.mapping,j=r.end+y.mapping}return _&&(_.start=D,_.end=j),(!p.start||Dj){var B=void 0;B=D<0?u.start-L2({defaultDuration:r.targetDuration,durationList:r.segments,startIndex:e.mediaIndex,endIndex:_}):u.end+L2({defaultDuration:r.targetDuration,durationList:r.segments,startIndex:e.mediaIndex+1,endIndex:_}),this.discontinuities[y]={time:B,accuracy:j}}}},s.dispose=function(){this.trigger("dispose"),this.off()},o}(pt.EventTarget),D6=function(f){function o(){var a;return(a=f.call(this)||this).pendingTimelineChanges_={},a.lastTimelineChanges_={},a}R(o,f);var s=o.prototype;return s.clearPendingTimelineChange=function(e){this.pendingTimelineChanges_[e]=null,this.trigger("pendingtimelinechange")},s.pendingTimelineChange=function(e){var r=e.type,u=e.from,p=e.to;return"number"==typeof u&&"number"==typeof p&&(this.pendingTimelineChanges_[r]={type:r,from:u,to:p},this.trigger("pendingtimelinechange")),this.pendingTimelineChanges_[r]},s.lastTimelineChange=function(e){var r=e.type,u=e.from,p=e.to;return"number"==typeof u&&"number"==typeof p&&(this.lastTimelineChanges_[r]={type:r,from:u,to:p},delete this.pendingTimelineChanges_[r],this.trigger("timelinechange")),this.lastTimelineChanges_[r]},s.dispose=function(){this.trigger("dispose"),this.pendingTimelineChanges_={},this.lastTimelineChanges_={},this.off()},o}(pt.EventTarget),r9=ad(e2(function(){function f(me,xe,ht){return me(ht={path:xe,exports:{},require:function(Ft,jt){return function o(){throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs")}(jt??ht.path)}},ht.exports),ht.exports}var s=f(function(me){function xe(_t,Ft){for(var jt=0;jt-1},xe.trigger=function(_t){var Ft=this.listeners[_t];if(Ft)if(2===arguments.length)for(var jt=Ft.length,Ut=0;Ut>7))^Ut]=Ut;for(gn=Mn=0;!Ft[gn];gn^=wn||1,Mn=En[Mn]||1)for(sr=(sr=Mn^Mn<<1^Mn<<2^Mn<<3^Mn<<4)>>8^255&sr^99,Ft[gn]=sr,jt[sr]=gn,$i=16843009*en[Ti=en[wn=en[gn]]]^65537*Ti^257*wn^16843008*gn,Ua=257*en[sr]^16843008*sr,Ut=0;Ut<4;Ut++)ht[Ut][gn]=Ua=Ua<<24^Ua>>>8,_t[Ut][sr]=$i=$i<<24^$i>>>8;for(Ut=0;Ut<5;Ut++)ht[Ut]=ht[Ut].slice(0),_t[Ut]=_t[Ut].slice(0);return xe}()),this._tables=[[_[0][0].slice(),_[0][1].slice(),_[0][2].slice(),_[0][3].slice(),_[0][4].slice()],[_[1][0].slice(),_[1][1].slice(),_[1][2].slice(),_[1][3].slice(),_[1][4].slice()]];var _t,Ft,jt,Ut=this._tables[0][4],gn=this._tables[1],Mn=ht.length,en=1;if(4!==Mn&&6!==Mn&&8!==Mn)throw new Error("Invalid aes key size");var En=ht.slice(0),wn=[];for(this._key=[En,wn],_t=Mn;_t<4*Mn+28;_t++)jt=En[_t-1],(_t%Mn==0||8===Mn&&_t%Mn==4)&&(jt=Ut[jt>>>24]<<24^Ut[jt>>16&255]<<16^Ut[jt>>8&255]<<8^Ut[255&jt],_t%Mn==0&&(jt=jt<<8^jt>>>24^en<<24,en=en<<1^283*(en>>7))),En[_t]=En[_t-Mn]^jt;for(Ft=0;_t;Ft++,_t--)jt=En[3&Ft?_t:_t-4],wn[Ft]=_t<=4||Ft<4?jt:gn[0][Ut[jt>>>24]]^gn[1][Ut[jt>>16&255]]^gn[2][Ut[jt>>8&255]]^gn[3][Ut[255&jt]]}return me.prototype.decrypt=function(_t,Ft,jt,Ut,gn,Mn){var sr,Ua,$i,cs,en=this._key[1],En=_t^en[0],wn=Ut^en[1],Ti=jt^en[2],Nn=Ft^en[3],Z2=en.length/4-2,ds=4,Js=this._tables[1],E1=Js[0],il=Js[1],da=Js[2],I1=Js[3],L1=Js[4];for(cs=0;cs>>24]^il[wn>>16&255]^da[Ti>>8&255]^I1[255&Nn]^en[ds],Ua=E1[wn>>>24]^il[Ti>>16&255]^da[Nn>>8&255]^I1[255&En]^en[ds+1],$i=E1[Ti>>>24]^il[Nn>>16&255]^da[En>>8&255]^I1[255&wn]^en[ds+2],Nn=E1[Nn>>>24]^il[En>>16&255]^da[wn>>8&255]^I1[255&Ti]^en[ds+3],ds+=4,En=sr,wn=Ua,Ti=$i;for(cs=0;cs<4;cs++)gn[(3&-cs)+Mn]=L1[En>>>24]<<24^L1[wn>>16&255]<<16^L1[Ti>>8&255]<<8^L1[255&Nn]^en[ds++],sr=En,En=wn,wn=Ti,Ti=Nn,Nn=sr},me}(),D=function(me){function xe(){var _t;return(_t=me.call(this,r)||this).jobs=[],_t.delay=1,_t.timeout_=null,_t}e(xe,me);var ht=xe.prototype;return ht.processJob_=function(){this.jobs.shift()(),this.jobs.length?this.timeout_=setTimeout(this.processJob_.bind(this),this.delay):this.timeout_=null},ht.push=function(Ft){this.jobs.push(Ft),this.timeout_||(this.timeout_=setTimeout(this.processJob_.bind(this),this.delay))},xe}(r),j=function(xe){return xe<<24|(65280&xe)<<8|(16711680&xe)>>8|xe>>>24},ce=function(){function me(ht,_t,Ft,jt){var Ut=me.STEP,gn=new Int32Array(ht.buffer),Mn=new Uint8Array(ht.byteLength),en=0;for(this.asyncStream_=new D,this.asyncStream_.push(this.decryptChunk_(gn.subarray(en,en+Ut),_t,Ft,Mn)),en=Ut;en>2),jt=new y(Array.prototype.slice.call(ht)),Ut=new Uint8Array(xe.byteLength),gn=new Int32Array(Ut.buffer);for(Mn=_t[0],en=_t[1],En=_t[2],wn=_t[3],$i=0;$i=0&&(s="main-desc"),s},J3=function(o,s){o.abort(),o.pause(),s&&s.activePlaylistLoader&&(s.activePlaylistLoader.pause(),s.activePlaylistLoader=null)},Bu=function(o,s){s.activePlaylistLoader=o,o.load()},E0={AUDIO:function(o,s){return function(){var a=s.segmentLoaders[o],e=s.mediaTypes[o],r=s.blacklistCurrentPlaylist;J3(a,e);var u=e.activeTrack(),p=e.activeGroup(),_=(p.filter(function(j){return j.default})[0]||p[0]).id,y=e.tracks[_];if(u!==y){for(var D in pt.log.warn("Problem encountered loading the alternate audio track.Switching back to default."),e.tracks)e.tracks[D].enabled=e.tracks[D]===y;e.onTrackChanged()}else r({message:"Problem encountered loading the default audio track."})}},SUBTITLES:function(o,s){return function(){var a=s.segmentLoaders[o],e=s.mediaTypes[o];pt.log.warn("Problem encountered loading the subtitle track.Disabling subtitle track."),J3(a,e);var r=e.activeTrack();r&&(r.mode="disabled"),e.onTrackChanged()}}},S6={AUDIO:function(o,s,a){if(s){var e=a.tech,r=a.requestOptions,u=a.segmentLoaders[o];s.on("loadedmetadata",function(){var p=s.media();u.playlist(p,r),(!e.paused()||p.endList&&"none"!==e.preload())&&u.load()}),s.on("loadedplaylist",function(){u.playlist(s.media(),r),e.paused()||u.load()}),s.on("error",E0[o](o,a))}},SUBTITLES:function(o,s,a){var e=a.tech,r=a.requestOptions,u=a.segmentLoaders[o],p=a.mediaTypes[o];s.on("loadedmetadata",function(){var _=s.media();u.playlist(_,r),u.track(p.activeTrack()),(!e.paused()||_.endList&&"none"!==e.preload())&&u.load()}),s.on("loadedplaylist",function(){u.playlist(s.media(),r),e.paused()||u.load()}),s.on("error",E0[o](o,a))}},l9={AUDIO:function(o,s){var a=s.vhs,e=s.sourceType,r=s.segmentLoaders[o],u=s.requestOptions,p=s.master.mediaGroups,_=s.mediaTypes[o],y=_.groups,D=_.tracks,j=_.logger_,B=s.masterPlaylistLoader,ce=A3(B.master);for(var De in(!p[o]||0===Object.keys(p[o]).length)&&(p[o]={main:{default:{default:!0}}},ce&&(p[o].main.default.playlists=B.master.playlists)),p[o])for(var me in y[De]||(y[De]=[]),p[o][De]){var xe=p[o][De][me],ht=void 0;if(ce?(j("AUDIO group '"+De+"' label '"+me+"' is a master playlist"),xe.isMasterPlaylist=!0,ht=null):ht="vhs-json"===e&&xe.playlists?new el(xe.playlists[0],a,u):xe.resolvedUri?new el(xe.resolvedUri,a,u):xe.playlists&&"dash"===e?new l0(xe.playlists[0],a,u,B):null,xe=pt.mergeOptions({id:me,playlistLoader:ht},xe),S6[o](o,xe.playlistLoader,s),y[De].push(xe),typeof D[me]>"u"){var _t=new pt.AudioTrack({id:me,kind:wd(xe),enabled:!1,language:xe.language,default:xe.default,label:me});D[me]=_t}}r.on("error",E0[o](o,s))},SUBTITLES:function(o,s){var a=s.tech,e=s.vhs,r=s.sourceType,u=s.segmentLoaders[o],p=s.requestOptions,_=s.master.mediaGroups,y=s.mediaTypes[o],D=y.groups,j=y.tracks,B=s.masterPlaylistLoader;for(var ce in _[o])for(var De in D[ce]||(D[ce]=[]),_[o][ce])if(!_[o][ce][De].forced){var me=_[o][ce][De],xe=void 0;if("hls"===r)xe=new el(me.resolvedUri,e,p);else if("dash"===r){if(!me.playlists.filter(function(Ft){return Ft.excludeUntil!==1/0}).length)return;xe=new l0(me.playlists[0],e,p,B)}else"vhs-json"===r&&(xe=new el(me.playlists?me.playlists[0]:me.resolvedUri,e,p));if(me=pt.mergeOptions({id:De,playlistLoader:xe},me),S6[o](o,me.playlistLoader,s),D[ce].push(me),typeof j[De]>"u"){var _t=a.addRemoteTextTrack({id:De,kind:"subtitles",default:me.default&&me.autoselect,language:me.language,label:De},!1).track;j[De]=_t}}u.on("error",E0[o](o,s))},"CLOSED-CAPTIONS":function(o,s){var a=s.tech,e=s.master.mediaGroups,r=s.mediaTypes[o],u=r.groups,p=r.tracks;for(var _ in e[o])for(var y in u[_]||(u[_]=[]),e[o][_]){var D=e[o][_][y];if(/^(?:CC|SERVICE)/.test(D.instreamId)){var j=a.options_.vhs&&a.options_.vhs.captionServices||{},B={label:y,language:D.language,instreamId:D.instreamId,default:D.default&&D.autoselect};if(j[B.instreamId]&&(B=pt.mergeOptions(B,j[B.instreamId])),void 0===B.default&&delete B.default,u[_].push(pt.mergeOptions({id:y},D)),typeof p[y]>"u"){var ce=a.addRemoteTextTrack({id:B.instreamId,kind:"captions",default:B.default,language:B.language,label:B.label},!1).track;p[y]=ce}}}}},u9=function f(o,s){for(var a=0;a1&&A3(s.master))for(var y=0;y<_.length;y++){var D=r[_[y]];if(u9(D,u)){p=D;break}}else r.main?p=r.main:1===_.length&&(p=r[_[0]]);return typeof a>"u"?p:null!==a&&p&&p.filter(function(j){return j.id===a.id})[0]||null}}(De,o),s[De].activeTrack=d9[De](De,o),s[De].onGroupChanged=function(o,s){return function(){var a=s.segmentLoaders,e=a[o],r=a.main,u=s.mediaTypes[o],p=u.activeTrack(),_=u.getActiveGroup(),y=u.activePlaylistLoader,D=u.lastGroup_;if((!_||!D||_.id!==D.id)&&(u.lastGroup_=_,u.lastTrack_=p,J3(e,u),_&&!_.isMasterPlaylist)){if(!_.playlistLoader)return void(y&&r.resetEverything());e.resyncLoader(),Bu(_.playlistLoader,u)}}}(De,o),s[De].onGroupChanging=function(o,s){return function(){var a=s.segmentLoaders[o];s.mediaTypes[o].lastGroup_=null,a.abort(),a.pause()}}(De,o),s[De].onTrackChanged=function(o,s){return function(){var a=s.masterPlaylistLoader,e=s.segmentLoaders,r=e[o],u=e.main,p=s.mediaTypes[o],_=p.activeTrack(),y=p.getActiveGroup(),D=p.activePlaylistLoader,j=p.lastTrack_;if((!j||!_||j.id!==_.id)&&(p.lastGroup_=y,p.lastTrack_=_,J3(r,p),y)){if(y.isMasterPlaylist){if(!_||!j||_.id===j.id)return;var B=s.vhs.masterPlaylistController_,ce=B.selectPlaylist();if(B.media()===ce)return;return p.logger_("track change. Switching master audio from "+j.id+" to "+_.id),a.pause(),u.resetEverything(),void B.fastQualityChange_(ce)}if("AUDIO"===o){if(!y.playlistLoader)return u.setAudio(!0),void u.resetEverything();r.setAudio(!0),u.setAudio(!1)}if(D===y.playlistLoader)return void Bu(y.playlistLoader,p);r.track&&r.track(_),r.resetEverything(),Bu(y.playlistLoader,p)}}}(De,o),s[De].getActiveGroup=function(o,s){var a=s.mediaTypes;return function(){var e=a[o].activeTrack();return e?a[o].activeGroup(e):null}}(De,o)});var y=s.AUDIO.activeGroup();if(y){var D=(y.filter(function(De){return De.default})[0]||y[0]).id;s.AUDIO.tracks[D].enabled=!0,s.AUDIO.onGroupChanged(),s.AUDIO.onTrackChanged(),s.AUDIO.getActiveGroup().playlistLoader?(_.setAudio(!1),p.setAudio(!0)):_.setAudio(!0)}a.on("mediachange",function(){["AUDIO","SUBTITLES"].forEach(function(De){return s[De].onGroupChanged()})}),a.on("mediachanging",function(){["AUDIO","SUBTITLES"].forEach(function(De){return s[De].onGroupChanging()})});var B=function(){s.AUDIO.onTrackChanged(),e.trigger({type:"usage",name:"vhs-audio-change"}),e.trigger({type:"usage",name:"hls-audio-change"})};for(var ce in e.audioTracks().addEventListener("change",B),e.remoteTextTracks().addEventListener("change",s.SUBTITLES.onTrackChanged),r.on("dispose",function(){e.audioTracks().removeEventListener("change",B),e.remoteTextTracks().removeEventListener("change",s.SUBTITLES.onTrackChanged)}),e.clearTracks("audio"),s.AUDIO.tracks)e.audioTracks().addTrack(s.AUDIO.tracks[ce])},L0=["mediaRequests","mediaRequestsAborted","mediaRequestsTimedout","mediaRequestsErrored","mediaTransferDuration","mediaBytesTransferred","mediaAppends"],xd=function(o){return this.audioSegmentLoader_[o]+this.mainSegmentLoader_[o]},O6=function(f){function o(a){var e;e=f.call(this)||this;var r=a.src,u=a.handleManifestRedirects,p=a.withCredentials,_=a.tech,y=a.bandwidth,D=a.externVhs,j=a.useCueTags,B=a.blacklistDuration,ce=a.enableLowInitialPlaylist,De=a.sourceType,me=a.cacheEncryptionKeys,xe=a.experimentalBufferBasedABR,ht=a.experimentalLeastPixelDiffSelector,_t=a.captionServices;if(!r)throw new Error("A non-empty playlist URL or JSON manifest string is required");var Ft=a.maxPlaylistRetries;(null===Ft||typeof Ft>"u")&&(Ft=1/0),T1=D,e.experimentalBufferBasedABR=Boolean(xe),e.experimentalLeastPixelDiffSelector=Boolean(ht),e.withCredentials=p,e.tech_=_,e.vhs_=_.vhs,e.sourceType_=De,e.useCueTags_=j,e.blacklistDuration=B,e.maxPlaylistRetries=Ft,e.enableLowInitialPlaylist=ce,e.useCueTags_&&(e.cueTagsTrack_=e.tech_.addTextTrack("metadata","ad-cues"),e.cueTagsTrack_.inBandMetadataTrackDispatchType=""),e.requestOptions_={withCredentials:p,handleManifestRedirects:u,maxPlaylistRetries:Ft,timeout:null},e.on("error",e.pauseLoading),e.mediaTypes_=function(){var o={};return["AUDIO","SUBTITLES","CLOSED-CAPTIONS"].forEach(function(s){o[s]={groups:{},tracks:{},activePlaylistLoader:null,activeGroup:Ys,activeTrack:Ys,getActiveGroup:Ys,onGroupChanged:Ys,onTrackChanged:Ys,lastTrack_:null,logger_:Ks("MediaGroups["+s+"]")}}),o}(),e.mediaSource=new(C().MediaSource),e.handleDurationChange_=e.handleDurationChange_.bind($(e)),e.handleSourceOpen_=e.handleSourceOpen_.bind($(e)),e.handleSourceEnded_=e.handleSourceEnded_.bind($(e)),e.mediaSource.addEventListener("durationchange",e.handleDurationChange_),e.mediaSource.addEventListener("sourceopen",e.handleSourceOpen_),e.mediaSource.addEventListener("sourceended",e.handleSourceEnded_),e.seekable_=pt.createTimeRanges(),e.hasPlayed_=!1,e.syncController_=new i9(a),e.segmentMetadataTrack_=_.addRemoteTextTrack({kind:"metadata",label:"segment-metadata"},!1).track,e.decrypter_=new Md,e.sourceUpdater_=new K3(e.mediaSource),e.inbandTextTracks_={},e.timelineChangeController_=new D6;var jt={vhs:e.vhs_,parse708captions:a.parse708captions,captionServices:_t,mediaSource:e.mediaSource,currentTime:e.tech_.currentTime.bind(e.tech_),seekable:function(){return e.seekable()},seeking:function(){return e.tech_.seeking()},duration:function(){return e.duration()},hasPlayed:function(){return e.hasPlayed_},goalBufferLength:function(){return e.goalBufferLength()},bandwidth:y,syncController:e.syncController_,decrypter:e.decrypter_,sourceType:e.sourceType_,inbandTextTracks:e.inbandTextTracks_,cacheEncryptionKeys:me,sourceUpdater:e.sourceUpdater_,timelineChangeController:e.timelineChangeController_,experimentalExactManifestTimings:a.experimentalExactManifestTimings};e.masterPlaylistLoader_="dash"===e.sourceType_?new l0(r,e.vhs_,e.requestOptions_):new el(r,e.vhs_,e.requestOptions_),e.setupMasterPlaylistLoaderListeners_(),e.mainSegmentLoader_=new b0(pt.mergeOptions(jt,{segmentMetadataTrack:e.segmentMetadataTrack_,loaderType:"main"}),a),e.audioSegmentLoader_=new b0(pt.mergeOptions(jt,{loaderType:"audio"}),a),e.subtitleSegmentLoader_=new T6(pt.mergeOptions(jt,{loaderType:"vtt",featuresNativeTextTracks:e.tech_.featuresNativeTextTracks}),a),e.setupSegmentLoaderListeners_(),e.experimentalBufferBasedABR&&(e.masterPlaylistLoader_.one("loadedplaylist",function(){return e.startABRTimer_()}),e.tech_.on("pause",function(){return e.stopABRTimer_()}),e.tech_.on("play",function(){return e.startABRTimer_()})),L0.forEach(function(gn){e[gn+"_"]=xd.bind($(e),gn)}),e.logger_=Ks("MPC"),e.triggeredFmp4Usage=!1,"none"===e.tech_.preload()?(e.loadOnPlay_=function(){e.loadOnPlay_=null,e.masterPlaylistLoader_.load()},e.tech_.one("play",e.loadOnPlay_)):e.masterPlaylistLoader_.load(),e.timeToLoadedData__=-1,e.mainAppendsToLoadedData__=-1,e.audioAppendsToLoadedData__=-1;var Ut="none"===e.tech_.preload()?"play":"loadstart";return e.tech_.one(Ut,function(){var gn=Date.now();e.tech_.one("loadeddata",function(){e.timeToLoadedData__=Date.now()-gn,e.mainAppendsToLoadedData__=e.mainSegmentLoader_.mediaAppends,e.audioAppendsToLoadedData__=e.audioSegmentLoader_.mediaAppends})}),e}R(o,f);var s=o.prototype;return s.mainAppendsToLoadedData_=function(){return this.mainAppendsToLoadedData__},s.audioAppendsToLoadedData_=function(){return this.audioAppendsToLoadedData__},s.appendsToLoadedData_=function(){var e=this.mainAppendsToLoadedData_(),r=this.audioAppendsToLoadedData_();return-1===e||-1===r?-1:e+r},s.timeToLoadedData_=function(){return this.timeToLoadedData__},s.checkABR_=function(){var e=this.selectPlaylist();e&&this.shouldSwitchToMedia_(e)&&this.switchMedia_(e,"abr")},s.switchMedia_=function(e,r,u){var p=this.media(),_=p&&(p.id||p.uri),y=e.id||e.uri;_&&_!==y&&(this.logger_("switch media "+_+" -> "+y+" from "+r),this.tech_.trigger({type:"usage",name:"vhs-rendition-change-"+r})),this.masterPlaylistLoader_.media(e,u)},s.startABRTimer_=function(){var e=this;this.stopABRTimer_(),this.abrTimer_=C().setInterval(function(){return e.checkABR_()},250)},s.stopABRTimer_=function(){this.tech_.scrubbing&&this.tech_.scrubbing()||(C().clearInterval(this.abrTimer_),this.abrTimer_=null)},s.getAudioTrackPlaylists_=function(){var e=this.master(),r=e&&e.playlists||[];if(!e||!e.mediaGroups||!e.mediaGroups.AUDIO)return r;var _,u=e.mediaGroups.AUDIO,p=Object.keys(u);if(Object.keys(this.mediaTypes_.AUDIO.groups).length)_=this.mediaTypes_.AUDIO.activeTrack();else{var y=u.main||p.length&&u[p[0]];for(var D in y)if(y[D].default){_={label:D};break}}if(!_)return r;var j=[];for(var B in u)if(u[B][_.label]){var ce=u[B][_.label];if(ce.playlists&&ce.playlists.length)j.push.apply(j,ce.playlists);else if(ce.uri)j.push(ce);else if(e.playlists.length)for(var De=0;De1&&(this.tech_.trigger({type:"usage",name:"vhs-alternate-audio"}),this.tech_.trigger({type:"usage",name:"hls-alternate-audio"})),this.useCueTags_&&(this.tech_.trigger({type:"usage",name:"vhs-playlist-cue-tags"}),this.tech_.trigger({type:"usage",name:"hls-playlist-cue-tags"}))},s.shouldSwitchToMedia_=function(e){var r=this.masterPlaylistLoader_.media()||this.masterPlaylistLoader_.pendingMedia_,u=this.tech_.currentTime(),p=this.bufferLowWaterLine(),_=this.bufferHighWaterLine();return function(o){var s=o.currentPlaylist,a=o.buffered,e=o.currentTime,r=o.nextPlaylist,u=o.bufferLowWaterLine,p=o.bufferHighWaterLine,_=o.duration,y=o.experimentalBufferBasedABR,D=o.log;if(!r)return pt.log.warn("We received no playlist to switch to. Please check your stream."),!1;var j="allowing switch "+(s&&s.id||"null")+" -> "+r.id;if(!s)return D(j+" as current playlist is not set"),!0;if(r.id===s.id)return!1;var B=Boolean(X1(a,e).length);if(!s.endList)return B||"number"!=typeof s.partTargetDuration?(D(j+" as current playlist is live"),!0):(D("not "+j+" as current playlist is live llhls, but currentTime isn't in buffered."),!1);var ce=Pu(a,e),De=y?Ho.EXPERIMENTAL_MAX_BUFFER_LOW_WATER_LINE:Ho.MAX_BUFFER_LOW_WATER_LINE;if(_xe)&&ce>=u){var _t=j+" as forwardBuffer >= bufferLowWaterLine ("+ce+" >= "+u+")";return y&&(_t+=" and next bandwidth > current bandwidth ("+me+" > "+xe+")"),D(_t),!0}return D("not "+j+" as no switching criteria met"),!1}({buffered:this.tech_.buffered(),currentTime:u,currentPlaylist:r,nextPlaylist:e,bufferLowWaterLine:p,bufferHighWaterLine:_,duration:this.duration(),experimentalBufferBasedABR:this.experimentalBufferBasedABR,log:this.logger_})},s.setupSegmentLoaderListeners_=function(){var e=this;this.experimentalBufferBasedABR||(this.mainSegmentLoader_.on("bandwidthupdate",function(){var u=e.selectPlaylist();e.shouldSwitchToMedia_(u)&&e.switchMedia_(u,"bandwidthupdate"),e.tech_.trigger("bandwidthupdate")}),this.mainSegmentLoader_.on("progress",function(){e.trigger("progress")})),this.mainSegmentLoader_.on("error",function(){e.blacklistCurrentPlaylist(e.mainSegmentLoader_.error())}),this.mainSegmentLoader_.on("appenderror",function(){e.error=e.mainSegmentLoader_.error_,e.trigger("error")}),this.mainSegmentLoader_.on("syncinfoupdate",function(){e.onSyncInfoUpdate_()}),this.mainSegmentLoader_.on("timestampoffset",function(){e.tech_.trigger({type:"usage",name:"vhs-timestamp-offset"}),e.tech_.trigger({type:"usage",name:"hls-timestamp-offset"})}),this.audioSegmentLoader_.on("syncinfoupdate",function(){e.onSyncInfoUpdate_()}),this.audioSegmentLoader_.on("appenderror",function(){e.error=e.audioSegmentLoader_.error_,e.trigger("error")}),this.mainSegmentLoader_.on("ended",function(){e.logger_("main segment loader ended"),e.onEndOfStream()}),this.mainSegmentLoader_.on("earlyabort",function(u){e.experimentalBufferBasedABR||(e.delegateLoaders_("all",["abort"]),e.blacklistCurrentPlaylist({message:"Aborted early because there isn't enough bandwidth to complete the request without rebuffering."},120))});var r=function(){if(!e.sourceUpdater_.hasCreatedSourceBuffers())return e.tryToCreateSourceBuffers_();var p=e.getCodecsOrExclude_();!p||e.sourceUpdater_.addOrChangeSourceBuffers(p)};this.mainSegmentLoader_.on("trackinfo",r),this.audioSegmentLoader_.on("trackinfo",r),this.mainSegmentLoader_.on("fmp4",function(){e.triggeredFmp4Usage||(e.tech_.trigger({type:"usage",name:"vhs-fmp4"}),e.tech_.trigger({type:"usage",name:"hls-fmp4"}),e.triggeredFmp4Usage=!0)}),this.audioSegmentLoader_.on("fmp4",function(){e.triggeredFmp4Usage||(e.tech_.trigger({type:"usage",name:"vhs-fmp4"}),e.tech_.trigger({type:"usage",name:"hls-fmp4"}),e.triggeredFmp4Usage=!0)}),this.audioSegmentLoader_.on("ended",function(){e.logger_("audioSegmentLoader ended"),e.onEndOfStream()})},s.mediaSecondsLoaded_=function(){return Math.max(this.audioSegmentLoader_.mediaSecondsLoaded+this.mainSegmentLoader_.mediaSecondsLoaded)},s.load=function(){this.mainSegmentLoader_.load(),this.mediaTypes_.AUDIO.activePlaylistLoader&&this.audioSegmentLoader_.load(),this.mediaTypes_.SUBTITLES.activePlaylistLoader&&this.subtitleSegmentLoader_.load()},s.smoothQualityChange_=function(e){void 0===e&&(e=this.selectPlaylist()),this.fastQualityChange_(e)},s.fastQualityChange_=function(e){var r=this;void 0===e&&(e=this.selectPlaylist()),e!==this.masterPlaylistLoader_.media()?(this.switchMedia_(e,"fast-quality"),this.mainSegmentLoader_.resetEverything(function(){pt.browser.IE_VERSION||pt.browser.IS_EDGE?r.tech_.setCurrentTime(r.tech_.currentTime()+.04):r.tech_.setCurrentTime(r.tech_.currentTime())})):this.logger_("skipping fastQualityChange because new media is same as old")},s.play=function(){if(!this.setupFirstPlay()){this.tech_.ended()&&this.tech_.setCurrentTime(0),this.hasPlayed_&&this.load();var e=this.tech_.seekable();if(this.tech_.duration()===1/0&&this.tech_.currentTime()this.maxPlaylistRetries?1/0:Date.now()+1e3*r,u.excludeUntil=j,e.reason&&(u.lastExcludeReason_=e.reason),this.tech_.trigger("blacklistplaylist"),this.tech_.trigger({type:"usage",name:"vhs-rendition-blacklisted"}),this.tech_.trigger({type:"usage",name:"hls-rendition-blacklisted"});var B=this.selectPlaylist();if(!B)return this.error="Playback cannot continue. No available working or supported playlists.",void this.trigger("error");var ce=e.internal?this.logger_:pt.log.warn,De=e.message?" "+e.message:"";ce((e.internal?"Internal problem":"Problem")+" encountered with playlist "+u.id+"."+De+" Switching to playlist "+B.id+"."),B.attributes.AUDIO!==u.attributes.AUDIO&&this.delegateLoaders_("audio",["abort","pause"]),B.attributes.SUBTITLES!==u.attributes.SUBTITLES&&this.delegateLoaders_("subtitle",["abort","pause"]),this.delegateLoaders_("main",["abort","pause"]);var me=B.targetDuration/2*1e3||5e3,xe="number"==typeof B.lastRequest&&Date.now()-B.lastRequest<=me;return this.switchMedia_(B,"exclude",y||xe)},s.pauseLoading=function(){this.delegateLoaders_("all",["abort","pause"]),this.stopABRTimer_()},s.delegateLoaders_=function(e,r){var u=this,p=[],_="all"===e;(_||"main"===e)&&p.push(this.masterPlaylistLoader_);var y=[];(_||"audio"===e)&&y.push("AUDIO"),(_||"subtitle"===e)&&(y.push("CLOSED-CAPTIONS"),y.push("SUBTITLES")),y.forEach(function(D){var j=u.mediaTypes_[D]&&u.mediaTypes_[D].activePlaylistLoader;j&&p.push(j)}),["main","audio","subtitle"].forEach(function(D){var j=u[D+"SegmentLoader_"];j&&(e===D||"all"===e)&&p.push(j)}),p.forEach(function(D){return r.forEach(function(j){"function"==typeof D[j]&&D[j]()})})},s.setCurrentTime=function(e){var r=X1(this.tech_.buffered(),e);return this.masterPlaylistLoader_&&this.masterPlaylistLoader_.media()&&this.masterPlaylistLoader_.media().segments?r&&r.length?e:(this.mainSegmentLoader_.resetEverything(),this.mainSegmentLoader_.abort(),this.mediaTypes_.AUDIO.activePlaylistLoader&&(this.audioSegmentLoader_.resetEverything(),this.audioSegmentLoader_.abort()),this.mediaTypes_.SUBTITLES.activePlaylistLoader&&(this.subtitleSegmentLoader_.resetEverything(),this.subtitleSegmentLoader_.abort()),void this.load()):0},s.duration=function(){if(!this.masterPlaylistLoader_)return 0;var e=this.masterPlaylistLoader_.media();return e?e.endList?this.mediaSource?this.mediaSource.duration:T1.Playlist.duration(e):1/0:0},s.seekable=function(){return this.seekable_},s.onSyncInfoUpdate_=function(){var e;if(this.masterPlaylistLoader_){var r=this.masterPlaylistLoader_.media();if(r){var u=this.syncController_.getExpiredTime(r,this.duration());if(null!==u){var y,D,p=this.masterPlaylistLoader_.master,_=T1.Playlist.seekable(r,u,T1.Playlist.liveEdgeDelay(p,r));if(0!==_.length&&(!this.mediaTypes_.AUDIO.activePlaylistLoader||(r=this.mediaTypes_.AUDIO.activePlaylistLoader.media(),null!==(u=this.syncController_.getExpiredTime(r,this.duration()))&&0!==(e=T1.Playlist.seekable(r,u,T1.Playlist.liveEdgeDelay(p,r))).length)))this.seekable_&&this.seekable_.length&&(y=this.seekable_.end(0),D=this.seekable_.start(0)),e?e.start(0)>_.end(0)||_.start(0)>e.end(0)?this.seekable_=_:this.seekable_=pt.createTimeRanges([[e.start(0)>_.start(0)?e.start(0):_.start(0),e.end(0)<_.end(0)?e.end(0):_.end(0)]]):this.seekable_=_,(!this.seekable_||!this.seekable_.length||this.seekable_.end(0)!==y||this.seekable_.start(0)!==D)&&(this.logger_("seekable updated ["+Gc(this.seekable_)+"]"),this.tech_.trigger("seekablechanged"))}}}},s.updateDuration=function(e){if(this.updateDuration_&&(this.mediaSource.removeEventListener("sourceopen",this.updateDuration_),this.updateDuration_=null),"open"!==this.mediaSource.readyState)return this.updateDuration_=this.updateDuration.bind(this,e),void this.mediaSource.addEventListener("sourceopen",this.updateDuration_);if(e){var r=this.seekable();if(!r.length)return;(isNaN(this.mediaSource.duration)||this.mediaSource.duration0&&(p=Math.max(p,u.end(u.length-1))),this.mediaSource.duration!==p&&this.sourceUpdater_.setDuration(p)}},s.dispose=function(){var e=this;this.trigger("dispose"),this.decrypter_.terminate(),this.masterPlaylistLoader_.dispose(),this.mainSegmentLoader_.dispose(),this.loadOnPlay_&&this.tech_.off("play",this.loadOnPlay_),["AUDIO","SUBTITLES"].forEach(function(r){var u=e.mediaTypes_[r].groups;for(var p in u)u[p].forEach(function(_){_.playlistLoader&&_.playlistLoader.dispose()})}),this.audioSegmentLoader_.dispose(),this.subtitleSegmentLoader_.dispose(),this.sourceUpdater_.dispose(),this.timelineChangeController_.dispose(),this.stopABRTimer_(),this.updateDuration_&&this.mediaSource.removeEventListener("sourceopen",this.updateDuration_),this.mediaSource.removeEventListener("durationchange",this.handleDurationChange_),this.mediaSource.removeEventListener("sourceopen",this.handleSourceOpen_),this.mediaSource.removeEventListener("sourceended",this.handleSourceEnded_),this.off()},s.master=function(){return this.masterPlaylistLoader_.master},s.media=function(){return this.masterPlaylistLoader_.media()||this.initialMedia_},s.areMediaTypesKnown_=function(){var e=!!this.mediaTypes_.AUDIO.activePlaylistLoader,r=!!this.mainSegmentLoader_.getCurrentMediaInfo_(),u=!e||!!this.audioSegmentLoader_.getCurrentMediaInfo_();return!(!r||!u)},s.getCodecsOrExclude_=function(){var e=this,r={main:this.mainSegmentLoader_.getCurrentMediaInfo_()||{},audio:this.audioSegmentLoader_.getCurrentMediaInfo_()||{}};r.video=r.main;var u=F2(this.master(),this.media()),p={},_=!!this.mediaTypes_.AUDIO.activePlaylistLoader;if(r.main.hasVideo&&(p.video=u.video||r.main.videoCodec||"avc1.4d400d"),r.main.isMuxed&&(p.video+=","+(u.audio||r.main.audioCodec||Xt)),(r.main.hasAudio&&!r.main.isMuxed||r.audio.hasAudio||_)&&(p.audio=u.audio||r.main.audioCodec||r.audio.audioCodec||Xt,r.audio.isFmp4=r.main.hasAudio&&!r.main.isMuxed?r.main.isFmp4:r.audio.isFmp4),p.audio||p.video){var j,D={};if(["video","audio"].forEach(function(me){if(p.hasOwnProperty(me)&&!function(xe,ht){return xe?at(ht):fn(ht)}(r[me].isFmp4,p[me])){var xe=r[me].isFmp4?"browser":"muxer";D[xe]=D[xe]||[],D[xe].push(p[me]),"audio"===me&&(j=xe)}}),_&&j&&this.media().attributes.AUDIO){var B=this.media().attributes.AUDIO;this.master().playlists.forEach(function(me){(me.attributes&&me.attributes.AUDIO)===B&&me!==e.media()&&(me.excludeUntil=1/0)}),this.logger_("excluding audio group "+B+" as "+j+' does not support codec(s): "'+p.audio+'"')}if(!Object.keys(D).length){if(this.sourceUpdater_.hasCreatedSourceBuffers()&&!this.sourceUpdater_.canChangeType()){var De=[];if(["video","audio"].forEach(function(me){var xe=(Ln(e.sourceUpdater_.codecs[me]||"")[0]||{}).type,ht=(Ln(p[me]||"")[0]||{}).type;xe&&ht&&xe.toLowerCase()!==ht.toLowerCase()&&De.push('"'+e.sourceUpdater_.codecs[me]+'" -> "'+p[me]+'"')}),De.length)return void this.blacklistCurrentPlaylist({playlist:this.media(),message:"Codec switching not supported: "+De.join(", ")+".",blacklistDuration:1/0,internal:!0})}return p}var ce=Object.keys(D).reduce(function(me,xe){return me&&(me+=", "),me+=xe+' does not support codec(s): "'+D[xe].join(",")+'"'},"")+".";this.blacklistCurrentPlaylist({playlist:this.media(),internal:!0,message:ce,blacklistDuration:1/0})}else this.blacklistCurrentPlaylist({playlist:this.media(),message:"Could not determine codecs for playlist.",blacklistDuration:1/0})},s.tryToCreateSourceBuffers_=function(){if("open"===this.mediaSource.readyState&&!this.sourceUpdater_.hasCreatedSourceBuffers()&&this.areMediaTypesKnown_()){var e=this.getCodecsOrExclude_();if(e){this.sourceUpdater_.createSourceBuffers(e);var r=[e.video,e.audio].filter(Boolean).join(",");this.excludeIncompatibleVariants_(r)}}},s.excludeUnsupportedVariants_=function(){var e=this,r=this.master().playlists,u=[];Object.keys(r).forEach(function(p){var _=r[p];if(-1===u.indexOf(_.id)){u.push(_.id);var y=F2(e.master,_),D=[];y.audio&&!fn(y.audio)&&!at(y.audio)&&D.push("audio codec "+y.audio),y.video&&!fn(y.video)&&!at(y.video)&&D.push("video codec "+y.video),y.text&&"stpp.ttml.im1t"===y.text&&D.push("text codec "+y.text),D.length&&(_.excludeUntil=1/0,e.logger_("excluding "+_.id+" for unsupported: "+D.join(", ")))}})},s.excludeIncompatibleVariants_=function(e){var r=this,u=[],p=this.master().playlists,_=Z3(Ln(e)),y=_0(_),D=_.video&&Ln(_.video)[0]||null,j=_.audio&&Ln(_.audio)[0]||null;Object.keys(p).forEach(function(B){var ce=p[B];if(-1===u.indexOf(ce.id)&&ce.excludeUntil!==1/0){u.push(ce.id);var De=[],me=F2(r.masterPlaylistLoader_.master,ce),xe=_0(me);if(me.audio||me.video){if(xe!==y&&De.push('codec count "'+xe+'" !== "'+y+'"'),!r.sourceUpdater_.canChangeType()){var ht=me.video&&Ln(me.video)[0]||null,_t=me.audio&&Ln(me.audio)[0]||null;ht&&D&&ht.type.toLowerCase()!==D.type.toLowerCase()&&De.push('video codec "'+ht.type+'" !== "'+D.type+'"'),_t&&j&&_t.type.toLowerCase()!==j.type.toLowerCase()&&De.push('audio codec "'+_t.type+'" !== "'+j.type+'"')}De.length&&(ce.excludeUntil=1/0,r.logger_("blacklisting "+ce.id+": "+De.join(" && ")))}}})},s.updateAdCues_=function(e){var r=0,u=this.seekable();u.length&&(r=u.start(0)),function(o,s,a){if(void 0===a&&(a=0),o.segments)for(var r,e=a,u=0;u"u"?p:(e?delete r.disabled:r.disabled=!0,e!==p&&!u&&(a(),e?o.trigger("renditionenabled"):o.trigger("renditiondisabled")),e)}}(o.playlists,s.id,p)},Ed=["seeking","seeked","pause","playing","error"],Id=function(){function f(s){var a=this;this.masterPlaylistController_=s.masterPlaylistController,this.tech_=s.tech,this.seekable=s.seekable,this.allowSeeksWithinUnsafeLiveWindow=s.allowSeeksWithinUnsafeLiveWindow,this.liveRangeSafeTimeDelta=s.liveRangeSafeTimeDelta,this.media=s.media,this.consecutiveUpdates=0,this.lastRecordedTime=null,this.timer_=null,this.checkCurrentTimeTimeout_=null,this.logger_=Ks("PlaybackWatcher"),this.logger_("initialize");var e=function(){return a.monitorCurrentTime_()},r=function(){return a.monitorCurrentTime_()},u=function(){return a.techWaiting_()},p=function(){return a.cancelTimer_()},_=this.masterPlaylistController_,y=["main","subtitle","audio"],D={};y.forEach(function(B){D[B]={reset:function(){return a.resetSegmentDownloads_(B)},updateend:function(){return a.checkSegmentDownloads_(B)}},_[B+"SegmentLoader_"].on("appendsdone",D[B].updateend),_[B+"SegmentLoader_"].on("playlistupdate",D[B].reset),a.tech_.on(["seeked","seeking"],D[B].reset)});var j=function(ce){["main","audio"].forEach(function(De){_[De+"SegmentLoader_"][ce]("appended",a.seekingAppendCheck_)})};this.seekingAppendCheck_=function(){a.fixesBadSeeks_()&&(a.consecutiveUpdates=0,a.lastRecordedTime=a.tech_.currentTime(),j("off"))},this.clearSeekingAppendCheck_=function(){return j("off")},this.watchForBadSeeking_=function(){a.clearSeekingAppendCheck_(),j("on")},this.tech_.on("seeked",this.clearSeekingAppendCheck_),this.tech_.on("seeking",this.watchForBadSeeking_),this.tech_.on("waiting",u),this.tech_.on(Ed,p),this.tech_.on("canplay",r),this.tech_.one("play",e),this.dispose=function(){a.clearSeekingAppendCheck_(),a.logger_("dispose"),a.tech_.off("waiting",u),a.tech_.off(Ed,p),a.tech_.off("canplay",r),a.tech_.off("play",e),a.tech_.off("seeking",a.watchForBadSeeking_),a.tech_.off("seeked",a.clearSeekingAppendCheck_),y.forEach(function(B){_[B+"SegmentLoader_"].off("appendsdone",D[B].updateend),_[B+"SegmentLoader_"].off("playlistupdate",D[B].reset),a.tech_.off(["seeked","seeking"],D[B].reset)}),a.checkCurrentTimeTimeout_&&C().clearTimeout(a.checkCurrentTimeTimeout_),a.cancelTimer_()}}var o=f.prototype;return o.monitorCurrentTime_=function(){this.checkCurrentTime_(),this.checkCurrentTimeTimeout_&&C().clearTimeout(this.checkCurrentTimeTimeout_),this.checkCurrentTimeTimeout_=C().setTimeout(this.monitorCurrentTime_.bind(this),250)},o.resetSegmentDownloads_=function(a){var e=this.masterPlaylistController_[a+"SegmentLoader_"];this[a+"StalledDownloads_"]>0&&this.logger_("resetting possible stalled download count for "+a+" loader"),this[a+"StalledDownloads_"]=0,this[a+"Buffered_"]=e.buffered_()},o.checkSegmentDownloads_=function(a){var e=this.masterPlaylistController_,r=e[a+"SegmentLoader_"],u=r.buffered_(),p=function(o,s){if(o===s)return!1;if(!o&&s||!s&&o||o.length!==s.length)return!0;for(var a=0;a=e.end(e.length-1)))return this.techWaiting_();this.consecutiveUpdates>=5&&a===this.lastRecordedTime?(this.consecutiveUpdates++,this.waiting_()):a===this.lastRecordedTime?this.consecutiveUpdates++:(this.consecutiveUpdates=0,this.lastRecordedTime=a)}},o.cancelTimer_=function(){this.consecutiveUpdates=0,this.timer_&&(this.logger_("cancelTimer_"),clearTimeout(this.timer_)),this.timer_=null},o.fixesBadSeeks_=function(){if(!this.tech_.seeking())return!1;var p,e=this.seekable(),r=this.tech_.currentTime();this.afterSeekableWindow_(e,r,this.media(),this.allowSeeksWithinUnsafeLiveWindow)&&(p=e.end(e.length-1));if(this.beforeSeekableWindow_(e,r)){var y=e.start(0);p=y+(y===e.end(0)?0:M1)}if(typeof p<"u")return this.logger_("Trying to seek outside of seekable at time "+r+" with seekable range "+Gc(e)+". Seeking to "+p+"."),this.tech_.setCurrentTime(p),!0;for(var D=this.masterPlaylistController_.sourceUpdater_,j=this.tech_.buffered(),B=D.audioBuffer?D.audioBuffered():null,ce=D.videoBuffer?D.videoBuffered():null,De=this.media(),me=De.partTargetDuration?De.partTargetDuration:2*(De.targetDuration-wl),xe=[B,ce],ht=0;ht "+r.end(0)+"]. Attempting to resume playback by seeking to the current time."),this.tech_.trigger({type:"usage",name:"vhs-unknown-waiting"}),void this.tech_.trigger({type:"usage",name:"hls-unknown-waiting"})}},o.techWaiting_=function(){var a=this.seekable(),e=this.tech_.currentTime();if(this.tech_.seeking()||null!==this.timer_)return!0;if(this.beforeSeekableWindow_(a,e)){var r=a.end(a.length-1);return this.logger_("Fell out of live window at time "+e+". Seeking to live point (seekable end) "+r),this.cancelTimer_(),this.tech_.setCurrentTime(r),this.tech_.trigger({type:"usage",name:"vhs-live-resync"}),this.tech_.trigger({type:"usage",name:"hls-live-resync"}),!0}var u=this.tech_.vhs.masterPlaylistController_.sourceUpdater_,p=this.tech_.buffered();if(this.videoUnderflow_({audioBuffered:u.audioBuffered(),videoBuffered:u.videoBuffered(),currentTime:e}))return this.cancelTimer_(),this.tech_.setCurrentTime(e),this.tech_.trigger({type:"usage",name:"vhs-video-underflow"}),this.tech_.trigger({type:"usage",name:"hls-video-underflow"}),!0;var y=Ds(p,e);if(y.length>0){var D=y.start(0)-e;return this.logger_("Stopped at "+e+", setting timer for "+D+", seeking to "+y.start(0)),this.cancelTimer_(),this.timer_=setTimeout(this.skipTheGap_.bind(this),1e3*D,e),!0}return!1},o.afterSeekableWindow_=function(a,e,r,u){if(void 0===u&&(u=!1),!a.length)return!1;var p=a.end(a.length-1)+M1;return!r.endList&&u&&(p=a.end(a.length-1)+3*r.targetDuration),e>p},o.beforeSeekableWindow_=function(a,e){return!!(a.length&&a.start(0)>0&&e2)return{start:p,end:_}}return null},f}(),k6={errorInterval:30,getSource:function(o){return o(this.tech({IWillNotUseThisInPlugins:!0}).currentSource_||this.currentSource())}},N6=function f(o,s){var a=0,e=0,r=pt.mergeOptions(k6,s);o.ready(function(){o.trigger({type:"usage",name:"vhs-error-reload-initialized"}),o.trigger({type:"usage",name:"hls-error-reload-initialized"})});var u=function(){e&&o.currentTime(e)},p=function(B){null!=B&&(e=o.duration()!==1/0&&o.currentTime()||0,o.one("loadedmetadata",u),o.src(B),o.trigger({type:"usage",name:"vhs-error-reload"}),o.trigger({type:"usage",name:"hls-error-reload"}),o.play())},_=function(){return Date.now()-a<1e3*r.errorInterval?(o.trigger({type:"usage",name:"vhs-error-reload-canceled"}),void o.trigger({type:"usage",name:"hls-error-reload-canceled"})):r.getSource&&"function"==typeof r.getSource?(a=Date.now(),r.getSource.call(o,p)):void pt.log.error("ERROR: reloadSourceOnError - The option getSource must be a function!")},y=function j(){o.off("loadedmetadata",u),o.off("error",_),o.off("dispose",j)};o.on("error",_),o.on("dispose",y),o.reloadSourceOnError=function(B){y(),f(o,B)}},Go={PlaylistLoader:el,Playlist:Zo,utils:td,STANDARD_PLAYLIST_SELECTOR:md,INITIAL_PLAYLIST_SELECTOR:function(){var o=this,s=this.playlists.master.playlists.filter(Zo.isEnabled);return Tl(s,function(e,r){return C0(e,r)}),s.filter(function(e){return!!F2(o.playlists.master,e).video})[0]||null},lastBandwidthSelector:md,movingAverageBandwidthSelector:function(o){var s=-1,a=-1;if(o<0||o>1)throw new Error("Moving average bandwidth decay must be between 0 and 1.");return function(){var e=this.useDevicePixelRatio&&C().devicePixelRatio||1;return s<0&&(s=this.systemBandwidth,a=this.systemBandwidth),this.systemBandwidth>0&&this.systemBandwidth!==a&&(s=o*this.systemBandwidth+(1-o)*s,a=this.systemBandwidth),gd(this.playlists.master,s,parseInt(q2(this.tech_.el(),"width"),10)*e,parseInt(q2(this.tech_.el(),"height"),10)*e,this.limitRenditionByPlayerDimensions,this.masterPlaylistController_)}},comparePlaylistBandwidth:C0,comparePlaylistResolution:function(o,s){var a,e;return o.attributes.RESOLUTION&&o.attributes.RESOLUTION.width&&(a=o.attributes.RESOLUTION.width),a=a||C().Number.MAX_VALUE,s.attributes.RESOLUTION&&s.attributes.RESOLUTION.width&&(e=s.attributes.RESOLUTION.width),a===(e=e||C().Number.MAX_VALUE)&&o.attributes.BANDWIDTH&&s.attributes.BANDWIDTH?o.attributes.BANDWIDTH-s.attributes.BANDWIDTH:a-e},xhr:J5()};Object.keys(Ho).forEach(function(f){Object.defineProperty(Go,f,{get:function(){return pt.log.warn("using Vhs."+f+" is UNSAFE be sure you know what you are doing"),Ho[f]},set:function(s){pt.log.warn("using Vhs."+f+" is UNSAFE be sure you know what you are doing"),"number"!=typeof s||s<0?pt.log.warn("value of Vhs."+f+" must be greater than or equal to 0"):Ho[f]=s}})});var O0="videojs-vhs",ec=function(o,s){for(var a=s.media(),e=-1,r=0;r=B&&D>=B?Math.max(D,ce):ce}return D},set:function(D){this.masterPlaylistController_.mainSegmentLoader_.bandwidth=D,this.masterPlaylistController_.mainSegmentLoader_.throughput={rate:0,count:0}}},systemBandwidth:{get:function(){var j,D=1/(this.bandwidth||1);return j=this.throughput>0?1/this.throughput:0,Math.floor(1/(D+j))},set:function(){pt.log.error('The "systemBandwidth" property is read-only')}}}),this.options_.bandwidth&&(this.bandwidth=this.options_.bandwidth),this.options_.throughput&&(this.throughput=this.options_.throughput),Object.defineProperties(this.stats,{bandwidth:{get:function(){return u.bandwidth||0},enumerable:!0},mediaRequests:{get:function(){return u.masterPlaylistController_.mediaRequests_()||0},enumerable:!0},mediaRequestsAborted:{get:function(){return u.masterPlaylistController_.mediaRequestsAborted_()||0},enumerable:!0},mediaRequestsTimedout:{get:function(){return u.masterPlaylistController_.mediaRequestsTimedout_()||0},enumerable:!0},mediaRequestsErrored:{get:function(){return u.masterPlaylistController_.mediaRequestsErrored_()||0},enumerable:!0},mediaTransferDuration:{get:function(){return u.masterPlaylistController_.mediaTransferDuration_()||0},enumerable:!0},mediaBytesTransferred:{get:function(){return u.masterPlaylistController_.mediaBytesTransferred_()||0},enumerable:!0},mediaSecondsLoaded:{get:function(){return u.masterPlaylistController_.mediaSecondsLoaded_()||0},enumerable:!0},mediaAppends:{get:function(){return u.masterPlaylistController_.mediaAppends_()||0},enumerable:!0},mainAppendsToLoadedData:{get:function(){return u.masterPlaylistController_.mainAppendsToLoadedData_()||0},enumerable:!0},audioAppendsToLoadedData:{get:function(){return u.masterPlaylistController_.audioAppendsToLoadedData_()||0},enumerable:!0},appendsToLoadedData:{get:function(){return u.masterPlaylistController_.appendsToLoadedData_()||0},enumerable:!0},timeToLoadedData:{get:function(){return u.masterPlaylistController_.timeToLoadedData_()||0},enumerable:!0},buffered:{get:function(){return $l(u.tech_.buffered())},enumerable:!0},currentTime:{get:function(){return u.tech_.currentTime()},enumerable:!0},currentSource:{get:function(){return u.tech_.currentSource_},enumerable:!0},currentTech:{get:function(){return u.tech_.name_},enumerable:!0},duration:{get:function(){return u.tech_.duration()},enumerable:!0},master:{get:function(){return u.playlists.master},enumerable:!0},playerDimensions:{get:function(){return u.tech_.currentDimensions()},enumerable:!0},seekable:{get:function(){return $l(u.tech_.seekable())},enumerable:!0},timestamp:{get:function(){return Date.now()},enumerable:!0},videoPlaybackQuality:{get:function(){return u.tech_.getVideoPlaybackQuality()},enumerable:!0}}),this.tech_.one("canplay",this.masterPlaylistController_.setupFirstPlay.bind(this.masterPlaylistController_)),this.tech_.on("bandwidthupdate",function(){u.options_.useBandwidthFromLocalStorage&&function(o){if(!C().localStorage)return!1;var s=Dd();s=s?pt.mergeOptions(s,o):o;try{C().localStorage.setItem(O0,JSON.stringify(s))}catch{return!1}}({bandwidth:u.bandwidth,throughput:Math.round(u.throughput)})}),this.masterPlaylistController_.on("selectedinitialmedia",function(){!function(o){o.representations=function(){var s=o.masterPlaylistController_.master(),a=A3(s)?o.masterPlaylistController_.getAudioTrackPlaylists_():s.playlists;return a?a.filter(function(e){return!Jc(e)}).map(function(e,r){return new Td(o,e,e.id)}):[]}}(u)}),this.masterPlaylistController_.sourceUpdater_.on("createdsourcebuffers",function(){u.setupEme_()}),this.on(this.masterPlaylistController_,"progress",function(){this.tech_.trigger("progress")}),this.on(this.masterPlaylistController_,"firstplay",function(){this.ignoreNextSeekingEvent_=!0}),this.setupQualityLevels_(),this.tech_.el()&&(this.mediaSourceUrl_=C().URL.createObjectURL(this.masterPlaylistController_.mediaSource),this.tech_.src(this.mediaSourceUrl_))}},s.createKeySessions_=function(){var e=this,r=this.masterPlaylistController_.mediaTypes_.AUDIO.activePlaylistLoader;this.logger_("waiting for EME key session creation"),F6({player:this.player_,sourceKeySystems:this.source_.keySystems,audioMedia:r&&r.media(),mainPlaylists:this.playlists.master.playlists}).then(function(){e.logger_("created EME key session"),e.masterPlaylistController_.sourceUpdater_.initializedEme()}).catch(function(u){e.logger_("error while creating EME key session",u),e.player_.error({message:"Failed to initialize media keys for EME",code:3})})},s.handleWaitingForKey_=function(){this.logger_("waitingforkey fired, attempting to create any new key sessions"),this.createKeySessions_()},s.setupEme_=function(){var e=this,r=this.masterPlaylistController_.mediaTypes_.AUDIO.activePlaylistLoader,u=p9({player:this.player_,sourceKeySystems:this.source_.keySystems,media:this.playlists.media(),audioMedia:r&&r.media()});this.player_.tech_.on("keystatuschange",function(p){"output-restricted"===p.status&&e.masterPlaylistController_.blacklistCurrentPlaylist({playlist:e.masterPlaylistController_.media(),message:"DRM keystatus changed to "+p.status+". Playlist will fail to play. Check for HDCP content.",blacklistDuration:1/0})}),this.handleWaitingForKey_=this.handleWaitingForKey_.bind(this),this.player_.tech_.on("waitingforkey",this.handleWaitingForKey_),11!==pt.browser.IE_VERSION&&u?this.createKeySessions_():this.masterPlaylistController_.sourceUpdater_.initializedEme()},s.setupQualityLevels_=function(){var e=this,r=pt.players[this.tech_.options_.playerId];!r||!r.qualityLevels||this.qualityLevels_||(this.qualityLevels_=r.qualityLevels(),this.masterPlaylistController_.on("selectedinitialmedia",function(){!function(o,s){s.representations().forEach(function(a){o.addQualityLevel(a)}),ec(o,s.playlists)}(e.qualityLevels_,e)}),this.playlists.on("mediachange",function(){ec(e.qualityLevels_,e.playlists)}))},o.version=function(){return{"@videojs/http-streaming":"2.13.1","mux.js":"6.0.1","mpd-parser":"0.21.0","m3u8-parser":"4.7.0","aes-decrypter":"3.1.2"}},s.version=function(){return this.constructor.version()},s.canChangeType=function(){return K3.canChangeType()},s.play=function(){this.masterPlaylistController_.play()},s.setCurrentTime=function(e){this.masterPlaylistController_.setCurrentTime(e)},s.duration=function(){return this.masterPlaylistController_.duration()},s.seekable=function(){return this.masterPlaylistController_.seekable()},s.dispose=function(){this.playbackWatcher_&&this.playbackWatcher_.dispose(),this.masterPlaylistController_&&this.masterPlaylistController_.dispose(),this.qualityLevels_&&this.qualityLevels_.dispose(),this.player_&&(delete this.player_.vhs,delete this.player_.dash,delete this.player_.hls),this.tech_&&this.tech_.vhs&&delete this.tech_.vhs,this.tech_&&delete this.tech_.hls,this.mediaSourceUrl_&&C().URL.revokeObjectURL&&(C().URL.revokeObjectURL(this.mediaSourceUrl_),this.mediaSourceUrl_=null),this.tech_&&this.tech_.off("waitingforkey",this.handleWaitingForKey_),f.prototype.dispose.call(this)},s.convertToProgramTime=function(e,r){return e9({playlist:this.masterPlaylistController_.media(),time:e,callback:r})},s.seekToProgramTime=function(e,r,u,p){return void 0===u&&(u=!0),void 0===p&&(p=2),nd({programTime:e,playlist:this.masterPlaylistController_.media(),retryCount:p,pauseAfterSeek:u,seekTo:this.options_.seekTo,tech:this.options_.tech,callback:r})},o}(pt.getComponent("Component")),nc={name:"videojs-http-streaming",VERSION:"2.13.1",canHandleSource:function(o,s){void 0===s&&(s={});var a=pt.mergeOptions(pt.options,s);return nc.canPlayType(o.type,a)},handleSource:function(o,s,a){void 0===a&&(a={});var e=pt.mergeOptions(pt.options,a);return s.vhs=new tc(o,s,e),pt.hasOwnProperty("hls")||Object.defineProperty(s,"hls",{get:function(){return pt.log.warn("player.tech().hls is deprecated. Use player.tech().vhs instead."),s.vhs},configurable:!0}),s.vhs.xhr=J5(),s.vhs.src(o.src,o.type),s.vhs},canPlayType:function(o,s){void 0===s&&(s={});var a=pt.mergeOptions(pt.options,s),e=a.vhs,r=(e=void 0===e?{}:e).overrideNative,u=void 0===r?!pt.browser.IS_ANY_SAFARI:r,p=a.hls,_=(p=void 0===p?{}:p).overrideNative,y=void 0!==_&&_,D=Me(o);return D&&(!Go.supportsTypeNatively(D)||y||u)?"maybe":""}};(at("avc1.4d400d,mp4a.40.2")&&pt.getTech("Html5").registerSourceHandler(nc,0),pt.VhsHandler=tc,Object.defineProperty(pt,"HlsHandler",{get:function(){return pt.log.warn("videojs.HlsHandler is deprecated. Use videojs.VhsHandler instead."),tc},configurable:!0}),pt.VhsSourceHandler=nc,Object.defineProperty(pt,"HlsSourceHandler",{get:function(){return pt.log.warn("videojs.HlsSourceHandler is deprecated. Use videojs.VhsSourceHandler instead."),nc},configurable:!0}),pt.Vhs=Go,Object.defineProperty(pt,"Hls",{get:function(){return pt.log.warn("videojs.Hls is deprecated. Use videojs.Vhs instead."),Go},configurable:!0}),pt.use||(pt.registerComponent("Hls",Go),pt.registerComponent("Vhs",Go)),pt.options.vhs=pt.options.vhs||{},pt.options.hls=pt.options.hls||{},pt.getPlugin&&pt.getPlugin("reloadSourceOnError"))||(pt.registerPlugin||pt.plugin)("reloadSourceOnError",function(o){N6(this,o)});const B6=pt},1256:(vt,_e,w)=>{"use strict";var t=w(9155),C=w(7314),F=w.n(C); +/*! @name videojs-contrib-quality-levels @version 2.1.0 @license Apache-2.0 */function N(Ne){if(void 0===Ne)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return Ne}var G=function Ne(ke){var Re=this;if(t.Z.browser.IS_IE8)for(var fe in Re=F().createElement("custom"),Ne.prototype)"constructor"!==fe&&(Re[fe]=Ne.prototype[fe]);return Re.id=ke.id,Re.label=Re.id,Re.width=ke.width,Re.height=ke.height,Re.bitrate=ke.bandwidth,Re.enabled_=ke.enabled,Object.defineProperty(Re,"enabled",{get:function(){return Re.enabled_()},set:function(pe){Re.enabled_(pe)}}),Re},K=function(Ne){function ke(){var fe,de=N(N(fe=Ne.call(this)||this));if(t.Z.browser.IS_IE8)for(var pe in de=F().createElement("custom"),ke.prototype)"constructor"!==pe&&(de[pe]=ke.prototype[pe]);return de.levels_=[],de.selectedIndex_=-1,Object.defineProperty(de,"selectedIndex",{get:function(){return de.selectedIndex_}}),Object.defineProperty(de,"length",{get:function(){return de.levels_.length}}),de||N(fe)}!function U(Ne,ke){Ne.prototype=Object.create(ke.prototype),Ne.prototype.constructor=Ne,Ne.__proto__=ke}(ke,Ne);var Re=ke.prototype;return Re.addQualityLevel=function(de){var pe=this.getQualityLevelById(de.id);if(pe)return pe;var Pe=this.levels_.length;return pe=new G(de),""+Pe in this||Object.defineProperty(this,Pe,{get:function(){return this.levels_[Pe]}}),this.levels_.push(pe),this.trigger({qualityLevel:pe,type:"addqualitylevel"}),pe},Re.removeQualityLevel=function(de){for(var pe=null,Pe=0,et=this.length;PePe&&this.selectedIndex_--;break}return pe&&this.trigger({qualityLevel:de,type:"removequalitylevel"}),pe},Re.getQualityLevelById=function(de){for(var pe=0,Pe=this.length;pe{"use strict";w.d(_e,{Z:()=>Ne});var t=w(9155);function F(ke,Re){ke.prototype=Object.create(Re.prototype),ke.prototype.constructor=ke,ke.__proto__=Re}function U(ke){if(void 0===ke)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return ke}var N=t.Z.getComponent("MenuItem"),G=t.Z.getComponent("Component"),K=function(ke){function Re(de,pe){return pe.selectable=!0,pe.multiSelectable=!1,ke.call(this,de,pe)||this}F(Re,ke);var fe=Re.prototype;return fe.handleClick=function(){var pe=this.options_;console.log("Changing quality to:",pe.label),ke.prototype.handleClick.call(this);for(var Pe=this.player().qualityLevels(),et=0;et=0)&&(et.push(He),pe.push(new K(this.player_,{label:He,index:We,selected:Ie,sortVal:T})))}return Pe.length>1&&pe.push(new K(this.player_,{label:"Auto",index:Pe.length,selected:!1,sortVal:99999})),pe.sort(function(Z,Ce){return Z.options_.sortValCe.options_.sortVal?-1:0}),pe},Re}($),R={},ae=t.Z.registerPlugin||t.Z.plugin,Be=function(Re){var fe=this;this.ready(function(){!function(Re,fe){if(Re.addClass("vjs-http-source-selector"),console.log("videojs-http-source-selector initialized!"),console.log("player.techName_:"+Re.techName_),"Html5"!=Re.techName_)return!1;Re.on(["loadedmetadata"],function(de){if(Re.qualityLevels(),t.Z.log("loadmetadata event"),"undefined"==Re.videojs_http_source_selector_initialized||1==Re.videojs_http_source_selector_initialized)console.log("player.videojs_http_source_selector_initialized == true");else{console.log("player.videojs_http_source_selector_initialized == false"),Re.videojs_http_source_selector_initialized=!0;var Pe=Re.controlBar,et=Pe.getChild("fullscreenToggle").el();Pe.el().insertBefore(Pe.addChild("SourceMenuButton").el(),et)}})}(fe,t.Z.mergeOptions(R,Re))}),t.Z.registerComponent("SourceMenuButton",le),t.Z.registerComponent("SourceMenuItem",K)};ae("httpSourceSelector",Be),Be.VERSION="1.1.6";const Ne=Be},2920:(vt,_e,w)=>{var t=w(1473),C=vt.exports={WebVTT:w(3792),VTTCue:w(8838),VTTRegion:w(9643)};t.vttjs=C,t.WebVTT=C.WebVTT;var F=C.VTTCue,U=C.VTTRegion,N=t.VTTCue,G=t.VTTRegion;C.shim=function(){t.VTTCue=F,t.VTTRegion=U},C.restore=function(){t.VTTCue=N,t.VTTRegion=G},t.VTTCue||C.shim()},3792:(vt,_e,w)=>{var t=w(7314),C=Object.create||function(){function T(){}return function(Z){if(1!==arguments.length)throw new Error("Object.create shim only accepts one parameter.");return T.prototype=Z,new T}}();function F(T,Z){this.name="ParsingError",this.code=T.code,this.message=Z||T.message}function U(T){function Z(Te,Qe,st,bt){return 3600*(0|Te)+60*(0|Qe)+(0|st)+(0|bt)/1e3}var Ce=T.match(/^(\d+):(\d{1,2})(:\d{1,2})?\.(\d{3})/);return Ce?Ce[3]?Z(Ce[1],Ce[2],Ce[3].replace(":",""),Ce[4]):Ce[1]>59?Z(Ce[1],Ce[2],0,Ce[4]):Z(0,Ce[1],Ce[2],Ce[4]):null}function N(){this.values=C(null)}function G(T,Z,Ce,Te){var Qe=Te?T.split(Te):[T];for(var st in Qe)if("string"==typeof Qe[st]){var bt=Qe[st].split(Ce);if(2===bt.length)Z(bt[0].trim(),bt[1].trim())}}function K(T,Z,Ce){var Te=T;function Qe(){var Tt=U(T);if(null===Tt)throw new F(F.Errors.BadTimeStamp,"Malformed timestamp: "+Te);return T=T.replace(/^[^\sa-zA-Z-]+/,""),Tt}function bt(){T=T.replace(/^\s+/,"")}if(bt(),Z.startTime=Qe(),bt(),"--\x3e"!==T.substr(0,3))throw new F(F.Errors.BadTimeStamp,"Malformed time stamp (time stamps must be separated by '--\x3e'): "+Te);T=T.substr(3),bt(),Z.endTime=Qe(),bt(),function st(Tt,wt){var Dt=new N;G(Tt,function(Mt,St){switch(Mt){case"region":for(var Gt=Ce.length-1;Gt>=0;Gt--)if(Ce[Gt].id===St){Dt.set(Mt,Ce[Gt].region);break}break;case"vertical":Dt.alt(Mt,St,["rl","lr"]);break;case"line":var on=St.split(","),Bt=on[0];Dt.integer(Mt,Bt),Dt.percent(Mt,Bt)&&Dt.set("snapToLines",!1),Dt.alt(Mt,Bt,["auto"]),2===on.length&&Dt.alt("lineAlign",on[1],["start","center","end"]);break;case"position":on=St.split(","),Dt.percent(Mt,on[0]),2===on.length&&Dt.alt("positionAlign",on[1],["start","center","end"]);break;case"size":Dt.percent(Mt,St);break;case"align":Dt.alt(Mt,St,["start","center","end","left","right"])}},/:/,/\s/),wt.region=Dt.get("region",null),wt.vertical=Dt.get("vertical","");try{wt.line=Dt.get("line","auto")}catch{}wt.lineAlign=Dt.get("lineAlign","start"),wt.snapToLines=Dt.get("snapToLines",!0),wt.size=Dt.get("size",100);try{wt.align=Dt.get("align","center")}catch{wt.align=Dt.get("align","middle")}try{wt.position=Dt.get("position","auto")}catch{wt.position=Dt.get("position",{start:0,left:0,center:50,middle:50,end:100,right:100},wt.align)}wt.positionAlign=Dt.get("positionAlign",{start:"start",left:"start",center:"center",middle:"center",end:"end",right:"end"},wt.align)}(T,Z)}F.prototype=C(Error.prototype),F.prototype.constructor=F,F.Errors={BadSignature:{code:0,message:"Malformed WebVTT signature."},BadTimeStamp:{code:1,message:"Malformed time stamp."}},N.prototype={set:function(T,Z){!this.get(T)&&""!==Z&&(this.values[T]=Z)},get:function(T,Z,Ce){return Ce?this.has(T)?this.values[T]:Z[Ce]:this.has(T)?this.values[T]:Z},has:function(T){return T in this.values},alt:function(T,Z,Ce){for(var Te=0;Te=0&&Z<=100))&&(this.set(T,Z),!0)}};var $=t.createElement&&t.createElement("textarea"),le={c:"span",i:"i",b:"b",u:"u",ruby:"ruby",rt:"rt",v:"span",lang:"span"},R={white:"rgba(255,255,255,1)",lime:"rgba(0,255,0,1)",cyan:"rgba(0,255,255,1)",red:"rgba(255,0,0,1)",yellow:"rgba(255,255,0,1)",magenta:"rgba(255,0,255,1)",blue:"rgba(0,0,255,1)",black:"rgba(0,0,0,1)"},ae={v:"title",lang:"lang"},be={rt:"ruby"};function Be(T,Z){function Ce(){if(!Z)return null;var Qt=Z.match(/^([^<]*)(<[^>]*>?)?/);return function Bt(Rt){return Z=Z.substr(Rt.length),Rt}(Qt[1]?Qt[1]:Qt[2])}function Te(Bt){return $.innerHTML=Bt,Bt=$.textContent,$.textContent="",Bt}function st(Bt,Qt){var Rt=le[Bt];if(!Rt)return null;var _n=T.document.createElement(Rt),Ln=ae[Bt];return Ln&&Qt&&(_n[Ln]=Qt.trim()),_n}for(var wt,bt=T.document.createElement("div"),Tt=bt,Dt=[];null!==(wt=Ce());)if("<"!==wt[0])Tt.appendChild(T.document.createTextNode(Te(wt)));else{if("/"===wt[1]){Dt.length&&Dt[Dt.length-1]===wt.substr(2).replace(">","")&&(Dt.pop(),Tt=Tt.parentNode);continue}var St,Mt=U(wt.substr(1,wt.length-2));if(Mt){St=T.document.createProcessingInstruction("timestamp",Mt),Tt.appendChild(St);continue}var Gt=wt.match(/^<([^.\s/0-9>]+)(\.[^\s\\>]+)?([^>\\]+)?(\\?)>?$/);if(!Gt||!(St=st(Gt[1],Gt[3]))||(Bt=Tt,be[(Qt=St).localName]&&be[Qt.localName]!==Bt.localName))continue;if(Gt[2]){var on=Gt[2].split(".");on.forEach(function(Bt){var Qt=/^bg_/.test(Bt),Rt=Qt?Bt.slice(3):Bt;if(R.hasOwnProperty(Rt)){var _n=Qt?"background-color":"color",Ln=R[Rt];St.style[_n]=Ln}}),St.className=on.join(" ")}Dt.push(Gt[1]),Tt.appendChild(St),Tt=St}var Bt,Qt;return bt}var Ne=[[1470,1470],[1472,1472],[1475,1475],[1478,1478],[1488,1514],[1520,1524],[1544,1544],[1547,1547],[1549,1549],[1563,1563],[1566,1610],[1645,1647],[1649,1749],[1765,1766],[1774,1775],[1786,1805],[1807,1808],[1810,1839],[1869,1957],[1969,1969],[1984,2026],[2036,2037],[2042,2042],[2048,2069],[2074,2074],[2084,2084],[2088,2088],[2096,2110],[2112,2136],[2142,2142],[2208,2208],[2210,2220],[8207,8207],[64285,64285],[64287,64296],[64298,64310],[64312,64316],[64318,64318],[64320,64321],[64323,64324],[64326,64449],[64467,64829],[64848,64911],[64914,64967],[65008,65020],[65136,65140],[65142,65276],[67584,67589],[67592,67592],[67594,67637],[67639,67640],[67644,67644],[67647,67669],[67671,67679],[67840,67867],[67872,67897],[67903,67903],[67968,68023],[68030,68031],[68096,68096],[68112,68115],[68117,68119],[68121,68147],[68160,68167],[68176,68184],[68192,68223],[68352,68405],[68416,68437],[68440,68466],[68472,68479],[68608,68680],[126464,126467],[126469,126495],[126497,126498],[126500,126500],[126503,126503],[126505,126514],[126516,126519],[126521,126521],[126523,126523],[126530,126530],[126535,126535],[126537,126537],[126539,126539],[126541,126543],[126545,126546],[126548,126548],[126551,126551],[126553,126553],[126555,126555],[126557,126557],[126559,126559],[126561,126562],[126564,126564],[126567,126570],[126572,126578],[126580,126583],[126585,126588],[126590,126590],[126592,126601],[126603,126619],[126625,126627],[126629,126633],[126635,126651],[1114109,1114109]];function ke(T){for(var Z=0;Z=Ce[0]&&T<=Ce[1])return!0}return!1}function Re(T){var Z=[],Ce="";if(!T||!T.childNodes)return"ltr";function Qe(Tt,wt){for(var Dt=wt.childNodes.length-1;Dt>=0;Dt--)Tt.push(wt.childNodes[Dt])}function st(Tt){if(!Tt||!Tt.length)return null;var wt=Tt.pop(),Dt=wt.textContent||wt.innerText;if(Dt){var Mt=Dt.match(/^.*(\n|\r)/);return Mt?(Tt.length=0,Mt[0]):Dt}return"ruby"===wt.tagName?st(Tt):wt.childNodes?(Qe(Tt,wt),st(Tt)):void 0}for(Qe(Z,T);Ce=st(Z);)for(var bt=0;bt=0&&T.line<=100))return T.line;if(!T.track||!T.track.textTrackList||!T.track.textTrackList.mediaElement)return-1;for(var Z=T.track,Ce=Z.textTrackList,Te=0,Qe=0;QeGt&&(St=St<0?-1:1,St*=Math.ceil(Gt/Mt)*Mt),Tt<0&&(St+=""===bt.vertical?Ce.height:Ce.width,wt=wt.reverse()),st.move(on,St)}else{var Bt=st.lineHeight/Ce.height*100;switch(bt.lineAlign){case"center":Tt-=Bt/2;break;case"end":Tt-=Bt}switch(bt.vertical){case"":Z.applyStyles({top:Z.formatStyle(Tt,"%")});break;case"rl":Z.applyStyles({left:Z.formatStyle(Tt,"%")});break;case"lr":Z.applyStyles({right:Z.formatStyle(Tt,"%")})}wt=["+y","-x","+x","-y"],st=new Pe(Z)}var Qt=function Qe(Rt,_n){for(var Ln,ie=new Pe(Rt),yt=1,Xe=0;Xe<_n.length;Xe++){for(;Rt.overlapsOppositeAxis(Ce,_n[Xe])||Rt.within(Ce)&&Rt.overlapsAny(Te);)Rt.move(_n[Xe]);if(Rt.within(Ce))return Rt;var lt=Rt.intersectPercentage(Ce);yt>lt&&(Ln=new Pe(Rt),yt=lt),Rt=new Pe(ie)}return Ln||ie}(st,wt);Z.move(Qt.toCSSCompatValues(Ce))}function $e(){}de.prototype.applyStyles=function(T,Z){for(var Ce in Z=Z||this.div,T)T.hasOwnProperty(Ce)&&(Z.style[Ce]=T[Ce])},de.prototype.formatStyle=function(T,Z){return 0===T?0:T+Z},pe.prototype=C(de.prototype),pe.prototype.constructor=pe,Pe.prototype.move=function(T,Z){switch(Z=void 0!==Z?Z:this.lineHeight,T){case"+x":this.left+=Z,this.right+=Z;break;case"-x":this.left-=Z,this.right-=Z;break;case"+y":this.top+=Z,this.bottom+=Z;break;case"-y":this.top-=Z,this.bottom-=Z}},Pe.prototype.overlaps=function(T){return this.leftT.left&&this.topT.top},Pe.prototype.overlapsAny=function(T){for(var Z=0;Z=T.top&&this.bottom<=T.bottom&&this.left>=T.left&&this.right<=T.right},Pe.prototype.overlapsOppositeAxis=function(T,Z){switch(Z){case"+x":return this.leftT.right;case"+y":return this.topT.bottom}},Pe.prototype.intersectPercentage=function(T){return Math.max(0,Math.min(this.right,T.right)-Math.max(this.left,T.left))*Math.max(0,Math.min(this.bottom,T.bottom)-Math.max(this.top,T.top))/(this.height*this.width)},Pe.prototype.toCSSCompatValues=function(T){return{top:this.top-T.top,bottom:T.bottom-this.bottom,left:this.left-T.left,right:T.right-this.right,height:this.height,width:this.width}},Pe.getSimpleBoxPosition=function(T){var Z=T.div?T.div.offsetHeight:T.tagName?T.offsetHeight:0,Ce=T.div?T.div.offsetWidth:T.tagName?T.offsetWidth:0,Te=T.div?T.div.offsetTop:T.tagName?T.offsetTop:0;return{left:(T=T.div?T.div.getBoundingClientRect():T.tagName?T.getBoundingClientRect():T).left,right:T.right,top:T.top||Te,height:T.height||Z,bottom:T.bottom||Te+(T.height||Z),width:T.width||Ce}},$e.StringDecoder=function(){return{decode:function(T){if(!T)return"";if("string"!=typeof T)throw new Error("Error - expected string data.");return decodeURIComponent(encodeURIComponent(T))}}},$e.convertCueToDOMTree=function(T,Z){return T&&Z?Be(T,Z):null};$e.processCues=function(T,Z,Ce){if(!T||!Z||!Ce)return null;for(;Ce.firstChild;)Ce.removeChild(Ce.firstChild);var Te=T.document.createElement("div");if(Te.style.position="absolute",Te.style.left="0",Te.style.right="0",Te.style.top="0",Te.style.bottom="0",Te.style.margin="1.5%",Ce.appendChild(Te),function Qe(Mt){for(var St=0;St{var w={"":1,lr:1,rl:1},t={start:1,center:1,end:1,left:1,right:1,auto:1,"line-left":1,"line-right":1};function F(N){return"string"==typeof N&&(!!t[N.toLowerCase()]&&N.toLowerCase())}function U(N,G,K){this.hasBeenReset=!1;var $="",le=!1,R=N,ae=G,be=K,Be=null,Ne="",ke=!0,Re="auto",fe="start",de="auto",pe="auto",Pe=100,et="center";Object.defineProperties(this,{id:{enumerable:!0,get:function(){return $},set:function($e){$=""+$e}},pauseOnExit:{enumerable:!0,get:function(){return le},set:function($e){le=!!$e}},startTime:{enumerable:!0,get:function(){return R},set:function($e){if("number"!=typeof $e)throw new TypeError("Start time must be set to a number.");R=$e,this.hasBeenReset=!0}},endTime:{enumerable:!0,get:function(){return ae},set:function($e){if("number"!=typeof $e)throw new TypeError("End time must be set to a number.");ae=$e,this.hasBeenReset=!0}},text:{enumerable:!0,get:function(){return be},set:function($e){be=""+$e,this.hasBeenReset=!0}},region:{enumerable:!0,get:function(){return Be},set:function($e){Be=$e,this.hasBeenReset=!0}},vertical:{enumerable:!0,get:function(){return Ne},set:function($e){var We=function C(N){return"string"==typeof N&&!!w[N.toLowerCase()]&&N.toLowerCase()}($e);if(!1===We)throw new SyntaxError("Vertical: an invalid or illegal direction string was specified.");Ne=We,this.hasBeenReset=!0}},snapToLines:{enumerable:!0,get:function(){return ke},set:function($e){ke=!!$e,this.hasBeenReset=!0}},line:{enumerable:!0,get:function(){return Re},set:function($e){if("number"!=typeof $e&&"auto"!==$e)throw new SyntaxError("Line: an invalid number or illegal string was specified.");Re=$e,this.hasBeenReset=!0}},lineAlign:{enumerable:!0,get:function(){return fe},set:function($e){var We=F($e);We?(fe=We,this.hasBeenReset=!0):console.warn("lineAlign: an invalid or illegal string was specified.")}},position:{enumerable:!0,get:function(){return de},set:function($e){if($e<0||$e>100)throw new Error("Position must be between 0 and 100.");de=$e,this.hasBeenReset=!0}},positionAlign:{enumerable:!0,get:function(){return pe},set:function($e){var We=F($e);We?(pe=We,this.hasBeenReset=!0):console.warn("positionAlign: an invalid or illegal string was specified.")}},size:{enumerable:!0,get:function(){return Pe},set:function($e){if($e<0||$e>100)throw new Error("Size must be between 0 and 100.");Pe=$e,this.hasBeenReset=!0}},align:{enumerable:!0,get:function(){return et},set:function($e){var We=F($e);if(!We)throw new SyntaxError("align: an invalid or illegal alignment string was specified.");et=We,this.hasBeenReset=!0}}}),this.displayState=void 0}U.prototype.getCueAsHTML=function(){return WebVTT.convertCueToDOMTree(window,this.text)},vt.exports=U},9643:vt=>{var _e={"":!0,up:!0};function t(F){return"number"==typeof F&&F>=0&&F<=100}vt.exports=function C(){var F=100,U=3,N=0,G=100,K=0,$=100,le="";Object.defineProperties(this,{width:{enumerable:!0,get:function(){return F},set:function(R){if(!t(R))throw new Error("Width must be between 0 and 100.");F=R}},lines:{enumerable:!0,get:function(){return U},set:function(R){if("number"!=typeof R)throw new TypeError("Lines must be set to a number.");U=R}},regionAnchorY:{enumerable:!0,get:function(){return G},set:function(R){if(!t(R))throw new Error("RegionAnchorX must be between 0 and 100.");G=R}},regionAnchorX:{enumerable:!0,get:function(){return N},set:function(R){if(!t(R))throw new Error("RegionAnchorY must be between 0 and 100.");N=R}},viewportAnchorY:{enumerable:!0,get:function(){return $},set:function(R){if(!t(R))throw new Error("ViewportAnchorY must be between 0 and 100.");$=R}},viewportAnchorX:{enumerable:!0,get:function(){return K},set:function(R){if(!t(R))throw new Error("ViewportAnchorX must be between 0 and 100.");K=R}},scroll:{enumerable:!0,get:function(){return le},set:function(R){var ae=function w(F){return"string"==typeof F&&!!_e[F.toLowerCase()]&&F.toLowerCase()}(R);!1===ae?console.warn("Scroll: an invalid or illegal string was specified."):le=ae}}})}},7387:(vt,_e,w)=>{"use strict";w.d(_e,{T_:()=>Sa,uY:()=>_2,N3:()=>ia,ye:()=>Ka,bf:()=>_a,Z2:()=>ra,vM:()=>Pa});var t=w(8008),C=w(4666),F=w(2508);function U(z){if(!z)return[];if(Array.isArray(z))return z;if(void 0!==z.nodeType)return[z];if("string"==typeof z&&(z=document.querySelectorAll(z)),void 0!==z.length)return[].slice.call(z,0);throw new TypeError("unexpected input "+String(z))}function N(z){var A=z.context,te=z.label,ve=void 0===te?"context-to-element":te,Ae=z.resolveDocument,tt=z.defaultToDocument,tn=U(A)[0];if(Ae&&tn&&tn.nodeType===Node.DOCUMENT_NODE&&(tn=tn.documentElement),!tn&&tt)return document.documentElement;if(!tn)throw new TypeError(ve+" requires valid options.context");if(tn.nodeType!==Node.ELEMENT_NODE&&tn.nodeType!==Node.DOCUMENT_FRAGMENT_NODE)throw new TypeError(ve+" requires options.context to be an Element");return tn}function G(){for(var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=[],ve=N({label:"get/parents",context:A});ve;)te.push(ve),(ve=ve.parentNode)&&ve.nodeType!==Node.ELEMENT_NODE&&(ve=null);return te}var K=["matches","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector"],$=null;function R(z,A){return $||function le(z){K.some(function(A){return!!z[A]&&($=A,!0)})}(z),z[$](A)}var ae=w(8338),be=w.n(ae),Be=JSON.parse(JSON.stringify(be())),Ne=Be.os.family||"",ke="Android"===Ne,Re="Windows"===Ne.slice(0,7),fe="OS X"===Ne,de="iOS"===Ne,pe="Blink"===Be.layout,Pe="Gecko"===Be.layout,et="Trident"===Be.layout,$e="EdgeHTML"===Be.layout,We="WebKit"===Be.layout,Ie=parseFloat(Be.version),He=Math.floor(Ie);Be.majorVersion=He,Be.is={ANDROID:ke,WINDOWS:Re,OSX:fe,IOS:de,BLINK:pe,GECKO:Pe,TRIDENT:et,EDGE:$e,WEBKIT:We,IE9:et&&9===He,IE10:et&&10===He,IE11:et&&11===He};const T=Be;function Qe(z){var A=function Z(){var z={activeElement:document.activeElement,windowScrollTop:window.scrollTop,windowScrollLeft:window.scrollLeft,bodyScrollTop:document.body.scrollTop,bodyScrollLeft:document.body.scrollLeft},A=document.createElement("iframe");A.setAttribute("style","position:absolute; position:fixed; top:0; left:-2px; width:1px; height:1px; overflow:hidden;"),A.setAttribute("aria-live","off"),A.setAttribute("aria-busy","true"),A.setAttribute("aria-hidden","true"),document.body.appendChild(A);var te=A.contentWindow,ve=te.document;ve.open(),ve.close();var Ae=ve.createElement("div");return ve.body.appendChild(Ae),z.iframe=A,z.wrapper=Ae,z.window=te,z.document=ve,z}(),te={};return Object.keys(z).map(function(ve){te[ve]=function Ce(z,A){z.wrapper.innerHTML="";var te="string"==typeof A.element?z.document.createElement(A.element):A.element(z.wrapper,z.document),ve=A.mutate&&A.mutate(te,z.wrapper,z.document);return!ve&&!1!==ve&&(ve=te),!te.parentNode&&z.wrapper.appendChild(te),ve&&ve.focus&&ve.focus(),A.validate?A.validate(te,ve,z.document):z.document.activeElement===ve}(A,z[ve])}),function Te(z){z.activeElement===document.body?(document.activeElement&&document.activeElement.blur&&document.activeElement.blur(),T.is.IE10&&document.body.focus()):z.activeElement&&z.activeElement.focus&&z.activeElement.focus(),document.body.removeChild(z.iframe),window.scrollTop=z.windowScrollTop,window.scrollLeft=z.windowScrollLeft,document.body.scrollTop=z.bodyScrollTop,document.body.scrollLeft=z.bodyScrollLeft}(A),te}var Dt=typeof window<"u"&&window.navigator.userAgent||"",Mt="ally-supports-cache",St=function Tt(z){var A=void 0;try{A=(A=window.localStorage&&window.localStorage.getItem(z))?JSON.parse(A):{}}catch{A={}}return A}(Mt);(St.userAgent!==Dt||"1.4.1"!==St.version)&&(St={}),St.userAgent=Dt,St.version="1.4.1";const Gt_get=function(){return St},Gt_set=function(A){Object.keys(A).forEach(function(te){St[te]=A[te]}),St.time=(new Date).toISOString(),function wt(z,A){if(document.hasFocus())try{window.localStorage&&window.localStorage.setItem(z,JSON.stringify(A))}catch{}else try{window.localStorage&&window.localStorage.removeItem(z)}catch{}}(Mt,St)};function on(){var z=void 0;try{document.querySelector("html >>> :first-child"),z=">>>"}catch{try{document.querySelector("html /deep/ :first-child"),z="/deep/"}catch{z=""}}return z}const Bt="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",Qt={element:"div",mutate:function(A){return A.innerHTML='',A.querySelector("area")}},Rt={element:"div",mutate:function(A){return A.innerHTML='',!1},validate:function(A,te,ve){if(T.is.GECKO)return!0;var Ae=A.querySelector("area");return Ae.focus(),ve.activeElement===Ae}},_n={element:"div",mutate:function(A){return A.innerHTML='',A.querySelector("area")},validate:function(A,te,ve){return!!T.is.GECKO||ve.activeElement===te}},ie={name:"can-focus-audio-without-controls",element:"audio",mutate:function(A){try{A.setAttribute("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}catch{}}},Xe={element:"div",mutate:function(A){return A.innerHTML='',A.querySelector("area")}},Ge={element:"a",mutate:function(A){return A.href="#void",A.innerHTML='',A.querySelector("img")}},Je={element:"div",mutate:function(A){return A.innerHTML='',A.querySelector("img")}};var Me=!T.is.WEBKIT;const ct="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBpZD0ic3ZnIj48dGV4dCB4PSIxMCIgeT0iMjAiIGlkPSJzdmctbGluay10ZXh0Ij50ZXh0PC90ZXh0Pjwvc3ZnPg==",dt={element:"object",mutate:function(A){A.setAttribute("type","image/svg+xml"),A.setAttribute("data",ct),A.setAttribute("width","200"),A.setAttribute("height","50"),A.style.visibility="hidden"}},Nt={name:"can-focus-object-svg",element:"object",mutate:function(A){A.setAttribute("type","image/svg+xml"),A.setAttribute("data",ct),A.setAttribute("width","200"),A.setAttribute("height","50")},validate:function(A,te,ve){return!!T.is.GECKO||ve.activeElement===A}};var Zt=!T.is.IE9;const we={element:"div",mutate:function(A){return A.innerHTML='',A.querySelector("img")},validate:function(A,te,ve){var Ae=A.querySelector("area");return ve.activeElement===Ae}};function an(z){if(!(z.ownerSVGElement||"svg"===z.nodeName.toLowerCase()))return!1;var te=function Yt(){var z=document.createElement("div");return z.innerHTML='\n \n ',z.firstChild.firstChild}();z.appendChild(te);var ve=te.querySelector("input");return ve.focus(),ve.disabled=!0,z.removeChild(te),!0}function zt(z){return''+z+""}function Dn(z,A,te){return function Pn(z){if(!z.focus)try{HTMLElement.prototype.focus.call(z)}catch{an(z)}}(A),te.activeElement===A}const $n={element:"div",mutate:function(A){return A.innerHTML=zt('a'),A.querySelector("text")},validate:Dn},vn={element:"div",mutate:function(A){return A.innerHTML=zt('a'),A.querySelector("text")},validate:Dn},vi={element:"div",mutate:function(A){return A.innerHTML=zt('a'),A.querySelector("text")},validate:Dn},Ir={element:"div",mutate:function(A){return A.innerHTML=zt(['link',''].join("")),A.querySelector("use")},validate:Dn},Ee={element:"div",mutate:function(A){return A.innerHTML=zt(''),A.querySelector("foreignObject")||A.getElementsByTagName("foreignObject")[0]},validate:Dn};var ye=Boolean(T.is.GECKO&&typeof SVGElement<"u"&&SVGElement.prototype.focus);const Ot={element:"div",mutate:function(A){return A.innerHTML=zt(""),A.firstChild},validate:Dn},Fi={element:"video",mutate:function(A){try{A.setAttribute("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}catch{}}};var Cr=T.is.GECKO||T.is.TRIDENT||T.is.EDGE;var qi={cssShadowPiercingDeepCombinator:on,focusInZeroDimensionObject:function kt(){return Me},focusObjectSwf:function Kt(){return Zt},focusSvgInIframe:function nt(){return ye},tabsequenceAreaAtImgPosition:function Lr(){return Cr}},Oi={focusAreaImgTabindex:Qt,focusAreaTabindex:Rt,focusAreaWithoutHref:_n,focusAudioWithoutControls:ie,focusBrokenImageMap:Xe,focusChildrenOfFocusableFlexbox:{element:"div",mutate:function(A){return A.setAttribute("tabindex","-1"),A.setAttribute("style","display: -webkit-flex; display: -ms-flexbox; display: flex;"),A.innerHTML='hello',A.querySelector("span")}},focusFieldsetDisabled:{element:"fieldset",mutate:function(A){A.setAttribute("tabindex",0),A.setAttribute("disabled","disabled")}},focusFieldset:{element:"fieldset",mutate:function(A){A.innerHTML="legend

content

"}},focusFlexboxContainer:{element:"span",mutate:function(A){A.setAttribute("style","display: -webkit-flex; display: -ms-flexbox; display: flex;"),A.innerHTML='hello'}},focusFormDisabled:{element:"form",mutate:function(A){A.setAttribute("tabindex",0),A.setAttribute("disabled","disabled")}},focusImgIsmap:Ge,focusImgUsemapTabindex:Je,focusInHiddenIframe:{element:function(A,te){var ve=te.createElement("iframe");A.appendChild(ve);var Ae=ve.contentWindow.document;return Ae.open(),Ae.close(),ve},mutate:function(A){A.style.visibility="hidden";var te=A.contentWindow.document,ve=te.createElement("input");return te.body.appendChild(ve),ve},validate:function(A){var te=A.contentWindow.document,ve=te.querySelector("input");return te.activeElement===ve}},focusInvalidTabindex:{element:"div",mutate:function(A){A.setAttribute("tabindex","invalid-value")}},focusLabelTabindex:{element:"label",mutate:function(A){A.setAttribute("tabindex","-1")},validate:function(A,te,ve){A.offsetHeight;return A.focus(),ve.activeElement===A}},focusObjectSvg:Nt,focusObjectSvgHidden:dt,focusRedirectImgUsemap:we,focusRedirectLegend:{element:"fieldset",mutate:function(A){return A.innerHTML='legend',!1},validate:function(A,te,ve){var Ae=A.querySelector('input[tabindex="-1"]'),tt=A.querySelector('input[tabindex="0"]');return A.focus(),A.querySelector("legend").focus(),(ve.activeElement===Ae?"focusable":ve.activeElement===tt&&"tabbable")||""}},focusScrollBody:{element:"div",mutate:function(A){return A.setAttribute("style","width: 100px; height: 50px; overflow: auto;"),A.innerHTML='
scrollable content
',A.querySelector("div")}},focusScrollContainerWithoutOverflow:{element:"div",mutate:function(A){A.setAttribute("style","width: 100px; height: 50px;"),A.innerHTML='
scrollable content
'}},focusScrollContainer:{element:"div",mutate:function(A){A.setAttribute("style","width: 100px; height: 50px; overflow: auto;"),A.innerHTML='
scrollable content
'}},focusSummary:{element:"details",mutate:function(A){return A.innerHTML="foo

content

",A.firstElementChild}},focusSvgFocusableAttribute:$n,focusSvgTabindexAttribute:vn,focusSvgNegativeTabindexAttribute:vi,focusSvgUseTabindex:Ir,focusSvgForeignobjectTabindex:Ee,focusSvg:Ot,focusTabindexTrailingCharacters:{element:"div",mutate:function(A){A.setAttribute("tabindex","3x")}},focusTable:{element:"table",mutate:function(A,te,ve){var Ae=ve.createDocumentFragment();Ae.innerHTML="cell",A.appendChild(Ae)}},focusVideoWithoutControls:Fi};var ue=null;function ze(){return ue||((ue=Gt_get()).time||(Gt_set(function At(){var z=Qe(Oi);return Object.keys(qi).forEach(function(A){z[A]=qi[A]()}),z}()),ue=Gt_get()),ue)}var It=void 0,sn=/^\s*(-|\+)?[0-9]+\s*$/,yn=/^\s*(-|\+)?[0-9]+.*$/;function In(z){It||(It=ze());var A=It.focusTabindexTrailingCharacters?yn:sn,te=N({label:"is/valid-tabindex",resolveDocument:!0,context:z}),ve=te.hasAttribute("tabindex"),Ae=te.hasAttribute("tabIndex");if(!ve&&!Ae)return!1;if((te.ownerSVGElement||"svg"===te.nodeName.toLowerCase())&&!It.focusSvgTabindexAttribute)return!1;if(It.focusInvalidTabindex)return!0;var tn=te.getAttribute(ve?"tabindex":"tabIndex");return"-32768"!==tn&&Boolean(tn&&A.test(tn))}function qn(z){if(!In(z))return null;var te=z.hasAttribute("tabindex")?"tabindex":"tabIndex",ve=parseInt(z.getAttribute(te),10);return isNaN(ve)?-1:ve}function oi(z){var A=z.webkitUserModify||"";return Boolean(A&&-1!==A.indexOf("write"))}function ai(z){return[z.getPropertyValue("overflow"),z.getPropertyValue("overflow-x"),z.getPropertyValue("overflow-y")].some(function(A){return"auto"===A||"scroll"===A})}function Xi(z){return z.display.indexOf("flex")>-1}function ur(z,A,te,ve){return!("div"!==A&&"span"!==A||te&&"div"!==te&&"span"!==te&&!ai(ve))&&(z.offsetHeight0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.except,ve=void 0===te?{flexbox:!1,scrollable:!1,shadow:!1}:te;rn||(rn=ze());var Ae=N({label:"is/focus-relevant",resolveDocument:!0,context:A});if(!ve.shadow&&Ae.shadowRoot)return!0;var tt=Ae.nodeName.toLowerCase();if("input"===tt&&"hidden"===Ae.type)return!1;if("input"===tt||"select"===tt||"button"===tt||"textarea"===tt||"legend"===tt&&rn.focusRedirectLegend||"label"===tt||"area"===tt||"a"===tt&&Ae.hasAttribute("href"))return!0;if("object"===tt&&Ae.hasAttribute("usemap"))return!1;if("object"===tt){var tn=Ae.getAttribute("type");if(!rn.focusObjectSvg&&"image/svg+xml"===tn)return!1;if(!rn.focusObjectSwf&&"application/x-shockwave-flash"===tn)return!1}if("iframe"===tt||"object"===tt||"embed"===tt||"keygen"===tt||Ae.hasAttribute("contenteditable")||"audio"===tt&&(rn.focusAudioWithoutControls||Ae.hasAttribute("controls"))||"video"===tt&&(rn.focusVideoWithoutControls||Ae.hasAttribute("controls"))||rn.focusSummary&&"summary"===tt)return!0;var Gn=In(Ae);if("img"===tt&&Ae.hasAttribute("usemap"))return Gn&&rn.focusImgUsemapTabindex||rn.focusRedirectImgUsemap;if(rn.focusTable&&("table"===tt||"td"===tt)||rn.focusFieldset&&"fieldset"===tt)return!0;var Rn="svg"===tt,ni=Ae.ownerSVGElement,ji=Ae.getAttribute("focusable"),zr=qn(Ae);if("use"===tt&&null!==zr&&!rn.focusSvgUseTabindex)return!1;if("foreignobject"===tt)return null!==zr&&rn.focusSvgForeignobjectTabindex;if(R(Ae,"svg a")&&Ae.hasAttribute("xlink:href"))return!0;if((Rn||ni)&&Ae.focus&&!rn.focusSvgNegativeTabindexAttribute&&zr<0)return!1;if(Rn)return Gn||rn.focusSvg||rn.focusSvgInIframe||Boolean(rn.focusSvgFocusableAttribute&&ji&&"true"===ji);if(ni){if(rn.focusSvgTabindexAttribute&&Gn)return!0;if(rn.focusSvgFocusableAttribute)return"true"===ji}if(Gn)return!0;var Co=window.getComputedStyle(Ae,null);if(oi(Co))return!0;if(rn.focusImgIsmap&&"img"===tt&&Ae.hasAttribute("ismap")){var Ns=G({context:Ae}).some(function(Oa){return"a"===Oa.nodeName.toLowerCase()&&Oa.hasAttribute("href")});if(Ns)return!0}if(!ve.scrollable&&rn.focusScrollContainer)if(rn.focusScrollContainerWithoutOverflow){if(ur(Ae,tt))return!0}else if(ai(Co))return!0;if(!ve.flexbox&&rn.focusFlexboxContainer&&Xi(Co))return!0;var va=Ae.parentElement;if(!ve.scrollable&&va){var Pi=va.nodeName.toLowerCase(),jr=window.getComputedStyle(va,null);if(rn.focusScrollBody&&ur(va,tt,Pi,jr)||rn.focusChildrenOfFocusableFlexbox&&Xi(jr))return!0}return!1}zn.except=function(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=function(ve){return zn({context:ve,except:z})};return A.rules=zn,A};const Bi=zn.except({});function vr(z,A){if(z.findIndex)return z.findIndex(A);var te=z.length;if(0===te)return-1;for(var ve=0;ve0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.except,ve=void 0===te?{notRendered:!1,cssDisplay:!1,cssVisibility:!1,detailsElement:!1,browsingContext:!1}:te,Ae=N({label:"is/visible",resolveDocument:!0,context:A}),tt=Ae.nodeName.toLowerCase();if(!ve.notRendered&&ko.test(tt))return!0;var tn=G({context:Ae}),Gn="audio"===tt&&!Ae.hasAttribute("controls");if(!ve.cssDisplay&&Si(Gn?tn.slice(1):tn)||!ve.cssVisibility&&Qo(tn)||!ve.detailsElement&&Sr(tn))return!1;if(!ve.browsingContext){var Rn=cr(Ae),ni=Wi.except(ve);if(Rn&&!ni(Rn))return!1}return!0}Wi.except=function(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=function(ve){return Wi({context:ve,except:z})};return A.rules=Wi,A};const No=Wi.except({});var mi=w(546),Yo=w.n(mi);function $r(z,A){return A.querySelector('map[name="'+Yo()(z)+'"]')||null}function Wr(z){var A=z.parentElement;return A.name&&"map"===A.nodeName.toLowerCase()&&Ai(z).querySelector('img[usemap="#'+Yo()(A.name)+'"]')||null}var dr=void 0;var or=void 0,fr=void 0,er={input:!0,select:!0,textarea:!0,button:!0,fieldset:!0,form:!0};function Or(z){or||((or=ze()).focusFieldsetDisabled&&delete er.fieldset,or.focusFormDisabled&&delete er.form,fr=new RegExp("^("+Object.keys(er).join("|")+")$"));var te=N({label:"is/native-disabled-supported",context:z}).nodeName.toLowerCase();return Boolean(fr.test(te))}var Xr=void 0;function eo(z){return"fieldset"===z.nodeName.toLowerCase()&&z.disabled}function wo(z){return"form"===z.nodeName.toLowerCase()&&z.disabled}function yr(z){Xr||(Xr=ze());var A=N({label:"is/disabled",context:z});if(A.hasAttribute("data-ally-disabled"))return!0;if(!Or(A))return!1;if(A.disabled)return!0;var te=G({context:A});return!!(te.some(eo)||!Xr.focusFormDisabled&&te.some(wo))}function bi(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.except,ve=void 0===te?{onlyFocusableBrowsingContext:!1,visible:!1}:te,Ae=N({label:"is/only-tabbable",resolveDocument:!0,context:A});if(!ve.visible&&!No(Ae))return!1;if(!ve.onlyFocusableBrowsingContext&&(T.is.GECKO||T.is.TRIDENT||T.is.EDGE)){var tt=cr(Ae);if(tt&&qn(tt)<0)return!1}var tn=Ae.nodeName.toLowerCase(),Gn=qn(Ae);return"label"===tn&&T.is.GECKO?null!==Gn&&Gn>=0:!!(T.is.GECKO&&Ae.ownerSVGElement&&!Ae.focus&&"a"===tn&&Ae.hasAttribute("xlink:href")&&T.is.GECKO)}bi.except=function(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=function(ve){return bi({context:ve,except:z})};return A.rules=bi,A};const Tn=bi.except({});var qr=void 0;function $o(z){var A=z.nodeName.toLowerCase();if("embed"===A||"keygen"===A)return!0;var te=qn(z);if(z.shadowRoot&&null===te)return!0;if("label"===A)return!qr.focusLabelTabindex||null===te;if("legend"===A)return null===te;if(qr.focusSvgFocusableAttribute&&(z.ownerSVGElement||"svg"===A)){var ve=z.getAttribute("focusable");return ve&&"false"===ve}return"img"===A&&z.hasAttribute("usemap")?null===te||!qr.focusImgUsemapTabindex:"area"===A&&!function Pr(z){dr||(dr=ze());var A=N({label:"is/valid-area",context:z});if("area"!==A.nodeName.toLowerCase())return!1;var ve=A.hasAttribute("tabindex");if(!dr.focusAreaTabindex&&ve)return!1;var Ae=Wr(A);return!(!Ae||!No(Ae)||!dr.focusBrokenImageMap&&(!Ae.complete||!Ae.naturalHeight||Ae.offsetWidth<=0||Ae.offsetHeight<=0))&&(dr.focusAreaWithoutHref||A.href?!G({context:Ae}).slice(1).some(function(tn){var Gn=tn.nodeName.toLowerCase();return"button"===Gn||"a"===Gn}):dr.focusAreaTabindex&&ve||dr.focusAreaImgTabindex&&Ae.hasAttribute("tabindex"))}(z)}function Ii(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.except,ve=void 0===te?{disabled:!1,visible:!1,onlyTabbable:!1}:te;qr||(qr=ze());var Ae=Tn.rules.except({onlyFocusableBrowsingContext:!0,visible:ve.visible}),tt=N({label:"is/focusable",resolveDocument:!0,context:A}),tn=Bi.rules({context:tt,except:ve});if(!tn||$o(tt)||!ve.disabled&&yr(tt)||!ve.onlyTabbable&&Ae(tt))return!1;if(!ve.visible){var Gn={context:tt,except:{}};if(qr.focusInHiddenIframe&&(Gn.except.browsingContext=!0),qr.focusObjectSvgHidden){var Rn=tt.nodeName.toLowerCase();"object"===Rn&&(Gn.except.cssVisibility=!0)}if(!No.rules(Gn))return!1}var ni=cr(tt);if(ni){var ji=ni.nodeName.toLowerCase();if(!("object"!==ji||qr.focusInZeroDimensionObject||ni.offsetWidth&&ni.offsetHeight))return!1}var zr=tt.nodeName.toLowerCase();return!("svg"===zr&&qr.focusSvgInIframe&&!ni&&null===tt.getAttribute("tabindex"))}Ii.except=function(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=function(ve){return Ii({context:ve,except:z})};return A.rules=Ii,A};const xo=Ii.except({});function pr(z){var A=function(ve){return ve.shadowRoot||z(ve)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP};return A.acceptNode=A,A}var qo=pr(Bi);function Xo(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.includeContext,ve=z.includeOnlyTabbable,Ae=z.strategy;A||(A=document.documentElement);for(var tt=xo.rules.except({onlyTabbable:ve}),tn=Ai(A),Gn=tn.createTreeWalker(A,NodeFilter.SHOW_ELEMENT,"all"===Ae?qo:pr(tt),!1),Rn=[];Gn.nextNode();)Gn.currentNode.shadowRoot?(tt(Gn.currentNode)&&Rn.push(Gn.currentNode),Rn=Rn.concat(Xo({context:Gn.currentNode.shadowRoot,includeOnlyTabbable:ve,strategy:Ae}))):Rn.push(Gn.currentNode);return te&&("all"===Ae?Bi(A)&&Rn.unshift(A):tt(A)&&Rn.unshift(A)),Rn}var oo=void 0,Bo=void 0;function Br(){return oo||(oo=ze()),"string"==typeof Bo||(Bo=pi(Bo=(oo.focusTable?"table, td,":"")+(oo.focusFieldset?"fieldset,":"")+"svg a,a[href],area[href],input, select, textarea, button,iframe, object, embed,keygen,"+(oo.focusAudioWithoutControls?"audio,":"audio[controls],")+(oo.focusVideoWithoutControls?"video,":"video[controls],")+(oo.focusSummary?"summary,":"")+"[tabindex],[contenteditable]")),Bo}function ao(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.includeContext,ve=z.includeOnlyTabbable,Ae=Br(),tt=A.querySelectorAll(Ae),tn=xo.rules.except({onlyTabbable:ve}),Gn=[].filter.call(tt,tn);return te&&tn(A)&&Gn.unshift(A),Gn}function ti(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.includeContext,ve=z.includeOnlyTabbable,Ae=z.strategy,tt=void 0===Ae?"quick":Ae,tn=N({label:"query/focusable",resolveDocument:!0,defaultToDocument:!0,context:A}),Gn={context:tn,includeContext:te,includeOnlyTabbable:ve,strategy:tt};if("quick"===tt)return ao(Gn);if("strict"===tt||"all"===tt)return Xo(Gn);throw new TypeError('query/focusable requires option.strategy to be one of ["quick", "strict", "all"]')}function Mi(z){var A=z.element,te=z.attribute,ve="data-cached-"+te;if(null===A.getAttribute(ve)){var tt=A.getAttribute(te);if(null===tt)return;A.setAttribute(ve,tt||""),A.removeAttribute(te)}else{var tn=A.getAttribute(ve);A.removeAttribute(ve),A.setAttribute(te,tn)}}function Ar(z){var A=z.element,te=z.attribute,ve=z.temporaryValue,Ae=z.saveValue,tt="data-cached-"+te;if(void 0!==ve){var tn=Ae||A.getAttribute(te);A.setAttribute(tt,tn||""),A.setAttribute(te,ve)}else{var Gn=A.getAttribute(tt);A.removeAttribute(tt),""===Gn?A.removeAttribute(te):A.setAttribute(te,Gn)}}var br=function(){};const Qr=typeof console<"u"?console:{log:br,debug:br,info:br,warn:br,error:br};var ts=void 0;function fa(){Qr.warn("trying to focus inert element",this)}function ea(z,A){(function Kr(z,A){Ar({element:z,attribute:"aria-disabled",temporaryValue:A?"true":void 0})})(z,A),function To(z,A){if(A){var te=qn(z);Ar({element:z,attribute:"tabindex",temporaryValue:"-1",saveValue:null!==te?te:""})}else Ar({element:z,attribute:"tabindex"})}(z,A),function gs(z,A){A?z.focus=fa:delete z.focus}(z,A),function so(z,A){if(A){var te=z.style.pointerEvents||"";z.setAttribute("data-inert-pointer-events",te),z.style.pointerEvents="none"}else{var ve=z.getAttribute("data-inert-pointer-events");z.removeAttribute("data-inert-pointer-events"),z.style.pointerEvents=ve}}(z,A);var te=z.nodeName.toLowerCase();("video"===te||"audio"===te)&&function go(z,A){Mi({element:z,attribute:"controls",remove:A})}(z,A),("svg"===te||z.ownerSVGElement)&&(ts.focusSvgFocusableAttribute?function Os(z,A){Ar({element:z,attribute:"focusable",temporaryValue:A?"false":void 0})}(z,A):!ts.focusSvgTabindexAttribute&&"a"===te&&function hs(z,A){Mi({element:z,attribute:"xlink:href",remove:A})}(z,A)),A?z.setAttribute("data-ally-disabled","true"):z.removeAttribute("data-ally-disabled")}function ki(z,A){ts||(ts=ze());var te=N({label:"element/disabled",context:z});A=Boolean(A);var ve=te.hasAttribute("data-ally-disabled"),Ae=1===arguments.length;return Or(te)?Ae?te.disabled:(te.disabled=A,te):Ae?ve:(ve===A||ea(te,A),te)}var Eo=function(A){return A.shadowRoot?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP};function Io(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=N({label:"query/shadow-hosts",resolveDocument:!0,defaultToDocument:!0,context:A}),ve=Ai(A),Ae=ve.createTreeWalker(te,NodeFilter.SHOW_ELEMENT,Eo,!1),tt=[];for(te.shadowRoot&&(tt.push(te),tt=tt.concat(Io({context:te.shadowRoot})));Ae.nextNode();)tt.push(Ae.currentNode),tt=tt.concat(Io({context:Ae.currentNode.shadowRoot}));return tt}Eo.acceptNode=Eo;var Ro="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(z){return typeof z}:function(z){return z&&"function"==typeof Symbol&&z.constructor===Symbol&&z!==Symbol.prototype?"symbol":typeof z},hr=function(){function z(A,te){for(var ve=0;ve0&&void 0!==arguments[0]?arguments[0]:{},ve=te.context,Ae=te.callback,tt=te.config;ns(this,z),this.config=tt,this.disengage=this.disengage.bind(this),this.clientObserver=new MutationObserver(Ae),this.hostObserver=new MutationObserver(function(tn){return tn.forEach(A.handleHostMutation,A)}),this.observeContext(ve),this.observeShadowHosts(ve)}return hr(z,[{key:"disengage",value:function(){this.clientObserver&&this.clientObserver.disconnect(),this.clientObserver=null,this.hostObserver&&this.hostObserver.disconnect(),this.hostObserver=null}},{key:"observeShadowHosts",value:function(te){var ve=this;Io({context:te}).forEach(function(tt){return ve.observeContext(tt.shadowRoot)})}},{key:"observeContext",value:function(te){this.clientObserver.observe(te,this.config),this.hostObserver.observe(te,Li)}},{key:"handleHostMutation",value:function(te){"childList"===te.type&&U(te.addedNodes).filter(function(Ae){return Ae.nodeType===Node.ELEMENT_NODE}).forEach(this.observeShadowHosts,this)}}]),z}();function lo(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.callback,ve=z.config;if("function"!=typeof te)throw new TypeError("observe/shadow-mutations requires options.callback to be a function");if("object"!==(typeof ve>"u"?"undefined":Ro(ve)))throw new TypeError("observe/shadow-mutations requires options.config to be an object");if(!window.MutationObserver)return{disengage:function(){}};var Ae=N({label:"observe/shadow-mutations",resolveDocument:!0,defaultToDocument:!0,context:A}),tt=new _i({context:Ae,callback:te,config:ve});return{disengage:tt.disengage}}function Za(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.parent,te=z.element,ve=z.includeSelf;if(A)return function(tt){return Boolean(ve&&tt===A||A.compareDocumentPosition(tt)&Node.DOCUMENT_POSITION_CONTAINED_BY)};if(te)return function(tt){return Boolean(ve&&te===tt||tt.compareDocumentPosition(te)&Node.DOCUMENT_POSITION_CONTAINED_BY)};throw new TypeError("util/compare-position#getParentComparator required either options.parent or options.element")}var ui=function(){function z(A,te){for(var ve=0;ve0&&void 0!==arguments[0]?arguments[0]:{},ve=te.context,Ae=te.filter;ms(this,z),this._context=U(ve||document.documentElement)[0],this._filter=U(Ae),this._inertElementCache=[],this.disengage=this.disengage.bind(this),this.handleMutation=this.handleMutation.bind(this),this.renderInert=this.renderInert.bind(this),this.filterElements=this.filterElements.bind(this),this.filterParentElements=this.filterParentElements.bind(this);var tt=ti({context:this._context,includeContext:!0,strategy:"all"});this.renderInert(tt),this.shadowObserver=lo({context:this._context,config:ci,callback:function(Gn){return Gn.forEach(A.handleMutation)}})}return ui(z,[{key:"disengage",value:function(){!this._context||(Ha(this._context),this._inertElementCache.forEach(function(te){return Ha(te)}),this._inertElementCache=null,this._filter=null,this._context=null,this.shadowObserver&&this.shadowObserver.disengage(),this.shadowObserver=null)}},{key:"listQueryFocusable",value:function(te){return te.map(function(ve){return ti({context:ve,includeContext:!0,strategy:"all"})}).reduce(function(ve,Ae){return ve.concat(Ae)},[])}},{key:"renderInert",value:function(te){var ve=this;te.filter(this.filterElements).filter(this.filterParentElements).filter(function(tt){return!ki(tt)}).forEach(function(tn){ve._inertElementCache.push(tn),function pa(z){return ki(z,!0)}(tn)})}},{key:"filterElements",value:function(te){var ve=Za({element:te,includeSelf:!0});return!this._filter.some(ve)}},{key:"filterParentElements",value:function(te){var ve=Za({parent:te});return!this._filter.some(ve)}},{key:"handleMutation",value:function(te){if("childList"===te.type){var ve=U(te.addedNodes).filter(function(tt){return tt.nodeType===Node.ELEMENT_NODE});if(!ve.length)return;var Ae=this.listQueryFocusable(ve);this.renderInert(Ae)}else"attributes"===te.type&&this.renderInert([te.target])}}]),z}();function uo(z){var A=z.context,te=z.filter,Ae=[],tt=function(ni){return te.some(function(ji){return ni===ji})?NodeFilter.FILTER_REJECT:function(ni){var ji=Za({parent:ni});return te.some(ji)}(ni)?NodeFilter.FILTER_ACCEPT:(Ae.push(ni),NodeFilter.FILTER_REJECT)};tt.acceptNode=tt;for(var Gn=Ai(A).createTreeWalker(A,NodeFilter.SHOW_ELEMENT,tt,!1);Gn.nextNode(););return Ae}function zi(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.filter;if(A=N({label:"get/insignificant-branches",defaultToDocument:!0,context:A}),!(te=U(te)).length)throw new TypeError("get/insignificant-branches requires valid options.filter");return uo({context:A,filter:te})}var Ea=function(){function z(A,te){for(var ve=0;ve0&&void 0!==arguments[0]?arguments[0]:{},te=A.context,ve=A.filter;Ia(this,z),this._context=U(te||document.documentElement)[0],this._filter=U(ve),this.disengage=this.disengage.bind(this),this.handleMutation=this.handleMutation.bind(this),this.isInsignificantBranch=this.isInsignificantBranch.bind(this);var Ae=zi({context:this._context,filter:this._filter});Ae.forEach(As),this.startObserver()}return Ea(z,[{key:"disengage",value:function(){!this._context||([].forEach.call(this._context.querySelectorAll("[data-cached-aria-hidden]"),co),this._context=null,this._filter=null,this._observer&&this._observer.disconnect(),this._observer=null)}},{key:"startObserver",value:function(){var te=this;!window.MutationObserver||(this._observer=new MutationObserver(function(ve){return ve.forEach(te.handleMutation)}),this._observer.observe(this._context,Rr))}},{key:"handleMutation",value:function(te){"childList"===te.type&&U(te.addedNodes).filter(function(ve){return ve.nodeType===Node.ELEMENT_NODE}).filter(this.isInsignificantBranch).forEach(As)}},{key:"isInsignificantBranch",value:function(te){if(G({context:te}).some(function(tt){return"true"===tt.getAttribute("aria-hidden")}))return!1;var Ae=Za({element:te});return!this._filter.some(Ae)}}]),z}();function Mr(){for(var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=N({label:"get/shadow-host",context:A}),ve=null;te;)ve=te,te=te.parentNode;return ve.nodeType===ve.DOCUMENT_FRAGMENT_NODE&&ve.host?ve.host:null}function oe(z){var A=N({label:"is/active-element",resolveDocument:!0,context:z});if(Ai(A).activeElement===A)return!0;var ve=Mr({context:A});return!(!ve||ve.shadowRoot.activeElement!==A)}var M=void 0,X=/^(fieldset|table|td|body)$/;function it(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.except,ve=void 0===te?{flexbox:!1,scrollable:!1,shadow:!1,visible:!1,onlyTabbable:!1}:te;M||(M=ze());var Ae=N({label:"is/tabbable",resolveDocument:!0,context:A});if(T.is.BLINK&&T.is.ANDROID&&T.majorVersion>42)return!1;var tt=cr(Ae);if(tt){if(T.is.WEBKIT&&T.is.IOS||qn(tt)<0||!ve.visible&&(T.is.BLINK||T.is.WEBKIT)&&!No(tt))return!1;var tn=tt.nodeName.toLowerCase();if("object"===tn){var Gn="Chrome"===T.name&&T.majorVersion>=54||"Opera"===T.name&&T.majorVersion>=41;if(T.is.WEBKIT||T.is.BLINK&&!Gn)return!1}}var Rn=Ae.nodeName.toLowerCase(),ni=qn(Ae),ji=null===ni?null:ni>=0;if(T.is.EDGE&&T.majorVersion>=14&&tt&&Ae.ownerSVGElement&&ni<0)return!0;var zr=!1!==ji,Co=null!==ni&&ni>=0;if(Ae.hasAttribute("contenteditable"))return zr;if(X.test(Rn)&&!0!==ji)return!1;if(T.is.WEBKIT&&T.is.IOS){var Ns="input"===Rn&&"text"===Ae.type||"password"===Ae.type||"select"===Rn||"textarea"===Rn||Ae.hasAttribute("contenteditable");if(!Ns){var va=window.getComputedStyle(Ae,null);Ns=oi(va)}if(!Ns)return!1}if("use"===Rn&&null!==ni&&(T.is.BLINK||T.is.WEBKIT&&9===T.majorVersion)||R(Ae,"svg a")&&Ae.hasAttribute("xlink:href")&&(zr||Ae.focus&&!M.focusSvgNegativeTabindexAttribute)||"svg"===Rn&&M.focusSvgInIframe&&zr)return!0;if(T.is.TRIDENT||T.is.EDGE){if("svg"===Rn)return!!M.focusSvg||(Ae.hasAttribute("focusable")||Co);if(Ae.ownerSVGElement)return!(!M.focusSvgTabindexAttribute||!Co)||Ae.hasAttribute("focusable")}if(void 0===Ae.tabIndex)return Boolean(ve.onlyTabbable);if("audio"===Rn){if(!Ae.hasAttribute("controls"))return!1;if(T.is.BLINK)return!0}if("video"===Rn)if(Ae.hasAttribute("controls")){if(T.is.BLINK||T.is.GECKO)return!0}else if(T.is.TRIDENT||T.is.EDGE)return!1;if("object"===Rn&&(T.is.BLINK||T.is.WEBKIT)||"iframe"===Rn)return!1;if(!ve.scrollable&&T.is.GECKO){var Pi=window.getComputedStyle(Ae,null);if(ai(Pi))return zr}if(T.is.TRIDENT||T.is.EDGE){if("area"===Rn){var jr=Wr(Ae);if(jr&&qn(jr)<0)return!1}var Oa=window.getComputedStyle(Ae,null);if(oi(Oa))return Ae.tabIndex>=0;if(!ve.flexbox&&Xi(Oa))return null!==ni?Co:$t(Ae)&&hi(Ae);if(ur(Ae,Rn))return!1;var l1=Ae.parentElement;if(l1){var v2=l1.nodeName.toLowerCase(),zl=window.getComputedStyle(l1,null);if(ur(l1,Rn,v2,zl))return!1;if(Xi(zl))return Co}}return Ae.tabIndex>=0}it.except=function(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=function(ve){return it({context:ve,except:z})};return A.rules=it,A};var $t=Bi.rules.except({flexbox:!0}),hi=it.except({flexbox:!0});const Vt=it.except({});function Zn(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.includeContext,ve=z.includeOnlyTabbable,Ae=z.strategy,tt=Vt.rules.except({onlyTabbable:ve});return ti({context:A,includeContext:te,includeOnlyTabbable:ve,strategy:Ae}).filter(tt)}function Va(z,A){return z.compareDocumentPosition(A)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1}function ks(z){return z.sort(Va)}function ga(z,A,te){var ve=[];return A.forEach(function(Ae){var tt=!0,tn=z.indexOf(Ae);-1===tn&&(tn=function Qi(z,A){return vr(z,function(te){return A.compareDocumentPosition(te)&Node.DOCUMENT_POSITION_FOLLOWING})}(z,Ae),tt=!1),-1===tn&&(tn=z.length);var Gn=U(te?te(Ae):Ae);!Gn.length||ve.push({offset:tn,replace:tt,elements:Gn})}),ve}function ta(z,A){var te=0;A.sort(function(ve,Ae){return ve.offset-Ae.offset}),A.forEach(function(ve){var Ae=ve.replace?1:0,tt=[ve.offset+te,Ae].concat(ve.elements);z.splice.apply(z,tt),te+=ve.elements.length-Ae})}function to(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.list,te=z.elements,ve=z.resolveElement,Ae=A.slice(0),tt=U(te).slice(0);ks(tt);var tn=ga(Ae,tt,ve);return ta(Ae,tn),Ae}var La=function(){function z(A,te){for(var ve=0;ve-1?[te].concat(ve):ve}},{key:"_cleanup",value:function(){Object.keys(this.hosts).forEach(function(te){delete this.hosts[te]._sortingId},this)}}]),z}();function zo(z,A,te){var ve=new kn(A,te),Ae=ve.extractElements(z);return Ae.length===z.length?te(z):ve.sort(Ae)}var na=void 0;function wr(z,A){var te=z.indexOf(A);return te>0?z.splice(te,1).concat(z):z}function _s(z,A){return na.tabsequenceAreaAtImgPosition&&(z=function fo(z,A){var te=A.querySelectorAll("img[usemap]"),ve=new n1(A),Ae=ve.extractAreasFromList(z);return te.length?to({list:Ae,elements:te,resolveElement:function(tn){var Gn=tn.getAttribute("usemap").slice(1);return ve.getAreasFor(Gn)}}):Ae}(z,A)),z=function r1(z){var A={},te=[],ve=z.filter(function(tt){var tn=tt.tabIndex;return void 0===tn&&(tn=qn(tt)),tn<=0||null==tn||(A[tn]||(A[tn]=[],te.push(tn)),A[tn].push(tt),!1)});return te.sort().map(function(tt){return A[tt]}).reduceRight(function(tt,tn){return tn.concat(tt)},ve)}(z),z}function wi(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.includeContext,ve=z.includeOnlyTabbable,Ae=z.strategy;na||(na=ze());var tt=U(A)[0]||document.documentElement,tn=Zn({context:tt,includeContext:te,includeOnlyTabbable:ve,strategy:Ae});return tn=document.body.createShadowRoot&&T.is.BLINK?zo(tn,tt,_s):_s(tn,tt),te&&(tn=wr(tn,tt)),tn}for(var k={tab:9,left:37,up:38,right:39,down:40,pageUp:33,"page-up":33,pageDown:34,"page-down":34,end:35,home:36,enter:13,escape:27,space:32,shift:16,capsLock:20,"caps-lock":20,ctrl:17,alt:18,meta:91,pause:19,insert:45,delete:46,backspace:8,_alias:{91:[92,93,224]}},x=1;x<26;x++)k["f"+x]=x+111;for(var ne=0;ne<10;ne++){var Se=ne+48,gt=ne+96;k[ne]=Se,k["num-"+ne]=gt,k._alias[Se]=[gt]}for(var Pt=0;Pt<26;Pt++){var pn=Pt+65;k[String.fromCharCode(pn).toLowerCase()]=pn}const si=k;var di={alt:"altKey",ctrl:"ctrlKey",meta:"metaKey",shift:"shiftKey"},Ci=Object.keys(di).map(function(z){return di[z]});function xr(z,A){return!Ci.some(function(te){return"boolean"==typeof z[te]&&Boolean(A[te])!==z[te]})}function Lo(z){return z.split(/\s+/).map(function(A){var te=A.split("+"),ve=function Ui(z){var te=function ei(z){var A=!!z&&null;return{altKey:A,ctrlKey:A,metaKey:A,shiftKey:A}}(-1!==z.indexOf("*"));return z.forEach(function(ve){if("*"!==ve){var Ae=!0,tt=ve.slice(0,1);"?"===tt?Ae=null:"!"===tt&&(Ae=!1),!0!==Ae&&(ve=ve.slice(1));var tn=di[ve];if(!tn)throw new TypeError('Unknown modifier "'+ve+'"');te[tn]=Ae}}),te}(te.slice(0,-1)),Ae=function fi(z){var A=si[z]||parseInt(z,10);if(!A||"number"!=typeof A||isNaN(A))throw new TypeError('Unknown key "'+z+'"');return[A].concat(si._alias[A]||[])}(te.slice(-1));return{keyCodes:Ae,modifiers:ve,matchModifiers:xr.bind(null,ve)}})}function Q(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A={},te=U(z.context)[0]||document.documentElement;delete z.context;var ve=U(z.filter);delete z.filter;var Ae=Object.keys(z);if(!Ae.length)throw new TypeError("when/key requires at least one option key");var tt=function(ni){ni.keyCodes.forEach(function(ji){A[ji]||(A[ji]=[]),A[ji].push(ni)})};Ae.forEach(function(Rn){if("function"!=typeof z[Rn])throw new TypeError('when/key requires option["'+Rn+'"] to be a function');Lo(Rn).map(function(zr){return zr.callback=z[Rn],zr}).forEach(tt)});var tn=function(ni){if(!ni.defaultPrevented){if(ve.length){var ji=Za({element:ni.target,includeSelf:!0});if(ve.some(ji))return}var zr=ni.keyCode||ni.which;!A[zr]||A[zr].forEach(function(Co){!Co.matchModifiers(ni)||Co.callback.call(te,ni,Gn)})}};te.addEventListener("keydown",tn,!1);var Gn=function(){te.removeEventListener("keydown",tn,!1)};return{disengage:Gn}}const he={disabled:function mo(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.filter,ve=new Ga({context:A,filter:te});return{disengage:ve.disengage}},hidden:function An(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context,te=z.filter,ve=new ha({context:A,filter:te});return{disengage:ve.disengage}},tabFocus:function V(){var z=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=z.context;return A||(A=document.documentElement),wi(),Q({"?alt+?shift+tab":function(ve){ve.preventDefault();var Ae=wi({context:A}),tt=ve.shiftKey,tn=Ae[0],Gn=Ae[Ae.length-1],ni=tt?Gn:tn;if(oe(tt?tn:Gn))ni.focus();else{var ji=void 0;if(Ae.some(function(Ns,va){return!!oe(Ns)&&(ji=va,!0)}))Ae[ji+(tt?-1:1)].focus();else tn.focus()}}})}};var Le=w(6312);const Ve=function(z){return{showDownload:z}};function Ct(z,A){if(1&z&&(t.O4$(),t.TgZ(0,"text",229)(1,"tspan",230),t._uU(2),t.qZA(),t.TgZ(3,"tspan",231),t._uU(4),t.qZA()()),2&z){const te=t.oxw();t.xp6(2),t.Oqu(te.outcomeLabel),t.xp6(2),t.Oqu(te.outcome)}}function cn(z,A){if(1&z&&(t.O4$(),t.TgZ(0,"g",232)(1,"g",233),t._UZ(2,"polygon",234)(3,"path",235),t.qZA(),t.TgZ(4,"text",236)(5,"tspan",237),t._uU(6),t.qZA()()()),2&z){const te=t.oxw();t.xp6(6),t.Oqu(te.timeSpentLabel)}}function Hn(z,A){1&z&&(t.O4$(),t.TgZ(0,"svg",238)(1,"defs")(2,"linearGradient",239),t._UZ(3,"stop",240)(4,"stop",241),t.qZA()(),t.TgZ(5,"g",242),t._UZ(6,"path",243)(7,"path",244),t.qZA()())}function Kn(z,A){1&z&&(t.O4$(),t.TgZ(0,"svg",238)(1,"defs")(2,"linearGradient",239),t._UZ(3,"stop",240)(4,"stop",241),t.qZA()(),t.TgZ(5,"g",242),t._UZ(6,"path",243)(7,"path",245),t.qZA()())}function Yn(z,A){if(1&z){const te=t.EpF();t.TgZ(0,"div",246),t.NdJ("click",function(){t.CHM(te);const Ae=t.oxw();return t.KtG(Ae.exitContent.emit({type:"EXIT"}))}),t.O4$(),t.TgZ(1,"svg",247)(2,"defs")(3,"linearGradient",248),t._UZ(4,"stop",240)(5,"stop",241),t.qZA()(),t.TgZ(6,"g",242),t._UZ(7,"path",249)(8,"path",250),t.qZA()(),t.kcU(),t.TgZ(9,"div",226),t._uU(10,"Exit"),t.qZA()()}}function Ki(z,A){if(1&z){const te=t.EpF();t.ynx(0),t.TgZ(1,"div",251),t._uU(2,"Up Next"),t.qZA(),t.TgZ(3,"div",252),t.NdJ("click",function(){t.CHM(te);const Ae=t.oxw();return t.KtG(Ae.playNext())}),t.TgZ(4,"div",253),t._uU(5),t.qZA(),t.TgZ(6,"div",254),t._UZ(7,"img",255),t.qZA()(),t.BQk()}if(2&z){const te=t.oxw();t.xp6(5),t.Oqu(te.nextContent.name)}}function kr(z,A){if(1&z){const te=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(Ae){t.CHM(te);const tt=t.oxw();return t.KtG(tt.emitSideBarEvent(Ae,"SHARE"))})("keydown.enter",function(Ae){t.CHM(te);const tt=t.oxw();return t.KtG(tt.emitSideBarEvent(Ae,"SHARE"))}),t._UZ(1,"span",9),t._uU(2," Share"),t.qZA()}}function Da(z,A){if(1&z){const te=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(Ae){t.CHM(te);const tt=t.oxw();return t.KtG(tt.showDownloadPopup(Ae,"DOWNLOAD_MENU"))})("keydown.enter",function(Ae){t.CHM(te);const tt=t.oxw();return tt.closeNav(Ae),t.KtG(tt.showDownloadPopup(Ae,"DOWNLOAD_MENU"))}),t._UZ(1,"span",10),t._uU(2," Download"),t.qZA()}}function tr(z,A){if(1&z){const te=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(Ae){t.CHM(te);const tt=t.oxw();return tt.closeNav(Ae),t.KtG(tt.emitSideBarEvent(Ae,"PRINT"))})("keydown.enter",function(Ae){t.CHM(te);const tt=t.oxw();return t.KtG(tt.emitSideBarEvent(Ae,"PRINT"))}),t._UZ(1,"span",11),t._uU(2," Print"),t.qZA()}}function Jn(z,A){if(1&z){const te=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(Ae){t.CHM(te);const tt=t.oxw();return tt.closeNav(Ae),t.KtG(tt.emitSideBarEvent(Ae,"EXIT"))})("keydown.enter",function(Ae){t.CHM(te);const tt=t.oxw();return tt.closeNav(Ae),t.KtG(tt.emitSideBarEvent(Ae,"EXIT"))}),t._UZ(1,"span",12),t._uU(2," Exit"),t.qZA()}}function po(z,A){if(1&z){const te=t.EpF();t.TgZ(0,"sb-player-download-popup",13),t.NdJ("hideDownloadPopUp",function(Ae){t.CHM(te);const tt=t.oxw();return t.KtG(tt.hideDownloadPopUp(Ae))})("downloadEvent",function(Ae){t.CHM(te);const tt=t.oxw();return t.KtG(tt.sidebarEvent.emit(Ae))}),t.qZA()}if(2&z){const te=t.oxw();t.Q6J("title",te.title)("showDownloadPopUp",te.showDownloadPopUp)}}const Wa=function(z){return{"animated animateBg":z}};function ma(z,A){1&z&&(t.TgZ(0,"div",1),t._uU(1," You are offline\n"),t.qZA())}const _o=':root{--sdk-navigation-arrows-bg:#fff;--sdk-navigation-arrows-border:#F2F2F2;--sdk-navigation-arrows-after:#999999;--sdk-player-nextIcon:#fff}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]{height:2rem;width:4rem;cursor:pointer;border-radius:1rem;background-color:var(--sdk-navigation-arrows-bg);box-shadow:var(--sbt-box-shadow-3px);border:1px solid var(--sdk-navigation-arrows-border);-webkit-transition:.1s ease-in;transition:.1s ease-in}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]:hover{border:1px solid transparent;background:var(--primary-color)}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]::after{display:none;content:"";width:.5rem;height:.5rem;border-top:.125rem solid var(--sdk-navigation-arrows-after);border-left:.125rem solid var(--sdk-navigation-arrows-after)}[_nghost-%COMP%] .player-nextIcon[_ngcontent-%COMP%]::after{content:"";-webkit-transform:rotate(135deg);transform:rotate(135deg);border-top:.125rem solid var(--sdk-player-nextIcon);border-left:.125rem solid var(--sdk-player-nextIcon)}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]:hover.player-nextIcon::after{content:"";border-top:.125rem solid var(--sdk-player-nextIcon);border-left:.125rem solid var(--sdk-player-nextIcon)}[_nghost-%COMP%] .navigation-arrows.player-nextIcon[_ngcontent-%COMP%]{background:var(--primary-color)}button[_ngcontent-%COMP%]{-webkit-appearance:none;background:0 0;border:0}.paginate[_ngcontent-%COMP%]{position:relative;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.paginate[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{position:absolute;top:42%;left:40%;width:.75rem;height:.1875rem;border-radius:.09375rem;background:var(--white);-webkit-transition:.15s;transition:.15s}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{-webkit-transform-origin:0 50%;transform-origin:0 50%;background-color:var(--gray-800)}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,-1px) rotate(40deg);transform:translate(0,-1px) rotate(40deg)}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,1px) rotate(-40deg);transform:translate(0,1px) rotate(-40deg)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]{background-color:var(--white)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,0) rotate(30deg);transform:translate(0,0) rotate(30deg)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,1px) rotate(-30deg);transform:translate(0,1px) rotate(-30deg)}.paginate.left[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(-.3125rem,0) rotate(0);transform:translate(-.3125rem,0) rotate(0)}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,.0625rem) rotate(40deg);transform:translate(0,.0625rem) rotate(40deg)}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,-.0625rem) rotate(-40deg);transform:translate(0,-.0625rem) rotate(-40deg)}.paginate.right[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,.0625rem) rotate(30deg);transform:translate(0,.0625rem) rotate(30deg)}.paginate.right[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,.0625rem) rotate(-30deg);transform:translate(0,.0625rem) rotate(-30deg)}.paginate.right[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(.3125rem,0) rotate(0);transform:translate(.3125rem,0) rotate(0)}.paginate[data-state=disabled][_ngcontent-%COMP%]{opacity:.3;cursor:default} html[dir=rtl] .player-nextIcon, html[dir=rtl] .player-previousIcon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}';function Qa(z,A){if(1&z){const te=t.EpF();t.TgZ(0,"div",6)(1,"img",7),t.NdJ("click",function(){t.CHM(te);const Ae=t.oxw();return t.KtG(Ae.rotateCW())}),t.qZA()()}}function g2(z,A){if(1&z){const te=t.EpF();t.TgZ(0,"div",8)(1,"button",9),t.NdJ("click",function(){t.CHM(te);const Ae=t.oxw();return t.KtG(Ae.zoomOut())}),t.qZA(),t.TgZ(2,"button",10),t.NdJ("click",function(){t.CHM(te);const Ae=t.oxw();return t.KtG(Ae.zoomIn())}),t.qZA()()}}function m2(z,A){if(1&z){const te=t.EpF();t.TgZ(0,"div",11)(1,"input",12),t.NdJ("ngModelChange",function(Ae){t.CHM(te);const tt=t.oxw();return t.KtG(tt.page=Ae)}),t.qZA(),t.TgZ(2,"span",13),t.NdJ("click",function(){t.CHM(te);const Ae=t.oxw();return t.KtG(Ae.gotoPage())}),t._UZ(3,"img",14),t.qZA(),t.TgZ(4,"span",15),t._uU(5,"/"),t.qZA(),t.TgZ(6,"span",16),t._uU(7),t.qZA()()}if(2&z){const te=t.oxw();t.xp6(1),t.Q6J("ngModel",te.page)("max",te.totalPages),t.xp6(6),t.Oqu(te.totalPages)}}function Cs(z,A){if(1&z){const te=t.EpF();t.TgZ(0,"div",17)(1,"div",18)(2,"sb-player-previous-navigation",19),t.NdJ("previousAction",function(Ae){t.CHM(te);const tt=t.oxw();return t.KtG(tt.actions.emit(Ae))}),t.qZA(),t.TgZ(3,"sb-player-next-navigation",20),t.NdJ("nextAction",function(Ae){t.CHM(te);const tt=t.oxw();return t.KtG(tt.actions.emit(Ae))}),t.qZA()()()}}const _2={contentCompatibility:"CPV2_CONT_COMP_01",contentLoadFails:"CPV2_CONT_LOAD_FAIL_01",internetConnectivity:"CPV2_INT_CONNECT_01",streamingUrlSupport:"CPV2_INT_STREAMINGURL_01"},ia={contentCompatibility:"content compatibility error",contentLoadFails:"content load failed",internetConnectivity:"content failed to load , No Internet Available",streamingUrlSupport:"streaming url is not supported",contentPlayFailedHeader:"Unable to load content",contentPlayFailTitle:"Refresh and try again later"};class Sa{constructor(){this.playerContentCompatibiltyLevel=5,this.getInternetConnectivityError=new t.vpe,this.setInternetConnectivityError=()=>{const A=new Error;A.message=ia.internetConnectivity,A.name=_2.internetConnectivity,this.getInternetConnectivityError.emit({error:A})},this.initInternetConnectivityError()}checkContentCompatibility(A){if(A>this.playerContentCompatibiltyLevel){const te=new Error;return te.message=`Player supports ${this.playerContentCompatibiltyLevel}\n but content compatibility is ${A}`,te.name="contentCompatibily",{error:te,isCompitable:!1}}return{error:null,isCompitable:!0}}initInternetConnectivityError(){window.addEventListener("offline",this.setInternetConnectivityError)}ngOnDestroy(){window.removeEventListener("offline",this.setInternetConnectivityError)}}Sa.\u0275fac=function(A){return new(A||Sa)},Sa.ctorParameters=()=>[],Sa.\u0275prov=(0,t.Yz7)({factory:function(){return new Sa},token:Sa,providedIn:"root"});class vs{constructor(){this.downloadEvent=new t.vpe,this.hideDownloadPopUp=new t.vpe,this.showDownloadPopUp=!1}hideDownloadPopup(A,te){this.disabledHandle.disengage(),this.hideDownloadPopUp.emit({event:A,type:te})}ngOnChanges(A){for(const te in A)if(A.hasOwnProperty(te)&&"showDownloadPopUp"===te){this.showDownloadPopUp=A[te].currentValue||!1;const ve=document.querySelector(".file-download");this.disabledHandle=he.disabled({filter:ve})}}download(A,te){this.downloadEvent.emit({event:A,type:te}),this.disabledHandle.disengage()}}vs.\u0275fac=function(A){return new(A||vs)},vs.\u0275cmp=t.Xpm({type:vs,selectors:[["sb-player-download-popup"]],inputs:{showDownloadPopUp:"showDownloadPopUp",title:"title"},outputs:{downloadEvent:"downloadEvent",hideDownloadPopUp:"hideDownloadPopUp"},features:[t.TTD],decls:16,vars:4,consts:[[1,"file-download",3,"ngClass"],[1,"file-download__overlay"],["aria-modal","true","aria-labelledby","Download Content","aria-describedby","Dialog to download content",1,"file-download__popup"],[1,"close-btn",3,"click"],["type","button","id","close","data-animation","showShadow","aria-label","player-close-btn",1,"close-icon"],[1,"file-download__metadata"],[1,"file-download__title","text-left"],[1,"file-download__text","text-left"],[1,"file-download__size"],[1,"file-download__action-btns"],["type","button","id","cancel",1,"sb-btn","sb-btn-normal","sb-btn-outline-primary","sb-btn-radius","cancel-btn","mr-8",3,"click"],["type","button","id","download",1,"sb-btn","sb-btn-normal","sb-btn-primary","sb-btn-radius","download-btn",3,"click"]],template:function(A,te){1&A&&(t.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"div",3),t.NdJ("click",function(Ae){return te.hideDownloadPopup(Ae,"DOWNLOAD_POPUP_CLOSE")}),t._UZ(4,"button",4),t.qZA(),t.TgZ(5,"div",5)(6,"h5",6),t._uU(7,"Confirm Download"),t.qZA(),t.TgZ(8,"div",7),t._uU(9),t.qZA(),t._UZ(10,"div",8),t.TgZ(11,"div",9)(12,"button",10),t.NdJ("click",function(Ae){return te.hideDownloadPopup(Ae,"DOWNLOAD_POPUP_CANCEL")}),t._uU(13,"Cancel"),t.qZA(),t.TgZ(14,"button",11),t.NdJ("click",function(Ae){return te.download(Ae,"DOWNLOAD")}),t._uU(15,"Download"),t.qZA()()()()()()),2&A&&(t.Q6J("ngClass",t.VKq(2,Ve,te.showDownloadPopUp)),t.xp6(9),t.hij('"',te.title,'" will be saved on your device.'))},dependencies:[C.mk],styles:['[_nghost-%COMP%] .file-download[_ngcontent-%COMP%]{width:100%;height:100%;position:absolute;top:0;left:0;z-index:99;-webkit-transition:.3s;transition:.3s;opacity:0;visibility:hidden}[_nghost-%COMP%] .file-download__overlay[_ngcontent-%COMP%]{width:100%;height:100%;background:rgba(var(--rc-rgba-black),.5);display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;-webkit-transition:.3s;transition:.3s;visibility:hidden}[_nghost-%COMP%] .file-download__popup[_ngcontent-%COMP%]{width:90%;max-width:22.5rem;min-height:13.125rem;background:var(--white);border-radius:1rem;box-shadow:0 0 1.5em 0 rgba(var(--rc-rgba-black),.22);padding:1.5rem;position:relative;-webkit-transition:.3s ease-in;transition:.3s ease-in;-webkit-transform:scale(.5);transform:scale(.5)}[_nghost-%COMP%] .file-download__close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem;width:1.5rem;height:1.5rem;cursor:pointer}[_nghost-%COMP%] .file-download__close-btn[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{max-width:100%}[_nghost-%COMP%] .file-download__metadata[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;height:100%}[_nghost-%COMP%] .file-download__title[_ngcontent-%COMP%]{font-size:1rem;font-weight:700;line-height:1.375rem;word-break:break-word}[_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%]{color:var(--gray-400);word-break:break-word}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%]{color:var(--black)}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%]{font-size:.875rem;line-height:1.25rem}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__title[_ngcontent-%COMP%]{margin:0 0 1.5em}[_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:end;justify-content:flex-end}[_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%] .cancel-btn[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%] .download-btn[_ngcontent-%COMP%]{outline:0;border:none;font-size:.75rem;text-transform:uppercase;cursor:pointer;line-height:normal}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%] .file-download__popup[_ngcontent-%COMP%]{-webkit-transform:scale(1);transform:scale(1);visibility:visible}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%]{visibility:visible;opacity:1}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%] .file-download__overlay[_ngcontent-%COMP%]{visibility:visible}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]{width:1.875rem;height:1.875rem;background:0 0;border-radius:50%;cursor:pointer;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center;padding:0}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::after{content:"";-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::before{content:"";-webkit-transform:rotate(45deg);transform:rotate(45deg)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:after, [_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:before{content:"";width:1.25rem;height:.125rem;position:absolute;background-color:var(--black)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]{box-shadow:0 0 0 0 var(--red) inset;-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775);border:0 solid var(--white)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:before{-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:after{-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover{box-shadow:0 0 0 .25rem var(--red) inset}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:before{-webkit-transform:scale(.7) rotate(45deg);transform:scale(.7) rotate(45deg);-webkit-transition-delay:.1s;transition-delay:.1s;background-color:var(--red)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:after{-webkit-transform:scale(.7) rotate(-45deg);transform:scale(.7) rotate(-45deg);-webkit-transition-delay:.1s;transition-delay:.1s;background-color:var(--red)} html[dir=rtl] .close-btn{left:.75rem;right:auto}']}),vs.propDecorators={title:[{type:t.IIB}],downloadEvent:[{type:t.r_U}],hideDownloadPopUp:[{type:t.r_U}],showDownloadPopUp:[{type:t.IIB}]};class Ka{constructor(){this.showReplay=!0,this.replayContent=new t.vpe,this.exitContent=new t.vpe,this.playNextContent=new t.vpe}ngOnInit(){this.subscription=(0,Le.R)(document,"keydown").subscribe(A=>{"Enter"===A.key&&(A.stopPropagation(),document.activeElement.click())})}playNext(){this.playNextContent.emit({name:this.nextContent.name,identifier:this.nextContent.identifier,type:"NEXT_CONTENT_PLAY"})}replay(){this.showReplay&&this.replayContent.emit({type:"REPLAY"})}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}}Ka.\u0275fac=function(A){return new(A||Ka)},Ka.\u0275cmp=t.Xpm({type:Ka,selectors:[["sb-player-end-page"]],inputs:{showReplay:"showReplay",showExit:"showExit",contentName:"contentName",outcome:"outcome",outcomeLabel:"outcomeLabel",userName:"userName",timeSpentLabel:"timeSpentLabel",nextContent:"nextContent"},outputs:{replayContent:"replayContent",exitContent:"exitContent",playNextContent:"playNextContent"},ngContentSelectors:["*"],decls:237,vars:9,consts:[[1,"player-endpage"],[1,"player-endpage__left-panel"],[1,"user-score-card"],["width","100%","height","100%","viewBox","0 0 250 250","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",0,"xmlns","xhtml","http://www.w3.org/1999/xhtml"],["id","filter-1"],["in","SourceGraphic","type","matrix","values",""],["x1","-19.3154721%","y1","50%","x2","100%","y2","50%","id","linearGradient-1"],["stop-color","#43A981","offset","0%"],["stop-color","#1D7E58","offset","100%"],["x1","0%","y1","0%","x2","101.719666%","y2","100%","id","linearGradient-2"],["stop-color","#FFCD55","offset","0%"],["stop-color","#FFD955","offset","100%"],["d","M124.02,185.665 C116.138,185.665 109.713,175.367 102.434,173.416 C94.911,171.399 84.204,177.031 77.612,173.212 C70.933,169.339 70.491,157.213 65.068,151.786 C59.642,146.36 47.514,145.92 43.643,139.24 C39.825,132.649 45.454,121.942 43.438,114.42 C41.487,107.143 31.19,100.717 31.19,92.831 C31.19,84.948 41.487,78.521 43.438,71.245 C45.454,63.721 39.825,53.013 43.644,46.423 C47.516,39.742 59.643,39.304 65.068,33.878 C70.493,28.452 70.933,16.325 77.612,12.453 C84.206,8.635 94.911,14.266 102.434,12.248 C109.713,10.297 116.138,-1.42108547e-14 124.02,-1.42108547e-14 C131.907,-1.42108547e-14 138.332,10.297 145.608,12.248 C153.132,14.266 163.839,8.635 170.429,12.454 C177.11,16.325 177.55,28.453 182.976,33.879 C188.403,39.305 200.531,39.743 204.401,46.425 C208.22,53.015 202.589,63.722 204.606,71.245 C206.558,78.521 216.854,84.948 216.854,92.831 C216.854,100.717 206.558,107.143 204.606,114.421 C202.589,121.943 208.22,132.651 204.4,139.242 C200.529,145.923 188.401,146.361 182.975,151.787 C177.55,157.214 177.11,169.34 170.429,173.212 C163.839,177.031 153.132,171.4 145.608,173.416 C138.332,175.367 131.907,185.665 124.02,185.665","id","path-3"],["x","-6.5%","y","-6.5%","width","112.9%","height","112.9%","filterUnits","objectBoundingBox","id","filter-4"],["stdDeviation","11.5","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0.0914162133 0 0 0 0 0.159459438 0 0 0 0 0.537477355 0 0 0 1 0","type","matrix","in","shadowInnerInner1"],["x1","50%","y1","0.0901442308%","x2","50%","y2","99.6203016%","id","linearGradient-5"],["stop-color","#1D6349","offset","0%"],["stop-color","#1D6349","offset","100%"],["id","text-8","x","55","y","16","text-anchor","middle","fill","#FFFFFE",4,"ngIf"],["id","player-Player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","endgame-l2","transform","translate(-39.000000, -65.000000)"],["id","Group-2","transform","translate(39.500000, 65.000000)"],["filter","url(#filter-1)","id","Group"],["transform","translate(4.000000, 4.000000)",1,"particles"],["d","M84.4144231,47.2437308 L77.9616538,41.1916154 C77.5351923,40.7922308 76.8658846,40.8133846 76.4665,41.2394231 C76.0666923,41.6654615 76.0882692,42.3351923 76.5143077,42.7345769 L82.9670769,48.7866923 C83.3931154,49.1860769 84.0624231,49.1649231 84.4622308,48.7384615 C84.8616154,48.3124231 84.8404615,47.6431154 84.4144231,47.2437308","id","Fill-3"],["d","M78.2087308,48.9402692 L84.2616923,42.4875 C84.6615,42.0614615 84.6399231,41.3921538 84.2138846,40.9927692 C83.7878462,40.5929615 83.1185385,40.6141154 82.7187308,41.0405769 L76.6661923,47.4929231 C76.2663846,47.9189615 76.2879615,48.5886923 76.714,48.9880769 C77.1400385,49.3878846 77.8093462,49.3663077 78.2087308,48.9402692","id","Fill-4"],["d","M91.8275769,140.082038 L85.3748077,134.030346 C84.9487692,133.630538 84.2794615,133.652115 83.8796538,134.078154 C83.4802692,134.504192 83.5014231,135.1735 83.9278846,135.573308 L90.3806538,141.625 C90.8066923,142.024808 91.476,142.003231 91.8753846,141.577192 C92.2751923,141.151154 92.2536154,140.481846 91.8275769,140.082038","id","Fill-5"],["d","M85.6223077,141.779 L91.6748462,135.326231 C92.0746538,134.900192 92.0535,134.230885 91.6270385,133.831077 C91.201,133.431269 90.5316923,133.452846 90.1323077,133.878885 L84.0793462,140.331654 C83.6799615,140.757692 83.7011154,141.427 84.1271538,141.826808 C84.5531923,142.226192 85.2225,142.205038 85.6223077,141.779","id","Fill-6"],["d","M13.3091538,191.951269 L6.85638462,185.899154 C6.43034615,185.499769 5.76103846,185.520923 5.36123077,185.946962 C4.96184615,186.373423 4.98342308,187.042731 5.40946154,187.442115 L11.8622308,193.494231 C12.2882692,193.893615 12.9575769,193.872462 13.3569615,193.446423 C13.7567692,193.020385 13.7351923,192.350654 13.3091538,191.951269","id","Fill-7"],["d","M7.10388462,193.647808 L13.1568462,187.195038 C13.5562308,186.769 13.5350769,186.099692 13.1090385,185.700308 C12.683,185.3005 12.0136923,185.322077 11.6138846,185.748115 L5.56092308,192.200885 C5.16153846,192.626923 5.18269231,193.296231 5.60873077,193.695615 C6.03476923,194.095423 6.70407692,194.073846 7.10388462,193.647808","id","Fill-8"],["d","M10.4914615,38.4115769 L4.03869231,32.3594615 C3.61265385,31.9600769 2.94334615,31.9812308 2.54353846,32.4072692 C2.14415385,32.8333077 2.16573077,33.5030385 2.59176923,33.9024231 L9.04453846,39.9545385 C9.47057692,40.3539231 10.1398846,40.3327692 10.5392692,39.9067308 C10.9390769,39.4802692 10.9175,38.8109615 10.4914615,38.4115769","id","Fill-9"],["d","M4.28619231,40.1081154 L10.3391538,33.6553462 C10.7385385,33.2293077 10.7173846,32.56 10.2909231,32.1606154 C9.86488462,31.7608077 9.19557692,31.7823846 8.79619231,32.2084231 L2.74323077,38.6611923 C2.34342308,39.0872308 2.365,39.7565385 2.79103846,40.1559231 C3.21707692,40.5557308 3.88638462,40.5341538 4.28619231,40.1081154","id","Fill-10"],["d","M239.977269,47.0855 L233.5245,41.0333846 C233.098462,40.634 232.429154,40.6551538 232.029769,41.0811923 C231.629962,41.5072308 231.651538,42.1765385 232.077577,42.5763462 L238.530346,48.6284615 C238.956385,49.0278462 239.625692,49.0066923 240.0255,48.5802308 C240.424885,48.1541923 240.403308,47.4848846 239.977269,47.0855","id","Fill-11"],["d","M233.771577,48.7820385 L239.824538,42.3292692 C240.223923,41.9032308 240.202769,41.2339231 239.776731,40.8341154 C239.350692,40.4347308 238.681385,40.4558846 238.281577,40.8823462 L232.228615,47.3346923 C231.829231,47.7607308 231.850385,48.4304615 232.276423,48.8298462 C232.702885,49.2296538 233.372192,49.2080769 233.771577,48.7820385","id","Fill-12"],["d","M163.849231,80.0025769 L157.396462,73.9508846 C156.970423,73.5510769 156.301115,73.5726538 155.901308,73.9986923 C155.501923,74.4247308 155.523077,75.0940385 155.949115,75.4938462 L162.401885,81.5455385 C162.828346,81.9453462 163.497654,81.9237692 163.897038,81.4977308 C164.296846,81.0716923 164.275269,80.4023846 163.849231,80.0025769","id","Fill-13"],["d","M157.644385,81.6995385 L163.696923,75.2467692 C164.096731,74.8207308 164.075154,74.1514231 163.649115,73.7516154 C163.223077,73.3522308 162.553769,73.3733846 162.154385,73.7994231 L156.101423,80.2521923 C155.701615,80.6782308 155.723192,81.3475385 156.149231,81.7473462 C156.575269,82.1467308 157.244577,82.1255769 157.644385,81.6995385","id","Fill-14"],["d","M195.311346,151.846538 L188.858577,145.794423 C188.432538,145.395038 187.763231,145.416192 187.363423,145.842654 C186.964038,146.268692 186.985615,146.938 187.411654,147.337385 L193.864423,153.3895 C194.290462,153.788885 194.959769,153.767731 195.359154,153.341692 C195.758962,152.915654 195.737385,152.245923 195.311346,151.846538","id","Fill-15"],["d","M189.105654,153.543077 L195.158615,147.090308 C195.558,146.664269 195.536846,145.994962 195.110808,145.595577 C194.684769,145.195769 194.015462,145.217346 193.615654,145.643385 L187.562692,152.096154 C187.163308,152.522192 187.184462,153.1915 187.6105,153.590885 C188.036538,153.990692 188.705846,153.969115 189.105654,153.543077","id","Fill-16"],["d","M190.299577,210.370769 L183.846808,204.318654 C183.420769,203.919269 182.751462,203.940423 182.352077,204.366885 C181.952269,204.792923 181.973846,205.462231 182.399885,205.861615 L188.852654,211.913731 C189.278692,212.313538 189.948,212.291962 190.347808,211.865923 C190.747192,211.439885 190.726038,210.770577 190.299577,210.370769","id","Fill-17"],["d","M184.093885,212.067308 L190.146846,205.614538 C190.546654,205.1885 190.525077,204.519192 190.099038,204.119808 C189.673,203.72 189.003692,203.741577 188.603885,204.167615 L182.551346,210.620385 C182.151538,211.046423 182.173115,211.715731 182.599154,212.115115 C183.025192,212.514923 183.6945,212.493346 184.093885,212.067308","id","Fill-18"],["d","M131.642077,57.7017692 L132.557615,57.1720769 L128.114462,49.4881538 C127.925346,49.1611154 127.575885,48.9597308 127.198077,48.9601532 C126.819846,48.9601532 126.470808,49.1623846 126.282538,49.4898462 L117.420346,64.8674231 C117.231654,65.1948846 117.232077,65.5980769 117.421192,65.9251154 C117.610308,66.2521538 117.959769,66.4535385 118.337577,66.453116 L127.210346,66.4459231 L136.084808,66.4416923 C136.462615,66.4416923 136.811654,66.2394615 137.000346,65.9124231 C137.189462,65.5849615 137.189038,65.1817692 136.999923,64.8547308 L132.557615,57.1720769 L131.642077,57.7017692 L130.726115,58.2310385 L134.251192,64.3271538 L127.209077,64.3305385 L120.168231,64.3364615 L127.200615,52.1336538 L130.726115,58.2310385 L131.642077,57.7017692","id","Fill-19"],["d","M116.952846,151.625692 L117.868808,151.096 L113.425654,143.412077 C113.236115,143.085038 112.887077,142.883654 112.508846,142.884076 C112.131038,142.884076 111.782,143.086308 111.593308,143.413769 L102.731115,158.791346 C102.542423,159.118385 102.542846,159.522 102.731962,159.849038 C102.921077,160.176077 103.270538,160.377462 103.648346,160.377039 L112.521538,160.369846 L121.396,160.365615 C121.773808,160.365192 122.123269,160.163385 122.311962,159.836346 C122.500654,159.508885 122.500231,159.105692 122.311115,158.778231 L117.868808,151.096 L116.952846,151.625692 L116.037308,152.154962 L119.562385,158.251077 L112.520269,158.254462 L105.479,158.260385 L112.511385,146.057577 L116.037308,152.154962 L116.952846,151.625692","id","Fill-20"],["d","M167.868885,180.468538 L168.784423,179.938846 L164.341269,172.254923 C164.152154,171.927885 163.802692,171.7265 163.424885,171.7265 C163.047077,171.726923 162.697615,171.929154 162.508923,172.256192 L158.080154,179.944346 L153.646731,187.633769 C153.458038,187.961231 153.458462,188.364423 153.647577,188.691885 C153.836692,189.018923 154.186154,189.220308 154.563962,189.219885 L163.437154,189.212692 L172.311615,189.208462 C172.689423,189.208038 173.038462,189.006231 173.227154,188.678769 C173.415846,188.351731 173.415846,187.948538 173.226731,187.621077 L168.784423,179.938846 L167.868885,180.468538 L166.952923,180.997808 L170.478,187.093923 L163.435885,187.097308 L156.394615,187.103231 L163.427423,174.900423 L166.952923,180.997808 L167.868885,180.468538","id","Fill-21"],["d","M197.152577,121.4785 L198.174731,121.751808 L200.466962,113.176885 C200.564269,112.811769 200.459769,112.422115 200.192385,112.155154 C199.925,111.888192 199.534923,111.784115 199.170231,111.882269 L190.602077,114.186769 L182.030115,116.489154 C181.665423,116.587308 181.380269,116.872462 181.282538,117.237577 C181.185231,117.602692 181.289731,117.991923 181.557115,118.259308 L187.836423,124.528462 L194.114462,130.801 C194.381846,131.067962 194.7715,131.172462 195.136615,131.074308 C195.501308,130.976154 195.786462,130.691 195.884192,130.325885 L198.174731,121.751808 L197.152577,121.4785 L196.130846,121.205615 L194.313308,128.009115 L184.348577,118.056654 L191.151231,116.229808 L197.949654,114.401269 L196.130846,121.205615 L197.152577,121.4785","id","Fill-22"],["d","M51.2223462,21.9327308 L52.2440769,22.2056154 L54.5358846,13.6306923 C54.6336154,13.2655769 54.5291154,12.8759231 54.2617308,12.6089615 C53.9939231,12.342 53.6042692,12.2379231 53.2395769,12.3360769 L44.6714231,14.6405769 L44.6718462,14.6405769 L36.0994615,16.9433846 C35.7343462,17.0411154 35.4496154,17.3266923 35.3518846,17.6918077 C35.2545769,18.0569231 35.3590769,18.4461538 35.6264615,18.7131154 L41.9061923,24.9822692 L41.9057692,24.9818462 L48.1842308,31.2543846 C48.4516154,31.5213462 48.8412692,31.6258462 49.2059615,31.5276923 C49.5710769,31.4295385 49.8562308,31.1443846 49.9535385,30.7792692 L52.2440769,22.2056154 L50.2006154,21.6594231 L48.3830769,28.4629231 L43.4009231,23.4854231 L43.4005,23.485 L38.4179231,18.5108846 L45.2205769,16.6836154 L45.221,16.6836154 L52.019,14.8550769 L50.2006154,21.6594231 L51.2223462,21.9327308","id","Fill-23"],["d","M45.1456923,207.203192 L46.1674231,207.476077 L48.4592308,198.900731 C48.5569615,198.535615 48.4520385,198.145962 48.1846538,197.879 C47.9172692,197.612038 47.5276154,197.507962 47.1629231,197.606115 L38.5947692,199.911038 L38.5947692,199.910615 L30.0228077,202.213846 C29.6576923,202.311577 29.3725385,202.597154 29.2752308,202.962269 C29.1775,203.327385 29.2824231,203.716615 29.5498077,203.983577 L35.8295385,210.252308 L35.8291154,210.251885 L42.1075769,216.524423 C42.3749615,216.791385 42.7646154,216.895885 43.1293077,216.797731 C43.4944231,216.699577 43.7791538,216.414423 43.8768846,216.049308 L46.1674231,207.476077 L44.1239615,206.930308 L42.3064231,213.732962 L37.3242692,208.755462 L37.3238462,208.755038 L32.3412692,203.781346 L39.1435,201.953654 L39.1439231,201.953654 L45.9423462,200.125115 L44.1239615,206.929885 L45.1456923,207.203192","id","Fill-24"],["d","M206.143808,31.5111923 L206.6735,32.4267308 L214.357423,27.984 C214.684462,27.7948846 214.885846,27.4454231 214.885424,27.0676154 C214.885424,26.6893846 214.683192,26.3403462 214.355731,26.1516538 L206.667577,21.7224615 L206.668,21.7228846 L198.978154,17.2894615 C198.651115,17.1007692 198.2475,17.1011923 197.920462,17.2903077 C197.593423,17.4794231 197.392038,17.8288846 197.392461,18.2066923 L197.399654,27.0798846 L197.399654,27.0794615 L197.403885,35.9547692 C197.403885,36.3325769 197.606115,36.6816154 197.933577,36.8703077 C198.260615,37.059 198.664231,37.059 198.991269,36.8698846 L206.6735,32.4267308 L206.143808,31.5111923 L205.614538,30.5952308 L199.518423,34.1211538 L199.515038,27.0786154 L199.515038,27.0781923 L199.509115,20.0373462 L205.611577,23.5556538 L205.612,23.5556538 L211.711923,27.0697308 L205.614538,30.5952308 L206.143808,31.5111923","id","Fill-25"],["d","M44.9489615,120.167385 L45.4782308,121.082923 L53.1625769,116.640192 C53.4896154,116.450654 53.691,116.101192 53.6905776,115.723385 C53.6901538,115.345577 53.4883462,114.996538 53.1608846,114.807846 L45.4727308,110.378654 L45.4731538,110.379077 L37.7833077,105.945654 C37.4558462,105.756962 37.0526538,105.757385 36.7256154,105.9465 C36.3985769,106.135615 36.1971923,106.485077 36.1971923,106.862885 L36.2094615,124.610962 C36.2094615,124.989192 36.4112692,125.338231 36.7387308,125.526923 C37.0661923,125.715615 37.4693846,125.715192 37.7964231,125.526077 L45.4786538,121.082923 L44.4192692,119.251846 L38.324,122.777346 L38.3142692,108.693538 L44.4167308,112.211423 L44.4167308,112.211846 L50.5170769,115.725923 L44.4196923,119.251846 L44.9489615,120.167385","id","Fill-26"],["d","M146.638885,105.637654 L145.581192,105.637654 C145.580769,107.208115 144.947423,108.619923 143.918923,109.650115 C142.888731,110.678615 141.476923,111.311538 139.906885,111.312385 C138.336423,111.311538 136.924192,110.678615 135.893577,109.650115 C134.865077,108.619923 134.232154,107.208115 134.231731,105.637654 C134.232154,104.066769 134.865077,102.654962 135.893577,101.624769 C136.924192,100.596269 138.336423,99.9633462 139.906885,99.9625 C141.476923,99.9633462 142.888731,100.596269 143.918923,101.624769 C144.947423,102.654962 145.580769,104.066769 145.581192,105.637654 L147.696577,105.637654 C147.695731,101.334538 144.209154,97.8479615 139.906885,97.8471154 C135.603769,97.8479615 132.116769,101.334538 132.116346,105.637654 C132.116769,109.940346 135.603769,113.426923 139.906885,113.427769 C144.209154,113.426923 147.695731,109.940346 147.696577,105.637654 L146.638885,105.637654","id","Fill-27"],["d","M112.621808,30.5059615 L111.564115,30.5059615 C111.563692,32.0768462 110.930769,33.4886538 109.901846,34.5188462 C108.871654,35.5473462 107.459846,36.1802692 105.889385,36.1811154 C104.318923,36.1802692 102.907115,35.5473462 101.8765,34.5188462 C100.848,33.4886538 100.214654,32.0764231 100.214231,30.5059615 C100.214654,28.9355 100.848,27.5236923 101.8765,26.4935 C102.907115,25.465 104.318923,24.8320769 105.889385,24.8316538 C107.459846,24.8320769 108.871654,25.465 109.901846,26.4935 C110.930769,27.5236923 111.563692,28.9355 111.564115,30.5059615 L113.6795,30.5059615 C113.678654,26.2032692 110.192077,22.7166923 105.889385,22.7162692 C101.586692,22.7166923 98.0996923,26.2032692 98.0988462,30.5059615 C98.0996923,34.8095 101.586692,38.2956538 105.889385,38.2965 C110.192077,38.2956538 113.678654,34.8090769 113.6795,30.5059615 L112.621808,30.5059615","id","Fill-28"],["d","M116.918154,229.204885 L115.860462,229.204885 C115.860038,230.775346 115.227115,232.187577 114.198192,233.217769 C113.168,234.246269 111.756192,234.879615 110.185731,234.880038 C108.615692,234.879615 107.203462,234.246269 106.172846,233.217769 C105.144346,232.187154 104.511423,230.775346 104.510577,229.204885 C104.511423,227.634423 105.144346,226.222615 106.172846,225.192423 C107.203462,224.163923 108.615692,223.531 110.185731,223.530577 C111.756192,223.531 113.168423,224.163923 114.198615,225.192423 C115.227115,226.222615 115.860038,227.634423 115.860462,229.204885 L117.975846,229.204885 C117.975423,224.901769 114.488423,221.415615 110.185731,221.415192 C108.038192,221.414346 106.084,222.288423 104.677269,223.696423 C103.268846,225.102731 102.394769,227.056923 102.395192,229.204885 C102.396038,233.508 105.883462,236.994577 110.185731,236.995423 C114.488423,236.994577 117.975423,233.508 117.975846,229.204885 L116.918154,229.204885","id","Fill-29"],["d","M135.982423,219.142846 C135.983269,217.572385 136.616192,216.160577 137.645115,215.130385 C138.675308,214.101885 140.087538,213.468962 141.658,213.468538 C143.228462,213.468962 144.640269,214.101885 145.670885,215.130385 C146.699385,216.160154 147.332308,217.572385 147.332731,219.142846 C147.332731,219.726692 147.806577,220.200538 148.390423,220.200538 C148.974692,220.200538 149.448115,219.726692 149.448115,219.142846 C149.447692,214.839731 145.960692,211.353577 141.658,211.353153 C139.510038,211.352308 137.555846,212.226385 136.149538,213.634385 C134.741115,215.040269 133.866615,216.994462 133.867038,219.142846 C133.867038,219.726692 134.340885,220.200538 134.924731,220.200538 C135.509,220.200538 135.982423,219.726692 135.982423,219.142846","id","Fill-30"],["d","M82.247,115.736077 C82.2474231,114.165615 82.8807692,112.753385 83.9092692,111.723192 C84.9398846,110.694692 86.3521154,110.061769 87.9221538,110.061346 C89.4926154,110.061769 90.9044231,110.694692 91.9350385,111.723192 C92.9635385,112.753385 93.5964615,114.165192 93.5968846,115.736077 C93.5968846,116.319923 94.0707308,116.793769 94.6545769,116.793769 C95.2388462,116.793769 95.7122692,116.319923 95.7122692,115.736077 C95.7118462,111.432962 92.2248462,107.946385 87.9221538,107.945538 C83.6198846,107.946385 80.1324615,111.432962 80.1316154,115.736077 C80.1316154,116.319923 80.6054615,116.793769 81.1893077,116.793769 C81.7735769,116.793769 82.247,116.319923 82.247,115.736077","id","Fill-31"],["d","M11.4163077,61.0732692 C11.4167308,59.5011154 12.0479615,58.0884615 13.0713846,57.0586923 C14.0969231,56.0306154 15.5006923,55.3989615 17.061,55.3981154 C18.6213077,55.3989615 20.0250769,56.0306154 21.0501923,57.0586923 C22.0736154,58.0884615 22.7048462,59.5011154 22.7052692,61.0732692 C22.7052692,61.6571154 23.1786923,62.1309615 23.7629615,62.1309615 C24.3468077,62.1309615 24.820654,61.6571154 24.820654,61.0732692 C24.8210769,58.9265769 23.9516538,56.9732308 22.5495769,55.5660769 C21.1491923,54.1576538 19.2017692,53.2823077 17.061,53.2827306 C14.9202308,53.2823077 12.9728077,54.1576538 11.5724231,55.5660769 C10.1699231,56.9732308 9.3005,58.9265769 9.30092292,61.0732692 C9.30092292,61.6571154 9.77434615,62.1309615 10.3586154,62.1309615 C10.9428846,62.1309615 11.4163077,61.6571154 11.4163077,61.0732692","id","Fill-32"],["d","M180.062808,71.0401154 C178.491077,71.0396923 177.078,70.4084615 176.048231,69.3850385 C175.019731,68.3595 174.388077,66.9557308 174.387654,65.3954231 C174.388077,63.8351154 175.019731,62.4317692 176.048231,61.4062308 C177.078,60.3828077 178.490654,59.752 180.062808,59.7511538 C180.647077,59.7511538 181.1205,59.2777308 181.1205,58.6938846 C181.1205,58.1096154 180.647077,57.6361917 180.062808,57.6361917 C177.916115,57.6353462 175.962769,58.5047692 174.555615,59.9072692 C173.147192,61.3072308 172.271423,63.2546538 172.272269,65.3954231 C172.271423,67.5361923 173.147192,69.4836154 174.555615,70.884 C175.962769,72.2865 177.916115,73.1559231 180.062808,73.1555002 C180.647077,73.1555002 181.1205,72.6820769 181.1205,72.0978077 C181.1205,71.5135385 180.647077,71.0401154 180.062808,71.0401154","id","Fill-33"],["d","M17.9490385,228.116731 C16.3768846,228.115885 14.9642308,227.485077 13.9344615,226.461654 C12.9063846,225.436115 12.2747308,224.032346 12.2743077,222.472038 C12.2747308,220.911731 12.9063846,219.507962 13.9344615,218.482846 C14.9642308,217.459423 16.3768846,216.828615 17.9490385,216.828192 C18.5328846,216.828192 19.0067308,216.354769 19.0067308,215.7705 C19.0067308,215.186231 18.5328846,214.712808 17.9490385,214.712808 C15.8023462,214.712385 13.849,215.581808 12.4418462,216.983885 C11.0334231,218.383846 10.1580769,220.331269 10.1589225,222.472038 C10.1580769,224.612808 11.0334231,226.560231 12.4418462,227.960615 C13.849,229.362692 15.8023462,230.232538 17.9490385,230.232116 C18.5328846,230.232116 19.0067308,229.758269 19.0067308,229.174423 C19.0067308,228.590154 18.5328846,228.116731 17.9490385,228.116731","id","Fill-34"],["d","M90.1932308,14.0000385 C88.6215,13.9996154 87.2088462,13.3683846 86.1790769,12.3449615 C85.151,11.3194231 84.5193462,9.91565385 84.5185,8.35534615 C84.5193462,6.79503846 85.151,5.39126923 86.1790769,4.36615385 C87.2088462,3.34273077 88.6215,2.7115 90.1932308,2.71107692 C90.7775,2.71107692 91.2509231,2.23765385 91.2509231,1.65338462 C91.2509231,1.06953846 90.7775,0.595692153 90.1932308,0.595692153 C88.0469615,0.595269231 86.0936154,1.46469231 84.6864615,2.86676923 C83.2780385,4.26715385 82.4026923,6.21457692 82.4031152,8.35534615 C82.4026923,10.4961154 83.2780385,12.4435385 84.6864615,13.8439231 C86.0931923,15.2464231 88.0469615,16.1158462 90.1932308,16.1154232 C90.7775,16.1154232 91.2509231,15.642 91.2509231,15.0577308 C91.2509231,14.4734615 90.7775,14.0000385 90.1932308,14.0000385","id","Fill-35"],["d","M21.3154615,158.362769 L20.2577692,158.362769 C20.2569231,159.933231 19.624,161.345038 18.5955,162.375654 C17.5653077,163.404154 16.1530769,164.037077 14.5830385,164.037923 C13.0125769,164.037077 11.6003462,163.404154 10.5701538,162.375654 C9.54123077,161.345038 8.90830769,159.933231 8.90788462,158.362769 C8.90830769,156.792308 9.54123077,155.3805 10.5701538,154.350308 C11.6003462,153.321808 13.0125769,152.688885 14.5830385,152.688038 C16.1530769,152.688885 17.5653077,153.321808 18.5955,154.349885 C19.624,155.380077 20.2569231,156.791885 20.2577692,158.362769 L22.3731538,158.362769 C22.3723077,154.059654 18.8853077,150.5735 14.5830385,150.572654 C12.4350769,150.572231 10.4808846,151.446308 9.07415385,152.854308 C7.66615385,154.260192 6.79165385,156.214385 6.79249939,158.362769 C6.79292308,162.665885 10.2803462,166.152462 14.5830385,166.153308 C18.8853077,166.152462 22.3723077,162.665462 22.3731538,158.362769 L21.3154615,158.362769","id","Fill-36"],["d","M228.928192,166.051346 L227.8705,166.051346 C227.869654,167.621808 227.236731,169.034038 226.208231,170.064654 C225.178038,171.093154 223.766231,171.726077 222.196192,171.7265 C220.625731,171.726077 219.2135,171.093154 218.183308,170.064654 C217.154385,169.034038 216.521462,167.621808 216.521038,166.051346 C216.521462,164.480885 217.154385,163.069077 218.182885,162.038885 C219.2135,161.010385 220.625308,160.377885 222.196192,160.377038 C223.766231,160.377885 225.178038,161.010385 226.208231,162.038885 C227.236731,163.069077 227.869654,164.480885 227.8705,166.051346 L229.985885,166.051346 C229.985038,161.748231 226.498038,158.2625 222.196192,158.261654 C217.8935,158.2625 214.406077,161.748231 214.405654,166.051346 C214.406077,170.354462 217.893077,173.841462 222.196192,173.841885 C226.498462,173.841462 229.985038,170.354462 229.985885,166.051346 L228.928192,166.051346","id","Fill-37"],["d","M210.305192,58.6993846 L210.305192,59.7570769 L222.64,59.7570769 L222.64,71.0337692 L211.362885,71.0337692 L211.362885,58.6993846 L210.305192,58.6993846 L210.305192,59.7570769 L210.305192,58.6993846 L209.2475,58.6993846 L209.2475,72.0914615 C209.2475,72.3702692 209.360462,72.6427308 209.557192,72.8394615 C209.754346,73.0366154 210.026808,73.1491538 210.305192,73.1491538 L223.697692,73.1491538 C223.976077,73.1491538 224.248538,73.0366154 224.445269,72.8394615 C224.642423,72.6427308 224.755385,72.3702692 224.755385,72.0914615 L224.755385,58.6993846 C224.755385,58.421 224.642423,58.1485385 224.445269,57.9513846 C224.248538,57.7546538 223.976077,57.6416923 223.697692,57.6416923 L210.305192,57.6416923 C210.026808,57.6416923 209.754346,57.7546538 209.557192,57.9513846 C209.360462,58.1485385 209.2475,58.421 209.2475,58.6993846 L210.305192,58.6993846","id","Fill-38"],["d","M58.8897692,65.3954231 L58.8897692,66.4531154 L71.2237308,66.4531154 L71.2237308,77.7302308 L59.9474615,77.7302308 L59.9474615,65.3954231 L58.8897692,65.3954231 L58.8897692,66.4531154 L58.8897692,65.3954231 L57.8320769,65.3954231 L57.8320769,78.7879231 C57.8320769,79.0663077 57.9450385,79.3387692 58.1417692,79.5355 C58.3389231,79.7326538 58.6113846,79.8456154 58.8897692,79.8456154 L72.2814231,79.8456154 C72.5602308,79.8456154 72.8326923,79.7326538 73.0294231,79.5355 C73.2265769,79.3387692 73.3391154,79.0663077 73.3391154,78.7879231 L73.3391154,65.3954231 C73.3391154,65.1170385 73.2265769,64.8445769 73.0294231,64.6478462 C72.8326923,64.4506923 72.5602308,64.3377308 72.2814231,64.3377308 L58.8897692,64.3377308 C58.6113846,64.3377308 58.3389231,64.4506923 58.1417692,64.6478462 C57.9450385,64.8445769 57.8320769,65.1170385 57.8320769,65.3954231 L58.8897692,65.3954231","id","Fill-39"],["d","M58.2175,150.893346 L58.2175,151.951038 L70.5518846,151.951038 L70.5518846,163.228154 L59.2751923,163.228154 L59.2751923,150.893346 L58.2175,150.893346 L58.2175,151.951038 L58.2175,150.893346 L57.1598077,150.893346 L57.1598077,164.285846 C57.1598077,164.564231 57.2727692,164.836692 57.4699231,165.033423 C57.6666538,165.230577 57.9391154,165.343538 58.2175,165.343538 L71.6095769,165.343538 C71.8879615,165.343538 72.1604231,165.230577 72.3571538,165.033423 C72.5543077,164.836692 72.6672692,164.564231 72.6672692,164.285846 L72.6672692,150.893346 C72.6672692,150.614962 72.5543077,150.3425 72.3571538,150.145346 C72.1604231,149.948615 71.8879615,149.835654 71.6095769,149.835654 L58.2175,149.835654 C57.9391154,149.835654 57.6666538,149.948615 57.4699231,150.145346 C57.2727692,150.3425 57.1598077,150.614962 57.1598077,150.893346 L58.2175,150.893346","id","Fill-40"],["d","M210.305192,215.776423 L210.305192,216.834115 L222.639154,216.834115 L222.639154,228.110808 L211.362885,228.110808 L211.362885,215.776423 L210.305192,215.776423 L210.305192,216.834115 L210.305192,215.776423 L209.2475,215.776423 L209.2475,229.1685 C209.2475,229.446885 209.360462,229.719346 209.557192,229.9165 C209.754346,230.113231 210.026808,230.226192 210.305192,230.226192 L223.696846,230.226192 C223.975231,230.226192 224.247692,230.113231 224.444423,229.9165 C224.641577,229.719346 224.754538,229.446885 224.754538,229.1685 L224.754538,215.776423 C224.754538,215.497615 224.641577,215.225154 224.444423,215.028423 C224.247692,214.831269 223.975231,214.718731 223.696846,214.718731 L210.305192,214.718731 C210.026808,214.718731 209.754346,214.831269 209.557192,215.028423 C209.360462,215.225154 209.2475,215.497615 209.2475,215.776423 L210.305192,215.776423","id","Fill-41"],["d","M154.751808,1.65973077 L154.751808,2.71742308 L167.085346,2.71742308 L167.085346,13.9941154 L155.8095,13.9941154 L155.8095,1.65973077 L154.751808,1.65973077 L154.751808,2.71742308 L154.751808,1.65973077 L153.694115,1.65973077 L153.694115,15.0518077 C153.694115,15.3306154 153.806654,15.6030769 154.003808,15.7998077 C154.200538,15.9965385 154.473,16.1095 154.751808,16.1095 L168.143038,16.1095 C168.421423,16.1095 168.693885,15.9965385 168.891038,15.7998077 C169.087769,15.6030769 169.200731,15.3306154 169.200731,15.0518077 L169.200731,1.65973077 C169.200731,1.38134615 169.087769,1.10888462 168.891038,0.911730769 C168.693885,0.715 168.421423,0.602038462 168.143038,0.602038462 L154.751808,0.602038462 C154.473,0.602038462 154.200538,0.715 154.003808,0.911730769 C153.806654,1.10888462 153.694115,1.38134615 153.694115,1.65973077 L154.751808,1.65973077","id","Fill-42"],["d","M135.508154,136.771462 C135.298731,136.769769 135.172654,136.731692 135.044885,136.667808 C134.934038,136.610269 134.818962,136.522692 134.692038,136.386462 C134.469077,136.151231 134.227077,135.765385 133.973654,135.300423 C133.585692,134.604885 133.179962,133.738423 132.487808,132.969692 C132.140885,132.587654 131.710615,132.232269 131.180923,131.980115 C130.6525,131.726692 130.033538,131.585808 129.357885,131.587068 C128.773615,131.587068 128.300192,132.060923 128.300192,132.644769 C128.300192,133.229038 128.773615,133.702462 129.357885,133.702462 C129.702269,133.703308 129.957808,133.76 130.175269,133.847577 C130.365654,133.925423 130.530654,134.0295 130.692692,134.168269 C130.975308,134.409 131.243115,134.767769 131.503731,135.2065 C131.901,135.862692 132.255115,136.675423 132.809346,137.425962 C133.089,137.799538 133.432538,138.165077 133.889038,138.443462 C134.342577,138.722692 134.9095,138.890231 135.508154,138.886896 C136.092423,138.886896 136.565846,138.413423 136.565846,137.829154 C136.565846,137.245308 136.092423,136.771462 135.508154,136.771462","id","Fill-43"],["d","M147.808269,136.771462 C147.598423,136.769769 147.472346,136.731692 147.344577,136.667808 C147.233731,136.610269 147.119077,136.522692 146.991731,136.386462 C146.768769,136.151231 146.526769,135.765385 146.273346,135.300423 C145.885385,134.604885 145.480077,133.738423 144.787923,132.970115 C144.441,132.587654 144.011154,132.232269 143.481462,131.980115 C142.953038,131.726692 142.334077,131.585808 141.658423,131.587068 C141.074577,131.587068 140.600731,132.060923 140.600731,132.644769 C140.600731,133.229038 141.074577,133.702462 141.658423,133.702462 C142.002808,133.703308 142.258346,133.76 142.475808,133.847577 C142.665769,133.925 142.830769,134.0295 142.992808,134.168269 C143.275423,134.409 143.543231,134.767769 143.803423,135.2065 C144.201115,135.862692 144.555231,136.675423 145.109038,137.425962 C145.389115,137.799538 145.732231,138.165077 146.188731,138.443462 C146.642692,138.722692 147.209192,138.890231 147.808269,138.886896 C148.392115,138.886896 148.865962,138.413423 148.865962,137.829154 C148.865962,137.245308 148.392115,136.771462 147.808269,136.771462","id","Fill-44"],["d","M135.508154,138.886873 C136.029808,138.888962 136.527346,138.764577 136.945769,138.545423 C137.313423,138.354615 137.617615,138.101192 137.870615,137.830423 C138.313154,137.353615 138.616923,136.825192 138.896577,136.319615 C139.3095,135.559346 139.676731,134.8435 140.093462,134.393346 C140.300769,134.166154 140.5085,134.003269 140.746269,133.889462 C140.985308,133.776923 141.262846,133.704154 141.658423,133.702462 C142.242692,133.702462 142.716115,133.229038 142.716115,132.644769 C142.716115,132.060923 142.242692,131.587076 141.658423,131.587076 C141.070346,131.586654 140.525423,131.692 140.045231,131.887885 C139.624269,132.058385 139.257462,132.295308 138.945654,132.563538 C138.398615,133.034846 138.015731,133.589923 137.696731,134.122154 C137.225,134.921346 136.870038,135.691346 136.512962,136.159269 C136.337385,136.394923 136.1745,136.548077 136.028538,136.635654 C135.880038,136.721962 135.748885,136.7685 135.508154,136.771462 C134.924308,136.771462 134.450462,137.245308 134.450462,137.829154 C134.450462,138.413423 134.924308,138.886873 135.508154,138.886873","id","Fill-45"],["d","M147.808269,138.886873 C148.3295,138.888962 148.827038,138.764577 149.245462,138.545423 C149.613115,138.354615 149.917308,138.101192 150.170308,137.830423 C150.612423,137.353192 150.916192,136.825192 151.196269,136.319615 C151.608769,135.559346 151.976,134.8435 152.392731,134.393346 C152.600038,134.166154 152.808192,134.003269 153.045538,133.889462 C153.284577,133.776923 153.562115,133.704154 153.957692,133.702462 C154.541538,133.702462 155.015385,133.229038 155.015385,132.644769 C155.015385,132.060923 154.541538,131.587076 153.957692,131.587076 C153.369192,131.586654 152.824269,131.692 152.344077,131.887885 C151.923538,132.058385 151.556731,132.295308 151.244923,132.563538 C150.697885,133.034846 150.315,133.589923 149.996,134.122154 C149.524269,134.921346 149.169731,135.691346 148.812231,136.159269 C148.636654,136.394923 148.473769,136.548077 148.328231,136.635654 C148.179731,136.721962 148.048154,136.7685 147.808269,136.771462 C147.224,136.771462 146.750577,137.245308 146.750577,137.829154 C146.750577,138.413423 147.224,138.886873 147.808269,138.886873","id","Fill-46"],["d","M170.546962,233.332423 C170.337115,233.330308 170.211038,233.292654 170.083269,233.228346 C169.972423,233.170808 169.857769,233.083231 169.730423,232.947 C169.507462,232.711769 169.265462,232.325923 169.012038,231.860962 C168.624077,231.165423 168.218346,230.298538 167.526615,229.529808 C167.179692,229.147769 166.749,228.792385 166.219308,228.540231 C165.690885,228.286385 165.071923,228.145923 164.396692,228.147184 C163.812423,228.147184 163.339,228.620615 163.339,229.204885 C163.339,229.789154 163.812423,230.262577 164.396692,230.262577 C164.741077,230.263423 164.996192,230.319692 165.214077,230.407692 C165.404038,230.485115 165.569038,230.589192 165.7315,230.727962 C166.013692,230.969115 166.2815,231.327885 166.542115,231.766615 C166.939385,232.422808 167.293923,233.235538 167.847731,233.9865 C168.127808,234.360077 168.470923,234.725615 168.927423,235.004 C169.381385,235.283654 169.947885,235.451192 170.546962,235.447858 C171.130808,235.447858 171.604654,234.973962 171.604654,234.390115 C171.604654,233.805846 171.130808,233.332423 170.546962,233.332423","id","Fill-47"],["d","M182.846654,233.332423 C182.637231,233.330308 182.510731,233.292654 182.382962,233.228346 C182.272538,233.170808 182.157462,233.083231 182.030115,232.947 C181.807154,232.711769 181.565577,232.326346 181.311731,231.861385 C180.924192,231.165846 180.518462,230.299385 179.826731,229.530654 C179.479808,229.148615 179.049538,228.793231 178.519846,228.540654 C177.991423,228.287231 177.372462,228.146769 176.697231,228.14803 C176.112962,228.14803 175.639538,228.621462 175.639538,229.205731 C175.639538,229.79 176.112962,230.263423 176.697231,230.263423 C177.041615,230.264269 177.296731,230.320538 177.514192,230.408115 C177.704154,230.485962 177.869577,230.590038 178.031615,230.728808 C178.313808,230.969538 178.581615,231.328308 178.842231,231.767038 C179.2395,232.423231 179.593615,233.235962 180.147846,233.9865 C180.4275,234.360077 180.771038,234.725615 181.227538,235.004 C181.681077,235.283654 182.247577,235.451192 182.846654,235.447858 C183.430923,235.447858 183.904346,234.973962 183.904346,234.390115 C183.904346,233.805846 183.430923,233.332423 182.846654,233.332423","id","Fill-48"],["d","M170.546962,235.447825 C171.068192,235.4495 171.565731,235.325538 171.984577,235.105962 C172.352231,234.915577 172.656423,234.662154 172.909,234.390962 C173.351538,233.914154 173.655308,233.385731 173.935385,232.880154 C174.347885,232.120308 174.715115,231.404038 175.131846,230.953885 C175.339154,230.726692 175.547308,230.563808 175.785077,230.45 C176.023692,230.337462 176.301231,230.264692 176.697231,230.263423 C177.2815,230.263423 177.754923,229.79 177.754923,229.205731 C177.754923,228.621462 177.2815,228.148033 176.697231,228.148033 C176.108731,228.147192 175.563808,228.252538 175.083615,228.448423 C174.663077,228.618923 174.295846,228.855846 173.984038,229.124077 C173.437,229.595808 173.054115,230.150885 172.735115,230.682692 C172.263385,231.481885 171.908846,232.251885 171.551769,232.719808 C171.375769,232.955885 171.212885,233.108615 171.067346,233.196192 C170.918846,233.282923 170.787269,233.329038 170.546962,233.332423 C169.962692,233.332423 169.489269,233.805846 169.489269,234.390115 C169.489269,234.973962 169.962692,235.447825 170.546962,235.447825","id","Fill-49"],["d","M182.847077,235.447825 C183.368308,235.4495 183.865846,235.325115 184.284269,235.105538 C184.6515,234.915154 184.955692,234.661731 185.208692,234.390538 C185.650808,233.913731 185.954577,233.385308 186.234654,232.880154 C186.647154,232.119885 187.014385,231.404038 187.431115,230.953885 C187.638423,230.726692 187.846154,230.563808 188.0835,230.45 C188.322538,230.337462 188.599654,230.264692 188.995231,230.263423 L188.995654,230.263423 L188.995654,229.208692 L188.828962,230.249885 C188.906385,230.262154 188.966038,230.263423 188.995654,230.263423 L188.995654,229.208692 L188.828962,230.249885 C189.405615,230.342115 189.948,229.9495 190.040654,229.372846 C190.132885,228.795769 189.739846,228.253385 189.163192,228.161154 C189.085769,228.148885 189.025692,228.148033 188.995654,228.148033 L188.995231,228.148033 C188.407154,228.147192 187.862231,228.252538 187.382038,228.448423 C186.9615,228.618923 186.594692,228.855846 186.282885,229.124077 C185.736269,229.595385 185.353385,230.150462 185.034385,230.682269 C184.562654,231.481462 184.208115,232.251462 183.851038,232.719808 C183.675038,232.955462 183.512154,233.108192 183.366615,233.196192 C183.218115,233.2825 183.086538,233.329038 182.846231,233.332423 C182.261962,233.332423 181.788962,233.806269 181.788962,234.390115 C181.788962,234.974385 182.262808,235.447825 182.847077,235.447825","id","Fill-50"],["d","M187.318577,94.1223462 C187.109154,94.1202308 186.983077,94.0825769 186.855308,94.0182692 C186.744462,93.9607308 186.629385,93.8731538 186.502462,93.7369231 C186.2795,93.5016923 186.0375,93.1162692 185.784077,92.6508846 C185.396115,91.9553462 184.990385,91.0888846 184.298654,90.3201538 C183.951731,89.9381154 183.521462,89.5827308 182.991769,89.3305769 C182.463346,89.0767308 181.844385,88.9362692 181.169154,88.9375299 C180.584885,88.9375299 180.111462,89.4109615 180.111462,89.9952308 C180.111462,90.5795 180.584885,91.0529231 181.169154,91.0529231 C181.513538,91.0537692 181.768654,91.1100385 181.986115,91.1980385 C182.1765,91.2754615 182.3415,91.3795385 182.503538,91.5183077 C182.786154,91.7590385 183.053538,92.1182308 183.314154,92.5565385 C183.711423,93.2131538 184.065538,94.0258846 184.619769,94.7764231 C184.899423,95.15 185.242962,95.5155385 185.699462,95.7939231 C186.153,96.0735769 186.7195,96.2411154 187.318577,96.2377811 C187.902846,96.2377811 188.376269,95.7638846 188.376269,95.1800385 C188.376269,94.5957692 187.902846,94.1223462 187.318577,94.1223462","id","Fill-51"],["d","M199.618692,94.1223462 C199.408846,94.1202308 199.282769,94.0825769 199.155,94.0182692 C199.044154,93.9607308 198.9295,93.8731538 198.802154,93.7369231 C198.579192,93.5016923 198.337192,93.1162692 198.083769,92.6513077 C197.695808,91.9557692 197.2905,91.0893077 196.598346,90.3205769 C196.251423,89.9385385 195.821154,89.5831538 195.291885,89.331 C194.763038,89.0771538 194.1445,88.9366923 193.468846,88.937953 C192.885,88.937953 192.411154,89.4113846 192.411154,89.9956538 C192.411154,90.5799231 192.885,91.0533462 193.468846,91.0533462 C193.813231,91.0541923 194.068769,91.1104615 194.286231,91.1980385 C194.476192,91.2758846 194.641192,91.3799615 194.803231,91.5187308 C195.085846,91.7594615 195.353231,92.1182308 195.613846,92.5569615 C196.011115,93.2131538 196.365654,94.0258846 196.919462,94.7768462 C197.199538,95.15 197.542654,95.5155385 197.999154,95.7939231 C198.453115,96.0735769 199.019615,96.2411154 199.618692,96.2377811 C200.202538,96.2377811 200.676385,95.7638846 200.676385,95.1800385 C200.676385,94.5957692 200.202538,94.1223462 199.618692,94.1223462","id","Fill-52"],["d","M187.318577,96.2377479 C187.839808,96.2394231 188.337769,96.1154615 188.756192,95.8958846 C189.123846,95.7055 189.428038,95.4520769 189.681038,95.1808846 C190.123577,94.7040769 190.427346,94.1756538 190.707423,93.6705 C191.119923,92.9102308 191.487577,92.1939615 191.904308,91.7438077 C192.111615,91.5166154 192.319346,91.3537308 192.557115,91.2399231 C192.795731,91.1273846 193.073269,91.0546154 193.468846,91.0533462 C194.053115,91.0533462 194.526538,90.5799231 194.526538,89.9956538 C194.526538,89.4113846 194.053115,88.9379565 193.468846,88.9379565 C192.880769,88.9371154 192.335846,89.0424615 191.855654,89.2383462 C191.435115,89.4088462 191.067885,89.6457692 190.756077,89.914 C190.209462,90.3857308 189.826154,90.9408077 189.507577,91.4726154 C189.035423,92.2718077 188.680885,93.0418077 188.323808,93.5097308 C188.147808,93.7453846 187.984923,93.8985385 187.839385,93.9861154 C187.690462,94.0728462 187.558885,94.1189615 187.318577,94.1223462 C186.734731,94.1223462 186.260885,94.5957692 186.260885,95.1800385 C186.260885,95.7638846 186.734731,96.2377479 187.318577,96.2377479","id","Fill-53"],["d","M199.618692,96.2377478 C200.139923,96.2394231 200.637462,96.1150385 201.056308,95.8958846 C201.423538,95.7050769 201.728154,95.4516538 201.980731,95.1808846 C202.423269,94.7036538 202.727038,94.1756538 203.006692,93.6700769 C203.419615,92.9102308 203.786846,92.1939615 204.203577,91.7438077 C204.410885,91.5166154 204.618615,91.3537308 204.856385,91.2399231 C205.095423,91.1273846 205.372962,91.0546154 205.768962,91.0533462 C206.352808,91.0533462 206.826654,90.5795 206.826654,89.9956538 C206.826654,89.4113846 206.352808,88.9379565 205.768962,88.9379565 C205.180462,88.9371154 204.635538,89.0424615 204.155346,89.2383462 C203.734808,89.4088462 203.367577,89.6457692 203.055769,89.914 C202.508731,90.3853077 202.125846,90.9403846 201.806846,91.4721923 C201.335115,92.2718077 200.980577,93.0418077 200.623077,93.5097308 C200.4475,93.7453846 200.284615,93.8985385 200.138654,93.9861154 C199.990154,94.0724231 199.858577,94.1189615 199.618269,94.1223462 C199.034,94.1223462 198.560577,94.5957692 198.560577,95.1800385 C198.561,95.7643077 199.034423,96.2377478 199.618692,96.2377478","id","Fill-54"],["d","M16.2766154,87.857 C16.0667692,87.8553077 15.9406923,87.8172308 15.8129231,87.7529231 C15.7020769,87.6958077 15.5874231,87.6078077 15.4600769,87.472 C15.2371154,87.2367692 14.9951154,86.8509231 14.7416923,86.3859615 C14.3537308,85.6904231 13.948,84.8235385 13.2562692,84.0552308 C12.9093462,83.6727692 12.4790769,83.3173846 11.9493846,83.0652308 C11.4209615,82.8118077 10.802,82.6709231 10.1263462,82.6721838 C9.5425,82.6721838 9.06865385,83.1460385 9.06865385,83.7298846 C9.06865385,84.3141538 9.5425,84.7875769 10.1263462,84.7875769 C10.4707308,84.7884231 10.7262692,84.8451154 10.9437308,84.9326923 C11.1341154,85.0101154 11.2991154,85.1146154 11.4611538,85.2533846 C11.7437692,85.4941154 12.0111538,85.8528846 12.2717692,86.2916154 C12.6690385,86.9478077 13.0235769,87.7605385 13.5773846,88.5115 C13.8574615,88.8850769 14.2005769,89.2506154 14.6570769,89.5285769 C15.1110385,89.8082308 15.6775385,89.9757692 16.2766154,89.9724349 C16.8604615,89.9724349 17.3343077,89.4989615 17.3343077,88.9146923 C17.3343077,88.3304231 16.8604615,87.857 16.2766154,87.857","id","Fill-55"],["d","M28.5763077,87.857 C28.3664615,87.8553077 28.2403846,87.8172308 28.1126154,87.7529231 C28.0017692,87.6958077 27.8871154,87.6078077 27.7597692,87.472 C27.5368077,87.2367692 27.2948077,86.8509231 27.0413846,86.3859615 C26.6538462,85.6904231 26.2481154,84.8239615 25.5563846,84.0552308 C25.2094615,83.6731923 24.7791923,83.3178077 24.2495,83.0656538 C23.7210769,82.8122308 23.1021154,82.6713462 22.4268846,82.6726069 C21.8426154,82.6726069 21.3691923,83.1464615 21.3691923,83.7303077 C21.3691923,84.3145769 21.8426154,84.788 22.4268846,84.788 C22.7708462,84.7888462 23.0263846,84.8455385 23.2438462,84.9331154 C23.4338077,85.0105385 23.5988077,85.1150385 23.7612692,85.2538077 C24.0434615,85.4945385 24.3112692,85.8533077 24.5718846,86.2920385 C24.9691538,86.9482308 25.3232692,87.7609615 25.8775,88.5115 C26.1571538,88.8850769 26.5006923,89.2506154 26.9571923,89.5285769 C27.4107308,89.8082308 27.9772308,89.9757692 28.5763077,89.9724349 C29.1605769,89.9724349 29.634,89.4989615 29.634,88.9146923 C29.634,88.3304231 29.1605769,87.857 28.5763077,87.857","id","Fill-56"],["d","M16.2766154,89.9724112 C16.7978462,89.9745 17.2953846,89.8501154 17.7142308,89.6309615 C18.0814615,89.4401538 18.3860769,89.1867308 18.6386538,88.9159615 C19.0811923,88.4387308 19.3849615,87.9107308 19.6650385,87.4051538 C20.0775385,86.6448846 20.4451923,85.9290385 20.8619231,85.4788846 C21.0692308,85.2516923 21.2769615,85.0888077 21.5147308,84.975 C21.7533462,84.8624615 22.0308846,84.7892692 22.4268846,84.788 C23.0107308,84.788 23.4845769,84.3145769 23.4845769,83.7303077 C23.4845769,83.1464615 23.0107308,82.6726103 22.4268846,82.6726103 C21.8383846,82.6717692 21.2934615,82.7775385 20.8132692,82.9734231 C20.3927308,83.1439231 20.0255,83.3804231 19.7136923,83.6486538 C19.1670769,84.1203846 18.7837692,84.6754615 18.4647692,85.2072692 C17.9930385,86.0068846 17.6385,86.7764615 17.2814231,87.2448077 C17.1054231,87.4804615 16.9425385,87.6331923 16.797,87.7211923 C16.6485,87.8075 16.5169231,87.8536154 16.2766154,87.857 C15.6923462,87.857 15.2189231,88.3304231 15.2189231,88.9146923 C15.2189231,89.4989615 15.6923462,89.9724112 16.2766154,89.9724112","id","Fill-57"],["d","M28.5763077,89.9724017 C29.0975385,89.9740769 29.5950769,89.8501154 30.0139231,89.6305385 C30.3815769,89.4401538 30.6857692,89.1867308 30.9383462,88.9155385 C31.3808846,88.4387308 31.6842308,87.9103077 31.9643077,87.4047308 C32.3768077,86.6448846 32.7444615,85.9286154 33.1607692,85.4788846 C33.3685,85.2516923 33.5762308,85.0888077 33.8135769,84.975 C34.0526154,84.8624615 34.3301538,84.7892692 34.7257308,84.788 L34.7257308,83.7332692 L34.6381538,84.7846154 C34.6804615,84.788 34.7109231,84.788 34.7257308,84.788 L34.7257308,83.7332692 L34.6381538,84.7846154 C35.2203077,84.8328462 35.7318077,84.4004615 35.7800385,83.8183077 C35.8286923,83.2361538 35.3963077,82.7246538 34.8141538,82.6764231 C34.7714231,82.6730385 34.7409615,82.6726141 34.7257308,82.6726141 C34.1376538,82.6721923 33.5927308,82.7775385 33.1121154,82.9734231 C32.692,83.1435 32.3247692,83.3804231 32.0129615,83.6486538 C31.4659231,84.1203846 31.0830385,84.6754615 30.7644615,85.2072692 C30.2927308,86.0064615 29.9377692,86.7764615 29.5806923,87.2443846 C29.4046923,87.4804615 29.2422308,87.6331923 29.0962692,87.7211923 C28.9477692,87.8075 28.8161923,87.8536154 28.5758846,87.857 C27.9920385,87.857 27.5186154,88.3308462 27.5186154,88.9151154 C27.5186154,89.4989615 27.9920385,89.9724017 28.5763077,89.9724017","id","Fill-58"],["d","M135.468808,19.5072308 C135.466692,19.7170769 135.429038,19.8431538 135.364731,19.9709231 C135.307192,20.0817692 135.219615,20.1964231 135.083385,20.3237692 C134.848154,20.5467308 134.462731,20.7887308 133.997346,21.0421538 C133.301808,21.4301154 132.435346,21.8358462 131.667038,22.5275769 C131.285,22.8745 130.929192,23.3047692 130.677038,23.8344615 C130.423615,24.3628846 130.282731,24.9818462 130.284408,25.6575 C130.284408,26.2413462 130.757846,26.7151923 131.342115,26.7151923 C131.925962,26.7151923 132.399808,26.2413462 132.399808,25.6575 C132.400231,25.3131154 132.456923,25.0575769 132.5445,24.8401154 C132.622346,24.6497308 132.726423,24.4847308 132.865192,24.3226923 C133.105923,24.0400769 133.464692,23.7726923 133.903423,23.5120769 C134.559615,23.1148077 135.372346,22.7602692 136.122885,22.2064615 C136.496462,21.9263846 136.862,21.5832692 137.140385,21.1267692 C137.420038,20.6728077 137.587154,20.1063077 137.584231,19.5072308 C137.584231,18.9233846 137.110346,18.4495385 136.5265,18.4495385 C135.942231,18.4495385 135.468808,18.9233846 135.468808,19.5072308","id","Fill-59"],["d","M135.468808,7.20753846 C135.466692,7.41696154 135.429038,7.54346154 135.364731,7.67123077 C135.307192,7.78165385 135.219615,7.89673077 135.083385,8.02407692 C134.848154,8.24703846 134.462731,8.48861538 133.997346,8.74246154 C133.301808,9.13 132.435346,9.53573077 131.667038,10.2274615 C131.285,10.5743846 130.929615,11.0046538 130.677038,11.5343462 C130.423615,12.0627692 130.282731,12.6817308 130.284408,13.3569615 C130.284408,13.9412308 130.757846,14.4146538 131.342115,14.4146538 C131.925962,14.4146538 132.399808,13.9412308 132.399808,13.3569615 C132.400231,13.013 132.456923,12.7574615 132.5445,12.54 C132.622346,12.3500385 132.726423,12.1846154 132.865192,12.0225769 C133.105923,11.7403846 133.464692,11.4725769 133.903423,11.2119615 C134.559615,10.8146923 135.372346,10.4605769 136.122885,9.90634615 C136.496462,9.62669231 136.862,9.28315385 137.140385,8.82665385 C137.420038,8.37311538 137.587154,7.80661538 137.584231,7.20753846 C137.584231,6.62369231 137.110346,6.14984615 136.5265,6.14984615 C135.942231,6.14984615 135.468808,6.62369231 135.468808,7.20753846","id","Fill-60"],["d","M137.584209,19.5072308 C137.585885,18.986 137.461923,18.4884615 137.242346,18.0696154 C137.051962,17.7019615 136.798538,17.3977692 136.527346,17.1451923 C136.050538,16.7026538 135.522115,16.3988846 135.016538,16.1188077 C134.256692,15.7063077 133.540423,15.3386538 133.090269,14.9219231 C132.863077,14.7146154 132.700192,14.5068846 132.586385,14.2691154 C132.473846,14.0305 132.401077,13.7525385 132.399808,13.3569615 C132.399808,12.7731154 131.925962,12.2992692 131.342115,12.2992692 C130.757846,12.2992692 130.284418,12.7731154 130.284418,13.3569615 C130.283577,13.9454615 130.388923,14.4903846 130.584808,14.9705769 C130.755308,15.3911154 130.992231,15.7583462 131.260462,16.0701538 C131.731769,16.6167692 132.287269,17.0000769 132.819077,17.3186538 C133.618269,17.7908077 134.388269,18.1453462 134.856192,18.5024231 C135.091846,18.6784231 135.245,18.8413077 135.332577,18.9868462 C135.418885,19.1353462 135.465423,19.2669231 135.468808,19.5072308 C135.468808,20.0915 135.942231,20.5649231 136.5265,20.5649231 C137.110346,20.5649231 137.584209,20.0915 137.584209,19.5072308","id","Fill-61"],["d","M137.584209,7.20753846 C137.585885,6.68630769 137.461923,6.18876923 137.242346,5.76992308 C137.051962,5.40226923 136.798538,5.09807692 136.527346,4.8455 C136.050538,4.40296154 135.522115,4.09919231 135.016538,3.81953846 C134.256692,3.40661538 133.540423,3.03938462 133.090269,2.62265385 C132.863077,2.41534615 132.700192,2.20761538 132.586385,1.96984615 C132.473846,1.73080769 132.401077,1.45326923 132.399808,1.05769231 C132.399808,0.473423077 131.925962,0 131.342115,0 C130.757846,0 130.284418,0.473423077 130.284418,1.05769231 C130.283577,1.64576923 130.388923,2.19069231 130.584808,2.67130769 C130.755308,3.09184615 130.992231,3.45865385 131.260462,3.77046154 C131.731769,4.3175 132.287269,4.70038462 132.819077,5.01938462 C133.618269,5.49111538 134.388269,5.84565385 134.856192,6.20315385 C135.092269,6.37873077 135.245,6.54161538 135.332577,6.68715385 C135.419308,6.83565385 135.465423,6.96723077 135.468808,7.20753846 C135.468808,7.79180769 135.942231,8.26523077 136.5265,8.26523077 C137.110346,8.26523077 137.584209,7.79180769 137.584209,7.20753846","id","Fill-62"],["d","M97.7553077,83.8453846 C97.7536154,84.0548077 97.7155385,84.1808846 97.6516538,84.3090769 C97.5941154,84.4195 97.5065385,84.5345769 97.3703077,84.6615 C97.1350769,84.8844615 96.7492308,85.1264615 96.2842692,85.3798846 C95.5887308,85.7678462 94.7222692,86.1735769 93.9539615,86.8653077 C93.5715,87.2122308 93.2161154,87.6425 92.9639615,88.1721923 C92.7105385,88.7010385 92.5696538,89.3195769 92.5713311,89.9952308 C92.5713311,90.5795 93.0447692,91.0529231 93.6290385,91.0529231 C94.2128846,91.0529231 94.6867308,90.5795 94.6867308,89.9952308 C94.6871538,89.6508462 94.7438462,89.3953077 94.8314231,89.1778462 C94.9092692,88.9878846 95.0133462,88.8224615 95.1521154,88.6604231 C95.3928462,88.3782308 95.7516154,88.1104231 96.1903462,87.8498077 C96.8465385,87.4525385 97.6592692,87.0984231 98.4098077,86.5441923 C98.7833846,86.2645385 99.1489231,85.921 99.4273077,85.4645 C99.7065385,85.0109615 99.8740769,84.4440385 99.8707426,83.8453846 C99.8707426,83.2611154 99.3972692,82.7876923 98.813,82.7876923 C98.2291538,82.7876923 97.7553077,83.2611154 97.7553077,83.8453846","id","Fill-63"],["d","M97.7553077,71.5452692 C97.7536154,71.7551154 97.7155385,71.8811923 97.6516538,72.0089615 C97.5941154,72.1198077 97.5065385,72.2344615 97.3703077,72.3618077 C97.1350769,72.5847692 96.7492308,72.8267692 96.2842692,73.0801923 C95.5887308,73.4681538 94.7222692,73.8734615 93.9539615,74.5656154 C93.5715,74.9125385 93.2161154,75.3428077 92.9639615,75.8720769 C92.7105385,76.4009231 92.5696538,77.0194615 92.5713311,77.6951154 C92.5713311,78.2789615 93.0447692,78.7528077 93.6290385,78.7528077 C94.2128846,78.7528077 94.6867308,78.2789615 94.6867308,77.6951154 C94.6871538,77.3507308 94.7438462,77.0951923 94.8314231,76.8777308 C94.9092692,76.6877692 95.0133462,76.5227692 95.1521154,76.3607308 C95.3928462,76.0781154 95.7516154,75.8107308 96.1903462,75.5501154 C96.8465385,75.1528462 97.6592692,74.7983077 98.4098077,74.2445 C98.7833846,73.9644231 99.1489231,73.6213077 99.4273077,73.1648077 C99.7065385,72.7108462 99.8740769,72.1443462 99.8707426,71.5452692 C99.8707426,70.9614231 99.3972692,70.4875769 98.813,70.4875769 C98.2291538,70.4875769 97.7553077,70.9614231 97.7553077,71.5452692","id","Fill-64"],["d","M99.8707189,83.8453846 C99.8728077,83.3241538 99.7484231,82.8261923 99.5292692,82.4077692 C99.3388846,82.0401154 99.0854615,81.7359231 98.8142692,81.4829231 C98.3374615,81.0403846 97.8090385,80.7366154 97.3034615,80.4565385 C96.5436154,80.0440385 95.8273462,79.6768077 95.3771923,79.2600769 C95.15,79.0527692 94.9871154,78.8446154 94.8733077,78.6072692 C94.7607692,78.3682308 94.688,78.0906923 94.6867308,77.6951154 C94.6867308,77.1108462 94.2128846,76.6374231 93.6290385,76.6374231 C93.0447692,76.6374231 92.5713411,77.1108462 92.5713411,77.6951154 C92.5705,78.2831923 92.6758462,78.8281154 92.8717308,79.3083077 C93.0422308,79.7288462 93.2791538,80.0960769 93.5473846,80.4078846 C94.0186923,80.9549231 94.5737692,81.3378077 95.106,81.6568077 C95.9051923,82.1285385 96.6751923,82.4830769 97.1431154,82.8405769 C97.3787692,83.0161538 97.5319231,83.1790385 97.6195,83.3245769 C97.7058077,83.4735 97.7523462,83.6050769 97.7553077,83.8453846 C97.7553077,84.4292308 98.2291538,84.9030769 98.813,84.9030769 C99.3972692,84.9030769 99.8707189,84.4292308 99.8707189,83.8453846","id","Fill-65"],["d","M99.8707189,71.5452692 C99.8728077,71.0240385 99.7484231,70.5265 99.5292692,70.1080769 C99.3388846,69.7404231 99.0850385,69.4362308 98.8142692,69.1832308 C98.3374615,68.7411154 97.8090385,68.4373462 97.3034615,68.1572692 C96.5431923,67.7447692 95.8273462,67.3771154 95.3771923,66.9603846 C95.15,66.7530769 94.9871154,66.5453462 94.8733077,66.3075769 C94.7607692,66.0689615 94.688,65.791 94.6867308,65.3954231 C94.6867308,64.8115769 94.2128846,64.3377308 93.6290385,64.3377308 C93.0447692,64.3377308 92.5713411,64.8115769 92.5713411,65.3954231 C92.5705,65.9839231 92.6758462,66.5288462 92.8717308,67.0090385 C93.0422308,67.4295769 93.2791538,67.7968077 93.5473846,68.1086154 C94.0186923,68.6552308 94.5737692,69.0385385 95.106,69.3571154 C95.9051923,69.8292692 96.6751923,70.1838077 97.1431154,70.5408846 C97.3787692,70.7168846 97.5319231,70.8797692 97.6195,71.0253077 C97.7058077,71.1738077 97.7523462,71.3049615 97.7553077,71.5452692 C97.7553077,72.1295385 98.2291538,72.6029615 98.813,72.6029615 C99.3972692,72.6029615 99.8707189,72.1295385 99.8707189,71.5452692","id","Fill-66"],["d","M199.984654,186.622615 C199.982538,186.832462 199.944885,186.958538 199.880577,187.086308 C199.823038,187.197154 199.735462,187.311808 199.599231,187.439154 C199.364,187.662115 198.978577,187.904115 198.513192,188.157538 C197.817654,188.5455 196.951192,188.951231 196.182885,189.643385 C195.800846,189.990308 195.445462,190.420577 195.192885,190.950269 C194.939462,191.478692 194.799,192.097654 194.800261,192.773308 C194.800261,193.357154 195.273692,193.831 195.857962,193.831 C196.442231,193.831 196.915654,193.357154 196.915654,192.773308 C196.9165,192.4285 196.972769,192.173385 197.060769,191.9555 C197.138192,191.765538 197.242269,191.600115 197.381038,191.438077 C197.621769,191.155885 197.980962,190.888077 198.419269,190.627462 C199.075885,190.230192 199.888192,189.875654 200.639154,189.321846 C201.012308,189.041769 201.377846,188.698654 201.656231,188.242154 C201.935885,187.788192 202.103423,187.221692 202.100089,186.622615 C202.100089,186.038769 201.626192,185.564923 201.042346,185.564923 C200.458077,185.564923 199.984654,186.038769 199.984654,186.622615","id","Fill-67"],["d","M199.984654,174.322923 C199.982538,174.532769 199.944885,174.658846 199.880577,174.786615 C199.823038,174.897462 199.735462,175.012115 199.599231,175.139462 C199.364,175.362423 198.978577,175.604 198.513615,175.857846 C197.818077,176.245385 196.951615,176.651115 196.182885,177.342846 C195.800846,177.689769 195.445462,178.120038 195.193308,178.649731 C194.939462,179.178154 194.799,179.797115 194.800261,180.472346 C194.800261,181.056615 195.273692,181.530038 195.857962,181.530038 C196.442231,181.530038 196.915654,181.056615 196.915654,180.472346 C196.9165,180.128385 196.972769,179.872846 197.060769,179.655385 C197.138192,179.465423 197.242269,179.3 197.381038,179.137962 C197.621769,178.855769 197.980538,178.587962 198.419269,178.327346 C199.075462,177.930077 199.888192,177.575962 200.639154,177.021731 C201.012308,176.742077 201.377846,176.398538 201.656231,175.942038 C201.935885,175.4885 202.103423,174.922 202.100089,174.322923 C202.100089,173.738654 201.626192,173.265231 201.042346,173.265231 C200.458077,173.265231 199.984654,173.738654 199.984654,174.322923","id","Fill-68"],["d","M202.100056,186.622615 C202.101731,186.101385 201.977769,185.603846 201.758192,185.185 C201.567808,184.817769 201.314385,184.513154 201.043192,184.260577 C200.566385,183.818038 200.037962,183.514269 199.532808,183.234192 C198.772538,182.821692 198.056269,182.454462 197.606538,182.037731 C197.379346,181.830423 197.216038,181.622269 197.102231,181.384923 C196.990115,181.145885 196.916923,180.868346 196.915654,180.472346 C196.915654,179.8885 196.442231,179.414654 195.857962,179.414654 C195.273692,179.414654 194.800264,179.8885 194.800264,180.472346 C194.799423,181.060846 194.904769,181.605769 195.100654,182.085962 C195.271154,182.5065 195.508077,182.873731 195.776308,183.185538 C196.248038,183.732577 196.803115,184.115462 197.334923,184.434462 C198.134115,184.906192 198.904115,185.260731 199.372038,185.617808 C199.608115,185.793808 199.760846,185.956692 199.848423,186.102231 C199.935154,186.250731 199.981269,186.382308 199.984654,186.622615 C199.984654,187.206885 200.458077,187.680308 201.042346,187.680308 C201.626192,187.680308 202.100056,187.206885 202.100056,186.622615","id","Fill-69"],["d","M202.100056,174.322923 C202.101731,173.801692 201.977769,173.304154 201.758192,172.885308 C201.567808,172.518077 201.314385,172.213885 201.043192,171.960885 C200.566385,171.518769 200.037962,171.215 199.532808,170.934923 C198.772538,170.522423 198.056269,170.154769 197.606115,169.738462 C197.378923,169.530731 197.216038,169.323 197.102231,169.085654 C196.989692,168.846615 196.916923,168.569077 196.915654,168.1735 C196.915654,167.589231 196.442231,167.115808 195.857962,167.115808 C195.273692,167.115808 194.800264,167.589231 194.800264,168.1735 C194.799423,168.761577 194.904769,169.3065 195.100654,169.786692 C195.271154,170.207231 195.508077,170.574462 195.776308,170.886269 C196.248038,171.433308 196.803115,171.816192 197.334923,172.135192 C198.134115,172.606923 198.904115,172.961462 199.372038,173.318538 C199.608115,173.494538 199.760846,173.657423 199.848423,173.802962 C199.935154,173.951462 199.981269,174.082615 199.984654,174.322923 C199.984654,174.907192 200.458077,175.380615 201.042346,175.380615 C201.626192,175.380615 202.100056,174.907192 202.100056,174.322923","id","Fill-70"],["d","M73.1440769,196.315731 C73.1419615,196.525154 73.1043077,196.651231 73.04,196.779 C72.9824615,196.889846 72.8948846,197.004923 72.7586538,197.131846 C72.5234231,197.354808 72.138,197.596808 71.6726154,197.850231 C70.9770769,198.238192 70.1110385,198.643923 69.3423077,199.335654 C68.9602692,199.682577 68.6048846,200.112846 68.3523077,200.642538 C68.0988846,201.170962 67.958,201.7895 67.9596772,202.465154 C67.9596772,203.049 68.4331154,203.522846 69.0173846,203.522846 C69.6012308,203.522846 70.0750769,203.049 70.0750769,202.465154 C70.0755,202.120769 70.1321923,201.865654 70.2197692,201.647769 C70.2976154,201.457808 70.4016923,201.292808 70.5404615,201.130769 C70.7811923,200.848154 71.1399615,200.580769 71.5786923,200.320154 C72.2348846,199.922885 73.0476154,199.568346 73.7981538,199.014538 C74.1717308,198.734462 74.5372692,198.391346 74.8156538,197.934846 C75.0953077,197.480885 75.2624231,196.914385 75.2595003,196.315731 C75.2595003,195.731462 74.7856154,195.258038 74.2017692,195.258038 C73.6175,195.258038 73.1440769,195.731462 73.1440769,196.315731","id","Fill-71"],["d","M73.1440769,184.015615 C73.1419615,184.225462 73.1043077,184.351538 73.04,184.479308 C72.9824615,184.590154 72.8948846,184.704808 72.7586538,184.832154 C72.5234231,185.055115 72.138,185.297115 71.6726154,185.550538 C70.9770769,185.938077 70.1110385,186.343808 69.3423077,187.035962 C68.9602692,187.382462 68.6048846,187.812731 68.3523077,188.342423 C68.0988846,188.870846 67.958,189.489808 67.9596772,190.165038 C67.9596772,190.749308 68.4331154,191.222731 69.0173846,191.222731 C69.6012308,191.222731 70.0750769,190.749308 70.0750769,190.165038 C70.0755,189.821077 70.1321923,189.565538 70.2197692,189.348077 C70.2976154,189.158115 70.4016923,188.993115 70.5404615,188.830654 C70.7811923,188.548462 71.1399615,188.280654 71.5786923,188.020462 C72.2348846,187.622769 73.0476154,187.268654 73.7981538,186.714846 C74.1717308,186.434769 74.5372692,186.091654 74.8156538,185.634731 C75.0953077,185.181192 75.2624231,184.614692 75.2595003,184.015615 C75.2595003,183.431769 74.7856154,182.957923 74.2017692,182.957923 C73.6175,182.957923 73.1440769,183.431769 73.1440769,184.015615","id","Fill-72"],["d","M75.2594786,196.315731 C75.2611538,195.794077 75.1371923,195.296538 74.9176154,194.878115 C74.7272308,194.510462 74.4738077,194.205846 74.2026154,193.953269 C73.7258077,193.510731 73.1973846,193.206962 72.6918077,192.926885 C71.9319615,192.514385 71.2156923,192.146731 70.7655385,191.73 C70.5383462,191.522692 70.3754615,191.314962 70.2616538,191.077192 C70.1491154,190.838577 70.0763462,190.560615 70.0750769,190.165038 C70.0750769,189.581192 69.6012308,189.107346 69.0173846,189.107346 C68.4331154,189.107346 67.9596873,189.581192 67.9596873,190.165038 C67.9588462,190.753538 68.0641923,191.298462 68.2600769,191.778654 C68.4305769,192.199192 68.6675,192.566423 68.9357308,192.878231 C69.4070385,193.424846 69.9625385,193.807731 70.4943462,194.126731 C71.2935385,194.598462 72.0635385,194.953423 72.5314615,195.3105 C72.7671154,195.4865 72.9202692,195.649385 73.0078462,195.794923 C73.0941538,195.943423 73.1406923,196.075 73.1440769,196.315731 C73.1440769,196.899577 73.6175,197.373423 74.2017692,197.373423 C74.7856154,197.373423 75.2594786,196.899577 75.2594786,196.315731","id","Fill-73"],["d","M75.2594786,184.015615 C75.2611538,183.494385 75.1371923,182.996846 74.9176154,182.578 C74.7272308,182.210346 74.4738077,181.906154 74.2026154,181.653154 C73.7258077,181.211038 73.1973846,180.907269 72.6918077,180.627192 C71.9319615,180.214692 71.2156923,179.847462 70.7655385,179.430731 C70.5383462,179.223423 70.3754615,179.015269 70.2616538,178.7775 C70.1491154,178.538885 70.0763462,178.261346 70.0750769,177.865346 C70.0750769,177.281077 69.6012308,176.807654 69.0173846,176.807654 C68.4331154,176.807654 67.9596873,177.281077 67.9596873,177.865346 C67.9588462,178.453846 68.0641923,178.998769 68.2600769,179.478962 C68.4305769,179.8995 68.6675,180.266731 68.9357308,180.578538 C69.4070385,181.125577 69.9625385,181.508462 70.4943462,181.827462 C71.2935385,182.299192 72.0635385,182.653731 72.5314615,183.010808 C72.7671154,183.186808 72.9202692,183.349692 73.0078462,183.495231 C73.0941538,183.643731 73.1406923,183.775308 73.1440769,184.015615 C73.1440769,184.599885 73.6175,185.073308 74.2017692,185.073308 C74.7856154,185.073308 75.2594786,184.599885 75.2594786,184.015615","id","Fill-74"],["d","M150.245615,152.688038 L165.420962,152.688038 C166.005231,152.688038 166.478654,152.214615 166.478654,151.630346 C166.478654,151.0465 166.005231,150.572654 165.420962,150.572654 L150.245615,150.572654 C149.661769,150.572654 149.187923,151.0465 149.187923,151.630346 C149.187923,152.214615 149.661769,152.688038 150.245615,152.688038","id","Fill-75"],["d","M1.05769231,108.836538 L16.2330385,108.836538 C16.8173077,108.836538 17.2907308,108.363115 17.2907308,107.778846 C17.2907308,107.194577 16.8173077,106.721154 16.2330385,106.721154 L1.05769231,106.721154 C0.473423077,106.721154 0,107.194577 0,107.778846 C0,108.363115 0.473423077,108.836538 1.05769231,108.836538","id","Fill-76"],["d","M151.380308,38.2965 L166.555654,38.2965 C167.139923,38.2965 167.613346,37.8226538 167.613346,37.2388077 C167.613346,36.6545385 167.139923,36.1811154 166.555654,36.1811154 L151.380308,36.1811154 C150.796038,36.1811154 150.322615,36.6545385 150.322615,37.2388077 C150.322615,37.8226538 150.796038,38.2965 151.380308,38.2965","id","Fill-77"],["d","M211.198731,4.048 L226.374077,4.048 C226.957923,4.048 227.431769,3.57457692 227.431769,2.99030769 C227.431769,2.40646154 226.957923,1.93261538 226.374077,1.93261538 L211.198731,1.93261538 C210.614462,1.93261538 210.141038,2.40646154 210.141038,2.99030769 C210.141038,3.57457692 210.614462,4.048 211.198731,4.048","id","Fill-78"],["d","M61.5568462,230.232115 L76.7321923,230.232115 C77.3164615,230.232115 77.7898846,229.758269 77.7898846,229.174423 C77.7898846,228.590154 77.3164615,228.116731 76.7321923,228.116731 L61.5568462,228.116731 C60.9725769,228.116731 60.4991538,228.590154 60.4991538,229.174423 C60.4991538,229.758269 60.9725769,230.232115 61.5568462,230.232115","id","Fill-79"],["d","M101.2715,200.604038 L112.002,189.873538 C112.415346,189.460615 112.415346,188.790885 112.002,188.377962 C111.589077,187.964615 110.919346,187.964615 110.506423,188.377962 L99.7759231,199.108462 C99.3625769,199.521385 99.3625769,200.191115 99.7759231,200.604038 C100.188846,201.017385 100.858577,201.017385 101.2715,200.604038","id","Fill-80"],["d","M12.4435385,14.4688077 L23.1740385,3.73830769 C23.5873846,3.32538462 23.5873846,2.65565385 23.1740385,2.24273077 C22.7611154,1.82938462 22.0913846,1.82938462 21.6784615,2.24273077 L10.9479615,12.9732308 C10.5346154,13.3861538 10.5346154,14.0558846 10.9479615,14.4688077 C11.3608846,14.8821538 12.0306154,14.8821538 12.4435385,14.4688077","id","Fill-81"],["d","M219.533769,124.474308 L230.264269,113.743808 C230.677615,113.330885 230.677615,112.661154 230.264269,112.247808 C229.851346,111.834885 229.181615,111.834885 228.768692,112.247808 L218.037769,122.978731 C217.624846,123.391654 217.624846,124.061385 218.037769,124.474308 C218.451115,124.887231 219.120846,124.887231 219.533769,124.474308","id","Fill-82"],["d","M127.623269,71.2592692 L130.399077,66.4442308 L130.887731,66.4442308 L128.356038,70.8357692 L136.862423,70.8285769 L145.370923,70.8247692 L141.111808,63.4594231 L141.478192,63.2478846 L146.104115,71.2474231 L136.862846,71.2516538 L127.623269,71.2592692 M131.619231,64.3284231 L132.933308,62.0480385 L133.177846,62.4706923 L132.606269,63.4636538 L132.107462,64.328 L131.619231,64.3284231 M141.111808,63.4594231 L136.852269,56.0928077 L134.397577,60.3540385 L134.153038,59.9309615 L136.851423,55.2466538 L141.478192,63.2478846 L141.111808,63.4594231","id","Fill-83"],["d","M130.399077,66.4442308 L131.619231,64.3284231 L132.107462,64.328 L130.887731,66.4442308 L130.399077,66.4442308 M133.177846,62.4706923 L132.933308,62.0480385 L134.153038,59.9309615 L134.397577,60.3540385 L133.177846,62.4706923","id","Fill-84"],["d","M112.934462,165.183192 L115.710269,160.368154 L116.198923,160.368154 L113.666808,164.759692 L122.173615,164.7525 L130.682115,164.748692 L126.423,157.383346 L126.606192,157.277577 L126.789385,157.171808 L131.415308,165.171346 L122.174038,165.175577 L112.934462,165.183192 M116.930423,158.252346 L118.2445,155.971538 L118.489038,156.394615 L117.917038,157.387577 L117.418654,158.251923 L116.930423,158.252346 M126.423,157.383346 L122.163462,150.016731 L119.708769,154.277962 L119.464231,153.854885 L122.162615,149.170577 L126.789385,157.171808 L126.606192,157.277577 L126.423,157.383346","id","Fill-85"],["d","M115.710269,160.368154 L116.930423,158.252346 L117.418654,158.251923 L116.198923,160.368154 L115.710269,160.368154 M118.489038,156.394615 L118.2445,155.971538 L119.464231,153.854885 L119.708769,154.277962 L118.489038,156.394615","id","Fill-86"],["d","M163.850077,194.026038 L166.625885,189.211 L167.114538,189.210577 L164.582846,193.602538 L173.089231,193.595346 L181.597308,193.591115 L177.338615,186.226192 L177.705,186.014654 L182.3305,194.014192 L173.089654,194.018423 L163.850077,194.026038 M167.846038,187.095192 L169.160115,184.814385 L169.404654,185.237462 L168.334269,187.094769 L167.846038,187.095192 M177.338615,186.226192 L173.079077,178.859577 L170.624385,183.120808 L170.379423,182.697731 L173.078231,178.013423 L177.705,186.014654 L177.338615,186.226192","id","Fill-87"],["d","M166.625885,189.211 L167.846038,187.095192 L168.334269,187.094769 L167.114538,189.210577 L166.625885,189.211 M169.404654,185.237462 L169.160115,184.814385 L170.379423,182.697731 L170.624385,183.120808 L169.404654,185.237462","id","Fill-88"],["d","M204.624962,136.113577 L198.087577,129.582115 L196.504846,128.001923 L196.630923,127.529769 L198.386269,129.282577 L204.405385,135.296192 L208.799038,118.855423 L200.584577,121.064731 L198.186154,121.709077 L198.312231,121.237346 L200.475,120.656462 L209.396846,118.256346 L204.624962,136.113577 M194.776154,126.276192 L191.548923,123.053615 L195.953154,121.870692 L195.827077,122.342846 L192.366308,123.271923 L194.902231,125.804038 L194.776154,126.276192","id","Fill-89"],["d","M196.504846,128.001923 L194.776154,126.276192 L194.902231,125.804038 L196.630923,127.529769 L196.504846,128.001923 M195.827077,122.342846 L195.953154,121.870692 L198.312231,121.237346 L198.186154,121.709077 L195.827077,122.342846","id","Fill-90"],["d","M58.6947308,36.5669615 L50.5746154,28.4553077 L50.7006923,27.9835769 L52.4560385,29.7359615 L58.4751538,35.7495769 L62.8683846,19.3088077 L54.6539231,21.5185385 L52.2559231,22.1624615 L52.382,21.6907308 L54.5443462,21.1098462 L63.4661923,18.7101538 L58.6947308,36.5669615 M48.8459231,26.73 L45.6182692,23.5074231 L50.0229231,22.3245 L49.8968462,22.7962308 L46.4356538,23.7261538 L48.972,26.2578462 L48.8459231,26.73","id","Fill-91"],["d","M50.5746154,28.4553077 L48.8459231,26.73 L48.972,26.2578462 L50.7006923,27.9835769 L50.5746154,28.4553077 M49.8968462,22.7962308 L50.0229231,22.3245 L52.382,21.6907308 L52.2559231,22.1624615 L49.8968462,22.7962308","id","Fill-92"],["d","M52.6180769,221.837 L46.0802692,215.305538 L44.4975385,213.725769 L44.6240385,213.253615 L46.3793846,215.006 L52.3985,221.019615 L54.5942692,212.8005 L54.7986154,212.855077 L54.5942692,212.8005 L56.7913077,204.579269 L48.5772692,206.788577 L46.1792692,207.432923 L46.3053462,206.960769 L48.4672692,206.379885 L57.3895385,203.980192 L52.6180769,221.837 M42.7692692,212.000038 L39.5411923,208.777885 L43.9462692,207.594538 L43.8201923,208.066692 L40.359,208.996192 L42.8953462,211.528308 L42.7692692,212.000038","id","Fill-93"],["d","M44.4975385,213.725769 L42.7692692,212.000038 L42.8953462,211.528308 L44.6240385,213.253615 L44.4975385,213.725769 M43.8201923,208.066692 L43.9462692,207.594538 L46.3053462,206.960769 L46.1792692,207.432923 L43.8201923,208.066692","id","Fill-94"],["d","M207.903385,41.9726154 L207.898308,31.7185 L208.320962,31.4739615 L208.322231,32.7309231 L208.326038,41.2394231 L215.690962,36.9798846 L223.058,32.7207692 L215.687154,28.4743462 L214.564731,27.8270385 C214.667538,27.7276154 214.748346,27.6078846 214.803346,27.4767308 L215.898269,28.1079615 L223.904154,32.7199231 L207.903385,41.9726154 M207.896192,29.2760769 L207.892385,24.8697308 L208.315885,25.1134231 L208.318846,29.0315385 L207.896192,29.2760769","id","Fill-95"],["d","M207.898308,31.7185 L207.896192,29.2760769 L208.318846,29.0315385 L208.320962,31.4739615 L207.898308,31.7185 M214.564731,27.8270385 L208.315038,24.2245385 L208.315885,25.1134231 L207.892385,24.8697308 L207.891115,23.4917692 L214.803346,27.4767308 C214.748346,27.6078846 214.667538,27.7276154 214.564731,27.8270385","id","Fill-96"],["d","M46.7089615,130.629231 L46.7034615,120.374269 L47.1265385,120.130154 L47.1316154,129.896038 L61.8627308,121.376538 L54.4923077,117.130538 L53.3698846,116.483231 C53.4726923,116.383385 53.5535,116.264077 53.6085,116.1325 L54.7034231,116.763731 L62.7093077,121.375692 L54.7080769,126.002885 L54.7080769,126.002462 L46.7089615,130.629231 M46.7013462,117.932269 L46.6975385,113.5255 L47.1206154,113.769615 L47.1244231,117.687731 L46.7013462,117.932269","id","Fill-97"],["d","M46.7034615,120.374269 L46.7013462,117.932269 L47.1244231,117.687731 L47.1265385,120.130154 L46.7034615,120.374269 M53.3698846,116.483231 L47.1201923,112.880308 L47.1206154,113.769615 L46.6975385,113.5255 L46.6962692,112.147962 L53.6085,116.1325 C53.5535,116.264077 53.4726923,116.383385 53.3698846,116.483231","id","Fill-98"],["d","M149.559808,118.2335 C146.269538,118.2335 143.513615,115.9455 142.796923,112.873538 C142.930615,112.820231 143.062192,112.763115 143.192077,112.702615 C143.464538,113.936308 144.086038,115.038 144.948692,115.900654 C146.1295,117.081038 147.758346,117.810423 149.559808,117.810423 C151.360846,117.810423 152.989692,117.081038 154.1705,115.900654 C155.350885,114.719846 156.080269,113.091 156.080269,111.289538 C156.080269,109.488077 155.350885,107.859231 154.1705,106.678423 C152.989692,105.498038 151.360846,104.768654 149.559808,104.768654 C148.904038,104.768654 148.271115,104.865115 147.674154,105.045346 C147.663577,104.9015 147.648769,104.7585 147.630154,104.617192 C148.242769,104.440346 148.8905,104.345577 149.559808,104.345577 C153.394577,104.345577 156.503346,107.454346 156.503346,111.289538 C156.503346,115.124731 153.394577,118.2335 149.559808,118.2335 M142.648423,110.607115 C142.850654,108.535308 143.963346,106.730462 145.581192,105.597462 C145.581192,105.611 145.581192,105.624115 145.581192,105.637654 C145.581192,105.806885 145.573577,105.974 145.559192,106.139423 C145.344692,106.306538 145.140769,106.486346 144.948692,106.678423 C143.983654,107.643462 143.319846,108.908462 143.109577,110.322385 C142.961077,110.424346 142.807077,110.519538 142.648423,110.607115","id","Fill-99"],["d","M142.796923,112.873538 C142.678462,112.364577 142.615423,111.834462 142.615423,111.289538 C142.615423,111.058962 142.626846,110.831769 142.648423,110.607115 C142.807077,110.519538 142.961077,110.424346 143.109577,110.322385 C143.063038,110.638 143.0385,110.960808 143.0385,111.289538 C143.0385,111.774808 143.091385,112.247808 143.192077,112.702615 C143.062192,112.763115 142.930615,112.820231 142.796923,112.873538 M145.559192,106.139423 C145.573577,105.974 145.581192,105.806885 145.581192,105.637654 C145.581192,105.624115 145.581192,105.611 145.581192,105.597462 C146.198038,105.1655 146.8885,104.831269 147.630154,104.617192 C147.648769,104.7585 147.663577,104.9015 147.674154,105.045346 C146.898231,105.279308 146.183654,105.653731 145.559192,106.139423","id","Fill-100"],["d","M115.542308,43.1022308 C112.252462,43.1022308 109.496538,40.8142308 108.779846,37.7422692 C108.913115,37.6889615 109.045115,37.6318462 109.174577,37.5713462 C109.447038,38.8050385 110.068962,39.9067308 110.931192,40.7693846 C112.112,41.9497692 113.741269,42.6791538 115.542308,42.6791538 C117.343769,42.6791538 118.972615,41.9497692 120.153423,40.7693846 C121.333808,39.5885769 122.063192,37.9597308 122.063192,36.1582692 C122.063192,34.3568077 121.333808,32.7279615 120.153423,31.5471538 C118.972615,30.3667692 117.343769,29.6373846 115.542308,29.6373846 C114.886962,29.6373846 114.254038,29.7338462 113.657077,29.9140769 C113.6465,29.7702308 113.631692,29.6272308 113.613077,29.4859231 C114.225692,29.3090769 114.873,29.2143077 115.542308,29.2143077 C119.3775,29.2143077 122.486269,32.3226538 122.486269,36.1582692 C122.486269,39.9934615 119.3775,43.1022308 115.542308,43.1022308 M108.631346,35.4758462 C108.833154,33.4036154 109.945846,31.5991923 111.564115,30.4661923 C111.564115,30.4793077 111.564115,30.4928462 111.564115,30.5059615 C111.564115,30.6751923 111.556923,30.8427308 111.542115,31.0077308 C111.327615,31.1748462 111.123692,31.3550769 110.931192,31.5471538 C109.966154,32.5126154 109.302346,33.7771923 109.0925,35.1911154 C108.943577,35.2930769 108.789577,35.3882692 108.631346,35.4758462","id","Fill-101"],["d","M108.779846,37.7422692 C108.660962,37.2337308 108.597923,36.7031923 108.597923,36.1582692 C108.597923,35.9281154 108.609346,35.7005 108.631346,35.4758462 C108.789577,35.3882692 108.943577,35.2930769 109.0925,35.1911154 C109.045538,35.5067308 109.021,35.8295385 109.021,36.1582692 C109.021,36.6435385 109.074308,37.1165385 109.174577,37.5713462 C109.045115,37.6318462 108.913115,37.6889615 108.779846,37.7422692 M111.542115,31.0077308 C111.556923,30.8427308 111.564115,30.6751923 111.564115,30.5059615 C111.564115,30.4928462 111.564115,30.4793077 111.564115,30.4661923 C112.180962,30.0342308 112.871846,29.7 113.613077,29.4859231 C113.631692,29.6272308 113.6465,29.7702308 113.657077,29.9140769 C112.881577,30.1476154 112.166577,30.5220385 111.542115,31.0077308","id","Fill-102"],["d","M119.839077,241.801154 C116.549231,241.801154 113.793308,239.513154 113.076192,236.441192 C113.209885,236.387885 113.341462,236.330769 113.471346,236.270269 C113.743808,237.503962 114.365308,238.605654 115.227962,239.467885 C116.408769,240.648692 118.037615,241.378077 119.839077,241.378077 C121.640538,241.378077 123.269385,240.648692 124.450192,239.467885 C125.630577,238.2875 126.359962,236.658231 126.359962,234.856769 C126.359962,233.055308 125.630577,231.426462 124.450192,230.246077 C123.269385,229.065692 121.640538,228.336308 119.839077,228.336308 C119.183308,228.336308 118.550385,228.433192 117.953846,228.613 C117.942846,228.469154 117.928038,228.326154 117.909846,228.184846 C118.522038,228.008 119.169346,227.913231 119.839077,227.913231 C123.674269,227.913231 126.783038,231.021577 126.783038,234.856769 C126.783038,238.692385 123.674269,241.801154 119.839077,241.801154 M112.927692,234.175192 C113.1295,232.102962 114.242192,230.297692 115.860462,229.165115 C115.860462,229.178231 115.860462,229.191346 115.860462,229.204885 C115.860462,229.374115 115.853269,229.541654 115.838885,229.707077 C115.623962,229.873769 115.420038,230.054 115.227962,230.246077 C114.2625,231.211115 113.598692,232.476115 113.388846,233.890038 C113.239923,233.992 113.085923,234.087192 112.927692,234.175192","id","Fill-103"],["d","M113.076192,236.441192 C112.957308,235.932231 112.894692,235.402115 112.894692,234.856769 C112.894692,234.626615 112.905692,234.399423 112.927692,234.175192 C113.085923,234.087192 113.239923,233.992 113.388846,233.890038 C113.341885,234.205654 113.317769,234.528462 113.317769,234.856769 C113.317769,235.342462 113.370654,235.815462 113.471346,236.270269 C113.341462,236.330769 113.209885,236.387885 113.076192,236.441192 M115.838885,229.707077 C115.853269,229.541654 115.860462,229.374115 115.860462,229.204885 C115.860462,229.191346 115.860462,229.178231 115.860462,229.165115 C116.477308,228.733154 117.168192,228.398923 117.909846,228.184846 C117.928038,228.326154 117.942846,228.469154 117.953846,228.613 C117.177923,228.846538 116.462923,229.221385 115.838885,229.707077","id","Fill-104"],["d","M158.255308,224.794731 L157.832231,224.794731 C157.832231,222.993269 157.102423,221.364423 155.922038,220.184038 C154.741231,219.003654 153.112385,218.274269 151.310923,218.274269 C150.655154,218.274269 150.022654,218.370731 149.426115,218.550538 C149.415115,218.406692 149.400731,218.264538 149.382115,218.122385 C149.994308,217.945962 150.641615,217.851192 151.310923,217.851192 C155.146115,217.851192 158.255308,220.959538 158.255308,224.794731 M144.789615,224.794731 L144.366538,224.794731 C144.366538,222.439462 145.539308,220.358346 147.332731,219.102654 C147.332731,219.116192 147.332731,219.129308 147.332731,219.142846 C147.332731,219.291769 147.363615,219.4335 147.419462,219.562115 C147.164769,219.751654 146.924038,219.959808 146.699808,220.184038 C145.519423,221.364423 144.789615,222.993269 144.789615,224.794731","id","Fill-105"],["d","M147.419462,219.562115 C147.363615,219.4335 147.332731,219.291769 147.332731,219.142846 C147.332731,219.129308 147.332731,219.116192 147.332731,219.102654 C147.95,218.670692 148.640462,218.336462 149.382115,218.122385 C149.400731,218.264538 149.415115,218.406692 149.426115,218.550538 C148.694615,218.770962 148.017692,219.116615 147.419462,219.562115","id","Fill-106"],["d","M104.519462,121.387538 L104.096385,121.387538 C104.095962,119.586077 103.366577,117.957231 102.186192,116.776846 C101.005385,115.596462 99.3765385,114.867077 97.5755,114.867077 C96.9197308,114.867077 96.2868077,114.963538 95.6902692,115.143769 C95.6792692,114.999923 95.6644615,114.856923 95.6462692,114.715615 C96.2584615,114.538769 96.9057692,114.444 97.5755,114.444 C101.410269,114.444 104.519038,117.552346 104.519462,121.387538 M91.0541923,121.387538 L90.6311154,121.387538 C90.6311154,119.032269 91.8034615,116.951154 93.5968846,115.695885 C93.5968846,115.709 93.5968846,115.722538 93.5968846,115.736077 C93.5968846,115.885 93.6277692,116.026731 93.6831923,116.155346 C93.4289231,116.344885 93.1886154,116.552615 92.9643846,116.776846 C91.7835769,117.957231 91.0541923,119.586077 91.0541923,121.387538","id","Fill-107"],["d","M93.6831923,116.155346 C93.6277692,116.026731 93.5968846,115.885 93.5968846,115.736077 C93.5968846,115.722538 93.5968846,115.709 93.5968846,115.695885 C94.2137308,115.263923 94.9046154,114.929269 95.6462692,114.715615 C95.6644615,114.856923 95.6792692,114.999923 95.6902692,115.143769 C94.9587692,115.364192 94.2818462,115.709423 93.6831923,116.155346","id","Fill-108"],["d","M33.6274231,66.7251538 L33.2043462,66.7251538 C33.2043462,64.9232692 32.4779231,63.2944231 31.3030385,62.1136154 C30.1277308,60.9336538 28.5065,60.2042692 26.7139231,60.2042692 C26.0475769,60.2042692 25.4045,60.3049615 24.7995,60.4923846 C24.7889231,60.3485385 24.7741154,60.2055385 24.7559231,60.0638077 C25.377,59.8797692 26.0340385,59.7811923 26.7139231,59.7811923 C30.5326154,59.7811923 33.6274231,62.8903846 33.6274231,66.7251538 M20.2235,66.7251538 L19.8004231,66.7251538 C19.8004231,64.3910385 20.9469615,62.326 22.7052692,61.0669231 C22.7052692,61.0690385 22.7052692,61.0711538 22.7052692,61.0732692 C22.7052692,61.2327692 22.7403846,61.3842308 22.8038462,61.5200385 C22.5639615,61.7019615 22.3371923,61.9003846 22.1248077,62.1136154 C20.9499231,63.2944231 20.2235,64.9232692 20.2235,66.7251538","id","Fill-109"],["d","M22.8038462,61.5200385 C22.7403846,61.3842308 22.7052692,61.2327692 22.7052692,61.0732692 C22.7052692,61.0711538 22.7052692,61.0690385 22.7052692,61.0669231 C23.3212692,60.6260769 24.0125769,60.2838077 24.7559231,60.0638077 C24.7741154,60.2055385 24.7889231,60.3485385 24.7995,60.4923846 C24.0713846,60.7178846 23.3978462,61.0686154 22.8038462,61.5200385","id","Fill-110"],["d","M189.715731,77.9612308 C185.881385,77.9612308 182.771769,74.8664231 182.771346,71.0477308 C182.771769,67.2290385 185.881385,64.1342308 189.715731,64.1342308 L189.715731,64.5573077 C187.913846,64.5573077 186.285,65.2837308 185.104192,66.4586154 C183.923808,67.6339231 183.194423,69.2551538 183.194423,71.0477308 C183.194423,72.8403077 183.923808,74.4611154 185.104192,75.6368462 C186.285,76.8117308 187.914269,77.5381538 189.715731,77.5381538 L189.715731,77.9612308","id","Fill-111"],["d","M27.6019615,235.037846 C23.7671923,235.037846 20.6584231,231.942615 20.658,228.123923 C20.6584231,224.305231 23.7671923,221.210846 27.6019615,221.210846 L27.6019615,221.633923 C25.8000769,221.633923 24.1712308,222.360346 22.9904231,223.535231 C21.8104615,224.710538 21.0810769,226.331346 21.0810769,228.123923 C21.0810769,229.9165 21.8104615,231.537731 22.9904231,232.713038 C24.1712308,233.888346 25.8000769,234.614769 27.6019615,234.614769 L27.6019615,235.037846","id","Fill-112"],["d","M99.8465769,20.9211538 C96.0118077,20.9211538 92.9026154,17.8259231 92.9026154,14.0072308 C92.9026154,10.1885385 96.0118077,7.09415385 99.8465769,7.09415385 L99.8465769,7.51723077 C98.0446923,7.51723077 96.4158462,8.24365385 95.2350385,9.41853846 C94.0546538,10.5938462 93.3256923,12.2150769 93.3256923,14.0072308 C93.3256923,15.7998077 94.0546538,17.4210385 95.2350385,18.5967692 C96.4158462,19.7716538 98.0446923,20.4980769 99.8465769,20.4980769 L99.8465769,20.9211538","id","Fill-113"],["d","M24.2359615,170.959038 C20.9461154,170.959038 18.1901923,168.670615 17.4730769,165.599077 C17.6067692,165.545769 17.7383462,165.488654 17.8682308,165.428154 C18.1406923,166.661423 18.7626154,167.763538 19.6248462,168.625769 C20.8056538,169.806577 22.4349231,170.535962 24.2359615,170.535962 C26.037,170.535962 27.6662692,169.806577 28.8470769,168.625769 C30.0274615,167.444962 30.7568462,165.816115 30.7568462,164.014654 C30.7568462,162.213192 30.0274615,160.584346 28.8470769,159.403962 C27.6662692,158.223577 26.037,157.494192 24.2359615,157.494192 C23.5801923,157.494192 22.9476923,157.590654 22.3507308,157.770462 C22.3401538,157.627038 22.3253462,157.484038 22.3067308,157.342731 C22.9193462,157.165885 23.5666538,157.071115 24.2359615,157.071115 C28.0707308,157.071115 31.1799231,160.179462 31.1799231,164.014654 C31.1799231,167.849846 28.0711538,170.959038 24.2359615,170.959038 M17.3245769,163.332654 C17.5268077,161.260423 18.6395,159.455577 20.2573462,158.323 C20.2577692,158.336115 20.2577692,158.349231 20.2577692,158.362769 C20.2577692,158.532 20.2501538,158.699115 20.2357692,158.864538 C20.0208462,159.031654 19.8169231,159.211885 19.6248462,159.403962 C18.6593846,160.369 17.996,161.634 17.7857308,163.047923 C17.6368077,163.149885 17.4832308,163.245077 17.3245769,163.332654","id","Fill-114"],["d","M17.4730769,165.599077 C17.3541923,165.090115 17.2915769,164.56 17.2915769,164.014654 C17.2915769,163.7845 17.3025769,163.557308 17.3245769,163.332654 C17.4832308,163.245077 17.6368077,163.149885 17.7857308,163.047923 C17.7387692,163.363538 17.7146538,163.685923 17.7146538,164.014654 C17.7146538,164.500346 17.7675385,164.973346 17.8682308,165.428154 C17.7383462,165.488654 17.6067692,165.545769 17.4730769,165.599077 M20.2357692,158.864538 C20.2501538,158.699115 20.2577692,158.532 20.2577692,158.362769 C20.2577692,158.349231 20.2577692,158.336115 20.2573462,158.323 C20.8746154,157.891038 21.5650769,157.556385 22.3067308,157.342731 C22.3253462,157.484038 22.3401538,157.627038 22.3507308,157.770462 C21.5748077,158.004423 20.8602308,158.378846 20.2357692,158.864538","id","Fill-115"],["d","M231.849115,178.648038 C228.558846,178.648038 225.802923,176.360038 225.086231,173.288077 C225.219923,173.234346 225.3515,173.177654 225.481385,173.117154 C225.753846,174.350423 226.375769,175.452115 227.238,176.314769 C228.418808,177.495154 230.047654,178.224538 231.849115,178.224962 C233.650154,178.224538 235.279,177.495154 236.459808,176.314769 C237.640192,175.133962 238.369577,173.505115 238.369577,171.703654 C238.369577,169.902192 237.640192,168.273346 236.459808,167.092538 C235.279,165.912577 233.650154,165.183192 231.849115,165.183192 C231.193346,165.183192 230.560423,165.279654 229.963462,165.459462 C229.952885,165.316038 229.938077,165.173038 229.919462,165.031731 C230.532077,164.854885 231.179808,164.760115 231.849115,164.760115 C235.683462,164.760115 238.792654,167.868038 238.792654,171.703654 C238.792654,175.538846 235.683885,178.647615 231.849115,178.648038 M224.937731,171.021654 C225.139962,168.949423 226.252231,167.144577 227.870077,166.012 C227.8705,166.025115 227.8705,166.038231 227.8705,166.051346 C227.8705,166.221 227.862885,166.388538 227.8485,166.553962 C227.634,166.720654 227.430077,166.900885 227.238,167.092538 C226.272962,168.058 225.609154,169.323 225.398885,170.7365 C225.249962,170.838885 225.096385,170.933654 224.937731,171.021654","id","Fill-116"],["d","M225.086231,173.288077 C224.967769,172.779115 224.904731,172.248577 224.904731,171.703654 C224.904731,171.4735 224.916154,171.245885 224.937731,171.021654 C225.096385,170.933654 225.249962,170.838885 225.398885,170.7365 C225.351923,171.052115 225.327808,171.374923 225.327808,171.703654 C225.327808,172.188923 225.380692,172.661923 225.481385,173.117154 C225.3515,173.177654 225.219923,173.234346 225.086231,173.288077 M227.8485,166.553962 C227.862885,166.388538 227.8705,166.221 227.8705,166.051346 C227.8705,166.038231 227.8705,166.025115 227.870077,166.012 C228.487346,165.579615 229.177808,165.245808 229.919462,165.031731 C229.938077,165.173038 229.952885,165.316038 229.963462,165.459462 C229.187538,165.693423 228.472962,166.068269 227.8485,166.553962","id","Fill-117"],["d","M233.562154,77.9553077 L219.747,77.9553077 L219.747,73.1491538 L220.170077,73.1491538 L220.170077,77.5322308 L233.139077,77.5322308 L233.139077,64.5632308 L224.755385,64.5632308 L224.755385,64.1401538 L233.562154,64.1401538 L233.562154,77.9553077 M220.170077,71.0337692 L219.747,71.0337692 L219.747,64.1401538 L222.64,64.1401538 L222.64,64.5632308 L220.170077,64.5632308 L220.170077,71.0337692","id","Fill-118"],["d","M219.747,73.1491538 L220.170077,73.1491538 L220.170077,71.0337692 L219.747,71.0337692 L219.747,73.1491538 Z M222.64,64.5632308 L224.755385,64.5632308 L224.755385,64.1401538 L222.64,64.1401538 L222.64,64.5632308 Z","id","Fill-119"],["d","M82.1463077,84.6513462 L68.3315769,84.6513462 L68.3315769,79.8456154 L68.7546538,79.8456154 L68.7546538,84.2282692 L81.7232308,84.2282692 L81.7232308,71.2592692 L73.3391154,71.2592692 L73.3391154,70.8361923 L82.1463077,70.8361923 L82.1463077,84.6513462 M68.7546538,77.7302308 L68.3315769,77.7302308 L68.3315769,70.8361923 L71.2237308,70.8361923 L71.2237308,71.2592692 L68.7546538,71.2592692 L68.7546538,77.7302308","id","Fill-120"],["d","M68.3315769,79.8456154 L68.7546538,79.8456154 L68.7546538,77.7302308 L68.3315769,77.7302308 L68.3315769,79.8456154 Z M71.2237308,71.2592692 L73.3391154,71.2592692 L73.3391154,70.8361923 L71.2237308,70.8361923 L71.2237308,71.2592692 Z","id","Fill-121"],["d","M81.4740385,170.149269 L67.6593077,170.149269 L67.6593077,165.343538 L68.0823846,165.343538 L68.0823846,169.726192 L81.0509615,169.726192 L81.0509615,156.757192 L72.6672692,156.757192 L72.6672692,156.334115 L81.4740385,156.334115 L81.4740385,170.149269 M68.0823846,163.228154 L67.6593077,163.228154 L67.6593077,156.334115 L70.5518846,156.334115 L70.5518846,156.757192 L68.0823846,156.757192 L68.0823846,163.228154","id","Fill-122"],["d","M67.6593077,165.343538 L68.0823846,165.343538 L68.0823846,163.228154 L67.6593077,163.228154 L67.6593077,165.343538 Z M70.5518846,156.757192 L72.6672692,156.757192 L72.6672692,156.334115 L70.5518846,156.334115 L70.5518846,156.757192 Z","id","Fill-123"],["d","M233.561308,235.031923 L219.747,235.031923 L219.747,230.226192 L220.170077,230.226192 L220.170077,234.608846 L233.138231,234.608846 L233.138231,221.639846 L224.754538,221.639846 L224.754538,221.216769 L233.561308,221.216769 L233.561308,235.031923 M220.170077,228.110808 L219.747,228.110808 L219.747,221.216769 L222.639154,221.216769 L222.639154,221.639846 L220.170077,221.639846 L220.170077,228.110808","id","Fill-124"],["d","M219.747,230.226192 L220.170077,230.226192 L220.170077,228.110808 L219.747,228.110808 L219.747,230.226192 Z M222.639154,221.639846 L224.754538,221.639846 L224.754538,221.216769 L222.639154,221.216769 L222.639154,221.639846 Z","id","Fill-125"],["d","M178.0075,20.9156538 L164.193192,20.9156538 L164.193192,16.1095 L164.616269,16.1095 L164.616269,20.4925769 L177.584423,20.4925769 L177.584423,7.52315385 L169.200731,7.52315385 L169.200731,7.10007692 L178.0075,7.10007692 L178.0075,20.9156538 M164.616269,13.9941154 L164.193192,13.9941154 L164.193192,7.10007692 L167.085346,7.10007692 L167.085346,7.52315385 L164.616269,7.52315385 L164.616269,13.9941154","id","Fill-126"],["d","M164.193192,16.1095 L164.616269,16.1095 L164.616269,13.9941154 L164.193192,13.9941154 L164.193192,16.1095 Z M167.085346,7.52315385 L169.200731,7.52315385 L169.200731,7.10007692 L167.085346,7.10007692 L167.085346,7.52315385 Z","id","Fill-127"],["d","M145.154308,143.693 C144.562,143.693 144.078846,143.487385 143.693,143.165846 C143.304192,142.843462 143.005923,142.412769 142.732192,141.948231 C142.187692,141.018308 141.730346,139.944962 140.990808,139.262115 C140.4975,138.806885 139.894192,138.510731 139.011231,138.508615 L139.011231,138.085538 C139.0125,138.085538 139.014192,138.085538 139.015885,138.085538 C139.749923,138.085538 140.346038,138.281 140.829615,138.598308 C141.314462,138.916462 141.685923,139.350115 142.001538,139.819308 C142.628538,140.758115 143.052462,141.848385 143.651538,142.5325 C144.052615,142.989 144.496423,143.266538 145.1615,143.269923 L145.1615,143.693 C145.158962,143.693 145.156846,143.693 145.154308,143.693","id","Fill-128"],["d","M157.454423,143.693 C156.861692,143.693 156.378538,143.487385 155.992692,143.165846 C155.604308,142.843462 155.305615,142.412769 155.031885,141.948231 C154.487808,141.018308 154.030462,139.944962 153.290923,139.262115 C152.797615,138.806885 152.194731,138.510731 151.311769,138.508615 L151.311769,138.085538 C151.313462,138.085538 151.314731,138.085538 151.316423,138.085538 C152.050038,138.085538 152.646154,138.281 153.129731,138.598308 C153.615,138.916462 153.986038,139.350115 154.301231,139.819308 C154.928654,140.758115 155.352154,141.848385 155.951231,142.5325 C156.352731,142.989 156.796115,143.266538 157.461192,143.269923 L157.461192,143.693 C157.459077,143.693 157.456538,143.693 157.454423,143.693","id","Fill-129"],["d","M145.172077,143.693 C145.168269,143.693 145.164885,143.693 145.1615,143.693 L145.1615,143.269923 C145.662,143.268231 146.031769,143.109577 146.360077,142.840077 C146.686692,142.570154 146.963385,142.1805 147.226115,141.733731 C147.754538,140.841038 148.214423,139.727077 149.044077,138.952 C149.5945,138.437115 150.324308,138.085538 151.301615,138.085538 C151.305,138.085538 151.308385,138.085538 151.311769,138.085538 L151.311769,138.508615 C150.648808,138.509462 150.144923,138.678269 149.725231,138.952423 C149.305962,139.227 148.969615,139.613269 148.672615,140.055385 C148.075654,140.939192 147.658077,142.036231 146.990885,142.810038 C146.549615,143.323654 145.963654,143.693 145.172077,143.693","id","Fill-130"],["d","M157.471769,143.693 C157.468385,143.693 157.464577,143.693 157.461192,143.693 L157.461192,143.269923 C157.961692,143.268231 158.331462,143.109577 158.659346,142.840077 C158.985962,142.570154 159.263077,142.1805 159.525385,141.733731 C160.054231,140.841038 160.513692,139.727077 161.343346,138.952 C161.893769,138.437115 162.623577,138.085538 163.600462,138.085538 C163.603846,138.085538 163.607231,138.085538 163.610615,138.085538 L163.610615,138.508615 C162.947654,138.509462 162.444192,138.678269 162.0245,138.952423 C161.605231,139.226577 161.268885,139.613269 160.971885,140.055385 C160.375346,140.939192 159.957769,142.036231 159.290154,142.810038 C158.849308,143.323654 158.262923,143.693 157.471769,143.693","id","Fill-131"],["d","M180.193115,240.253538 C179.600385,240.253538 179.117231,240.047923 178.731385,239.726385 C178.343,239.404 178.044308,238.973308 177.770577,238.508769 C177.2265,237.578423 176.769154,236.505077 176.029615,235.821808 C175.535885,235.366577 174.933,235.070846 174.049615,235.068308 L174.049615,234.645231 C174.050885,234.645231 174.052577,234.645231 174.054269,234.645231 C174.788308,234.645231 175.384423,234.840692 175.868,235.158423 C176.353269,235.476577 176.724731,235.910231 177.039923,236.379423 C177.667346,237.318654 178.090846,238.4085 178.689923,239.093038 C179.091423,239.549538 179.535231,239.827077 180.199885,239.830462 L180.199885,240.253538 C180.197769,240.253538 180.195231,240.253538 180.193115,240.253538","id","Fill-132"],["d","M192.492808,240.253538 C191.9005,240.253538 191.416923,240.047923 191.0315,239.726385 C190.642692,239.404 190.344423,238.973308 190.070269,238.508769 C189.526192,237.578846 189.068846,236.505923 188.329731,235.822654 C187.836,235.367423 187.233115,235.071692 186.350154,235.069154 L186.350154,234.646077 C186.351846,234.646077 186.353538,234.646077 186.355231,234.646077 C187.088846,234.646077 187.684962,234.841538 188.168115,235.159269 C188.653385,235.477 189.024846,235.911077 189.340038,236.380269 C189.967038,237.319077 190.390962,238.408923 190.989615,239.093462 C191.391115,239.549538 191.834923,239.827077 192.499577,239.830462 L192.499577,240.253538 C192.497462,240.253538 192.494923,240.253538 192.492808,240.253538","id","Fill-133"],["d","M180.210462,240.253538 C180.207077,240.253538 180.203269,240.253538 180.199885,240.253538 L180.199885,239.830462 C180.700808,239.828769 181.070577,239.670115 181.398462,239.400615 C181.725077,239.130692 182.002192,238.741462 182.2645,238.294269 C182.793346,237.401577 183.252808,236.287615 184.082462,235.512962 C184.633308,234.997654 185.363115,234.646077 186.34,234.646077 C186.343385,234.646077 186.346769,234.646077 186.350154,234.646077 L186.350154,235.069154 C185.687192,235.07 185.183731,235.239231 184.763615,235.512962 C184.344346,235.787538 184.008,236.173808 183.711,236.615923 C183.114462,237.499731 182.696885,238.596769 182.029269,239.370577 C181.588423,239.884192 181.002038,240.253538 180.210462,240.253538","id","Fill-134"],["d","M192.5,240.253538 L192.499577,240.042 L192.499577,239.830462 C193.000077,239.828769 193.369846,239.669692 193.697731,239.400192 C194.024346,239.130692 194.301462,238.741038 194.563769,238.293846 C195.092192,237.401577 195.552077,236.287615 196.381308,235.512538 C196.932154,234.997654 197.661538,234.646077 198.638,234.646077 C198.641385,234.646077 198.644769,234.646077 198.648154,234.646077 L198.648577,234.646077 L198.682846,234.648615 L198.615577,235.066615 L198.648577,234.860577 L198.648577,235.069154 L198.648154,235.069154 C197.985615,235.07 197.482154,235.239231 197.062462,235.512962 C196.643192,235.787115 196.307269,236.173385 196.010269,236.615923 C195.413308,237.499308 194.996154,238.596346 194.328538,239.370154 C193.887692,239.883769 193.301308,240.253538 192.510154,240.253538 C192.506769,240.253538 192.502962,240.253538 192.5,240.253538","id","Fill-135"],["d","M196.964731,101.043462 C196.372423,101.043462 195.889269,100.837846 195.503423,100.516308 C195.114615,100.193923 194.816346,99.7632308 194.542615,99.2986923 C193.998115,98.3687692 193.541192,97.2954231 192.801654,96.6121538 C192.308346,96.1569231 191.705462,95.8611923 190.822077,95.8586538 L190.822077,95.4355769 C190.823769,95.4355769 190.825462,95.4355769 190.827154,95.4355769 C191.560769,95.4355769 192.156885,95.6310385 192.640462,95.9487692 C193.125308,96.2665 193.496769,96.7005769 193.811962,97.1697692 C194.438962,98.1085769 194.862885,99.1988462 195.461962,99.8829615 C195.863038,100.339462 196.306846,100.617 196.971923,100.620385 L196.971923,101.043462 C196.969385,101.043462 196.967269,101.043462 196.964731,101.043462","id","Fill-136"],["d","M209.264423,101.043462 C208.672115,101.043462 208.188962,100.837846 207.803115,100.516308 C207.414731,100.193923 207.116038,99.7632308 206.842308,99.2991154 C206.297808,98.3687692 205.840885,97.2958462 205.101346,96.6125769 C204.608038,96.1573462 204.005154,95.8616154 203.122192,95.8590769 L203.122192,95.436 C203.123885,95.436 203.125154,95.436 203.126846,95.436 C203.860885,95.436 204.456577,95.6314615 204.940154,95.9491923 C205.425,96.2669231 205.796462,96.701 206.111654,97.1701923 C206.739077,98.109 207.162577,99.1988462 207.761654,99.8833846 C208.163154,100.339462 208.606538,100.617 209.271615,100.620385 L209.271615,101.043462 C209.269077,101.043462 209.266962,101.043462 209.264423,101.043462","id","Fill-137"],["d","M196.9825,101.043462 C196.978692,101.043462 196.975308,101.043462 196.971923,101.043462 L196.971923,100.620385 C197.472423,100.618692 197.842192,100.460038 198.1705,100.190538 C198.497115,99.9206154 198.774231,99.5313846 199.036538,99.0841923 C199.565385,98.1915 200.025269,97.0775385 200.8545,96.3028846 C201.405346,95.7875769 202.135154,95.436 203.112038,95.436 C203.115423,95.436 203.118808,95.436 203.122192,95.436 L203.122192,95.8590769 C202.459231,95.8599231 201.955769,96.0291538 201.536077,96.3028846 C201.116385,96.5774615 200.780038,96.9637308 200.483462,97.4058462 C199.8865,98.2896538 199.468923,99.3866923 198.801308,100.1605 C198.360038,100.674115 197.774077,101.043462 196.9825,101.043462","id","Fill-138"],["d","M209.281769,101.043462 C209.278385,101.043462 209.275,101.043462 209.271615,101.043462 L209.271615,100.620385 C209.772115,100.618692 210.141885,100.460038 210.470192,100.190538 C210.796808,99.9206154 211.0735,99.5309615 211.336231,99.0841923 C211.864654,98.1915 212.324538,97.0775385 213.154192,96.3024615 C213.705038,95.7875769 214.434846,95.436 215.411731,95.436 C215.415115,95.436 215.4185,95.436 215.421885,95.436 L215.421885,95.8590769 C214.758923,95.8599231 214.255462,96.0291538 213.835346,96.3028846 C213.416077,96.5774615 213.079731,96.9637308 212.782731,97.4058462 C212.185769,98.2896538 211.768192,99.3866923 211.101,100.1605 C210.659731,100.674115 210.073346,101.043462 209.281769,101.043462","id","Fill-139"],["d","M25.9227692,94.7785385 C25.3300385,94.7785385 24.8468846,94.5729231 24.4610385,94.2513846 C24.0726538,93.9285769 23.7739615,93.4978846 23.5002308,93.0337692 C22.9561538,92.1034231 22.4988077,91.0305 21.7592692,90.3472308 C21.2655385,89.892 20.6626538,89.5958462 19.7796923,89.5937308 L19.7796923,89.1706538 C19.7813846,89.1706538 19.7826538,89.1706538 19.7843462,89.1706538 C20.5183846,89.1706538 21.1145,89.3656923 21.5976538,89.6834231 C22.0829231,90.0015769 22.4543846,90.4356538 22.7695769,90.9044231 C23.397,91.8436538 23.8205,92.9335 24.4195769,93.6180385 C24.8206538,94.0741154 25.2644615,94.3520769 25.9295385,94.3554615 L25.9295385,94.7785385 C25.927,94.7785385 25.9248846,94.7785385 25.9227692,94.7785385","id","Fill-140"],["d","M38.2224615,94.7785385 C37.6297308,94.7785385 37.1465769,94.5729231 36.7607308,94.2513846 C36.3723462,93.9285769 36.0736538,93.4983077 35.7999231,93.0337692 C35.2558462,92.1038462 34.7985,91.0305 34.0589615,90.3476538 C33.5656538,89.8924231 32.9627692,89.5962692 32.0798077,89.5941538 L32.0798077,89.1710769 C32.0815,89.1710769 32.0831923,89.1710769 32.0848846,89.1710769 C32.8185,89.1710769 33.4141923,89.3661154 33.8977692,89.6838462 C34.3830385,90.002 34.7545,90.4356538 35.0696923,90.9048462 C35.6966923,91.8436538 36.1201923,92.9335 36.7192692,93.6180385 C37.1207692,94.0741154 37.5645769,94.3520769 38.2292308,94.3554615 L38.2292308,94.7785385 C38.2271154,94.7785385 38.2245769,94.7785385 38.2224615,94.7785385","id","Fill-141"],["d","M25.9401154,94.7785385 C25.9367308,94.7785385 25.9329231,94.7785385 25.9295385,94.7785385 L25.9295385,94.3554615 C26.4304615,94.3537692 26.7998077,94.1946923 27.1281154,93.9256154 C27.4547308,93.6556923 27.7318462,93.2660385 27.9945769,92.8192692 C28.523,91.9265769 28.9824615,90.8126154 29.8121154,90.0375385 C30.3629615,89.5226538 31.0927692,89.1710769 32.0696538,89.1710769 C32.0730385,89.1710769 32.0764231,89.1710769 32.0798077,89.1710769 L32.0798077,89.5941538 C31.4168462,89.595 30.9133846,89.7638077 30.4932692,90.0379615 C30.074,90.3121154 29.7376538,90.6983846 29.4410769,91.1409231 C28.8441154,92.0247308 28.4265385,93.1217692 27.7589231,93.8955769 C27.3180769,94.4087692 26.7316923,94.7785385 25.9401154,94.7785385","id","Fill-142"],["d","M38.2398077,94.7785385 C38.2364231,94.7785385 38.2326154,94.7785385 38.2292308,94.7785385 L38.2292308,94.3554615 C38.7297308,94.3533462 39.0995,94.1946923 39.4278077,93.9251923 C39.7544231,93.6552692 40.0311154,93.2660385 40.2938462,92.8188462 C40.8222692,91.9265769 41.2817308,90.8126154 42.1113846,90.0375385 C42.6622308,89.5222308 43.3916154,89.1710769 44.3685,89.1710769 C44.3718846,89.1710769 44.3752692,89.1710769 44.3786538,89.1710769 L44.3790769,89.1710769 L44.396,89.1715 L44.3790769,89.386 L44.3790769,89.5941538 L44.3786538,89.5941538 C43.7156923,89.595 43.2126538,89.7638077 42.7925385,90.0379615 C42.3732692,90.3121154 42.0369231,90.6983846 41.7403462,91.1405 C41.1433846,92.0243077 40.7258077,93.1213462 40.0586154,93.8951538 C39.6173462,94.4087692 39.0313846,94.7785385 38.2398077,94.7785385","id","Fill-143"],["d","M141.206577,31.3093846 L140.783497,31.3093846 C140.782654,30.5732308 140.978115,29.9758462 141.296692,29.4914231 C141.614423,29.0061538 142.0485,28.6346923 142.517269,28.3195 C143.4565,27.6920769 144.546346,27.2685769 145.230462,26.6695 C145.686962,26.268 145.9645,25.8241923 145.967885,25.1595385 L146.390972,25.1595385 C146.392654,25.7552308 146.186615,26.2405 145.863808,26.6280385 C145.541423,27.0164231 145.110731,27.3151154 144.646192,27.5888462 C143.716269,28.1329231 142.643346,28.5902692 141.960077,29.3298077 C141.504846,29.8231154 141.209115,30.426 141.206577,31.3093846","id","Fill-144"],["d","M141.206577,19.0092692 L140.783497,19.0092692 C140.782654,18.2731154 140.978115,17.6757308 141.296692,17.1913077 C141.614423,16.7060385 142.0485,16.3345769 142.517269,16.0193846 C143.4565,15.3923846 144.546346,14.9684615 145.230462,14.3698077 C145.686962,13.9683077 145.9645,13.5245 145.967885,12.8598462 L146.390972,12.8598462 C146.392654,13.4551154 146.186615,13.9408077 145.863808,14.3279231 C145.541423,14.7167308 145.110731,15.015 144.646192,15.2891538 C143.716269,15.8332308 142.643346,16.2901538 141.960077,17.0296923 C141.504846,17.5234231 141.209115,18.1263077 141.206577,19.0092692","id","Fill-145"],["d","M146.390985,25.1595385 L145.967885,25.1595385 C145.966192,24.6586154 145.807538,24.2888462 145.538038,23.9609615 C145.268115,23.6339231 144.878462,23.3572308 144.431692,23.0945 C143.539,22.5660769 142.425038,22.1061923 141.650385,21.2769615 C141.133385,20.724 140.780962,19.9912308 140.783486,19.0092692 L141.206577,19.0092692 C141.207423,19.6722308 141.376231,20.1756923 141.650385,20.5953846 C141.924962,21.0150769 142.311231,21.351 142.753346,21.648 C143.637154,22.2449615 144.734192,22.6625385 145.508,23.3301538 C146.023731,23.7731154 146.394346,24.3624615 146.390985,25.1595385","id","Fill-146"],["d","M146.390985,12.8598462 L145.967885,12.8598462 C145.966192,12.3589231 145.807538,11.9891538 145.538038,11.6612692 C145.268115,11.3346538 144.878462,11.0575385 144.431692,10.7952308 C143.539,10.2668077 142.425038,9.80692308 141.650385,8.97726923 C141.133385,8.42473077 140.780962,7.69196154 140.783486,6.70957692 L141.206577,6.70957692 C141.207423,7.37253846 141.376231,7.87642308 141.650385,8.29611538 C141.924962,8.71538462 142.311231,9.05173077 142.753346,9.34873077 C143.637154,9.94569231 144.734192,10.3628462 145.508,11.0304615 C146.023731,11.4734231 146.394346,12.0627692 146.390985,12.8598462","id","Fill-147"],["d","M103.4935,95.6471154 L103.07042,95.6471154 C103.069577,94.9113846 103.265038,94.3135769 103.583192,93.8291538 C103.901346,93.3438846 104.335423,92.9724231 104.804192,92.6572308 C105.743,92.0298077 106.833269,91.6063077 107.517385,91.0072308 C107.973885,90.6057308 108.251423,90.1623462 108.254808,89.4972692 L108.677895,89.4972692 C108.679577,90.0929615 108.473538,90.5786538 108.150731,90.9657692 C107.828346,91.3541538 107.397654,91.6528462 106.933115,91.9265769 C106.003192,92.4710769 104.930269,92.928 104.247,93.6675385 C103.791769,94.1608462 103.496038,94.7641538 103.4935,95.6471154","id","Fill-148"],["d","M103.4935,83.347 L103.07042,83.347 C103.069577,82.6108462 103.265038,82.0134615 103.583192,81.5290385 C103.901346,81.0437692 104.335423,80.6723077 104.804192,80.3571154 C105.743,79.7301154 106.833269,79.3066154 107.517385,78.7075385 C107.973885,78.3060385 108.251423,77.8622308 108.254808,77.1975769 L108.677895,77.1975769 C108.679577,77.7932692 108.473538,78.2785385 108.150731,78.6660769 C107.828346,79.0544615 107.397654,79.3531538 106.933115,79.6268846 C106.003192,80.1709615 104.930269,80.6283077 104.247,81.3678462 C103.791769,81.8611538 103.496038,82.4640385 103.4935,83.347","id","Fill-149"],["d","M108.677908,89.4972692 L108.254808,89.4972692 C108.253115,88.9967692 108.094462,88.627 107.824962,88.2986923 C107.555038,87.9720769 107.165385,87.6949615 106.718615,87.4326538 C105.825923,86.9038077 104.711962,86.4439231 103.936885,85.6146923 C103.420308,85.0621538 103.067885,84.3289615 103.070409,83.347 L103.4935,83.347 C103.494346,84.0099615 103.663154,84.5134231 103.937308,84.9335385 C104.211885,85.3528077 104.598154,85.6891538 105.040269,85.9857308 C105.924077,86.5826923 107.021115,87.0002692 107.794923,87.6678846 C108.310654,88.1108462 108.681269,88.7006154 108.677908,89.4972692","id","Fill-150"],["d","M108.677908,77.1975769 L108.254808,77.1975769 C108.253115,76.6970769 108.094462,76.3273077 107.824962,75.999 C107.555038,75.6723846 107.165385,75.3956923 106.718615,75.1329615 C105.825923,74.6045385 104.711962,74.1446538 103.936885,73.3154231 C103.420308,72.7624615 103.067885,72.0296923 103.070409,71.0477308 L103.4935,71.0477308 C103.494346,71.7106923 103.663154,72.2141538 103.937308,72.6338462 C104.211885,73.0531154 104.598154,73.3894615 105.040269,73.6864615 C105.924077,74.2834231 107.021115,74.701 107.794923,75.3681923 C108.310654,75.8111538 108.681269,76.4009231 108.677908,77.1975769","id","Fill-151"],["d","M205.722423,198.425192 L205.299343,198.425192 C205.2985,197.689038 205.493962,197.091231 205.812538,196.606808 C206.130269,196.121538 206.564346,195.750077 207.033538,195.434885 C207.972346,194.807462 209.062192,194.383962 209.746731,193.784885 C210.202808,193.383385 210.480346,192.939577 210.483731,192.274923 L210.906818,192.274923 C210.9085,192.870615 210.702885,193.355885 210.379654,193.743423 C210.057269,194.131808 209.626577,194.4305 209.162462,194.704231 C208.232115,195.248308 207.159192,195.705654 206.475923,196.445192 C206.020692,196.938923 205.724962,197.541808 205.722423,198.425192","id","Fill-152"],["d","M205.722423,186.124654 L205.299343,186.124654 C205.2985,185.3885 205.493962,184.791115 205.812538,184.306692 C206.130269,183.821423 206.564346,183.449962 207.033538,183.134769 C207.972346,182.507769 209.062192,182.083846 209.746731,181.485192 C210.202808,181.083692 210.480346,180.639885 210.483731,179.975231 L210.906818,179.975231 C210.9085,180.5705 210.702885,181.056192 210.379654,181.443308 C210.057269,181.832115 209.626577,182.130385 209.162462,182.404538 C208.232115,182.948615 207.159192,183.405538 206.475923,184.145077 C206.020692,184.638385 205.724962,185.241692 205.722423,186.124654","id","Fill-153"],["d","M210.906831,192.274923 L210.483731,192.274923 C210.482038,191.774 210.323385,191.404231 210.053885,191.076346 C209.783962,190.749308 209.394731,190.472615 208.947538,190.210308 C208.054846,189.681462 206.940885,189.222 206.166231,188.392346 C205.649231,187.839808 205.296808,187.106615 205.299333,186.124654 L205.722423,186.124654 C205.723269,186.787615 205.8925,187.291077 206.166231,187.711192 C206.440808,188.130462 206.827077,188.466808 207.269192,188.763385 C208.153,189.360346 209.250038,189.777923 210.023846,190.445538 C210.539577,190.8885 210.910192,191.477846 210.906831,192.274923","id","Fill-154"],["d","M210.906831,179.975231 L210.483731,179.975231 C210.482038,179.474308 210.323385,179.104962 210.053885,178.776654 C209.783962,178.450038 209.394731,178.173346 208.947538,177.910615 C208.054846,177.382192 206.940885,176.922308 206.166231,176.093077 C205.649231,175.540538 205.296808,174.807346 205.299333,173.825385 L205.722423,173.825385 C205.723269,174.488346 205.8925,174.991808 206.166231,175.411923 C206.440808,175.831192 206.827077,176.167538 207.269192,176.464115 C208.153,177.061077 209.250038,177.478654 210.023846,178.145846 C210.539577,178.588808 210.910192,179.178154 210.906831,179.975231","id","Fill-155"],["d","M78.8818462,208.117038 L78.4587665,208.117038 C78.4579231,207.381308 78.6533846,206.7835 78.9719615,206.299077 C79.2896923,205.813808 79.7237692,205.442346 80.1925385,205.127577 C81.1317692,204.500154 82.2216154,204.076654 82.9057308,203.477577 C83.3622308,203.076077 83.6397692,202.632692 83.6431538,201.967615 L84.0662411,201.967615 C84.0679231,202.563308 83.8618846,203.048577 83.5390769,203.436115 C83.2166923,203.8245 82.786,204.123192 82.3214615,204.396923 C81.3915385,204.941 80.3186154,205.398346 79.6353462,206.137885 C79.1801154,206.631192 78.8843846,207.234077 78.8818462,208.117038","id","Fill-156"],["d","M78.8818462,195.817346 L78.4587665,195.817346 C78.4579231,195.081192 78.6533846,194.483808 78.9719615,193.999385 C79.2896923,193.514115 79.7237692,193.142654 80.1925385,192.827462 C81.1317692,192.200462 82.2216154,191.776962 82.9057308,191.177885 C83.3622308,190.776385 83.6397692,190.332577 83.6431538,189.667923 L84.0662411,189.667923 C84.0679231,190.263192 83.8618846,190.748885 83.5390769,191.136 C83.2166923,191.524808 82.786,191.8235 82.3214615,192.097231 C81.3915385,192.641308 80.3186154,193.098231 79.6353462,193.837769 C79.1801154,194.3315 78.8843846,194.934385 78.8818462,195.817346","id","Fill-157"],["d","M84.0662538,201.967615 L83.6431538,201.967615 C83.6414615,201.466692 83.4828077,201.096923 83.2133077,200.769038 C82.9433846,200.442 82.5541538,200.165308 82.1069615,199.902577 C81.2142692,199.374154 80.1003077,198.914269 79.3256538,198.084615 C78.8086538,197.532077 78.4562308,196.799308 78.4587556,195.817346 L78.8818462,195.817346 C78.8826923,196.480308 79.0519231,196.983769 79.3256538,197.403462 C79.6002308,197.822731 79.9865,198.159077 80.4286154,198.456077 C81.3124231,199.053038 82.4094615,199.470615 83.1832692,200.138231 C83.699,200.581192 84.0696154,201.170538 84.0662538,201.967615","id","Fill-158"],["d","M84.0662538,189.667923 L83.6431538,189.667923 C83.6414615,189.167 83.4828077,188.797231 83.2133077,188.469346 C82.9433846,188.142308 82.5541538,187.865615 82.1069615,187.602885 C81.2142692,187.074462 80.1003077,186.615 79.3256538,185.785346 C78.8086538,185.232808 78.4562308,184.499615 78.4587556,183.517654 L78.8818462,183.517654 C78.8826923,184.180615 79.0519231,184.684077 79.3256538,185.104192 C79.6002308,185.523462 79.9865,185.859808 80.4286154,186.156385 C81.3124231,186.753346 82.4094615,187.170923 83.1832692,187.838538 C83.699,188.2815 84.0696154,188.870846 84.0662538,189.667923","id","Fill-159"],["id","Fill-160","points","159.898962 157.494192 175.074308 157.494192 175.074308 157.071115 159.898962 157.071115"],["id","Fill-161","points","10.7106154 113.642269 25.8859615 113.642269 25.8859615 113.219192 10.7106154 113.219192"],["id","Fill-162","points","161.033231 43.1022308 176.208577 43.1022308 176.208577 42.6791538 161.033231 42.6791538"],["id","Fill-163","points","220.851654 8.85415385 236.027 8.85415385 236.027 8.43107692 220.851654 8.43107692"],["id","Fill-164","points","71.2097692 235.037846 86.3851154 235.037846 86.3851154 234.614769 71.2097692 234.614769"],["id","Fill-165","points","110.326192 205.658115 110.027077 205.359 120.757577 194.628077 121.056692 194.927192 110.326192 205.658115"],["id","Fill-166","points","21.4982308 19.5228846 21.1991154 19.2233462 31.9300385 8.49284615 32.2291538 8.79196154 21.4982308 19.5228846"],["id","Fill-167","points","228.588462 129.527962 228.289346 129.228846 239.019846 118.497923 239.318962 118.797462 228.588462 129.527962"],["d","M139.227423,187.558885 L138.664731,186.663231 C138.397346,186.830769 138.108385,186.908192 137.817731,186.908615 C137.552462,186.908615 137.288462,186.842192 137.055769,186.716115 C136.822654,186.589615 136.620846,186.407269 136.467692,186.164 L136.466846,186.162731 C136.298885,185.894923 136.221885,185.606385 136.221462,185.315731 C136.221038,185.050885 136.287462,184.787308 136.413538,184.554615 C136.540038,184.3215 136.722808,184.119269 136.9665,183.965692 C137.232192,183.799 137.520731,183.722 137.811385,183.721154 C138.076654,183.721154 138.341077,183.788 138.574192,183.913654 C138.807731,184.040154 139.009538,184.222923 139.162269,184.465769 L139.163115,184.467038 C139.330231,184.733154 139.407231,185.021692 139.408077,185.312346 C139.408077,185.577615 139.341654,185.841615 139.215577,186.075154 C139.089077,186.308692 138.906308,186.510923 138.663885,186.664077 L138.664731,186.663231 L139.227423,187.558885 L139.791385,188.454115 C140.348154,188.103385 140.784346,187.622769 141.077115,187.079538 C141.370308,186.535885 141.523038,185.928769 141.523462,185.312346 C141.523885,184.638385 141.337731,183.950038 140.953154,183.339538 L140.953577,183.340808 C140.603692,182.782769 140.122654,182.345308 139.579,182.052538 C139.034923,181.758923 138.427385,181.606192 137.811385,181.605769 C137.137423,181.605346 136.449923,181.791077 135.840269,182.175231 C135.282654,182.525538 134.845615,183.005731 134.552423,183.548962 C134.258808,184.092615 134.106077,184.699731 134.105653,185.315731 C134.105231,185.990538 134.291808,186.678885 134.676808,187.289808 L134.675962,187.288115 C135.025846,187.846154 135.506462,188.284038 136.050115,188.577231 C136.593769,188.870846 137.201308,189.024001 137.817731,189.024001 C138.491692,189.024423 139.179615,188.838692 139.790115,188.454538 L139.791385,188.454115 L139.227423,187.558885","id","Fill-168"],["d","M118.331231,114.613654 L117.768538,113.718 C117.501154,113.885538 117.212192,113.962962 116.921538,113.963385 C116.656269,113.963385 116.392692,113.896962 116.159577,113.770885 C115.926462,113.644385 115.724654,113.462038 115.5715,113.218346 L115.570654,113.2175 C115.403115,112.950115 115.325692,112.661154 115.325269,112.3705 C115.325269,112.106077 115.391692,111.8425 115.517346,111.609385 C115.643846,111.376269 115.826615,111.174462 116.069885,111.020885 C116.336,110.854192 116.624538,110.776769 116.915192,110.776346 C117.180462,110.776346 117.444885,110.842769 117.678,110.968846 C117.911538,111.095346 118.113346,111.278115 118.2665,111.521385 L118.267346,111.522231 C118.434462,111.788346 118.511462,112.076885 118.511885,112.367538 C118.512308,112.632385 118.445462,112.896385 118.319385,113.129923 C118.192885,113.363462 118.010538,113.565692 117.767692,113.718846 L117.768538,113.718 L118.331231,114.613654 L118.894769,115.508885 C119.451962,115.158577 119.888154,114.677962 120.181346,114.134308 C120.474538,113.590654 120.627272,112.983538 120.627272,112.367538 C120.628115,111.693154 120.441962,111.005231 120.057385,110.394731 L120.057808,110.396 C119.7075,109.837962 119.226885,109.4005 118.682808,109.107308 C118.138731,108.813692 117.531615,108.660961 116.915192,108.660961 C116.241231,108.660538 115.553731,108.846269 114.943654,109.230423 C114.386462,109.580308 113.949423,110.0605 113.656654,110.603731 C113.363038,111.147385 113.209884,111.7545 113.209884,112.3705 C113.209462,113.045308 113.395615,113.733654 113.780615,114.344154 L113.779769,114.343308 C114.129654,114.901346 114.610269,115.338808 115.153923,115.632 C115.698,115.925615 116.305115,116.07877 116.921538,116.07877 C117.5955,116.079192 118.283423,115.893462 118.893923,115.509308 L118.894769,115.508885 L118.331231,114.613654","id","Fill-169"],["d","M22.7619615,137.046038 L22.1992692,136.150385 C21.9318846,136.317923 21.6425,136.394923 21.3518462,136.395769 C21.087,136.395769 20.823,136.328923 20.5903077,136.203269 C20.3571923,136.076769 20.1549615,135.894 20.0018077,135.650731 L20.0013846,135.649885 C19.8334231,135.382077 19.756,135.093115 19.7555769,134.802462 C19.7555769,134.538038 19.822,134.274462 19.9480769,134.041346 C20.0745769,133.808231 20.2573462,133.606423 20.5006154,133.452423 L20.5001923,133.452846 C20.7667308,133.285731 21.0548462,133.208731 21.3459231,133.208308 C21.6107692,133.208308 21.8751923,133.274731 22.1087308,133.400808 C22.3422692,133.527308 22.5440769,133.710077 22.6972308,133.952923 L22.6976538,133.953769 C22.8647692,134.220308 22.9421923,134.508423 22.9426154,134.799077 C22.9426154,135.064346 22.8761923,135.328769 22.7501154,135.561885 C22.6236154,135.795423 22.4408462,135.997654 22.198,136.150808 L22.1992692,136.150385 L22.7619615,137.046038 L23.3255,137.940846 C23.8822692,137.590538 24.3188846,137.109923 24.6116538,136.566269 C24.9048462,136.022615 25.0580007,135.4155 25.0580007,134.799077 C25.0584231,134.125115 24.8722692,133.436769 24.4876923,132.826692 L24.4881154,132.827538 C24.1382308,132.2695 23.6571923,131.832462 23.1135385,131.539269 C22.5694615,131.245654 21.9619231,131.092922 21.3459231,131.092922 C20.6719615,131.0925 19.9844615,131.278231 19.3743846,131.661962 L19.3739615,131.661962 C18.8171923,132.012269 18.3801538,132.492462 18.0869615,133.035692 C17.7933462,133.579346 17.6401916,134.186462 17.6401916,134.802462 C17.6397692,135.477269 17.8263462,136.165615 18.2109231,136.776115 L18.2105,136.775269 C18.5603846,137.333308 19.041,137.770769 19.5846538,138.063962 C20.1283077,138.358 20.7358462,138.510731 21.3518462,138.511155 C22.0262308,138.511577 22.7141538,138.325423 23.3242308,137.941692 L23.3255,137.940846 L22.7619615,137.046038","id","Fill-170"],["d","M49.9332308,53.5801538 L49.3705385,52.6845 C49.1031538,52.8520385 48.8141923,52.9290385 48.5235385,52.9294615 C48.2582692,52.9298846 47.9946923,52.8630385 47.7615769,52.7373846 C47.5284615,52.6108846 47.3266538,52.4281154 47.1735,52.1844231 L47.1726538,52.1835769 C47.0051154,51.9161923 46.9276923,51.6272308 46.9272692,51.3365769 C46.9272692,51.0721538 46.9936923,50.8085769 47.1193462,50.5758846 C47.2458462,50.3427692 47.4286154,50.1405385 47.6723077,49.9869615 C47.9384231,49.8202692 48.2265385,49.7432692 48.5171923,49.7424231 C48.7824615,49.7424231 49.0468846,49.8088462 49.28,49.9349231 C49.5135385,50.0618462 49.7153462,50.2441923 49.8685,50.4874615 L49.8693462,50.4883077 C50.0364615,50.7548462 50.1134615,51.0429615 50.1138846,51.3336154 C50.1143077,51.5984615 50.0474615,51.8628846 49.9213846,52.096 C49.7948846,52.3295385 49.6125385,52.5317692 49.3696923,52.6849231 L49.3705385,52.6845 L49.9332308,53.5801538 L50.4967692,54.4749615 C51.0539615,54.1246538 51.4905769,53.6440385 51.7833462,53.1008077 C52.0765385,52.5567308 52.2292721,51.9496154 52.2292721,51.3336154 C52.2301154,50.6596538 52.0439615,49.9713077 51.6593846,49.3612308 L51.6598077,49.3620769 C51.3095,48.8040385 50.8288846,48.367 50.2848077,48.0738077 C49.7411538,47.7801923 49.1336154,47.6274615 48.5171923,47.6270377 C47.8432308,47.6266154 47.1557308,47.8123462 46.5456538,48.1965 C45.9884615,48.5463846 45.5514231,49.0265769 45.2586538,49.5702308 C44.9650385,50.1138846 44.8118839,50.721 44.8118839,51.3365769 C44.8114615,52.0113846 44.9976154,52.6997308 45.3826154,53.3106538 L45.3817692,53.3093846 C45.7320769,53.8674231 46.2122692,54.3048846 46.7559231,54.5980769 C47.3,54.8921154 47.9071154,55.044849 48.5235385,55.044849 C49.1975,55.0456923 49.8854231,54.8595385 50.4959231,54.4758077 L50.4967692,54.4749615 L49.9332308,53.5801538","id","Fill-171"],["d","M195.8,52.261 L195.237308,51.3653462 C194.969923,51.5333077 194.680962,51.6103077 194.390308,51.6107308 C194.125462,51.6107308 193.861462,51.5443077 193.628769,51.4182308 C193.395231,51.2917308 193.193423,51.1093846 193.039846,50.8656923 L193.039846,50.8648462 C192.871885,50.5974615 192.794462,50.3085 192.794038,50.0178462 C192.794038,49.7534231 192.860462,49.4898462 192.986538,49.2567308 C193.112615,49.0236154 193.295385,48.8218077 193.538654,48.6682308 C193.805192,48.5015385 194.093308,48.4241154 194.384385,48.4236923 C194.649231,48.4236923 194.913654,48.4901154 195.146769,48.6161923 C195.380308,48.7426923 195.582538,48.9254615 195.736115,49.1687308 L195.736538,49.1695769 C195.903654,49.4356923 195.980654,49.7242308 195.981077,50.0148846 C195.9815,50.2797308 195.914654,50.5437308 195.788577,50.7772692 C195.662077,51.0108077 195.479308,51.2130385 195.236462,51.3661923 L195.237308,51.3653462 L195.8,52.261 L196.363538,53.1562308 C196.920731,52.8059231 197.357346,52.3253077 197.650115,51.7820769 C197.943731,51.238 198.096464,50.6308846 198.096464,50.0148846 C198.097308,49.3405 197.911154,48.6525769 197.526154,48.0425 L197.526577,48.0429231 C197.176269,47.4853077 196.695654,47.0478462 196.152,46.7550769 C195.607923,46.4614615 195.000385,46.308307 194.384385,46.308307 C193.710423,46.3078846 193.0225,46.4936154 192.412846,46.8777692 C191.855231,47.2276538 191.418192,47.7078462 191.125423,48.2515 C190.831808,48.7951538 190.678653,49.4018462 190.678653,50.0178462 C190.678231,50.6926538 190.864385,51.381 191.248962,51.9915 L191.248962,51.9910769 C191.598846,52.5486923 192.079462,52.9861538 192.622692,53.2793462 C193.166769,53.5729615 193.773885,53.7261161 194.390308,53.7261161 C195.064269,53.7265385 195.752192,53.5408077 196.362692,53.1566538 L196.363538,53.1562308 L195.8,52.261","id","Fill-172"],["d","M233.261346,146.737885 L232.698654,145.842231 C232.431269,146.009769 232.142308,146.087192 231.851654,146.087615 C231.586385,146.087615 231.322808,146.021192 231.089692,145.895115 C230.856577,145.768615 230.654769,145.585846 230.501192,145.342154 C230.333231,145.074346 230.255808,144.785385 230.255385,144.494308 C230.255385,144.229885 230.321808,143.966308 230.447462,143.733192 C230.573962,143.500077 230.756731,143.298269 231.000423,143.144692 C231.266115,142.978 231.554654,142.900577 231.845731,142.900154 C232.110577,142.900154 232.375,142.966577 232.608115,143.092654 C232.841654,143.219154 233.043885,143.401923 233.197038,143.645192 L233.197462,143.646038 C233.365,143.912154 233.442,144.200269 233.442423,144.490923 C233.442423,144.756192 233.376,145.020192 233.249923,145.253731 C233.123423,145.487269 232.940654,145.6895 232.697808,145.842654 L232.698654,145.842231 L233.261346,146.737885 L233.824885,147.633115 C234.382077,147.282808 234.818692,146.802192 235.111462,146.258538 C235.404654,145.714462 235.557808,145.107346 235.557808,144.490923 C235.558231,143.816962 235.3725,143.128615 234.9875,142.518538 L234.987923,142.519385 C234.637615,141.961346 234.157,141.524308 233.612923,141.231115 C233.068846,140.9375 232.461731,140.784769 231.845731,140.784769 C231.171769,140.784346 230.484269,140.970077 229.874192,141.353808 C229.316577,141.704115 228.879538,142.184308 228.586346,142.727962 C228.293154,143.271615 228.139999,143.878731 228.139999,144.494308 C228.139577,145.169115 228.325731,145.857462 228.710308,146.467962 C229.060192,147.025154 229.540385,147.462615 230.084038,147.756231 C230.628115,148.049846 231.235231,148.202577 231.851654,148.203001 C232.525615,148.203423 233.213538,148.017269 233.824038,147.633538 L233.824885,147.633115 L233.261346,146.737885","id","Fill-173"],["id","summary/card1","transform","translate(0.000000, 0.500000)"],["id","Group-3-Copy","transform","translate(0.000000, 31.500000)"],["d","M242.243,146.335 C203.034,140.754 163.526,137.965 124.02,137.965 C84.517,137.965 45.013,140.754 5.802,146.335 C9.204,138.915 12.718,131.514 16.34,124.135 C10.998,117.889 5.55,111.692 4.40536496e-13,105.546 C41.132,99.692 82.575,96.765 124.02,96.765 C165.468,96.765 206.913,99.692 248.049,105.546 C242.495,111.692 237.047,117.889 231.703,124.135 C235.327,131.514 238.839,138.915 242.243,146.335","id","Fill-47","fill","#035429"],["d","M221.022,128.961 C156.569,121.589 91.478,121.589 27.022,128.961 C34.239,133.013 41.355,137.154 48.359,141.384 C98.699,136.826 149.346,136.826 199.687,141.384 C206.691,137.154 213.804,133.013 221.022,128.961","id","Fill-48","fill","#135E41"],["id","Fill-49"],["fill","url(#linearGradient-2)","fill-rule","evenodd",0,"xlink","href","#path-3",1,"badge-img"],["stroke","#E55B28","stroke-width","2","d","M124.02,2 C128.022653,2 131.528214,5.10293248 135.02987,7.95760624 C138.340723,10.6567296 141.645472,13.2561325 145.089895,14.1797264 C148.415186,15.0715974 152.320881,14.6299487 156.265965,14.0272186 L157.295655,13.8671016 C161.693093,13.1744009 166.136786,12.2781684 169.426335,14.1845096 C172.781525,16.1285206 174.236945,20.4874458 175.831984,24.6733586 C177.371482,28.7135135 178.967537,32.6989638 181.561917,35.2933439 C183.94888,37.6798677 187.512993,39.221297 191.213788,40.651052 L192.181629,41.0219806 C196.367671,42.6166562 200.726744,44.0715627 202.670573,47.4278074 C204.403663,50.4183978 203.820311,54.3630785 203.179337,58.3595672 L202.987575,59.5591657 C202.31153,63.849787 201.705365,68.1492743 202.674308,71.763233 C203.598435,75.2078774 206.198132,78.5131022 208.897244,81.8241452 C211.75162,85.3256525 214.854,88.8306466 214.854,92.831 C214.854,96.832985 211.751613,100.338502 208.897136,103.840492 C206.198053,107.151839 203.598389,110.457345 202.674244,113.903006 C201.705459,117.515897 202.311415,121.814933 202.987311,126.105411 C203.680176,130.50361 204.576685,134.948676 202.66949,138.239335 C200.725565,141.594377 196.366857,143.049157 192.181152,144.643626 C188.140809,146.182723 184.155152,147.778421 181.560526,150.373047 C178.967035,152.967494 177.371371,156.952257 175.832191,160.99173 C174.237146,165.17782 172.781641,169.53691 169.426193,171.481573 C166.136359,173.388079 161.691952,172.491384 157.293947,171.798293 C153.003551,171.122161 148.704203,170.515846 145.090015,171.484241 C141.645415,172.407883 138.340605,175.007544 135.029695,177.706948 C131.528095,180.561823 128.022598,183.665 124.02,183.665 C120.021263,183.665 116.517987,180.563494 113.01758,177.709579 C109.70557,175.009266 106.398941,172.408134 102.95193,171.484227 C99.3382679,170.515364 95.0387743,171.121719 90.7479482,171.798003 C86.349975,172.491175 81.9053239,173.387896 78.6152772,171.481845 C75.2605635,169.536523 73.8048191,165.176943 72.2096648,160.990438 C70.6705899,156.951114 69.0751201,152.966605 66.4822136,150.371786 C63.887813,147.777386 59.9020478,146.181298 55.8616562,144.641805 C51.6759515,143.046943 47.317358,141.591742 45.3736068,138.237503 C43.4675217,134.947035 44.3637487,130.502249 45.0564894,126.104197 C45.7322463,121.813971 46.3381248,117.515135 45.3697764,113.902081 C44.4460882,110.456833 41.8463613,107.151411 39.147054,103.840043 C36.2925633,100.338303 33.19,96.8328843 33.19,92.831 C33.19,88.8309097 36.2923113,85.326134 39.1465896,81.8248571 C41.8460499,78.5134916 44.4460193,75.2079505 45.3698548,71.7626262 C46.3381043,68.1489808 45.7322705,63.8496639 45.05665,59.5592552 C44.3640075,55.1607518 43.4678241,50.715808 45.3743973,47.4258586 C47.3187833,44.0708887 51.6771927,42.615999 55.8625437,41.0215503 C59.9028406,39.4823613 63.8883044,37.8866009 66.4823439,35.2920832 C69.0762624,32.6976865 70.6720686,28.7121255 72.2113162,24.6718843 C73.8059598,20.4862389 75.2610199,16.1277098 78.6141553,14.1838046 C81.9057209,12.2779512 86.3498867,13.1741205 90.7474105,13.8669719 C95.0384528,14.5430467 99.3380864,15.1491655 102.951786,14.179812 C106.398885,13.2558815 109.705452,10.6550072 113.017405,7.95497485 C116.517868,5.10126124 120.021208,2 124.02,2 Z","stroke-linejoin","square"],["d","M49.607,92.831 C49.607,51.734 82.928,18.417 124.02,18.417 C165.124,18.417 198.44,51.734 198.44,92.831 C198.44,133.931 165.124,167.247 124.02,167.247 C82.928,167.247 49.607,133.931 49.607,92.831","id","Fill-51","fill","#FFFFFE"],["d","M221.022,128.961 C156.569,121.589 91.478,121.589 27.022,128.961 C25.462,115.317 23.9,101.672 22.342,88.028 C89.911,80.301 158.137,80.301 225.707,88.028 C224.146,101.672 222.584,115.317 221.022,128.961","id","Fill-53","fill","#1D6240"],["id","Group-18-Copy","transform","translate(70.023500, 90.832000)","fill","#FFFFFE","fill-opacity","1"],["id","Group","transform","translate(0.500000, 0.000000)"],["id","387"],["filter","url(#filter-7)",0,"xlink","href","#text-6"],[0,"xlink","href","#text-6"],["id","Pages-read-:"],["filter","url(#filter-9)",0,"xlink","href","#text-8"],[0,"xlink","href","#text-8"],["d","M124.0235,47.417 C126.50975,47.417 128.5235,45.40325 128.5235,42.917 C128.5235,40.43075 126.50975,38.417 124.0235,38.417 C121.53725,38.417 119.5235,40.43075 119.5235,42.917 C119.5235,45.40325 121.53725,47.417 124.0235,47.417 L124.0235,47.417 Z M124.0235,49.667 C121.01975,49.667 115.0235,51.1745 115.0235,54.167 L115.0235,56.417 L133.0235,56.417 L133.0235,54.167 C133.0235,51.1745 127.02725,49.667 124.0235,49.667 L124.0235,49.667 Z","id","Shape-Copy-2","fill","#000"],["text-anchor","middle","x","60","y","60",2,"width","50%","height","1.5rem","font-size","0.75rem"],["xmlns","http://www.w3.org/1999/xhtml",1,"truncate-overflow"],["id","Group-17-Copy-2","transform","translate(95.523500, 128.964250)",4,"ngIf"],[1,"player-endpage__right-panel"],[1,"title-section"],[1,"title","animated","fadeInDown"],[1,"animated","fadeInUp"],[1,"user-options"],["tabindex","0",1,"replay-section",3,"ngClass","click"],["width","36","height","37","xmlns","http://www.w3.org/2000/svg",4,"ngIf"],[1,"title"],["class","exit-section","tabindex","0",3,"click",4,"ngIf"],[4,"ngIf"],["id","text-8","x","55","y","16","text-anchor","middle","fill","#FFFFFE"],["font-size","12","font-weight","400","font-family","Noto Sans, NotoSans-Bold"],["font-size","18","font-family","NotoSans-Bold, Noto Sans"],["id","Group-17-Copy-2","transform","translate(95.523500, 128.964250)"],["id","Icon-24px","transform","translate(0.000000, 0.500000)"],["id","Shape","points","0 0 18 0 18 18 0 18"],["d","M11.25,0.75 L6.75,0.75 L6.75,2.25 L11.25,2.25 L11.25,0.75 L11.25,0.75 Z M8.25,10.5 L9.75,10.5 L9.75,6 L8.25,6 L8.25,10.5 L8.25,10.5 Z M14.2725,5.5425 L15.3375,4.4775 C15.015,4.095 14.6625,3.735 14.28,3.42 L13.215,4.485 C12.0525,3.555 10.59,3 9,3 C5.2725,3 2.25,6.0225 2.25,9.75 C2.25,13.4775 5.265,16.5 9,16.5 C12.735,16.5 15.75,13.4775 15.75,9.75 C15.75,8.16 15.195,6.6975 14.2725,5.5425 L14.2725,5.5425 Z M9,15 C6.0975,15 3.75,12.6525 3.75,9.75 C3.75,6.8475 6.0975,4.5 9,4.5 C11.9025,4.5 14.25,6.8475 14.25,9.75 C14.25,12.6525 11.9025,15 9,15 L9,15 Z","id","Shape","fill","#000"],["id","8:46","font-family","NotoSans-Bold, Noto Sans","font-size","14","font-weight","bold","fill","#000"],["x","22","y","15"],["width","36","height","37","xmlns","http://www.w3.org/2000/svg"],["x1","18%","y1","0%","x2","83.101%","y2","100%","id","a"],["stop-color","#024F9D","offset","0%"],["stop-color","#024F9D","offset","100%"],["fill","none","fill-rule","evenodd"],["d","M0 .853h36v36H0z"],["d","M18 7.5v-6L10.5 9l7.5 7.5v-6c4.965 0 9 4.035 9 9s-4.035 9-9 9-9-4.035-9-9H6c0 6.63 5.37 12 12 12s12-5.37 12-12-5.37-12-12-12z","fill","#ccc","transform","translate(0 .853)"],["d","M18 7.5v-6L10.5 9l7.5 7.5v-6c4.965 0 9 4.035 9 9s-4.035 9-9 9-9-4.035-9-9H6c0 6.63 5.37 12 12 12s12-5.37 12-12-5.37-12-12-12z","fill","url(#a)","transform","translate(0 .853)"],["tabindex","0",1,"exit-section",3,"click"],["xmlns","http://www.w3.org/2000/svg","width","36","height","36"],["x1","0%","y1","0%","x2","101.72%","y2","100%","id","a"],["d","M0 0h36v36H0z"],["d","M15.135 23.385L17.25 25.5l7.5-7.5-7.5-7.5-2.115 2.115 3.87 3.885H4.5v3h14.505l-3.87 3.885zM28.5 4.5h-21a3 3 0 00-3 3v6h3v-6h21v21h-21v-6h-3v6a3 3 0 003 3h21c1.65 0 3-1.35 3-3v-21c0-1.65-1.35-3-3-3z","fill","url(#a)"],[1,"next"],["aria-label","Next content",1,"next-level",3,"click"],["tabindex","0",1,"title-text"],[1,"next-arrow"],["src","assets/next-arrow.svg","alt","next arrow"]],template:function(A,te){1&A&&(t.F$t(),t.TgZ(0,"div",0)(1,"div",1)(2,"div",2),t.O4$(),t.TgZ(3,"svg",3)(4,"defs")(5,"filter",4),t._UZ(6,"feColorMatrix",5),t.qZA(),t.TgZ(7,"linearGradient",6),t._UZ(8,"stop",7)(9,"stop",8),t.qZA(),t.TgZ(10,"linearGradient",9),t._UZ(11,"stop",10)(12,"stop",11),t.qZA(),t._UZ(13,"path",12),t.TgZ(14,"filter",13),t._UZ(15,"feGaussianBlur",14)(16,"feOffset",15)(17,"feComposite",16)(18,"feColorMatrix",17),t.qZA(),t.TgZ(19,"linearGradient",18),t._UZ(20,"stop",19)(21,"stop",20),t.qZA(),t.YNc(22,Ct,5,2,"text",21),t.qZA(),t.TgZ(23,"g",22)(24,"g",23)(25,"g",24)(26,"g",25)(27,"g",26),t._UZ(28,"path",27)(29,"path",28)(30,"path",29)(31,"path",30)(32,"path",31)(33,"path",32)(34,"path",33)(35,"path",34)(36,"path",35)(37,"path",36)(38,"path",37)(39,"path",38)(40,"path",39)(41,"path",40)(42,"path",41)(43,"path",42)(44,"path",43)(45,"path",44)(46,"path",45)(47,"path",46)(48,"path",47)(49,"path",48)(50,"path",49)(51,"path",50)(52,"path",51)(53,"path",52)(54,"path",53)(55,"path",54)(56,"path",55)(57,"path",56)(58,"path",57)(59,"path",58)(60,"path",59)(61,"path",60)(62,"path",61)(63,"path",62)(64,"path",63)(65,"path",64)(66,"path",65)(67,"path",66)(68,"path",67)(69,"path",68)(70,"path",69)(71,"path",70)(72,"path",71)(73,"path",72)(74,"path",73)(75,"path",74)(76,"path",75)(77,"path",76)(78,"path",77)(79,"path",78)(80,"path",79)(81,"path",80)(82,"path",81)(83,"path",82)(84,"path",83)(85,"path",84)(86,"path",85)(87,"path",86)(88,"path",87)(89,"path",88)(90,"path",89)(91,"path",90)(92,"path",91)(93,"path",92)(94,"path",93)(95,"path",94)(96,"path",95)(97,"path",96)(98,"path",97)(99,"path",98)(100,"path",99)(101,"path",100)(102,"path",101)(103,"path",102)(104,"path",103)(105,"path",104)(106,"path",105)(107,"path",106)(108,"path",107)(109,"path",108)(110,"path",109)(111,"path",110)(112,"path",111)(113,"path",112)(114,"path",113)(115,"path",114)(116,"path",115)(117,"path",116)(118,"path",117)(119,"path",118)(120,"path",119)(121,"path",120)(122,"path",121)(123,"path",122)(124,"path",123)(125,"path",124)(126,"path",125)(127,"path",126)(128,"path",127)(129,"path",128)(130,"path",129)(131,"path",130)(132,"path",131)(133,"path",132)(134,"path",133)(135,"path",134)(136,"path",135)(137,"path",136)(138,"path",137)(139,"path",138)(140,"path",139)(141,"path",140)(142,"path",141)(143,"path",142)(144,"path",143)(145,"path",144)(146,"path",145)(147,"path",146)(148,"path",147)(149,"path",148)(150,"path",149)(151,"path",150)(152,"path",151)(153,"path",152)(154,"path",153)(155,"path",154)(156,"path",155)(157,"path",156)(158,"path",157)(159,"path",158)(160,"path",159)(161,"path",160)(162,"path",161)(163,"path",162)(164,"path",163)(165,"path",164)(166,"path",165)(167,"path",166)(168,"path",167)(169,"path",168)(170,"path",169)(171,"path",170)(172,"path",171)(173,"path",172)(174,"path",173)(175,"path",174)(176,"path",175)(177,"path",176)(178,"path",177)(179,"path",178)(180,"path",179)(181,"path",180)(182,"path",181)(183,"path",182)(184,"path",183)(185,"polygon",184)(186,"polygon",185)(187,"polygon",186)(188,"polygon",187)(189,"polygon",188)(190,"polyline",189)(191,"polyline",190)(192,"polyline",191)(193,"path",192)(194,"path",193)(195,"path",194)(196,"path",195)(197,"path",196)(198,"path",197),t.qZA()(),t.TgZ(199,"g",198)(200,"g",199),t._UZ(201,"path",200)(202,"path",201),t.TgZ(203,"g",202),t._UZ(204,"use",203)(205,"path",204),t.qZA(),t._UZ(206,"path",205)(207,"path",206),t.TgZ(208,"g",207)(209,"g",208)(210,"g",209),t._UZ(211,"use",210)(212,"use",211),t.qZA(),t.TgZ(213,"g",212),t._UZ(214,"use",213)(215,"use",214),t.qZA()()(),t._UZ(216,"path",215),t.TgZ(217,"foreignObject",216),t.kcU(),t.TgZ(218,"div",217),t._uU(219),t.qZA()(),t.YNc(220,cn,7,1,"g",218),t.qZA()()()()()()()(),t.TgZ(221,"div",219)(222,"div",220)(223,"div",221),t._uU(224,"You just completed"),t.qZA(),t.TgZ(225,"span",222),t._uU(226),t.qZA(),t.Hsn(227),t.qZA(),t.TgZ(228,"div",223)(229,"div",224),t.NdJ("click",function(){return te.replay()}),t.TgZ(230,"div"),t.YNc(231,Hn,8,0,"svg",225),t.YNc(232,Kn,8,0,"svg",225),t.qZA(),t.TgZ(233,"div",226),t._uU(234,"Replay"),t.qZA()(),t.YNc(235,Yn,11,0,"div",227),t.qZA(),t.YNc(236,Ki,8,1,"ng-container",228),t.qZA()()),2&A&&(t.xp6(22),t.Q6J("ngIf",te.outcome),t.xp6(197),t.hij(" ",te.userName," "),t.xp6(1),t.Q6J("ngIf",te.timeSpentLabel),t.xp6(6),t.Oqu(te.contentName),t.xp6(3),t.Q6J("ngClass",te.showReplay?"":"disabled"),t.xp6(2),t.Q6J("ngIf",!te.showReplay),t.xp6(1),t.Q6J("ngIf",te.showReplay),t.xp6(3),t.Q6J("ngIf",te.showExit),t.xp6(1),t.Q6J("ngIf",te.nextContent))},dependencies:[C.mk,C.O5],styles:[':root{--sdk-end-page-title:#000;--sdk-end-page-replay-icon:#024f9d;--sdk-end-page-replay-section-bg:#fff;--sdk-end-page-title-span:#666666;--sdk-end-page-replay-section-hover:#F2F2F2}[_nghost-%COMP%] .player-endpage[_ngcontent-%COMP%]{padding:1rem;height:100%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;justify-content:space-around;background:var(--sdk-end-page-replay-section-bg)}@media all and (orientation:portrait){[_nghost-%COMP%] .player-endpage[_ngcontent-%COMP%]{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;display:block;overflow-y:auto}}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%]{text-align:center;-webkit-box-flex:50%;flex:50%}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%]{position:relative;padding:1.5rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .badge[_ngcontent-%COMP%]{width:17.625rem;height:13.1rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%]{position:absolute;left:0;right:0;bottom:5rem;color:var(--white);text-shadow:.063 .125 #8b2925;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%] .progress[_ngcontent-%COMP%]{font-size:.85rem;margin-right:.7rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%] .score[_ngcontent-%COMP%]{font-size:1.3rem;font-weight:700}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%]{position:absolute;left:0;right:0;top:2.8rem;width:8.5rem;margin:0 auto}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%] .user[_ngcontent-%COMP%]{width:1.275rem;height:1.275rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%] .user-title[_ngcontent-%COMP%]{color:var(--primary-color);font-size:.85rem;line-height:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%]{position:absolute;bottom:2.75rem;left:0;right:0;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%] .timer[_ngcontent-%COMP%]{width:1.275rem;height:1.275rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{color:var(--primary-color);font-size:1rem;font-weight:700;margin-left:.3rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%]{-webkit-box-flex:50%;flex:50%;text-align:center;padding:1rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .title-section[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:var(--sdk-end-page-title);font-size:1.3125rem;font-weight:700;letter-spacing:0;line-height:1.75rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .title-section[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{color:var(--sdk-end-page-title-span);font-size:.75rem;word-break:break-word}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%]{display:-webkit-box;display:flex;justify-content:space-around;padding:1.7rem 0}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:var(--gray-800);font-size:1rem;line-height:1.188rem;text-align:center}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:2.55rem;height:2.55rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next[_ngcontent-%COMP%]{color:var(--gray-400);font-size:.85rem;line-height:1.063rem;margin-bottom:.7rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%]{margin:0 auto;width:auto;border-radius:.5rem;padding:.75rem;background:linear-gradient(135deg,#ffcd55 0,#ffd955 100%);box-shadow:inset 0 -.063rem .188rem 0 rgba(var(--rc-rgba-black),.5);display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:justify;justify-content:space-between;cursor:pointer}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .title-text[_ngcontent-%COMP%]{color:var(--gray-800);font-size:.85rem;-webkit-box-flex:1;flex:1;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;display:-webkit-box;-webkit-box-orient:vertical;line-height:normal}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .next-arrow[_ngcontent-%COMP%]{height:2.55rem;width:2.55rem;background-color:var(--white);border-radius:50%;text-align:center;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;cursor:pointer}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .next-arrow[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:1.75rem}.exit-section[_ngcontent-%COMP%], .replay-section[_ngcontent-%COMP%]{cursor:pointer;background-color:var(--sdk-end-page-replay-section-bg);padding:.5rem;border-radius:.25rem}.exit-section[_ngcontent-%COMP%]:hover, .replay-section[_ngcontent-%COMP%]:hover{background-color:var(--sdk-end-page-replay-section-hover)}.replay-section[_ngcontent-%COMP%] div[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] g[_ngcontent-%COMP%] path[_ngcontent-%COMP%]{fill:var(--sdk-end-page-replay-icon)}.replay-section[_ngcontent-%COMP%] div[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] g[_ngcontent-%COMP%] path[_ngcontent-%COMP%]:first-child{fill:transparent}.replay-section.disabled[_ngcontent-%COMP%]{cursor:not-allowed}.replay-section.disabled[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:#ccc!important}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-1.25rem);transform:translateY(-1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-1.25rem);transform:translateY(-1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(1.25rem);transform:translateY(1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(1.25rem);transform:translateY(1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeftSide{0%{opacity:0;-webkit-transform:translateX(6.25rem);transform:translateX(6.25rem)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftSide{0%{opacity:0;opacity:0;-webkit-transform:translateX(-6.25rem);transform:translateX(-6.25rem)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInDown[_ngcontent-%COMP%]{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.fadeInUp[_ngcontent-%COMP%]{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.fadeInLeftSide[_ngcontent-%COMP%], .fadeInRightSide[_ngcontent-%COMP%]{-webkit-animation-name:fadeInLeftSide;animation-name:fadeInLeftSide}.animated[_ngcontent-%COMP%]{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.truncate-overflow[_ngcontent-%COMP%]{--lh:1.4rem;line-height:var(--lh);--max-lines:1;position:relative;max-height:calc(var(--lh) * var(--max-lines));overflow:hidden;width:100%;font-size:.65rem;color:var(--black)}.truncate-overflow[_ngcontent-%COMP%]::before{position:absolute;content:"";bottom:0;right:0}.truncate-overflow[_ngcontent-%COMP%]::after{content:"";position:absolute;right:0;width:1rem;height:1rem;background:var(--white)}.particles[_ngcontent-%COMP%] path[_ngcontent-%COMP%]{-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-transform-origin:center;transform-origin:center;-webkit-animation:3s ease-in-out infinite both heartbeat;animation:3s ease-in-out infinite both heartbeat;fill:#e55b28;opacity:.4}.badge-inner-animation[_ngcontent-%COMP%]{-webkit-animation:5s ease-in-out infinite both heartbeat;animation:5s ease-in-out infinite both heartbeat;-webkit-transform-origin:center center;transform-origin:center center}@-webkit-keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}']}),Ka.propDecorators={showExit:[{type:t.IIB}],showReplay:[{type:t.IIB}],contentName:[{type:t.IIB}],outcome:[{type:t.IIB}],outcomeLabel:[{type:t.IIB}],userName:[{type:t.IIB}],timeSpentLabel:[{type:t.IIB}],nextContent:[{type:t.IIB}],replayContent:[{type:t.r_U}],exitContent:[{type:t.r_U}],playNextContent:[{type:t.r_U}]};class ra{constructor(){this.sidebarMenuEvent=new t.vpe}toggleMenu(A){const te=document.getElementById("overlay-input"),ve=document.querySelector(".navBlock"),Ae=document.getElementById("playerSideMenu"),tt=document.getElementById("ariaLabelValue"),tn=document.getElementById("overlay-button");A instanceof KeyboardEvent&&(te.checked=!te.checked),te.checked?(Ae.style.visibility="visible",tt.innerHTML="Player Menu Close",tn.setAttribute("aria-label","Player Menu Close"),ve.style.width="100%",ve.style.marginLeft="0%",this.sidebarMenuEvent.emit({event:A,type:"OPEN_MENU"})):(Ae.style.visibility="hidden",tt.innerHTML="Player Menu Open",tn.setAttribute("aria-label","Player Menu Open"),ve.style.marginLeft="-100%",this.sidebarMenuEvent.emit({event:A,type:"CLOSE_MENU"}))}}ra.\u0275fac=function(A){return new(A||ra)},ra.\u0275cmp=t.Xpm({type:ra,selectors:[["sb-player-side-menu-icon"]],outputs:{sidebarMenuEvent:"sidebarMenuEvent"},decls:5,vars:0,consts:[["type","checkbox","id","overlay-input",3,"click"],["aria-label","Player Menu Open","for","overlay-input","id","overlay-button","tabindex","0",3,"keydown.enter"],["id","ariaLabelValue"]],template:function(A,te){1&A&&(t.TgZ(0,"input",0),t.NdJ("click",function(Ae){return te.toggleMenu(Ae)}),t.qZA(),t.TgZ(1,"label",1),t.NdJ("keydown.enter",function(Ae){return te.toggleMenu(Ae)}),t._UZ(2,"span"),t.TgZ(3,"em",2),t._uU(4,"Player Menu Open"),t.qZA()())},styles:[':root{--sdk-overlay-btn-hover:#333332}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]{z-index:10;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin:0;position:absolute;top:.4rem;left:1rem;height:2.25rem;width:2.25rem;border-radius:50%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;-webkit-transition:.3s ease-in-out;transition:.3s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{height:.2rem;width:1.25rem;border-radius:.125rem;background-color:var(--black);position:relative;display:block;-webkit-transition:.2s ease-in-out;transition:.2s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{top:-.45rem;visibility:visible}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after{top:.45rem}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{height:.2rem;width:1.25rem;border-radius:.125rem;background-color:var(--black);position:absolute;content:"";-webkit-transition:.2s ease-in-out;transition:.2s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%], [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]:after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]:before{background:var(--sdk-overlay-btn-hover)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover{background-color:rgba(var(--rc-rgba-black),.75)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]{background-color:var(--white)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]::after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]::before{background-color:var(--white)}input[type=checkbox][_ngcontent-%COMP%]{display:none}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay[_ngcontent-%COMP%]{visibility:visible}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%], input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]{background:0 0}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{-webkit-transform:rotate(45deg) translate(.3125rem,.3125rem);transform:rotate(45deg) translate(.3125rem,.3125rem);opacity:1}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after{-webkit-transform:rotate(-45deg) translate(.3125rem,-.3125rem);transform:rotate(-45deg) translate(.3125rem,-.3125rem)} html[dir=rtl] #overlay-button{left:auto;right:1rem} html[dir=rtl] #overlay-button span:after, html[dir=rtl] #overlay-button span:before{right:0}#ariaLabelValue[_ngcontent-%COMP%]{position:absolute;opacity:0}']}),ra.propDecorators={sidebarMenuEvent:[{type:t.r_U}]};class _a{constructor(A){this.ref=A,this.config={showShare:!1,showDownload:!1,showReplay:!1,showExit:!1,showPrint:!1},this.sidebarEvent=new t.vpe,this.toggleMenu=new t.vpe,this.showDownloadPopUp=!1}closeNav(A){const te=document.getElementById("ariaLabelValue"),ve=document.getElementById("overlay-button"),Ae=document.getElementById("overlay-input");te.innerHTML="Player Menu Open",ve.setAttribute("aria-label","Player Menu Open"),Ae.checked=!1,document.getElementById("playerSideMenu").style.visibility="hidden",document.querySelector(".navBlock").style.marginLeft="-100%",this.sidebarEvent.emit({event:A,type:"CLOSE_MENU"})}showDownloadPopup(A,te){this.showDownloadPopUp=!0,this.ref.detectChanges(),this.emitSideBarEvent(A,te)}hideDownloadPopUp(A){this.showDownloadPopUp=!1,this.sidebarEvent.emit(A),this.ref.detectChanges()}emitSideBarEvent(A,te){this.sidebarEvent.emit({event:A,type:te})}}_a.\u0275fac=function(A){return new(A||_a)(t.Y36(t.sBO))},_a.\u0275cmp=t.Xpm({type:_a,selectors:[["sb-player-sidebar"]],inputs:{config:"config",title:"title"},outputs:{sidebarEvent:"sidebarEvent",toggleMenu:"toggleMenu"},decls:12,vars:6,consts:[["id","playerSideMenu","aria-modal","true","aria-labelledby","Menubar",1,"sidenav"],["sidebarMenu",""],[1,"navBlock"],["role","heading","aria-level","2",1,"player-nav-unit","text-left"],["aria-label","player sidebar","id","sidebar-list"],["tabindex","0",3,"click","keydown.enter",4,"ngIf"],["aria-hidden","true","tabindex","-1",1,"transparentBlock",3,"click"],[3,"title","showDownloadPopUp","hideDownloadPopUp","downloadEvent",4,"ngIf"],["tabindex","0",3,"click","keydown.enter"],[1,"player-icon","player-share","mr-16"],[1,"player-icon","player-download","mr-16"],[1,"player-icon","player-print","mr-16"],[1,"player-icon","player-exit","mr-16"],[3,"title","showDownloadPopUp","hideDownloadPopUp","downloadEvent"]],template:function(A,te){1&A&&(t.TgZ(0,"div",0,1)(2,"div",2)(3,"div",3),t._uU(4),t.qZA(),t.TgZ(5,"ul",4),t.YNc(6,kr,3,0,"li",5),t.YNc(7,Da,3,0,"li",5),t.YNc(8,tr,3,0,"li",5),t.YNc(9,Jn,3,0,"li",5),t.qZA()(),t.TgZ(10,"div",6),t.NdJ("click",function(Ae){return te.closeNav(Ae)}),t.qZA()(),t.YNc(11,po,1,2,"sb-player-download-popup",7)),2&A&&(t.xp6(4),t.Oqu(te.title),t.xp6(2),t.Q6J("ngIf",te.config.showShare),t.xp6(1),t.Q6J("ngIf",te.config.showDownload),t.xp6(1),t.Q6J("ngIf",te.config.showPrint),t.xp6(1),t.Q6J("ngIf",te.config.showExit),t.xp6(2),t.Q6J("ngIf",te.showDownloadPopUp))},dependencies:[C.O5,vs],styles:[":root{--sdk-player-icon:#6D7278}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%]{width:100%;position:absolute;top:0;left:0;overflow-x:hidden;display:-webkit-box;display:flex;z-index:9;height:100%}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{text-decoration:none;font-size:1.5rem;color:var(--black);display:block}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{color:var(--gray-0)}@media screen and (max-height:1024px){[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%]{padding-top:0}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{font-size:1.125rem}}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] .closebtn[_ngcontent-%COMP%]{position:absolute;top:0;right:1.5rem;font-size:2.25rem;margin-left:3.125rem}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%]{width:100%;background:var(--white);max-width:20rem;-webkit-transition:.3s ease-in;transition:.3s ease-in;margin-left:-100%;z-index:10;position:absolute;height:100%}@media (min-width:1600px){.PlayerMediaQueryClass [_nghost-%COMP%] .navBlock[_ngcontent-%COMP%]{max-width:24rem}}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] .player-nav-unit[_ngcontent-%COMP%]{background:var(--primary-theme);padding:3rem 2rem 2rem;min-height:5.625rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;color:var(--gray-800);font-size:1rem;font-weight:700;line-height:normal;word-break:break-word}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{margin:0;padding:0}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{padding:1rem 2rem;background:var(--white);min-height:4rem;cursor:pointer;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;color:rgba(var(--rc-rgba-black),1);font-size:.875rem;line-height:1.375rem;margin:0;line-height:normal}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover{background-color:var(--gray-0)}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .player-icon[_ngcontent-%COMP%]{width:1.5rem;height:1.5rem;background-color:var(--sdk-player-icon)}[_nghost-%COMP%] #playerSideMenu[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .player-replay[_ngcontent-%COMP%]{display:inline;padding:8px}[_nghost-%COMP%] .transparentBlock[_ngcontent-%COMP%]{width:100%;background-color:rgba(var(--rc-rgba-black),.5);height:100%;-webkit-transition:.3s;transition:.3s}[_nghost-%COMP%] .player-share[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik00MDYsMzMyYy0yOS42NDEsMC01NS43NjEsMTQuNTgxLTcyLjE2NywzNi43NTVMMTkxLjk5LDI5Ni4xMjRjMi4zNTUtOC4wMjcsNC4wMS0xNi4zNDYsNC4wMS0yNS4xMjQNCgkJCWMwLTExLjkwNi0yLjQ0MS0yMy4yMjUtNi42NTgtMzMuNjM2bDE0OC40NDUtODkuMzI4QzM1NC4zMDcsMTY3LjQyNCwzNzguNTg5LDE4MCw0MDYsMTgwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJYzAtNDkuNjI5LTQwLjM3MS05MC05MC05MGMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsMTEuNDM3LDIuMzU1LDIyLjI4Niw2LjI2MiwzMi4zNThsLTE0OC44ODcsODkuNTkNCgkJCUMxNTYuODY5LDE5My4xMzYsMTMyLjkzNywxODEsMTA2LDE4MWMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsNDkuNjI5LDQwLjM3MSw5MCw5MCw5MGMzMC4xMywwLDU2LjY5MS0xNS4wMDksNzMuMDM1LTM3LjgwNg0KCQkJbDE0MS4zNzYsNzIuMzk1QzMxNy44MDcsNDAzLjk5NSwzMTYsNDEyLjc1LDMxNiw0MjJjMCw0OS42MjksNDAuMzcxLDkwLDkwLDkwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJQzQ5NiwzNzIuMzcxLDQ1NS42MjksMzMyLDQwNiwzMzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik00MDYsMzMyYy0yOS42NDEsMC01NS43NjEsMTQuNTgxLTcyLjE2NywzNi43NTVMMTkxLjk5LDI5Ni4xMjRjMi4zNTUtOC4wMjcsNC4wMS0xNi4zNDYsNC4wMS0yNS4xMjQNCgkJCWMwLTExLjkwNi0yLjQ0MS0yMy4yMjUtNi42NTgtMzMuNjM2bDE0OC40NDUtODkuMzI4QzM1NC4zMDcsMTY3LjQyNCwzNzguNTg5LDE4MCw0MDYsMTgwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJYzAtNDkuNjI5LTQwLjM3MS05MC05MC05MGMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsMTEuNDM3LDIuMzU1LDIyLjI4Niw2LjI2MiwzMi4zNThsLTE0OC44ODcsODkuNTkNCgkJCUMxNTYuODY5LDE5My4xMzYsMTMyLjkzNywxODEsMTA2LDE4MWMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsNDkuNjI5LDQwLjM3MSw5MCw5MCw5MGMzMC4xMywwLDU2LjY5MS0xNS4wMDksNzMuMDM1LTM3LjgwNg0KCQkJbDE0MS4zNzYsNzIuMzk1QzMxNy44MDcsNDAzLjk5NSwzMTYsNDEyLjc1LDMxNiw0MjJjMCw0OS42MjksNDAuMzcxLDkwLDkwLDkwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJQzQ5NiwzNzIuMzcxLDQ1NS42MjksMzMyLDQwNiwzMzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)}[_nghost-%COMP%] .player-exit[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzg0IDM4NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzg0IDM4NDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxnPg0KCQkJPHBhdGggZD0iTTM0MS4zMzMsMEg0Mi42NjdDMTkuMDkzLDAsMCwxOS4wOTMsMCw0Mi42NjdWMTI4aDQyLjY2N1Y0Mi42NjdoMjk4LjY2N3YyOTguNjY3SDQyLjY2N1YyNTZIMHY4NS4zMzMNCgkJCQlDMCwzNjQuOTA3LDE5LjA5MywzODQsNDIuNjY3LDM4NGgyOTguNjY3QzM2NC45MDcsMzg0LDM4NCwzNjQuOTA3LDM4NCwzNDEuMzMzVjQyLjY2N0MzODQsMTkuMDkzLDM2NC45MDcsMCwzNDEuMzMzLDB6Ii8+DQoJCQk8cG9seWdvbiBwb2ludHM9IjE1MS4xNDcsMjY4LjQ4IDE4MS4zMzMsMjk4LjY2NyAyODgsMTkyIDE4MS4zMzMsODUuMzMzIDE1MS4xNDcsMTE1LjUyIDIwNi4yOTMsMTcwLjY2NyAwLDE3MC42NjcgMCwyMTMuMzMzIA0KCQkJCTIwNi4yOTMsMjEzLjMzMyAJCQkiLz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzg0IDM4NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzg0IDM4NDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxnPg0KCQkJPHBhdGggZD0iTTM0MS4zMzMsMEg0Mi42NjdDMTkuMDkzLDAsMCwxOS4wOTMsMCw0Mi42NjdWMTI4aDQyLjY2N1Y0Mi42NjdoMjk4LjY2N3YyOTguNjY3SDQyLjY2N1YyNTZIMHY4NS4zMzMNCgkJCQlDMCwzNjQuOTA3LDE5LjA5MywzODQsNDIuNjY3LDM4NGgyOTguNjY3QzM2NC45MDcsMzg0LDM4NCwzNjQuOTA3LDM4NCwzNDEuMzMzVjQyLjY2N0MzODQsMTkuMDkzLDM2NC45MDcsMCwzNDEuMzMzLDB6Ii8+DQoJCQk8cG9seWdvbiBwb2ludHM9IjE1MS4xNDcsMjY4LjQ4IDE4MS4zMzMsMjk4LjY2NyAyODgsMTkyIDE4MS4zMzMsODUuMzMzIDE1MS4xNDcsMTE1LjUyIDIwNi4yOTMsMTcwLjY2NyAwLDE3MC42NjcgMCwyMTMuMzMzIA0KCQkJCTIwNi4yOTMsMjEzLjMzMyAJCQkiLz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K)}[_nghost-%COMP%] .player-print[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNfcHJpbnQgY29weTwvdGl0bGU+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iSWNvbi0yNHB4Ij4KICAgICAgICAgICAgPHBhdGggZD0iTTE5LDggTDUsOCBDMy4zNCw4IDIsOS4zNCAyLDExIEwyLDE3IEw2LDE3IEw2LDIxIEwxOCwyMSBMMTgsMTcgTDIyLDE3IEwyMiwxMSBDMjIsOS4zNCAyMC42Niw4IDE5LDggTDE5LDggWiBNMTYsMTkgTDgsMTkgTDgsMTQgTDE2LDE0IEwxNiwxOSBMMTYsMTkgWiBNMTksMTIgQzE4LjQ1LDEyIDE4LDExLjU1IDE4LDExIEMxOCwxMC40NSAxOC40NSwxMCAxOSwxMCBDMTkuNTUsMTAgMjAsMTAuNDUgMjAsMTEgQzIwLDExLjU1IDE5LjU1LDEyIDE5LDEyIEwxOSwxMiBaIE0xOCwzIEw2LDMgTDYsNyBMMTgsNyBMMTgsMyBMMTgsMyBaIiBpZD0iU2hhcGUiIGZpbGw9IiM2RDcyNzgiPjwvcGF0aD4KICAgICAgICAgICAgPHBvbHlnb24gaWQ9IlNoYXBlIiBwb2ludHM9IjAgMCAyNCAwIDI0IDI0IDAgMjQiPjwvcG9seWdvbj4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNfcHJpbnQgY29weTwvdGl0bGU+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iSWNvbi0yNHB4Ij4KICAgICAgICAgICAgPHBhdGggZD0iTTE5LDggTDUsOCBDMy4zNCw4IDIsOS4zNCAyLDExIEwyLDE3IEw2LDE3IEw2LDIxIEwxOCwyMSBMMTgsMTcgTDIyLDE3IEwyMiwxMSBDMjIsOS4zNCAyMC42Niw4IDE5LDggTDE5LDggWiBNMTYsMTkgTDgsMTkgTDgsMTQgTDE2LDE0IEwxNiwxOSBMMTYsMTkgWiBNMTksMTIgQzE4LjQ1LDEyIDE4LDExLjU1IDE4LDExIEMxOCwxMC40NSAxOC40NSwxMCAxOSwxMCBDMTkuNTUsMTAgMjAsMTAuNDUgMjAsMTEgQzIwLDExLjU1IDE5LjU1LDEyIDE5LDEyIEwxOSwxMiBaIE0xOCwzIEw2LDMgTDYsNyBMMTgsNyBMMTgsMyBMMTgsMyBaIiBpZD0iU2hhcGUiIGZpbGw9IiM2RDcyNzgiPjwvcGF0aD4KICAgICAgICAgICAgPHBvbHlnb24gaWQ9IlNoYXBlIiBwb2ludHM9IjAgMCAyNCAwIDI0IDI0IDAgMjQiPjwvcG9seWdvbj4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==)}[_nghost-%COMP%] .player-download[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik0zODIuNTYsMjMzLjM3NkMzNzkuOTY4LDIyNy42NDgsMzc0LjI3MiwyMjQsMzY4LDIyNGgtNjRWMTZjMC04LjgzMi03LjE2OC0xNi0xNi0xNmgtNjRjLTguODMyLDAtMTYsNy4xNjgtMTYsMTZ2MjA4aC02NA0KCQkJYy02LjI3MiwwLTExLjk2OCwzLjY4LTE0LjU2LDkuMzc2Yy0yLjYyNCw1LjcyOC0xLjYsMTIuNDE2LDIuNTI4LDE3LjE1MmwxMTIsMTI4YzMuMDQsMy40ODgsNy40MjQsNS40NzIsMTIuMDMyLDUuNDcyDQoJCQljNC42MDgsMCw4Ljk5Mi0yLjAxNiwxMi4wMzItNS40NzJsMTEyLTEyOEMzODQuMTkyLDI0NS44MjQsMzg1LjE1MiwyMzkuMTA0LDM4Mi41NiwyMzMuMzc2eiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNNDMyLDM1MnY5Nkg4MHYtOTZIMTZ2MTI4YzAsMTcuNjk2LDE0LjMzNiwzMiwzMiwzMmg0MTZjMTcuNjk2LDAsMzItMTQuMzA0LDMyLTMyVjM1Mkg0MzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik0zODIuNTYsMjMzLjM3NkMzNzkuOTY4LDIyNy42NDgsMzc0LjI3MiwyMjQsMzY4LDIyNGgtNjRWMTZjMC04LjgzMi03LjE2OC0xNi0xNi0xNmgtNjRjLTguODMyLDAtMTYsNy4xNjgtMTYsMTZ2MjA4aC02NA0KCQkJYy02LjI3MiwwLTExLjk2OCwzLjY4LTE0LjU2LDkuMzc2Yy0yLjYyNCw1LjcyOC0xLjYsMTIuNDE2LDIuNTI4LDE3LjE1MmwxMTIsMTI4YzMuMDQsMy40ODgsNy40MjQsNS40NzIsMTIuMDMyLDUuNDcyDQoJCQljNC42MDgsMCw4Ljk5Mi0yLjAxNiwxMi4wMzItNS40NzJsMTEyLTEyOEMzODQuMTkyLDI0NS44MjQsMzg1LjE1MiwyMzkuMTA0LDM4Mi41NiwyMzMuMzc2eiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNNDMyLDM1MnY5Nkg4MHYtOTZIMTZ2MTI4YzAsMTcuNjk2LDE0LjMzNiwzMiwzMiwzMmg0MTZjMTcuNjk2LDAsMzItMTQuMzA0LDMyLTMyVjM1Mkg0MzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)}"]}),_a.ctorParameters=()=>[{type:t.sBO}],_a.propDecorators={title:[{type:t.IIB}],config:[{type:t.IIB}],sidebarEvent:[{type:t.r_U}],toggleMenu:[{type:t.r_U}]};class oa{constructor(){this.progress=0}ngOnChanges(A){A.progress&&A.progress.currentValue&&(this.progress=A.progress.currentValue)}}oa.\u0275fac=function(A){return new(A||oa)},oa.\u0275cmp=t.Xpm({type:oa,selectors:[["sb-player-start-page"]],inputs:{progress:"progress",title:"title"},features:[t.TTD],decls:10,vars:7,consts:[[1,"sb-player-splash-container",3,"ngClass"],[1,"sb-player-splash-container__header"],[1,"sb-player-splash-container__body","animated","fadeInDown"],[1,""],[1,"sb-player-splash-container__footer"],[1,"loading-text"],[1,"bg"],[1,"el"]],template:function(A,te){1&A&&(t.TgZ(0,"div",0),t._UZ(1,"div",1),t.TgZ(2,"div",2)(3,"span",3),t._uU(4),t.qZA()(),t.TgZ(5,"div",4)(6,"div",5),t._uU(7),t.qZA(),t.TgZ(8,"div",6),t._UZ(9,"div",7),t.qZA()()()),2&A&&(t.Q6J("ngClass",t.VKq(5,Wa,100===te.progress)),t.xp6(4),t.Oqu(te.title),t.xp6(3),t.hij("Loading... ",te.progress,"%"),t.xp6(2),t.Udp("width",te.progress+"%"))},dependencies:[C.mk],styles:['.sb-player-splash-container[_ngcontent-%COMP%]{box-sizing:border-box;padding:1rem;height:100%;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-align:center;align-items:center;-webkit-box-pack:justify;justify-content:space-between;opacity:1;background:var(--primary-theme);-webkit-transition:.3s ease-in;transition:.3s ease-in}.sb-player-splash-container.animateBg[_ngcontent-%COMP%]{opacity:0}.sb-player-splash-container__body[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;text-align:center;color:var(--gray-800);letter-spacing:0}.sb-player-splash-container__body[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{font-size:1.5rem;font-weight:700;letter-spacing:0;line-height:normal;word-break:break-word}.sb-player-splash-container__footer[_ngcontent-%COMP%]{color:var(--black);font-size:.75rem;line-height:1.25rem;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;width:100%}@-webkit-keyframes loading{0%{width:0}100%{width:100%}}@keyframes loading{0%{width:0}100%{width:100%}}@-webkit-keyframes percentage{1%{content:"1%"}2%{content:"2%"}3%{content:"3%"}4%{content:"4%"}5%{content:"5%"}6%{content:"6%"}7%{content:"7%"}8%{content:"8%"}9%{content:"9%"}10%{content:"10%"}11%{content:"11%"}12%{content:"12%"}13%{content:"13%"}14%{content:"14%"}15%{content:"15%"}16%{content:"16%"}17%{content:"17%"}18%{content:"18%"}19%{content:"19%"}20%{content:"20%"}21%{content:"21%"}22%{content:"22%"}23%{content:"23%"}24%{content:"24%"}25%{content:"25%"}26%{content:"26%"}27%{content:"27%"}28%{content:"28%"}29%{content:"29%"}30%{content:"30%"}31%{content:"31%"}32%{content:"32%"}33%{content:"33%"}34%{content:"34%"}35%{content:"35%"}36%{content:"36%"}37%{content:"37%"}38%{content:"38%"}39%{content:"39%"}40%{content:"40%"}41%{content:"41%"}42%{content:"42%"}43%{content:"43%"}44%{content:"44%"}45%{content:"45%"}46%{content:"46%"}47%{content:"47%"}48%{content:"48%"}49%{content:"49%"}50%{content:"50%"}51%{content:"51%"}52%{content:"52%"}53%{content:"53%"}54%{content:"54%"}55%{content:"55%"}56%{content:"56%"}57%{content:"57%"}58%{content:"58%"}59%{content:"59%"}60%{content:"60%"}61%{content:"61%"}62%{content:"62%"}63%{content:"63%"}64%{content:"64%"}65%{content:"65%"}66%{content:"66%"}67%{content:"67%"}68%{content:"68%"}69%{content:"69%"}70%{content:"70%"}71%{content:"71%"}72%{content:"72%"}73%{content:"73%"}74%{content:"74%"}75%{content:"75%"}76%{content:"76%"}77%{content:"77%"}78%{content:"78%"}79%{content:"79%"}80%{content:"80%"}81%{content:"81%"}82%{content:"82%"}83%{content:"83%"}84%{content:"84%"}85%{content:"85%"}86%{content:"86%"}87%{content:"87%"}88%{content:"88%"}89%{content:"89%"}90%{content:"90%"}91%{content:"91%"}92%{content:"92%"}93%{content:"93%"}94%{content:"94%"}95%{content:"95%"}96%{content:"96%"}97%{content:"97%"}98%{content:"98%"}99%{content:"99%"}100%{content:"100%"}}@keyframes percentage{1%{content:"1%"}2%{content:"2%"}3%{content:"3%"}4%{content:"4%"}5%{content:"5%"}6%{content:"6%"}7%{content:"7%"}8%{content:"8%"}9%{content:"9%"}10%{content:"10%"}11%{content:"11%"}12%{content:"12%"}13%{content:"13%"}14%{content:"14%"}15%{content:"15%"}16%{content:"16%"}17%{content:"17%"}18%{content:"18%"}19%{content:"19%"}20%{content:"20%"}21%{content:"21%"}22%{content:"22%"}23%{content:"23%"}24%{content:"24%"}25%{content:"25%"}26%{content:"26%"}27%{content:"27%"}28%{content:"28%"}29%{content:"29%"}30%{content:"30%"}31%{content:"31%"}32%{content:"32%"}33%{content:"33%"}34%{content:"34%"}35%{content:"35%"}36%{content:"36%"}37%{content:"37%"}38%{content:"38%"}39%{content:"39%"}40%{content:"40%"}41%{content:"41%"}42%{content:"42%"}43%{content:"43%"}44%{content:"44%"}45%{content:"45%"}46%{content:"46%"}47%{content:"47%"}48%{content:"48%"}49%{content:"49%"}50%{content:"50%"}51%{content:"51%"}52%{content:"52%"}53%{content:"53%"}54%{content:"54%"}55%{content:"55%"}56%{content:"56%"}57%{content:"57%"}58%{content:"58%"}59%{content:"59%"}60%{content:"60%"}61%{content:"61%"}62%{content:"62%"}63%{content:"63%"}64%{content:"64%"}65%{content:"65%"}66%{content:"66%"}67%{content:"67%"}68%{content:"68%"}69%{content:"69%"}70%{content:"70%"}71%{content:"71%"}72%{content:"72%"}73%{content:"73%"}74%{content:"74%"}75%{content:"75%"}76%{content:"76%"}77%{content:"77%"}78%{content:"78%"}79%{content:"79%"}80%{content:"80%"}81%{content:"81%"}82%{content:"82%"}83%{content:"83%"}84%{content:"84%"}85%{content:"85%"}86%{content:"86%"}87%{content:"87%"}88%{content:"88%"}89%{content:"89%"}90%{content:"90%"}91%{content:"91%"}92%{content:"92%"}93%{content:"93%"}94%{content:"94%"}95%{content:"95%"}96%{content:"96%"}97%{content:"97%"}98%{content:"98%"}99%{content:"99%"}100%{content:"100%"}}.bg[_ngcontent-%COMP%], .el[_ngcontent-%COMP%]{border-radius:.25rem;height:.5rem}.bg[_ngcontent-%COMP%]{background-color:var(--white)}.el[_ngcontent-%COMP%]{background-color:#f1635d;width:0%;-webkit-transition:.3s;transition:.3s}.loading-text[_ngcontent-%COMP%]{-ms-grid-row-align:center;align-self:center;margin-bottom:.5rem;color:var(--black)}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeftSide{0%{opacity:0;-webkit-transform:translateX(100px);transform:translateX(100px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftSide{0%{opacity:0;opacity:0;-webkit-transform:translateX(-100px);transform:translateX(-100px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInDown[_ngcontent-%COMP%]{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.fadeInUp[_ngcontent-%COMP%]{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.fadeInLeftSide[_ngcontent-%COMP%], .fadeInRightSide[_ngcontent-%COMP%]{-webkit-animation-name:fadeInLeftSide;animation-name:fadeInLeftSide}.animated[_ngcontent-%COMP%]{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}']}),oa.propDecorators={title:[{type:t.IIB}],progress:[{type:t.IIB}]};class o1{constructor(){}ngOnInit(){window.addEventListener("offline",()=>{this.showOfflineAlert=!0,setTimeout(()=>{this.showOfflineAlert=!1},4e3)})}}o1.\u0275fac=function(A){return new(A||o1)},o1.\u0275cmp=t.Xpm({type:o1,selectors:[["sb-player-offline-alert"]],decls:1,vars:1,consts:[["class","offline-container",4,"ngIf"],[1,"offline-container"]],template:function(A,te){1&A&&t.YNc(0,ma,2,0,"div",0),2&A&&t.Q6J("ngIf",te.showOfflineAlert)},dependencies:[C.O5],styles:[":root{--sdk-offline-container:#fff}.offline-container[_ngcontent-%COMP%]{position:absolute;top:0;left:0;right:0;height:3rem;background:var(--tertiary-color);color:var(--sdk-offline-container);width:100%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;z-index:999;-webkit-box-pack:center;justify-content:center;box-shadow:0 0 2px 2px #666;font-size:14px}"]}),o1.ctorParameters=()=>[];class jo{}jo.\u0275fac=function(A){return new(A||jo)},jo.\u0275mod=t.oAB({type:jo}),jo.\u0275inj=t.cJS({imports:[C.ez,F.u5]});class rs{constructor(){this.nextAction=new t.vpe}}rs.\u0275fac=function(A){return new(A||rs)},rs.\u0275cmp=t.Xpm({type:rs,selectors:[["sb-player-next-navigation"]],outputs:{nextAction:"nextAction"},decls:3,vars:0,consts:[["aria-label","navigation-arrows-nextIcon","tabindex","0",1,"navigation-arrows","player-nextIcon","paginate","right","ml-4",3,"click"]],template:function(A,te){1&A&&(t.TgZ(0,"button",0),t.NdJ("click",function(){return te.nextAction.emit({type:"NEXT"})}),t._UZ(1,"i")(2,"i"),t.qZA())},styles:[_o]}),rs.propDecorators={nextAction:[{type:t.r_U}]};class Ca{constructor(){this.previousAction=new t.vpe}}Ca.\u0275fac=function(A){return new(A||Ca)},Ca.\u0275cmp=t.Xpm({type:Ca,selectors:[["sb-player-previous-navigation"]],outputs:{previousAction:"previousAction"},decls:3,vars:0,consts:[["aria-label","navigation-arrows-previousIcon","tabindex","0",1,"navigation-arrows","player-previousIcon","paginate","left",3,"click"]],template:function(A,te){1&A&&(t.TgZ(0,"button",0),t.NdJ("click",function(){return te.previousAction.emit({type:"PREVIOUS"})}),t._UZ(1,"i")(2,"i"),t.qZA())},styles:[_o]}),Ca.propDecorators={previousAction:[{type:t.r_U}]};class k1{constructor(){this.actions=new t.vpe,this._config={rotation:!1,goto:!1,navigation:!1,zoom:!1}}set config(A){this._item=Object.assign(Object.assign({},this._config),A),this._config=this._item}get config(){return this._config}ngOnInit(){this.page=this.pageNumber}ngOnChanges(A){for(const te in A)if(A.hasOwnProperty(te))switch(te){case"pageNumber":this.page=A[te].currentValue,this.pageNumber=A[te].currentValue;break;case"totalPages":this.totalPages=A[te].currentValue}}zoomIn(){this.actions.emit({type:"ZOOM_IN"})}zoomOut(){this.actions.emit({type:"ZOOM_OUT"})}rotateCW(){this.actions.emit({type:"ROTATE_CW"})}gotoPage(){const A=parseInt(this.page,10);A>0&&A<=this.totalPages?(this.actions.emit({type:"NAVIGATE_TO_PAGE",data:A}),this.pageNumber=A):(this.actions.emit({type:"INVALID_PAGE_ERROR",data:A}),this.page=this.pageNumber)}}k1.\u0275fac=function(A){return new(A||k1)},k1.\u0275cmp=t.Xpm({type:k1,selectors:[["sb-player-header"]],inputs:{config:"config",pageNumber:"pageNumber",totalPages:"totalPages"},outputs:{actions:"actions"},features:[t.TTD],decls:7,vars:4,consts:[[1,"sb-player-header"],[1,"sb-player-header__panel","d-flex","flex-ai-center","flex-jc-flex-end"],["class","icon_rotate mr-8",4,"ngIf"],["class","player-zoom-btns d-flex mr-8",4,"ngIf"],["class","player-pagenumber",4,"ngIf"],["class","visible-only-landscape",4,"ngIf"],[1,"icon_rotate","mr-8"],["src","./assets/rotate-icon.svg","alt","rotate icon","tabindex","0","role","button","aria-label","rotate page",1,"rotate-icon",3,"click"],[1,"player-zoom-btns","d-flex","mr-8"],["type","button","tabindex","0","aria-label","zoom out","title","zoom out",1,"player-zoom-btns__zoombtn","zoomOut-btn",3,"click"],["type","button","tabindex","0","aria-label","zoom in","title","zoom in",1,"player-zoom-btns__zoombtn","zoomIn-btn",3,"click"],[1,"player-pagenumber"],["type","number","min","1",1,"page-count",3,"ngModel","max","ngModelChange"],["role","button","aria-label","Go to page","tabindex","0",1,"focus-arrow",3,"click"],["src","./assets/arrow-right.svg","alt","arrow-right","width","100%"],[1,"slash"],[1,"pageNumberFullcount"],[1,"visible-only-landscape"],[1,"d-flex","player-slides","ml-8"],[1,"d-flex","flex-ai-center",3,"previousAction"],[1,"d-flex","flex-ai-center",3,"nextAction"]],template:function(A,te){1&A&&(t.TgZ(0,"div")(1,"div",0)(2,"div",1),t.YNc(3,Qa,2,0,"div",2),t.YNc(4,g2,3,0,"div",3),t.YNc(5,m2,8,3,"div",4),t.YNc(6,Cs,4,0,"div",5),t.qZA()()()),2&A&&(t.xp6(3),t.Q6J("ngIf",te.config.rotation),t.xp6(1),t.Q6J("ngIf",te.config.zoom),t.xp6(1),t.Q6J("ngIf",te.config.goto&&te.totalPages),t.xp6(1),t.Q6J("ngIf",te.config.navigation))},dependencies:[C.O5,F.Fj,F.wV,F.JJ,F.qQ,F.Fd,F.On,rs,Ca],styles:[':root{--sdk-sb-player-header:#fff;--sdk-player-zoombtn:#000;--sdk-player-zoombtn-icon:#333;--sdk-player-zoombtn-icon-hover:#F2F2F2;--sdk-player-page-count-bg:#fff;--sdk-player-page-count-txt:#CCCCCC;--sdk-player-page-count-arrow:#333333}[_nghost-%COMP%] .sb-player-header[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:end;justify-content:flex-end;height:3rem;padding:.75em 1rem;background:var(--sdk-sb-player-header)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%]{border-radius:.25rem;overflow:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%]{color:var(--sdk-player-zoombtn);text-align:center;line-height:.8rem;font-size:1.5rem;background-color:rgba(var(--rc-rgba-gray),.11);padding:0;-webkit-transition:.3s ease-in;transition:.3s ease-in;cursor:pointer;width:2rem;height:2rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;border:0}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{-webkit-mask-size:contain;-webkit-mask-repeat:no-repeat;mask-size:contain;mask-repeat:no-repeat;background-color:var(--sdk-player-zoombtn-icon)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%]:hover{background:var(--sdk-player-zoombtn-icon-hover)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomOut-btn[_ngcontent-%COMP%]{border-right:.063em solid rgba(var(--rc-rgba-gray),.1)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomOut-btn[_ngcontent-%COMP%]::after{content:"-"}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomIn-btn[_ngcontent-%COMP%]::after{content:"+"}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%]{font-size:1rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;position:relative}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]{height:2rem;width:3rem;border:.031em solid var(--sdk-player-page-count-txt);border-radius:.25rem;background-color:var(--sdk-player-page-count-bg);text-align:center}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus{border-radius:.25em 0 0 .25rem;outline:0}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%] ~ .focus-arrow[_ngcontent-%COMP%]{opacity:0;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;width:2.2rem;height:2rem;background:var(--sdk-player-page-count-arrow);border-radius:0 .25em .25em 0;position:absolute;left:calc(3rem - 0px);cursor:pointer}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%] ~ .focus-arrow[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:50%}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .focus-arrow[_ngcontent-%COMP%]{opacity:1}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .slash[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .pageNumberFullcount[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .slash[_ngcontent-%COMP%]{margin:0 .5rem}[_nghost-%COMP%] .player-zoom-btns-inline[_ngcontent-%COMP%]{display:inline-block}[_nghost-%COMP%] .player-replay[_ngcontent-%COMP%]{display:inline;padding:.5rem}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%]{background:0 0;height:2rem;text-align:center;width:2rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;border-radius:.25rem;padding:.25rem;cursor:pointer;-webkit-transition:.3s ease-in;transition:.3s ease-in}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%]:hover{background:rgba(var(--rc-rgba-gray),.11)}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%] .rotate-icon[_ngcontent-%COMP%]{width:100%}[_nghost-%COMP%] sb-player-next-navigation[_ngcontent-%COMP%], [_nghost-%COMP%] sb-player-previous-navigation[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count:focus{border-radius:0 .25em .25rem 0!important} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count~.focus-arrow{left:auto;right:calc(3rem - 0px);border-radius:.25em 0 0 .25em!important} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count~.focus-arrow img{-webkit-transform:rotate(180deg);transform:rotate(180deg)}']}),k1.propDecorators={pageNumber:[{type:t.IIB}],totalPages:[{type:t.IIB}],actions:[{type:t.r_U}],config:[{type:t.IIB}]};class Pa{ngOnInit(){this.errorMsg||(this.errorMsg={messageHeader:ia.contentPlayFailedHeader,messageTitle:ia.contentPlayFailTitle})}}Pa.\u0275fac=function(A){return new(A||Pa)},Pa.\u0275cmp=t.Xpm({type:Pa,selectors:[["sb-player-contenterror"]],inputs:{errorMsg:"errorMsg"},decls:6,vars:2,consts:[[1,"playersdk-msg","playersdk-msg--error"],[1,"playersdk-msg__body"],[1,"playersdk-msg__text"],[1,"error-header"]],template:function(A,te){1&A&&(t.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"span",3),t._uU(4),t.qZA(),t._uU(5),t.qZA()()()),2&A&&(t.xp6(4),t.Oqu(te.errorMsg.messageHeader),t.xp6(1),t.hij(" ",te.errorMsg.messageTitle," "))},styles:[':root{--sdk-playersdk-text:#333;--sdk-playersdk-bg:#fbccd1;--sdk-playersdk-border:#ff4558;--sdk-playersdk-closeicon:#ff4558;--sdk-playersdk-error-header:#ff4558}.playersdk-msg[_ngcontent-%COMP%]{position:absolute;top:10%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;max-width:20rem;margin-bottom:8px;padding:1rem;border:1px solid;border-radius:.5rem;border-width:0 0 0 .5rem;z-index:111111}.playersdk-msg--error[_ngcontent-%COMP%]{color:var(--sdk-playersdk-text);background:var(--sdk-playersdk-bg);border-color:var(--sdk-playersdk-border)}.playersdk-msg__body[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center}.playersdk-msg__text[_ngcontent-%COMP%]{font-size:.875rem}@media (max-width:767px){.playersdk-msg__text[_ngcontent-%COMP%]{font-size:.75rem}}.playersdk-msg__close-icon[_ngcontent-%COMP%]{position:absolute;right:0;top:0;width:2rem;height:2rem;cursor:pointer}.playersdk-msg__close-icon[_ngcontent-%COMP%]::after, .playersdk-msg__close-icon[_ngcontent-%COMP%]::before{content:" ";position:absolute;right:1rem;height:1rem;width:.125rem;top:.5rem;background:var(--sdk-playersdk-closeicon)}.playersdk-msg__close-icon[_ngcontent-%COMP%]::before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.playersdk-msg__close-icon[_ngcontent-%COMP%]::after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.error-header[_ngcontent-%COMP%]{font-size:1.25rem;display:block;margin-bottom:.5rem;line-height:normal;color:var(--sdk-playersdk-error-header)}']}),Pa.propDecorators={errorMsg:[{type:t.IIB}]};class Do{}Do.\u0275fac=function(A){return new(A||Do)},Do.\u0275mod=t.oAB({type:Do}),Do.\u0275inj=t.cJS({imports:[C.ez,F.u5]});class a1{}a1.\u0275fac=function(A){return new(A||a1)},a1.\u0275mod=t.oAB({type:a1}),a1.\u0275inj=t.cJS({imports:[jo,Do,jo,Do]})},546:function(vt){ +/*! https://mths.be/cssescape v1.5.1 by @mathias | MIT license */ +var _e;_e=typeof global<"u"?global:this,vt.exports=function(_e){if(_e.CSS&&_e.CSS.escape)return _e.CSS.escape;var w=function(t){if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");for(var N,C=String(t),F=C.length,U=-1,G="",K=C.charCodeAt(0);++U=1&&N<=31||127==N||0==U&&N>=48&&N<=57||1==U&&N>=48&&N<=57&&45==K?"\\"+N.toString(16)+" ":0==U&&1==F&&45==N||!(N>=128||45==N||95==N||N>=48&&N<=57||N>=65&&N<=90||N>=97&&N<=122)?"\\"+C.charAt(U):C.charAt(U):G+="\ufffd";return G};return _e.CSS||(_e.CSS={}),_e.CSS.escape=w,w}(_e)},8338:function(vt,_e,w){var t; +/*! + * Platform.js + * Copyright 2014-2016 Benjamin Tan + * Copyright 2011-2013 John-David Dalton + * Available under MIT license + */vt=w.nmd(vt),function(){"use strict";var C={function:!0,object:!0},F=C[typeof window]&&window||this,U=F,N=C[typeof _e]&&_e,G=C.object&&vt&&!vt.nodeType&&vt,K=N&&G&&"object"==typeof global&&global;K&&(K.global===K||K.window===K||K.self===K)&&(F=K);var $=Math.pow(2,53)-1,le=/\bOpera/,R=this,ae=Object.prototype,be=ae.hasOwnProperty,Be=ae.toString;function Ne(T){return(T=String(T)).charAt(0).toUpperCase()+T.slice(1)}function fe(T){return T=We(T),/^(?:webOS|i(?:OS|P))/.test(T)?T:Ne(T)}function de(T,Z){for(var Ce in T)be.call(T,Ce)&&Z(T[Ce],Ce,T)}function pe(T){return null==T?Ne(T):Be.call(T).slice(8,-1)}function Pe(T,Z){var Ce=null!=T?typeof T[Z]:"number";return!(/^(?:boolean|number|string|undefined)$/.test(Ce)||"object"==Ce&&!T[Z])}function et(T){return String(T).replace(/([ -])(?!$)/g,"$1?")}function $e(T,Z){var Ce=null;return function Re(T,Z){var Ce=-1,Te=T?T.length:0;if("number"==typeof Te&&Te>-1&&Te<=$)for(;++Ce3?"WebKit":/\bOpera\b/.test(Ge)&&(/\bOPR\b/.test(T)?"Blink":"Presto"))||/\b(?:Midori|Nook|Safari)\b/i.test(T)&&!/^(?:Trident|EdgeHTML)$/.test(Xt)&&"WebKit"||!Xt&&/\bMSIE\b/i.test(T)&&("Mac OS"==Me?"Tasman":"Trident")||"WebKit"==Xt&&/\bPlayStation\b(?! Vita\b)/i.test(Ge)&&"NetFront")&&(Xt=[ie]),"IE"==Ge&&(ie=(/; *(?:XBLWP|ZuneWP)(\d+)/i.exec(T)||0)[1])?(Ge+=" Mobile",Me="Windows Phone "+(/\+$/.test(ie)?ie:ie+".x"),Xe.unshift("desktop mode")):/\bWPDesktop\b/i.test(T)?(Ge="IE Mobile",Me="Windows Phone 8.x",Xe.unshift("desktop mode"),at||(at=(/\brv:([\d.]+)/.exec(T)||0)[1])):"IE"!=Ge&&"Trident"==Xt&&(ie=/\brv:([\d.]+)/.exec(T))&&(Ge&&Xe.push("identifying as "+Ge+(at?" "+at:"")),Ge="IE",at=ie[1]),Et){if(Pe(Z,"global"))if(Gt&&(yt=(ie=Gt.lang.System).getProperty("os.arch"),Me=Me||ie.getProperty("os.name")+" "+ie.getProperty("os.version")),st&&Pe(Z,"system")&&(ie=[Z.system])[0]){Me||(Me=ie[0].os||null);try{ie[1]=Z.require("ringo/engine").version,at=ie[1].join("."),Ge="RingoJS"}catch{ie[0].global.system==Z.system&&(Ge="Narwhal")}}else"object"==typeof Z.process&&!Z.process.browser&&(ie=Z.process)?(Ge="Node.js",yt=ie.arch,Me=ie.platform,at=/[\d.]+/.exec(ie.version)[0]):on&&(Ge="Rhino");else pe(ie=Z.runtime)==wt?(Ge="Adobe AIR",Me=ie.flash.system.Capabilities.os):pe(ie=Z.phantom)==St?(Ge="PhantomJS",at=(ie=ie.version||null)&&ie.major+"."+ie.minor+"."+ie.patch):"number"==typeof Rt.documentMode&&(ie=/\bTrident\/(\d+)/i.exec(T))&&(at=[at,Rt.documentMode],(ie=+ie[1]+4)!=at[1]&&(Xe.push("IE "+at[1]+" mode"),Xt&&(Xt[1]=""),at[1]=ie),at="IE"==Ge?String(at[1].toFixed(1)):at[0]);Me=Me&&fe(Me)}at&&(ie=/(?:[ab]|dp|pre|[ab]\d+pre)(?:\d+\+?)?$/i.exec(at)||/(?:alpha|beta)(?: ?\d)?/i.exec(T+";"+(Et&&Te.appMinorVersion))||/\bMinefield\b/i.test(T)&&"a")&&(lt=/b/i.test(ie)?"beta":"alpha",at=at.replace(RegExp(ie+"\\+?$"),"")+("beta"==lt?Qt:Bt)+(/\d+\+?/.exec(ie)||"")),"Fennec"==Ge||"Firefox"==Ge&&/\b(?:Android|Firefox OS)\b/.test(Me)?Ge="Firefox Mobile":"Maxthon"==Ge&&at?at=at.replace(/\.[\d.]+/,".x"):/\bXbox\b/i.test(Je)?(Me=null,"Xbox 360"==Je&&/\bIEMobile\b/.test(T)&&Xe.unshift("mobile mode")):!/^(?:Chrome|IE|Opera)$/.test(Ge)&&(!Ge||Je||/Browser|Mobi/.test(Ge))||"Windows CE"!=Me&&!/Mobi/i.test(T)?"IE"==Ge&&Et&&null===Z.external?Xe.unshift("platform preview"):(/\bBlackBerry\b/.test(Je)||/\bBB10\b/.test(T))&&(ie=(RegExp(Je.replace(/ +/g," *")+"/([.\\d]+)","i").exec(T)||0)[1]||at)?(Me=((ie=[ie,/BB10/.test(T)])[1]?(Je=null,Fe="BlackBerry"):"Device Software")+" "+ie[0],at=null):this!=de&&"Wii"!=Je&&(Et&&_n||/Opera/.test(Ge)&&/\b(?:MSIE|Firefox)\b/i.test(T)||"Firefox"==Ge&&/\bOS X (?:\d+\.){2,}/.test(Me)||"IE"==Ge&&(Me&&!/^Win/.test(Me)&&at>5.5||/\bWindows XP\b/.test(Me)&&at>8||8==at&&!/\bTrident\b/.test(T)))&&!le.test(ie=Ie.call(de,T.replace(le,"")+";"))&&ie.name&&(ie="ing as "+ie.name+((ie=ie.version)?" "+ie:""),le.test(Ge)?(/\bIE\b/.test(ie)&&"Mac OS"==Me&&(Me=null),ie="identify"+ie):(ie="mask"+ie,Ge=Ln?fe(Ln.replace(/([a-z])([A-Z])/g,"$1 $2")):"Opera",/\bIE\b/.test(ie)&&(Me=null),Et||(at=null)),Xt=["Presto"],Xe.push(ie)):Ge+=" Mobile",(ie=(/\bAppleWebKit\/([\d.]+\+?)/i.exec(T)||0)[1])&&(ie=[parseFloat(ie.replace(/\.(\d)$/,".0$1")),ie],"Safari"==Ge&&"+"==ie[1].slice(-1)?(Ge="WebKit Nightly",lt="alpha",at=ie[1].slice(0,-1)):(at==ie[1]||at==(ie[2]=(/\bSafari\/([\d.]+\+?)/i.exec(T)||0)[1]))&&(at=null),ie[1]=(/\bChrome\/([\d.]+)/i.exec(T)||0)[1],537.36==ie[0]&&537.36==ie[2]&&parseFloat(ie[1])>=28&&"WebKit"==Xt&&(Xt=["Blink"]),Et&&(bt||ie[1])?(Xt&&(Xt[1]="like Chrome"),ie=ie[1]||((ie=ie[0])<530?1:ie<532?2:ie<532.05?3:ie<533?4:ie<534.03?5:ie<534.07?6:ie<534.1?7:ie<534.13?8:ie<534.16?9:ie<534.24?10:ie<534.3?11:ie<535.01?12:ie<535.02?"13+":ie<535.07?15:ie<535.11?16:ie<535.19?17:ie<536.05?18:ie<536.1?19:ie<537.01?20:ie<537.11?"21+":ie<537.13?23:ie<537.18?24:ie<537.24?25:ie<537.36?26:"Blink"!=Xt?"27":"28")):(Xt&&(Xt[1]="like Safari"),ie=(ie=ie[0])<400?1:ie<500?2:ie<526?3:ie<533?4:ie<534?"4+":ie<535?5:ie<537?6:ie<538?7:ie<601?8:"8"),Xt&&(Xt[1]+=" "+(ie+="number"==typeof ie?".x":/[.+]/.test(ie)?"":"+")),"Safari"==Ge&&(!at||parseInt(at)>45)&&(at=ie)),"Opera"==Ge&&(ie=/\bzbov|zvav$/.exec(Me))?(Ge+=" ",Xe.unshift("desktop mode"),"zvav"==ie?(Ge+="Mini",at=null):Ge+="Mobile",Me=Me.replace(RegExp(" *"+ie+"$"),"")):"Safari"==Ge&&/\bChrome\b/.exec(Xt&&Xt[1])&&(Xe.unshift("desktop mode"),Ge="Chrome Mobile",at=null,/\bOS X\b/.test(Me)?(Fe="Apple",Me="iOS 4.3+"):Me=null),at&&0==at.indexOf(ie=/[\d.]+$/.exec(Me))&&T.indexOf("/"+ie+"-")>-1&&(Me=We(Me.replace(ie,""))),Xt&&!/\b(?:Avant|Nook)\b/.test(Ge)&&(/Browser|Lunascape|Maxthon/.test(Ge)||"Safari"!=Ge&&/^iOS/.test(Me)&&/\bSafari\b/.test(Xt[1])||/^(?:Adobe|Arora|Breach|Midori|Opera|Phantom|Rekonq|Rock|Sleipnir|Web)/.test(Ge)&&Xt[1])&&(ie=Xt[Xt.length-1])&&Xe.push(ie),Xe.length&&(Xe=["("+Xe.join("; ")+")"]),Fe&&Je&&Je.indexOf(Fe)<0&&Xe.push("on "+Fe),Je&&Xe.push((/^on /.test(Xe[Xe.length-1])?"":"on ")+Je),Me&&(ie=/ ([\d.+]+)$/.exec(Me),fn=ie&&"/"==Me.charAt(Me.length-ie[0].length-1),Me={architecture:32,family:ie&&!fn?Me.replace(ie[0],""):Me,version:ie?ie[1]:null,toString:function(){var we=this.version;return this.family+(we&&!fn?" "+we:"")+(64==this.architecture?" 64-bit":"")}}),(ie=/\b(?:AMD|IA|Win|WOW|x86_|x)64\b/i.exec(yt))&&!/\bi686\b/i.test(yt)?(Me&&(Me.architecture=64,Me.family=Me.family.replace(RegExp(" *"+ie),"")),Ge&&(/\bWOW64\b/i.test(T)||Et&&/\w(?:86|32)$/.test(Te.cpuClass||Te.platform)&&!/\bWin64; x64\b/i.test(T))&&Xe.unshift("32-bit")):Me&&/^OS X/.test(Me.family)&&"Chrome"==Ge&&parseFloat(at)>=39&&(Me.architecture=64),T||(T=null);var Kt={};return Kt.description=T,Kt.layout=Xt&&Xt[0],Kt.manufacturer=Fe,Kt.name=Ge,Kt.prerelease=lt,Kt.product=Je,Kt.ua=T,Kt.version=Ge&&at,Kt.os=Me||{architecture:null,family:null,version:null,toString:function(){return"null"}},Kt.parse=Ie,Kt.toString=function Zt(){return this.description||""},Kt.version&&Xe.unshift(at),Kt.name&&Xe.unshift(Ge),Me&&Ge&&!(Me==String(Me).split(" ")[0]&&(Me==Ge.split(" ")[0]||Je))&&Xe.push(Je?"("+Me+")":"on "+Me),Xe.length&&(Kt.description=Xe.join(" ")),Kt}();F.platform=He,void 0!==(t=function(){return He}.call(_e,w,_e,vt))&&(vt.exports=t)}.call(this)},8932:vt=>{function _e(){return vt.exports=_e=Object.assign?Object.assign.bind():function(w){for(var t=1;t{"use strict";w.d(_e,{HT:()=>N,JF:()=>hr,K0:()=>K,Mx:()=>ro,O5:()=>Sr,PC:()=>Pr,RF:()=>mi,bD:()=>ts,ez:()=>Qr,mk:()=>pi,n9:()=>Yo,q:()=>F,sg:()=>gi,w_:()=>G});var t=w(8008); /** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ -Zone.__load_patch("legacy",function(I){var x=I[Zone.__symbol__("legacyPatch")];x&&x()}),Zone.__load_patch("queueMicrotask",function(I,x,$){$.patchMethod(I,"queueMicrotask",function(V){return function(y,S){x.current.scheduleMicroTask("queueMicrotask",S[0])}})}),Zone.__load_patch("timers",function(I){var x="set",$="clear";oe(I,x,$,"Timeout"),oe(I,x,$,"Interval"),oe(I,x,$,"Immediate")}),Zone.__load_patch("requestAnimationFrame",function(I){oe(I,"request","cancel","AnimationFrame"),oe(I,"mozRequest","mozCancel","AnimationFrame"),oe(I,"webkitRequest","webkitCancel","AnimationFrame")}),Zone.__load_patch("blocking",function(I,x){for(var $=["alert","prompt","confirm"],V=0;V<$.length;V++){var y=$[V];z(I,y,function(S,U,Z){return function(q,at){return x.current.run(S,I,at,Z)}})}}),Zone.__load_patch("EventTarget",function(I,x,$){(function(I,x){x.patchEventPrototype(I,x)})(I,$), + * @license Angular v14.2.12 + * (c) 2010-2022 Google LLC. https://angular.io/ + * License: MIT + */ /** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ -function(I,x){if(!Zone[x.symbol("patchEventTarget")]){for(var $=x.getGlobalObjects(),V=$.eventNames,y=$.zoneSymbolEventNames,S=$.TRUE_STR,U=$.FALSE_STR,Z=$.ZONE_SYMBOL_PREFIX,q=0;q0){var ie=Mt.invoke;Mt.invoke=function(){for(var Et=Rt[x.__symbol__("loadfalse")],it=0;itt.length)&&(e=t.length);for(var r=0,n=new Array(e);r=n.length?{done:!0}:{done:!1,value:n[i++]}},e:function(p){throw p},f:l}}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 v,u=!0,f=!1;return{s:function(){s=s.call(n)},n:function(){var p=s.next();return u=p.done,p},e:function(p){f=!0,v=p},f:function(){try{!u&&null!=s.return&&s.return()}finally{if(f)throw v}}}},o.exports.default=o.exports,o.exports.__esModule=!0},6636:function(o,c,t){var e=t(2206);o.exports=function(n,a){if(n){if("string"==typeof n)return e(n,a);var s=Object.prototype.toString.call(n).slice(8,-1);if("Object"===s&&n.constructor&&(s=n.constructor.name),"Map"===s||"Set"===s)return Array.from(n);if("Arguments"===s||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(s))return e(n,a)}},o.exports.default=o.exports,o.exports.__esModule=!0},789:function(o,c,t){t(9707),t(8704),t(1304),t(7564),t(843),t(6951),t(4240),t(7201);var e=t(3675);o.exports=e.Date},7397:function(o,c,t){t(3491),t(5110),t(4266),t(9353),t(122),t(8733),t(8910),t(2783),t(9739),t(9002),t(8281),t(5428),t(6681),t(4961),t(8092),t(2394),t(3296),t(3773);var e=t(3675);o.exports=e.Math},5367:function(o,c,t){t(4200),t(4898),t(4815),t(3871),t(3342),t(5304),t(5964),t(7671),t(1998),t(7902),t(3741),t(1246);var e=t(3675);o.exports=e.Number},1871:function(o,c,t){t(596),t(4405),t(5235),t(9747),t(3754),t(9172),t(6946),t(5221),t(7974),t(395),t(9550),t(6394),t(1897),t(6065),t(7228),t(3495),t(5497),t(3612),t(3296),t(6101);var e=t(3675);o.exports=e.Symbol},171:function(o){o.exports=function(c){if("function"!=typeof c)throw TypeError(String(c)+" is not a function");return c}},8290:function(o,c,t){var e=t(6743);o.exports=function(r){if(!e(r)&&null!==r)throw TypeError("Can't set "+String(r)+" as a prototype");return r}},9507:function(o,c,t){var e=t(2622),r=t(7593),n=t(480),a=e("unscopables"),s=Array.prototype;null==s[a]&&n.f(s,a,{configurable:!0,value:r(null)}),o.exports=function(i){s[a][i]=!0}},4478:function(o,c,t){"use strict";var e=t(1663).charAt;o.exports=function(r,n,a){return n+(a?e(r,n).length:1)}},133:function(o){o.exports=function(c,t,e){if(!(c instanceof t))throw TypeError("Incorrect "+(e?e+" ":"")+"invocation");return c}},9499:function(o,c,t){var e=t(6743);o.exports=function(r){if(!e(r))throw TypeError(String(r)+" is not an object");return r}},2122:function(o,c,t){"use strict";var e=t(2767),r=t(9625),n=t(8806),a=Math.min;o.exports=[].copyWithin||function(i,l){var u=e(this),f=n(u.length),v=r(i,f),d=r(l,f),p=arguments.length>2?arguments[2]:void 0,T=a((void 0===p?f:r(p,f))-d,f-v),O=1;for(d0;)d in u?u[v]=u[d]:delete u[v],v+=O,d+=O;return u}},9091:function(o,c,t){"use strict";var e=t(2767),r=t(9625),n=t(8806);o.exports=function(s){for(var i=e(this),l=n(i.length),u=arguments.length,f=r(u>1?arguments[1]:void 0,l),v=u>2?arguments[2]:void 0,d=void 0===v?l:r(v,l);d>f;)i[f++]=s;return i}},8367:function(o,c,t){"use strict";var e=t(7354).forEach,n=t(2130)("forEach");o.exports=n?[].forEach:function(s){return e(this,s,arguments.length>1?arguments[1]:void 0)}},8646:function(o,c,t){"use strict";var e=t(7907),r=t(2767),n=t(1345),a=t(8250),s=t(8806),i=t(2966),l=t(572);o.exports=function(f){var R,g,j,M,E,m,v=r(f),d="function"==typeof this?this:Array,p=arguments.length,T=p>1?arguments[1]:void 0,O=void 0!==T,_=l(v),P=0;if(O&&(T=e(T,p>2?arguments[2]:void 0,2)),null==_||d==Array&&a(_))for(g=new d(R=s(v.length));R>P;P++)m=O?T(v[P],P):v[P],i(g,P,m);else for(E=(M=_.call(v)).next,g=new d;!(j=E.call(M)).done;P++)m=O?n(M,T,[j.value,P],!0):j.value,i(g,P,m);return g.length=P,g}},9835:function(o,c,t){var e=t(6076),r=t(8806),n=t(9625),a=function(s){return function(i,l,u){var p,f=e(i),v=r(f.length),d=n(u,v);if(s&&l!=l){for(;v>d;)if((p=f[d++])!=p)return!0}else for(;v>d;d++)if((s||d in f)&&f[d]===l)return s||d||0;return!s&&-1}};o.exports={includes:a(!0),indexOf:a(!1)}},7354:function(o,c,t){var e=t(7907),r=t(3418),n=t(2767),a=t(8806),s=t(3784),i=[].push,l=function(u){var f=1==u,v=2==u,d=3==u,p=4==u,T=6==u,O=7==u,_=5==u||T;return function(P,R,g,j){for(var N,H,M=n(P),E=r(M),m=e(R,g,3),F=a(E.length),C=0,b=j||s,W=f?b(P,F):v||O?b(P,0):void 0;F>C;C++)if((_||C in E)&&(H=m(N=E[C],C,M),u))if(f)W[C]=H;else if(H)switch(u){case 3:return!0;case 5:return N;case 6:return C;case 2:i.call(W,N)}else switch(u){case 4:return!1;case 7:i.call(W,N)}return T?-1:d||p?p:W}};o.exports={forEach:l(0),map:l(1),filter:l(2),some:l(3),every:l(4),find:l(5),findIndex:l(6),filterReject:l(7)}},5722:function(o,c,t){"use strict";var e=t(6076),r=t(4497),n=t(8806),a=t(2130),s=Math.min,i=[].lastIndexOf,l=!!i&&1/[1].lastIndexOf(1,-0)<0,u=a("lastIndexOf"),f=l||!u;o.exports=f?function(d){if(l)return i.apply(this,arguments)||0;var p=e(this),T=n(p.length),O=T-1;for(arguments.length>1&&(O=s(O,r(arguments[1]))),O<0&&(O=T+O);O>=0;O--)if(O in p&&p[O]===d)return O||0;return-1}:i},7795:function(o,c,t){var e=t(7912),r=t(2622),n=t(8630),a=r("species");o.exports=function(s){return n>=51||!e(function(){var i=[];return(i.constructor={})[a]=function(){return{foo:1}},1!==i[s](Boolean).foo})}},2130:function(o,c,t){"use strict";var e=t(7912);o.exports=function(r,n){var a=[][r];return!!a&&e(function(){a.call(null,n||function(){throw 1},1)})}},1922:function(o,c,t){var e=t(171),r=t(2767),n=t(3418),a=t(8806),s=function(i){return function(l,u,f,v){e(u);var d=r(l),p=n(d),T=a(d.length),O=i?T-1:0,_=i?-1:1;if(f<2)for(;;){if(O in p){v=p[O],O+=_;break}if(O+=_,i?O<0:T<=O)throw TypeError("Reduce of empty array with no initial value")}for(;i?O>=0:T>O;O+=_)O in p&&(v=u(v,p[O],O,d));return v}};o.exports={left:s(!1),right:s(!0)}},6756:function(o){var c=Math.floor,t=function(n,a){var s=n.length,i=c(s/2);return s<8?e(n,a):r(t(n.slice(0,i),a),t(n.slice(i),a),a)},e=function(n,a){for(var l,u,s=n.length,i=1;i0;)n[u]=n[--u];u!==i++&&(n[u]=l)}return n},r=function(n,a,s){for(var i=n.length,l=a.length,u=0,f=0,v=[];u1?arguments[1]:void 0,3);W=W?W.next:C.first;)for(b(W.value,W.key,this);W&&W.removed;)W=W.previous},has:function(F){return!!E(this,F)}}),n(g.prototype,P?{get:function(F){var C=E(this,F);return C&&C.value},set:function(F,C){return M(this,0===F?0:F,C)}}:{add:function(F){return M(this,F=0===F?0:F,F)}}),f&&e(g.prototype,"size",{get:function(){return j(this).size}}),g},setStrong:function(O,_,P){var R=_+" Iterator",g=T(_),j=T(R);l(O,_,function(M,E){p(this,{type:R,target:M,state:g(M),kind:E,last:void 0})},function(){for(var M=j(this),E=M.kind,m=M.last;m&&m.removed;)m=m.previous;return M.target&&(M.last=m=m?m.next:M.state.first)?"keys"==E?{value:m.key,done:!1}:"values"==E?{value:m.value,done:!1}:{value:[m.key,m.value],done:!1}:(M.target=void 0,{value:void 0,done:!0})},P?"entries":"values",!P,!0),u(_)}}},2050:function(o,c,t){"use strict";var e=t(4151),r=t(4860).getWeakData,n=t(9499),a=t(6743),s=t(133),i=t(3598),l=t(7354),u=t(9594),f=t(8593),v=f.set,d=f.getterFor,p=l.find,T=l.findIndex,O=0,_=function(g){return g.frozen||(g.frozen=new P)},P=function(){this.entries=[]},R=function(g,j){return p(g.entries,function(M){return M[0]===j})};P.prototype={get:function(g){var j=R(this,g);if(j)return j[1]},has:function(g){return!!R(this,g)},set:function(g,j){var M=R(this,g);M?M[1]=j:this.entries.push([g,j])},delete:function(g){var j=T(this.entries,function(M){return M[0]===g});return~j&&this.entries.splice(j,1),!!~j}},o.exports={getConstructor:function(g,j,M,E){var m=g(function(b,W){s(b,m,j),v(b,{type:j,id:O++,frozen:void 0}),null!=W&&i(W,b[E],{that:b,AS_ENTRIES:M})}),F=d(j),C=function(b,W,N){var H=F(b),k=r(n(W),!0);return!0===k?_(H).set(W,N):k[H.id]=N,b};return e(m.prototype,{delete:function(b){var W=F(this);if(!a(b))return!1;var N=r(b);return!0===N?_(W).delete(b):N&&u(N,W.id)&&delete N[W.id]},has:function(W){var N=F(this);if(!a(W))return!1;var H=r(W);return!0===H?_(N).has(W):H&&u(H,N.id)}}),e(m.prototype,M?{get:function(W){var N=F(this);if(a(W)){var H=r(W);return!0===H?_(N).get(W):H?H[N.id]:void 0}},set:function(W,N){return C(this,W,N)}}:{add:function(W){return C(this,W,!0)}}),m}}},877:function(o,c,t){"use strict";var e=t(8301),r=t(1492),n=t(2263),a=t(1415),s=t(4860),i=t(3598),l=t(133),u=t(6743),f=t(7912),v=t(4533),d=t(489),p=t(4939);o.exports=function(T,O,_){var P=-1!==T.indexOf("Map"),R=-1!==T.indexOf("Weak"),g=P?"set":"add",j=r[T],M=j&&j.prototype,E=j,m={},F=function(rt){var tt=M[rt];a(M,rt,"add"==rt?function(A){return tt.call(this,0===A?0:A),this}:"delete"==rt?function(K){return!(R&&!u(K))&&tt.call(this,0===K?0:K)}:"get"==rt?function(A){return R&&!u(A)?void 0:tt.call(this,0===A?0:A)}:"has"==rt?function(A){return!(R&&!u(A))&&tt.call(this,0===A?0:A)}:function(A,G){return tt.call(this,0===A?0:A,G),this})};if(n(T,"function"!=typeof j||!(R||M.forEach&&!f(function(){(new j).entries().next()}))))E=_.getConstructor(O,T,P,g),s.enable();else if(n(T,!0)){var b=new E,W=b[g](R?{}:-0,1)!=b,N=f(function(){b.has(1)}),H=v(function(rt){new j(rt)}),k=!R&&f(function(){for(var rt=new j,tt=5;tt--;)rt[g](tt,tt);return!rt.has(-0)});H||((E=O(function(rt,tt){l(rt,E,T);var K=p(new j,rt,E);return null!=tt&&i(tt,K[g],{that:K,AS_ENTRIES:P}),K})).prototype=M,M.constructor=E),(N||k)&&(F("delete"),F("has"),P&&F("get")),(k||W)&&F(g),R&&M.clear&&delete M.clear}return m[T]=E,e({global:!0,forced:E!=j},m),d(E,T),R||_.setStrong(E,T,P),E}},6107:function(o,c,t){var e=t(9594),r=t(3670),n=t(1867),a=t(480);o.exports=function(s,i){for(var l=r(i),u=a.f,f=n.f,v=0;v"+u+""}},2984:function(o,c,t){"use strict";var e=t(349).IteratorPrototype,r=t(7593),n=t(4652),a=t(489),s=t(8802),i=function(){return this};o.exports=function(l,u,f){var v=u+" Iterator";return l.prototype=r(e,{next:n(1,f)}),a(l,v,!1,!0),s[v]=i,l}},7176:function(o,c,t){var e=t(6223),r=t(480),n=t(4652);o.exports=e?function(a,s,i){return r.f(a,s,n(1,i))}:function(a,s,i){return a[s]=i,a}},4652:function(o){o.exports=function(c,t){return{enumerable:!(1&c),configurable:!(2&c),writable:!(4&c),value:t}}},2966:function(o,c,t){"use strict";var e=t(2552),r=t(480),n=t(4652);o.exports=function(a,s,i){var l=e(s);l in a?r.f(a,l,n(0,i)):a[l]=i}},8601:function(o,c,t){"use strict";var e=t(7912),r=t(1432).start,n=Math.abs,a=Date.prototype,s=a.getTime,i=a.toISOString;o.exports=e(function(){return"0385-07-25T07:06:39.999Z"!=i.call(new Date(-50000000000001))})||!e(function(){i.call(new Date(NaN))})?function(){if(!isFinite(s.call(this)))throw RangeError("Invalid time value");var u=this,f=u.getUTCFullYear(),v=u.getUTCMilliseconds(),d=f<0?"-":f>9999?"+":"";return d+r(n(f),d?6:4,0)+"-"+r(u.getUTCMonth()+1,2,0)+"-"+r(u.getUTCDate(),2,0)+"T"+r(u.getUTCHours(),2,0)+":"+r(u.getUTCMinutes(),2,0)+":"+r(u.getUTCSeconds(),2,0)+"."+r(v,3,0)+"Z"}:i},123:function(o,c,t){"use strict";var e=t(9499),r=t(3252);o.exports=function(n){if(e(this),"string"===n||"default"===n)n="string";else if("number"!==n)throw TypeError("Incorrect hint");return r(this,n)}},8020:function(o,c,t){"use strict";var e=t(8301),r=t(2984),n=t(9515),a=t(2060),s=t(489),i=t(7176),l=t(1415),u=t(2622),f=t(3712),v=t(8802),d=t(349),p=d.IteratorPrototype,T=d.BUGGY_SAFARI_ITERATORS,O=u("iterator"),_="keys",P="values",R="entries",g=function(){return this};o.exports=function(j,M,E,m,F,C,b){r(E,M,m);var A,G,Y,W=function(z){if(z===F&&tt)return tt;if(!T&&z in k)return k[z];switch(z){case _:case P:case R:return function(){return new E(this,z)}}return function(){return new E(this)}},N=M+" Iterator",H=!1,k=j.prototype,rt=k[O]||k["@@iterator"]||F&&k[F],tt=!T&&rt||W(F),K="Array"==M&&k.entries||rt;if(K&&(A=n(K.call(new j)),p!==Object.prototype&&A.next&&(!f&&n(A)!==p&&(a?a(A,p):"function"!=typeof A[O]&&i(A,O,g)),s(A,N,!0,!0),f&&(v[N]=g))),F==P&&rt&&rt.name!==P&&(H=!0,tt=function(){return rt.call(this)}),(!f||b)&&k[O]!==tt&&i(k,O,tt),v[M]=tt,F)if(G={values:W(P),keys:C?tt:W(_),entries:W(R)},b)for(Y in G)(T||H||!(Y in k))&&l(k,Y,G[Y]);else e({target:M,proto:!0,forced:T||H},G);return G}},8970:function(o,c,t){var e=t(3675),r=t(9594),n=t(144),a=t(480).f;o.exports=function(s){var i=e.Symbol||(e.Symbol={});r(i,s)||a(i,s,{value:n.f(s)})}},6223:function(o,c,t){var e=t(7912);o.exports=!e(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},5349:function(o,c,t){var e=t(1492),r=t(6743),n=e.document,a=r(n)&&r(n.createElement);o.exports=function(s){return a?n.createElement(s):{}}},4763:function(o){o.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}},7029:function(o,c,t){var r=t(3322).match(/firefox\/(\d+)/i);o.exports=!!r&&+r[1]},2830:function(o){o.exports="object"==typeof window},5188:function(o,c,t){var e=t(3322);o.exports=/MSIE|Trident/.test(e)},4968:function(o,c,t){var e=t(3322);o.exports=/(?:iphone|ipod|ipad).*applewebkit/i.test(e)},1951:function(o,c,t){var e=t(164),r=t(1492);o.exports="process"==e(r.process)},9342:function(o,c,t){var e=t(3322);o.exports=/web0s(?!.*chrome)/i.test(e)},3322:function(o,c,t){var e=t(3077);o.exports=e("navigator","userAgent")||""},8630:function(o,c,t){var l,u,e=t(1492),r=t(3322),n=e.process,a=e.Deno,s=n&&n.versions||a&&a.version,i=s&&s.v8;i?u=(l=i.split("."))[0]<4?1:l[0]+l[1]:r&&((!(l=r.match(/Edge\/(\d+)/))||l[1]>=74)&&((l=r.match(/Chrome\/(\d+)/))&&(u=l[1]))),o.exports=u&&+u},629:function(o,c,t){var r=t(3322).match(/AppleWebKit\/(\d+)\./);o.exports=!!r&&+r[1]},3423:function(o){o.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},8301:function(o,c,t){var e=t(1492),r=t(1867).f,n=t(7176),a=t(1415),s=t(3753),i=t(6107),l=t(2263);o.exports=function(u,f){var O,_,P,R,g,v=u.target,d=u.global,p=u.stat;if(O=d?e:p?e[v]||s(v,{}):(e[v]||{}).prototype)for(_ in f){if(R=f[_],u.noTargetGet?P=(g=r(O,_))&&g.value:P=O[_],!l(d?_:v+(p?".":"#")+_,u.forced)&&void 0!==P){if(typeof R==typeof P)continue;i(R,P)}(u.sham||P&&P.sham)&&n(R,"sham",!0),a(O,_,R,u)}}},7912:function(o){o.exports=function(c){try{return!!c()}catch(t){return!0}}},4875:function(o,c,t){"use strict";t(1027);var e=t(1415),r=t(6193),n=t(7912),a=t(2622),s=t(7176),i=a("species"),l=RegExp.prototype;o.exports=function(u,f,v,d){var p=a(u),T=!n(function(){var R={};return R[p]=function(){return 7},7!=""[u](R)}),O=T&&!n(function(){var R=!1,g=/a/;return"split"===u&&((g={}).constructor={},g.constructor[i]=function(){return g},g.flags="",g[p]=/./[p]),g.exec=function(){return R=!0,null},g[p](""),!R});if(!T||!O||v){var _=/./[p],P=f(p,""[u],function(R,g,j,M,E){var m=g.exec;return m===r||m===l.exec?T&&!E?{done:!0,value:_.call(g,j,M)}:{done:!0,value:R.call(j,g,M)}:{done:!1}});e(String.prototype,u,P[0]),e(l,p,P[1])}d&&s(l[p],"sham",!0)}},3022:function(o,c,t){"use strict";var e=t(1147),r=t(8806),n=t(7907),a=function(s,i,l,u,f,v,d,p){for(var P,T=f,O=0,_=!!d&&n(d,p,3);O0&&e(P))T=a(s,i,P,r(P.length),T,v-1)-1;else{if(T>=9007199254740991)throw TypeError("Exceed the acceptable array length");s[T]=P}T++}O++}return T};o.exports=a},2477:function(o,c,t){var e=t(7912);o.exports=!e(function(){return Object.isExtensible(Object.preventExtensions({}))})},7907:function(o,c,t){var e=t(171);o.exports=function(r,n,a){if(e(r),void 0===n)return r;switch(a){case 0:return function(){return r.call(n)};case 1:return function(s){return r.call(n,s)};case 2:return function(s,i){return r.call(n,s,i)};case 3:return function(s,i,l){return r.call(n,s,i,l)}}return function(){return r.apply(n,arguments)}}},4422:function(o,c,t){"use strict";var e=t(171),r=t(6743),n=[].slice,a={},s=function(i,l,u){if(!(l in a)){for(var f=[],v=0;v]*>)/g,s=/\$([$&'`]|\d{1,2})/g;o.exports=function(i,l,u,f,v,d){var p=u+i.length,T=f.length,O=s;return void 0!==v&&(v=e(v),O=a),n.call(d,O,function(_,P){var R;switch(P.charAt(0)){case"$":return"$";case"&":return i;case"`":return l.slice(0,u);case"'":return l.slice(p);case"<":R=v[P.slice(1,-1)];break;default:var g=+P;if(0===g)return _;if(g>T){var j=r(g/10);return 0===j?_:j<=T?void 0===f[j-1]?P.charAt(1):f[j-1]+P.charAt(1):_}R=f[g-1]}return void 0===R?"":R})}},1492:function(o){var c=function(t){return t&&t.Math==Math&&t};o.exports=c("object"==typeof globalThis&&globalThis)||c("object"==typeof window&&window)||c("object"==typeof self&&self)||c("object"==typeof global&&global)||function(){return this}()||Function("return this")()},9594:function(o,c,t){var e=t(2767),r={}.hasOwnProperty;o.exports=Object.hasOwn||function(a,s){return r.call(e(a),s)}},7452:function(o){o.exports={}},5161:function(o,c,t){var e=t(1492);o.exports=function(r,n){var a=e.console;a&&a.error&&(1===arguments.length?a.error(r):a.error(r,n))}},3111:function(o,c,t){var e=t(3077);o.exports=e("document","documentElement")},3113:function(o,c,t){var e=t(6223),r=t(7912),n=t(5349);o.exports=!e&&!r(function(){return 7!=Object.defineProperty(n("div"),"a",{get:function(){return 7}}).a})},3418:function(o,c,t){var e=t(7912),r=t(164),n="".split;o.exports=e(function(){return!Object("z").propertyIsEnumerable(0)})?function(a){return"String"==r(a)?n.call(a,""):Object(a)}:Object},4939:function(o,c,t){var e=t(6743),r=t(2060);o.exports=function(n,a,s){var i,l;return r&&"function"==typeof(i=a.constructor)&&i!==s&&e(l=i.prototype)&&l!==s.prototype&&r(n,l),n}},172:function(o,c,t){var e=t(2117),r=Function.toString;"function"!=typeof e.inspectSource&&(e.inspectSource=function(n){return r.call(n)}),o.exports=e.inspectSource},4860:function(o,c,t){var e=t(8301),r=t(7452),n=t(6743),a=t(9594),s=t(480).f,i=t(9740),l=t(863),u=t(1103),f=t(2477),v=!1,d=u("meta"),p=0,T=Object.isExtensible||function(){return!0},O=function(M){s(M,d,{value:{objectID:"O"+p++,weakData:{}}})},j=o.exports={enable:function(){j.enable=function(){},v=!0;var M=i.f,E=[].splice,m={};m[d]=1,M(m).length&&(i.f=function(F){for(var C=M(F),b=0,W=C.length;bg;g++)if((M=C(u[g]))&&M instanceof l)return M;return new l(!1)}P=R.call(u)}for(E=P.next;!(m=E.call(P)).done;){try{M=C(m.value)}catch(b){throw i(P),b}if("object"==typeof M&&M&&M instanceof l)return M}return new l(!1)}},5718:function(o,c,t){var e=t(9499);o.exports=function(r){var n=r.return;if(void 0!==n)return e(n.call(r)).value}},349:function(o,c,t){"use strict";var v,d,p,e=t(7912),r=t(9515),n=t(7176),a=t(9594),s=t(2622),i=t(3712),l=s("iterator"),u=!1;[].keys&&("next"in(p=[].keys())?(d=r(r(p)))!==Object.prototype&&(v=d):u=!0);var T=null==v||e(function(){var O={};return v[l].call(O)!==O});T&&(v={}),(!i||T)&&!a(v,l)&&n(v,l,function(){return this}),o.exports={IteratorPrototype:v,BUGGY_SAFARI_ITERATORS:u}},8802:function(o){o.exports={}},7251:function(o){var c=Math.expm1,t=Math.exp;o.exports=!c||c(10)>22025.465794806718||c(10)<22025.465794806718||-2e-17!=c(-2e-17)?function(r){return 0==(r=+r)?r:r>-1e-6&&r<1e-6?r+r*r/2:t(r)-1}:c},9930:function(o,c,t){var e=t(4900),r=Math.abs,n=Math.pow,a=n(2,-52),s=n(2,-23),i=n(2,127)*(2-s),l=n(2,-126);o.exports=Math.fround||function(v){var T,O,d=r(v),p=e(v);return di||O!=O?p*(1/0):p*O}},3572:function(o){var c=Math.log;o.exports=Math.log1p||function(e){return(e=+e)>-1e-8&&e<1e-8?e-e*e/2:c(1+e)}},4900:function(o){o.exports=Math.sign||function(t){return 0==(t=+t)||t!=t?t:t<0?-1:1}},5669:function(o,c,t){var T,O,_,P,R,g,j,M,e=t(1492),r=t(1867).f,n=t(918).set,a=t(4968),s=t(9342),i=t(1951),l=e.MutationObserver||e.WebKitMutationObserver,u=e.document,f=e.process,v=e.Promise,d=r(e,"queueMicrotask"),p=d&&d.value;p||(T=function(){var E,m;for(i&&(E=f.domain)&&E.exit();O;){m=O.fn,O=O.next;try{m()}catch(F){throw O?P():_=void 0,F}}_=void 0,E&&E.enter()},a||i||s||!l||!u?v&&v.resolve?((j=v.resolve(void 0)).constructor=v,M=j.then,P=function(){M.call(j,T)}):P=i?function(){f.nextTick(T)}:function(){n.call(e,T)}:(R=!0,g=u.createTextNode(""),new l(T).observe(g,{characterData:!0}),P=function(){g.data=R=!R})),o.exports=p||function(E){var m={fn:E,next:void 0};_&&(_.next=m),O||(O=m,P()),_=m}},8591:function(o,c,t){var e=t(1492);o.exports=e.Promise},3391:function(o,c,t){var e=t(8630),r=t(7912);o.exports=!!Object.getOwnPropertySymbols&&!r(function(){var n=Symbol();return!String(n)||!(Object(n)instanceof Symbol)||!Symbol.sham&&e&&e<41})},9780:function(o,c,t){var e=t(1492),r=t(172),n=e.WeakMap;o.exports="function"==typeof n&&/native code/.test(r(n))},4495:function(o,c,t){"use strict";var e=t(171),r=function(n){var a,s;this.promise=new n(function(i,l){if(void 0!==a||void 0!==s)throw TypeError("Bad Promise constructor");a=i,s=l}),this.resolve=e(a),this.reject=e(s)};o.exports.f=function(n){return new r(n)}},7258:function(o,c,t){var e=t(4715);o.exports=function(r){if(e(r))throw TypeError("The method doesn't accept regular expressions");return r}},6152:function(o,c,t){var r=t(1492).isFinite;o.exports=Number.isFinite||function(a){return"number"==typeof a&&r(a)}},8671:function(o,c,t){var e=t(1492),r=t(7517),n=t(4462).trim,a=t(9760),s=e.parseFloat,i=1/s(a+"-0")!=-1/0;o.exports=i?function(u){var f=n(r(u)),v=s(f);return 0===v&&"-"==f.charAt(0)?-0:v}:s},5281:function(o,c,t){var e=t(1492),r=t(7517),n=t(4462).trim,a=t(9760),s=e.parseInt,i=/^[+-]?0[Xx]/,l=8!==s(a+"08")||22!==s(a+"0x16");o.exports=l?function(f,v){var d=n(r(f));return s(d,v>>>0||(i.test(d)?16:10))}:s},1235:function(o,c,t){"use strict";var e=t(6223),r=t(7912),n=t(2087),a=t(9800),s=t(8833),i=t(2767),l=t(3418),u=Object.assign,f=Object.defineProperty;o.exports=!u||r(function(){if(e&&1!==u({b:1},u(f({},"a",{enumerable:!0,get:function(){f(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var v={},d={},p=Symbol(),T="abcdefghijklmnopqrst";return v[p]=7,T.split("").forEach(function(O){d[O]=O}),7!=u({},v)[p]||n(u({},d)).join("")!=T})?function(d,p){for(var T=i(d),O=arguments.length,_=1,P=a.f,R=s.f;O>_;)for(var m,g=l(arguments[_++]),j=P?n(g).concat(P(g)):n(g),M=j.length,E=0;M>E;)m=j[E++],(!e||R.call(g,m))&&(T[m]=g[m]);return T}:u},7593:function(o,c,t){var R,e=t(9499),r=t(6624),n=t(3423),a=t(7452),s=t(3111),i=t(5349),l=t(6857),v="prototype",d="script",p=l("IE_PROTO"),T=function(){},O=function(j){return"<"+d+">"+j+""},_=function(j){j.write(O("")),j.close();var M=j.parentWindow.Object;return j=null,M},g=function(){try{R=new ActiveXObject("htmlfile")}catch(M){}g=document.domain&&R?_(R):function(){var E,j=i("iframe");if(j.style)return j.style.display="none",s.appendChild(j),j.src=String("javascript:"),(E=j.contentWindow.document).open(),E.write(O("document.F=Object")),E.close(),E.F}()||_(R);for(var j=n.length;j--;)delete g[v][n[j]];return g()};a[p]=!0,o.exports=Object.create||function(M,E){var m;return null!==M?(T[v]=e(M),m=new T,T[v]=null,m[p]=M):m=g(),void 0===E?m:r(m,E)}},6624:function(o,c,t){var e=t(6223),r=t(480),n=t(9499),a=t(2087);o.exports=e?Object.defineProperties:function(i,l){n(i);for(var d,u=a(l),f=u.length,v=0;f>v;)r.f(i,d=u[v++],l[d]);return i}},480:function(o,c,t){var e=t(6223),r=t(3113),n=t(9499),a=t(2552),s=Object.defineProperty;c.f=e?s:function(l,u,f){if(n(l),u=a(u),n(f),r)try{return s(l,u,f)}catch(v){}if("get"in f||"set"in f)throw TypeError("Accessors not supported");return"value"in f&&(l[u]=f.value),l}},1867:function(o,c,t){var e=t(6223),r=t(8833),n=t(4652),a=t(6076),s=t(2552),i=t(9594),l=t(3113),u=Object.getOwnPropertyDescriptor;c.f=e?u:function(v,d){if(v=a(v),d=s(d),l)try{return u(v,d)}catch(p){}if(i(v,d))return n(!r.f.call(v,d),v[d])}},863:function(o,c,t){var e=t(6076),r=t(9740).f,n={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];o.exports.f=function(l){return a&&"[object Window]"==n.call(l)?function(i){try{return r(i)}catch(l){return a.slice()}}(l):r(e(l))}},9740:function(o,c,t){var e=t(6406),n=t(3423).concat("length","prototype");c.f=Object.getOwnPropertyNames||function(s){return e(s,n)}},9800:function(o,c){c.f=Object.getOwnPropertySymbols},9515:function(o,c,t){var e=t(9594),r=t(2767),n=t(6857),a=t(8175),s=n("IE_PROTO"),i=Object.prototype;o.exports=a?Object.getPrototypeOf:function(l){return l=r(l),e(l,s)?l[s]:"function"==typeof l.constructor&&l instanceof l.constructor?l.constructor.prototype:l instanceof Object?i:null}},6406:function(o,c,t){var e=t(9594),r=t(6076),n=t(9835).indexOf,a=t(7452);o.exports=function(s,i){var v,l=r(s),u=0,f=[];for(v in l)!e(a,v)&&e(l,v)&&f.push(v);for(;i.length>u;)e(l,v=i[u++])&&(~n(f,v)||f.push(v));return f}},2087:function(o,c,t){var e=t(6406),r=t(3423);o.exports=Object.keys||function(a){return e(a,r)}},8833:function(o,c){"use strict";var t={}.propertyIsEnumerable,e=Object.getOwnPropertyDescriptor,r=e&&!t.call({1:2},1);c.f=r?function(a){var s=e(this,a);return!!s&&s.enumerable}:t},2060:function(o,c,t){var e=t(9499),r=t(8290);o.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s,n=!1,a={};try{(s=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(a,[]),n=a instanceof Array}catch(i){}return function(l,u){return e(l),r(u),n?s.call(l,u):l.__proto__=u,l}}():void 0)},1421:function(o,c,t){var e=t(6223),r=t(2087),n=t(6076),a=t(8833).f,s=function(i){return function(l){for(var T,u=n(l),f=r(u),v=f.length,d=0,p=[];v>d;)T=f[d++],(!e||a.call(u,T))&&p.push(i?[T,u[T]]:u[T]);return p}};o.exports={entries:s(!0),values:s(!1)}},9051:function(o,c,t){"use strict";var e=t(9584),r=t(3324);o.exports=e?{}.toString:function(){return"[object "+r(this)+"]"}},3252:function(o,c,t){var e=t(6743);o.exports=function(r,n){var a,s;if("string"===n&&"function"==typeof(a=r.toString)&&!e(s=a.call(r))||"function"==typeof(a=r.valueOf)&&!e(s=a.call(r))||"string"!==n&&"function"==typeof(a=r.toString)&&!e(s=a.call(r)))return s;throw TypeError("Can't convert object to primitive value")}},3670:function(o,c,t){var e=t(3077),r=t(9740),n=t(9800),a=t(9499);o.exports=e("Reflect","ownKeys")||function(i){var l=r.f(a(i)),u=n.f;return u?l.concat(u(i)):l}},3675:function(o,c,t){var e=t(1492);o.exports=e},5280:function(o){o.exports=function(c){try{return{error:!1,value:c()}}catch(t){return{error:!0,value:t}}}},7967:function(o,c,t){var e=t(9499),r=t(6743),n=t(4495);o.exports=function(a,s){if(e(a),r(s)&&s.constructor===a)return s;var i=n.f(a);return(0,i.resolve)(s),i.promise}},4151:function(o,c,t){var e=t(1415);o.exports=function(r,n,a){for(var s in n)e(r,s,n[s],a);return r}},1415:function(o,c,t){var e=t(1492),r=t(7176),n=t(9594),a=t(3753),s=t(172),i=t(8593),l=i.get,u=i.enforce,f=String(String).split("String");(o.exports=function(v,d,p,T){var R,O=!!T&&!!T.unsafe,_=!!T&&!!T.enumerable,P=!!T&&!!T.noTargetGet;"function"==typeof p&&("string"==typeof d&&!n(p,"name")&&r(p,"name",d),(R=u(p)).source||(R.source=f.join("string"==typeof d?d:""))),v!==e?(O?!P&&v[d]&&(_=!0):delete v[d],_?v[d]=p:r(v,d,p)):_?v[d]=p:a(d,p)})(Function.prototype,"toString",function(){return"function"==typeof this&&l(this).source||s(this)})},1714:function(o,c,t){var e=t(164),r=t(6193);o.exports=function(n,a){var s=n.exec;if("function"==typeof s){var i=s.call(n,a);if("object"!=typeof i)throw TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==e(n))throw TypeError("RegExp#exec called on incompatible receiver");return r.call(n,a)}},6193:function(o,c,t){"use strict";var P,R,e=t(7517),r=t(4276),n=t(3085),a=t(8174),s=t(7593),i=t(8593).get,l=t(936),u=t(6180),f=RegExp.prototype.exec,v=a("native-string-replace",String.prototype.replace),d=f,p=(P=/a/,R=/b*/g,f.call(P,"a"),f.call(R,"a"),0!==P.lastIndex||0!==R.lastIndex),T=n.UNSUPPORTED_Y||n.BROKEN_CARET,O=void 0!==/()??/.exec("")[1];(p||O||T||l||u)&&(d=function(R){var m,F,C,b,W,N,H,g=this,j=i(g),M=e(R),E=j.raw;if(E)return E.lastIndex=g.lastIndex,m=d.call(E,M),g.lastIndex=E.lastIndex,m;var k=j.groups,rt=T&&g.sticky,tt=r.call(g),K=g.source,A=0,G=M;if(rt&&(-1===(tt=tt.replace("y","")).indexOf("g")&&(tt+="g"),G=M.slice(g.lastIndex),g.lastIndex>0&&(!g.multiline||g.multiline&&"\n"!==M.charAt(g.lastIndex-1))&&(K="(?: "+K+")",G=" "+G,A++),F=new RegExp("^(?:"+K+")",tt)),O&&(F=new RegExp("^"+K+"$(?!\\s)",tt)),p&&(C=g.lastIndex),b=f.call(rt?F:g,G),rt?b?(b.input=b.input.slice(A),b[0]=b[0].slice(A),b.index=g.lastIndex,g.lastIndex+=b[0].length):g.lastIndex=0:p&&b&&(g.lastIndex=g.global?b.index+b[0].length:C),O&&b&&b.length>1&&v.call(b[0],F,function(){for(W=1;Wb)","string".charAt(5));return"b"!==r.exec("b").groups.a||"bc"!=="b".replace(r,"$c")})},9486:function(o){o.exports=function(c){if(null==c)throw TypeError("Can't call method on "+c);return c}},3471:function(o){o.exports=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}},3753:function(o,c,t){var e=t(1492);o.exports=function(r,n){try{Object.defineProperty(e,r,{value:n,configurable:!0,writable:!0})}catch(a){e[r]=n}return n}},6481:function(o,c,t){"use strict";var e=t(3077),r=t(480),n=t(2622),a=t(6223),s=n("species");o.exports=function(i){var l=e(i),u=r.f;a&&l&&!l[s]&&u(l,s,{configurable:!0,get:function(){return this}})}},489:function(o,c,t){var e=t(480).f,r=t(9594),a=t(2622)("toStringTag");o.exports=function(s,i,l){s&&!r(s=l?s:s.prototype,a)&&e(s,a,{configurable:!0,value:i})}},6857:function(o,c,t){var e=t(8174),r=t(1103),n=e("keys");o.exports=function(a){return n[a]||(n[a]=r(a))}},2117:function(o,c,t){var e=t(1492),r=t(3753),n="__core-js_shared__",a=e[n]||r(n,{});o.exports=a},8174:function(o,c,t){var e=t(3712),r=t(2117);(o.exports=function(n,a){return r[n]||(r[n]=void 0!==a?a:{})})("versions",[]).push({version:"3.16.0",mode:e?"pure":"global",copyright:"\xa9 2021 Denis Pushkarev (zloirock.ru)"})},6795:function(o,c,t){var e=t(9499),r=t(171),a=t(2622)("species");o.exports=function(s,i){var u,l=e(s).constructor;return void 0===l||null==(u=e(l)[a])?i:r(u)}},2304:function(o,c,t){var e=t(7912);o.exports=function(r){return e(function(){var n=""[r]('"');return n!==n.toLowerCase()||n.split('"').length>3})}},1663:function(o,c,t){var e=t(4497),r=t(7517),n=t(9486),a=function(s){return function(i,l){var d,p,u=r(n(i)),f=e(l),v=u.length;return f<0||f>=v?s?"":void 0:(d=u.charCodeAt(f))<55296||d>56319||f+1===v||(p=u.charCodeAt(f+1))<56320||p>57343?s?u.charAt(f):d:s?u.slice(f,f+2):p-56320+(d-55296<<10)+65536}};o.exports={codeAt:a(!1),charAt:a(!0)}},1432:function(o,c,t){var e=t(8806),r=t(7517),n=t(3680),a=t(9486),s=Math.ceil,i=function(l){return function(u,f,v){var _,P,d=r(a(u)),p=d.length,T=void 0===v?" ":r(v),O=e(f);return O<=p||""==T?d:(_=O-p,(P=n.call(T,s(_/T.length))).length>_&&(P=P.slice(0,_)),l?d+P:P+d)}};o.exports={start:i(!1),end:i(!0)}},3680:function(o,c,t){"use strict";var e=t(4497),r=t(7517),n=t(9486);o.exports=function(s){var i=r(n(this)),l="",u=e(s);if(u<0||u==1/0)throw RangeError("Wrong number of repetitions");for(;u>0;(u>>>=1)&&(i+=i))1&u&&(l+=i);return l}},332:function(o,c,t){var e=t(7912),r=t(9760);o.exports=function(a){return e(function(){return!!r[a]()||"\u200b\x85\u180e"!="\u200b\x85\u180e"[a]()||r[a].name!==a})}},4462:function(o,c,t){var e=t(9486),r=t(7517),a="["+t(9760)+"]",s=RegExp("^"+a+a+"*"),i=RegExp(a+a+"*$"),l=function(u){return function(f){var v=r(e(f));return 1&u&&(v=v.replace(s,"")),2&u&&(v=v.replace(i,"")),v}};o.exports={start:l(1),end:l(2),trim:l(3)}},918:function(o,c,t){var P,R,g,j,e=t(1492),r=t(7912),n=t(7907),a=t(3111),s=t(5349),i=t(4968),l=t(1951),u=e.setImmediate,f=e.clearImmediate,v=e.process,d=e.MessageChannel,p=e.Dispatch,T=0,O={},_="onreadystatechange";try{P=e.location}catch(C){}var M=function(C){if(O.hasOwnProperty(C)){var b=O[C];delete O[C],b()}},E=function(C){return function(){M(C)}},m=function(C){M(C.data)},F=function(C){e.postMessage(String(C),P.protocol+"//"+P.host)};(!u||!f)&&(u=function(b){for(var W=[],N=arguments.length,H=1;N>H;)W.push(arguments[H++]);return O[++T]=function(){("function"==typeof b?b:Function(b)).apply(void 0,W)},R(T),T},f=function(b){delete O[b]},l?R=function(C){v.nextTick(E(C))}:p&&p.now?R=function(C){p.now(E(C))}:d&&!i?(j=(g=new d).port2,g.port1.onmessage=m,R=n(j.postMessage,j,1)):e.addEventListener&&"function"==typeof postMessage&&!e.importScripts&&P&&"file:"!==P.protocol&&!r(F)?(R=F,e.addEventListener("message",m,!1)):R=_ in s("script")?function(C){a.appendChild(s("script"))[_]=function(){a.removeChild(this),M(C)}}:function(C){setTimeout(E(C),0)}),o.exports={set:u,clear:f}},4654:function(o,c,t){var e=t(164);o.exports=function(r){if("number"!=typeof r&&"Number"!=e(r))throw TypeError("Incorrect invocation");return+r}},9625:function(o,c,t){var e=t(4497),r=Math.max,n=Math.min;o.exports=function(a,s){var i=e(a);return i<0?r(i+s,0):n(i,s)}},6076:function(o,c,t){var e=t(3418),r=t(9486);o.exports=function(n){return e(r(n))}},4497:function(o){var c=Math.ceil,t=Math.floor;o.exports=function(e){return isNaN(e=+e)?0:(e>0?t:c)(e)}},8806:function(o,c,t){var e=t(4497),r=Math.min;o.exports=function(n){return n>0?r(e(n),9007199254740991):0}},2767:function(o,c,t){var e=t(9486);o.exports=function(r){return Object(e(r))}},8673:function(o,c,t){var e=t(6743),r=t(3071),n=t(3252),s=t(2622)("toPrimitive");o.exports=function(i,l){if(!e(i)||r(i))return i;var f,u=i[s];if(void 0!==u){if(void 0===l&&(l="default"),f=u.call(i,l),!e(f)||r(f))return f;throw TypeError("Can't convert object to primitive value")}return void 0===l&&(l="number"),n(i,l)}},2552:function(o,c,t){var e=t(8673),r=t(3071);o.exports=function(n){var a=e(n,"string");return r(a)?a:String(a)}},9584:function(o,c,t){var n={};n[t(2622)("toStringTag")]="z",o.exports="[object z]"===String(n)},7517:function(o,c,t){var e=t(3071);o.exports=function(r){if(e(r))throw TypeError("Cannot convert a Symbol value to a string");return String(r)}},1103:function(o){var c=0,t=Math.random();o.exports=function(e){return"Symbol("+String(void 0===e?"":e)+")_"+(++c+t).toString(36)}},486:function(o,c,t){var e=t(3391);o.exports=e&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},144:function(o,c,t){var e=t(2622);c.f=e},2622:function(o,c,t){var e=t(1492),r=t(8174),n=t(9594),a=t(1103),s=t(3391),i=t(486),l=r("wks"),u=e.Symbol,f=i?u:u&&u.withoutSetter||a;o.exports=function(v){return(!n(l,v)||!(s||"string"==typeof l[v]))&&(s&&n(u,v)?l[v]=u[v]:l[v]=f("Symbol."+v)),l[v]}},9760:function(o){o.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"},596:function(o,c,t){"use strict";var e=t(8301),r=t(7912),n=t(1147),a=t(6743),s=t(2767),i=t(8806),l=t(2966),u=t(3784),f=t(7795),v=t(2622),d=t(8630),p=v("isConcatSpreadable"),T=9007199254740991,O="Maximum allowed index exceeded",_=d>=51||!r(function(){var j=[];return j[p]=!1,j.concat()[0]!==j}),P=f("concat"),R=function(j){if(!a(j))return!1;var M=j[p];return void 0!==M?!!M:n(j)};e({target:"Array",proto:!0,forced:!_||!P},{concat:function(M){var C,b,W,N,H,E=s(this),m=u(E,0),F=0;for(C=-1,W=arguments.length;CT)throw TypeError(O);for(b=0;b=T)throw TypeError(O);l(m,F++,H)}return m.length=F,m}})},2877:function(o,c,t){var e=t(8301),r=t(2122),n=t(9507);e({target:"Array",proto:!0},{copyWithin:r}),n("copyWithin")},4693:function(o,c,t){"use strict";var e=t(8301),r=t(7354).every;e({target:"Array",proto:!0,forced:!t(2130)("every")},{every:function(i){return r(this,i,arguments.length>1?arguments[1]:void 0)}})},1970:function(o,c,t){var e=t(8301),r=t(9091),n=t(9507);e({target:"Array",proto:!0},{fill:r}),n("fill")},6487:function(o,c,t){"use strict";var e=t(8301),r=t(7354).filter;e({target:"Array",proto:!0,forced:!t(7795)("filter")},{filter:function(i){return r(this,i,arguments.length>1?arguments[1]:void 0)}})},2480:function(o,c,t){"use strict";var e=t(8301),r=t(7354).findIndex,n=t(9507),a="findIndex",s=!0;a in[]&&Array(1)[a](function(){s=!1}),e({target:"Array",proto:!0,forced:s},{findIndex:function(l){return r(this,l,arguments.length>1?arguments[1]:void 0)}}),n(a)},8609:function(o,c,t){"use strict";var e=t(8301),r=t(7354).find,n=t(9507),a="find",s=!0;a in[]&&Array(1)[a](function(){s=!1}),e({target:"Array",proto:!0,forced:s},{find:function(l){return r(this,l,arguments.length>1?arguments[1]:void 0)}}),n(a)},6976:function(o,c,t){"use strict";var e=t(8301),r=t(3022),n=t(2767),a=t(8806),s=t(171),i=t(3784);e({target:"Array",proto:!0},{flatMap:function(u){var d,f=n(this),v=a(f.length);return s(u),(d=i(f,0)).length=r(d,f,f,v,0,1,u,arguments.length>1?arguments[1]:void 0),d}})},3196:function(o,c,t){"use strict";var e=t(8301),r=t(3022),n=t(2767),a=t(8806),s=t(4497),i=t(3784);e({target:"Array",proto:!0},{flat:function(){var u=arguments.length?arguments[0]:void 0,f=n(this),v=a(f.length),d=i(f,0);return d.length=r(d,f,f,v,0,void 0===u?1:s(u)),d}})},9657:function(o,c,t){"use strict";var e=t(8301),r=t(8367);e({target:"Array",proto:!0,forced:[].forEach!=r},{forEach:r})},564:function(o,c,t){var e=t(8301),r=t(8646);e({target:"Array",stat:!0,forced:!t(4533)(function(s){Array.from(s)})},{from:r})},465:function(o,c,t){"use strict";var e=t(8301),r=t(9835).includes,n=t(9507);e({target:"Array",proto:!0},{includes:function(s){return r(this,s,arguments.length>1?arguments[1]:void 0)}}),n("includes")},3340:function(o,c,t){"use strict";var e=t(8301),r=t(9835).indexOf,n=t(2130),a=[].indexOf,s=!!a&&1/[1].indexOf(1,-0)<0,i=n("indexOf");e({target:"Array",proto:!0,forced:s||!i},{indexOf:function(u){return s?a.apply(this,arguments)||0:r(this,u,arguments.length>1?arguments[1]:void 0)}})},9560:function(o,c,t){t(8301)({target:"Array",stat:!0},{isArray:t(1147)})},9407:function(o,c,t){"use strict";var e=t(6076),r=t(9507),n=t(8802),a=t(8593),s=t(8020),i="Array Iterator",l=a.set,u=a.getterFor(i);o.exports=s(Array,"Array",function(f,v){l(this,{type:i,target:e(f),index:0,kind:v})},function(){var f=u(this),v=f.target,d=f.kind,p=f.index++;return!v||p>=v.length?(f.target=void 0,{value:void 0,done:!0}):"keys"==d?{value:p,done:!1}:"values"==d?{value:v[p],done:!1}:{value:[p,v[p]],done:!1}},"values"),n.Arguments=n.Array,r("keys"),r("values"),r("entries")},6395:function(o,c,t){"use strict";var e=t(8301),r=t(3418),n=t(6076),a=t(2130),s=[].join,i=r!=Object,l=a("join",",");e({target:"Array",proto:!0,forced:i||!l},{join:function(f){return s.call(n(this),void 0===f?",":f)}})},6280:function(o,c,t){var e=t(8301),r=t(5722);e({target:"Array",proto:!0,forced:r!==[].lastIndexOf},{lastIndexOf:r})},2526:function(o,c,t){"use strict";var e=t(8301),r=t(7354).map;e({target:"Array",proto:!0,forced:!t(7795)("map")},{map:function(i){return r(this,i,arguments.length>1?arguments[1]:void 0)}})},721:function(o,c,t){"use strict";var e=t(8301),r=t(7912),n=t(2966);e({target:"Array",stat:!0,forced:r(function(){function s(){}return!(Array.of.call(s)instanceof s)})},{of:function(){for(var i=0,l=arguments.length,u=new("function"==typeof this?this:Array)(l);l>i;)n(u,i,arguments[i++]);return u.length=l,u}})},3548:function(o,c,t){"use strict";var e=t(8301),r=t(1922).right,n=t(2130),a=t(8630),s=t(1951);e({target:"Array",proto:!0,forced:!n("reduceRight")||!s&&a>79&&a<83},{reduceRight:function(f){return r(this,f,arguments.length,arguments.length>1?arguments[1]:void 0)}})},176:function(o,c,t){"use strict";var e=t(8301),r=t(1922).left,n=t(2130),a=t(8630),s=t(1951);e({target:"Array",proto:!0,forced:!n("reduce")||!s&&a>79&&a<83},{reduce:function(f){return r(this,f,arguments.length,arguments.length>1?arguments[1]:void 0)}})},2825:function(o,c,t){"use strict";var e=t(8301),r=t(6743),n=t(1147),a=t(9625),s=t(8806),i=t(6076),l=t(2966),u=t(2622),v=t(7795)("slice"),d=u("species"),p=[].slice,T=Math.max;e({target:"Array",proto:!0,forced:!v},{slice:function(_,P){var E,m,F,R=i(this),g=s(R.length),j=a(_,g),M=a(void 0===P?g:P,g);if(n(R)&&("function"!=typeof(E=R.constructor)||E!==Array&&!n(E.prototype)?r(E)&&(null===(E=E[d])&&(E=void 0)):E=void 0,E===Array||void 0===E))return p.call(R,j,M);for(m=new(void 0===E?Array:E)(T(M-j,0)),F=0;j1?arguments[1]:void 0)}})},6011:function(o,c,t){"use strict";var e=t(8301),r=t(171),n=t(2767),a=t(8806),s=t(7517),i=t(7912),l=t(6756),u=t(2130),f=t(7029),v=t(5188),d=t(8630),p=t(629),T=[],O=T.sort,_=i(function(){T.sort(void 0)}),P=i(function(){T.sort(null)}),R=u("sort"),g=!i(function(){if(d)return d<70;if(!(f&&f>3)){if(v)return!0;if(p)return p<603;var m,F,C,b,E="";for(m=65;m<76;m++){switch(F=String.fromCharCode(m),m){case 66:case 69:case 70:case 72:C=3;break;case 68:case 71:C=4;break;default:C=2}for(b=0;b<47;b++)T.push({k:F+b,v:C})}for(T.sort(function(W,N){return N.v-W.v}),b=0;bs(F)?1:-1}}(m)),W=C.length,N=0;Np)throw TypeError(T);for(F=i(R,m),C=0;Cg-m+E;C--)delete R[C-1]}else if(E>m)for(C=g-m;C>j;C--)W=C+E-1,(b=C+m-1)in R?R[W]=R[b]:delete R[W];for(C=0;C94906265.62425156?a(f)+i:r(f-1+s(f-1)*s(f+1))}})},5110:function(o,c,t){var e=t(8301),r=Math.asinh,n=Math.log,a=Math.sqrt;e({target:"Math",stat:!0,forced:!(r&&1/r(0)>0)},{asinh:function s(i){return isFinite(i=+i)&&0!=i?i<0?-s(-i):n(i+a(i*i+1)):i}})},4266:function(o,c,t){var e=t(8301),r=Math.atanh,n=Math.log;e({target:"Math",stat:!0,forced:!(r&&1/r(-0)<0)},{atanh:function(s){return 0==(s=+s)?s:n((1+s)/(1-s))/2}})},9353:function(o,c,t){var e=t(8301),r=t(4900),n=Math.abs,a=Math.pow;e({target:"Math",stat:!0},{cbrt:function(i){return r(i=+i)*a(n(i),1/3)}})},122:function(o,c,t){var e=t(8301),r=Math.floor,n=Math.log,a=Math.LOG2E;e({target:"Math",stat:!0},{clz32:function(i){return(i>>>=0)?31-r(n(i+.5)*a):32}})},8733:function(o,c,t){var e=t(8301),r=t(7251),n=Math.cosh,a=Math.abs,s=Math.E;e({target:"Math",stat:!0,forced:!n||n(710)===1/0},{cosh:function(l){var u=r(a(l)-1)+1;return(u+1/(u*s*s))*(s/2)}})},8910:function(o,c,t){var e=t(8301),r=t(7251);e({target:"Math",stat:!0,forced:r!=Math.expm1},{expm1:r})},2783:function(o,c,t){t(8301)({target:"Math",stat:!0},{fround:t(9930)})},9739:function(o,c,t){var e=t(8301),r=Math.hypot,n=Math.abs,a=Math.sqrt;e({target:"Math",stat:!0,forced:!!r&&r(1/0,NaN)!==1/0},{hypot:function(l,u){for(var T,O,f=0,v=0,d=arguments.length,p=0;v0?f+=(O=T/p)*O:f+=T;return p===1/0?1/0:p*a(f)}})},9002:function(o,c,t){var e=t(8301),r=t(7912),n=Math.imul;e({target:"Math",stat:!0,forced:r(function(){return-5!=n(4294967295,5)||2!=n.length})},{imul:function(i,l){var u=65535,f=+i,v=+l,d=u&f,p=u&v;return 0|d*p+((u&f>>>16)*p+d*(u&v>>>16)<<16>>>0)}})},8281:function(o,c,t){var e=t(8301),r=Math.log,n=Math.LOG10E;e({target:"Math",stat:!0},{log10:function(s){return r(s)*n}})},5428:function(o,c,t){t(8301)({target:"Math",stat:!0},{log1p:t(3572)})},6681:function(o,c,t){var e=t(8301),r=Math.log,n=Math.LN2;e({target:"Math",stat:!0},{log2:function(s){return r(s)/n}})},4961:function(o,c,t){t(8301)({target:"Math",stat:!0},{sign:t(4900)})},8092:function(o,c,t){var e=t(8301),r=t(7912),n=t(7251),a=Math.abs,s=Math.exp,i=Math.E;e({target:"Math",stat:!0,forced:r(function(){return-2e-17!=Math.sinh(-2e-17)})},{sinh:function(f){return a(f=+f)<1?(n(f)-n(-f))/2:(s(f-1)-s(-f-1))*(i/2)}})},2394:function(o,c,t){var e=t(8301),r=t(7251),n=Math.exp;e({target:"Math",stat:!0},{tanh:function(s){var i=r(s=+s),l=r(-s);return i==1/0?1:l==1/0?-1:(i-l)/(n(s)+n(-s))}})},3296:function(o,c,t){t(489)(Math,"Math",!0)},3773:function(o,c,t){var e=t(8301),r=Math.ceil,n=Math.floor;e({target:"Math",stat:!0},{trunc:function(s){return(s>0?n:r)(s)}})},4200:function(o,c,t){"use strict";var e=t(6223),r=t(1492),n=t(2263),a=t(1415),s=t(9594),i=t(164),l=t(4939),u=t(3071),f=t(8673),v=t(7912),d=t(7593),p=t(9740).f,T=t(1867).f,O=t(480).f,_=t(4462).trim,P="Number",R=r[P],g=R.prototype,j=i(d(g))==P,M=function(b){if(u(b))throw TypeError("Cannot convert a Symbol value to a number");var N,H,k,rt,tt,K,A,G,W=f(b,"number");if("string"==typeof W&&W.length>2)if(43===(N=(W=_(W)).charCodeAt(0))||45===N){if(88===(H=W.charCodeAt(2))||120===H)return NaN}else if(48===N){switch(W.charCodeAt(1)){case 66:case 98:k=2,rt=49;break;case 79:case 111:k=8,rt=55;break;default:return+W}for(K=(tt=W.slice(2)).length,A=0;Art)return NaN;return parseInt(tt,k)}return+W};if(n(P,!R(" 0o1")||!R("0b1")||R("+0x1"))){for(var C,E=function(W){var N=arguments.length<1?0:W,H=this;return H instanceof E&&(j?v(function(){g.valueOf.call(H)}):i(H)!=P)?l(new R(M(N)),H,E):M(N)},m=e?p(R):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger,fromString,range".split(","),F=0;m.length>F;F++)s(R,C=m[F])&&!s(E,C)&&O(E,C,T(R,C));E.prototype=g,g.constructor=E,a(r,P,E)}},4898:function(o,c,t){t(8301)({target:"Number",stat:!0},{EPSILON:Math.pow(2,-52)})},4815:function(o,c,t){t(8301)({target:"Number",stat:!0},{isFinite:t(6152)})},3871:function(o,c,t){t(8301)({target:"Number",stat:!0},{isInteger:t(2181)})},3342:function(o,c,t){t(8301)({target:"Number",stat:!0},{isNaN:function(n){return n!=n}})},5304:function(o,c,t){var e=t(8301),r=t(2181),n=Math.abs;e({target:"Number",stat:!0},{isSafeInteger:function(s){return r(s)&&n(s)<=9007199254740991}})},5964:function(o,c,t){t(8301)({target:"Number",stat:!0},{MAX_SAFE_INTEGER:9007199254740991})},7671:function(o,c,t){t(8301)({target:"Number",stat:!0},{MIN_SAFE_INTEGER:-9007199254740991})},1998:function(o,c,t){var e=t(8301),r=t(8671);e({target:"Number",stat:!0,forced:Number.parseFloat!=r},{parseFloat:r})},7902:function(o,c,t){var e=t(8301),r=t(5281);e({target:"Number",stat:!0,forced:Number.parseInt!=r},{parseInt:r})},3741:function(o,c,t){"use strict";var e=t(8301),r=t(4497),n=t(4654),a=t(3680),s=t(7912),i=1..toFixed,l=Math.floor,u=function(O,_,P){return 0===_?P:_%2==1?u(O,_-1,P*O):u(O*O,_/2,P)},v=function(O,_,P){for(var R=-1,g=P;++R<6;)g+=_*O[R],O[R]=g%1e7,g=l(g/1e7)},d=function(O,_){for(var P=6,R=0;--P>=0;)R+=O[P],O[P]=l(R/_),R=R%_*1e7},p=function(O){for(var _=6,P="";--_>=0;)if(""!==P||0===_||0!==O[_]){var R=String(O[_]);P=""===P?R:P+a.call("0",7-R.length)+R}return P};e({target:"Number",proto:!0,forced:i&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!s(function(){i.call({})})},{toFixed:function(_){var E,m,F,C,P=n(this),R=r(_),g=[0,0,0,0,0,0],j="",M="0";if(R<0||R>20)throw RangeError("Incorrect fraction digits");if(P!=P)return"NaN";if(P<=-1e21||P>=1e21)return String(P);if(P<0&&(j="-",P=-P),P>1e-21)if(E=function(O){for(var _=0,P=O;P>=4096;)_+=12,P/=4096;for(;P>=2;)_+=1,P/=2;return _}(P*u(2,69,1))-69,m=E<0?P*u(2,-E,1):P/u(2,E,1),m*=4503599627370496,(E=52-E)>0){for(v(g,0,m),F=R;F>=7;)v(g,1e7,0),F-=7;for(v(g,u(10,F,1),0),F=E-1;F>=23;)d(g,1<<23),F-=23;d(g,1<0?M=j+((C=M.length)<=R?"0."+a.call("0",R-C)+M:M.slice(0,C-R)+"."+M.slice(C-R)):M=j+M,M}})},1246:function(o,c,t){"use strict";var e=t(8301),r=t(7912),n=t(4654),a=1..toPrecision;e({target:"Number",proto:!0,forced:r(function(){return"1"!==a.call(1,void 0)})||!r(function(){a.call({})})},{toPrecision:function(l){return void 0===l?a.call(n(this)):a.call(n(this),l)}})},6802:function(o,c,t){var e=t(8301),r=t(1235);e({target:"Object",stat:!0,forced:Object.assign!==r},{assign:r})},5983:function(o,c,t){t(8301)({target:"Object",stat:!0,sham:!t(6223)},{create:t(7593)})},8932:function(o,c,t){var e=t(8301),r=t(6223);e({target:"Object",stat:!0,forced:!r,sham:!r},{defineProperties:t(6624)})},4404:function(o,c,t){var e=t(8301),r=t(6223);e({target:"Object",stat:!0,forced:!r,sham:!r},{defineProperty:t(480).f})},7673:function(o,c,t){var e=t(8301),r=t(1421).entries;e({target:"Object",stat:!0},{entries:function(a){return r(a)}})},6637:function(o,c,t){var e=t(8301),r=t(2477),n=t(7912),a=t(6743),s=t(4860).onFreeze,i=Object.freeze;e({target:"Object",stat:!0,forced:n(function(){i(1)}),sham:!r},{freeze:function(f){return i&&a(f)?i(s(f)):f}})},6042:function(o,c,t){var e=t(8301),r=t(3598),n=t(2966);e({target:"Object",stat:!0},{fromEntries:function(s){var i={};return r(s,function(l,u){n(i,l,u)},{AS_ENTRIES:!0}),i}})},3229:function(o,c,t){var e=t(8301),r=t(7912),n=t(6076),a=t(1867).f,s=t(6223),i=r(function(){a(1)});e({target:"Object",stat:!0,forced:!s||i,sham:!s},{getOwnPropertyDescriptor:function(f,v){return a(n(f),v)}})},7177:function(o,c,t){var e=t(8301),r=t(6223),n=t(3670),a=t(6076),s=t(1867),i=t(2966);e({target:"Object",stat:!0,sham:!r},{getOwnPropertyDescriptors:function(u){for(var O,_,f=a(u),v=s.f,d=n(f),p={},T=0;d.length>T;)void 0!==(_=v(f,O=d[T++]))&&i(p,O,_);return p}})},4018:function(o,c,t){var e=t(8301),r=t(7912),n=t(863).f;e({target:"Object",stat:!0,forced:r(function(){return!Object.getOwnPropertyNames(1)})},{getOwnPropertyNames:n})},9525:function(o,c,t){var e=t(8301),r=t(7912),n=t(2767),a=t(9515),s=t(8175);e({target:"Object",stat:!0,forced:r(function(){a(1)}),sham:!s},{getPrototypeOf:function(u){return a(n(u))}})},4690:function(o,c,t){var e=t(8301),r=t(7912),n=t(6743),a=Object.isExtensible;e({target:"Object",stat:!0,forced:r(function(){a(1)})},{isExtensible:function(l){return!!n(l)&&(!a||a(l))}})},1295:function(o,c,t){var e=t(8301),r=t(7912),n=t(6743),a=Object.isFrozen;e({target:"Object",stat:!0,forced:r(function(){a(1)})},{isFrozen:function(l){return!n(l)||!!a&&a(l)}})},1287:function(o,c,t){var e=t(8301),r=t(7912),n=t(6743),a=Object.isSealed;e({target:"Object",stat:!0,forced:r(function(){a(1)})},{isSealed:function(l){return!n(l)||!!a&&a(l)}})},3046:function(o,c,t){t(8301)({target:"Object",stat:!0},{is:t(3471)})},6650:function(o,c,t){var e=t(8301),r=t(2767),n=t(2087);e({target:"Object",stat:!0,forced:t(7912)(function(){n(1)})},{keys:function(l){return n(r(l))}})},382:function(o,c,t){var e=t(8301),r=t(6743),n=t(4860).onFreeze,a=t(2477),s=t(7912),i=Object.preventExtensions;e({target:"Object",stat:!0,forced:s(function(){i(1)}),sham:!a},{preventExtensions:function(f){return i&&r(f)?i(n(f)):f}})},9662:function(o,c,t){var e=t(8301),r=t(6743),n=t(4860).onFreeze,a=t(2477),s=t(7912),i=Object.seal;e({target:"Object",stat:!0,forced:s(function(){i(1)}),sham:!a},{seal:function(f){return i&&r(f)?i(n(f)):f}})},6803:function(o,c,t){t(8301)({target:"Object",stat:!0},{setPrototypeOf:t(2060)})},4405:function(o,c,t){var e=t(9584),r=t(1415),n=t(9051);e||r(Object.prototype,"toString",n,{unsafe:!0})},2322:function(o,c,t){var e=t(8301),r=t(1421).values;e({target:"Object",stat:!0},{values:function(a){return r(a)}})},6461:function(o,c,t){var e=t(8301),r=t(8671);e({global:!0,forced:parseFloat!=r},{parseFloat:r})},840:function(o,c,t){var e=t(8301),r=t(5281);e({global:!0,forced:parseInt!=r},{parseInt:r})},3400:function(o,c,t){"use strict";var ce,pe,me,ye,e=t(8301),r=t(3712),n=t(1492),a=t(3077),s=t(8591),i=t(1415),l=t(4151),u=t(2060),f=t(489),v=t(6481),d=t(6743),p=t(171),T=t(133),O=t(172),_=t(3598),P=t(4533),R=t(6795),g=t(918).set,j=t(5669),M=t(7967),E=t(5161),m=t(4495),F=t(5280),C=t(8593),b=t(2263),W=t(2622),N=t(2830),H=t(1951),k=t(8630),rt=W("species"),tt="Promise",K=C.get,A=C.set,G=C.getterFor(tt),Y=s&&s.prototype,z=s,J=Y,nt=n.TypeError,mt=n.document,ht=n.process,Tt=m.f,xt=Tt,Wt=!!(mt&&mt.createEvent&&n.dispatchEvent),St="function"==typeof PromiseRejectionEvent,Ct="unhandledrejection",he=!1,ne=b(tt,function(){var y=O(z),S=y!==String(z);if(!S&&66===k||r&&!J.finally)return!0;if(k>=51&&/native code/.test(y))return!1;var U=new z(function(at){at(1)}),Z=function(at){at(function(){},function(){})};return(U.constructor={})[rt]=Z,!(he=U.then(function(){})instanceof Z)||!S&&N&&!St}),ve=ne||!P(function(y){z.all(y).catch(function(){})}),Xt=function(y){var S;return!(!d(y)||"function"!=typeof(S=y.then))&&S},oe=function(y,S){if(!y.notified){y.notified=!0;var U=y.reactions;j(function(){for(var Z=y.value,q=1==y.state,at=0;U.length>at;){var Nt,ee,Kt,ut=U[at++],pt=q?ut.ok:ut.fail,yt=ut.resolve,bt=ut.reject,_t=ut.domain;try{pt?(q||(2===y.rejection&&I(y),y.rejection=1),!0===pt?Nt=Z:(_t&&_t.enter(),Nt=pt(Z),_t&&(_t.exit(),Kt=!0)),Nt===ut.promise?bt(nt("Promise-chain cycle")):(ee=Xt(Nt))?ee.call(Nt,yt,bt):yt(Nt)):bt(Z)}catch(Gt){_t&&!Kt&&_t.exit(),bt(Gt)}}y.reactions=[],y.notified=!1,S&&!y.rejection&&Oe(y)})}},se=function(y,S,U){var Z,q;Wt?((Z=mt.createEvent("Event")).promise=S,Z.reason=U,Z.initEvent(y,!1,!0),n.dispatchEvent(Z)):Z={promise:S,reason:U},!St&&(q=n["on"+y])?q(Z):y===Ct&&E("Unhandled promise rejection",U)},Oe=function(y){g.call(n,function(){var q,S=y.facade,U=y.value;if(ge(y)&&(q=F(function(){H?ht.emit("unhandledRejection",U,S):se(Ct,S,U)}),y.rejection=H||ge(y)?2:1,q.error))throw q.value})},ge=function(y){return 1!==y.rejection&&!y.parent},I=function(y){g.call(n,function(){var S=y.facade;H?ht.emit("rejectionHandled",S):se("rejectionhandled",S,y.value)})},x=function(y,S,U){return function(Z){y(S,Z,U)}},$=function(y,S,U){y.done||(y.done=!0,U&&(y=U),y.value=S,y.state=2,oe(y,!0))},V=function(y,S,U){if(!y.done){y.done=!0,U&&(y=U);try{if(y.facade===S)throw nt("Promise can't be resolved itself");var Z=Xt(S);Z?j(function(){var q={done:!1};try{Z.call(S,x(V,q,y),x($,q,y))}catch(at){$(q,at,y)}}):(y.value=S,y.state=1,oe(y,!1))}catch(q){$({done:!1},q,y)}}};if(ne&&(J=(z=function(S){T(this,z,tt),p(S),ce.call(this);var U=K(this);try{S(x(V,U),x($,U))}catch(Z){$(U,Z)}}).prototype,(ce=function(S){A(this,{type:tt,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=l(J,{then:function(S,U){var Z=G(this),q=Tt(R(this,z));return q.ok="function"!=typeof S||S,q.fail="function"==typeof U&&U,q.domain=H?ht.domain:void 0,Z.parent=!0,Z.reactions.push(q),0!=Z.state&&oe(Z,!1),q.promise},catch:function(y){return this.then(void 0,y)}}),pe=function(){var y=new ce,S=K(y);this.promise=y,this.resolve=x(V,S),this.reject=x($,S)},m.f=Tt=function(y){return y===z||y===me?new pe(y):xt(y)},!r&&"function"==typeof s&&Y!==Object.prototype)){ye=Y.then,he||(i(Y,"then",function(S,U){var Z=this;return new z(function(q,at){ye.call(Z,q,at)}).then(S,U)},{unsafe:!0}),i(Y,"catch",J.catch,{unsafe:!0}));try{delete Y.constructor}catch(y){}u&&u(Y,J)}e({global:!0,wrap:!0,forced:ne},{Promise:z}),f(z,tt,!1,!0),v(tt),me=a(tt),e({target:tt,stat:!0,forced:ne},{reject:function(S){var U=Tt(this);return U.reject.call(void 0,S),U.promise}}),e({target:tt,stat:!0,forced:r||ne},{resolve:function(S){return M(r&&this===me?z:this,S)}}),e({target:tt,stat:!0,forced:ve},{all:function(S){var U=this,Z=Tt(U),q=Z.resolve,at=Z.reject,ut=F(function(){var pt=p(U.resolve),yt=[],bt=0,_t=1;_(S,function(Nt){var ee=bt++,Kt=!1;yt.push(void 0),_t++,pt.call(U,Nt).then(function(Gt){Kt||(Kt=!0,yt[ee]=Gt,--_t||q(yt))},at)}),--_t||q(yt)});return ut.error&&at(ut.value),Z.promise},race:function(S){var U=this,Z=Tt(U),q=Z.reject,at=F(function(){var ut=p(U.resolve);_(S,function(pt){ut.call(U,pt).then(Z.resolve,q)})});return at.error&&q(at.value),Z.promise}})},6101:function(o,c,t){var e=t(8301),r=t(1492),n=t(489);e({global:!0},{Reflect:{}}),n(r.Reflect,"Reflect",!0)},8600:function(o,c,t){var e=t(6223),r=t(1492),n=t(2263),a=t(4939),s=t(7176),i=t(480).f,l=t(9740).f,u=t(4715),f=t(7517),v=t(4276),d=t(3085),p=t(1415),T=t(7912),O=t(9594),_=t(8593).enforce,P=t(6481),R=t(2622),g=t(936),j=t(6180),M=R("match"),E=r.RegExp,m=E.prototype,F=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,C=/a/g,b=/a/g,W=new E(C)!==C,N=d.UNSUPPORTED_Y,H=e&&(!W||N||g||j||T(function(){return b[M]=!1,E(C)!=C||E(b)==b||"/a/i"!=E(C,"i")}));if(n("RegExp",H)){for(var tt=function(z,J){var Wt,St,Ct,wt,le,Jt,nt=this instanceof tt,mt=u(z),ht=void 0===J,Tt=[],xt=z;if(!nt&&mt&&ht&&z.constructor===tt)return z;if((mt||z instanceof tt)&&(z=z.source,ht&&(J="flags"in xt?xt.flags:v.call(xt))),z=void 0===z?"":f(z),J=void 0===J?"":f(J),xt=z,g&&"dotAll"in C&&((St=!!J&&J.indexOf("s")>-1)&&(J=J.replace(/s/g,""))),Wt=J,N&&"sticky"in C&&((Ct=!!J&&J.indexOf("y")>-1)&&(J=J.replace(/y/g,""))),j&&(wt=function(Y){for(var Ct,z=Y.length,J=0,nt="",mt=[],ht={},Tt=!1,xt=!1,Wt=0,St="";J<=z;J++){if("\\"===(Ct=Y.charAt(J)))Ct+=Y.charAt(++J);else if("]"===Ct)Tt=!1;else if(!Tt)switch(!0){case"["===Ct:Tt=!0;break;case"("===Ct:F.test(Y.slice(J+1))&&(J+=2,xt=!0),nt+=Ct,Wt++;continue;case">"===Ct&&xt:if(""===St||O(ht,St))throw new SyntaxError("Invalid capture group name");ht[St]=!0,mt.push([St,Wt]),xt=!1,St="";continue}xt?St+=Ct:nt+=Ct}return[nt,mt]}(z),z=wt[0],Tt=wt[1]),le=a(E(z,J),nt?this:m,tt),(St||Ct||Tt.length)&&(Jt=_(le),St&&(Jt.dotAll=!0,Jt.raw=tt(function(Y){for(var ht,z=Y.length,J=0,nt="",mt=!1;J<=z;J++)"\\"!==(ht=Y.charAt(J))?mt||"."!==ht?("["===ht?mt=!0:"]"===ht&&(mt=!1),nt+=ht):nt+="[\\s\\S]":nt+=ht+Y.charAt(++J);return nt}(z),Wt)),Ct&&(Jt.sticky=!0),Tt.length&&(Jt.groups=Tt)),z!==xt)try{s(le,"source",""===xt?"(?:)":xt)}catch(fe){}return le},K=function(Y){Y in tt||i(tt,Y,{configurable:!0,get:function(){return E[Y]},set:function(z){E[Y]=z}})},A=l(E),G=0;A.length>G;)K(A[G++]);m.constructor=tt,tt.prototype=m,p(r,"RegExp",tt)}P("RegExp")},1027:function(o,c,t){"use strict";var e=t(8301),r=t(6193);e({target:"RegExp",proto:!0,forced:/./.exec!==r},{exec:r})},7332:function(o,c,t){var e=t(6223),r=t(480),n=t(4276),a=t(7912);e&&a(function(){return"sy"!==Object.getOwnPropertyDescriptor(RegExp.prototype,"flags").get.call({dotAll:!0,sticky:!0})})&&r.f(RegExp.prototype,"flags",{configurable:!0,get:n})},2514:function(o,c,t){"use strict";var e=t(1415),r=t(9499),n=t(7517),a=t(7912),s=t(4276),i="toString",l=RegExp.prototype,u=l[i],f=a(function(){return"/a/b"!=u.call({source:"a",flags:"b"})}),v=u.name!=i;(f||v)&&e(RegExp.prototype,i,function(){var p=r(this),T=n(p.source),O=p.flags;return"/"+T+"/"+n(void 0===O&&p instanceof RegExp&&!("flags"in l)?s.call(p):O)},{unsafe:!0})},4118:function(o,c,t){"use strict";var e=t(877),r=t(6342);o.exports=e("Set",function(n){return function(){return n(this,arguments.length?arguments[0]:void 0)}},r)},7694:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("anchor")},{anchor:function(s){return r(this,"a","name",s)}})},4623:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("big")},{big:function(){return r(this,"big","","")}})},2799:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("blink")},{blink:function(){return r(this,"blink","","")}})},976:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("bold")},{bold:function(){return r(this,"b","","")}})},2713:function(o,c,t){"use strict";var e=t(8301),r=t(1663).codeAt;e({target:"String",proto:!0},{codePointAt:function(a){return r(this,a)}})},4460:function(o,c,t){"use strict";var T,e=t(8301),r=t(1867).f,n=t(8806),a=t(7517),s=t(7258),i=t(9486),l=t(2013),u=t(3712),f="".endsWith,v=Math.min,d=l("endsWith");e({target:"String",proto:!0,forced:!!(u||d||(T=r(String.prototype,"endsWith"),!T||T.writable))&&!d},{endsWith:function(O){var _=a(i(this));s(O);var P=arguments.length>1?arguments[1]:void 0,R=n(_.length),g=void 0===P?R:v(n(P),R),j=a(O);return f?f.call(_,j,g):_.slice(g-j.length,g)===j}})},8491:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("fixed")},{fixed:function(){return r(this,"tt","","")}})},8937:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("fontcolor")},{fontcolor:function(s){return r(this,"font","color",s)}})},9273:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("fontsize")},{fontsize:function(s){return r(this,"font","size",s)}})},9019:function(o,c,t){var e=t(8301),r=t(9625),n=String.fromCharCode,a=String.fromCodePoint;e({target:"String",stat:!0,forced:!!a&&1!=a.length},{fromCodePoint:function(l){for(var d,u=[],f=arguments.length,v=0;f>v;){if(d=+arguments[v++],r(d,1114111)!==d)throw RangeError(d+" is not a valid code point");u.push(d<65536?n(d):n(55296+((d-=65536)>>10),d%1024+56320))}return u.join("")}})},4657:function(o,c,t){"use strict";var e=t(8301),r=t(7258),n=t(9486),a=t(7517);e({target:"String",proto:!0,forced:!t(2013)("includes")},{includes:function(l){return!!~a(n(this)).indexOf(a(r(l)),arguments.length>1?arguments[1]:void 0)}})},9783:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("italics")},{italics:function(){return r(this,"i","","")}})},8780:function(o,c,t){"use strict";var e=t(1663).charAt,r=t(7517),n=t(8593),a=t(8020),s="String Iterator",i=n.set,l=n.getterFor(s);a(String,"String",function(u){i(this,{type:s,string:r(u),index:0})},function(){var p,f=l(this),v=f.string,d=f.index;return d>=v.length?{value:void 0,done:!0}:(p=e(v,d),f.index+=p.length,{value:p,done:!1})})},895:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("link")},{link:function(s){return r(this,"a","href",s)}})},8427:function(o,c,t){"use strict";var e=t(4875),r=t(9499),n=t(8806),a=t(7517),s=t(9486),i=t(4478),l=t(1714);e("match",function(u,f,v){return[function(p){var T=s(this),O=null==p?void 0:p[u];return void 0!==O?O.call(p,T):new RegExp(p)[u](a(T))},function(d){var p=r(this),T=a(d),O=v(f,p,T);if(O.done)return O.value;if(!p.global)return l(p,T);var _=p.unicode;p.lastIndex=0;for(var g,P=[],R=0;null!==(g=l(p,T));){var j=a(g[0]);P[R]=j,""===j&&(p.lastIndex=i(T,n(p.lastIndex),_)),R++}return 0===R?null:P}]})},2770:function(o,c,t){var e=t(8301),r=t(6076),n=t(8806),a=t(7517);e({target:"String",stat:!0},{raw:function(i){for(var l=r(i.raw),u=n(l.length),f=arguments.length,v=[],d=0;u>d;)v.push(a(l[d++])),d=Y&&(G+=W.slice(Y,nt)+Wt,Y=nt+J.length)}return G+W.slice(Y)}]},!!r(function(){var j=/./;return j.exec=function(){var M=[];return M.groups={a:"7"},M},"7"!=="".replace(j,"$")})||!P||R)},9286:function(o,c,t){"use strict";var e=t(4875),r=t(9499),n=t(9486),a=t(3471),s=t(7517),i=t(1714);e("search",function(l,u,f){return[function(d){var p=n(this),T=null==d?void 0:d[l];return void 0!==T?T.call(d,p):new RegExp(d)[l](s(p))},function(v){var d=r(this),p=s(v),T=f(u,d,p);if(T.done)return T.value;var O=d.lastIndex;a(O,0)||(d.lastIndex=0);var _=i(d,p);return a(d.lastIndex,O)||(d.lastIndex=O),null===_?-1:_.index}]})},630:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("small")},{small:function(){return r(this,"small","","")}})},3161:function(o,c,t){"use strict";var e=t(4875),r=t(4715),n=t(9499),a=t(9486),s=t(6795),i=t(4478),l=t(8806),u=t(7517),f=t(1714),v=t(6193),d=t(3085),p=t(7912),T=d.UNSUPPORTED_Y,O=[].push,_=Math.min,P=4294967295,R=!p(function(){var g=/(?:)/,j=g.exec;g.exec=function(){return j.apply(this,arguments)};var M="ab".split(g);return 2!==M.length||"a"!==M[0]||"b"!==M[1]});e("split",function(g,j,M){var E;return E="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(m,F){var C=u(a(this)),b=void 0===F?P:F>>>0;if(0===b)return[];if(void 0===m)return[C];if(!r(m))return j.call(C,m,b);for(var rt,tt,K,W=[],N=(m.ignoreCase?"i":"")+(m.multiline?"m":"")+(m.unicode?"u":"")+(m.sticky?"y":""),H=0,k=new RegExp(m.source,N+"g");(rt=v.call(k,C))&&!((tt=k.lastIndex)>H&&(W.push(C.slice(H,rt.index)),rt.length>1&&rt.index=b));)k.lastIndex===rt.index&&k.lastIndex++;return H===C.length?(K||!k.test(""))&&W.push(""):W.push(C.slice(H)),W.length>b?W.slice(0,b):W}:"0".split(void 0,0).length?function(m,F){return void 0===m&&0===F?[]:j.call(this,m,F)}:j,[function(F,C){var b=a(this),W=null==F?void 0:F[g];return void 0!==W?W.call(F,b,C):E.call(u(b),F,C)},function(m,F){var C=n(this),b=u(m),W=M(E,C,b,F,E!==j);if(W.done)return W.value;var N=s(C,RegExp),H=C.unicode,k=(C.ignoreCase?"i":"")+(C.multiline?"m":"")+(C.unicode?"u":"")+(T?"g":"y"),rt=new N(T?"^(?:"+C.source+")":C,k),tt=void 0===F?P:F>>>0;if(0===tt)return[];if(0===b.length)return null===f(rt,b)?[b]:[];for(var K=0,A=0,G=[];A1?arguments[1]:void 0,_.length)),R=a(O);return f?f.call(_,R,P):_.slice(P,P+R.length)===R}})},4734:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("strike")},{strike:function(){return r(this,"strike","","")}})},4566:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("sub")},{sub:function(){return r(this,"sub","","")}})},83:function(o,c,t){"use strict";var e=t(8301),r=t(7772);e({target:"String",proto:!0,forced:t(2304)("sup")},{sup:function(){return r(this,"sup","","")}})},1041:function(o,c,t){"use strict";var e=t(8301),r=t(4462).trim;e({target:"String",proto:!0,forced:t(332)("trim")},{trim:function(){return r(this)}})},9747:function(o,c,t){t(8970)("asyncIterator")},3754:function(o,c,t){"use strict";var e=t(8301),r=t(6223),n=t(1492),a=t(9594),s=t(6743),i=t(480).f,l=t(6107),u=n.Symbol;if(r&&"function"==typeof u&&(!("description"in u.prototype)||void 0!==u().description)){var f={},v=function(){var P=arguments.length<1||void 0===arguments[0]?void 0:String(arguments[0]),R=this instanceof v?new u(P):void 0===P?u():u(P);return""===P&&(f[R]=!0),R};l(v,u);var d=v.prototype=u.prototype;d.constructor=v;var p=d.toString,T="Symbol(test)"==String(u("test")),O=/^Symbol\((.*)\)[^)]+$/;i(d,"description",{configurable:!0,get:function(){var P=s(this)?this.valueOf():this,R=p.call(P);if(a(f,P))return"";var g=T?R.slice(7,-1):R.replace(O,"$1");return""===g?void 0:g}}),e({global:!0,forced:!0},{Symbol:v})}},9172:function(o,c,t){t(8970)("hasInstance")},6946:function(o,c,t){t(8970)("isConcatSpreadable")},5221:function(o,c,t){t(8970)("iterator")},5235:function(o,c,t){"use strict";var e=t(8301),r=t(1492),n=t(3077),a=t(3712),s=t(6223),i=t(3391),l=t(7912),u=t(9594),f=t(1147),v=t(6743),d=t(3071),p=t(9499),T=t(2767),O=t(6076),_=t(2552),P=t(7517),R=t(4652),g=t(7593),j=t(2087),M=t(9740),E=t(863),m=t(9800),F=t(1867),C=t(480),b=t(8833),W=t(7176),N=t(1415),H=t(8174),k=t(6857),rt=t(7452),tt=t(1103),K=t(2622),A=t(144),G=t(8970),Y=t(489),z=t(8593),J=t(7354).forEach,nt=k("hidden"),mt="Symbol",ht="prototype",Tt=K("toPrimitive"),xt=z.set,Wt=z.getterFor(mt),St=Object[ht],Ct=r.Symbol,wt=n("JSON","stringify"),le=F.f,Jt=C.f,fe=E.f,ae=b.f,ue=H("symbols"),he=H("op-symbols"),ce=H("string-to-symbol-registry"),pe=H("symbol-to-string-registry"),me=H("wks"),ye=r.QObject,ne=!ye||!ye[ht]||!ye[ht].findChild,ve=s&&l(function(){return 7!=g(Jt({},"a",{get:function(){return Jt(this,"a",{value:7}).a}})).a})?function(y,S,U){var Z=le(St,S);Z&&delete St[S],Jt(y,S,U),Z&&y!==St&&Jt(St,S,Z)}:Jt,Xt=function(y,S){var U=ue[y]=g(Ct[ht]);return xt(U,{type:mt,tag:y,description:S}),s||(U.description=S),U},oe=function(S,U,Z){S===St&&oe(he,U,Z),p(S);var q=_(U);return p(Z),u(ue,q)?(Z.enumerable?(u(S,nt)&&S[nt][q]&&(S[nt][q]=!1),Z=g(Z,{enumerable:R(0,!1)})):(u(S,nt)||Jt(S,nt,R(1,{})),S[nt][q]=!0),ve(S,q,Z)):Jt(S,q,Z)},se=function(S,U){p(S);var Z=O(U),q=j(Z).concat($(Z));return J(q,function(at){(!s||ge.call(Z,at))&&oe(S,at,Z[at])}),S},ge=function(S){var U=_(S),Z=ae.call(this,U);return!(this===St&&u(ue,U)&&!u(he,U))&&(!(Z||!u(this,U)||!u(ue,U)||u(this,nt)&&this[nt][U])||Z)},I=function(S,U){var Z=O(S),q=_(U);if(Z!==St||!u(ue,q)||u(he,q)){var at=le(Z,q);return at&&u(ue,q)&&!(u(Z,nt)&&Z[nt][q])&&(at.enumerable=!0),at}},x=function(S){var U=fe(O(S)),Z=[];return J(U,function(q){!u(ue,q)&&!u(rt,q)&&Z.push(q)}),Z},$=function(S){var U=S===St,Z=fe(U?he:O(S)),q=[];return J(Z,function(at){u(ue,at)&&(!U||u(St,at))&&q.push(ue[at])}),q};(i||(Ct=function(){if(this instanceof Ct)throw TypeError("Symbol is not a constructor");var S=arguments.length&&void 0!==arguments[0]?P(arguments[0]):void 0,U=tt(S),Z=function(q){this===St&&Z.call(he,q),u(this,nt)&&u(this[nt],U)&&(this[nt][U]=!1),ve(this,U,R(1,q))};return s&&ne&&ve(St,U,{configurable:!0,set:Z}),Xt(U,S)},N(Ct[ht],"toString",function(){return Wt(this).tag}),N(Ct,"withoutSetter",function(y){return Xt(tt(y),y)}),b.f=ge,C.f=oe,F.f=I,M.f=E.f=x,m.f=$,A.f=function(y){return Xt(K(y),y)},s&&(Jt(Ct[ht],"description",{configurable:!0,get:function(){return Wt(this).description}}),a||N(St,"propertyIsEnumerable",ge,{unsafe:!0}))),e({global:!0,wrap:!0,forced:!i,sham:!i},{Symbol:Ct}),J(j(me),function(y){G(y)}),e({target:mt,stat:!0,forced:!i},{for:function(y){var S=P(y);if(u(ce,S))return ce[S];var U=Ct(S);return ce[S]=U,pe[U]=S,U},keyFor:function(S){if(!d(S))throw TypeError(S+" is not a symbol");if(u(pe,S))return pe[S]},useSetter:function(){ne=!0},useSimple:function(){ne=!1}}),e({target:"Object",stat:!0,forced:!i,sham:!s},{create:function(S,U){return void 0===U?g(S):se(g(S),U)},defineProperty:oe,defineProperties:se,getOwnPropertyDescriptor:I}),e({target:"Object",stat:!0,forced:!i},{getOwnPropertyNames:x,getOwnPropertySymbols:$}),e({target:"Object",stat:!0,forced:l(function(){m.f(1)})},{getOwnPropertySymbols:function(S){return m.f(T(S))}}),wt)&&e({target:"JSON",stat:!0,forced:!i||l(function(){var y=Ct();return"[null]"!=wt([y])||"{}"!=wt({a:y})||"{}"!=wt(Object(y))})},{stringify:function(S,U,Z){for(var ut,q=[S],at=1;arguments.length>at;)q.push(arguments[at++]);if(ut=U,(v(U)||void 0!==S)&&!d(S))return f(U)||(U=function(pt,yt){if("function"==typeof ut&&(yt=ut.call(this,pt,yt)),!d(yt))return yt}),q[1]=U,wt.apply(null,q)}});Ct[ht][Tt]||W(Ct[ht],Tt,Ct[ht].valueOf),Y(Ct,mt),rt[nt]=!0},395:function(o,c,t){t(8970)("matchAll")},7974:function(o,c,t){t(8970)("match")},9550:function(o,c,t){t(8970)("replace")},6394:function(o,c,t){t(8970)("search")},1897:function(o,c,t){t(8970)("species")},6065:function(o,c,t){t(8970)("split")},7228:function(o,c,t){t(8970)("toPrimitive")},3495:function(o,c,t){t(8970)("toStringTag")},5497:function(o,c,t){t(8970)("unscopables")},4053:function(o,c,t){"use strict";var d,e=t(1492),r=t(4151),n=t(4860),a=t(877),s=t(2050),i=t(6743),l=t(8593).enforce,u=t(9780),f=!e.ActiveXObject&&"ActiveXObject"in e,v=Object.isExtensible,p=function(j){return function(){return j(this,arguments.length?arguments[0]:void 0)}},T=o.exports=a("WeakMap",p,s);if(u&&f){d=s.getConstructor(p,"WeakMap",!0),n.enable();var O=T.prototype,_=O.delete,P=O.has,R=O.get,g=O.set;r(O,{delete:function(j){if(i(j)&&!v(j)){var M=l(this);return M.frozen||(M.frozen=new d),_.call(this,j)||M.frozen.delete(j)}return _.call(this,j)},has:function(M){if(i(M)&&!v(M)){var E=l(this);return E.frozen||(E.frozen=new d),P.call(this,M)||E.frozen.has(M)}return P.call(this,M)},get:function(M){if(i(M)&&!v(M)){var E=l(this);return E.frozen||(E.frozen=new d),P.call(this,M)?R.call(this,M):E.frozen.get(M)}return R.call(this,M)},set:function(M,E){if(i(M)&&!v(M)){var m=l(this);m.frozen||(m.frozen=new d),P.call(this,M)?g.call(this,M,E):m.frozen.set(M,E)}else g.call(this,M,E);return this}})}},7903:function(o,c,t){var e=t(1492),r=t(4763),n=t(8367),a=t(7176);for(var s in r){var i=e[s],l=i&&i.prototype;if(l&&l.forEach!==n)try{a(l,"forEach",n)}catch(u){l.forEach=n}}},1901:function(o,c,t){var e=t(1492),r=t(4763),n=t(9407),a=t(7176),s=t(2622),i=s("iterator"),l=s("toStringTag"),u=n.values;for(var f in r){var v=e[f],d=v&&v.prototype;if(d){if(d[i]!==u)try{a(d,i,u)}catch(T){d[i]=u}if(d[l]||a(d,l,f),r[f])for(var p in n)if(d[p]!==n[p])try{a(d,p,n[p])}catch(T){d[p]=n[p]}}}}},function(o){var c=function(e){return o(o.s=e)};c(99),c(1312)}]); -//# sourceMappingURL=polyfills-es5.js.map -(self.webpackChunksunbird_video_player_app=self.webpackChunksunbird_video_player_app||[]).push([["polyfills"],{7581:function(){ -/*! (C) Andrea Giammarchi - @WebReflection - ISC Style License */ -!function(P,de){"use strict";function ce(){var e=rt.splice(0,rt.length);for(oe=0;e.length;)e.shift().call(null,e.shift())}function $(e,t){for(var o=0,c=e.length;o1)&&tt(this)}}}),le(_,Ie,{value:function(x){-1>0,me="__"+ye+Je,Ne="addEventListener",pe="attached",Ze="Callback",Ce="detached",it="extends",Ie="attributeChanged"+Ze,$e=pe+Ze,ut="connected"+Ze,pt="disconnected"+Ze,ge="created"+Ze,yt=Ce+Ze,lt="ADDITION",dt="REMOVAL",Ue="DOMAttrModified",gt="DOMContentLoaded",kt="DOMSubtreeModified",st="<",_t="=",bt=/^[A-Z][._A-Z0-9]*-[-._A-Z0-9]*$/,Mt=["ANNOTATION-XML","COLOR-PROFILE","FONT-FACE","FONT-FACE-SRC","FONT-FACE-URI","FONT-FACE-FORMAT","FONT-FACE-NAME","MISSING-GLYPH"],je=[],ct=[],be="",Se=z.documentElement,He=je.indexOf||function(e){for(var t=this.length;t--&&this[t]!==e;);return t},Tt=ke.prototype,Et=Tt.hasOwnProperty,r=Tt.isPrototypeOf,a=ke.defineProperty,u=[],l=ke.getOwnPropertyDescriptor,f=ke.getOwnPropertyNames,v=ke.getPrototypeOf,T=ke.setPrototypeOf,L=!!ke.__proto__,R="__dreCEv1",w=P.customElements,S=!/^force/.test(de.type)&&!!(w&&w.define&&w.get&&w.whenDefined),Z=ke.create||ke,W=P.Map||function(){var e,t=[],o=[];return{get:function(s){return o[He.call(t,s)]},set:function(s,_){(e=He.call(t,s))<0?o[t.push(s)-1]=_:o[e]=_}}},Y=P.Promise||function(e){function t(_){for(c=!0;o.length;)o.shift()(_)}var o=[],c=!1,s={catch:function(){return s},then:function(p){return o.push(p),c&&setTimeout(t,1),s}};return e(t),s},X=!1,Te=Z(null),Q=Z(null),ne=new W,ue=function(t){return t.toLowerCase()},k=ke.create||function e(t){return t?(e.prototype=t,new e):this},ae=T||(L?function(e,t){return e.__proto__=t,e}:f&&l?function(){function e(t,o){for(var c,s=f(o),_=0,p=s.length;_
",new ee(function(e,t){if(e[0]&&"childList"==e[0].type&&!e[0].removedNodes[0].childNodes.length){var o=(Ae=l(F,"innerHTML"))&&Ae.set;o&&a(F,"innerHTML",{set:function(s){for(;this.lastChild;)this.removeChild(this.lastChild);o.call(this,s)}})}t.disconnect(),Ae=null}).observe(Ae,{childList:!0,subtree:!0}),Ae.innerHTML=""),d||(T||L?(ot=function(t,o){r.call(o,t)||we(t,o)},Ke=we):(ot=function(t,o){t[me]||(t[me]=ke(!0),we(t,o))},Ke=ot),O?(y=!1,e=l(F,Ne),t=e.value,o=function(p){var b=new CustomEvent(Ue,{bubbles:!0});b.attrName=p,b.prevValue=Me.call(this,p),b.newValue=null,b[dt]=b.attrChange=2,Ee.call(this,p),te.call(this,b)},c=function(p,b){var j=Le.call(this,p),x=j&&Me.call(this,p),V=new CustomEvent(Ue,{bubbles:!0});M.call(this,p,b),V.attrName=p,V.prevValue=j?x:null,V.newValue=b,j?V.MODIFICATION=V.attrChange=1:V[lt]=V.attrChange=0,te.call(this,V)},s=function(p){var b,j=p.currentTarget,x=j[me],V=p.propertyName;x.hasOwnProperty(V)&&(x=x[V],(b=new CustomEvent(Ue,{bubbles:!0})).attrName=x.name,b.prevValue=x.value||null,b.newValue=x.value=j[V]||null,null==b.prevValue?b[lt]=b.attrChange=0:b.MODIFICATION=b.attrChange=1,te.call(j,b))},e.value=function(_,p,b){_===Ue&&this[Ie]&&this.setAttribute!==c&&(this[me]={className:{name:"class",value:this.className}},this.setAttribute=c,this.removeAttribute=o,t.call(this,"propertychange",s)),t.call(this,_,p,b)},a(F,Ne,e)):ee||(Se[Ne](Ue,D),Se.setAttribute(me,1),Se.removeAttribute(me),y&&(vt=function(t){var o,c,s,_=this;if(_===t.target){for(s in o=_[me],_[me]=c=nt(_),c){if(!(s in o))return ze(0,_,s,o[s],c[s],lt);if(c[s]!==o[s])return ze(1,_,s,o[s],c[s],"MODIFICATION")}for(s in o)if(!(s in c))return ze(2,_,s,o[s],c[s],dt)}},ze=function(t,o,c,s,_,p){var b={attrChange:t,currentTarget:o,attrName:c,prevValue:s,newValue:_};b[p]=t,Be(b)},nt=function(t){for(var o,c,s={},_=t.attributes,p=0,b=_.length;p
$");if(t[it]="a",e.prototype=k(re.prototype),e.prototype.constructor=e,P.customElements.define(o,e,t),!c.test(z.createElement("a",{is:o}).outerHTML)||!c.test((new e).outerHTML))throw t}(function e(){return Reflect.construct(re,[],e)},{},"document-register-element-a"+Je)}catch(e){_e()}if(!de.noBuiltIn)try{if(E.call(z,"a","a").outerHTML.indexOf("is")<0)throw{}}catch(e){ue=function(o){return{is:o.toLowerCase()}}}}(window)},7761:function(P,de,ce){"use strict"; + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */let C=null;function F(){return C}function N(k){C||(C=k)}class G{} /** - * @license Angular v14.2.0-next.0 - * (c) 2010-2022 Google LLC. https://angular.io/ - * License: MIT - */ + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */const K=new t.OlP("DocumentToken"); /** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */var $=ce(6466).default,ve=ce(1416).default,U=ce(5575).default;!function(r){var a=r.performance;function u(M){a&&a.mark&&a.mark(M)}function l(M,E){a&&a.measure&&a.measure(M,E)}u("Zone");var f=r.__Zone_symbol_prefix||"__zone_symbol__";function v(M){return f+M}var T=!0===r[v("forceDuplicateZoneCheck")];if(r.Zone){if(T||"function"!=typeof r.Zone.__symbol__)throw new Error("Zone already loaded.");return r.Zone}var L=function(){function M(E,n){ve(this,M),this._parent=E,this._name=n?n.name||"unnamed":"",this._properties=n&&n.properties||{},this._zoneDelegate=new R(this,this._parent&&this._parent._zoneDelegate,n)}return U(M,[{key:"parent",get:function(){return this._parent}},{key:"name",get:function(){return this._name}},{key:"get",value:function(n){var i=this.getZoneWith(n);if(i)return i._properties[n]}},{key:"getZoneWith",value:function(n){for(var i=this;i;){if(i._properties.hasOwnProperty(n))return i;i=i._parent}return null}},{key:"fork",value:function(n){if(!n)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,n)}},{key:"wrap",value:function(n,i){if("function"!=typeof n)throw new Error("Expecting function got: "+n);var m=this._zoneDelegate.intercept(this,n,i),D=this;return function(){return D.runGuarded(m,this,arguments,i)}}},{key:"run",value:function(n,i,m,D){te={parent:te,zone:this};try{return this._zoneDelegate.invoke(this,n,i,m,D)}finally{te=te.parent}}},{key:"runGuarded",value:function(n){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,m=arguments.length>2?arguments[2]:void 0,D=arguments.length>3?arguments[3]:void 0;te={parent:te,zone:this};try{try{return this._zoneDelegate.invoke(this,n,i,m,D)}catch(oe){if(this._zoneDelegate.handleError(this,oe))throw oe}}finally{te=te.parent}}},{key:"runTask",value:function(n,i,m){if(n.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(n.zone||k).name+"; Execution: "+this.name+")");if(n.state!==ae||n.type!==B&&n.type!==H){var D=n.state!=F;D&&n._transitionTo(F,re),n.runCount++;var oe=Me;Me=n,te={parent:te,zone:this};try{n.type==H&&n.data&&!n.data.isPeriodic&&(n.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,n,i,m)}catch(d){if(this._zoneDelegate.handleError(this,d))throw d}}finally{n.state!==ae&&n.state!==le&&(n.type==B||n.data&&n.data.isPeriodic?D&&n._transitionTo(re,F):(n.runCount=0,this._updateTaskCount(n,-1),D&&n._transitionTo(ae,F,ae))),te=te.parent,Me=oe}}}},{key:"scheduleTask",value:function(n){if(n.zone&&n.zone!==this)for(var i=this;i;){if(i===n.zone)throw Error("can not reschedule task to ".concat(this.name," which is descendants of the original zone ").concat(n.zone.name));i=i.parent}n._transitionTo(ee,ae);var m=[];n._zoneDelegates=m,n._zone=this;try{n=this._zoneDelegate.scheduleTask(this,n)}catch(D){throw n._transitionTo(le,ee,ae),this._zoneDelegate.handleError(this,D),D}return n._zoneDelegates===m&&this._updateTaskCount(n,1),n.state==ee&&n._transitionTo(re,ee),n}},{key:"scheduleMicroTask",value:function(n,i,m,D){return this.scheduleTask(new w(G,n,i,m,D,void 0))}},{key:"scheduleMacroTask",value:function(n,i,m,D,oe){return this.scheduleTask(new w(H,n,i,m,D,oe))}},{key:"scheduleEventTask",value:function(n,i,m,D,oe){return this.scheduleTask(new w(B,n,i,m,D,oe))}},{key:"cancelTask",value:function(n){if(n.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(n.zone||k).name+"; Execution: "+this.name+")");n._transitionTo(O,re,F);try{this._zoneDelegate.cancelTask(this,n)}catch(i){throw n._transitionTo(le,O),this._zoneDelegate.handleError(this,i),i}return this._updateTaskCount(n,-1),n._transitionTo(ae,O),n.runCount=0,n}},{key:"_updateTaskCount",value:function(n,i){var m=n._zoneDelegates;-1==i&&(n._zoneDelegates=null);for(var D=0;D2&&void 0!==arguments[2]&&arguments[2];if(I.hasOwnProperty(n)){if(!m&&T)throw Error("Already loaded patch: "+n)}else if(!r["__Zone_disable_"+n]){var D="Zone:"+n;u(D),I[n]=i(r,M,se),l(D,D)}}}]),M}();L.__symbol__=v;var Te,A={name:"",onHasTask:function(E,n,i,m){return E.hasTask(i,m)},onScheduleTask:function(E,n,i,m){return E.scheduleTask(i,m)},onInvokeTask:function(E,n,i,m,D,oe){return E.invokeTask(i,m,D,oe)},onCancelTask:function(E,n,i,m){return E.cancelTask(i,m)}},R=function(){function M(E,n,i){ve(this,M),this._taskCounts={microTask:0,macroTask:0,eventTask:0},this.zone=E,this._parentDelegate=n,this._forkZS=i&&(i&&i.onFork?i:n._forkZS),this._forkDlgt=i&&(i.onFork?n:n._forkDlgt),this._forkCurrZone=i&&(i.onFork?this.zone:n._forkCurrZone),this._interceptZS=i&&(i.onIntercept?i:n._interceptZS),this._interceptDlgt=i&&(i.onIntercept?n:n._interceptDlgt),this._interceptCurrZone=i&&(i.onIntercept?this.zone:n._interceptCurrZone),this._invokeZS=i&&(i.onInvoke?i:n._invokeZS),this._invokeDlgt=i&&(i.onInvoke?n:n._invokeDlgt),this._invokeCurrZone=i&&(i.onInvoke?this.zone:n._invokeCurrZone),this._handleErrorZS=i&&(i.onHandleError?i:n._handleErrorZS),this._handleErrorDlgt=i&&(i.onHandleError?n:n._handleErrorDlgt),this._handleErrorCurrZone=i&&(i.onHandleError?this.zone:n._handleErrorCurrZone),this._scheduleTaskZS=i&&(i.onScheduleTask?i:n._scheduleTaskZS),this._scheduleTaskDlgt=i&&(i.onScheduleTask?n:n._scheduleTaskDlgt),this._scheduleTaskCurrZone=i&&(i.onScheduleTask?this.zone:n._scheduleTaskCurrZone),this._invokeTaskZS=i&&(i.onInvokeTask?i:n._invokeTaskZS),this._invokeTaskDlgt=i&&(i.onInvokeTask?n:n._invokeTaskDlgt),this._invokeTaskCurrZone=i&&(i.onInvokeTask?this.zone:n._invokeTaskCurrZone),this._cancelTaskZS=i&&(i.onCancelTask?i:n._cancelTaskZS),this._cancelTaskDlgt=i&&(i.onCancelTask?n:n._cancelTaskDlgt),this._cancelTaskCurrZone=i&&(i.onCancelTask?this.zone:n._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;var m=i&&i.onHasTask,D=n&&n._hasTaskZS;(m||D)&&(this._hasTaskZS=m?i:A,this._hasTaskDlgt=n,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=E,i.onScheduleTask||(this._scheduleTaskZS=A,this._scheduleTaskDlgt=n,this._scheduleTaskCurrZone=this.zone),i.onInvokeTask||(this._invokeTaskZS=A,this._invokeTaskDlgt=n,this._invokeTaskCurrZone=this.zone),i.onCancelTask||(this._cancelTaskZS=A,this._cancelTaskDlgt=n,this._cancelTaskCurrZone=this.zone))}return U(M,[{key:"fork",value:function(n,i){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,n,i):new L(n,i)}},{key:"intercept",value:function(n,i,m){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,n,i,m):i}},{key:"invoke",value:function(n,i,m,D,oe){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,n,i,m,D,oe):i.apply(m,D)}},{key:"handleError",value:function(n,i){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,n,i)}},{key:"scheduleTask",value:function(n,i){var m=i;if(this._scheduleTaskZS)this._hasTaskZS&&m._zoneDelegates.push(this._hasTaskDlgtOwner),(m=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,n,i))||(m=i);else if(i.scheduleFn)i.scheduleFn(i);else{if(i.type!=G)throw new Error("Task is missing scheduleFn.");ne(i)}return m}},{key:"invokeTask",value:function(n,i,m,D){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,n,i,m,D):i.callback.apply(m,D)}},{key:"cancelTask",value:function(n,i){var m;if(this._cancelTaskZS)m=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,n,i);else{if(!i.cancelFn)throw Error("Task is not cancelable");m=i.cancelFn(i)}return m}},{key:"hasTask",value:function(n,i){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,n,i)}catch(m){this.handleError(n,m)}}},{key:"_updateTaskCount",value:function(n,i){var m=this._taskCounts,D=m[n],oe=m[n]=D+i;if(oe<0)throw new Error("More tasks executed then were scheduled.");if(0==D||0==oe){var d={microTask:m.microTask>0,macroTask:m.macroTask>0,eventTask:m.eventTask>0,change:n};this.hasTask(this.zone,d)}}}]),M}(),w=function(){function M(E,n,i,m,D,oe){if(ve(this,M),this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state="notScheduled",this.type=E,this.source=n,this.data=m,this.scheduleFn=D,this.cancelFn=oe,!i)throw new Error("callback is not defined");this.callback=i;var d=this;E===B&&m&&m.useG?this.invoke=M.invokeTask:this.invoke=function(){return M.invokeTask.call(r,d,this,arguments)}}return U(M,[{key:"zone",get:function(){return this._zone}},{key:"state",get:function(){return this._state}},{key:"cancelScheduleRequest",value:function(){this._transitionTo(ae,ee)}},{key:"_transitionTo",value:function(n,i,m){if(this._state!==i&&this._state!==m)throw new Error("".concat(this.type," '").concat(this.source,"': can not transition to '").concat(n,"', expecting state '").concat(i,"'").concat(m?" or '"+m+"'":"",", was '").concat(this._state,"'."));this._state=n,n==ae&&(this._zoneDelegates=null)}},{key:"toString",value:function(){return this.data&&void 0!==this.data.handleId?this.data.handleId.toString():Object.prototype.toString.call(this)}},{key:"toJSON",value:function(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}],[{key:"invokeTask",value:function(n,i,m){n||(n=this),Le++;try{return n.runCount++,n.zone.runTask(n,i,m)}finally{1==Le&&ue(),Le--}}}]),M}(),S=v("setTimeout"),Z=v("Promise"),W=v("then"),Y=[],X=!1;function Q(M){if(Te||r[Z]&&(Te=r[Z].resolve(0)),Te){var E=Te[W];E||(E=Te.then),E.call(Te,M)}else r[S](M,0)}function ne(M){0===Le&&0===Y.length&&Q(ue),M&&Y.push(M)}function ue(){if(!X){for(X=!0;Y.length;){var M=Y;Y=[];for(var E=0;Ene.removeEventListener("popstate",x)}onHashChange(x){const ne=F().getGlobalEventTarget(this._doc,"window");return ne.addEventListener("hashchange",x,!1),()=>ne.removeEventListener("hashchange",x)}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(x){this.location.pathname=x}pushState(x,ne,Se){be()?this._history.pushState(x,ne,Se):this.location.hash=Se}replaceState(x,ne,Se){be()?this._history.replaceState(x,ne,Se):this.location.hash=Se}forward(){this._history.forward()}back(){this._history.back()}historyGo(x=0){this._history.go(x)}getState(){return this._history.state}}function be(){return!!window.history.pushState} /** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ -var fe=Object.getOwnPropertyDescriptor,he=Object.defineProperty,Be=Object.getPrototypeOf,et=Object.create,Xe=Array.prototype.slice,Ye="addEventListener",We="removeEventListener",we=Zone.__symbol__(Ye),Pe=Zone.__symbol__(We),Re="true",Oe="false",Fe=Zone.__symbol__("");function ft(r,a){return Zone.current.wrap(r,a)}function ht(r,a,u,l,f){return Zone.current.scheduleMacroTask(r,a,u,l,f)}var K=Zone.__symbol__,tt="undefined"!=typeof window,Ve=tt?window:void 0,_e=tt&&Ve||"object"==typeof self&&self||global;function ke(r,a){for(var u=r.length-1;u>=0;u--)"function"==typeof r[u]&&(r[u]=ft(r[u],a+"_"+u));return r}function rt(r){return!r||!1!==r.writable&&!("function"==typeof r.get&&void 0===r.set)}var vt="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,ze=!("nw"in _e)&&void 0!==_e.process&&"[object process]"==={}.toString.call(_e.process),nt=!ze&&!vt&&!(!tt||!Ve.HTMLElement),at=void 0!==_e.process&&"[object process]"==={}.toString.call(_e.process)&&!vt&&!(!tt||!Ve.HTMLElement),qe={},ot=function(a){if(a=a||_e.event){var u=qe[a.type];u||(u=qe[a.type]=K("ON_PROPERTY"+a.type));var v,l=this||a.target||_e,f=l[u];if(nt&&l===Ve&&"error"===a.type){var T=a;!0===(v=f&&f.call(this,T.message,T.filename,T.lineno,T.colno,T.error))&&a.preventDefault()}else null!=(v=f&&f.apply(this,arguments))&&!v&&a.preventDefault();return v}};function Ke(r,a,u){var l=fe(r,a);!l&&u&&(fe(u,a)&&(l={enumerable:!0,configurable:!0}));if(l&&l.configurable){var v=K("on"+a+"patched");if(!r.hasOwnProperty(v)||!r[v]){delete l.writable,delete l.value;var T=l.get,L=l.set,A=a.slice(2),R=qe[A];R||(R=qe[A]=K("ON_PROPERTY"+A)),l.set=function(w){var S=this;(!S&&r===_e&&(S=_e),S)&&("function"==typeof S[R]&&S.removeEventListener(A,ot),L&&L.call(S,null),S[R]=w,"function"==typeof w&&S.addEventListener(A,ot,!1))},l.get=function(){var w=this;if(!w&&r===_e&&(w=_e),!w)return null;var S=w[R];if(S)return S;if(T){var Z=T.call(this);if(Z)return l.set.call(this,Z),"function"==typeof w.removeAttribute&&w.removeAttribute(a),Z}return null},he(r,a,l),r[v]=!0}}}function Ae(r,a,u){if(a)for(var l=0;l=0&&"function"==typeof L[A.cbIdx]?ht(A.name,L[A.cbIdx],A,f):v.apply(T,L)}})}function pe(r,a){r[K("OriginalDelegate")]=a}var Ze=!1,Ce=!1;function Ie(){if(Ze)return Ce;Ze=!0;try{var r=Ve.navigator.userAgent;(-1!==r.indexOf("MSIE ")||-1!==r.indexOf("Trident/")||-1!==r.indexOf("Edge/"))&&(Ce=!0)}catch(a){}return Ce} + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ /** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */Zone.__load_patch("ZoneAwarePromise",function(r,a,u){var l=Object.getOwnPropertyDescriptor,f=Object.defineProperty;var T=u.symbol,L=[],A=!0===r[T("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],R=T("Promise"),w=T("then");u.onUnhandledError=function(d){if(u.showUncaughtError()){var N=d&&d.rejection;N?console.error("Unhandled Promise rejection:",N instanceof Error?N.message:N,"; Zone:",d.zone.name,"; Task:",d.task&&d.task.source,"; Value:",N,N instanceof Error?N.stack:void 0):console.error(d)}},u.microtaskDrainDone=function(){for(var d=function(){var g=L.shift();try{g.zone.runGuarded(function(){throw g.throwOriginal?g.rejection:g})}catch(y){!function(d){u.onUnhandledError(d);try{var N=a[Z];"function"==typeof N&&N.call(this,d)}catch(g){}}(y)}};L.length;)d()};var Z=T("unhandledPromiseRejectionHandler");function Y(d){return d&&d.then}function X(d){return d}function Te(d){return n.reject(d)}var Q=T("state"),ne=T("value"),ue=T("finally"),k=T("parentPromiseValue"),ae=T("parentPromiseState"),re=null,F=!0,O=!1;function G(d,N){return function(g){try{se(d,N,g)}catch(y){se(d,!1,y)}}}var H=function(){var N=!1;return function(y){return function(){N||(N=!0,y.apply(null,arguments))}}},I=T("currentTaskTrace");function se(d,N,g){var y=H();if(d===g)throw new TypeError("Promise resolved with itself");if(d[Q]===re){var h=null;try{("object"==typeof g||"function"==typeof g)&&(h=g&&g.then)}catch(c){return y(function(){se(d,!1,c)})(),d}if(N!==O&&g instanceof n&&g.hasOwnProperty(Q)&&g.hasOwnProperty(ne)&&g[Q]!==re)Me(g),se(d,g[Q],g[ne]);else if(N!==O&&"function"==typeof h)try{h.call(g,y(G(d,N)),y(G(d,!1)))}catch(c){y(function(){se(d,!1,c)})()}else{d[Q]=N;var C=d[ne];if(d[ne]=g,d[ue]===ue&&N===F&&(d[Q]=d[ae],d[ne]=d[k]),N===O&&g instanceof Error){var e=a.currentTask&&a.currentTask.data&&a.currentTask.data.__creationTrace__;e&&f(g,I,{configurable:!0,enumerable:!1,writable:!0,value:e})}for(var t=0;t4&&void 0!==arguments[4]&&arguments[4],c=arguments.length>5&&void 0!==arguments[5]&&arguments[5];return function(){var s=this||r,_=arguments[0];k&&k.transferEventName&&(_=k.transferEventName(_));var p=arguments[1];if(!p)return h.apply(this,arguments);if(ze&&"uncaughtException"===_)return h.apply(this,arguments);var b=!1;if("function"!=typeof p){if(!p.handleEvent)return h.apply(this,arguments);b=!0}if(!ee||ee(h,p,s,arguments)){var j=$e&&!!N&&-1!==N.indexOf(_),x=Me(arguments[2],j);if(d)for(var V=0;V0?ne.substring(1):ne}prepareExternalUrl(x){const ne=Ne(this._baseHref,x);return ne.length>0?"#"+ne:ne}pushState(x,ne,Se,gt){let Pt=this.prepareExternalUrl(Se+Re(gt));0==Pt.length&&(Pt=this._platformLocation.pathname),this._platformLocation.pushState(x,ne,Pt)}replaceState(x,ne,Se,gt){let Pt=this.prepareExternalUrl(Se+Re(gt));0==Pt.length&&(Pt=this._platformLocation.pathname),this._platformLocation.replaceState(x,ne,Pt)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(x=0){this._platformLocation.historyGo?.(x)}}Pe.\u0275fac=function(x){return new(x||Pe)(t.LFG($),t.LFG(de,8))},Pe.\u0275prov=t.Yz7({token:Pe,factory:Pe.\u0275fac}); /** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */function _t(r,a,u,l,f){var v=Zone.__symbol__(l);if(!a[v]){var T=a[v]=a[l];a[l]=function(L,A,R){return A&&A.prototype&&f.forEach(function(w){var S="".concat(u,".").concat(l,"::")+w,Z=A.prototype;try{if(Z.hasOwnProperty(w)){var W=r.ObjectGetOwnPropertyDescriptor(Z,w);W&&W.value?(W.value=r.wrapWithCurrentZone(W.value,S),r._redefineProperty(A.prototype,w,W)):Z[w]&&(Z[w]=r.wrapWithCurrentZone(Z[w],S))}else Z[w]&&(Z[w]=r.wrapWithCurrentZone(Z[w],S))}catch(Y){}}),T.call(a,L,A,R)},r.attachOriginToPatched(a[l],T)}} + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +class et{constructor(x){this._subject=new t.vpe,this._urlChangeListeners=[],this._urlChangeSubscription=null,this._locationStrategy=x;const ne=this._locationStrategy.getBaseHref();this._baseHref=ke(Ie(ne)),this._locationStrategy.onPopState(Se=>{this._subject.emit({url:this.path(!0),pop:!0,state:Se.state,type:Se.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(x=!1){return this.normalize(this._locationStrategy.path(x))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(x,ne=""){return this.path()==this.normalize(x+Re(ne))}normalize(x){return et.stripTrailingSlash(function We(k,x){return k&&x.startsWith(k)?x.substring(k.length):x}(this._baseHref,Ie(x)))}prepareExternalUrl(x){return x&&"/"!==x[0]&&(x="/"+x),this._locationStrategy.prepareExternalUrl(x)}go(x,ne="",Se=null){this._locationStrategy.pushState(Se,"",x,ne),this._notifyUrlChangeListeners(this.prepareExternalUrl(x+Re(ne)),Se)}replaceState(x,ne="",Se=null){this._locationStrategy.replaceState(Se,"",x,ne),this._notifyUrlChangeListeners(this.prepareExternalUrl(x+Re(ne)),Se)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(x=0){this._locationStrategy.historyGo?.(x)}onUrlChange(x){return this._urlChangeListeners.push(x),this._urlChangeSubscription||(this._urlChangeSubscription=this.subscribe(ne=>{this._notifyUrlChangeListeners(ne.url,ne.state)})),()=>{const ne=this._urlChangeListeners.indexOf(x);this._urlChangeListeners.splice(ne,1),0===this._urlChangeListeners.length&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(x="",ne){this._urlChangeListeners.forEach(Se=>Se(x,ne))}subscribe(x,ne,Se){return this._subject.subscribe({next:x,error:ne,complete:Se})}}function Ie(k){return k.replace(/\/index.html$/,"")} /** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */function bt(r,a,u){if(!u||0===u.length)return a;var l=u.filter(function(v){return v.target===r});if(!l||0===l.length)return a;var f=l[0].ignoreProperties;return a.filter(function(v){return-1===f.indexOf(v)})}function Mt(r,a,u,l){r&&Ae(r,bt(r,a,u),l)}function je(r){return Object.getOwnPropertyNames(r).filter(function(a){return a.startsWith("on")&&a.length>2}).map(function(a){return a.substring(2)})}function ct(r,a){if((!ze||at)&&!Zone[r.symbol("patchEvents")]){var u=a.__Zone_ignore_on_properties,l=[];if(nt){var f=window;l=l.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]);var v=function(){try{var r=Ve.navigator.userAgent;if(-1!==r.indexOf("MSIE ")||-1!==r.indexOf("Trident/"))return!0}catch(a){}return!1}()?[{target:f,ignoreProperties:["error"]}]:[];Mt(f,je(f),u&&u.concat(v),Be(f))}l=l.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(var T=0;T"u"){if(x===st.CurrencyDecimal)return ne[t.wAp.NumberSymbols][st.Decimal];if(x===st.CurrencyGroup)return ne[t.wAp.NumberSymbols][st.Group]}return Se}function Ln(k,x){return(0,t.cg1)(k)[t.wAp.NumberFormats][x]}(k=T||(T={}))[k.Decimal=0]="Decimal",k[k.Percent=1]="Percent",k[k.Currency=2]="Currency",k[k.Scientific=3]="Scientific",function(k){k[k.Zero=0]="Zero",k[k.One=1]="One",k[k.Two=2]="Two",k[k.Few=3]="Few",k[k.Many=4]="Many",k[k.Other=5]="Other"}(Z||(Z={})),function(k){k[k.Format=0]="Format",k[k.Standalone=1]="Standalone"}(Ce||(Ce={})),function(k){k[k.Narrow=0]="Narrow",k[k.Abbreviated=1]="Abbreviated",k[k.Wide=2]="Wide",k[k.Short=3]="Short"}(Te||(Te={})),function(k){k[k.Short=0]="Short",k[k.Medium=1]="Medium",k[k.Long=2]="Long",k[k.Full=3]="Full"}(Qe||(Qe={})),function(k){k[k.Decimal=0]="Decimal",k[k.Group=1]="Group",k[k.List=2]="List",k[k.PercentSign=3]="PercentSign",k[k.PlusSign=4]="PlusSign",k[k.MinusSign=5]="MinusSign",k[k.Exponential=6]="Exponential",k[k.SuperscriptingExponent=7]="SuperscriptingExponent",k[k.PerMille=8]="PerMille",k[k.Infinity=9]="Infinity",k[k.NaN=10]="NaN",k[k.TimeSeparator=11]="TimeSeparator",k[k.CurrencyDecimal=12]="CurrencyDecimal",k[k.CurrencyGroup=13]="CurrencyGroup"}(st||(st={})),function(k){k[k.Sunday=0]="Sunday",k[k.Monday=1]="Monday",k[k.Tuesday=2]="Tuesday",k[k.Wednesday=3]="Wednesday",k[k.Thursday=4]="Thursday",k[k.Friday=5]="Friday",k[k.Saturday=6]="Saturday"}(bt||(bt={}));const Et=t.kL8;function at(k){if(!k[t.wAp.ExtraData])throw new Error(`Missing extra locale data for the locale "${k[t.wAp.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`)}function Je(k,x){for(let ne=x;ne>-1;ne--)if(typeof k[ne]<"u")return k[ne];throw new Error("Locale data API: locale data undefined")}function Fe(k){const[x,ne]=k.split(":");return{hours:+x,minutes:+ne}}function Me(k,x,ne="en"){const Se=function lt(k){return(0,t.cg1)(k)[t.wAp.Currencies]}(ne)[k]||He[k]||[],gt=Se[1];return"narrow"===x&&"string"==typeof gt?gt:Se[0]||k} /** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +const Ye=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,ct={},dt=/((?:[^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 Nt,Zt,Kt;function we(k,x,ne,Se){let gt=function Fi(k){if(Lr(k))return k;if("number"==typeof k&&!isNaN(k))return new Date(k);if("string"==typeof k){if(k=k.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(k)){const[gt,Pt=1,pn=1]=k.split("-").map(On=>+On);return q(gt,Pt-1,pn)}const ne=parseFloat(k);if(!isNaN(k-ne))return new Date(ne);let Se;if(Se=k.match(Ye))return function Cr(k){const x=new Date(0);let ne=0,Se=0;const gt=k[8]?x.setUTCFullYear:x.setFullYear,Pt=k[8]?x.setUTCHours:x.setHours;k[9]&&(ne=Number(k[9]+k[10]),Se=Number(k[9]+k[11])),gt.call(x,Number(k[1]),Number(k[2])-1,Number(k[3]));const pn=Number(k[4]||0)-ne,On=Number(k[5]||0)-Se,si=Number(k[6]||0),di=Math.floor(1e3*parseFloat("0."+(k[7]||0)));return Pt.call(x,pn,On,si,di),x}(Se)}const x=new Date(k);if(!Lr(x))throw new Error(`Unable to convert "${k}" into a date`);return x}(k);x=re(ne,x)||x;let On,pn=[];for(;x;){if(On=dt.exec(x),!On){pn.push(x);break}{pn=pn.concat(On.slice(1));const Ci=pn.pop();if(!Ci)break;x=Ci}}let si=gt.getTimezoneOffset();Se&&(si=un(Se,si),gt=function Vn(k,x,ne){const Se=ne?-1:1,gt=k.getTimezoneOffset(),Pt=un(x,gt);return function Un(k,x){return(k=new Date(k.getTime())).setMinutes(k.getMinutes()+x),k}(k,Se*(Pt-gt))}(gt,Se,!0));let di="";return pn.forEach(Ci=>{const ei=function Ot(k){if(nt[k])return nt[k];let x;switch(k){case"G":case"GG":case"GGG":x=zt(Kt.Eras,Te.Abbreviated);break;case"GGGG":x=zt(Kt.Eras,Te.Wide);break;case"GGGGG":x=zt(Kt.Eras,Te.Narrow);break;case"y":x=Yt(Zt.FullYear,1,0,!1,!0);break;case"yy":x=Yt(Zt.FullYear,2,0,!0,!0);break;case"yyy":x=Yt(Zt.FullYear,3,0,!1,!0);break;case"yyyy":x=Yt(Zt.FullYear,4,0,!1,!0);break;case"Y":x=ye(1);break;case"YY":x=ye(2,!0);break;case"YYY":x=ye(3);break;case"YYYY":x=ye(4);break;case"M":case"L":x=Yt(Zt.Month,1,1);break;case"MM":case"LL":x=Yt(Zt.Month,2,1);break;case"MMM":x=zt(Kt.Months,Te.Abbreviated);break;case"MMMM":x=zt(Kt.Months,Te.Wide);break;case"MMMMM":x=zt(Kt.Months,Te.Narrow);break;case"LLL":x=zt(Kt.Months,Te.Abbreviated,Ce.Standalone);break;case"LLLL":x=zt(Kt.Months,Te.Wide,Ce.Standalone);break;case"LLLLL":x=zt(Kt.Months,Te.Narrow,Ce.Standalone);break;case"w":x=Ee(1);break;case"ww":x=Ee(2);break;case"W":x=Ee(1,!0);break;case"d":x=Yt(Zt.Date,1);break;case"dd":x=Yt(Zt.Date,2);break;case"c":case"cc":x=Yt(Zt.Day,1);break;case"ccc":x=zt(Kt.Days,Te.Abbreviated,Ce.Standalone);break;case"cccc":x=zt(Kt.Days,Te.Wide,Ce.Standalone);break;case"ccccc":x=zt(Kt.Days,Te.Narrow,Ce.Standalone);break;case"cccccc":x=zt(Kt.Days,Te.Short,Ce.Standalone);break;case"E":case"EE":case"EEE":x=zt(Kt.Days,Te.Abbreviated);break;case"EEEE":x=zt(Kt.Days,Te.Wide);break;case"EEEEE":x=zt(Kt.Days,Te.Narrow);break;case"EEEEEE":x=zt(Kt.Days,Te.Short);break;case"a":case"aa":case"aaa":x=zt(Kt.DayPeriods,Te.Abbreviated);break;case"aaaa":x=zt(Kt.DayPeriods,Te.Wide);break;case"aaaaa":x=zt(Kt.DayPeriods,Te.Narrow);break;case"b":case"bb":case"bbb":x=zt(Kt.DayPeriods,Te.Abbreviated,Ce.Standalone,!0);break;case"bbbb":x=zt(Kt.DayPeriods,Te.Wide,Ce.Standalone,!0);break;case"bbbbb":x=zt(Kt.DayPeriods,Te.Narrow,Ce.Standalone,!0);break;case"B":case"BB":case"BBB":x=zt(Kt.DayPeriods,Te.Abbreviated,Ce.Format,!0);break;case"BBBB":x=zt(Kt.DayPeriods,Te.Wide,Ce.Format,!0);break;case"BBBBB":x=zt(Kt.DayPeriods,Te.Narrow,Ce.Format,!0);break;case"h":x=Yt(Zt.Hours,1,-12);break;case"hh":x=Yt(Zt.Hours,2,-12);break;case"H":x=Yt(Zt.Hours,1);break;case"HH":x=Yt(Zt.Hours,2);break;case"m":x=Yt(Zt.Minutes,1);break;case"mm":x=Yt(Zt.Minutes,2);break;case"s":x=Yt(Zt.Seconds,1);break;case"ss":x=Yt(Zt.Seconds,2);break;case"S":x=Yt(Zt.FractionalSeconds,1);break;case"SS":x=Yt(Zt.FractionalSeconds,2);break;case"SSS":x=Yt(Zt.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":x=Dn(Nt.Short);break;case"ZZZZZ":x=Dn(Nt.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":x=Dn(Nt.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":x=Dn(Nt.Long);break;default:return null}return nt[k]=x,x}(Ci);di+=ei?ei(gt,ne,si):"''"===Ci?"'":Ci.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),di}function q(k,x,ne){const Se=new Date(0);return Se.setFullYear(k,x,ne),Se.setHours(0,0,0),Se}function re(k,x){const ne=function Tt(k){return(0,t.cg1)(k)[t.wAp.LocaleId]}(k);if(ct[ne]=ct[ne]||{},ct[ne][x])return ct[ne][x];let Se="";switch(x){case"shortDate":Se=Bt(k,Qe.Short);break;case"mediumDate":Se=Bt(k,Qe.Medium);break;case"longDate":Se=Bt(k,Qe.Long);break;case"fullDate":Se=Bt(k,Qe.Full);break;case"shortTime":Se=Qt(k,Qe.Short);break;case"mediumTime":Se=Qt(k,Qe.Medium);break;case"longTime":Se=Qt(k,Qe.Long);break;case"fullTime":Se=Qt(k,Qe.Full);break;case"short":const gt=re(k,"shortTime"),Pt=re(k,"shortDate");Se=je(Rt(k,Qe.Short),[gt,Pt]);break;case"medium":const pn=re(k,"mediumTime"),On=re(k,"mediumDate");Se=je(Rt(k,Qe.Medium),[pn,On]);break;case"long":const si=re(k,"longTime"),di=re(k,"longDate");Se=je(Rt(k,Qe.Long),[si,di]);break;case"full":const Ci=re(k,"fullTime"),ei=re(k,"fullDate");Se=je(Rt(k,Qe.Full),[Ci,ei])}return Se&&(ct[ne][x]=Se),Se}function je(k,x){return x&&(k=k.replace(/\{([^}]+)}/g,function(ne,Se){return null!=x&&Se in x?x[Se]:ne})),k}function ut(k,x,ne="-",Se,gt){let Pt="";(k<0||gt&&k<=0)&&(gt?k=1-k:(k=-k,Pt=ne));let pn=String(k);for(;pn.length0||On>-ne)&&(On+=ne),k===Zt.Hours)0===On&&-12===ne&&(On=12);else if(k===Zt.FractionalSeconds)return function nn(k,x){return ut(k,3).substring(0,x)}(On,x);const si=_n(pn,st.MinusSign);return ut(On,x,si,Se,gt)}}function zt(k,x,ne=Ce.Format,Se=!1){return function(gt,Pt){return function Pn(k,x,ne,Se,gt,Pt){switch(ne){case Kt.Months:return function Mt(k,x,ne){const Se=(0,t.cg1)(k),Pt=Je([Se[t.wAp.MonthsFormat],Se[t.wAp.MonthsStandalone]],x);return Je(Pt,ne)}(x,gt,Se)[k.getMonth()];case Kt.Days:return function Dt(k,x,ne){const Se=(0,t.cg1)(k),Pt=Je([Se[t.wAp.DaysFormat],Se[t.wAp.DaysStandalone]],x);return Je(Pt,ne)}(x,gt,Se)[k.getDay()];case Kt.DayPeriods:const pn=k.getHours(),On=k.getMinutes();if(Pt){const di=function fn(k){const x=(0,t.cg1)(k);return at(x),(x[t.wAp.ExtraData][2]||[]).map(Se=>"string"==typeof Se?Fe(Se):[Fe(Se[0]),Fe(Se[1])])}(x),Ci=function Xt(k,x,ne){const Se=(0,t.cg1)(k);at(Se);const Pt=Je([Se[t.wAp.ExtraData][0],Se[t.wAp.ExtraData][1]],x)||[];return Je(Pt,ne)||[]}(x,gt,Se),ei=di.findIndex(Ui=>{if(Array.isArray(Ui)){const[fi,xr]=Ui,Lo=pn>=fi.hours&&On>=fi.minutes,Q=pn0?Math.floor(gt/60):Math.ceil(gt/60);switch(k){case Nt.Short:return(gt>=0?"+":"")+ut(pn,2,Pt)+ut(Math.abs(gt%60),2,Pt);case Nt.ShortGMT:return"GMT"+(gt>=0?"+":"")+ut(pn,1,Pt);case Nt.Long:return"GMT"+(gt>=0?"+":"")+ut(pn,2,Pt)+":"+ut(Math.abs(gt%60),2,Pt);case Nt.Extended:return 0===Se?"Z":(gt>=0?"+":"")+ut(pn,2,Pt)+":"+ut(Math.abs(gt%60),2,Pt);default:throw new Error(`Unknown zone width "${k}"`)}}}!function(k){k[k.Short=0]="Short",k[k.ShortGMT=1]="ShortGMT",k[k.Long=2]="Long",k[k.Extended=3]="Extended"}(Nt||(Nt={})),function(k){k[k.FullYear=0]="FullYear",k[k.Month=1]="Month",k[k.Date=2]="Date",k[k.Hours=3]="Hours",k[k.Minutes=4]="Minutes",k[k.Seconds=5]="Seconds",k[k.FractionalSeconds=6]="FractionalSeconds",k[k.Day=7]="Day"}(Zt||(Zt={})),function(k){k[k.DayPeriods=0]="DayPeriods",k[k.Days=1]="Days",k[k.Months=2]="Months",k[k.Eras=3]="Eras"}(Kt||(Kt={}));function Ir(k){return q(k.getFullYear(),k.getMonth(),k.getDate()+(4-k.getDay()))}function Ee(k,x=!1){return function(ne,Se){let gt;if(x){const Pt=new Date(ne.getFullYear(),ne.getMonth(),1).getDay()-1,pn=ne.getDate();gt=1+Math.floor((pn+Pt)/7)}else{const Pt=Ir(ne),pn=function vi(k){const x=q(k,0,1).getDay();return q(k,0,1+(x<=4?4:11)-x)}(Pt.getFullYear()),On=Pt.getTime()-pn.getTime();gt=1+Math.round(On/6048e5)}return ut(gt,k,_n(Se,st.MinusSign))}}function ye(k,x=!1){return function(ne,Se){return ut(Ir(ne).getFullYear(),k,_n(Se,st.MinusSign),x)}}const nt={};function un(k,x){k=k.replace(/:/g,"");const ne=Date.parse("Jan 01, 1970 00:00:00 "+k)/6e4;return isNaN(ne)?x:ne}function Lr(k){return k instanceof Date&&!isNaN(k.valueOf())} /** - * @license - * Copyright Google LLC All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - */ -Zone.__load_patch("legacy",function(r){var a=r[Zone.__symbol__("legacyPatch")];a&&a()}),Zone.__load_patch("queueMicrotask",function(r,a,u){u.patchMethod(r,"queueMicrotask",function(l){return function(f,v){a.current.scheduleMicroTask("queueMicrotask",v[0])}})}),Zone.__load_patch("timers",function(r){var a="set",u="clear";Se(r,a,u,"Timeout"),Se(r,a,u,"Interval"),Se(r,a,u,"Immediate")}),Zone.__load_patch("requestAnimationFrame",function(r){Se(r,"request","cancel","AnimationFrame"),Se(r,"mozRequest","mozCancel","AnimationFrame"),Se(r,"webkitRequest","webkitCancel","AnimationFrame")}),Zone.__load_patch("blocking",function(r,a){for(var u=["alert","prompt","confirm"],l=0;l-1&&(x=x.replace(".","")),(Pt=x.search(/e/i))>0?(gt<0&&(gt=Pt),gt+=+x.slice(Pt+1),x=x.substring(0,Pt)):gt<0&&(gt=x.length),Pt=0;"0"===x.charAt(Pt);Pt++);if(Pt===(On=x.length))Se=[0],gt=1;else{for(On--;"0"===x.charAt(On);)On--;for(gt-=Pt,Se=[],pn=0;Pt<=On;Pt++,pn++)Se[pn]=Number(x.charAt(Pt))}return gt>22&&(Se=Se.splice(0,21),ne=gt-1,gt=1),{digits:Se,exponent:ne,integerLen:gt}}(k);pn&&(di=function rn(k){if(0===k.digits[0])return k;const x=k.digits.length-k.integerLen;return k.exponent?k.exponent+=2:(0===x?k.digits.push(0,0):1===x&&k.digits.push(0),k.integerLen+=2),k}(di));let Ci=x.minInt,ei=x.minFrac,Ui=x.maxFrac;if(Pt){const he=Pt.match(qi);if(null===he)throw new Error(`${Pt} is not a valid digit info`);const Le=he[1],Ve=he[3],Ct=he[5];null!=Le&&(Ci=Bi(Le)),null!=Ve&&(ei=Bi(Ve)),null!=Ct?Ui=Bi(Ct):null!=Ve&&ei>Ui&&(Ui=ei)}!function Ei(k,x,ne){if(x>ne)throw new Error(`The minimum number of digits after fraction (${x}) is higher than the maximum (${ne}).`);let Se=k.digits,gt=Se.length-k.integerLen;const Pt=Math.min(Math.max(x,gt),ne);let pn=Pt+k.integerLen,On=Se[pn];if(pn>0){Se.splice(Math.max(k.integerLen,pn));for(let ei=pn;ei=5)if(pn-1<0){for(let ei=0;ei>pn;ei--)Se.unshift(0),k.integerLen++;Se.unshift(1),k.integerLen++}else Se[pn-1]++;for(;gt=di?xr.pop():si=!1),Ui>=10?1:0},0);Ci&&(Se.unshift(Ci),k.integerLen++)}(di,ei,Ui);let fi=di.digits,xr=di.integerLen;const Lo=di.exponent;let Q=[];for(si=fi.every(he=>!he);xr0?Q=fi.splice(xr,fi.length):(Q=fi,fi=[0]);const V=[];for(fi.length>=x.lgSize&&V.unshift(fi.splice(-x.lgSize,fi.length).join(""));fi.length>x.gSize;)V.unshift(fi.splice(-x.gSize,fi.length).join(""));fi.length&&V.unshift(fi.join("")),On=V.join(_n(ne,Se)),Q.length&&(On+=_n(ne,gt)+Q.join("")),Lo&&(On+=_n(ne,st.Exponential)+"+"+Lo)}else On=_n(ne,st.Infinity);return On=k<0&&!si?x.negPre+On+x.negSuf:x.posPre+On+x.posSuf,On}function oi(k,x,ne,Se,gt){const pn=ur(Ln(x,T.Currency),_n(x,st.MinusSign));return pn.minFrac=function qt(k){let x;const ne=He[k];return ne&&(x=ne[2]),"number"==typeof x?x:2}(Se),pn.maxFrac=pn.minFrac,qn(k,pn,x,st.CurrencyGroup,st.CurrencyDecimal,gt).replace("\xa4",ne).replace("\xa4","").trim()}function ur(k,x="-"){const ne={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},Se=k.split(";"),gt=Se[0],Pt=Se[1],pn=-1!==gt.indexOf(".")?gt.split("."):[gt.substring(0,gt.lastIndexOf("0")+1),gt.substring(gt.lastIndexOf("0")+1)],On=pn[0],si=pn[1]||"";ne.posPre=On.substring(0,On.indexOf("#"));for(let Ci=0;Ci0){var Ee=H.invoke;H.invoke=function(){for(var M=I[a.__symbol__("loadfalse")],E=0;Ece.length)&&($=ce.length);for(var ve=0,U=new Array($);ve<$;ve++)U[ve]=ce[ve];return U},P.exports.default=P.exports,P.exports.__esModule=!0},1416:function(P){P.exports=function(ce,$){if(!(ce instanceof $))throw new TypeError("Cannot call a class as a function")},P.exports.default=P.exports,P.exports.__esModule=!0},5575:function(P){function de($,ve){for(var U=0;U=U.length?{done:!0}:{done:!1,value:U[Be++]}},e:function(Pe){throw Pe},f:et}}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 We,Xe=!0,Ye=!1;return{s:function(){he=he.call(U)},n:function(){var Pe=he.next();return Xe=Pe.done,Pe},e:function(Pe){Ye=!0,We=Pe},f:function(){try{!Xe&&null!=he.return&&he.return()}finally{if(Ye)throw We}}}},P.exports.default=P.exports,P.exports.__esModule=!0},6636:function(P,de,ce){var $=ce(2206);P.exports=function(U,fe){if(U){if("string"==typeof U)return $(U,fe);var he=Object.prototype.toString.call(U).slice(8,-1);if("Object"===he&&U.constructor&&(he=U.constructor.name),"Map"===he||"Set"===he)return Array.from(U);if("Arguments"===he||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(he))return $(U,fe)}},P.exports.default=P.exports,P.exports.__esModule=!0}},function(P){var $;$=1312,P(P.s=$)}]); -//# sourceMappingURL=polyfills.js.map -!function(e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).Ajv=e()}(function(){return function e(t,r,i){function n(s,o){if(!r[s]){if(!t[s]){var l="function"==typeof require&&require;if(!o&&l)return l(s,!0);if(a)return a(s,!0);var u=new Error("Cannot find module '"+s+"'");throw u.code="MODULE_NOT_FOUND",u}var c=r[s]={exports:{}};t[s][0].call(c.exports,function(e){return n(t[s][1][e]||e)},c,c.exports,e,t,r,i)}return r[s].exports}for(var a="function"==typeof require&&require,s=0;s%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i,c=/^(?:(?:http[s\u017F]?|ftp):\/\/)(?:(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+(?::(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?@)?(?:(?!10(?:\.[0-9]{1,3}){3})(?!127(?:\.[0-9]{1,3}){3})(?!169\.254(?:\.[0-9]{1,3}){2})(?!192\.168(?:\.[0-9]{1,3}){2})(?!172\.(?:1[6-9]|2[0-9]|3[01])(?:\.[0-9]{1,3}){2})(?:[1-9][0-9]?|1[0-9][0-9]|2[01][0-9]|22[0-3])(?:\.(?:1?[0-9]{1,2}|2[0-4][0-9]|25[0-5])){2}(?:\.(?:[1-9][0-9]?|1[0-9][0-9]|2[0-4][0-9]|25[0-4]))|(?:(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-?)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)(?:\.(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-?)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)*(?:\.(?:(?:[KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]){2,})))(?::[0-9]{2,5})?(?:\/(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?$/i,d=/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,h=/^(?:\/(?:[^~/]|~0|~1)*)*$/,p=/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,f=/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/;function m(e){return i.copy(m[e="full"==e?"full":"fast"])}function g(e){var t=e.match(n);if(!t)return!1;var r,i=+t[2],s=+t[3];return 1<=i&&i<=12&&1<=s&&s<=(2!=i||(r=+t[1])%4!=0||r%100==0&&r%400!=0?a[i]:29)}function v(e,t){var r=e.match(s);if(!r)return!1;var i=r[1],n=r[2],a=r[3];return(i<=23&&n<=59&&a<=59||23==i&&59==n&&60==a)&&(!t||r[5])}(t.exports=m).fast={date:/^\d\d\d\d-[0-1]\d-[0-3]\d$/,time:/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d:\d\d)?$/i,"date-time":/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d:\d\d)$/i,uri:/^(?:[a-z][a-z0-9+-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,"uri-template":u,url:c,email:/^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i,hostname:o,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:T,uuid:d,"json-pointer":h,"json-pointer-uri-fragment":p,"relative-json-pointer":f},m.full={date:g,time:v,"date-time":function(e){var t=e.split(y);return 2==t.length&&g(t[0])&&v(t[1],!0)},uri:function(e){return _.test(e)&&l.test(e)},"uri-reference":/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,"uri-template":u,url:c,email:/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&''*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,hostname:function(e){return e.length<=255&&o.test(e)},ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:T,uuid:d,"json-pointer":h,"json-pointer-uri-fragment":p,"relative-json-pointer":f};var y=/t|\s/i,_=/\/|:/,b=/[^\\]\\Z/;function T(e){if(b.test(e))return!1;try{return new RegExp(e),!0}catch(e){return!1}}},{"./util":10}],5:[function(e,t,r){"use strict";var i=e("./resolve"),n=e("./util"),a=e("./error_classes"),s=e("fast-json-stable-stringify"),o=e("../dotjs/validate"),l=n.ucs2length,u=e("fast-deep-equal"),c=a.Validation;function d(e,t,r){for(var i=0;i",y=p?">":"<",_=void 0;if(g){var b,T=e.util.getData(m.$data,s,e.dataPathArr),w="exclusive"+a,S="exclType"+a,E="exclIsNumber"+a,k="' + "+(P="op"+a)+" + '";n+=" var schemaExcl"+a+" = "+T+"; ",_=f,(b=b||[]).push(n+=" var "+w+"; var "+S+" = typeof "+(T="schemaExcl"+a)+"; if ("+S+" != 'boolean' && "+S+" != 'undefined' && "+S+" != 'number') { "),n="",!1!==e.createErrors?(n+=" { keyword: '"+(_||"_exclusiveLimit")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: {} ",!1!==e.opts.messages&&(n+=" , message: '"+f+" should be boolean' "),e.opts.verbose&&(n+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+d+" "),n+=" } "):n+=" {} ";var C=n;n=b.pop(),n+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+C+"]); ":" validate.errors = ["+C+"]; return false; ":" var err = "+C+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+=" } else if ( ",h&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || "),n+=" "+S+" == 'number' ? ( ("+w+" = "+i+" === undefined || "+T+" "+v+"= "+i+") ? "+d+" "+y+"= "+T+" : "+d+" "+y+" "+i+" ) : ( ("+w+" = "+T+" === true) ? "+d+" "+y+"= "+i+" : "+d+" "+y+" "+i+" ) || "+d+" !== "+d+") { var op"+a+" = "+w+" ? '"+v+"' : '"+v+"='; ",void 0===o&&(u=e.errSchemaPath+"/"+(_=f),i=T,h=g)}else if(k=v,(E="number"==typeof m)&&h){var P="'"+k+"'";n+=" if ( ",h&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || "),n+=" ( "+i+" === undefined || "+m+" "+v+"= "+i+" ? "+d+" "+y+"= "+m+" : "+d+" "+y+" "+i+" ) || "+d+" !== "+d+") { "}else E&&void 0===o?(w=!0,u=e.errSchemaPath+"/"+(_=f),i=m,y+="="):(E&&(i=Math[p?"min":"max"](m,o)),m===(!E||i)?(w=!0,u=e.errSchemaPath+"/"+(_=f),y+="="):(w=!1,k+="=")),P="'"+k+"'",n+=" if ( ",h&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || "),n+=" "+d+" "+y+" "+i+" || "+d+" !== "+d+") { ";return _=_||t,(b=b||[]).push(n),n="",!1!==e.createErrors?(n+=" { keyword: '"+(_||"_limit")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { comparison: "+P+", limit: "+i+", exclusive: "+w+" } ",!1!==e.opts.messages&&(n+=" , message: 'should be "+k+" ",n+=h?"' + "+i:i+"'"),e.opts.verbose&&(n+=" , schema: ",n+=h?"validate.schema"+l:""+o,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+d+" "),n+=" } "):n+=" {} ",C=n,n=b.pop(),n+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+C+"]); ":" validate.errors = ["+C+"]; return false; ":" var err = "+C+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+=" } ",c&&(n+=" else { "),n}},{}],13:[function(e,t,r){"use strict";t.exports=function(e,t,r){var i,n=" ",a=e.level,s=e.dataLevel,o=e.schema[t],l=e.schemaPath+e.util.getProperty(t),u=e.errSchemaPath+"/"+t,c=!e.opts.allErrors,d="data"+(s||""),h=e.opts.$data&&o&&o.$data;h?(n+=" var schema"+a+" = "+e.util.getData(o.$data,s,e.dataPathArr)+"; ",i="schema"+a):i=o,n+="if ( ",h&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || ");var p=t,f=f||[];f.push(n+=" "+d+".length "+("maxItems"==t?">":"<")+" "+i+") { "),n="",!1!==e.createErrors?(n+=" { keyword: '"+(p||"_limitItems")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+i+" } ",!1!==e.opts.messages&&(n+=" , message: 'should NOT have ",n+="maxItems"==t?"more":"less",n+=" than ",n+=h?"' + "+i+" + '":""+o,n+=" items' "),e.opts.verbose&&(n+=" , schema: ",n+=h?"validate.schema"+l:""+o,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+d+" "),n+=" } "):n+=" {} ";var m=n;return n=f.pop(),n+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+="} ",c&&(n+=" else { "),n}},{}],14:[function(e,t,r){"use strict";t.exports=function(e,t,r){var i,n=" ",a=e.level,s=e.dataLevel,o=e.schema[t],l=e.schemaPath+e.util.getProperty(t),u=e.errSchemaPath+"/"+t,c=!e.opts.allErrors,d="data"+(s||""),h=e.opts.$data&&o&&o.$data;h?(n+=" var schema"+a+" = "+e.util.getData(o.$data,s,e.dataPathArr)+"; ",i="schema"+a):i=o,n+="if ( ",h&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || "),n+=!1===e.opts.unicode?" "+d+".length ":" ucs2length("+d+") ";var p=t,f=f||[];f.push(n+=" "+("maxLength"==t?">":"<")+" "+i+") { "),n="",!1!==e.createErrors?(n+=" { keyword: '"+(p||"_limitLength")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+i+" } ",!1!==e.opts.messages&&(n+=" , message: 'should NOT be ",n+="maxLength"==t?"longer":"shorter",n+=" than ",n+=h?"' + "+i+" + '":""+o,n+=" characters' "),e.opts.verbose&&(n+=" , schema: ",n+=h?"validate.schema"+l:""+o,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+d+" "),n+=" } "):n+=" {} ";var m=n;return n=f.pop(),n+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+="} ",c&&(n+=" else { "),n}},{}],15:[function(e,t,r){"use strict";t.exports=function(e,t,r){var i,n=" ",a=e.level,s=e.dataLevel,o=e.schema[t],l=e.schemaPath+e.util.getProperty(t),u=e.errSchemaPath+"/"+t,c=!e.opts.allErrors,d="data"+(s||""),h=e.opts.$data&&o&&o.$data;h?(n+=" var schema"+a+" = "+e.util.getData(o.$data,s,e.dataPathArr)+"; ",i="schema"+a):i=o,n+="if ( ",h&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || ");var p=t,f=f||[];f.push(n+=" Object.keys("+d+").length "+("maxProperties"==t?">":"<")+" "+i+") { "),n="",!1!==e.createErrors?(n+=" { keyword: '"+(p||"_limitProperties")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+i+" } ",!1!==e.opts.messages&&(n+=" , message: 'should NOT have ",n+="maxProperties"==t?"more":"less",n+=" than ",n+=h?"' + "+i+" + '":""+o,n+=" properties' "),e.opts.verbose&&(n+=" , schema: ",n+=h?"validate.schema"+l:""+o,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+d+" "),n+=" } "):n+=" {} ";var m=n;return n=f.pop(),n+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+="} ",c&&(n+=" else { "),n}},{}],16:[function(e,t,r){"use strict";t.exports=function(e,t,r){var i=" ",n=e.schema[t],a=e.schemaPath+e.util.getProperty(t),s=e.errSchemaPath+"/"+t,o=!e.opts.allErrors,l=e.util.copy(e),u="";l.level++;var c="valid"+l.level,d=l.baseId,h=!0,p=n;if(p)for(var f,m=-1,g=p.length-1;m "+C+") { ";var x=c+"["+C+"]";p.schema=k,p.schemaPath=o+"["+C+"]",p.errSchemaPath=l+"/"+C,p.errorPath=e.util.getPathExpr(e.errorPath,C,e.opts.jsonPointers,!0),p.dataPathArr[v]=C;var I=e.validate(p);p.baseId=_,e.util.varOccurences(I,y)<2?i+=" "+e.util.varReplace(I,y,x)+" ":i+=" var "+y+" = "+x+"; "+I+" ",i+=" } ",u&&(i+=" if ("+m+") { ",f+="}")}"object"==typeof b&&e.util.schemaHasRules(b,e.RULES.all)&&(p.schema=b,p.schemaPath=e.schemaPath+".additionalItems",p.errSchemaPath=e.errSchemaPath+"/additionalItems",i+=" "+m+" = true; if ("+c+".length > "+s.length+") { for (var "+g+" = "+s.length+"; "+g+" < "+c+".length; "+g+"++) { ",p.errorPath=e.util.getPathExpr(e.errorPath,g,e.opts.jsonPointers,!0),x=c+"["+g+"]",p.dataPathArr[v]=g,I=e.validate(p),p.baseId=_,e.util.varOccurences(I,y)<2?i+=" "+e.util.varReplace(I,y,x)+" ":i+=" var "+y+" = "+x+"; "+I+" ",u&&(i+=" if (!"+m+") break; "),i+=" } } ",u&&(i+=" if ("+m+") { ",f+="}"))}else e.util.schemaHasRules(s,e.RULES.all)&&(p.schema=s,p.schemaPath=o,p.errSchemaPath=l,i+=" for (var "+g+" = 0; "+g+" < "+c+".length; "+g+"++) { ",p.errorPath=e.util.getPathExpr(e.errorPath,g,e.opts.jsonPointers,!0),x=c+"["+g+"]",p.dataPathArr[v]=g,I=e.validate(p),p.baseId=_,e.util.varOccurences(I,y)<2?i+=" "+e.util.varReplace(I,y,x)+" ":i+=" var "+y+" = "+x+"; "+I+" ",u&&(i+=" if (!"+m+") break; "),i+=" }");return u&&(i+=" "+f+" if ("+h+" == errors) {"),e.util.cleanUpCode(i)}},{}],28:[function(e,t,r){"use strict";t.exports=function(e,t,r){var i,n=" ",a=e.level,s=e.dataLevel,o=e.schema[t],l=e.schemaPath+e.util.getProperty(t),u=e.errSchemaPath+"/"+t,c=!e.opts.allErrors,d="data"+(s||""),h=e.opts.$data&&o&&o.$data;h?(n+=" var schema"+a+" = "+e.util.getData(o.$data,s,e.dataPathArr)+"; ",i="schema"+a):i=o,n+="var division"+a+";if (",h&&(n+=" "+i+" !== undefined && ( typeof "+i+" != 'number' || "),n+=" (division"+a+" = "+d+" / "+i+", ",n+=e.opts.multipleOfPrecision?" Math.abs(Math.round(division"+a+") - division"+a+") > 1e-"+e.opts.multipleOfPrecision+" ":" division"+a+" !== parseInt(division"+a+") ",n+=" ) ",h&&(n+=" ) ");var p=p||[];p.push(n+=" ) { "),n="",!1!==e.createErrors?(n+=" { keyword: 'multipleOf' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { multipleOf: "+i+" } ",!1!==e.opts.messages&&(n+=" , message: 'should be multiple of ",n+=h?"' + "+i:i+"'"),e.opts.verbose&&(n+=" , schema: ",n+=h?"validate.schema"+l:""+o,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+d+" "),n+=" } "):n+=" {} ";var f=n;return n=p.pop(),n+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+f+"]); ":" validate.errors = ["+f+"]; return false; ":" var err = "+f+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+="} ",c&&(n+=" else { "),n}},{}],29:[function(e,t,r){"use strict";t.exports=function(e,t,r){var i=" ",n=e.level,a=e.dataLevel,s=e.schema[t],o=e.schemaPath+e.util.getProperty(t),l=e.errSchemaPath+"/"+t,u=!e.opts.allErrors,c="data"+(a||""),d="errs__"+n,h=e.util.copy(e);h.level++;var p="valid"+h.level;if(e.util.schemaHasRules(s,e.RULES.all)){h.schema=s,h.schemaPath=o,h.errSchemaPath=l,i+=" var "+d+" = errors; ";var f,m=e.compositeRule;e.compositeRule=h.compositeRule=!0,h.createErrors=!1,h.opts.allErrors&&(f=h.opts.allErrors,h.opts.allErrors=!1),i+=" "+e.validate(h)+" ",h.createErrors=!0,f&&(h.opts.allErrors=f),e.compositeRule=h.compositeRule=m;var g=g||[];g.push(i+=" if ("+p+") { "),i="",!1!==e.createErrors?(i+=" { keyword: 'not' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: {} ",!1!==e.opts.messages&&(i+=" , message: 'should NOT be valid' "),e.opts.verbose&&(i+=" , schema: validate.schema"+o+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ";var v=i;i=g.pop(),i+=!e.compositeRule&&u?e.async?" throw new ValidationError(["+v+"]); ":" validate.errors = ["+v+"]; return false; ":" var err = "+v+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",i+=" } else { errors = "+d+"; if (vErrors !== null) { if ("+d+") vErrors.length = "+d+"; else vErrors = null; } ",e.opts.allErrors&&(i+=" } ")}else i+=" var err = ",!1!==e.createErrors?(i+=" { keyword: 'not' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: {} ",!1!==e.opts.messages&&(i+=" , message: 'should NOT be valid' "),e.opts.verbose&&(i+=" , schema: validate.schema"+o+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ",i+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",u&&(i+=" if (false) { ");return i}},{}],30:[function(e,t,r){"use strict";t.exports=function(e,t,r){var i=" ",n=e.level,a=e.dataLevel,s=e.schema[t],o=e.schemaPath+e.util.getProperty(t),l=e.errSchemaPath+"/"+t,u=!e.opts.allErrors,c="data"+(a||""),d="valid"+n,h="errs__"+n,p=e.util.copy(e),f="";p.level++;var m="valid"+p.level,g=p.baseId,v="prevValid"+n,y="passingSchemas"+n;i+="var "+h+" = errors , "+v+" = false , "+d+" = false , "+y+" = null; ";var _=e.compositeRule;e.compositeRule=p.compositeRule=!0;var b=s;if(b)for(var T,w=-1,S=b.length-1;w 1) { ";var f=e.schema.items&&e.schema.items.type,m=Array.isArray(f);!f||"object"==f||"array"==f||m&&(0<=f.indexOf("object")||0<=f.indexOf("array"))?n+=" outer: for (;i--;) { for (j = i; j--;) { if (equal("+d+"[i], "+d+"[j])) { "+h+" = false; break outer; } } } ":(n+=" var itemIndices = {}, item; for (;i--;) { var item = "+d+"[i]; ",n+=" if ("+e.util["checkDataType"+(m?"s":"")](f,"item",!0)+") continue; ",m&&(n+=" if (typeof item == 'string') item = '\"' + item; "),n+=" if (typeof itemIndices[item] == 'number') { "+h+" = false; j = itemIndices[item]; break; } itemIndices[item] = i; } "),n+=" } ",p&&(n+=" } ");var g=g||[];g.push(n+=" if (!"+h+") { "),n="",!1!==e.createErrors?(n+=" { keyword: 'uniqueItems' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { i: i, j: j } ",!1!==e.opts.messages&&(n+=" , message: 'should NOT have duplicate items (items ## ' + j + ' and ' + i + ' are identical)' "),e.opts.verbose&&(n+=" , schema: ",n+=p?"validate.schema"+l:""+o,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+d+" "),n+=" } "):n+=" {} ";var v=n;n=g.pop(),n+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+v+"]); ":" validate.errors = ["+v+"]; return false; ":" var err = "+v+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+=" } ",c&&(n+=" else { ")}else c&&(n+=" if (true) { ");return n}},{}],37:[function(e,t,r){"use strict";t.exports=function(e,t,r){var i="",n=!0===e.schema.$async,a=e.util.schemaHasRulesExcept(e.schema,e.RULES.all,"$ref"),s=e.self._getId(e.schema);if(e.isTop&&(i+=" var validate = ",n&&(e.async=!0,i+="async "),i+="function(data, dataPath, parentData, parentDataProperty, rootData) { 'use strict'; ",s&&(e.opts.sourceCode||e.opts.processCode)&&(i+=" /*# sourceURL="+s+" */ ")),"boolean"==typeof e.schema||!a&&!e.schema.$ref){var o=e.level,l=e.dataLevel,u=e.schema[t="false schema"],c=e.schemaPath+e.util.getProperty(t),d=e.errSchemaPath+"/"+t,h=!e.opts.allErrors,p="data"+(l||""),f="valid"+o;if(!1===e.schema){e.isTop?h=!0:i+=" var "+f+" = false; ",(H=H||[]).push(i),i="",!1!==e.createErrors?(i+=" { keyword: 'false schema' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(d)+" , params: {} ",!1!==e.opts.messages&&(i+=" , message: 'boolean schema is false' "),e.opts.verbose&&(i+=" , schema: false , parentSchema: validate.schema"+e.schemaPath+" , data: "+p+" "),i+=" } "):i+=" {} ";var m=i;i=H.pop(),i+=!e.compositeRule&&h?e.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}else i+=e.isTop?n?" return data; ":" validate.errors = null; return true; ":" var "+f+" = true; ";return e.isTop&&(i+=" }; return validate; "),i}if(e.isTop){var g=e.isTop;o=e.level=0,l=e.dataLevel=0,p="data",e.rootId=e.resolve.fullPath(e.self._getId(e.root.schema)),e.baseId=e.baseId||e.rootId,delete e.isTop,e.dataPathArr=[void 0],i+=" var vErrors = null; ",i+=" var errors = 0; ",i+=" if (rootData === undefined) rootData = data; "}else{if(o=e.level,p="data"+((l=e.dataLevel)||""),s&&(e.baseId=e.resolve.url(e.baseId,s)),n&&!e.async)throw new Error("async schema in sync schema");i+=" var errs_"+o+" = errors;"}f="valid"+o,h=!e.opts.allErrors;var v="",y="",_=e.schema.type,b=Array.isArray(_);if(b&&1==_.length&&(_=_[0],b=!1),e.schema.$ref&&a){if("fail"==e.opts.extendRefs)throw new Error('$ref: validation keywords used in schema at path "'+e.errSchemaPath+'" (see option extendRefs)');!0!==e.opts.extendRefs&&(a=!1,e.logger.warn('$ref: keywords ignored in schema at path "'+e.errSchemaPath+'"'))}if(e.schema.$comment&&e.opts.$comment&&(i+=" "+e.RULES.all.$comment.code(e,"$comment")),_){if(e.opts.coerceTypes)var T=e.util.coerceToTypes(e.opts.coerceTypes,_);var w=e.RULES.types[_];if(T||b||!0===w||w&&!X(w)){if(c=e.schemaPath+".type",d=e.errSchemaPath+"/type",c=e.schemaPath+".type",d=e.errSchemaPath+"/type",i+=" if ("+e.util[b?"checkDataTypes":"checkDataType"](_,p,!0)+") { ",T){var S="dataType"+o,E="coerced"+o;i+=" var "+S+" = typeof "+p+"; ","array"==e.opts.coerceTypes&&(i+=" if ("+S+" == 'object' && Array.isArray("+p+")) "+S+" = 'array'; "),i+=" var "+E+" = undefined; ";var k="",C=T;if(C)for(var P,x=-1,I=C.length-1;x= 0x80 (not a basic code point)","invalid-input":"Invalid input"},f=Math.floor,m=String.fromCharCode;function g(e){throw new RangeError(p[e])}function v(e,t){var r=e.split("@"),i="";return 1>1,e+=f(e/t);455f((u-n)/h))&&g("overflow"),n+=m*h;var v=p<=s?1:s+26<=p?26:p-s;if(mf(u/y)&&g("overflow"),h*=y}var _=r.length+1;s=b(n-d,_,0==d),f(n/_)>u-a&&g("overflow"),a+=f(n/_),n%=_,r.splice(n++,0,a)}return String.fromCodePoint.apply(String,r)},w=function(e){var t=[],r=(e=y(e)).length,i=128,n=0,a=72,s=!0,o=!1,l=void 0;try{for(var c,d=e[Symbol.iterator]();!(s=(c=d.next()).done);s=!0){var h=c.value;h<128&&t.push(m(h))}}catch(e){o=!0,l=e}finally{try{!s&&d.return&&d.return()}finally{if(o)throw l}}var p=t.length,v=p;for(p&&t.push("-");vf((u-n)/x)&&g("overflow"),n+=(T-i)*x,i=T;var I=!0,A=!1,O=void 0;try{for(var D,L=e[Symbol.iterator]();!(I=(D=L.next()).done);I=!0){var R=D.value;if(Ru&&g("overflow"),R==i){for(var M=n,N=36;;N+=36){var U=N<=a?1:a+26<=N?26:N-a;if(M>6|192).toString(16).toUpperCase()+"%"+(63&t|128).toString(16).toUpperCase():"%"+(t>>12|224).toString(16).toUpperCase()+"%"+(t>>6&63|128).toString(16).toUpperCase()+"%"+(63&t|128).toString(16).toUpperCase()}function P(e){for(var t="",r=0,i=e.length;rA-Z\\x5E-\\x7E]",'[\\"\\\\]'),Q=new RegExp(W,"g"),Y=new RegExp(X,"g"),J=new RegExp(t("[^]","[A-Za-z0-9\\!\\$\\%\\'\\*\\+\\-\\^\\_\\`\\{\\|\\}\\~]","[\\.]",'[\\"]',K),"g"),Z=new RegExp(t("[^]",W,"[\\!\\$\\'\\(\\)\\*\\+\\,\\;\\:\\@]"),"g"),ee=Z;function te(e){var t=P(e);return t.match(Q)?t:e}var re={scheme:"mailto",parse:function(e,t){var r=e,i=r.to=r.path?r.path.split(","):[];if(r.path=void 0,r.query){for(var n=!1,a={},s=r.query.split("&"),o=0,l=s.length;o>>2]|=(r[n>>>2]>>>24-n%4*8&255)<<24-(i+n)%4*8;else if(65535>>2]=r[n>>>2];else t.push.apply(t,r);return this.sigBytes+=e,this},clamp:function(){var t=this.words,r=this.sigBytes;t[r>>>2]&=4294967295<<32-r%4*8,t.length=e.ceil(r/4)},clone:function(){var e=a.clone.call(this);return e.words=this.words.slice(0),e},random:function(t){for(var r=[],i=0;i>>2]>>>24-i%4*8&255;r.push((n>>>4).toString(16)),r.push((15&n).toString(16))}return r.join("")},parse:function(e){for(var t=e.length,r=[],i=0;i>>3]|=parseInt(e.substr(i,2),16)<<24-i%8*4;return new s.init(r,t/2)}},u=o.Latin1={stringify:function(e){var t=e.words;e=e.sigBytes;for(var r=[],i=0;i>>2]>>>24-i%4*8&255));return r.join("")},parse:function(e){for(var t=e.length,r=[],i=0;i>>2]|=(255&e.charCodeAt(i))<<24-i%4*8;return new s.init(r,t)}},c=o.Utf8={stringify:function(e){try{return decodeURIComponent(escape(u.stringify(e)))}catch(e){throw Error("Malformed UTF-8 data")}},parse:function(e){return u.parse(unescape(encodeURIComponent(e)))}},d=i.BufferedBlockAlgorithm=a.extend({reset:function(){this._data=new s.init,this._nDataBytes=0},_append:function(e){"string"==typeof e&&(e=c.parse(e)),this._data.concat(e),this._nDataBytes+=e.sigBytes},_process:function(t){var r=this._data,i=r.words,n=r.sigBytes,a=this.blockSize,o=n/(4*a);if(t=(o=t?e.ceil(o):e.max((0|o)-this._minBufferSize,0))*a,n=e.min(4*t,n),t){for(var l=0;l>>32-a)+t}function r(e,t,r,i,n,a,s){return((e=e+(t&i|r&~i)+n+s)<>>32-a)+t}function i(e,t,r,i,n,a,s){return((e=e+(t^r^i)+n+s)<>>32-a)+t}function n(e,t,r,i,n,a,s){return((e=e+(r^(t|~i))+n+s)<>>32-a)+t}for(var a=CryptoJS,s=(l=a.lib).WordArray,o=l.Hasher,l=a.algo,u=[],c=0;64>c;c++)u[c]=4294967296*e.abs(e.sin(c+1))|0;l=l.MD5=o.extend({_doReset:function(){this._hash=new s.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(e,a){for(var s=0;16>s;s++){var o=e[l=a+s];e[l]=16711935&(o<<8|o>>>24)|4278255360&(o<<24|o>>>8)}s=this._hash.words;var l=e[a+0],c=(o=e[a+1],e[a+2]),d=e[a+3],h=e[a+4],p=e[a+5],f=e[a+6],m=e[a+7],g=e[a+8],v=e[a+9],y=e[a+10],_=e[a+11],b=e[a+12],T=e[a+13],w=e[a+14],S=e[a+15],E=t(E=s[0],P=s[1],C=s[2],k=s[3],l,7,u[0]),k=t(k,E,P,C,o,12,u[1]),C=t(C,k,E,P,c,17,u[2]),P=t(P,C,k,E,d,22,u[3]);E=t(E,P,C,k,h,7,u[4]),k=t(k,E,P,C,p,12,u[5]),C=t(C,k,E,P,f,17,u[6]),P=t(P,C,k,E,m,22,u[7]),E=t(E,P,C,k,g,7,u[8]),k=t(k,E,P,C,v,12,u[9]),C=t(C,k,E,P,y,17,u[10]),P=t(P,C,k,E,_,22,u[11]),E=t(E,P,C,k,b,7,u[12]),k=t(k,E,P,C,T,12,u[13]),C=t(C,k,E,P,w,17,u[14]),E=r(E,P=t(P,C,k,E,S,22,u[15]),C,k,o,5,u[16]),k=r(k,E,P,C,f,9,u[17]),C=r(C,k,E,P,_,14,u[18]),P=r(P,C,k,E,l,20,u[19]),E=r(E,P,C,k,p,5,u[20]),k=r(k,E,P,C,y,9,u[21]),C=r(C,k,E,P,S,14,u[22]),P=r(P,C,k,E,h,20,u[23]),E=r(E,P,C,k,v,5,u[24]),k=r(k,E,P,C,w,9,u[25]),C=r(C,k,E,P,d,14,u[26]),P=r(P,C,k,E,g,20,u[27]),E=r(E,P,C,k,T,5,u[28]),k=r(k,E,P,C,c,9,u[29]),C=r(C,k,E,P,m,14,u[30]),E=i(E,P=r(P,C,k,E,b,20,u[31]),C,k,p,4,u[32]),k=i(k,E,P,C,g,11,u[33]),C=i(C,k,E,P,_,16,u[34]),P=i(P,C,k,E,w,23,u[35]),E=i(E,P,C,k,o,4,u[36]),k=i(k,E,P,C,h,11,u[37]),C=i(C,k,E,P,m,16,u[38]),P=i(P,C,k,E,y,23,u[39]),E=i(E,P,C,k,T,4,u[40]),k=i(k,E,P,C,l,11,u[41]),C=i(C,k,E,P,d,16,u[42]),P=i(P,C,k,E,f,23,u[43]),E=i(E,P,C,k,v,4,u[44]),k=i(k,E,P,C,b,11,u[45]),C=i(C,k,E,P,S,16,u[46]),E=n(E,P=i(P,C,k,E,c,23,u[47]),C,k,l,6,u[48]),k=n(k,E,P,C,m,10,u[49]),C=n(C,k,E,P,w,15,u[50]),P=n(P,C,k,E,p,21,u[51]),E=n(E,P,C,k,b,6,u[52]),k=n(k,E,P,C,d,10,u[53]),C=n(C,k,E,P,y,15,u[54]),P=n(P,C,k,E,o,21,u[55]),E=n(E,P,C,k,g,6,u[56]),k=n(k,E,P,C,S,10,u[57]),C=n(C,k,E,P,f,15,u[58]),P=n(P,C,k,E,T,21,u[59]),E=n(E,P,C,k,h,6,u[60]),k=n(k,E,P,C,_,10,u[61]),C=n(C,k,E,P,c,15,u[62]),P=n(P,C,k,E,v,21,u[63]);s[0]=s[0]+E|0,s[1]=s[1]+P|0,s[2]=s[2]+C|0,s[3]=s[3]+k|0},_doFinalize:function(){var t=this._data,r=t.words,i=8*this._nDataBytes,n=8*t.sigBytes;r[n>>>5]|=128<<24-n%32;var a=e.floor(i/4294967296);for(r[15+(n+64>>>9<<4)]=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),r[14+(n+64>>>9<<4)]=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8),t.sigBytes=4*(r.length+1),this._process(),r=(t=this._hash).words,i=0;4>i;i++)n=r[i],r[i]=16711935&(n<<8|n>>>24)|4278255360&(n<<24|n>>>8);return t},clone:function(){var e=o.clone.call(this);return e._hash=this._hash.clone(),e}}),a.MD5=o._createHelper(l),a.HmacMD5=o._createHmacHelper(l)}(Math),function(e,t){"use strict";var r="function",i="undefined",n="object",a="model",s="name",o="type",l="vendor",u="version",c="architecture",d="console",h="mobile",p="tablet",f="smarttv",m="wearable",g={extend:function(e,t){var r={};for(var i in e)t[i]&&t[i].length%2==0?r[i]=t[i].concat(e[i]):r[i]=e[i];return r},has:function(e,t){return"string"==typeof e&&-1!==t.toLowerCase().indexOf(e.toLowerCase())},lowerize:function(e){return e.toLowerCase()},major:function(e){return"string"==typeof e?e.replace(/[^\d\.]/g,"").split(".")[0]:t},trim:function(e){return e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")}},v={rgx:function(e,i){for(var a,s,o,l,u,c,d=0;d>>16,65535&e[0],e[1]>>>16,65535&e[1]],t=[t[0]>>>16,65535&t[0],t[1]>>>16,65535&t[1]];var r=[0,0,0,0];return r[3]+=e[3]+t[3],r[2]+=r[3]>>>16,r[3]&=65535,r[2]+=e[2]+t[2],r[1]+=r[2]>>>16,r[2]&=65535,r[1]+=e[1]+t[1],r[0]+=r[1]>>>16,r[1]&=65535,r[0]+=e[0]+t[0],r[0]&=65535,[r[0]<<16|r[1],r[2]<<16|r[3]]},t=function(e,t){e=[e[0]>>>16,65535&e[0],e[1]>>>16,65535&e[1]],t=[t[0]>>>16,65535&t[0],t[1]>>>16,65535&t[1]];var r=[0,0,0,0];return r[3]+=e[3]*t[3],r[2]+=r[3]>>>16,r[3]&=65535,r[2]+=e[2]*t[3],r[1]+=r[2]>>>16,r[2]&=65535,r[2]+=e[3]*t[2],r[1]+=r[2]>>>16,r[2]&=65535,r[1]+=e[1]*t[3],r[0]+=r[1]>>>16,r[1]&=65535,r[1]+=e[2]*t[2],r[0]+=r[1]>>>16,r[1]&=65535,r[1]+=e[3]*t[1],r[0]+=r[1]>>>16,r[1]&=65535,r[0]+=e[0]*t[3]+e[1]*t[2]+e[2]*t[1]+e[3]*t[0],r[0]&=65535,[r[0]<<16|r[1],r[2]<<16|r[3]]},r=function(e,t){return 32===(t%=64)?[e[1],e[0]]:t<32?[e[0]<>>32-t,e[1]<>>32-t]:(t-=32,[e[1]<>>32-t,e[0]<>>32-t])},i=function(e,t){return 0===(t%=64)?e:t<32?[e[0]<>>32-t,e[1]<>>1]),e=t(e,[4283543511,3981806797]),e=n(e,[0,e[0]>>>1]),e=t(e,[3301882366,444984403]),e=n(e,[0,e[0]>>>1])},s=function(s,o){o=o||0;for(var l=(s=s||"").length%16,u=s.length-l,c=[0,o],d=[0,o],h=[0,0],p=[0,0],f=[2277735313,289559509],m=[1291169091,658871167],g=0;g>>0).toString(16)).slice(-8)+("00000000"+(c[1]>>>0).toString(16)).slice(-8)+("00000000"+(d[0]>>>0).toString(16)).slice(-8)+("00000000"+(d[1]>>>0).toString(16)).slice(-8)},o={preprocessor:null,audio:{timeout:1e3,excludeIOS11:!0},fonts:{swfContainerId:"fingerprintjs2",swfPath:"flash/compiled/FontList.swf",userDefinedFonts:[],extendedJsFonts:!1},screen:{detectScreenOrientation:!0},plugins:{sortPluginsFor:[/palemoon/i],excludeIE:!1},extraComponents:[],excludes:{enumerateDevices:!0,pixelRatio:!0,doNotTrack:!0,fontsFlash:!0},NOT_AVAILABLE:"not available",ERROR:"error",EXCLUDED:"excluded"},l=function(e,t){if(Array.prototype.forEach&&e.forEach===Array.prototype.forEach)e.forEach(t);else if(e.length===+e.length)for(var r=0,i=e.length;rt.name?1:e.name=0?"Windows Phone":t.indexOf("win")>=0?"Windows":t.indexOf("android")>=0?"Android":t.indexOf("linux")>=0?"Linux":t.indexOf("iphone")>=0||t.indexOf("ipad")>=0?"iOS":t.indexOf("mac")>=0?"Mac":"Other",("ontouchstart"in window||navigator.maxTouchPoints>0||navigator.msMaxTouchPoints>0)&&"Windows Phone"!==e&&"Android"!==e&&"iOS"!==e&&"Other"!==e)return!0;if(void 0!==r){if((r=r.toLowerCase()).indexOf("win")>=0&&"Windows"!==e&&"Windows Phone"!==e)return!0;if(r.indexOf("linux")>=0&&"Linux"!==e&&"Android"!==e)return!0;if(r.indexOf("mac")>=0&&"Mac"!==e&&"iOS"!==e)return!0;if((-1===r.indexOf("win")&&-1===r.indexOf("linux")&&-1===r.indexOf("mac"))!=("Other"===e))return!0}return i.indexOf("win")>=0&&"Windows"!==e&&"Windows Phone"!==e||((i.indexOf("linux")>=0||i.indexOf("android")>=0||i.indexOf("pike")>=0)&&"Linux"!==e&&"Android"!==e||((i.indexOf("mac")>=0||i.indexOf("ipad")>=0||i.indexOf("ipod")>=0||i.indexOf("iphone")>=0)&&"Mac"!==e&&"iOS"!==e||((-1===i.indexOf("win")&&-1===i.indexOf("linux")&&-1===i.indexOf("mac"))!=("Other"===e)||void 0===navigator.plugins&&"Windows"!==e&&"Windows Phone"!==e)))},O=function(){var e,t=navigator.userAgent.toLowerCase(),r=navigator.productSub;if(("Chrome"===(e=t.indexOf("firefox")>=0?"Firefox":t.indexOf("opera")>=0||t.indexOf("opr")>=0?"Opera":t.indexOf("chrome")>=0?"Chrome":t.indexOf("safari")>=0?"Safari":t.indexOf("trident")>=0?"Internet Explorer":"Other")||"Safari"===e||"Opera"===e)&&"20030107"!==r)return!0;var i,n=eval.toString().length;if(37===n&&"Safari"!==e&&"Firefox"!==e&&"Other"!==e)return!0;if(39===n&&"Internet Explorer"!==e&&"Other"!==e)return!0;if(33===n&&"Chrome"!==e&&"Opera"!==e&&"Other"!==e)return!0;try{throw"a"}catch(e){try{e.toSource(),i=!0}catch(e){i=!1}}return i&&"Firefox"!==e&&"Other"!==e},D=function(){var e=document.createElement("canvas");return!(!e.getContext||!e.getContext("2d"))},L=function(){if(!D())return!1;var e=B();return!!window.WebGLRenderingContext&&!!e},R=function(){return"Microsoft Internet Explorer"===navigator.appName||!("Netscape"!==navigator.appName||!/Trident/.test(navigator.userAgent))},M=function(){return void 0!==window.swfobject},N=function(){return window.swfobject.hasFlashPlayerVersion("9.0.0")},U=function(e,t){var r="___fp_swf_loaded";window[r]=function(t){e(t)};var i=t.fonts.swfContainerId;!function(e){var t=document.createElement("div");t.setAttribute("id",e.fonts.swfContainerId),document.body.appendChild(t)}();var n={onReady:r};window.swfobject.embedSWF(t.fonts.swfPath,i,"1","1","9.0.0",!1,n,{allowScriptAccess:"always",menu:"false"},{})},B=function(){var e=document.createElement("canvas"),t=null;try{t=e.getContext("webgl")||e.getContext("experimental-webgl")}catch(e){}return t||(t=null),t},F=[{key:"userAgent",getData:function(e){e(navigator.userAgent)}},{key:"language",getData:function(e,t){e(navigator.language||navigator.userLanguage||navigator.browserLanguage||navigator.systemLanguage||t.NOT_AVAILABLE)}},{key:"colorDepth",getData:function(e,t){e(window.screen.colorDepth||t.NOT_AVAILABLE)}},{key:"deviceMemory",getData:function(e,t){e(navigator.deviceMemory||t.NOT_AVAILABLE)}},{key:"pixelRatio",getData:function(e,t){e(window.devicePixelRatio||t.NOT_AVAILABLE)}},{key:"hardwareConcurrency",getData:function(e,t){e(_(t))}},{key:"screenResolution",getData:function(e,t){e(d(t))}},{key:"availableScreenResolution",getData:function(e,t){e(h(t))}},{key:"timezoneOffset",getData:function(e){e((new Date).getTimezoneOffset())}},{key:"timezone",getData:function(e,t){window.Intl&&window.Intl.DateTimeFormat?e((new window.Intl.DateTimeFormat).resolvedOptions().timeZone):e(t.NOT_AVAILABLE)}},{key:"sessionStorage",getData:function(e,t){e(g(t))}},{key:"localStorage",getData:function(e,t){e(v(t))}},{key:"indexedDb",getData:function(e,t){e(y(t))}},{key:"addBehavior",getData:function(e){e(!(!document.body||!document.body.addBehavior))}},{key:"openDatabase",getData:function(e){e(!!window.openDatabase)}},{key:"cpuClass",getData:function(e,t){e(b(t))}},{key:"platform",getData:function(e,t){e(T(t))}},{key:"doNotTrack",getData:function(e,t){e(w(t))}},{key:"plugins",getData:function(e,t){R()?t.plugins.excludeIE?e(t.EXCLUDED):e(f(t)):e(p(t))}},{key:"canvas",getData:function(e,t){D()?e(E(t)):e(t.NOT_AVAILABLE)}},{key:"webgl",getData:function(e,t){L()?e(k()):e(t.NOT_AVAILABLE)}},{key:"webglVendorAndRenderer",getData:function(e){L()?e(C()):e()}},{key:"adBlock",getData:function(e){e(P())}},{key:"hasLiedLanguages",getData:function(e){e(x())}},{key:"hasLiedResolution",getData:function(e){e(I())}},{key:"hasLiedOs",getData:function(e){e(A())}},{key:"hasLiedBrowser",getData:function(e){e(O())}},{key:"touchSupport",getData:function(e){e(S())}},{key:"fonts",getData:function(e,t){var r=["monospace","sans-serif","serif"],i=["Andale Mono","Arial","Arial Black","Arial Hebrew","Arial MT","Arial Narrow","Arial Rounded MT Bold","Arial Unicode MS","Bitstream Vera Sans Mono","Book Antiqua","Bookman Old Style","Calibri","Cambria","Cambria Math","Century","Century Gothic","Century Schoolbook","Comic Sans","Comic Sans MS","Consolas","Courier","Courier New","Geneva","Georgia","Helvetica","Helvetica Neue","Impact","Lucida Bright","Lucida Calligraphy","Lucida Console","Lucida Fax","LUCIDA GRANDE","Lucida Handwriting","Lucida Sans","Lucida Sans Typewriter","Lucida Sans Unicode","Microsoft Sans Serif","Monaco","Monotype Corsiva","MS Gothic","MS Outlook","MS PGothic","MS Reference Sans Serif","MS Sans Serif","MS Serif","MYRIAD","MYRIAD PRO","Palatino","Palatino Linotype","Segoe Print","Segoe Script","Segoe UI","Segoe UI Light","Segoe UI Semibold","Segoe UI Symbol","Tahoma","Times","Times New Roman","Times New Roman PS","Trebuchet MS","Verdana","Wingdings","Wingdings 2","Wingdings 3"];if(t.fonts.extendedJsFonts){i=i.concat(["Abadi MT Condensed Light","Academy Engraved LET","ADOBE CASLON PRO","Adobe Garamond","ADOBE GARAMOND PRO","Agency FB","Aharoni","Albertus Extra Bold","Albertus Medium","Algerian","Amazone BT","American Typewriter","American Typewriter Condensed","AmerType Md BT","Andalus","Angsana New","AngsanaUPC","Antique Olive","Aparajita","Apple Chancery","Apple Color Emoji","Apple SD Gothic Neo","Arabic Typesetting","ARCHER","ARNO PRO","Arrus BT","Aurora Cn BT","AvantGarde Bk BT","AvantGarde Md BT","AVENIR","Ayuthaya","Bandy","Bangla Sangam MN","Bank Gothic","BankGothic Md BT","Baskerville","Baskerville Old Face","Batang","BatangChe","Bauer Bodoni","Bauhaus 93","Bazooka","Bell MT","Bembo","Benguiat Bk BT","Berlin Sans FB","Berlin Sans FB Demi","Bernard MT Condensed","BernhardFashion BT","BernhardMod BT","Big Caslon","BinnerD","Blackadder ITC","BlairMdITC TT","Bodoni 72","Bodoni 72 Oldstyle","Bodoni 72 Smallcaps","Bodoni MT","Bodoni MT Black","Bodoni MT Condensed","Bodoni MT Poster Compressed","Bookshelf Symbol 7","Boulder","Bradley Hand","Bradley Hand ITC","Bremen Bd BT","Britannic Bold","Broadway","Browallia New","BrowalliaUPC","Brush Script MT","Californian FB","Calisto MT","Calligrapher","Candara","CaslonOpnface BT","Castellar","Centaur","Cezanne","CG Omega","CG Times","Chalkboard","Chalkboard SE","Chalkduster","Charlesworth","Charter Bd BT","Charter BT","Chaucer","ChelthmITC Bk BT","Chiller","Clarendon","Clarendon Condensed","CloisterBlack BT","Cochin","Colonna MT","Constantia","Cooper Black","Copperplate","Copperplate Gothic","Copperplate Gothic Bold","Copperplate Gothic Light","CopperplGoth Bd BT","Corbel","Cordia New","CordiaUPC","Cornerstone","Coronet","Cuckoo","Curlz MT","DaunPenh","Dauphin","David","DB LCD Temp","DELICIOUS","Denmark","DFKai-SB","Didot","DilleniaUPC","DIN","DokChampa","Dotum","DotumChe","Ebrima","Edwardian Script ITC","Elephant","English 111 Vivace BT","Engravers MT","EngraversGothic BT","Eras Bold ITC","Eras Demi ITC","Eras Light ITC","Eras Medium ITC","EucrosiaUPC","Euphemia","Euphemia UCAS","EUROSTILE","Exotc350 Bd BT","FangSong","Felix Titling","Fixedsys","FONTIN","Footlight MT Light","Forte","FrankRuehl","Fransiscan","Freefrm721 Blk BT","FreesiaUPC","Freestyle Script","French Script MT","FrnkGothITC Bk BT","Fruitger","FRUTIGER","Futura","Futura Bk BT","Futura Lt BT","Futura Md BT","Futura ZBlk BT","FuturaBlack BT","Gabriola","Galliard BT","Gautami","Geeza Pro","Geometr231 BT","Geometr231 Hv BT","Geometr231 Lt BT","GeoSlab 703 Lt BT","GeoSlab 703 XBd BT","Gigi","Gill Sans","Gill Sans MT","Gill Sans MT Condensed","Gill Sans MT Ext Condensed Bold","Gill Sans Ultra Bold","Gill Sans Ultra Bold Condensed","Gisha","Gloucester MT Extra Condensed","GOTHAM","GOTHAM BOLD","Goudy Old Style","Goudy Stout","GoudyHandtooled BT","GoudyOLSt BT","Gujarati Sangam MN","Gulim","GulimChe","Gungsuh","GungsuhChe","Gurmukhi MN","Haettenschweiler","Harlow Solid Italic","Harrington","Heather","Heiti SC","Heiti TC","HELV","Herald","High Tower Text","Hiragino Kaku Gothic ProN","Hiragino Mincho ProN","Hoefler Text","Humanst 521 Cn BT","Humanst521 BT","Humanst521 Lt BT","Imprint MT Shadow","Incised901 Bd BT","Incised901 BT","Incised901 Lt BT","INCONSOLATA","Informal Roman","Informal011 BT","INTERSTATE","IrisUPC","Iskoola Pota","JasmineUPC","Jazz LET","Jenson","Jester","Jokerman","Juice ITC","Kabel Bk BT","Kabel Ult BT","Kailasa","KaiTi","Kalinga","Kannada Sangam MN","Kartika","Kaufmann Bd BT","Kaufmann BT","Khmer UI","KodchiangUPC","Kokila","Korinna BT","Kristen ITC","Krungthep","Kunstler Script","Lao UI","Latha","Leelawadee","Letter Gothic","Levenim MT","LilyUPC","Lithograph","Lithograph Light","Long Island","Lydian BT","Magneto","Maiandra GD","Malayalam Sangam MN","Malgun Gothic","Mangal","Marigold","Marion","Marker Felt","Market","Marlett","Matisse ITC","Matura MT Script Capitals","Meiryo","Meiryo UI","Microsoft Himalaya","Microsoft JhengHei","Microsoft New Tai Lue","Microsoft PhagsPa","Microsoft Tai Le","Microsoft Uighur","Microsoft YaHei","Microsoft Yi Baiti","MingLiU","MingLiU_HKSCS","MingLiU_HKSCS-ExtB","MingLiU-ExtB","Minion","Minion Pro","Miriam","Miriam Fixed","Mistral","Modern","Modern No. 20","Mona Lisa Solid ITC TT","Mongolian Baiti","MONO","MoolBoran","Mrs Eaves","MS LineDraw","MS Mincho","MS PMincho","MS Reference Specialty","MS UI Gothic","MT Extra","MUSEO","MV Boli","Nadeem","Narkisim","NEVIS","News Gothic","News GothicMT","NewsGoth BT","Niagara Engraved","Niagara Solid","Noteworthy","NSimSun","Nyala","OCR A Extended","Old Century","Old English Text MT","Onyx","Onyx BT","OPTIMA","Oriya Sangam MN","OSAKA","OzHandicraft BT","Palace Script MT","Papyrus","Parchment","Party LET","Pegasus","Perpetua","Perpetua Titling MT","PetitaBold","Pickwick","Plantagenet Cherokee","Playbill","PMingLiU","PMingLiU-ExtB","Poor Richard","Poster","PosterBodoni BT","PRINCETOWN LET","Pristina","PTBarnum BT","Pythagoras","Raavi","Rage Italic","Ravie","Ribbon131 Bd BT","Rockwell","Rockwell Condensed","Rockwell Extra Bold","Rod","Roman","Sakkal Majalla","Santa Fe LET","Savoye LET","Sceptre","Script","Script MT Bold","SCRIPTINA","Serifa","Serifa BT","Serifa Th BT","ShelleyVolante BT","Sherwood","Shonar Bangla","Showcard Gothic","Shruti","Signboard","SILKSCREEN","SimHei","Simplified Arabic","Simplified Arabic Fixed","SimSun","SimSun-ExtB","Sinhala Sangam MN","Sketch Rockwell","Skia","Small Fonts","Snap ITC","Snell Roundhand","Socket","Souvenir Lt BT","Staccato222 BT","Steamer","Stencil","Storybook","Styllo","Subway","Swis721 BlkEx BT","Swiss911 XCm BT","Sylfaen","Synchro LET","System","Tamil Sangam MN","Technical","Teletype","Telugu Sangam MN","Tempus Sans ITC","Terminal","Thonburi","Traditional Arabic","Trajan","TRAJAN PRO","Tristan","Tubular","Tunga","Tw Cen MT","Tw Cen MT Condensed","Tw Cen MT Condensed Extra Bold","TypoUpright BT","Unicorn","Univers","Univers CE 55 Medium","Univers Condensed","Utsaah","Vagabond","Vani","Vijaya","Viner Hand ITC","VisualUI","Vivaldi","Vladimir Script","Vrinda","Westminster","WHITNEY","Wide Latin","ZapfEllipt BT","ZapfHumnst BT","ZapfHumnst Dm BT","Zapfino","Zurich BlkEx BT","Zurich Ex BT","ZWAdobeF"])}i=(i=i.concat(t.fonts.userDefinedFonts)).filter(function(e,t){return i.indexOf(e)===t});var n=document.getElementsByTagName("body")[0],a=document.createElement("div"),s=document.createElement("div"),o={},l={},u=function(){var e=document.createElement("span");return e.style.position="absolute",e.style.left="-9999px",e.style.fontSize="72px",e.style.fontStyle="normal",e.style.fontWeight="normal",e.style.letterSpacing="normal",e.style.lineBreak="auto",e.style.lineHeight="normal",e.style.textTransform="none",e.style.textAlign="left",e.style.textDecoration="none",e.style.textShadow="none",e.style.whiteSpace="normal",e.style.wordBreak="normal",e.style.wordSpacing="normal",e.innerHTML="mmmmmmmmmmlli",e},c=function(e,t){var r=u();return r.style.fontFamily="'"+e+"',"+t,r},d=function(e){for(var t=!1,i=0;i=e.components.length)t(r.data);else{var s=e.components[i];if(e.excludes[s.key])n(!1);else{if(!a&&s.pauseBefore)return i-=1,void setTimeout(function(){n(!0)},1);try{s.getData(function(e){r.addPreprocessedComponent(s.key,e),n(!1)},e)}catch(e){r.addPreprocessedComponent(s.key,String(e)),n(!1)}}}};n(!1)},j.getPromise=function(e){return new Promise(function(t,r){j.get(e,t)})},j.getV18=function(e,t){return null==t&&(t=e,e={}),j.get(e,function(r){for(var i=[],n=0;n1e3?1e3:r.batchsize:_defaultValue.batchsize,Telemetry.config=Object.assign(_defaultValue,r),Telemetry.initialized=!0,t.dispatcher=Telemetry.config.dispatcher?Telemetry.config.dispatcher:libraryDispatcher,e.updateConfigurations(r),console.info("Telemetry is initialized."))},e._dispatch=function(r){if(r.mid=r.eid+":"+CryptoJS.MD5(JSON.stringify(r)).toString(),t.enableValidation){var i=ajv.getSchema("http://api.ekstep.org/telemetry/"+r.eid.toLowerCase());if(!i(r))return void console.error("Invalid "+r.eid+" Event: "+ajv.errorsText(i.errors))}"client"===t.runningEnv?r.context.did?(r.actor.id=e.getActorId(r.actor.id,r.context.did),dispatcher.dispatch(r)):Telemetry.fingerPrintId?(r.context.did=Telemetry.fingerPrintId,r.actor.id=e.getActorId(r.actor.id,Telemetry.fingerPrintId),dispatcher.dispatch(r)):Telemetry.getFingerPrint(function(t,i){r.context.did=t,r.actor.id=e.getActorId(r.actor.id,t),Telemetry.fingerPrintId=t,dispatcher.dispatch(r)}):dispatcher.dispatch(r)},e.getActorId=function(e,t){return e&&"anonymous"!==e?e:t},e.getEvent=function(r,i){return t.telemetryEnvelop.eid=r,t.telemetryEnvelop.ets=(new Date).getTime()+(1e3*Telemetry.config.timeDiff||0),t.telemetryEnvelop.ver=Telemetry._version,t.telemetryEnvelop.mid="",t.telemetryEnvelop.actor=Object.assign({},{id:Telemetry.config.uid||"anonymous",type:"User"},e.getUpdatedValue("actor")),t.telemetryEnvelop.context=Object.assign({},e.getGlobalContext(),e.getUpdatedValue("context")),t.telemetryEnvelop.object=Object.assign({},e.getGlobalObject(),e.getUpdatedValue("object")),t.telemetryEnvelop.tags=Object.assign([],Telemetry.config.tags,e.getUpdatedValue("tags")),t.telemetryEnvelop.edata=i,t.telemetryEnvelop},e.updateConfigurations=function(e){e.object&&(t._globalObject=e.object),e.channel&&(t._globalContext.channel=e.channel),e.env&&(t._globalContext.env=e.env),e.rollup&&(t._globalContext.rollup=e.rollup),e.sid&&(t._globalContext.sid=e.sid),e.did&&(t._globalContext.did=e.did),e.cdata&&(t._globalContext.cdata=e.cdata),e.pdata&&(t._globalContext.pdata=e.pdata)},e.getGlobalContext=function(){return t._globalContext},e.getGlobalObject=function(){return t._globalObject},e.updateValues=function(e){e&&(e.context&&(t._currentContext=e.context),e.object&&(t._currentObject=e.object),e.actor&&(t._currentActor=e.actor),e.tags&&(t._currentTags=e.tags),e.runningEnv&&(t.runningEnv=e.runningEnv))},e.getUpdatedValue=function(e){switch(e.toLowerCase()){case"context":return t._currentContext||{};case"object":return t._currentObject||{};case"actor":return t._currentActor||{};case"tags":return t._currentTags||[]}},e.objectAssign=function(){Object.assign=function(e){"use strict";if(null==e)throw new TypeError("Cannot convert undefined or null to object");e=Object(e);for(var t=1;t=Telemetry.config.batchsize)&&TelemetrySyncManager.syncEvents()},syncEvents:function(e=!0,t){var r=EkTelemetry||r,i=TelemetrySyncManager;if(!t){var n=i._teleData.splice(0,r.config.batchsize);if(!n.length)return;t={id:"api.sunbird.telemetry",ver:r._version,params:{msgid:CryptoJS.MD5(JSON.stringify(n)).toString()},ets:(new Date).getTime()+(1e3*r.config.timeDiff||0),events:n}}var a={};void 0!==r.config.authtoken&&(a.Authorization="Bearer "+r.config.authtoken);var s=r.config.host+r.config.apislug+r.config.endpoint;a.dataType="json",a["Content-Type"]="application/json",a["x-app-id"]=r.config.pdata.id,a["x-device-id"]=r.fingerPrintId,a["x-channel-id"]=r.config.channel,jQuery.ajax({url:s,type:"POST",headers:a,data:JSON.stringify(t),async:e}).done(function(e){r.config.telemetryDebugEnabled&&console.log("Telemetry API success",e)}).fail(function(e,r,n){i._failedBatchSize>i._failedBatch.length&&i._failedBatch.push(t),403==e.status?console.error("Authentication error: ",e):console.log("Error while Telemetry sync to server: ",e)})},syncFailedBatch:function(){var e=TelemetrySyncManager;if(e._failedBatch.length){Telemetry.config.telemetryDebugEnabled&&console.log("syncing failed telemetry batch");var t=e._failedBatch.shift();e.syncEvents(!0,t)}}};"undefined"!=typeof document&&(TelemetrySyncManager.init(),setInterval(function(){TelemetrySyncManager.syncFailedBatch()},TelemetrySyncManager._syncRetryInterval)), -/** - * @license - * Video.js 7.18.1 - * Copyright Brightcove, Inc. - * Available under Apache License Version 2.0 - * - * - * Includes vtt.js - * Available under Apache License Version 2.0 - * - */ -function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).videojs=t()}(this,function(){"use strict";for(var e,t="7.18.1",r={},i=function(e,t){return r[e]=r[e]||[],t&&(r[e]=r[e].concat(t)),r[e]},n=function(e,t){var n=i(e).indexOf(t);return!(n<=-1)&&(r[e]=r[e].slice(),r[e].splice(n,1),!0)},a={prefixed:!0},s=[["requestFullscreen","exitFullscreen","fullscreenElement","fullscreenEnabled","fullscreenchange","fullscreenerror","fullscreen"],["webkitRequestFullscreen","webkitExitFullscreen","webkitFullscreenElement","webkitFullscreenEnabled","webkitfullscreenchange","webkitfullscreenerror","-webkit-full-screen"],["mozRequestFullScreen","mozCancelFullScreen","mozFullScreenElement","mozFullScreenEnabled","mozfullscreenchange","mozfullscreenerror","-moz-full-screen"],["msRequestFullscreen","msExitFullscreen","msFullscreenElement","msFullscreenEnabled","MSFullscreenChange","MSFullscreenError","-ms-fullscreen"]],o=s[0],l=0;l0?o:0)}if(window.console){var l=window.console[r];l||"debug"!==r||(l=window.console.info||window.console.log),l&&a&&s.test(r)&&l[Array.isArray(n)?"apply":"call"](window.console,n)}}}(t,n),n.createLogger=function(r){return e(t+": "+r)},n.levels={all:"debug|log|warn|error",off:"",debug:"debug|log|warn|error",info:"log|warn|error",warn:"warn|error",error:"error",DEFAULT:i},n.level=function(e){if("string"==typeof e){if(!n.levels.hasOwnProperty(e))throw new Error('"'+e+'" in not a valid log level');i=e}return i},(n.history=function(){return c?[].concat(c):[]}).filter=function(e){return(c||[]).filter(function(t){return new RegExp(".*"+e+".*").test(t[0])})},n.history.clear=function(){c&&(c.length=0)},n.history.disable=function(){null!==c&&(c.length=0,c=null)},n.history.enable=function(){null===c&&(c=[])},n.error=function(){for(var e=arguments.length,t=new Array(e),n=0;n1?t-1:0),i=1;i=0)throw new Error("class has illegal whitespace characters")}function G(){return document===window.document}function X(e){return b(e)&&1===e.nodeType}function K(){try{return window.parent!==window.self}catch(e){return!0}}function Q(e){return function(t,r){if(!z(t))return document[e](null);z(r)&&(r=document.querySelector(r));var i=X(r)?r:document;return i[e]&&i[e](t)}}function Y(e,t,r,i){void 0===e&&(e="div"),void 0===t&&(t={}),void 0===r&&(r={});var n=document.createElement(e);return Object.getOwnPropertyNames(t).forEach(function(e){var r=t[e];-1!==e.indexOf("aria-")||"role"===e||"type"===e?(d.warn("Setting attributes in the second argument of createEl()\nhas been deprecated. Use the third argument instead.\ncreateEl(type, properties, attributes). Attempting to set "+e+" to "+r+"."),n.setAttribute(e,r)):"textContent"===e?J(n,r):n[e]===r&&"tabIndex"!==e||(n[e]=r)}),Object.getOwnPropertyNames(r).forEach(function(e){n.setAttribute(e,r[e])}),i&&ve(n,i),n}function J(e,t){return void 0===e.textContent?e.innerText=t:e.textContent=t,e}function Z(e,t){t.firstChild?t.insertBefore(e,t.firstChild):t.appendChild(e)}function ee(e,t){return W(t),e.classList?e.classList.contains(t):(r=t,new RegExp("(^|\\s)"+r+"($|\\s)")).test(e.className);var r}function te(e,t){return e.classList?e.classList.add(t):ee(e,t)||(e.className=(e.className+" "+t).trim()),e}function re(e,t){return e?(e.classList?e.classList.remove(t):(W(t),e.className=e.className.split(/\s+/).filter(function(e){return e!==t}).join(" ")),e):(d.warn("removeClass was called with an element that doesn't exist"),null)}function ie(e,t,r){var i=ee(e,t);if("function"==typeof r&&(r=r(e,t)),"boolean"!=typeof r&&(r=!i),r!==i)return r?te(e,t):re(e,t),e}function ne(e,t){Object.getOwnPropertyNames(t).forEach(function(r){var i=t[r];null==i||!1===i?e.removeAttribute(r):e.setAttribute(r,!0===i?"":i)})}function ae(e){var t={},r=",autoplay,controls,playsinline,loop,muted,default,defaultMuted,";if(e&&e.attributes&&e.attributes.length>0)for(var i=e.attributes,n=i.length-1;n>=0;n--){var a=i[n].name,s=i[n].value;"boolean"!=typeof e[a]&&-1===r.indexOf(","+a+",")||(s=null!==s),t[a]=s}return t}function se(e,t){return e.getAttribute(t)}function oe(e,t,r){e.setAttribute(t,r)}function le(e,t){e.removeAttribute(t)}function ue(){document.body.focus(),document.onselectstart=function(){return!1}}function ce(){document.onselectstart=function(){return!0}}function de(e){if(e&&e.getBoundingClientRect&&e.parentNode){var t=e.getBoundingClientRect(),r={};return["bottom","height","left","right","top","width"].forEach(function(e){void 0!==t[e]&&(r[e]=t[e])}),r.height||(r.height=parseFloat(w(e,"height"))),r.width||(r.width=parseFloat(w(e,"width"))),r}}function he(e){if(!e||e&&!e.offsetParent)return{left:0,top:0,width:0,height:0};for(var t=e.offsetWidth,r=e.offsetHeight,i=0,n=0;e.offsetParent&&e!==document[a.fullscreenElement];)i+=e.offsetLeft,n+=e.offsetTop,e=e.offsetParent;return{left:i,top:n,width:t,height:r}}function pe(e,t){var r={x:0,y:0};if(H)for(var i=e;i&&"html"!==i.nodeName.toLowerCase();){var n=w(i,"transform");if(/^matrix/.test(n)){var a=n.slice(7,-1).split(/,\s/).map(Number);r.x+=a[4],r.y+=a[5]}else if(/^matrix3d/.test(n)){var s=n.slice(9,-1).split(/,\s/).map(Number);r.x+=s[12],r.y+=s[13]}i=i.parentNode}var o={},l=he(t.target),u=he(e),c=u.width,d=u.height,h=t.offsetY-(u.top-l.top),p=t.offsetX-(u.left-l.left);return t.changedTouches&&(p=t.changedTouches[0].pageX-u.left,h=t.changedTouches[0].pageY+u.top,H&&(p-=r.x,h-=r.y)),o.y=1-Math.max(0,Math.min(1,h/d)),o.x=Math.max(0,Math.min(1,p/c)),o}function fe(e){return b(e)&&3===e.nodeType}function me(e){for(;e.firstChild;)e.removeChild(e.firstChild);return e}function ge(e){return"function"==typeof e&&(e=e()),(Array.isArray(e)?e:[e]).map(function(e){return"function"==typeof e&&(e=e()),X(e)||fe(e)?e:"string"==typeof e&&/\S/.test(e)?document.createTextNode(e):void 0}).filter(function(e){return e})}function ve(e,t){return ge(t).forEach(function(t){return e.appendChild(t)}),e}function ye(e,t){return ve(me(e),t)}function _e(e){return void 0===e.button&&void 0===e.buttons||(0===e.button&&void 0===e.buttons||("mouseup"===e.type&&0===e.button&&0===e.buttons||0===e.button&&1===e.buttons))}var be,Te=Q("querySelector"),we=Q("querySelectorAll"),Se=Object.freeze({__proto__:null,isReal:G,isEl:X,isInFrame:K,createEl:Y,textContent:J,prependTo:Z,hasClass:ee,addClass:te,removeClass:re,toggleClass:ie,setAttributes:ne,getAttributes:ae,getAttribute:se,setAttribute:oe,removeAttribute:le,blockTextSelection:ue,unblockTextSelection:ce,getBoundingClientRect:de,findPosition:he,getPointerPosition:pe,isTextNode:fe,emptyEl:me,normalizeContent:ge,appendContent:ve,insertContent:ye,isSingleLeftClick:_e,$:Te,$$:we}),Ee=!1,ke=function(){if(!1!==be.options.autoSetup){var e=Array.prototype.slice.call(document.getElementsByTagName("video")),t=Array.prototype.slice.call(document.getElementsByTagName("audio")),r=Array.prototype.slice.call(document.getElementsByTagName("video-js")),i=e.concat(t,r);if(i&&i.length>0)for(var n=0,a=i.length;n-1&&(n={passive:!0}),e.addEventListener(t,i.dispatcher,n)}else e.attachEvent&&e.attachEvent("on"+t,i.dispatcher)}function je(e,t,r){if(Re.has(e)){var i=Re.get(e);if(i.handlers){if(Array.isArray(t))return Ne(je,e,t,r);var n=function(e,t){i.handlers[t]=[],Me(e,t)};if(void 0!==t){var a=i.handlers[t];if(a)if(r){if(r.guid)for(var s=0;s=t&&(e.apply(void 0,arguments),r=i)}},Ke=function(){};Ke.prototype.allowedEvents_={},Ke.prototype.on=function(e,t){var r=this.addEventListener;this.addEventListener=function(){},Fe(this,e,t),this.addEventListener=r},Ke.prototype.addEventListener=Ke.prototype.on,Ke.prototype.off=function(e,t){je(this,e,t)},Ke.prototype.removeEventListener=Ke.prototype.off,Ke.prototype.one=function(e,t){var r=this.addEventListener;this.addEventListener=function(){},He(this,e,t),this.addEventListener=r},Ke.prototype.any=function(e,t){var r=this.addEventListener;this.addEventListener=function(){},qe(this,e,t),this.addEventListener=r},Ke.prototype.trigger=function(e){var t=e.type||e;"string"==typeof e&&(e={type:t}),e=Ue(e),this.allowedEvents_[t]&&this["on"+t]&&this["on"+t](e),Ve(this,e)},Ke.prototype.dispatchEvent=Ke.prototype.trigger,Ke.prototype.queueTrigger=function(e){var t=this;$e||($e=new Map);var r=e.type||e,i=$e.get(this);i||(i=new Map,$e.set(this,i));var n=i.get(r);i.delete(r),window.clearTimeout(n);var a=window.setTimeout(function(){0===i.size&&(i=null,$e.delete(t)),t.trigger(e)},0);i.set(r,a)};var Qe=function(e){return"function"==typeof e.name?e.name():"string"==typeof e.name?e.name:e.name_?e.name_:e.constructor&&e.constructor.name?e.constructor.name:typeof e},Ye=function(e){return e instanceof Ke||!!e.eventBusEl_&&["on","one","off","trigger"].every(function(t){return"function"==typeof e[t]})},Je=function(e){return"string"==typeof e&&/\S/.test(e)||Array.isArray(e)&&!!e.length},Ze=function(e,t,r){if(!e||!e.nodeName&&!Ye(e))throw new Error("Invalid target for "+Qe(t)+"#"+r+"; must be a DOM node or evented object.")},et=function(e,t,r){if(!Je(e))throw new Error("Invalid event type for "+Qe(t)+"#"+r+"; must be a non-empty string or array.")},tt=function(e,t,r){if("function"!=typeof e)throw new Error("Invalid listener for "+Qe(t)+"#"+r+"; must be a function.")},rt=function(e,t,r){var i,n,a,s=t.length<3||t[0]===e||t[0]===e.eventBusEl_;return s?(i=e.eventBusEl_,t.length>=3&&t.shift(),n=t[0],a=t[1]):(i=t[0],n=t[1],a=t[2]),Ze(i,e,r),et(n,e,r),tt(a,e,r),{isTargetingSelf:s,target:i,type:n,listener:a=Ge(e,a)}},it=function(e,t,r,i){Ze(e,e,t),e.nodeName?ze[t](e,r,i):e[t](r,i)},nt={on:function(){for(var e=this,t=arguments.length,r=new Array(t),i=0;i-1||(gt=ne.getPluralCategory(k,Se),x.indexOf(gt)>-1))return gt;if(x.indexOf("other")>-1)return"other";throw new Error(`No plural message found for value "${k}"`)}vr.\u0275fac=function(x){return new(x||vr)},vr.\u0275prov=t.Yz7({token:vr,factory:function(x){let ne=null;return x?ne=new x:(Se=t.LFG(t.soG),ne=new Ai(Se)),ne;var Se},providedIn:"root"});class Ai extends vr{constructor(x){super(),this.locale=x}getPluralCategory(x,ne){switch(Et(ne||this.locale)(x)){case Z.Zero:return"zero";case Z.One:return"one";case Z.Two:return"two";case Z.Few:return"few";case Z.Many:return"many";default:return"other"}}} +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license */ -for(a=97;a<123;a++)i[String.fromCharCode(a)]=a-32;for(var a=48;a<58;a++)i[a-48]=a;for(a=1;a<13;a++)i["f"+a]=a+111;for(a=0;a<10;a++)i["numpad "+a]=a+96;var s=t.names=t.title={};for(a in i)s[i[a]]=a;for(var o in n)i[o]=n[o]});mt.code,mt.codes,mt.aliases,mt.names,mt.title;var gt=function(){function e(e,t,r){if(!e&&this.play?this.player_=e=this:this.player_=e,this.isDisposed_=!1,this.parentComponent_=null,this.options_=ct({},this.options_),t=this.options_=ct(this.options_,t),this.id_=t.id||t.el&&t.el.id,!this.id_){var i=e&&e.id&&e.id()||"no_player";this.id_=i+"_component_"+De()}this.name_=t.name||null,t.el?this.el_=t.el:!1!==t.createEl&&(this.el_=this.createEl()),!1!==t.evented&&(at(this,{eventBusKey:this.el_?"el_":null}),this.handleLanguagechange=this.handleLanguagechange.bind(this),this.on(this.player_,"languagechange",this.handleLanguagechange)),ot(this,this.constructor.defaultState),this.children_=[],this.childIndex_={},this.childNameIndex_={},this.setTimeoutIds_=new ft,this.setIntervalIds_=new ft,this.rafIds_=new ft,this.namedRafs_=new ht,this.clearingTimersOnDispose_=!1,!1!==t.initChildren&&this.initChildren(),this.ready(r),!1!==t.reportTouchActivity&&this.enableTouchActivity()}var t=e.prototype;return t.dispose=function(){if(!this.isDisposed_){if(this.readyQueue_&&(this.readyQueue_.length=0),this.trigger({type:"dispose",bubbles:!1}),this.isDisposed_=!0,this.children_)for(var e=this.children_.length-1;e>=0;e--)this.children_[e].dispose&&this.children_[e].dispose();this.children_=null,this.childIndex_=null,this.childNameIndex_=null,this.parentComponent_=null,this.el_&&(this.el_.parentNode&&this.el_.parentNode.removeChild(this.el_),this.el_=null),this.player_=null}},t.isDisposed=function(){return Boolean(this.isDisposed_)},t.player=function(){return this.player_},t.options=function(e){return e?(this.options_=ct(this.options_,e),this.options_):this.options_},t.el=function(){return this.el_},t.createEl=function(e,t,r){return Y(e,t,r)},t.localize=function(e,t,r){void 0===r&&(r=e);var i=this.player_.language&&this.player_.language(),n=this.player_.languages&&this.player_.languages(),a=n&&n[i],s=i&&i.split("-")[0],o=n&&n[s],l=r;return a&&a[e]?l=a[e]:o&&o[e]&&(l=o[e]),t&&(l=l.replace(/\{(\d+)\}/g,function(e,r){var i=t[r-1],n=i;return void 0===i&&(n=e),n})),l},t.handleLanguagechange=function(){},t.contentEl=function(){return this.contentEl_||this.el_},t.id=function(){return this.id_},t.name=function(){return this.name_},t.children=function(){return this.children_},t.getChildById=function(e){return this.childIndex_[e]},t.getChild=function(e){if(e)return this.childNameIndex_[e]},t.getDescendant=function(){for(var e=arguments.length,t=new Array(e),r=0;r=0;r--)if(this.children_[r]===e){t=!0,this.children_.splice(r,1);break}if(t){e.parentComponent_=null,this.childIndex_[e.id()]=null,this.childNameIndex_[ut(e.name())]=null,this.childNameIndex_[lt(e.name())]=null;var i=e.el();i&&i.parentNode===this.contentEl()&&this.contentEl().removeChild(e.el())}}},t.initChildren=function(){var t=this,r=this.options_.children;if(r){var i,n=this.options_,a=e.getComponent("Tech");(i=Array.isArray(r)?r:Object.keys(r)).concat(Object.keys(this.options_).filter(function(e){return!i.some(function(t){return"string"==typeof t?e===t:e===t.name})})).map(function(e){var i,n;return"string"==typeof e?n=r[i=e]||t.options_[i]||{}:(i=e.name,n=e),{name:i,opts:n}}).filter(function(t){var r=e.getComponent(t.opts.componentClass||ut(t.name));return r&&!a.isTech(r)}).forEach(function(e){var r=e.name,i=e.opts;if(void 0!==n[r]&&(i=n[r]),!1!==i){!0===i&&(i={}),i.playerOptions=t.options_.playerOptions;var a=t.addChild(r,i);a&&(t[r]=a)}})}},t.buildCSSClass=function(){return""},t.ready=function(e,t){if(void 0===t&&(t=!1),e)return this.isReady_?void(t?e.call(this):this.setTimeout(e,1)):(this.readyQueue_=this.readyQueue_||[],void this.readyQueue_.push(e))},t.triggerReady=function(){this.isReady_=!0,this.setTimeout(function(){var e=this.readyQueue_;this.readyQueue_=[],e&&e.length>0&&e.forEach(function(e){e.call(this)},this),this.trigger("ready")},1)},t.$=function(e,t){return Te(e,t||this.contentEl())},t.$$=function(e,t){return we(e,t||this.contentEl())},t.hasClass=function(e){return ee(this.el_,e)},t.addClass=function(e){te(this.el_,e)},t.removeClass=function(e){re(this.el_,e)},t.toggleClass=function(e,t){ie(this.el_,e,t)},t.show=function(){this.removeClass("vjs-hidden")},t.hide=function(){this.addClass("vjs-hidden")},t.lockShowing=function(){this.addClass("vjs-lock-showing")},t.unlockShowing=function(){this.removeClass("vjs-lock-showing")},t.getAttribute=function(e){return se(this.el_,e)},t.setAttribute=function(e,t){oe(this.el_,e,t)},t.removeAttribute=function(e){le(this.el_,e)},t.width=function(e,t){return this.dimension("width",e,t)},t.height=function(e,t){return this.dimension("height",e,t)},t.dimensions=function(e,t){this.width(e,!0),this.height(t)},t.dimension=function(e,t,r){if(void 0!==t)return null!==t&&t==t||(t=0),-1!==(""+t).indexOf("%")||-1!==(""+t).indexOf("px")?this.el_.style[e]=t:this.el_.style[e]="auto"===t?"":t+"px",void(r||this.trigger("componentresize"));if(!this.el_)return 0;var i=this.el_.style[e],n=i.indexOf("px");return-1!==n?parseInt(i.slice(0,n),10):parseInt(this.el_["offset"+ut(e)],10)},t.currentDimension=function(e){var t=0;if("width"!==e&&"height"!==e)throw new Error("currentDimension only accepts width or height value");if(t=w(this.el_,e),0===(t=parseFloat(t))||isNaN(t)){var r="offset"+ut(e);t=this.el_[r]}return t},t.currentDimensions=function(){return{width:this.currentDimension("width"),height:this.currentDimension("height")}},t.currentWidth=function(){return this.currentDimension("width")},t.currentHeight=function(){return this.currentDimension("height")},t.focus=function(){this.el_.focus()},t.blur=function(){this.el_.blur()},t.handleKeyDown=function(e){this.player_&&(mt.isEventKey(e,"Tab")||e.stopPropagation(),this.player_.handleKeyDown(e))},t.handleKeyPress=function(e){this.handleKeyDown(e)},t.emitTapEvents=function(){var e,t=0,r=null;this.on("touchstart",function(i){1===i.touches.length&&(r={pageX:i.touches[0].pageX,pageY:i.touches[0].pageY},t=window.performance.now(),e=!0)}),this.on("touchmove",function(t){if(t.touches.length>1)e=!1;else if(r){var i=t.touches[0].pageX-r.pageX,n=t.touches[0].pageY-r.pageY;Math.sqrt(i*i+n*n)>10&&(e=!1)}});var i=function(){e=!1};this.on("touchleave",i),this.on("touchcancel",i),this.on("touchend",function(i){(r=null,!0===e)&&(window.performance.now()-t<200&&(i.preventDefault(),this.trigger("tap")))})},t.enableTouchActivity=function(){if(this.player()&&this.player().reportUserActivity){var e,t=Ge(this.player(),this.player().reportUserActivity);this.on("touchstart",function(){t(),this.clearInterval(e),e=this.setInterval(t,250)});var r=function(r){t(),this.clearInterval(e)};this.on("touchmove",t),this.on("touchend",r),this.on("touchcancel",r)}},t.setTimeout=function(e,t){var r,i=this;return e=Ge(this,e),this.clearTimersOnDispose_(),r=window.setTimeout(function(){i.setTimeoutIds_.has(r)&&i.setTimeoutIds_.delete(r),e()},t),this.setTimeoutIds_.add(r),r},t.clearTimeout=function(e){return this.setTimeoutIds_.has(e)&&(this.setTimeoutIds_.delete(e),window.clearTimeout(e)),e},t.setInterval=function(e,t){e=Ge(this,e),this.clearTimersOnDispose_();var r=window.setInterval(e,t);return this.setIntervalIds_.add(r),r},t.clearInterval=function(e){return this.setIntervalIds_.has(e)&&(this.setIntervalIds_.delete(e),window.clearInterval(e)),e},t.requestAnimationFrame=function(e){var t,r=this;return this.supportsRaf_?(this.clearTimersOnDispose_(),e=Ge(this,e),t=window.requestAnimationFrame(function(){r.rafIds_.has(t)&&r.rafIds_.delete(t),e()}),this.rafIds_.add(t),t):this.setTimeout(e,1e3/60)},t.requestNamedAnimationFrame=function(e,t){var r=this;if(!this.namedRafs_.has(e)){this.clearTimersOnDispose_(),t=Ge(this,t);var i=this.requestAnimationFrame(function(){t(),r.namedRafs_.has(e)&&r.namedRafs_.delete(e)});return this.namedRafs_.set(e,i),e}},t.cancelNamedAnimationFrame=function(e){this.namedRafs_.has(e)&&(this.cancelAnimationFrame(this.namedRafs_.get(e)),this.namedRafs_.delete(e))},t.cancelAnimationFrame=function(e){return this.supportsRaf_?(this.rafIds_.has(e)&&(this.rafIds_.delete(e),window.cancelAnimationFrame(e)),e):this.clearTimeout(e)},t.clearTimersOnDispose_=function(){var e=this;this.clearingTimersOnDispose_||(this.clearingTimersOnDispose_=!0,this.one("dispose",function(){[["namedRafs_","cancelNamedAnimationFrame"],["rafIds_","cancelAnimationFrame"],["setTimeoutIds_","clearTimeout"],["setIntervalIds_","clearInterval"]].forEach(function(t){var r=t[0],i=t[1];e[r].forEach(function(t,r){return e[i](r)})}),e.clearingTimersOnDispose_=!1}))},e.registerComponent=function(t,r){if("string"!=typeof t||!t)throw new Error('Illegal component name, "'+t+'"; must be a non-empty string.');var i,n=e.getComponent("Tech"),a=n&&n.isTech(r),s=e===r||e.prototype.isPrototypeOf(r.prototype);if(a||!s)throw i=a?"techs must be registered using Tech.registerTech()":"must be a Component subclass",new Error('Illegal component, "'+t+'"; '+i+".");t=ut(t),e.components_||(e.components_={});var o=e.getComponent("Player");if("Player"===t&&o&&o.players){var l=o.players,u=Object.keys(l);if(l&&u.length>0&&u.map(function(e){return l[e]}).every(Boolean))throw new Error("Can not register Player component after player has been created.")}return e.components_[t]=r,e.components_[lt(t)]=r,r},e.getComponent=function(t){if(t&&e.components_)return e.components_[t]},e}();gt.prototype.supportsRaf_="function"==typeof window.requestAnimationFrame&&"function"==typeof window.cancelAnimationFrame,gt.registerComponent("Component",gt);var vt=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e};var yt=function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t};function _t(e,t,r,i){return function(e,t,r){if("number"!=typeof t||t<0||t>r)throw new Error("Failed to execute '"+e+"' on 'TimeRanges': The index provided ("+t+") is non-numeric or out of bounds (0-"+r+").")}(e,i,r.length-1),r[i][t]}function bt(e){var t;return t=void 0===e||0===e.length?{length:0,start:function(){throw new Error("This TimeRanges object is empty")},end:function(){throw new Error("This TimeRanges object is empty")}}:{length:e.length,start:_t.bind(null,"start",0,e),end:_t.bind(null,"end",1,e)},window.Symbol&&window.Symbol.iterator&&(t[window.Symbol.iterator]=function(){return(e||[]).values()}),t}function Tt(e,t){return Array.isArray(e)?bt(e):void 0===e||void 0===t?bt():bt([[e,t]])}function wt(e,t){var r,i,n=0;if(!t)return 0;e&&e.length||(e=Tt(0,0));for(var a=0;at&&(i=t),n+=i-r;return n/t}function St(e){if(e instanceof St)return e;"number"==typeof e?this.code=e:"string"==typeof e?this.message=e:b(e)&&("number"==typeof e.code&&(this.code=e.code),_(this,e)),this.message||(this.message=St.defaultMessages[this.code]||"")}St.prototype.code=0,St.prototype.message="",St.prototype.status=null,St.errorTypes=["MEDIA_ERR_CUSTOM","MEDIA_ERR_ABORTED","MEDIA_ERR_NETWORK","MEDIA_ERR_DECODE","MEDIA_ERR_SRC_NOT_SUPPORTED","MEDIA_ERR_ENCRYPTED"],St.defaultMessages={1:"You aborted the media playback",2:"A network error caused the media download to fail part-way.",3:"The media playback was aborted due to a corruption problem or because the media used features your browser did not support.",4:"The media could not be loaded, either because the server or network failed or because the format is not supported.",5:"The media is encrypted and we do not have the keys to decrypt it."};for(var Et=0;Et=0;i--)if(t[i].enabled){Rt(t,t[i]);break}return(r=e.call(this,t)||this).changing_=!1,r}yt(t,e);var r=t.prototype;return r.addTrack=function(t){var r=this;t.enabled&&Rt(this,t),e.prototype.addTrack.call(this,t),t.addEventListener&&(t.enabledChange_=function(){r.changing_||(r.changing_=!0,Rt(r,t),r.changing_=!1,r.trigger("change"))},t.addEventListener("enabledchange",t.enabledChange_))},r.removeTrack=function(t){e.prototype.removeTrack.call(this,t),t.removeEventListener&&t.enabledChange_&&(t.removeEventListener("enabledchange",t.enabledChange_),t.enabledChange_=null)},t}(Dt),Nt=function(e,t){for(var r=0;r=0;i--)if(t[i].selected){Nt(t,t[i]);break}return(r=e.call(this,t)||this).changing_=!1,Object.defineProperty(vt(r),"selectedIndex",{get:function(){for(var e=0;e=400&&i.statusCode<=599){var a=n;if(t)if(Yt.TextDecoder){var s=function(e){void 0===e&&(e="");return e.toLowerCase().split(";").reduce(function(e,t){var r=t.split("="),i=r[0],n=r[1];return"charset"===i.trim()?n.trim():e},"utf-8")}(i.headers&&i.headers["content-type"]);try{a=new TextDecoder(s).decode(n)}catch(e){}}else a=String.fromCharCode.apply(null,new Uint8Array(n));e({cause:a})}else e(null,n)}};nr.httpHandler=er; +function ro(k,x){x=encodeURIComponent(x);for(const ne of k.split(";")){const Se=ne.indexOf("="),[gt,Pt]=-1==Se?[ne,""]:[ne.slice(0,Se),ne.slice(Se+1)];if(gt.trim()===x)return decodeURIComponent(Pt)}return null} /** - * @license - * slighly modified parse-headers 2.0.2 - * Copyright (c) 2014 David Björklund - * Available under the MIT license - * - */ -var tr=nr,rr=nr;function ir(e,t,r){var i=e;return Jt(t)?(r=t,"string"==typeof e&&(i={uri:e})):i=m({},t,{uri:e}),i.callback=r,i}function nr(e,t,r){return ar(t=ir(e,t,r))}function ar(e){if(void 0===e.callback)throw new Error("callback argument missing");var t=!1,r=function(r,i,n){t||(t=!0,e.callback(r,i,n))};function i(){var e=void 0;if(e=l.response?l.response:l.responseText||function(e){try{if("document"===e.responseType)return e.responseXML;var t=e.responseXML&&"parsererror"===e.responseXML.documentElement.nodeName;if(""===e.responseType&&!t)return e.responseXML}catch(e){}return null}(l),m)try{e=JSON.parse(e)}catch(e){}return e}function n(e){return clearTimeout(u),e instanceof Error||(e=new Error(""+(e||"Unknown XMLHttpRequest Error"))),e.statusCode=0,r(e,g)}function a(){if(!o){var t;clearTimeout(u),t=e.useXDR&&void 0===l.status?200:1223===l.status?204:l.status;var n=g,a=null;return 0!==t?(n={body:i(),statusCode:t,method:d,headers:{},url:c,rawRequest:l},l.getAllResponseHeaders&&(n.headers=function(e){var t={};return e?(e.trim().split("\n").forEach(function(e){var r=e.indexOf(":"),i=e.slice(0,r).trim().toLowerCase(),n=e.slice(r+1).trim();void 0===t[i]?t[i]=n:Array.isArray(t[i])?t[i].push(n):t[i]=[t[i],n]}),t):t}(l.getAllResponseHeaders()))):a=new Error("Internal XMLHttpRequest Error"),r(a,n,n.body)}}var s,o,l=e.xhr||null;l||(l=e.cors||e.useXDR?new nr.XDomainRequest:new nr.XMLHttpRequest);var u,c=l.url=e.uri||e.url,d=l.method=e.method||"GET",h=e.body||e.data,p=l.headers=e.headers||{},f=!!e.sync,m=!1,g={body:void 0,headers:{},statusCode:0,method:d,url:c,rawRequest:l};if("json"in e&&!1!==e.json&&(m=!0,p.accept||p.Accept||(p.Accept="application/json"),"GET"!==d&&"HEAD"!==d&&(p["content-type"]||p["Content-Type"]||(p["Content-Type"]="application/json"),h=JSON.stringify(!0===e.json?h:e.json))),l.onreadystatechange=function(){4===l.readyState&&setTimeout(a,0)},l.onload=a,l.onerror=n,l.onprogress=function(){},l.onabort=function(){o=!0},l.ontimeout=n,l.open(d,c,!f,e.username,e.password),f||(l.withCredentials=!!e.withCredentials),!f&&e.timeout>0&&(u=setTimeout(function(){if(!o){o=!0,l.abort("timeout");var e=new Error("XMLHttpRequest timeout");e.code="ETIMEDOUT",n(e)}},e.timeout)),l.setRequestHeader)for(s in p)p.hasOwnProperty(s)&&l.setRequestHeader(s,p[s]);else if(e.headers&&!function(e){for(var t in e)if(e.hasOwnProperty(t))return!1;return!0}(e.headers))throw new Error("Headers cannot be set on an XDomainRequest object");return"responseType"in e&&(l.responseType=e.responseType),"beforeSend"in e&&"function"==typeof e.beforeSend&&e.beforeSend(l),l.send(h||null),l}nr.XMLHttpRequest=Yt.XMLHttpRequest||function(){},nr.XDomainRequest="withCredentials"in new nr.XMLHttpRequest?nr.XMLHttpRequest:Yt.XDomainRequest,function(e,t){for(var r=0;r0&&(window.console&&window.console.groupCollapsed&&window.console.groupCollapsed("Text Track parsing errors for "+t.src),i.forEach(function(e){return d.error(e)}),window.console&&window.console.groupEnd&&window.console.groupEnd()),r.flush()},or=function(e,t){var r={uri:e},i=Kt(e);i&&(r.cors=i);var n="use-credentials"===t.tech_.crossOrigin();n&&(r.withCredentials=n),tr(r,Ge(this,function(e,r,i){if(e)return d.error(e,r);t.loaded_=!0,"function"!=typeof window.WebVTT?t.tech_&&t.tech_.any(["vttjsloaded","vttjserror"],function(e){if("vttjserror"!==e.type)return sr(i,t);d.error("vttjs failed to load, stopping trying to process "+t.src)}):sr(i,t)}))},lr=function(e){function t(t){var r;if(void 0===t&&(t={}),!t.tech)throw new Error("A tech was not provided.");var i=ct(t,{kind:qt[t.kind]||"subtitles",language:t.language||t.srclang||""}),n=$t[i.mode]||"disabled",a=i.default;"metadata"!==i.kind&&"chapters"!==i.kind||(n="hidden"),(r=e.call(this,i)||this).tech_=i.tech,r.cues_=[],r.activeCues_=[],r.preload_=!1!==r.tech_.preloadTextTracks;var s=new jt(r.cues_),o=new jt(r.activeCues_),l=!1,u=Ge(vt(r),function(){this.tech_.isReady_&&!this.tech_.isDisposed()&&(this.activeCues=this.activeCues,l&&(this.trigger("cuechange"),l=!1))});return r.tech_.one("dispose",function(){r.tech_.off("timeupdate",u)}),"disabled"!==n&&r.tech_.on("timeupdate",u),Object.defineProperties(vt(r),{default:{get:function(){return a},set:function(){}},mode:{get:function(){return n},set:function(e){$t[e]&&n!==e&&(n=e,this.preload_||"disabled"===n||0!==this.cues.length||or(this.src,this),this.tech_.off("timeupdate",u),"disabled"!==n&&this.tech_.on("timeupdate",u),this.trigger("modechange"))}},cues:{get:function(){return this.loaded_?s:null},set:function(){}},activeCues:{get:function(){if(!this.loaded_)return null;if(0===this.cues.length)return o;for(var e=this.tech_.currentTime(),t=[],r=0,i=this.cues.length;r=e||n.startTime===n.endTime&&n.startTime<=e&&n.startTime+.5>=e)&&t.push(n)}if(l=!1,t.length!==this.activeCues_.length)l=!0;else for(var a=0;a59?t(r[1],r[2],0,r[4]):t(0,r[1],r[2],r[4]):null}function Tr(){this.values=yr(null)}function wr(e,t,r,i){var n=i?e.split(i):[e];for(var a in n)if("string"==typeof n[a]){var s=n[a].split(r);if(2===s.length)t(s[0],s[1])}}function Sr(e,t,r){var i=e;function n(){var t=br(e);if(null===t)throw new _r(_r.Errors.BadTimeStamp,"Malformed timestamp: "+i);return e=e.replace(/^[^\sa-zA-Z-]+/,""),t}function a(){e=e.replace(/^\s+/,"")}if(a(),t.startTime=n(),a(),"--\x3e"!==e.substr(0,3))throw new _r(_r.Errors.BadTimeStamp,"Malformed time stamp (time stamps must be separated by '--\x3e'): "+i);e=e.substr(3),a(),t.endTime=n(),a(),function(e,t){var i=new Tr;wr(e,function(e,t){switch(e){case"region":for(var n=r.length-1;n>=0;n--)if(r[n].id===t){i.set(e,r[n].region);break}break;case"vertical":i.alt(e,t,["rl","lr"]);break;case"line":var a=t.split(","),s=a[0];i.integer(e,s),i.percent(e,s)&&i.set("snapToLines",!1),i.alt(e,s,["auto"]),2===a.length&&i.alt("lineAlign",a[1],["start","center","end"]);break;case"position":a=t.split(","),i.percent(e,a[0]),2===a.length&&i.alt("positionAlign",a[1],["start","center","end"]);break;case"size":i.percent(e,t);break;case"align":i.alt(e,t,["start","center","end","left","right"])}},/:/,/\s/),t.region=i.get("region",null),t.vertical=i.get("vertical","");try{t.line=i.get("line","auto")}catch(e){}t.lineAlign=i.get("lineAlign","start"),t.snapToLines=i.get("snapToLines",!0),t.size=i.get("size",100);try{t.align=i.get("align","center")}catch(e){t.align=i.get("align","middle")}try{t.position=i.get("position","auto")}catch(e){t.position=i.get("position",{start:0,left:0,center:50,middle:50,end:100,right:100},t.align)}t.positionAlign=i.get("positionAlign",{start:"start",left:"start",center:"center",middle:"center",end:"end",right:"end"},t.align)}(e,t)}_r.prototype=yr(Error.prototype),_r.prototype.constructor=_r,_r.Errors={BadSignature:{code:0,message:"Malformed WebVTT signature."},BadTimeStamp:{code:1,message:"Malformed time stamp."}},Tr.prototype={set:function(e,t){this.get(e)||""===t||(this.values[e]=t)},get:function(e,t,r){return r?this.has(e)?this.values[e]:t[r]:this.has(e)?this.values[e]:t},has:function(e){return e in this.values},alt:function(e,t,r){for(var i=0;i=0&&t<=100)&&(this.set(e,t),!0)}};var Er=vr.createElement&&vr.createElement("textarea"),kr={c:"span",i:"i",b:"b",u:"u",ruby:"ruby",rt:"rt",v:"span",lang:"span"},Cr={white:"rgba(255,255,255,1)",lime:"rgba(0,255,0,1)",cyan:"rgba(0,255,255,1)",red:"rgba(255,0,0,1)",yellow:"rgba(255,255,0,1)",magenta:"rgba(255,0,255,1)",blue:"rgba(0,0,255,1)",black:"rgba(0,0,0,1)"},Pr={v:"title",lang:"lang"},xr={rt:"ruby"};function Ir(e,t){function r(){if(!t)return null;var e,r=t.match(/^([^<]*)(<[^>]*>?)?/);return e=r[1]?r[1]:r[2],t=t.substr(e.length),e}function i(e,t){return!xr[t.localName]||xr[t.localName]===e.localName}function n(t,r){var i=kr[t];if(!i)return null;var n=e.document.createElement(i),a=Pr[t];return a&&r&&(n[a]=r.trim()),n}for(var a,s,o=e.document.createElement("div"),l=o,u=[];null!==(a=r());)if("<"!==a[0])l.appendChild(e.document.createTextNode((s=a,Er.innerHTML=s,s=Er.textContent,Er.textContent="",s)));else{if("/"===a[1]){u.length&&u[u.length-1]===a.substr(2).replace(">","")&&(u.pop(),l=l.parentNode);continue}var c,d=br(a.substr(1,a.length-2));if(d){c=e.document.createProcessingInstruction("timestamp",d),l.appendChild(c);continue}var h=a.match(/^<([^.\s/0-9>]+)(\.[^\s\\>]+)?([^>\\]+)?(\\?)>?$/);if(!h)continue;if(!(c=n(h[1],h[3])))continue;if(!i(l,c))continue;if(h[2]){var p=h[2].split(".");p.forEach(function(e){var t=/^bg_/.test(e),r=t?e.slice(3):e;if(Cr.hasOwnProperty(r)){var i=t?"background-color":"color",n=Cr[r];c.style[i]=n}}),c.className=p.join(" ")}u.push(h[1]),l.appendChild(c),l=c}return o}var Ar=[[1470,1470],[1472,1472],[1475,1475],[1478,1478],[1488,1514],[1520,1524],[1544,1544],[1547,1547],[1549,1549],[1563,1563],[1566,1610],[1645,1647],[1649,1749],[1765,1766],[1774,1775],[1786,1805],[1807,1808],[1810,1839],[1869,1957],[1969,1969],[1984,2026],[2036,2037],[2042,2042],[2048,2069],[2074,2074],[2084,2084],[2088,2088],[2096,2110],[2112,2136],[2142,2142],[2208,2208],[2210,2220],[8207,8207],[64285,64285],[64287,64296],[64298,64310],[64312,64316],[64318,64318],[64320,64321],[64323,64324],[64326,64449],[64467,64829],[64848,64911],[64914,64967],[65008,65020],[65136,65140],[65142,65276],[67584,67589],[67592,67592],[67594,67637],[67639,67640],[67644,67644],[67647,67669],[67671,67679],[67840,67867],[67872,67897],[67903,67903],[67968,68023],[68030,68031],[68096,68096],[68112,68115],[68117,68119],[68121,68147],[68160,68167],[68176,68184],[68192,68223],[68352,68405],[68416,68437],[68440,68466],[68472,68479],[68608,68680],[126464,126467],[126469,126495],[126497,126498],[126500,126500],[126503,126503],[126505,126514],[126516,126519],[126521,126521],[126523,126523],[126530,126530],[126535,126535],[126537,126537],[126539,126539],[126541,126543],[126545,126546],[126548,126548],[126551,126551],[126553,126553],[126555,126555],[126557,126557],[126559,126559],[126561,126562],[126564,126564],[126567,126570],[126572,126578],[126580,126583],[126585,126588],[126590,126590],[126592,126601],[126603,126619],[126625,126627],[126629,126633],[126635,126651],[1114109,1114109]];function Or(e){for(var t=0;t=r[0]&&e<=r[1])return!0}return!1}function Dr(e){var t=[],r="";if(!e||!e.childNodes)return"ltr";function i(e,t){for(var r=t.childNodes.length-1;r>=0;r--)e.push(t.childNodes[r])}function n(e){if(!e||!e.length)return null;var t=e.pop(),r=t.textContent||t.innerText;if(r){var a=r.match(/^.*(\n|\r)/);return a?(e.length=0,a[0]):r}return"ruby"===t.tagName?n(e):t.childNodes?(i(e,t),n(e)):void 0}for(i(t,e);r=n(t);)for(var a=0;a=0&&e.line<=100))return e.line;if(!e.track||!e.track.textTrackList||!e.track.textTrackList.mediaElement)return-1;for(var t=e.track,r=t.textTrackList,i=0,n=0;nd&&(c=c<0?-1:1,c*=Math.ceil(d/u)*u),s<0&&(c+=""===a.vertical?r.height:r.width,o=o.reverse()),n.move(h,c)}else{var p=n.lineHeight/r.height*100;switch(a.lineAlign){case"center":s-=p/2;break;case"end":s-=p}switch(a.vertical){case"":t.applyStyles({top:t.formatStyle(s,"%")});break;case"rl":t.applyStyles({left:t.formatStyle(s,"%")});break;case"lr":t.applyStyles({right:t.formatStyle(s,"%")})}o=["+y","-x","+x","-y"],n=new Mr(t)}var f=function(e,t){for(var n,a=new Mr(e),s=1,o=0;ol&&(n=new Mr(e),s=l),e=new Mr(a)}return n||a}(n,o);t.move(f.toCSSCompatValues(r))}function Ur(){}Lr.prototype.applyStyles=function(e,t){for(var r in t=t||this.div,e)e.hasOwnProperty(r)&&(t.style[r]=e[r])},Lr.prototype.formatStyle=function(e,t){return 0===e?0:e+t},Rr.prototype=yr(Lr.prototype),Rr.prototype.constructor=Rr,Mr.prototype.move=function(e,t){switch(t=void 0!==t?t:this.lineHeight,e){case"+x":this.left+=t,this.right+=t;break;case"-x":this.left-=t,this.right-=t;break;case"+y":this.top+=t,this.bottom+=t;break;case"-y":this.top-=t,this.bottom-=t}},Mr.prototype.overlaps=function(e){return this.lefte.left&&this.tope.top},Mr.prototype.overlapsAny=function(e){for(var t=0;t=e.top&&this.bottom<=e.bottom&&this.left>=e.left&&this.right<=e.right},Mr.prototype.overlapsOppositeAxis=function(e,t){switch(t){case"+x":return this.lefte.right;case"+y":return this.tope.bottom}},Mr.prototype.intersectPercentage=function(e){return Math.max(0,Math.min(this.right,e.right)-Math.max(this.left,e.left))*Math.max(0,Math.min(this.bottom,e.bottom)-Math.max(this.top,e.top))/(this.height*this.width)},Mr.prototype.toCSSCompatValues=function(e){return{top:this.top-e.top,bottom:e.bottom-this.bottom,left:this.left-e.left,right:e.right-this.right,height:this.height,width:this.width}},Mr.getSimpleBoxPosition=function(e){var t=e.div?e.div.offsetHeight:e.tagName?e.offsetHeight:0,r=e.div?e.div.offsetWidth:e.tagName?e.offsetWidth:0,i=e.div?e.div.offsetTop:e.tagName?e.offsetTop:0;return{left:(e=e.div?e.div.getBoundingClientRect():e.tagName?e.getBoundingClientRect():e).left,right:e.right,top:e.top||i,height:e.height||t,bottom:e.bottom||i+(e.height||t),width:e.width||r}},Ur.StringDecoder=function(){return{decode:function(e){if(!e)return"";if("string"!=typeof e)throw new Error("Error - expected string data.");return decodeURIComponent(encodeURIComponent(e))}}},Ur.convertCueToDOMTree=function(e,t){return e&&t?Ir(e,t):null};Ur.processCues=function(e,t,r){if(!e||!t||!r)return null;for(;r.firstChild;)r.removeChild(r.firstChild);var i=e.document.createElement("div");if(i.style.position="absolute",i.style.left="0",i.style.right="0",i.style.top="0",i.style.bottom="0",i.style.margin="1.5%",r.appendChild(i),function(e){for(var t=0;t100)throw new Error("Position must be between 0 and 100.");p=e,this.hasBeenReset=!0}},positionAlign:{enumerable:!0,get:function(){return f},set:function(e){var t=Vr(e);t?(f=t,this.hasBeenReset=!0):console.warn("positionAlign: an invalid or illegal string was specified.")}},size:{enumerable:!0,get:function(){return m},set:function(e){if(e<0||e>100)throw new Error("Size must be between 0 and 100.");m=e,this.hasBeenReset=!0}},align:{enumerable:!0,get:function(){return g},set:function(e){var t=Vr(e);if(!t)throw new SyntaxError("align: an invalid or illegal alignment string was specified.");g=t,this.hasBeenReset=!0}}}),this.displayState=void 0}Hr.prototype.getCueAsHTML=function(){return WebVTT.convertCueToDOMTree(window,this.text)};var qr=Hr,$r={"":!0,up:!0};function zr(e){return"number"==typeof e&&e>=0&&e<=100}var Wr=function(){var e=100,t=3,r=0,i=100,n=0,a=100,s="";Object.defineProperties(this,{width:{enumerable:!0,get:function(){return e},set:function(t){if(!zr(t))throw new Error("Width must be between 0 and 100.");e=t}},lines:{enumerable:!0,get:function(){return t},set:function(e){if("number"!=typeof e)throw new TypeError("Lines must be set to a number.");t=e}},regionAnchorY:{enumerable:!0,get:function(){return i},set:function(e){if(!zr(e))throw new Error("RegionAnchorX must be between 0 and 100.");i=e}},regionAnchorX:{enumerable:!0,get:function(){return r},set:function(e){if(!zr(e))throw new Error("RegionAnchorY must be between 0 and 100.");r=e}},viewportAnchorY:{enumerable:!0,get:function(){return a},set:function(e){if(!zr(e))throw new Error("ViewportAnchorY must be between 0 and 100.");a=e}},viewportAnchorX:{enumerable:!0,get:function(){return n},set:function(e){if(!zr(e))throw new Error("ViewportAnchorX must be between 0 and 100.");n=e}},scroll:{enumerable:!0,get:function(){return s},set:function(e){var t=function(e){return"string"==typeof e&&!!$r[e.toLowerCase()]&&e.toLowerCase()}(e);!1===t?console.warn("Scroll: an invalid or illegal string was specified."):s=t}}})},Gr=f(function(e){var t=e.exports={WebVTT:Br,VTTCue:qr,VTTRegion:Wr};Yt.vttjs=t,Yt.WebVTT=t.WebVTT;var r=t.VTTCue,i=t.VTTRegion,n=Yt.VTTCue,a=Yt.VTTRegion;t.shim=function(){Yt.VTTCue=r,Yt.VTTRegion=i},t.restore=function(){Yt.VTTCue=n,Yt.VTTRegion=a},Yt.VTTCue||t.shim()});Gr.WebVTT,Gr.VTTCue,Gr.VTTRegion;var Xr=function(e){function t(t,r){var i;return void 0===t&&(t={}),void 0===r&&(r=function(){}),t.reportTouchActivity=!1,(i=e.call(this,null,t,r)||this).onDurationChange_=function(e){return i.onDurationChange(e)},i.trackProgress_=function(e){return i.trackProgress(e)},i.trackCurrentTime_=function(e){return i.trackCurrentTime(e)},i.stopTrackingCurrentTime_=function(e){return i.stopTrackingCurrentTime(e)},i.disposeSourceHandler_=function(e){return i.disposeSourceHandler(e)},i.hasStarted_=!1,i.on("playing",function(){this.hasStarted_=!0}),i.on("loadstart",function(){this.hasStarted_=!1}),fr.names.forEach(function(e){var r=fr[e];t&&t[r.getterName]&&(i[r.privateName]=t[r.getterName])}),i.featuresProgressEvents||i.manualProgressOn(),i.featuresTimeupdateEvents||i.manualTimeUpdatesOn(),["Text","Audio","Video"].forEach(function(e){!1===t["native"+e+"Tracks"]&&(i["featuresNative"+e+"Tracks"]=!1)}),!1===t.nativeCaptions||!1===t.nativeTextTracks?i.featuresNativeTextTracks=!1:!0!==t.nativeCaptions&&!0!==t.nativeTextTracks||(i.featuresNativeTextTracks=!0),i.featuresNativeTextTracks||i.emulateTextTracks(),i.preloadTextTracks=!1!==t.preloadTextTracks,i.autoRemoteTextTracks_=new fr.text.ListClass,i.initTrackListeners(),t.nativeControlsForTouch||i.emitTapEvents(),i.constructor&&(i.name_=i.constructor.name||"Unknown Tech"),i}yt(t,e);var r=t.prototype;return r.triggerSourceset=function(e){var t=this;this.isReady_||this.one("ready",function(){return t.setTimeout(function(){return t.triggerSourceset(e)},1)}),this.trigger({src:e,type:"sourceset"})},r.manualProgressOn=function(){this.on("durationchange",this.onDurationChange_),this.manualProgress=!0,this.one("ready",this.trackProgress_)},r.manualProgressOff=function(){this.manualProgress=!1,this.stopTrackingProgress(),this.off("durationchange",this.onDurationChange_)},r.trackProgress=function(e){this.stopTrackingProgress(),this.progressInterval=this.setInterval(Ge(this,function(){var e=this.bufferedPercent();this.bufferedPercent_!==e&&this.trigger("progress"),this.bufferedPercent_=e,1===e&&this.stopTrackingProgress()}),500)},r.onDurationChange=function(e){this.duration_=this.duration()},r.buffered=function(){return Tt(0,0)},r.bufferedPercent=function(){return wt(this.buffered(),this.duration_)},r.stopTrackingProgress=function(){this.clearInterval(this.progressInterval)},r.manualTimeUpdatesOn=function(){this.manualTimeUpdates=!0,this.on("play",this.trackCurrentTime_),this.on("pause",this.stopTrackingCurrentTime_)},r.manualTimeUpdatesOff=function(){this.manualTimeUpdates=!1,this.stopTrackingCurrentTime(),this.off("play",this.trackCurrentTime_),this.off("pause",this.stopTrackingCurrentTime_)},r.trackCurrentTime=function(){this.currentTimeInterval&&this.stopTrackingCurrentTime(),this.currentTimeInterval=this.setInterval(function(){this.trigger({type:"timeupdate",target:this,manuallyTriggered:!0})},250)},r.stopTrackingCurrentTime=function(){this.clearInterval(this.currentTimeInterval),this.trigger({type:"timeupdate",target:this,manuallyTriggered:!0})},r.dispose=function(){this.clearTracks(hr.names),this.manualProgress&&this.manualProgressOff(),this.manualTimeUpdates&&this.manualTimeUpdatesOff(),e.prototype.dispose.call(this)},r.clearTracks=function(e){var t=this;(e=[].concat(e)).forEach(function(e){for(var r=t[e+"Tracks"]()||[],i=r.length;i--;){var n=r[i];"text"===e&&t.removeRemoteTextTrack(n),r.removeTrack(n)}})},r.cleanupAutoTextTracks=function(){for(var e=this.autoRemoteTextTracks_||[],t=e.length;t--;){var r=e[t];this.removeRemoteTextTrack(r)}},r.reset=function(){},r.crossOrigin=function(){},r.setCrossOrigin=function(){},r.error=function(e){return void 0!==e&&(this.error_=new St(e),this.trigger("error")),this.error_},r.played=function(){return this.hasStarted_?Tt(0,0):Tt()},r.play=function(){},r.setScrubbing=function(){},r.scrubbing=function(){},r.setCurrentTime=function(){this.manualTimeUpdates&&this.trigger({type:"timeupdate",target:this,manuallyTriggered:!0})},r.initTrackListeners=function(){var e=this;hr.names.forEach(function(t){var r=hr[t],i=function(){e.trigger(t+"trackchange")},n=e[r.getterName]();n.addEventListener("removetrack",i),n.addEventListener("addtrack",i),e.on("dispose",function(){n.removeEventListener("removetrack",i),n.removeEventListener("addtrack",i)})})},r.addWebVttScript_=function(){var e=this;if(!window.WebVTT)if(document.body.contains(this.el())){if(!this.options_["vtt.js"]&&T(Gr)&&Object.keys(Gr).length>0)return void this.trigger("vttjsloaded");var t=document.createElement("script");t.src=this.options_["vtt.js"]||"https://vjs.zencdn.net/vttjs/0.14.1/vtt.min.js",t.onload=function(){e.trigger("vttjsloaded")},t.onerror=function(){e.trigger("vttjserror")},this.on("dispose",function(){t.onload=null,t.onerror=null}),window.WebVTT=!0,this.el().parentNode.appendChild(t)}else this.ready(this.addWebVttScript_)},r.emulateTextTracks=function(){var e=this,t=this.textTracks(),r=this.remoteTextTracks(),i=function(e){return t.addTrack(e.track)},n=function(e){return t.removeTrack(e.track)};r.on("addtrack",i),r.on("removetrack",n),this.addWebVttScript_();var a=function(){return e.trigger("texttrackchange")},s=function(){a();for(var e=0;e=0;n--){var a=e[n];a[t]&&a[t](i,r)}}(e,r,o,s),o}var ei={buffered:1,currentTime:1,duration:1,muted:1,played:1,paused:1,seekable:1,volume:1,ended:1},ti={setCurrentTime:1,setMuted:1,setVolume:1},ri={play:1,pause:1};function ii(e){return function(t,r){return t===Yr?Yr:r[e]?r[e](t):t}}function ni(e,t,r,i,n,a){void 0===e&&(e={}),void 0===t&&(t=[]),void 0===n&&(n=[]),void 0===a&&(a=!1);var s=t,o=s[0],l=s.slice(1);if("string"==typeof o)ni(e,Kr[o],r,i,n,a);else if(o){var u=function(e,t){var r=Qr[e.id()],i=null;if(null==r)return i=t(e),Qr[e.id()]=[[t,i]],i;for(var n=0;n0;!this.player_.tech(!0)||(N||L)&&t||this.player_.tech(!0).focus(),this.player_.paused()?Pt(this.player_.play()):this.player_.pause()}},t}(ci);gt.registerComponent("PosterImage",di);var hi={monospace:"monospace",sansSerif:"sans-serif",serif:"serif",monospaceSansSerif:'"Andale Mono", "Lucida Console", monospace',monospaceSerif:'"Courier New", monospace',proportionalSansSerif:"sans-serif",proportionalSerif:"serif",casual:'"Comic Sans MS", Impact, fantasy',script:'"Monotype Corsiva", cursive',smallcaps:'"Andale Mono", "Lucida Console", monospace, sans-serif'};function pi(e,t){var r;if(4===e.length)r=e[1]+e[1]+e[2]+e[2]+e[3]+e[3];else{if(7!==e.length)throw new Error("Invalid color code provided, "+e+"; must be formatted as e.g. #f0e or #f604e2.");r=e.slice(1)}return"rgba("+parseInt(r.slice(0,2),16)+","+parseInt(r.slice(2,4),16)+","+parseInt(r.slice(4,6),16)+","+t+")"}function fi(e,t,r){try{e.style[t]=r}catch(e){return}}var mi=function(e){function t(t,r,i){var n;n=e.call(this,t,r,i)||this;var a=function(e){return n.updateDisplay(e)};return t.on("loadstart",function(e){return n.toggleDisplay(e)}),t.on("texttrackchange",a),t.on("loadedmetadata",function(e){return n.preselectTrack(e)}),t.ready(Ge(vt(n),function(){if(t.tech_&&t.tech_.featuresNativeTextTracks)this.hide();else{t.on("fullscreenchange",a),t.on("playerresize",a),window.addEventListener("orientationchange",a),t.on("dispose",function(){return window.removeEventListener("orientationchange",a)});for(var e=this.options_.playerOptions.tracks||[],r=0;r0;return Pt(t),void(!this.player_.tech(!0)||(N||L)&&r||this.player_.tech(!0).focus())}var i=this.player_.getChild("controlBar"),n=i&&i.getChild("playToggle");if(n){var a=function(){return n.focus()};Ct(t)?t.then(a,function(){}):this.setTimeout(a,1)}else this.player_.tech(!0).focus()},r.handleKeyDown=function(t){this.mouseused_=!1,e.prototype.handleKeyDown.call(this,t)},r.handleMouseDown=function(e){this.mouseused_=!0},t}(vi);yi.prototype.controlText_="Play Video",gt.registerComponent("BigPlayButton",yi);var _i=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).controlText(r&&r.controlText||i.localize("Close")),i}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-close-button "+e.prototype.buildCSSClass.call(this)},r.handleClick=function(e){this.trigger({type:"close",bubbles:!1})},r.handleKeyDown=function(t){mt.isEventKey(t,"Esc")?(t.preventDefault(),t.stopPropagation(),this.trigger("click")):e.prototype.handleKeyDown.call(this,t)},t}(vi);gt.registerComponent("CloseButton",_i);var bi=function(e){function t(t,r){var i;return void 0===r&&(r={}),i=e.call(this,t,r)||this,r.replay=void 0===r.replay||r.replay,i.on(t,"play",function(e){return i.handlePlay(e)}),i.on(t,"pause",function(e){return i.handlePause(e)}),r.replay&&i.on(t,"ended",function(e){return i.handleEnded(e)}),i}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-play-control "+e.prototype.buildCSSClass.call(this)},r.handleClick=function(e){this.player_.paused()?Pt(this.player_.play()):this.player_.pause()},r.handleSeeked=function(e){this.removeClass("vjs-ended"),this.player_.paused()?this.handlePause(e):this.handlePlay(e)},r.handlePlay=function(e){this.removeClass("vjs-ended"),this.removeClass("vjs-paused"),this.addClass("vjs-playing"),this.controlText("Pause")},r.handlePause=function(e){this.removeClass("vjs-playing"),this.addClass("vjs-paused"),this.controlText("Play")},r.handleEnded=function(e){var t=this;this.removeClass("vjs-playing"),this.addClass("vjs-ended"),this.controlText("Replay"),this.one(this.player_,"seeked",function(e){return t.handleSeeked(e)})},t}(vi);bi.prototype.controlText_="Play",gt.registerComponent("PlayToggle",bi);var Ti=function(e,t){e=e<0?0:e;var r=Math.floor(e%60),i=Math.floor(e/60%60),n=Math.floor(e/3600),a=Math.floor(t/60%60),s=Math.floor(t/3600);return(isNaN(e)||e===1/0)&&(n=i=r="-"),(n=n>0||s>0?n+":":"")+(i=((n||a>=10)&&i<10?"0"+i:i)+":")+(r=r<10?"0"+r:r)},wi=Ti;function Si(e,t){return void 0===t&&(t=e),wi(e,t)}var Ei=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).on(t,["timeupdate","ended"],function(e){return i.updateContent(e)}),i.updateTextNode_(),i}yt(t,e);var r=t.prototype;return r.createEl=function(){var t=this.buildCSSClass(),r=e.prototype.createEl.call(this,"div",{className:t+" vjs-time-control vjs-control"}),i=Y("span",{className:"vjs-control-text",textContent:this.localize(this.labelText_)+"\xa0"},{role:"presentation"});return r.appendChild(i),this.contentEl_=Y("span",{className:t+"-display"},{"aria-live":"off",role:"presentation"}),r.appendChild(this.contentEl_),r},r.dispose=function(){this.contentEl_=null,this.textNode_=null,e.prototype.dispose.call(this)},r.updateTextNode_=function(e){var t=this;void 0===e&&(e=0),e=Si(e),this.formattedTime_!==e&&(this.formattedTime_=e,this.requestNamedAnimationFrame("TimeDisplay#updateTextNode_",function(){if(t.contentEl_){var e=t.textNode_;e&&t.contentEl_.firstChild!==e&&(e=null,d.warn("TimeDisplay#updateTextnode_: Prevented replacement of text node element since it was no longer a child of this node. Appending a new node instead.")),t.textNode_=document.createTextNode(t.formattedTime_),t.textNode_&&(e?t.contentEl_.replaceChild(t.textNode_,e):t.contentEl_.appendChild(t.textNode_))}}))},r.updateContent=function(e){},t}(gt);Ei.prototype.labelText_="Time",Ei.prototype.controlText_="Time",gt.registerComponent("TimeDisplay",Ei);var ki=function(e){function t(){return e.apply(this,arguments)||this}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-current-time"},r.updateContent=function(e){var t;t=this.player_.ended()?this.player_.duration():this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime(),this.updateTextNode_(t)},t}(Ei);ki.prototype.labelText_="Current Time",ki.prototype.controlText_="Current Time",gt.registerComponent("CurrentTimeDisplay",ki);var Ci=function(e){function t(t,r){var i,n=function(e){return i.updateContent(e)};return(i=e.call(this,t,r)||this).on(t,"durationchange",n),i.on(t,"loadstart",n),i.on(t,"loadedmetadata",n),i}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-duration"},r.updateContent=function(e){var t=this.player_.duration();this.updateTextNode_(t)},t}(Ei);Ci.prototype.labelText_="Duration",Ci.prototype.controlText_="Duration",gt.registerComponent("DurationDisplay",Ci);var Pi=function(e){function t(){return e.apply(this,arguments)||this}return yt(t,e),t.prototype.createEl=function(){var t=e.prototype.createEl.call(this,"div",{className:"vjs-time-control vjs-time-divider"},{"aria-hidden":!0}),r=e.prototype.createEl.call(this,"div"),i=e.prototype.createEl.call(this,"span",{textContent:"/"});return r.appendChild(i),t.appendChild(r),t},t}(gt);gt.registerComponent("TimeDivider",Pi);var xi=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).on(t,"durationchange",function(e){return i.updateContent(e)}),i}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-remaining-time"},r.createEl=function(){var t=e.prototype.createEl.call(this);return!1!==this.options_.displayNegative&&t.insertBefore(Y("span",{},{"aria-hidden":!0},"-"),this.contentEl_),t},r.updateContent=function(e){var t;"number"==typeof this.player_.duration()&&(t=this.player_.ended()?0:this.player_.remainingTimeDisplay?this.player_.remainingTimeDisplay():this.player_.remainingTime(),this.updateTextNode_(t))},t}(Ei);xi.prototype.labelText_="Remaining Time",xi.prototype.controlText_="Remaining Time",gt.registerComponent("RemainingTimeDisplay",xi);var Ii=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).updateShowing(),i.on(i.player(),"durationchange",function(e){return i.updateShowing(e)}),i}yt(t,e);var r=t.prototype;return r.createEl=function(){var t=e.prototype.createEl.call(this,"div",{className:"vjs-live-control vjs-control"});return this.contentEl_=Y("div",{className:"vjs-live-display"},{"aria-live":"off"}),this.contentEl_.appendChild(Y("span",{className:"vjs-control-text",textContent:this.localize("Stream Type")+"\xa0"})),this.contentEl_.appendChild(document.createTextNode(this.localize("LIVE"))),t.appendChild(this.contentEl_),t},r.dispose=function(){this.contentEl_=null,e.prototype.dispose.call(this)},r.updateShowing=function(e){this.player().duration()===1/0?this.show():this.hide()},t}(gt);gt.registerComponent("LiveDisplay",Ii);var Ai=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).updateLiveEdgeStatus(),i.player_.liveTracker&&(i.updateLiveEdgeStatusHandler_=function(e){return i.updateLiveEdgeStatus(e)},i.on(i.player_.liveTracker,"liveedgechange",i.updateLiveEdgeStatusHandler_)),i}yt(t,e);var r=t.prototype;return r.createEl=function(){var t=e.prototype.createEl.call(this,"button",{className:"vjs-seek-to-live-control vjs-control"});return this.textEl_=Y("span",{className:"vjs-seek-to-live-text",textContent:this.localize("LIVE")},{"aria-hidden":"true"}),t.appendChild(this.textEl_),t},r.updateLiveEdgeStatus=function(){!this.player_.liveTracker||this.player_.liveTracker.atLiveEdge()?(this.setAttribute("aria-disabled",!0),this.addClass("vjs-at-live-edge"),this.controlText("Seek to live, currently playing live")):(this.setAttribute("aria-disabled",!1),this.removeClass("vjs-at-live-edge"),this.controlText("Seek to live, currently behind live"))},r.handleClick=function(){this.player_.liveTracker.seekToLiveEdge()},r.dispose=function(){this.player_.liveTracker&&this.off(this.player_.liveTracker,"liveedgechange",this.updateLiveEdgeStatusHandler_),this.textEl_=null,e.prototype.dispose.call(this)},t}(vi);Ai.prototype.controlText_="Seek to live, currently playing live",gt.registerComponent("SeekToLive",Ai);var Oi=function(e,t,r){return e=Number(e),Math.min(r,Math.max(t,isNaN(e)?t:e))},Di=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).handleMouseDown_=function(e){return i.handleMouseDown(e)},i.handleMouseUp_=function(e){return i.handleMouseUp(e)},i.handleKeyDown_=function(e){return i.handleKeyDown(e)},i.handleClick_=function(e){return i.handleClick(e)},i.handleMouseMove_=function(e){return i.handleMouseMove(e)},i.update_=function(e){return i.update(e)},i.bar=i.getChild(i.options_.barName),i.vertical(!!i.options_.vertical),i.enable(),i}yt(t,e);var r=t.prototype;return r.enabled=function(){return this.enabled_},r.enable=function(){this.enabled()||(this.on("mousedown",this.handleMouseDown_),this.on("touchstart",this.handleMouseDown_),this.on("keydown",this.handleKeyDown_),this.on("click",this.handleClick_),this.on(this.player_,"controlsvisible",this.update),this.playerEvent&&this.on(this.player_,this.playerEvent,this.update),this.removeClass("disabled"),this.setAttribute("tabindex",0),this.enabled_=!0)},r.disable=function(){if(this.enabled()){var e=this.bar.el_.ownerDocument;this.off("mousedown",this.handleMouseDown_),this.off("touchstart",this.handleMouseDown_),this.off("keydown",this.handleKeyDown_),this.off("click",this.handleClick_),this.off(this.player_,"controlsvisible",this.update_),this.off(e,"mousemove",this.handleMouseMove_),this.off(e,"mouseup",this.handleMouseUp_),this.off(e,"touchmove",this.handleMouseMove_),this.off(e,"touchend",this.handleMouseUp_),this.removeAttribute("tabindex"),this.addClass("disabled"),this.playerEvent&&this.off(this.player_,this.playerEvent,this.update),this.enabled_=!1}},r.createEl=function(t,r,i){return void 0===r&&(r={}),void 0===i&&(i={}),r.className=r.className+" vjs-slider",r=_({tabIndex:0},r),i=_({role:"slider","aria-valuenow":0,"aria-valuemin":0,"aria-valuemax":100,tabIndex:0},i),e.prototype.createEl.call(this,t,r,i)},r.handleMouseDown=function(e){var t=this.bar.el_.ownerDocument;"mousedown"===e.type&&e.preventDefault(),"touchstart"!==e.type||R||e.preventDefault(),ue(),this.addClass("vjs-sliding"),this.trigger("slideractive"),this.on(t,"mousemove",this.handleMouseMove_),this.on(t,"mouseup",this.handleMouseUp_),this.on(t,"touchmove",this.handleMouseMove_),this.on(t,"touchend",this.handleMouseUp_),this.handleMouseMove(e,!0)},r.handleMouseMove=function(e){},r.handleMouseUp=function(){var e=this.bar.el_.ownerDocument;ce(),this.removeClass("vjs-sliding"),this.trigger("sliderinactive"),this.off(e,"mousemove",this.handleMouseMove_),this.off(e,"mouseup",this.handleMouseUp_),this.off(e,"touchmove",this.handleMouseMove_),this.off(e,"touchend",this.handleMouseUp_),this.update()},r.update=function(){var e=this;if(this.el_&&this.bar){var t=this.getProgress();return t===this.progress_||(this.progress_=t,this.requestNamedAnimationFrame("Slider#update",function(){var r=e.vertical()?"height":"width";e.bar.el().style[r]=(100*t).toFixed(2)+"%"})),t}},r.getProgress=function(){return Number(Oi(this.getPercent(),0,1).toFixed(4))},r.calculateDistance=function(e){var t=pe(this.el_,e);return this.vertical()?t.y:t.x},r.handleKeyDown=function(t){mt.isEventKey(t,"Left")||mt.isEventKey(t,"Down")?(t.preventDefault(),t.stopPropagation(),this.stepBack()):mt.isEventKey(t,"Right")||mt.isEventKey(t,"Up")?(t.preventDefault(),t.stopPropagation(),this.stepForward()):e.prototype.handleKeyDown.call(this,t)},r.handleClick=function(e){e.stopPropagation(),e.preventDefault()},r.vertical=function(e){if(void 0===e)return this.vertical_||!1;this.vertical_=!!e,this.vertical_?this.addClass("vjs-slider-vertical"):this.addClass("vjs-slider-horizontal")},t}(gt);gt.registerComponent("Slider",Di);var Li=function(e,t){return Oi(e/t*100,0,100).toFixed(2)+"%"},Ri=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).partEls_=[],i.on(t,"progress",function(e){return i.update(e)}),i}yt(t,e);var r=t.prototype;return r.createEl=function(){var t=e.prototype.createEl.call(this,"div",{className:"vjs-load-progress"}),r=Y("span",{className:"vjs-control-text"}),i=Y("span",{textContent:this.localize("Loaded")}),n=document.createTextNode(": ");return this.percentageEl_=Y("span",{className:"vjs-control-text-loaded-percentage",textContent:"0%"}),t.appendChild(r),r.appendChild(i),r.appendChild(n),r.appendChild(this.percentageEl_),t},r.dispose=function(){this.partEls_=null,this.percentageEl_=null,e.prototype.dispose.call(this)},r.update=function(e){var t=this;this.requestNamedAnimationFrame("LoadProgressBar#update",function(){var e=t.player_.liveTracker,r=t.player_.buffered(),i=e&&e.isLive()?e.seekableEnd():t.player_.duration(),n=t.player_.bufferedEnd(),a=t.partEls_,s=Li(n,i);t.percent_!==s&&(t.el_.style.width=s,J(t.percentageEl_,s),t.percent_=s);for(var o=0;or.length;d--)t.el_.removeChild(a[d-1]);a.length=r.length})},t}(gt);gt.registerComponent("LoadProgressBar",Ri);var Mi=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).update=Xe(Ge(vt(i),i.update),We),i}yt(t,e);var r=t.prototype;return r.createEl=function(){return e.prototype.createEl.call(this,"div",{className:"vjs-time-tooltip"},{"aria-hidden":"true"})},r.update=function(e,t,r){var i=he(this.el_),n=de(this.player_.el()),a=e.width*t;if(n&&i){var s=e.left-n.left+a,o=e.width-a+(n.right-e.right),l=i.width/2;si.width&&(l=i.width),l=Math.round(l),this.el_.style.right="-"+l+"px",this.write(r)}},r.write=function(e){J(this.el_,e)},r.updateTime=function(e,t,r,i){var n=this;this.requestNamedAnimationFrame("TimeTooltip#updateTime",function(){var a,s=n.player_.duration();if(n.player_.liveTracker&&n.player_.liveTracker.isLive()){var o=n.player_.liveTracker.liveWindow(),l=o-t*o;a=(l<1?"":"-")+Si(l,o)}else a=Si(r,s);n.update(e,t,a),i&&i()})},t}(gt);gt.registerComponent("TimeTooltip",Mi);var Ni=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).update=Xe(Ge(vt(i),i.update),We),i}yt(t,e);var r=t.prototype;return r.createEl=function(){return e.prototype.createEl.call(this,"div",{className:"vjs-play-progress vjs-slider-bar"},{"aria-hidden":"true"})},r.update=function(e,t){var r=this.getChild("timeTooltip");if(r){var i=this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime();r.updateTime(e,t,i)}},t}(gt);Ni.prototype.options_={children:[]},H||I||Ni.prototype.options_.children.push("timeTooltip"),gt.registerComponent("PlayProgressBar",Ni);var Ui=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).update=Xe(Ge(vt(i),i.update),We),i}yt(t,e);var r=t.prototype;return r.createEl=function(){return e.prototype.createEl.call(this,"div",{className:"vjs-mouse-display"})},r.update=function(e,t){var r=this,i=t*this.player_.duration();this.getChild("timeTooltip").updateTime(e,t,i,function(){r.el_.style.left=e.width*t+"px"})},t}(gt);Ui.prototype.options_={children:["timeTooltip"]},gt.registerComponent("MouseTimeDisplay",Ui);var Bi=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).setEventHandlers_(),i}yt(t,e);var r=t.prototype;return r.setEventHandlers_=function(){var e=this;this.update_=Ge(this,this.update),this.update=Xe(this.update_,We),this.on(this.player_,["ended","durationchange","timeupdate"],this.update),this.player_.liveTracker&&this.on(this.player_.liveTracker,"liveedgechange",this.update),this.updateInterval=null,this.enableIntervalHandler_=function(t){return e.enableInterval_(t)},this.disableIntervalHandler_=function(t){return e.disableInterval_(t)},this.on(this.player_,["playing"],this.enableIntervalHandler_),this.on(this.player_,["ended","pause","waiting"],this.disableIntervalHandler_),"hidden"in document&&"visibilityState"in document&&this.on(document,"visibilitychange",this.toggleVisibility_)},r.toggleVisibility_=function(e){"hidden"===document.visibilityState?(this.cancelNamedAnimationFrame("SeekBar#update"),this.cancelNamedAnimationFrame("Slider#update"),this.disableInterval_(e)):(this.player_.ended()||this.player_.paused()||this.enableInterval_(),this.update())},r.enableInterval_=function(){this.updateInterval||(this.updateInterval=this.setInterval(this.update,We))},r.disableInterval_=function(e){this.player_.liveTracker&&this.player_.liveTracker.isLive()&&e&&"ended"!==e.type||this.updateInterval&&(this.clearInterval(this.updateInterval),this.updateInterval=null)},r.createEl=function(){return e.prototype.createEl.call(this,"div",{className:"vjs-progress-holder"},{"aria-label":this.localize("Progress Bar")})},r.update=function(t){var r=this;if("hidden"!==document.visibilityState){var i=e.prototype.update.call(this);return this.requestNamedAnimationFrame("SeekBar#update",function(){var e=r.player_.ended()?r.player_.duration():r.getCurrentTime_(),t=r.player_.liveTracker,n=r.player_.duration();t&&t.isLive()&&(n=r.player_.liveTracker.liveCurrentTime()),r.percent_!==i&&(r.el_.setAttribute("aria-valuenow",(100*i).toFixed(2)),r.percent_=i),r.currentTime_===e&&r.duration_===n||(r.el_.setAttribute("aria-valuetext",r.localize("progress bar timing: currentTime={1} duration={2}",[Si(e,n),Si(n,n)],"{1} of {2}")),r.currentTime_=e,r.duration_=n),r.bar&&r.bar.update(de(r.el()),r.getProgress())}),i}},r.userSeek_=function(e){this.player_.liveTracker&&this.player_.liveTracker.isLive()&&this.player_.liveTracker.nextSeekedFromUser(),this.player_.currentTime(e)},r.getCurrentTime_=function(){return this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime()},r.getPercent=function(){var e,t=this.getCurrentTime_(),r=this.player_.liveTracker;return r&&r.isLive()?(e=(t-r.seekableStart())/r.liveWindow(),r.atLiveEdge()&&(e=1)):e=t/this.player_.duration(),e},r.handleMouseDown=function(t){_e(t)&&(t.stopPropagation(),this.videoWasPlaying=!this.player_.paused(),this.player_.pause(),e.prototype.handleMouseDown.call(this,t))},r.handleMouseMove=function(e,t){if(void 0===t&&(t=!1),_e(e)){var r;t||this.player_.scrubbing()||this.player_.scrubbing(!0);var i=this.calculateDistance(e),n=this.player_.liveTracker;if(n&&n.isLive()){if(i>=.99)return void n.seekToLiveEdge();var a=n.seekableStart(),s=n.liveCurrentTime();if((r=a+i*n.liveWindow())>=s&&(r=s),r<=a&&(r=a+.1),r===1/0)return}else(r=i*this.player_.duration())===this.player_.duration()&&(r-=.1);this.userSeek_(r)}},r.enable=function(){e.prototype.enable.call(this);var t=this.getChild("mouseTimeDisplay");t&&t.show()},r.disable=function(){e.prototype.disable.call(this);var t=this.getChild("mouseTimeDisplay");t&&t.hide()},r.handleMouseUp=function(t){e.prototype.handleMouseUp.call(this,t),t&&t.stopPropagation(),this.player_.scrubbing(!1),this.player_.trigger({type:"timeupdate",target:this,manuallyTriggered:!0}),this.videoWasPlaying?Pt(this.player_.play()):this.update_()},r.stepForward=function(){this.userSeek_(this.player_.currentTime()+5)},r.stepBack=function(){this.userSeek_(this.player_.currentTime()-5)},r.handleAction=function(e){this.player_.paused()?this.player_.play():this.player_.pause()},r.handleKeyDown=function(t){var r=this.player_.liveTracker;if(mt.isEventKey(t,"Space")||mt.isEventKey(t,"Enter"))t.preventDefault(),t.stopPropagation(),this.handleAction(t);else if(mt.isEventKey(t,"Home"))t.preventDefault(),t.stopPropagation(),this.userSeek_(0);else if(mt.isEventKey(t,"End"))t.preventDefault(),t.stopPropagation(),r&&r.isLive()?this.userSeek_(r.liveCurrentTime()):this.userSeek_(this.player_.duration());else if(/^[0-9]$/.test(mt(t))){t.preventDefault(),t.stopPropagation();var i=10*(mt.codes[mt(t)]-mt.codes[0])/100;r&&r.isLive()?this.userSeek_(r.seekableStart()+r.liveWindow()*i):this.userSeek_(this.player_.duration()*i)}else mt.isEventKey(t,"PgDn")?(t.preventDefault(),t.stopPropagation(),this.userSeek_(this.player_.currentTime()-60)):mt.isEventKey(t,"PgUp")?(t.preventDefault(),t.stopPropagation(),this.userSeek_(this.player_.currentTime()+60)):e.prototype.handleKeyDown.call(this,t)},r.dispose=function(){this.disableInterval_(),this.off(this.player_,["ended","durationchange","timeupdate"],this.update),this.player_.liveTracker&&this.off(this.player_.liveTracker,"liveedgechange",this.update),this.off(this.player_,["playing"],this.enableIntervalHandler_),this.off(this.player_,["ended","pause","waiting"],this.disableIntervalHandler_),"hidden"in document&&"visibilityState"in document&&this.off(document,"visibilitychange",this.toggleVisibility_),e.prototype.dispose.call(this)},t}(Di);Bi.prototype.options_={children:["loadProgressBar","playProgressBar"],barName:"playProgressBar"},H||I||Bi.prototype.options_.children.splice(1,0,"mouseTimeDisplay"),gt.registerComponent("SeekBar",Bi);var Fi=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).handleMouseMove=Xe(Ge(vt(i),i.handleMouseMove),We),i.throttledHandleMouseSeek=Xe(Ge(vt(i),i.handleMouseSeek),We),i.handleMouseUpHandler_=function(e){return i.handleMouseUp(e)},i.handleMouseDownHandler_=function(e){return i.handleMouseDown(e)},i.enable(),i}yt(t,e);var r=t.prototype;return r.createEl=function(){return e.prototype.createEl.call(this,"div",{className:"vjs-progress-control vjs-control"})},r.handleMouseMove=function(e){var t=this.getChild("seekBar");if(t){var r=t.getChild("playProgressBar"),i=t.getChild("mouseTimeDisplay");if(r||i){var n=t.el(),a=he(n),s=pe(n,e).x;s=Oi(s,0,1),i&&i.update(a,s),r&&r.update(a,t.getProgress())}}},r.handleMouseSeek=function(e){var t=this.getChild("seekBar");t&&t.handleMouseMove(e)},r.enabled=function(){return this.enabled_},r.disable=function(){if(this.children().forEach(function(e){return e.disable&&e.disable()}),this.enabled()&&(this.off(["mousedown","touchstart"],this.handleMouseDownHandler_),this.off(this.el_,"mousemove",this.handleMouseMove),this.removeListenersAddedOnMousedownAndTouchstart(),this.addClass("disabled"),this.enabled_=!1,this.player_.scrubbing())){var e=this.getChild("seekBar");this.player_.scrubbing(!1),e.videoWasPlaying&&Pt(this.player_.play())}},r.enable=function(){this.children().forEach(function(e){return e.enable&&e.enable()}),this.enabled()||(this.on(["mousedown","touchstart"],this.handleMouseDownHandler_),this.on(this.el_,"mousemove",this.handleMouseMove),this.removeClass("disabled"),this.enabled_=!0)},r.removeListenersAddedOnMousedownAndTouchstart=function(){var e=this.el_.ownerDocument;this.off(e,"mousemove",this.throttledHandleMouseSeek),this.off(e,"touchmove",this.throttledHandleMouseSeek),this.off(e,"mouseup",this.handleMouseUpHandler_),this.off(e,"touchend",this.handleMouseUpHandler_)},r.handleMouseDown=function(e){var t=this.el_.ownerDocument,r=this.getChild("seekBar");r&&r.handleMouseDown(e),this.on(t,"mousemove",this.throttledHandleMouseSeek),this.on(t,"touchmove",this.throttledHandleMouseSeek),this.on(t,"mouseup",this.handleMouseUpHandler_),this.on(t,"touchend",this.handleMouseUpHandler_)},r.handleMouseUp=function(e){var t=this.getChild("seekBar");t&&t.handleMouseUp(e),this.removeListenersAddedOnMousedownAndTouchstart()},t}(gt);Fi.prototype.options_={children:["seekBar"]},gt.registerComponent("ProgressControl",Fi);var ji=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).on(t,["enterpictureinpicture","leavepictureinpicture"],function(e){return i.handlePictureInPictureChange(e)}),i.on(t,["disablepictureinpicturechanged","loadedmetadata"],function(e){return i.handlePictureInPictureEnabledChange(e)}),i.disable(),i}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-picture-in-picture-control "+e.prototype.buildCSSClass.call(this)},r.handlePictureInPictureEnabledChange=function(){document.pictureInPictureEnabled&&!1===this.player_.disablePictureInPicture()?this.enable():this.disable()},r.handlePictureInPictureChange=function(e){this.player_.isInPictureInPicture()?this.controlText("Exit Picture-in-Picture"):this.controlText("Picture-in-Picture"),this.handlePictureInPictureEnabledChange()},r.handleClick=function(e){this.player_.isInPictureInPicture()?this.player_.exitPictureInPicture():this.player_.requestPictureInPicture()},t}(vi);ji.prototype.controlText_="Picture-in-Picture",gt.registerComponent("PictureInPictureToggle",ji);var Vi=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).on(t,"fullscreenchange",function(e){return i.handleFullscreenChange(e)}),!1===document[t.fsApi_.fullscreenEnabled]&&i.disable(),i}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-fullscreen-control "+e.prototype.buildCSSClass.call(this)},r.handleFullscreenChange=function(e){this.player_.isFullscreen()?this.controlText("Non-Fullscreen"):this.controlText("Fullscreen")},r.handleClick=function(e){this.player_.isFullscreen()?this.player_.exitFullscreen():this.player_.requestFullscreen()},t}(vi);Vi.prototype.controlText_="Fullscreen",gt.registerComponent("FullscreenToggle",Vi);var Hi=function(e){function t(){return e.apply(this,arguments)||this}return yt(t,e),t.prototype.createEl=function(){var t=e.prototype.createEl.call(this,"div",{className:"vjs-volume-level"});return t.appendChild(e.prototype.createEl.call(this,"span",{className:"vjs-control-text"})),t},t}(gt);gt.registerComponent("VolumeLevel",Hi);var qi=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).update=Xe(Ge(vt(i),i.update),We),i}yt(t,e);var r=t.prototype;return r.createEl=function(){return e.prototype.createEl.call(this,"div",{className:"vjs-volume-tooltip"},{"aria-hidden":"true"})},r.update=function(e,t,r,i){if(!r){var n=de(this.el_),a=de(this.player_.el()),s=e.width*t;if(!a||!n)return;var o=e.left-a.left+s,l=e.width-s+(a.right-e.right),u=n.width/2;on.width&&(u=n.width),this.el_.style.right="-"+u+"px"}this.write(i+"%")},r.write=function(e){J(this.el_,e)},r.updateVolume=function(e,t,r,i,n){var a=this;this.requestNamedAnimationFrame("VolumeLevelTooltip#updateVolume",function(){a.update(e,t,r,i.toFixed(0)),n&&n()})},t}(gt);gt.registerComponent("VolumeLevelTooltip",qi);var $i=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).update=Xe(Ge(vt(i),i.update),We),i}yt(t,e);var r=t.prototype;return r.createEl=function(){return e.prototype.createEl.call(this,"div",{className:"vjs-mouse-display"})},r.update=function(e,t,r){var i=this,n=100*t;this.getChild("volumeLevelTooltip").updateVolume(e,t,r,n,function(){r?i.el_.style.bottom=e.height*t+"px":i.el_.style.left=e.width*t+"px"})},t}(gt);$i.prototype.options_={children:["volumeLevelTooltip"]},gt.registerComponent("MouseVolumeLevelDisplay",$i);var zi=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).on("slideractive",function(e){return i.updateLastVolume_(e)}),i.on(t,"volumechange",function(e){return i.updateARIAAttributes(e)}),t.ready(function(){return i.updateARIAAttributes()}),i}yt(t,e);var r=t.prototype;return r.createEl=function(){return e.prototype.createEl.call(this,"div",{className:"vjs-volume-bar vjs-slider-bar"},{"aria-label":this.localize("Volume Level"),"aria-live":"polite"})},r.handleMouseDown=function(t){_e(t)&&e.prototype.handleMouseDown.call(this,t)},r.handleMouseMove=function(e){var t=this.getChild("mouseVolumeLevelDisplay");if(t){var r=this.el(),i=de(r),n=this.vertical(),a=pe(r,e);a=n?a.y:a.x,a=Oi(a,0,1),t.update(i,a,n)}_e(e)&&(this.checkMuted(),this.player_.volume(this.calculateDistance(e)))},r.checkMuted=function(){this.player_.muted()&&this.player_.muted(!1)},r.getPercent=function(){return this.player_.muted()?0:this.player_.volume()},r.stepForward=function(){this.checkMuted(),this.player_.volume(this.player_.volume()+.1)},r.stepBack=function(){this.checkMuted(),this.player_.volume(this.player_.volume()-.1)},r.updateARIAAttributes=function(e){var t=this.player_.muted()?0:this.volumeAsPercentage_();this.el_.setAttribute("aria-valuenow",t),this.el_.setAttribute("aria-valuetext",t+"%")},r.volumeAsPercentage_=function(){return Math.round(100*this.player_.volume())},r.updateLastVolume_=function(){var e=this,t=this.player_.volume();this.one("sliderinactive",function(){0===e.player_.volume()&&e.player_.lastVolume_(t)})},t}(Di);zi.prototype.options_={children:["volumeLevel"],barName:"volumeLevel"},H||I||zi.prototype.options_.children.splice(0,0,"mouseVolumeLevelDisplay"),zi.prototype.playerEvent="volumechange",gt.registerComponent("VolumeBar",zi);var Wi=function(e){function t(t,r){var i;return void 0===r&&(r={}),r.vertical=r.vertical||!1,(void 0===r.volumeBar||T(r.volumeBar))&&(r.volumeBar=r.volumeBar||{},r.volumeBar.vertical=r.vertical),i=e.call(this,t,r)||this,function(e,t){t.tech_&&!t.tech_.featuresVolumeControl&&e.addClass("vjs-hidden"),e.on(t,"loadstart",function(){t.tech_.featuresVolumeControl?e.removeClass("vjs-hidden"):e.addClass("vjs-hidden")})}(vt(i),t),i.throttledHandleMouseMove=Xe(Ge(vt(i),i.handleMouseMove),We),i.handleMouseUpHandler_=function(e){return i.handleMouseUp(e)},i.on("mousedown",function(e){return i.handleMouseDown(e)}),i.on("touchstart",function(e){return i.handleMouseDown(e)}),i.on("mousemove",function(e){return i.handleMouseMove(e)}),i.on(i.volumeBar,["focus","slideractive"],function(){i.volumeBar.addClass("vjs-slider-active"),i.addClass("vjs-slider-active"),i.trigger("slideractive")}),i.on(i.volumeBar,["blur","sliderinactive"],function(){i.volumeBar.removeClass("vjs-slider-active"),i.removeClass("vjs-slider-active"),i.trigger("sliderinactive")}),i}yt(t,e);var r=t.prototype;return r.createEl=function(){var t="vjs-volume-horizontal";return this.options_.vertical&&(t="vjs-volume-vertical"),e.prototype.createEl.call(this,"div",{className:"vjs-volume-control vjs-control "+t})},r.handleMouseDown=function(e){var t=this.el_.ownerDocument;this.on(t,"mousemove",this.throttledHandleMouseMove),this.on(t,"touchmove",this.throttledHandleMouseMove),this.on(t,"mouseup",this.handleMouseUpHandler_),this.on(t,"touchend",this.handleMouseUpHandler_)},r.handleMouseUp=function(e){var t=this.el_.ownerDocument;this.off(t,"mousemove",this.throttledHandleMouseMove),this.off(t,"touchmove",this.throttledHandleMouseMove),this.off(t,"mouseup",this.handleMouseUpHandler_),this.off(t,"touchend",this.handleMouseUpHandler_)},r.handleMouseMove=function(e){this.volumeBar.handleMouseMove(e)},t}(gt);Wi.prototype.options_={children:["volumeBar"]},gt.registerComponent("VolumeControl",Wi);var Gi=function(e){function t(t,r){var i;return i=e.call(this,t,r)||this,function(e,t){t.tech_&&!t.tech_.featuresMuteControl&&e.addClass("vjs-hidden"),e.on(t,"loadstart",function(){t.tech_.featuresMuteControl?e.removeClass("vjs-hidden"):e.addClass("vjs-hidden")})}(vt(i),t),i.on(t,["loadstart","volumechange"],function(e){return i.update(e)}),i}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-mute-control "+e.prototype.buildCSSClass.call(this)},r.handleClick=function(e){var t=this.player_.volume(),r=this.player_.lastVolume_();if(0===t){var i=r<.1?.1:r;this.player_.volume(i),this.player_.muted(!1)}else this.player_.muted(!this.player_.muted())},r.update=function(e){this.updateIcon_(),this.updateControlText_()},r.updateIcon_=function(){var e=this.player_.volume(),t=3;H&&this.player_.tech_&&this.player_.tech_.el_&&this.player_.muted(this.player_.tech_.el_.muted),0===e||this.player_.muted()?t=0:e<.33?t=1:e<.67&&(t=2);for(var r=0;r<4;r++)re(this.el_,"vjs-vol-"+r);te(this.el_,"vjs-vol-"+t)},r.updateControlText_=function(){var e=this.player_.muted()||0===this.player_.volume()?"Unmute":"Mute";this.controlText()!==e&&this.controlText(e)},t}(vi);Gi.prototype.controlText_="Mute",gt.registerComponent("MuteToggle",Gi);var Xi=function(e){function t(t,r){var i;return void 0===r&&(r={}),void 0!==r.inline?r.inline=r.inline:r.inline=!0,(void 0===r.volumeControl||T(r.volumeControl))&&(r.volumeControl=r.volumeControl||{},r.volumeControl.vertical=!r.inline),(i=e.call(this,t,r)||this).handleKeyPressHandler_=function(e){return i.handleKeyPress(e)},i.on(t,["loadstart"],function(e){return i.volumePanelState_(e)}),i.on(i.muteToggle,"keyup",function(e){return i.handleKeyPress(e)}),i.on(i.volumeControl,"keyup",function(e){return i.handleVolumeControlKeyUp(e)}),i.on("keydown",function(e){return i.handleKeyPress(e)}),i.on("mouseover",function(e){return i.handleMouseOver(e)}),i.on("mouseout",function(e){return i.handleMouseOut(e)}),i.on(i.volumeControl,["slideractive"],i.sliderActive_),i.on(i.volumeControl,["sliderinactive"],i.sliderInactive_),i}yt(t,e);var r=t.prototype;return r.sliderActive_=function(){this.addClass("vjs-slider-active")},r.sliderInactive_=function(){this.removeClass("vjs-slider-active")},r.volumePanelState_=function(){this.volumeControl.hasClass("vjs-hidden")&&this.muteToggle.hasClass("vjs-hidden")&&this.addClass("vjs-hidden"),this.volumeControl.hasClass("vjs-hidden")&&!this.muteToggle.hasClass("vjs-hidden")&&this.addClass("vjs-mute-toggle-only")},r.createEl=function(){var t="vjs-volume-panel-horizontal";return this.options_.inline||(t="vjs-volume-panel-vertical"),e.prototype.createEl.call(this,"div",{className:"vjs-volume-panel vjs-control "+t})},r.dispose=function(){this.handleMouseOut(),e.prototype.dispose.call(this)},r.handleVolumeControlKeyUp=function(e){mt.isEventKey(e,"Esc")&&this.muteToggle.focus()},r.handleMouseOver=function(e){this.addClass("vjs-hover"),Fe(document,"keyup",this.handleKeyPressHandler_)},r.handleMouseOut=function(e){this.removeClass("vjs-hover"),je(document,"keyup",this.handleKeyPressHandler_)},r.handleKeyPress=function(e){mt.isEventKey(e,"Esc")&&this.handleMouseOut()},t}(gt);Xi.prototype.options_={children:["muteToggle","volumeControl"]},gt.registerComponent("VolumePanel",Xi);var Ki=function(e){function t(t,r){var i;return i=e.call(this,t,r)||this,r&&(i.menuButton_=r.menuButton),i.focusedChild_=-1,i.on("keydown",function(e){return i.handleKeyDown(e)}),i.boundHandleBlur_=function(e){return i.handleBlur(e)},i.boundHandleTapClick_=function(e){return i.handleTapClick(e)},i}yt(t,e);var r=t.prototype;return r.addEventListenerForItem=function(e){e instanceof gt&&(this.on(e,"blur",this.boundHandleBlur_),this.on(e,["tap","click"],this.boundHandleTapClick_))},r.removeEventListenerForItem=function(e){e instanceof gt&&(this.off(e,"blur",this.boundHandleBlur_),this.off(e,["tap","click"],this.boundHandleTapClick_))},r.removeChild=function(t){"string"==typeof t&&(t=this.getChild(t)),this.removeEventListenerForItem(t),e.prototype.removeChild.call(this,t)},r.addItem=function(e){var t=this.addChild(e);t&&this.addEventListenerForItem(t)},r.createEl=function(){var t=this.options_.contentElType||"ul";this.contentEl_=Y(t,{className:"vjs-menu-content"}),this.contentEl_.setAttribute("role","menu");var r=e.prototype.createEl.call(this,"div",{append:this.contentEl_,className:"vjs-menu"});return r.appendChild(this.contentEl_),Fe(r,"click",function(e){e.preventDefault(),e.stopImmediatePropagation()}),r},r.dispose=function(){this.contentEl_=null,this.boundHandleBlur_=null,this.boundHandleTapClick_=null,e.prototype.dispose.call(this)},r.handleBlur=function(e){var t=e.relatedTarget||document.activeElement;if(!this.children().some(function(e){return e.el()===t})){var r=this.menuButton_;r&&r.buttonPressed_&&t!==r.el().firstChild&&r.unpressButton()}},r.handleTapClick=function(e){if(this.menuButton_){this.menuButton_.unpressButton();var t=this.children();if(!Array.isArray(t))return;var r=t.filter(function(t){return t.el()===e.target})[0];if(!r)return;"CaptionSettingsMenuItem"!==r.name()&&this.menuButton_.focus()}},r.handleKeyDown=function(e){mt.isEventKey(e,"Left")||mt.isEventKey(e,"Down")?(e.preventDefault(),e.stopPropagation(),this.stepForward()):(mt.isEventKey(e,"Right")||mt.isEventKey(e,"Up"))&&(e.preventDefault(),e.stopPropagation(),this.stepBack())},r.stepForward=function(){var e=0;void 0!==this.focusedChild_&&(e=this.focusedChild_+1),this.focus(e)},r.stepBack=function(){var e=0;void 0!==this.focusedChild_&&(e=this.focusedChild_-1),this.focus(e)},r.focus=function(e){void 0===e&&(e=0);var t=this.children().slice();t.length&&t[0].hasClass("vjs-menu-title")&&t.shift(),t.length>0&&(e<0?e=0:e>=t.length&&(e=t.length-1),this.focusedChild_=e,t[e].el_.focus())},t}(gt);gt.registerComponent("Menu",Ki);var Qi=function(e){function t(t,r){var i;void 0===r&&(r={}),(i=e.call(this,t,r)||this).menuButton_=new vi(t,r),i.menuButton_.controlText(i.controlText_),i.menuButton_.el_.setAttribute("aria-haspopup","true");var n=vi.prototype.buildCSSClass();i.menuButton_.el_.className=i.buildCSSClass()+" "+n,i.menuButton_.removeClass("vjs-control"),i.addChild(i.menuButton_),i.update(),i.enabled_=!0;var a=function(e){return i.handleClick(e)};return i.handleMenuKeyUp_=function(e){return i.handleMenuKeyUp(e)},i.on(i.menuButton_,"tap",a),i.on(i.menuButton_,"click",a),i.on(i.menuButton_,"keydown",function(e){return i.handleKeyDown(e)}),i.on(i.menuButton_,"mouseenter",function(){i.addClass("vjs-hover"),i.menu.show(),Fe(document,"keyup",i.handleMenuKeyUp_)}),i.on("mouseleave",function(e){return i.handleMouseLeave(e)}),i.on("keydown",function(e){return i.handleSubmenuKeyDown(e)}),i}yt(t,e);var r=t.prototype;return r.update=function(){var e=this.createMenu();this.menu&&(this.menu.dispose(),this.removeChild(this.menu)),this.menu=e,this.addChild(e),this.buttonPressed_=!1,this.menuButton_.el_.setAttribute("aria-expanded","false"),this.items&&this.items.length<=this.hideThreshold_?this.hide():this.show()},r.createMenu=function(){var e=new Ki(this.player_,{menuButton:this});if(this.hideThreshold_=0,this.options_.title){var t=Y("li",{className:"vjs-menu-title",textContent:ut(this.options_.title),tabIndex:-1}),r=new gt(this.player_,{el:t});e.addItem(r)}if(this.items=this.createItems(),this.items)for(var i=0;i-1&&"showing"===a.mode){r=!1;break}}r!==this.isSelected_&&this.selected(r)},r.handleSelectedLanguageChange=function(e){for(var t=this.player().textTracks(),r=!0,i=0,n=t.length;i-1&&"showing"===a.mode){r=!1;break}}r&&(this.player_.cache_.selectedLanguage={enabled:!1})},t}(en);gt.registerComponent("OffTextTrackMenuItem",tn);var rn=function(e){function t(t,r){return void 0===r&&(r={}),r.tracks=t.textTracks(),e.call(this,t,r)||this}return yt(t,e),t.prototype.createItems=function(e,t){var r;void 0===e&&(e=[]),void 0===t&&(t=en),this.label_&&(r=this.label_+" off"),e.push(new tn(this.player_,{kinds:this.kinds_,kind:this.kind_,label:r})),this.hideThreshold_+=1;var i=this.player_.textTracks();Array.isArray(this.kinds_)||(this.kinds_=[this.kind_]);for(var n=0;n-1){var s=new t(this.player_,{track:a,kinds:this.kinds_,kind:this.kind_,selectable:!0,multiSelectable:!1});s.addClass("vjs-"+a.kind+"-menu-item"),e.push(s)}}return e},t}(Yi);gt.registerComponent("TextTrackButton",rn);var nn=function(e){function t(t,r){var i,n=r.track,a=r.cue,s=t.currentTime();return r.selectable=!0,r.multiSelectable=!1,r.label=a.text,r.selected=a.startTime<=s&&s=0;t--){var r=e[t];if(r.kind===this.kind_)return r}},r.getMenuCaption=function(){return this.track_&&this.track_.label?this.track_.label:this.localize(ut(this.kind_))},r.createMenu=function(){return this.options_.title=this.getMenuCaption(),e.prototype.createMenu.call(this)},r.createItems=function(){var e=[];if(!this.track_)return e;var t=this.track_.cues;if(!t)return e;for(var r=0,i=t.length;r-1&&(i.label_="captions"),i.menuButton_.controlText(ut(i.label_)),i}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-subs-caps-button "+e.prototype.buildCSSClass.call(this)},r.buildWrapperCSSClass=function(){return"vjs-subs-caps-button "+e.prototype.buildWrapperCSSClass.call(this)},r.createItems=function(){var t=[];return this.player().tech_&&this.player().tech_.featuresNativeTextTracks||!this.player().getChild("textTrackSettings")||(t.push(new ln(this.player_,{kind:this.label_})),this.hideThreshold_+=1),t=e.prototype.createItems.call(this,t,cn)},t}(rn);dn.prototype.kinds_=["captions","subtitles"],dn.prototype.controlText_="Subtitles",gt.registerComponent("SubsCapsButton",dn);var hn=function(e){function t(t,r){var i,n=r.track,a=t.audioTracks();r.label=n.label||n.language||"Unknown",r.selected=n.enabled,(i=e.call(this,t,r)||this).track=n,i.addClass("vjs-"+n.kind+"-menu-item");var s=function(){for(var e=arguments.length,t=new Array(e),r=0;r=0;r--)t.push(new fn(this.player(),{rate:e[r]+"x"}));return t},r.updateARIAAttributes=function(){this.el().setAttribute("aria-valuenow",this.player().playbackRate())},r.handleClick=function(e){var t=this.player().playbackRate(),r=this.playbackRates(),i=(r.indexOf(t)+1)%r.length;this.player().playbackRate(r[i])},r.handlePlaybackRateschange=function(e){this.update()},r.playbackRates=function(){var e=this.player();return e.playbackRates&&e.playbackRates()||[]},r.playbackRateSupported=function(){return this.player().tech_&&this.player().tech_.featuresPlaybackRate&&this.playbackRates()&&this.playbackRates().length>0},r.updateVisibility=function(e){this.playbackRateSupported()?this.removeClass("vjs-hidden"):this.addClass("vjs-hidden")},r.updateLabel=function(e){this.playbackRateSupported()&&(this.labelEl_.textContent=this.player().playbackRate()+"x")},t}(Qi);mn.prototype.controlText_="Playback Rate",gt.registerComponent("PlaybackRateMenuButton",mn);var gn=function(e){function t(){return e.apply(this,arguments)||this}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-spacer "+e.prototype.buildCSSClass.call(this)},r.createEl=function(t,r,i){return void 0===t&&(t="div"),void 0===r&&(r={}),void 0===i&&(i={}),r.className||(r.className=this.buildCSSClass()),e.prototype.createEl.call(this,t,r,i)},t}(gt);gt.registerComponent("Spacer",gn);var vn=function(e){function t(){return e.apply(this,arguments)||this}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-custom-control-spacer "+e.prototype.buildCSSClass.call(this)},r.createEl=function(){return e.prototype.createEl.call(this,"div",{className:this.buildCSSClass(),textContent:"\xa0"})},t}(gn);gt.registerComponent("CustomControlSpacer",vn);var yn=function(e){function t(){return e.apply(this,arguments)||this}return yt(t,e),t.prototype.createEl=function(){return e.prototype.createEl.call(this,"div",{className:"vjs-control-bar",dir:"ltr"})},t}(gt);yn.prototype.options_={children:["playToggle","volumePanel","currentTimeDisplay","timeDivider","durationDisplay","progressControl","liveDisplay","seekToLive","remainingTimeDisplay","customControlSpacer","playbackRateMenuButton","chaptersButton","descriptionsButton","subsCapsButton","audioTrackButton","fullscreenToggle"]},"exitPictureInPicture"in document&&yn.prototype.options_.children.splice(yn.prototype.options_.children.length-1,0,"pictureInPictureToggle"),gt.registerComponent("ControlBar",yn);var _n=function(e){function t(t,r){var i;return(i=e.call(this,t,r)||this).on(t,"error",function(e){return i.open(e)}),i}yt(t,e);var r=t.prototype;return r.buildCSSClass=function(){return"vjs-error-display "+e.prototype.buildCSSClass.call(this)},r.content=function(){var e=this.player().error();return e?this.localize(e.message):""},t}(Ot);_n.prototype.options_=m({},Ot.prototype.options_,{pauseOnOpen:!1,fillAlways:!0,temporary:!1,uncloseable:!0}),gt.registerComponent("ErrorDisplay",_n);var bn="vjs-text-track-settings",Tn=["#000","Black"],wn=["#00F","Blue"],Sn=["#0FF","Cyan"],En=["#0F0","Green"],kn=["#F0F","Magenta"],Cn=["#F00","Red"],Pn=["#FFF","White"],xn=["#FF0","Yellow"],In=["1","Opaque"],An=["0.5","Semi-Transparent"],On=["0","Transparent"],Dn={backgroundColor:{selector:".vjs-bg-color > select",id:"captions-background-color-%s",label:"Color",options:[Tn,Pn,Cn,En,wn,xn,kn,Sn]},backgroundOpacity:{selector:".vjs-bg-opacity > select",id:"captions-background-opacity-%s",label:"Transparency",options:[In,An,On]},color:{selector:".vjs-fg-color > select",id:"captions-foreground-color-%s",label:"Color",options:[Pn,Tn,Cn,En,wn,xn,kn,Sn]},edgeStyle:{selector:".vjs-edge-style > select",id:"%s",label:"Text Edge Style",options:[["none","None"],["raised","Raised"],["depressed","Depressed"],["uniform","Uniform"],["dropshadow","Dropshadow"]]},fontFamily:{selector:".vjs-font-family > select",id:"captions-font-family-%s",label:"Font Family",options:[["proportionalSansSerif","Proportional Sans-Serif"],["monospaceSansSerif","Monospace Sans-Serif"],["proportionalSerif","Proportional Serif"],["monospaceSerif","Monospace Serif"],["casual","Casual"],["script","Script"],["small-caps","Small Caps"]]},fontPercent:{selector:".vjs-font-percent > select",id:"captions-font-size-%s",label:"Font Size",options:[["0.50","50%"],["0.75","75%"],["1.00","100%"],["1.25","125%"],["1.50","150%"],["1.75","175%"],["2.00","200%"],["3.00","300%"],["4.00","400%"]],default:2,parser:function(e){return"1.00"===e?null:Number(e)}},textOpacity:{selector:".vjs-text-opacity > select",id:"captions-foreground-opacity-%s",label:"Transparency",options:[In,An]},windowColor:{selector:".vjs-window-color > select",id:"captions-window-color-%s",label:"Color"},windowOpacity:{selector:".vjs-window-opacity > select",id:"captions-window-opacity-%s",label:"Transparency",options:[On,An,In]}};function Ln(e,t){if(t&&(e=t(e)),e&&"none"!==e)return e}Dn.windowColor.options=Dn.backgroundColor.options;var Rn=function(e){function t(t,r){var i;return r.temporary=!1,(i=e.call(this,t,r)||this).updateDisplay=i.updateDisplay.bind(vt(i)),i.fill(),i.hasBeenOpened_=i.hasBeenFilled_=!0,i.endDialog=Y("p",{className:"vjs-control-text",textContent:i.localize("End of dialog window.")}),i.el().appendChild(i.endDialog),i.setDefaults(),void 0===r.persistTextTrackSettings&&(i.options_.persistTextTrackSettings=i.options_.playerOptions.persistTextTrackSettings),i.on(i.$(".vjs-done-button"),"click",function(){i.saveSettings(),i.close()}),i.on(i.$(".vjs-default-button"),"click",function(){i.setDefaults(),i.updateDisplay()}),y(Dn,function(e){i.on(i.$(e.selector),"change",i.updateDisplay)}),i.options_.persistTextTrackSettings&&i.restoreSettings(),i}yt(t,e);var r=t.prototype;return r.dispose=function(){this.endDialog=null,e.prototype.dispose.call(this)},r.createElSelect_=function(e,t,r){var i=this;void 0===t&&(t=""),void 0===r&&(r="label");var n=Dn[e],a=n.id.replace("%s",this.id_),s=[t,a].join(" ").trim();return["<"+r+' id="'+a+'" class="'+("label"===r?"vjs-label":"")+'">',this.localize(n.label),"",'").join("")},r.createElFgColor_=function(){var e="captions-text-legend-"+this.id_;return['
','',this.localize("Text"),"",this.createElSelect_("color",e),'',this.createElSelect_("textOpacity",e),"","
"].join("")},r.createElBgColor_=function(){var e="captions-background-"+this.id_;return['
','',this.localize("Background"),"",this.createElSelect_("backgroundColor",e),'',this.createElSelect_("backgroundOpacity",e),"","
"].join("")},r.createElWinColor_=function(){var e="captions-window-"+this.id_;return['
','',this.localize("Window"),"",this.createElSelect_("windowColor",e),'',this.createElSelect_("windowOpacity",e),"","
"].join("")},r.createElColors_=function(){return Y("div",{className:"vjs-track-settings-colors",innerHTML:[this.createElFgColor_(),this.createElBgColor_(),this.createElWinColor_()].join("")})},r.createElFont_=function(){return Y("div",{className:"vjs-track-settings-font",innerHTML:['
',this.createElSelect_("fontPercent","","legend"),"
",'
',this.createElSelect_("edgeStyle","","legend"),"
",'
',this.createElSelect_("fontFamily","","legend"),"
"].join("")})},r.createElControls_=function(){var e=this.localize("restore all settings to the default values");return Y("div",{className:"vjs-track-settings-controls",innerHTML:['",'"].join("")})},r.content=function(){return[this.createElColors_(),this.createElFont_(),this.createElControls_()]},r.label=function(){return this.localize("Caption Settings Dialog")},r.description=function(){return this.localize("Beginning of dialog window. Escape will cancel and close the window.")},r.buildCSSClass=function(){return e.prototype.buildCSSClass.call(this)+" vjs-text-track-settings"},r.getValues=function(){var e,t,r,i=this;return t=function(e,t,r){var n,a,s=(n=i.$(t.selector),a=t.parser,Ln(n.options[n.options.selectedIndex].value,a));return void 0!==s&&(e[r]=s),e},void 0===(r={})&&(r=0),v(e=Dn).reduce(function(r,i){return t(r,e[i],i)},r)},r.setValues=function(e){var t=this;y(Dn,function(r,i){!function(e,t,r){if(t)for(var i=0;ithis.options_.liveTolerance;this.timeupdateSeen_&&i!==1/0||(a=!1),a!==this.behindLiveEdge_&&(this.behindLiveEdge_=a,this.trigger("liveedgechange"))}},r.handleDurationchange=function(){this.toggleTracking()},r.toggleTracking=function(){this.player_.duration()===1/0&&this.liveWindow()>=this.options_.trackingThreshold?(this.player_.options_.liveui&&this.player_.addClass("vjs-liveui"),this.startTracking()):(this.player_.removeClass("vjs-liveui"),this.stopTracking())},r.startTracking=function(){this.isTracking()||(this.timeupdateSeen_||(this.timeupdateSeen_=this.player_.hasStarted()),this.trackingInterval_=this.setInterval(this.trackLiveHandler_,We),this.trackLive_(),this.on(this.player_,["play","pause"],this.trackLiveHandler_),this.timeupdateSeen_?this.on(this.player_,"seeked",this.handleSeeked_):(this.one(this.player_,"play",this.handlePlay_),this.one(this.player_,"timeupdate",this.handleFirstTimeupdate_)))},r.handleFirstTimeupdate=function(){this.timeupdateSeen_=!0,this.on(this.player_,"seeked",this.handleSeeked_)},r.handleSeeked=function(){var e=Math.abs(this.liveCurrentTime()-this.player_.currentTime());this.seekedBehindLive_=this.nextSeekedFromUser_&&e>2,this.nextSeekedFromUser_=!1,this.trackLive_()},r.handlePlay=function(){this.one(this.player_,"timeupdate",this.seekToLiveEdge_)},r.reset_=function(){this.lastTime_=-1,this.pastSeekEnd_=0,this.lastSeekEnd_=-1,this.behindLiveEdge_=!0,this.timeupdateSeen_=!1,this.seekedBehindLive_=!1,this.nextSeekedFromUser_=!1,this.clearInterval(this.trackingInterval_),this.trackingInterval_=null,this.off(this.player_,["play","pause"],this.trackLiveHandler_),this.off(this.player_,"seeked",this.handleSeeked_),this.off(this.player_,"play",this.handlePlay_),this.off(this.player_,"timeupdate",this.handleFirstTimeupdate_),this.off(this.player_,"timeupdate",this.seekToLiveEdge_)},r.nextSeekedFromUser=function(){this.nextSeekedFromUser_=!0},r.stopTracking=function(){this.isTracking()&&(this.reset_(),this.trigger("liveedgechange"))},r.seekableEnd=function(){for(var e=this.player_.seekable(),t=[],r=e?e.length:0;r--;)t.push(e.end(r));return t.length?t.sort()[t.length-1]:1/0},r.seekableStart=function(){for(var e=this.player_.seekable(),t=[],r=e?e.length:0;r--;)t.push(e.start(r));return t.length?t.sort()[0]:0},r.liveWindow=function(){var e=this.liveCurrentTime();return e===1/0?0:e-this.seekableStart()},r.isLive=function(){return this.isTracking()},r.atLiveEdge=function(){return!this.behindLiveEdge()},r.liveCurrentTime=function(){return this.pastSeekEnd()+this.seekableEnd()},r.pastSeekEnd=function(){var e=this.seekableEnd();return-1!==this.lastSeekEnd_&&e!==this.lastSeekEnd_&&(this.pastSeekEnd_=0),this.lastSeekEnd_=e,this.pastSeekEnd_},r.behindLiveEdge=function(){return this.behindLiveEdge_},r.isTracking=function(){return"number"==typeof this.trackingInterval_},r.seekToLiveEdge=function(){this.seekedBehindLive_=!1,this.atLiveEdge()||(this.nextSeekedFromUser_=!1,this.player_.currentTime(this.liveCurrentTime()))},r.dispose=function(){this.off(document,"visibilitychange",this.handleVisibilityChange_),this.stopTracking(),e.prototype.dispose.call(this)},t}(gt);gt.registerComponent("LiveTracker",Un);var Bn,Fn=function(e){var t=e.el();if(t.hasAttribute("src"))return e.triggerSourceset(t.src),!0;var r=e.$$("source"),i=[],n="";if(!r.length)return!1;for(var a=0;a=2&&n.push("loadeddata"),e.readyState>=3&&n.push("canplay"),e.readyState>=4&&n.push("canplaythrough"),this.ready(function(){n.forEach(function(e){this.trigger(e)},this)})}},r.setScrubbing=function(e){this.isScrubbing_=e},r.scrubbing=function(){return this.isScrubbing_},r.setCurrentTime=function(e){try{this.isScrubbing_&&this.el_.fastSeek&&q?this.el_.fastSeek(e):this.el_.currentTime=e}catch(e){d(e,"Video is not ready. (Video.js)")}},r.duration=function(){var e=this;if(this.el_.duration===1/0&&I&&R&&0===this.el_.currentTime){return this.on("timeupdate",function t(){e.el_.currentTime>0&&(e.el_.duration===1/0&&e.trigger("durationchange"),e.off("timeupdate",t))}),NaN}return this.el_.duration||NaN},r.width=function(){return this.el_.offsetWidth},r.height=function(){return this.el_.offsetHeight},r.proxyWebkitFullscreen_=function(){var e=this;if("webkitDisplayingFullscreen"in this.el_){var t=function(){this.trigger("fullscreenchange",{isFullscreen:!1}),this.el_.controls&&!this.options_.nativeControlsForTouch&&this.controls()&&(this.el_.controls=!1)},r=function(){"webkitPresentationMode"in this.el_&&"picture-in-picture"!==this.el_.webkitPresentationMode&&(this.one("webkitendfullscreen",t),this.trigger("fullscreenchange",{isFullscreen:!0,nativeIOSFullscreen:!0}))};this.on("webkitbeginfullscreen",r),this.on("dispose",function(){e.off("webkitbeginfullscreen",r),e.off("webkitendfullscreen",t)})}},r.supportsFullScreen=function(){if("function"==typeof this.el_.webkitEnterFullScreen){var e=window.navigator&&window.navigator.userAgent||"";if(/Android/.test(e)||!/Chrome|Mac OS X 10.5/.test(e))return!0}return!1},r.enterFullScreen=function(){var e=this.el_;if(e.paused&&e.networkState<=e.HAVE_METADATA)Pt(this.el_.play()),this.setTimeout(function(){e.pause();try{e.webkitEnterFullScreen()}catch(e){this.trigger("fullscreenerror",e)}},0);else try{e.webkitEnterFullScreen()}catch(e){this.trigger("fullscreenerror",e)}},r.exitFullScreen=function(){this.el_.webkitDisplayingFullscreen?this.el_.webkitExitFullScreen():this.trigger("fullscreenerror",new Error("The video is not fullscreen"))},r.requestPictureInPicture=function(){return this.el_.requestPictureInPicture()},r.src=function(e){if(void 0===e)return this.el_.src;this.setSrc(e)},r.reset=function(){t.resetMediaElement(this.el_)},r.currentSrc=function(){return this.currentSource_?this.currentSource_.src:this.el_.currentSrc},r.setControls=function(e){this.el_.controls=!!e},r.addTextTrack=function(t,r,i){return this.featuresNativeTextTracks?this.el_.addTextTrack(t,r,i):e.prototype.addTextTrack.call(this,t,r,i)},r.createRemoteTextTrack=function(t){if(!this.featuresNativeTextTracks)return e.prototype.createRemoteTextTrack.call(this,t);var r=document.createElement("track");return t.kind&&(r.kind=t.kind),t.label&&(r.label=t.label),(t.language||t.srclang)&&(r.srclang=t.language||t.srclang),t.default&&(r.default=t.default),t.id&&(r.id=t.id),t.src&&(r.src=t.src),r},r.addRemoteTextTrack=function(t,r){var i=e.prototype.addRemoteTextTrack.call(this,t,r);return this.featuresNativeTextTracks&&this.el().appendChild(i),i},r.removeRemoteTextTrack=function(t){if(e.prototype.removeRemoteTextTrack.call(this,t),this.featuresNativeTextTracks)for(var r=this.$$("track"),i=r.length;i--;)t!==r[i]&&t!==r[i].track||this.el().removeChild(r[i])},r.getVideoPlaybackQuality=function(){if("function"==typeof this.el().getVideoPlaybackQuality)return this.el().getVideoPlaybackQuality();var e={};return void 0!==this.el().webkitDroppedFrameCount&&void 0!==this.el().webkitDecodedFrameCount&&(e.droppedVideoFrames=this.el().webkitDroppedFrameCount,e.totalVideoFrames=this.el().webkitDecodedFrameCount),window.performance&&"function"==typeof window.performance.now?e.creationTime=window.performance.now():window.performance&&window.performance.timing&&"number"==typeof window.performance.timing.navigationStart&&(e.creationTime=window.Date.now()-window.performance.timing.navigationStart),e},t}(Xr);zn(Wn,"TEST_VID",function(){if(G()){var e=document.createElement("video"),t=document.createElement("track");return t.kind="captions",t.srclang="en",t.label="English",e.appendChild(t),e}}),Wn.isSupported=function(){try{Wn.TEST_VID.volume=.5}catch(e){return!1}return!(!Wn.TEST_VID||!Wn.TEST_VID.canPlayType)},Wn.canPlayType=function(e){return Wn.TEST_VID.canPlayType(e)},Wn.canPlaySource=function(e,t){return Wn.canPlayType(e.type)},Wn.canControlVolume=function(){try{var e=Wn.TEST_VID.volume;Wn.TEST_VID.volume=e/2+.1;var t=e!==Wn.TEST_VID.volume;return t&&H?(window.setTimeout(function(){Wn&&Wn.prototype&&(Wn.prototype.featuresVolumeControl=e!==Wn.TEST_VID.volume)}),!1):t}catch(e){return!1}},Wn.canMuteVolume=function(){try{var e=Wn.TEST_VID.muted;return Wn.TEST_VID.muted=!e,Wn.TEST_VID.muted?oe(Wn.TEST_VID,"muted","muted"):le(Wn.TEST_VID,"muted"),e!==Wn.TEST_VID.muted}catch(e){return!1}},Wn.canControlPlaybackRate=function(){if(I&&R&&M<58)return!1;try{var e=Wn.TEST_VID.playbackRate;return Wn.TEST_VID.playbackRate=e/2+.1,e!==Wn.TEST_VID.playbackRate}catch(e){return!1}},Wn.canOverrideAttributes=function(){try{var e=function(){};Object.defineProperty(document.createElement("video"),"src",{get:e,set:e}),Object.defineProperty(document.createElement("audio"),"src",{get:e,set:e}),Object.defineProperty(document.createElement("video"),"innerHTML",{get:e,set:e}),Object.defineProperty(document.createElement("audio"),"innerHTML",{get:e,set:e})}catch(e){return!1}return!0},Wn.supportsNativeTextTracks=function(){return q||H&&R},Wn.supportsNativeVideoTracks=function(){return!(!Wn.TEST_VID||!Wn.TEST_VID.videoTracks)},Wn.supportsNativeAudioTracks=function(){return!(!Wn.TEST_VID||!Wn.TEST_VID.audioTracks)},Wn.Events=["loadstart","suspend","abort","error","emptied","stalled","loadedmetadata","loadeddata","canplay","canplaythrough","playing","waiting","seeking","seeked","ended","durationchange","timeupdate","progress","play","pause","ratechange","resize","volumechange"],[["featuresMuteControl","canMuteVolume"],["featuresPlaybackRate","canControlPlaybackRate"],["featuresSourceset","canOverrideAttributes"],["featuresNativeTextTracks","supportsNativeTextTracks"],["featuresNativeVideoTracks","supportsNativeVideoTracks"],["featuresNativeAudioTracks","supportsNativeAudioTracks"]].forEach(function(e){var t=e[0],r=e[1];zn(Wn.prototype,t,function(){return Wn[r]()},!0)}),Wn.prototype.featuresVolumeControl=Wn.canControlVolume(),Wn.prototype.movingMediaElementInDOM=!H,Wn.prototype.featuresFullscreenResize=!0,Wn.prototype.featuresProgressEvents=!0,Wn.prototype.featuresTimeupdateEvents=!0,Wn.patchCanPlayType=function(){A>=4&&!D&&!R&&(Bn=Wn.TEST_VID&&Wn.TEST_VID.constructor.prototype.canPlayType,Wn.TEST_VID.constructor.prototype.canPlayType=function(e){return e&&/^application\/(?:x-|vnd\.apple\.)mpegurl/i.test(e)?"maybe":Bn.call(this,e)})},Wn.unpatchCanPlayType=function(){var e=Wn.TEST_VID.constructor.prototype.canPlayType;return Bn&&(Wn.TEST_VID.constructor.prototype.canPlayType=Bn),e},Wn.patchCanPlayType(),Wn.disposeMediaElement=function(e){if(e){for(e.parentNode&&e.parentNode.removeChild(e);e.hasChildNodes();)e.removeChild(e.firstChild);e.removeAttribute("src"),"function"==typeof e.load&&function(){try{e.load()}catch(e){}}()}},Wn.resetMediaElement=function(e){if(e){for(var t=e.querySelectorAll("source"),r=t.length;r--;)e.removeChild(t[r]);e.removeAttribute("src"),"function"==typeof e.load&&function(){try{e.load()}catch(e){}}()}},["muted","defaultMuted","autoplay","controls","loop","playsinline"].forEach(function(e){Wn.prototype[e]=function(){return this.el_[e]||this.el_.hasAttribute(e)}}),["muted","defaultMuted","autoplay","loop","playsinline"].forEach(function(e){Wn.prototype["set"+ut(e)]=function(t){this.el_[e]=t,t?this.el_.setAttribute(e,e):this.el_.removeAttribute(e)}}),["paused","currentTime","buffered","volume","poster","preload","error","seeking","seekable","ended","playbackRate","defaultPlaybackRate","disablePictureInPicture","played","networkState","readyState","videoWidth","videoHeight","crossOrigin"].forEach(function(e){Wn.prototype[e]=function(){return this.el_[e]}}),["volume","src","poster","preload","playbackRate","defaultPlaybackRate","disablePictureInPicture","crossOrigin"].forEach(function(e){Wn.prototype["set"+ut(e)]=function(t){this.el_[e]=t}}),["pause","load","play"].forEach(function(e){Wn.prototype[e]=function(){return this.el_[e]()}}),Xr.withSourceHandlers(Wn),Wn.nativeSourceHandler={},Wn.nativeSourceHandler.canPlayType=function(e){try{return Wn.TEST_VID.canPlayType(e)}catch(e){return""}},Wn.nativeSourceHandler.canHandleSource=function(e,t){if(e.type)return Wn.nativeSourceHandler.canPlayType(e.type);if(e.src){var r=Xt(e.src);return Wn.nativeSourceHandler.canPlayType("video/"+r)}return""},Wn.nativeSourceHandler.handleSource=function(e,t,r){t.setSrc(e.src)},Wn.nativeSourceHandler.dispose=function(){},Wn.registerSourceHandler(Wn.nativeSourceHandler),Xr.registerTech("Html5",Wn);var Gn=["progress","abort","suspend","emptied","stalled","loadedmetadata","loadeddata","timeupdate","resize","volumechange","texttrackchange"],Xn={canplay:"CanPlay",canplaythrough:"CanPlayThrough",playing:"Playing",seeked:"Seeked"},Kn=["tiny","xsmall","small","medium","large","xlarge","huge"],Qn={};Kn.forEach(function(e){var t="x"===e.charAt(0)?"x-"+e.substring(1):e;Qn[e]="vjs-layout-"+t});var Yn={tiny:210,xsmall:320,small:425,medium:768,large:1440,xlarge:2560,huge:1/0},Jn=function(e){function r(i,n,s){var o;if(i.id=i.id||n.id||"vjs_video_"+De(),(n=_(r.getTagSettings(i),n)).initChildren=!1,n.createEl=!1,n.evented=!1,n.reportTouchActivity=!1,!n.language)if("function"==typeof i.closest){var l=i.closest("[lang]");l&&l.getAttribute&&(n.language=l.getAttribute("lang"))}else for(var u=i;u&&1===u.nodeType;){if(ae(u).hasOwnProperty("lang")){n.language=u.getAttribute("lang");break}u=u.parentNode}if((o=e.call(this,null,n,s)||this).boundDocumentFullscreenChange_=function(e){return o.documentFullscreenChange_(e)},o.boundFullWindowOnEscKey_=function(e){return o.fullWindowOnEscKey(e)},o.boundUpdateStyleEl_=function(e){return o.updateStyleEl_(e)},o.boundApplyInitTime_=function(e){return o.applyInitTime_(e)},o.boundUpdateCurrentBreakpoint_=function(e){return o.updateCurrentBreakpoint_(e)},o.boundHandleTechClick_=function(e){return o.handleTechClick_(e)},o.boundHandleTechDoubleClick_=function(e){return o.handleTechDoubleClick_(e)},o.boundHandleTechTouchStart_=function(e){return o.handleTechTouchStart_(e)},o.boundHandleTechTouchMove_=function(e){return o.handleTechTouchMove_(e)},o.boundHandleTechTouchEnd_=function(e){return o.handleTechTouchEnd_(e)},o.boundHandleTechTap_=function(e){return o.handleTechTap_(e)},o.isFullscreen_=!1,o.log=h(o.id_),o.fsApi_=a,o.isPosterFromTech_=!1,o.queuedCallbacks_=[],o.isReady_=!1,o.hasStarted_=!1,o.userActive_=!1,o.debugEnabled_=!1,!o.options_||!o.options_.techOrder||!o.options_.techOrder.length)throw new Error("No techOrder specified. Did you overwrite videojs.options instead of just changing the properties you want to override?");if(o.tag=i,o.tagAttributes=i&&ae(i),o.language(o.options_.language),n.languages){var c={};Object.getOwnPropertyNames(n.languages).forEach(function(e){c[e.toLowerCase()]=n.languages[e]}),o.languages_=c}else o.languages_=r.prototype.options_.languages;o.resetCache_(),o.poster_=n.poster||"",o.controls_=!!n.controls,i.controls=!1,i.removeAttribute("controls"),o.changingSrc_=!1,o.playCallbacks_=[],o.playTerminatedQueue_=[],i.hasAttribute("autoplay")?o.autoplay(!0):o.autoplay(o.options_.autoplay),n.plugins&&Object.keys(n.plugins).forEach(function(e){if("function"!=typeof o[e])throw new Error('plugin "'+e+'" does not exist')}),o.scrubbing_=!1,o.el_=o.createEl(),at(vt(o),{eventBusKey:"el_"}),o.fsApi_.requestFullscreen&&(Fe(document,o.fsApi_.fullscreenchange,o.boundDocumentFullscreenChange_),o.on(o.fsApi_.fullscreenchange,o.boundDocumentFullscreenChange_)),o.fluid_&&o.on(["playerreset","resize"],o.boundUpdateStyleEl_);var d=ct(o.options_);n.plugins&&Object.keys(n.plugins).forEach(function(e){o[e](n.plugins[e])}),n.debug&&o.debug(!0),o.options_.playerOptions=d,o.middleware_=[],o.playbackRates(n.playbackRates),o.initChildren(),o.isAudio("audio"===i.nodeName.toLowerCase()),o.controls()?o.addClass("vjs-controls-enabled"):o.addClass("vjs-controls-disabled"),o.el_.setAttribute("role","region"),o.isAudio()?o.el_.setAttribute("aria-label",o.localize("Audio Player")):o.el_.setAttribute("aria-label",o.localize("Video Player")),o.isAudio()&&o.addClass("vjs-audio"),o.flexNotSupported_()&&o.addClass("vjs-no-flex"),F&&o.addClass("vjs-touch-enabled"),H||o.addClass("vjs-workinghover"),r.players[o.id_]=vt(o);var p=t.split(".")[0];return o.addClass("vjs-v"+p),o.userActive(!0),o.reportUserActivity(),o.one("play",function(e){return o.listenForUserActivity_(e)}),o.on("stageclick",function(e){return o.handleStageClick_(e)}),o.on("keydown",function(e){return o.handleKeyDown(e)}),o.on("languagechange",function(e){return o.handleLanguagechange(e)}),o.breakpoints(o.options_.breakpoints),o.responsive(o.options_.responsive),o}yt(r,e);var n=r.prototype;return n.dispose=function(){var t=this;this.trigger("dispose"),this.off("dispose"),je(document,this.fsApi_.fullscreenchange,this.boundDocumentFullscreenChange_),je(document,"keydown",this.boundFullWindowOnEscKey_),this.styleEl_&&this.styleEl_.parentNode&&(this.styleEl_.parentNode.removeChild(this.styleEl_),this.styleEl_=null),r.players[this.id_]=null,this.tag&&this.tag.player&&(this.tag.player=null),this.el_&&this.el_.player&&(this.el_.player=null),this.tech_&&(this.tech_.dispose(),this.isPosterFromTech_=!1,this.poster_=""),this.playerElIngest_&&(this.playerElIngest_=null),this.tag&&(this.tag=null),Qr[this.id()]=null,fr.names.forEach(function(e){var r=fr[e],i=t[r.getterName]();i&&i.off&&i.off()}),e.prototype.dispose.call(this)},n.createEl=function(){var t,r=this.tag,i=this.playerElIngest_=r.parentNode&&r.parentNode.hasAttribute&&r.parentNode.hasAttribute("data-vjs-player"),n="video-js"===this.tag.tagName.toLowerCase();i?t=this.el_=r.parentNode:n||(t=this.el_=e.prototype.createEl.call(this,"div"));var a=ae(r);if(n){for(t=this.el_=r,r=this.tag=document.createElement("video");t.children.length;)r.appendChild(t.firstChild);ee(t,"video-js")||te(t,"video-js"),t.appendChild(r),i=this.playerElIngest_=t,Object.keys(t).forEach(function(e){try{r[e]=t[e]}catch(e){}})}if(r.setAttribute("tabindex","-1"),a.tabindex="-1",(N||R&&B)&&(r.setAttribute("role","application"),a.role="application"),r.removeAttribute("width"),r.removeAttribute("height"),"width"in a&&delete a.width,"height"in a&&delete a.height,Object.getOwnPropertyNames(a).forEach(function(e){n&&"class"===e||t.setAttribute(e,a[e]),n&&r.setAttribute(e,a[e])}),r.playerId=r.id,r.id+="_html5_api",r.className="vjs-tech",r.player=t.player=this,this.addClass("vjs-paused"),!0!==window.VIDEOJS_NO_DYNAMIC_STYLE){this.styleEl_=Ie("vjs-styles-dimensions");var s=Te(".vjs-styles-defaults"),o=Te("head");o.insertBefore(this.styleEl_,s?s.nextSibling:o.firstChild)}this.fill_=!1,this.fluid_=!1,this.width(this.options_.width),this.height(this.options_.height),this.fill(this.options_.fill),this.fluid(this.options_.fluid),this.aspectRatio(this.options_.aspectRatio),this.crossOrigin(this.options_.crossOrigin||this.options_.crossorigin);for(var l=r.getElementsByTagName("a"),u=0;u0?this.videoWidth()+":"+this.videoHeight():"16:9").split(":"),n=i[1]/i[0];e=void 0!==this.width_?this.width_:void 0!==this.height_?this.height_/n:this.videoWidth()||300,t=void 0!==this.height_?this.height_:e*n,r=/^[^a-zA-Z]/.test(this.id())?"dimensions-"+this.id():this.id()+"-dimensions",this.addClass(r),Ae(this.styleEl_,"\n ."+r+" {\n width: "+e+"px;\n height: "+t+"px;\n }\n\n ."+r+".vjs-fluid {\n padding-top: "+100*n+"%;\n }\n ")}else{var a="number"==typeof this.width_?this.width_:this.options_.width,s="number"==typeof this.height_?this.height_:this.options_.height,o=this.tech_&&this.tech_.el();o&&(a>=0&&(o.width=a),s>=0&&(o.height=s))}},n.loadTech_=function(e,t){var r=this;this.tech_&&this.unloadTech_();var i=ut(e),n=e.charAt(0).toLowerCase()+e.slice(1);"Html5"!==i&&this.tag&&(Xr.getTech("Html5").disposeMediaElement(this.tag),this.tag.player=null,this.tag=null),this.techName_=i,this.isReady_=!1;var a=this.autoplay();("string"==typeof this.autoplay()||!0===this.autoplay()&&this.options_.normalizeAutoplay)&&(a=!1);var s={source:t,autoplay:a,nativeControlsForTouch:this.options_.nativeControlsForTouch,playerId:this.id(),techId:this.id()+"_"+n+"_api",playsinline:this.options_.playsinline,preload:this.options_.preload,loop:this.options_.loop,disablePictureInPicture:this.options_.disablePictureInPicture,muted:this.options_.muted,poster:this.poster(),language:this.language(),playerElIngest:this.playerElIngest_||!1,"vtt.js":this.options_["vtt.js"],canOverridePoster:!!this.options_.techCanOverridePoster,enableSourceset:this.options_.enableSourceset,Promise:this.options_.Promise};fr.names.forEach(function(e){var t=fr[e];s[t.getterName]=r[t.privateName]}),_(s,this.options_[i]),_(s,this.options_[n]),_(s,this.options_[e.toLowerCase()]),this.tag&&(s.tag=this.tag),t&&t.src===this.cache_.src&&this.cache_.currentTime>0&&(s.startTime=this.cache_.currentTime);var o=Xr.getTech(e);if(!o)throw new Error("No Tech named '"+i+"' exists! '"+i+"' should be registered using videojs.registerTech()'");this.tech_=new o(s),this.tech_.ready(Ge(this,this.handleTechReady_),!0),At(this.textTracksJson_||[],this.tech_),Gn.forEach(function(e){r.on(r.tech_,e,function(t){return r["handleTech"+ut(e)+"_"](t)})}),Object.keys(Xn).forEach(function(e){r.on(r.tech_,e,function(t){0===r.tech_.playbackRate()&&r.tech_.seeking()?r.queuedCallbacks_.push({callback:r["handleTech"+Xn[e]+"_"].bind(r),event:t}):r["handleTech"+Xn[e]+"_"](t)})}),this.on(this.tech_,"loadstart",function(e){return r.handleTechLoadStart_(e)}),this.on(this.tech_,"sourceset",function(e){return r.handleTechSourceset_(e)}),this.on(this.tech_,"waiting",function(e){return r.handleTechWaiting_(e)}),this.on(this.tech_,"ended",function(e){return r.handleTechEnded_(e)}),this.on(this.tech_,"seeking",function(e){return r.handleTechSeeking_(e)}),this.on(this.tech_,"play",function(e){return r.handleTechPlay_(e)}),this.on(this.tech_,"firstplay",function(e){return r.handleTechFirstPlay_(e)}),this.on(this.tech_,"pause",function(e){return r.handleTechPause_(e)}),this.on(this.tech_,"durationchange",function(e){return r.handleTechDurationChange_(e)}),this.on(this.tech_,"fullscreenchange",function(e,t){return r.handleTechFullscreenChange_(e,t)}),this.on(this.tech_,"fullscreenerror",function(e,t){return r.handleTechFullscreenError_(e,t)}),this.on(this.tech_,"enterpictureinpicture",function(e){return r.handleTechEnterPictureInPicture_(e)}),this.on(this.tech_,"leavepictureinpicture",function(e){return r.handleTechLeavePictureInPicture_(e)}),this.on(this.tech_,"error",function(e){return r.handleTechError_(e)}),this.on(this.tech_,"posterchange",function(e){return r.handleTechPosterChange_(e)}),this.on(this.tech_,"textdata",function(e){return r.handleTechTextData_(e)}),this.on(this.tech_,"ratechange",function(e){return r.handleTechRateChange_(e)}),this.on(this.tech_,"loadedmetadata",this.boundUpdateStyleEl_),this.usingNativeControls(this.techGet_("controls")),this.controls()&&!this.usingNativeControls()&&this.addTechControlsListeners_(),this.tech_.el().parentNode===this.el()||"Html5"===i&&this.tag||Z(this.tech_.el(),this.el()),this.tag&&(this.tag.player=null,this.tag=null)},n.unloadTech_=function(){var e=this;fr.names.forEach(function(t){var r=fr[t];e[r.privateName]=e[r.getterName]()}),this.textTracksJson_=It(this.tech_),this.isReady_=!1,this.tech_.dispose(),this.tech_=!1,this.isPosterFromTech_&&(this.poster_="",this.trigger("posterchange")),this.isPosterFromTech_=!1},n.tech=function(e){return void 0===e&&d.warn("Using the tech directly can be dangerous. I hope you know what you're doing.\nSee https://github.com/videojs/video.js/issues/2617 for more info.\n"),this.tech_},n.addTechControlsListeners_=function(){this.removeTechControlsListeners_(),this.on(this.tech_,"click",this.boundHandleTechClick_),this.on(this.tech_,"dblclick",this.boundHandleTechDoubleClick_),this.on(this.tech_,"touchstart",this.boundHandleTechTouchStart_),this.on(this.tech_,"touchmove",this.boundHandleTechTouchMove_),this.on(this.tech_,"touchend",this.boundHandleTechTouchEnd_),this.on(this.tech_,"tap",this.boundHandleTechTap_)},n.removeTechControlsListeners_=function(){this.off(this.tech_,"tap",this.boundHandleTechTap_),this.off(this.tech_,"touchstart",this.boundHandleTechTouchStart_),this.off(this.tech_,"touchmove",this.boundHandleTechTouchMove_),this.off(this.tech_,"touchend",this.boundHandleTechTouchEnd_),this.off(this.tech_,"click",this.boundHandleTechClick_),this.off(this.tech_,"dblclick",this.boundHandleTechDoubleClick_)},n.handleTechReady_=function(){this.triggerReady(),this.cache_.volume&&this.techCall_("setVolume",this.cache_.volume),this.handleTechPosterChange_(),this.handleTechDurationChange_()},n.handleTechLoadStart_=function(){this.removeClass("vjs-ended"),this.removeClass("vjs-seeking"),this.error(null),this.handleTechDurationChange_(),this.paused()?(this.hasStarted(!1),this.trigger("loadstart")):(this.trigger("loadstart"),this.trigger("firstplay")),this.manualAutoplay_(!0===this.autoplay()&&this.options_.normalizeAutoplay?"play":this.autoplay())},n.manualAutoplay_=function(e){var t=this;if(this.tech_&&"string"==typeof e){var r,i=function(){var e=t.muted();t.muted(!0);var r=function(){t.muted(e)};t.playTerminatedQueue_.push(r);var i=t.play();if(Ct(i))return i.catch(function(e){throw r(),new Error("Rejection at manualAutoplay. Restoring muted value. "+(e||""))})};if("any"!==e||this.muted()?r="muted"!==e||this.muted()?this.play():i():Ct(r=this.play())&&(r=r.catch(i)),Ct(r))return r.then(function(){t.trigger({type:"autoplay-success",autoplay:e})}).catch(function(){t.trigger({type:"autoplay-failure",autoplay:e})})}},n.updateSourceCaches_=function(e){void 0===e&&(e="");var t=e,r="";"string"!=typeof t&&(t=e.src,r=e.type),this.cache_.source=this.cache_.source||{},this.cache_.sources=this.cache_.sources||[],t&&!r&&(r=function(e,t){if(!t)return"";if(e.cache_.source.src===t&&e.cache_.source.type)return e.cache_.source.type;var r=e.cache_.sources.filter(function(e){return e.src===t});if(r.length)return r[0].type;for(var i=e.$$("source"),n=0;n0&&0===this.cache_.lastPlaybackRate&&(this.queuedCallbacks_.forEach(function(e){return e.callback(e.event)}),this.queuedCallbacks_=[]),this.cache_.lastPlaybackRate=this.tech_.playbackRate(),this.trigger("ratechange")},n.handleTechWaiting_=function(){var e=this;this.addClass("vjs-waiting"),this.trigger("waiting");var t=this.currentTime();this.on("timeupdate",function r(){t!==e.currentTime()&&(e.removeClass("vjs-waiting"),e.off("timeupdate",r))})},n.handleTechCanPlay_=function(){this.removeClass("vjs-waiting"),this.trigger("canplay")},n.handleTechCanPlayThrough_=function(){this.removeClass("vjs-waiting"),this.trigger("canplaythrough")},n.handleTechPlaying_=function(){this.removeClass("vjs-waiting"),this.trigger("playing")},n.handleTechSeeking_=function(){this.addClass("vjs-seeking"),this.trigger("seeking")},n.handleTechSeeked_=function(){this.removeClass("vjs-seeking"),this.removeClass("vjs-ended"),this.trigger("seeked")},n.handleTechFirstPlay_=function(){this.options_.starttime&&(d.warn("Passing the `starttime` option to the player will be deprecated in 6.0"),this.currentTime(this.options_.starttime)),this.addClass("vjs-has-started"),this.trigger("firstplay")},n.handleTechPause_=function(){this.removeClass("vjs-playing"),this.addClass("vjs-paused"),this.trigger("pause")},n.handleTechEnded_=function(){this.addClass("vjs-ended"),this.removeClass("vjs-waiting"),this.options_.loop?(this.currentTime(0),this.play()):this.paused()||this.pause(),this.trigger("ended")},n.handleTechDurationChange_=function(){this.duration(this.techGet_("duration"))},n.handleTechClick_=function(e){this.controls_&&(void 0!==this.options_&&void 0!==this.options_.userActions&&void 0!==this.options_.userActions.click&&!1===this.options_.userActions.click||(void 0!==this.options_&&void 0!==this.options_.userActions&&"function"==typeof this.options_.userActions.click?this.options_.userActions.click.call(this,e):this.paused()?Pt(this.play()):this.pause()))},n.handleTechDoubleClick_=function(e){this.controls_&&(Array.prototype.some.call(this.$$(".vjs-control-bar, .vjs-modal-dialog"),function(t){return t.contains(e.target)})||void 0!==this.options_&&void 0!==this.options_.userActions&&void 0!==this.options_.userActions.doubleClick&&!1===this.options_.userActions.doubleClick||(void 0!==this.options_&&void 0!==this.options_.userActions&&"function"==typeof this.options_.userActions.doubleClick?this.options_.userActions.doubleClick.call(this,e):this.isFullscreen()?this.exitFullscreen():this.requestFullscreen()))},n.handleTechTap_=function(){this.userActive(!this.userActive())},n.handleTechTouchStart_=function(){this.userWasActive=this.userActive()},n.handleTechTouchMove_=function(){this.userWasActive&&this.reportUserActivity()},n.handleTechTouchEnd_=function(e){e.cancelable&&e.preventDefault()},n.handleStageClick_=function(){this.reportUserActivity()},n.toggleFullscreenClass_=function(){this.isFullscreen()?this.addClass("vjs-fullscreen"):this.removeClass("vjs-fullscreen")},n.documentFullscreenChange_=function(e){var t=e.target.player;if(!t||t===this){var r=this.el(),i=document[this.fsApi_.fullscreenElement]===r;!i&&r.matches?i=r.matches(":"+this.fsApi_.fullscreen):!i&&r.msMatchesSelector&&(i=r.msMatchesSelector(":"+this.fsApi_.fullscreen)),this.isFullscreen(i)}},n.handleTechFullscreenChange_=function(e,t){var r=this;t&&(t.nativeIOSFullscreen&&(this.addClass("vjs-ios-native-fs"),this.tech_.one("webkitendfullscreen",function(){r.removeClass("vjs-ios-native-fs")})),this.isFullscreen(t.isFullscreen))},n.handleTechFullscreenError_=function(e,t){this.trigger("fullscreenerror",t)},n.togglePictureInPictureClass_=function(){this.isInPictureInPicture()?this.addClass("vjs-picture-in-picture"):this.removeClass("vjs-picture-in-picture")},n.handleTechEnterPictureInPicture_=function(e){this.isInPictureInPicture(!0)},n.handleTechLeavePictureInPicture_=function(e){this.isInPictureInPicture(!1)},n.handleTechError_=function(){var e=this.tech_.error();this.error(e)},n.handleTechTextData_=function(){var e=null;arguments.length>1&&(e=arguments[1]),this.trigger("textdata",e)},n.getCache=function(){return this.cache_},n.resetCache_=function(){this.cache_={currentTime:0,initTime:0,inactivityTimeout:this.options_.inactivityTimeout,duration:NaN,lastVolume:1,lastPlaybackRate:this.defaultPlaybackRate(),media:null,src:"",source:{},sources:[],playbackRates:[],volume:1}},n.techCall_=function(e,t){this.ready(function(){if(e in ti)return function(e,t,r,i){return t[r](e.reduce(ii(r),i))}(this.middleware_,this.tech_,e,t);if(e in ri)return Zr(this.middleware_,this.tech_,e,t);try{this.tech_&&this.tech_[e](t)}catch(e){throw d(e),e}},!0)},n.techGet_=function(e){if(this.tech_&&this.tech_.isReady_){if(e in ei)return function(e,t,r){return e.reduceRight(ii(r),t[r]())}(this.middleware_,this.tech_,e);if(e in ri)return Zr(this.middleware_,this.tech_,e);try{return this.tech_[e]()}catch(t){if(void 0===this.tech_[e])throw d("Video.js: "+e+" method not defined for "+this.techName_+" playback technology.",t),t;if("TypeError"===t.name)throw d("Video.js: "+e+" unavailable on "+this.techName_+" playback technology element.",t),this.tech_.isReady_=!1,t;throw d(t),t}}},n.play=function(){var e=this,t=this.options_.Promise||window.Promise;return t?new t(function(t){e.play_(t)}):this.play_()},n.play_=function(e){var t=this;void 0===e&&(e=Pt),this.playCallbacks_.push(e);var r=Boolean(!this.changingSrc_&&(this.src()||this.currentSrc()));if(this.waitToPlay_&&(this.off(["ready","loadstart"],this.waitToPlay_),this.waitToPlay_=null),!this.isReady_||!r)return this.waitToPlay_=function(e){t.play_()},this.one(["ready","loadstart"],this.waitToPlay_),void(r||!q&&!H||this.load());var i=this.techGet_("play");null===i?this.runPlayTerminatedQueue_():this.runPlayCallbacks_(i)},n.runPlayTerminatedQueue_=function(){var e=this.playTerminatedQueue_.slice(0);this.playTerminatedQueue_=[],e.forEach(function(e){e()})},n.runPlayCallbacks_=function(e){var t=this.playCallbacks_.slice(0);this.playCallbacks_=[],this.playTerminatedQueue_=[],t.forEach(function(t){t(e)})},n.pause=function(){this.techCall_("pause")},n.paused=function(){return!1!==this.techGet_("paused")},n.played=function(){return this.techGet_("played")||Tt(0,0)},n.scrubbing=function(e){if(void 0===e)return this.scrubbing_;this.scrubbing_=!!e,this.techCall_("setScrubbing",this.scrubbing_),e?this.addClass("vjs-scrubbing"):this.removeClass("vjs-scrubbing")},n.currentTime=function(e){return void 0!==e?(e<0&&(e=0),this.isReady_&&!this.changingSrc_&&this.tech_&&this.tech_.isReady_?(this.techCall_("setCurrentTime",e),void(this.cache_.initTime=0)):(this.cache_.initTime=e,this.off("canplay",this.boundApplyInitTime_),void this.one("canplay",this.boundApplyInitTime_))):(this.cache_.currentTime=this.techGet_("currentTime")||0,this.cache_.currentTime)},n.applyInitTime_=function(){this.currentTime(this.cache_.initTime)},n.duration=function(e){if(void 0===e)return void 0!==this.cache_.duration?this.cache_.duration:NaN;(e=parseFloat(e))<0&&(e=1/0),e!==this.cache_.duration&&(this.cache_.duration=e,e===1/0?this.addClass("vjs-live"):this.removeClass("vjs-live"),isNaN(e)||this.trigger("durationchange"))},n.remainingTime=function(){return this.duration()-this.currentTime()},n.remainingTimeDisplay=function(){return Math.floor(this.duration())-Math.floor(this.currentTime())},n.buffered=function(){var e=this.techGet_("buffered");return e&&e.length||(e=Tt(0,0)),e},n.bufferedPercent=function(){return wt(this.buffered(),this.duration())},n.bufferedEnd=function(){var e=this.buffered(),t=this.duration(),r=e.end(e.length-1);return r>t&&(r=t),r},n.volume=function(e){var t;return void 0!==e?(t=Math.max(0,Math.min(1,parseFloat(e))),this.cache_.volume=t,this.techCall_("setVolume",t),void(t>0&&this.lastVolume_(t))):(t=parseFloat(this.techGet_("volume")),isNaN(t)?1:t)},n.muted=function(e){if(void 0===e)return this.techGet_("muted")||!1;this.techCall_("setMuted",e)},n.defaultMuted=function(e){return void 0!==e?this.techCall_("setDefaultMuted",e):this.techGet_("defaultMuted")||!1},n.lastVolume_=function(e){if(void 0===e||0===e)return this.cache_.lastVolume;this.cache_.lastVolume=e},n.supportsFullScreen=function(){return this.techGet_("supportsFullScreen")||!1},n.isFullscreen=function(e){if(void 0!==e){var t=this.isFullscreen_;return this.isFullscreen_=Boolean(e),this.isFullscreen_!==t&&this.fsApi_.prefixed&&this.trigger("fullscreenchange"),void this.toggleFullscreenClass_()}return this.isFullscreen_},n.requestFullscreen=function(e){var t=this.options_.Promise||window.Promise;if(t){var r=this;return new t(function(t,i){function n(){r.off("fullscreenerror",s),r.off("fullscreenchange",a)}function a(){n(),t()}function s(e,t){n(),i(t)}r.one("fullscreenchange",a),r.one("fullscreenerror",s);var o=r.requestFullscreenHelper_(e);o&&(o.then(n,n),o.then(t,i))})}return this.requestFullscreenHelper_()},n.requestFullscreenHelper_=function(e){var t,r=this;if(this.fsApi_.prefixed||(t=this.options_.fullscreen&&this.options_.fullscreen.options||{},void 0!==e&&(t=e)),this.fsApi_.requestFullscreen){var i=this.el_[this.fsApi_.requestFullscreen](t);return i&&i.then(function(){return r.isFullscreen(!0)},function(){return r.isFullscreen(!1)}),i}this.tech_.supportsFullScreen()&&!0==!this.options_.preferFullWindow?this.techCall_("enterFullScreen"):this.enterFullWindow()},n.exitFullscreen=function(){var e=this.options_.Promise||window.Promise;if(e){var t=this;return new e(function(e,r){function i(){t.off("fullscreenerror",a),t.off("fullscreenchange",n)}function n(){i(),e()}function a(e,t){i(),r(t)}t.one("fullscreenchange",n),t.one("fullscreenerror",a);var s=t.exitFullscreenHelper_();s&&(s.then(i,i),s.then(e,r))})}return this.exitFullscreenHelper_()},n.exitFullscreenHelper_=function(){var e=this;if(this.fsApi_.requestFullscreen){var t=document[this.fsApi_.exitFullscreen]();return t&&Pt(t.then(function(){return e.isFullscreen(!1)})),t}this.tech_.supportsFullScreen()&&!0==!this.options_.preferFullWindow?this.techCall_("exitFullScreen"):this.exitFullWindow()},n.enterFullWindow=function(){this.isFullscreen(!0),this.isFullWindow=!0,this.docOrigOverflow=document.documentElement.style.overflow,Fe(document,"keydown",this.boundFullWindowOnEscKey_),document.documentElement.style.overflow="hidden",te(document.body,"vjs-full-window"),this.trigger("enterFullWindow")},n.fullWindowOnEscKey=function(e){mt.isEventKey(e,"Esc")&&!0===this.isFullscreen()&&(this.isFullWindow?this.exitFullWindow():this.exitFullscreen())},n.exitFullWindow=function(){this.isFullscreen(!1),this.isFullWindow=!1,je(document,"keydown",this.boundFullWindowOnEscKey_),document.documentElement.style.overflow=this.docOrigOverflow,re(document.body,"vjs-full-window"),this.trigger("exitFullWindow")},n.disablePictureInPicture=function(e){if(void 0===e)return this.techGet_("disablePictureInPicture");this.techCall_("setDisablePictureInPicture",e),this.options_.disablePictureInPicture=e,this.trigger("disablepictureinpicturechanged")},n.isInPictureInPicture=function(e){return void 0!==e?(this.isInPictureInPicture_=!!e,void this.togglePictureInPictureClass_()):!!this.isInPictureInPicture_},n.requestPictureInPicture=function(){if("pictureInPictureEnabled"in document&&!1===this.disablePictureInPicture())return this.techGet_("requestPictureInPicture")},n.exitPictureInPicture=function(){if("pictureInPictureEnabled"in document)return document.exitPictureInPicture()},n.handleKeyDown=function(e){var t=this.options_.userActions;if(t&&t.hotkeys){(function(e){var t=e.tagName.toLowerCase();if(e.isContentEditable)return!0;if("input"===t)return-1===["button","checkbox","hidden","radio","reset","submit"].indexOf(e.type);return-1!==["textarea"].indexOf(t)})(this.el_.ownerDocument.activeElement)||("function"==typeof t.hotkeys?t.hotkeys.call(this,e):this.handleHotkeys(e))}},n.handleHotkeys=function(e){var t=this.options_.userActions?this.options_.userActions.hotkeys:{},r=t.fullscreenKey,i=void 0===r?function(e){return mt.isEventKey(e,"f")}:r,n=t.muteKey,a=void 0===n?function(e){return mt.isEventKey(e,"m")}:n,s=t.playPauseKey,o=void 0===s?function(e){return mt.isEventKey(e,"k")||mt.isEventKey(e,"Space")}:s;if(i.call(this,e)){e.preventDefault(),e.stopPropagation();var l=gt.getComponent("FullscreenToggle");!1!==document[this.fsApi_.fullscreenEnabled]&&l.prototype.handleClick.call(this,e)}else if(a.call(this,e)){e.preventDefault(),e.stopPropagation(),gt.getComponent("MuteToggle").prototype.handleClick.call(this,e)}else if(o.call(this,e)){e.preventDefault(),e.stopPropagation(),gt.getComponent("PlayToggle").prototype.handleClick.call(this,e)}},n.canPlayType=function(e){for(var t,r=0,i=this.options_.techOrder;r1?r.handleSrc_(i.slice(1)):(r.changingSrc_=!1,r.setTimeout(function(){this.error({code:4,message:this.localize(this.options_.notSupportedMessage)})},0),void r.triggerReady());a=n,s=r.tech_,a.forEach(function(e){return e.setTech&&e.setTech(s)})}),this.options_.retryOnError&&i.length>1){var n=function(){r.error(null),r.handleSrc_(i.slice(1),!0)},a=function(){r.off("error",n)};this.one("error",n),this.one("playing",a),this.resetRetryOnError_=function(){r.off("error",n),r.off("playing",a)}}}else this.setTimeout(function(){this.error({code:4,message:this.localize(this.options_.notSupportedMessage)})},0)},n.src=function(e){return this.handleSrc_(e,!1)},n.src_=function(e){var t,r,i=this,n=this.selectSource([e]);return!n||(t=n.tech,r=this.techName_,ut(t)!==ut(r)?(this.changingSrc_=!0,this.loadTech_(n.tech,n.source),this.tech_.ready(function(){i.changingSrc_=!1}),!1):(this.ready(function(){this.tech_.constructor.prototype.hasOwnProperty("setSource")?this.techCall_("setSource",e):this.techCall_("src",e.src),this.changingSrc_=!1},!0),!1))},n.load=function(){this.techCall_("load")},n.reset=function(){var e=this,t=this.options_.Promise||window.Promise;this.paused()||!t?this.doReset_():Pt(this.play().then(function(){return e.doReset_()}))},n.doReset_=function(){this.tech_&&this.tech_.clearTracks("text"),this.resetCache_(),this.poster(""),this.loadTech_(this.options_.techOrder[0],null),this.techCall_("reset"),this.resetControlBarUI_(),Ye(this)&&this.trigger("playerreset")},n.resetControlBarUI_=function(){this.resetProgressBar_(),this.resetPlaybackRate_(),this.resetVolumeBar_()},n.resetProgressBar_=function(){this.currentTime(0);var e=this.controlBar,t=e.durationDisplay,r=e.remainingTimeDisplay;t&&t.updateContent(),r&&r.updateContent()},n.resetPlaybackRate_=function(){this.playbackRate(this.defaultPlaybackRate()),this.handleTechRateChange_()},n.resetVolumeBar_=function(){this.volume(1),this.trigger("volumechange")},n.currentSources=function(){var e=this.currentSource(),t=[];return 0!==Object.keys(e).length&&t.push(e),this.cache_.sources||t},n.currentSource=function(){return this.cache_.source||{}},n.currentSrc=function(){return this.currentSource()&&this.currentSource().src||""},n.currentType=function(){return this.currentSource()&&this.currentSource().type||""},n.preload=function(e){return void 0!==e?(this.techCall_("setPreload",e),void(this.options_.preload=e)):this.techGet_("preload")},n.autoplay=function(e){if(void 0===e)return this.options_.autoplay||!1;var t;"string"==typeof e&&/(any|play|muted)/.test(e)||!0===e&&this.options_.normalizeAutoplay?(this.options_.autoplay=e,this.manualAutoplay_("string"==typeof e?e:"play"),t=!1):this.options_.autoplay=!!e,t=void 0===t?this.options_.autoplay:t,this.tech_&&this.techCall_("setAutoplay",t)},n.playsinline=function(e){return void 0!==e?(this.techCall_("setPlaysinline",e),this.options_.playsinline=e,this):this.techGet_("playsinline")},n.loop=function(e){return void 0!==e?(this.techCall_("setLoop",e),void(this.options_.loop=e)):this.techGet_("loop")},n.poster=function(e){if(void 0===e)return this.poster_;e||(e=""),e!==this.poster_&&(this.poster_=e,this.techCall_("setPoster",e),this.isPosterFromTech_=!1,this.trigger("posterchange"))},n.handleTechPosterChange_=function(){if((!this.poster_||this.options_.techCanOverridePoster)&&this.tech_&&this.tech_.poster){var e=this.tech_.poster()||"";e!==this.poster_&&(this.poster_=e,this.isPosterFromTech_=!0,this.trigger("posterchange"))}},n.controls=function(e){if(void 0===e)return!!this.controls_;e=!!e,this.controls_!==e&&(this.controls_=e,this.usingNativeControls()&&this.techCall_("setControls",e),this.controls_?(this.removeClass("vjs-controls-disabled"),this.addClass("vjs-controls-enabled"),this.trigger("controlsenabled"),this.usingNativeControls()||this.addTechControlsListeners_()):(this.removeClass("vjs-controls-enabled"),this.addClass("vjs-controls-disabled"),this.trigger("controlsdisabled"),this.usingNativeControls()||this.removeTechControlsListeners_()))},n.usingNativeControls=function(e){if(void 0===e)return!!this.usingNativeControls_;e=!!e,this.usingNativeControls_!==e&&(this.usingNativeControls_=e,this.usingNativeControls_?(this.addClass("vjs-using-native-controls"),this.trigger("usingnativecontrols")):(this.removeClass("vjs-using-native-controls"),this.trigger("usingcustomcontrols")))},n.error=function(e){var t=this;if(void 0===e)return this.error_||null;if(i("beforeerror").forEach(function(r){var i=r(t,e);b(i)&&!Array.isArray(i)||"string"==typeof i||"number"==typeof i||null===i?e=i:t.log.error("please return a value that MediaError expects in beforeerror hooks")}),this.options_.suppressNotSupportedError&&e&&4===e.code){var r=function(){this.error(e)};return this.options_.suppressNotSupportedError=!1,this.any(["click","touchstart"],r),void this.one("loadstart",function(){this.off(["click","touchstart"],r)})}if(null===e)return this.error_=e,this.removeClass("vjs-error"),void(this.errorDisplay&&this.errorDisplay.close());this.error_=new St(e),this.addClass("vjs-error"),d.error("(CODE:"+this.error_.code+" "+St.errorTypes[this.error_.code]+")",this.error_.message,this.error_),this.trigger("error"),i("error").forEach(function(e){return e(t,t.error_)})},n.reportUserActivity=function(e){this.userActivity_=!0},n.userActive=function(e){if(void 0===e)return this.userActive_;if((e=!!e)!==this.userActive_){if(this.userActive_=e,this.userActive_)return this.userActivity_=!0,this.removeClass("vjs-user-inactive"),this.addClass("vjs-user-active"),void this.trigger("useractive");this.tech_&&this.tech_.one("mousemove",function(e){e.stopPropagation(),e.preventDefault()}),this.userActivity_=!1,this.removeClass("vjs-user-active"),this.addClass("vjs-user-inactive"),this.trigger("userinactive")}},n.listenForUserActivity_=function(){var e,t,r,i=Ge(this,this.reportUserActivity),n=function(t){i(),this.clearInterval(e)};this.on("mousedown",function(){i(),this.clearInterval(e),e=this.setInterval(i,250)}),this.on("mousemove",function(e){e.screenX===t&&e.screenY===r||(t=e.screenX,r=e.screenY,i())}),this.on("mouseup",n),this.on("mouseleave",n);var a,s=this.getChild("controlBar");!s||H||I||(s.on("mouseenter",function(e){0!==this.player().options_.inactivityTimeout&&(this.player().cache_.inactivityTimeout=this.player().options_.inactivityTimeout),this.player().options_.inactivityTimeout=0}),s.on("mouseleave",function(e){this.player().options_.inactivityTimeout=this.player().cache_.inactivityTimeout})),this.on("keydown",i),this.on("keyup",i),this.setInterval(function(){if(this.userActivity_){this.userActivity_=!1,this.userActive(!0),this.clearTimeout(a);var e=this.options_.inactivityTimeout;e<=0||(a=this.setTimeout(function(){this.userActivity_||this.userActive(!1)},e))}},250)},n.playbackRate=function(e){if(void 0===e)return this.tech_&&this.tech_.featuresPlaybackRate?this.cache_.lastPlaybackRate||this.techGet_("playbackRate"):1;this.techCall_("setPlaybackRate",e)},n.defaultPlaybackRate=function(e){return void 0!==e?this.techCall_("setDefaultPlaybackRate",e):this.tech_&&this.tech_.featuresPlaybackRate?this.techGet_("defaultPlaybackRate"):1},n.isAudio=function(e){if(void 0===e)return!!this.isAudio_;this.isAudio_=!!e},n.addTextTrack=function(e,t,r){if(this.tech_)return this.tech_.addTextTrack(e,t,r)},n.addRemoteTextTrack=function(e,t){if(this.tech_)return this.tech_.addRemoteTextTrack(e,t)},n.removeRemoteTextTrack=function(e){void 0===e&&(e={});var t=e.track;if(t||(t=e),this.tech_)return this.tech_.removeRemoteTextTrack(t)},n.getVideoPlaybackQuality=function(){return this.techGet_("getVideoPlaybackQuality")},n.videoWidth=function(){return this.tech_&&this.tech_.videoWidth&&this.tech_.videoWidth()||0},n.videoHeight=function(){return this.tech_&&this.tech_.videoHeight&&this.tech_.videoHeight()||0},n.language=function(e){if(void 0===e)return this.language_;this.language_!==String(e).toLowerCase()&&(this.language_=String(e).toLowerCase(),Ye(this)&&this.trigger("languagechange"))},n.languages=function(){return ct(r.prototype.options_.languages,this.languages_)},n.toJSON=function(){var e=ct(this.options_),t=e.tracks;e.tracks=[];for(var r=0;r-1},t.trigger=function(e){var t=this.listeners[e];if(t)if(2===arguments.length)for(var r=t.length,i=0;i-1;t=this.buffer.indexOf("\n"))this.trigger("data",this.buffer.substring(0,t)),this.buffer=this.buffer.substring(t+1)},t}(_a),wa=String.fromCharCode(9),Sa=function(e){var t=/([0-9.]*)?@?([0-9.]*)?/.exec(e||""),r={};return t[1]&&(r.length=parseInt(t[1],10)),t[2]&&(r.offset=parseInt(t[2],10)),r},Ea=function(e){for(var t,r=e.split(new RegExp('(?:^|,)((?:[^=]*)=(?:"[^"]*"|[^,]*))')),i={},n=r.length;n--;)""!==r[n]&&((t=/([^=]*)=(.*)/.exec(r[n]).slice(1))[0]=t[0].replace(/^\s+|\s+$/g,""),t[1]=t[1].replace(/^\s+|\s+$/g,""),t[1]=t[1].replace(/^['"](.*)['"]$/g,"$1"),i[t[0]]=t[1]);return i},ka=function(e){function t(){var t;return(t=e.call(this)||this).customParsers=[],t.tagMappers=[],t}yt(t,e);var r=t.prototype;return r.push=function(e){var t,r,i=this;0!==(e=e.trim()).length&&("#"===e[0]?this.tagMappers.reduce(function(t,r){var i=r(e);return i===e?t:t.concat([i])},[e]).forEach(function(e){for(var n=0;n0&&(s.duration=e.duration),0===e.duration&&(s.duration=.01,this.trigger("info",{message:"updating zero segment duration to a small value"})),this.manifest.segments=a},key:function(){if(e.attributes)if("NONE"!==e.attributes.METHOD)if(e.attributes.URI){if("com.apple.streamingkeydelivery"===e.attributes.KEYFORMAT)return this.manifest.contentProtection=this.manifest.contentProtection||{},void(this.manifest.contentProtection["com.apple.fps.1_0"]={attributes:e.attributes});if("urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed"===e.attributes.KEYFORMAT){return-1===["SAMPLE-AES","SAMPLE-AES-CTR","SAMPLE-AES-CENC"].indexOf(e.attributes.METHOD)?void this.trigger("warn",{message:"invalid key method provided for Widevine"}):("SAMPLE-AES-CENC"===e.attributes.METHOD&&this.trigger("warn",{message:"SAMPLE-AES-CENC is deprecated, please use SAMPLE-AES-CTR instead"}),"data:text/plain;base64,"!==e.attributes.URI.substring(0,23)?void this.trigger("warn",{message:"invalid key URI provided for Widevine"}):e.attributes.KEYID&&"0x"===e.attributes.KEYID.substring(0,2)?(this.manifest.contentProtection=this.manifest.contentProtection||{},void(this.manifest.contentProtection["com.widevine.alpha"]={attributes:{schemeIdUri:e.attributes.KEYFORMAT,keyId:e.attributes.KEYID.substring(2)},pssh:ba(e.attributes.URI.split(",")[1])})):void this.trigger("warn",{message:"invalid key ID provided for Widevine"}))}e.attributes.METHOD||this.trigger("warn",{message:"defaulting key method to AES-128"}),i={method:e.attributes.METHOD||"AES-128",uri:e.attributes.URI},void 0!==e.attributes.IV&&(i.iv=e.attributes.IV)}else this.trigger("warn",{message:"ignoring key declaration without URI"});else i=null;else this.trigger("warn",{message:"ignoring key declaration without attribute list"})},"media-sequence":function(){isFinite(e.number)?this.manifest.mediaSequence=e.number:this.trigger("warn",{message:"ignoring invalid media sequence: "+e.number})},"discontinuity-sequence":function(){isFinite(e.number)?(this.manifest.discontinuitySequence=e.number,c=e.number):this.trigger("warn",{message:"ignoring invalid discontinuity sequence: "+e.number})},"playlist-type":function(){/VOD|EVENT/.test(e.playlistType)?this.manifest.playlistType=e.playlistType:this.trigger("warn",{message:"ignoring unknown playlist type: "+e.playlist})},map:function(){r={},e.uri&&(r.uri=e.uri),e.byterange&&(r.byterange=e.byterange),i&&(r.key=i)},"stream-inf":function(){this.manifest.playlists=a,this.manifest.mediaGroups=this.manifest.mediaGroups||u,e.attributes?(s.attributes||(s.attributes={}),m(s.attributes,e.attributes)):this.trigger("warn",{message:"ignoring empty stream-inf attributes"})},media:function(){if(this.manifest.mediaGroups=this.manifest.mediaGroups||u,e.attributes&&e.attributes.TYPE&&e.attributes["GROUP-ID"]&&e.attributes.NAME){var r=this.manifest.mediaGroups[e.attributes.TYPE];r[e.attributes["GROUP-ID"]]=r[e.attributes["GROUP-ID"]]||{},t=r[e.attributes["GROUP-ID"]],(p={default:/yes/i.test(e.attributes.DEFAULT)}).default?p.autoselect=!0:p.autoselect=/yes/i.test(e.attributes.AUTOSELECT),e.attributes.LANGUAGE&&(p.language=e.attributes.LANGUAGE),e.attributes.URI&&(p.uri=e.attributes.URI),e.attributes["INSTREAM-ID"]&&(p.instreamId=e.attributes["INSTREAM-ID"]),e.attributes.CHARACTERISTICS&&(p.characteristics=e.attributes.CHARACTERISTICS),e.attributes.FORCED&&(p.forced=/yes/i.test(e.attributes.FORCED)),t[e.attributes.NAME]=p}else this.trigger("warn",{message:"ignoring incomplete or missing media group"})},discontinuity:function(){c+=1,s.discontinuity=!0,this.manifest.discontinuityStarts.push(a.length)},"program-date-time":function(){void 0===this.manifest.dateTimeString&&(this.manifest.dateTimeString=e.dateTimeString,this.manifest.dateTimeObject=e.dateTimeObject),s.dateTimeString=e.dateTimeString,s.dateTimeObject=e.dateTimeObject},targetduration:function(){!isFinite(e.duration)||e.duration<0?this.trigger("warn",{message:"ignoring invalid target duration: "+e.duration}):(this.manifest.targetDuration=e.duration,Pa.call(this,this.manifest))},start:function(){e.attributes&&!isNaN(e.attributes["TIME-OFFSET"])?this.manifest.start={timeOffset:e.attributes["TIME-OFFSET"],precise:e.attributes.PRECISE}:this.trigger("warn",{message:"ignoring start declaration without appropriate attribute list"})},"cue-out":function(){s.cueOut=e.data},"cue-out-cont":function(){s.cueOutCont=e.data},"cue-in":function(){s.cueIn=e.data},skip:function(){this.manifest.skip=Ca(e.attributes),this.warnOnMissingAttributes_("#EXT-X-SKIP",e.attributes,["SKIPPED-SEGMENTS"])},part:function(){var t=this;o=!0;var r=this.manifest.segments.length,i=Ca(e.attributes);s.parts=s.parts||[],s.parts.push(i),i.byterange&&(i.byterange.hasOwnProperty("offset")||(i.byterange.offset=h),h=i.byterange.offset+i.byterange.length);var n=s.parts.length-1;this.warnOnMissingAttributes_("#EXT-X-PART #"+n+" for segment #"+r,e.attributes,["URI","DURATION"]),this.manifest.renditionReports&&this.manifest.renditionReports.forEach(function(e,r){e.hasOwnProperty("lastPart")||t.trigger("warn",{message:"#EXT-X-RENDITION-REPORT #"+r+" lacks required attribute(s): LAST-PART"})})},"server-control":function(){var t=this.manifest.serverControl=Ca(e.attributes);t.hasOwnProperty("canBlockReload")||(t.canBlockReload=!1,this.trigger("info",{message:"#EXT-X-SERVER-CONTROL defaulting CAN-BLOCK-RELOAD to false"})),Pa.call(this,this.manifest),t.canSkipDateranges&&!t.hasOwnProperty("canSkipUntil")&&this.trigger("warn",{message:"#EXT-X-SERVER-CONTROL lacks required attribute CAN-SKIP-UNTIL which is required when CAN-SKIP-DATERANGES is set"})},"preload-hint":function(){var t=this.manifest.segments.length,r=Ca(e.attributes),i=r.type&&"PART"===r.type;s.preloadHints=s.preloadHints||[],s.preloadHints.push(r),r.byterange&&(r.byterange.hasOwnProperty("offset")||(r.byterange.offset=i?h:0,i&&(h=r.byterange.offset+r.byterange.length)));var n=s.preloadHints.length-1;if(this.warnOnMissingAttributes_("#EXT-X-PRELOAD-HINT #"+n+" for segment #"+t,e.attributes,["TYPE","URI"]),r.type)for(var a=0;a=0))throw gs(fs,new Error(e.tagName+"@"+r));for(var n=t.length-1;i"==e&&">")||"&"==e&&"&"||'"'==e&&"""||"&#"+e.charCodeAt()+";"}function Ps(e,t){if(t(e))return!0;if(e=e.firstChild)do{if(Ps(e,t))return!0}while(e=e.nextSibling)}function xs(){}function Is(e,t,r,i){e&&e._inc++,r.namespaceURI===Wa.XMLNS&&delete t._nsMap[r.prefix?r.localName:""]}function As(e,t,r){if(e&&e._inc){e._inc++;var i=t.childNodes;if(r)i[i.length++]=r;else{for(var n=t.firstChild,a=0;n;)i[a++]=n,n=n.nextSibling;i.length=a}}}function Os(e,t){var r=t.previousSibling,i=t.nextSibling;return r?r.nextSibling=i:e.firstChild=i,i?i.previousSibling=r:e.lastChild=r,As(e.ownerDocument,e),t}function Ds(e,t,r){var i=t.parentNode;if(i&&i.removeChild(t),t.nodeType===us){var n=t.firstChild;if(null==n)return t;var a=t.lastChild}else n=a=t;var s=r?r.previousSibling:e.lastChild;n.previousSibling=s,a.nextSibling=r,s?s.nextSibling=n:e.firstChild=n,null==r?e.lastChild=a:r.previousSibling=a;do{n.parentNode=e}while(n!==a&&(n=n.nextSibling));return As(e.ownerDocument||e,e),t.nodeType==us&&(t.firstChild=t.lastChild=null),t}function Ls(){this._nsMap={}}function Rs(){}function Ms(){}function Ns(){}function Us(){}function Bs(){}function Fs(){}function js(){}function Vs(){}function Hs(){}function qs(){}function $s(){}function zs(){}function Ws(e,t){var r=[],i=9==this.nodeType&&this.documentElement||this,n=i.prefix,a=i.namespaceURI;if(a&&null==n&&null==(n=i.lookupPrefix(a)))var s=[{namespace:a,prefix:null}];return Ks(this,r,e,t,s),r.join("")}function Gs(e,t,r){var i=e.prefix||"",n=e.namespaceURI;if(!n)return!1;if("xml"===i&&n===Wa.XML||n===Wa.XMLNS)return!1;for(var a=r.length;a--;){var s=r[a];if(s.prefix===i)return s.namespace!==n}return!0}function Xs(e,t,r){e.push(" ",t,'="',r.replace(/[<&"]/g,Cs),'"')}function Ks(e,t,r,i,n){if(n||(n=[]),i){if(!(e=i(e)))return;if("string"==typeof e)return void t.push(e)}switch(e.nodeType){case Za:var a=e.attributes,s=a.length,o=e.firstChild,l=e.tagName,u=l;if(!(r=Wa.isHTML(e.namespaceURI)||r)&&!e.prefix&&e.namespaceURI){for(var c,d=0;d=0;h--){if(""===(p=n[h]).prefix&&p.namespace===e.namespaceURI){c=p.namespace;break}}if(c!==e.namespaceURI)for(h=n.length-1;h>=0;h--){var p;if((p=n[h]).namespace===e.namespaceURI){p.prefix&&(u=p.prefix+":"+l);break}}}t.push("<",u);for(var f=0;f"),r&&/^script$/i.test(l))for(;o;)o.data?t.push(o.data):Ks(o,t,r,i,n.slice()),o=o.nextSibling;else for(;o;)Ks(o,t,r,i,n.slice()),o=o.nextSibling;t.push("")}else t.push("/>");return;case os:case us:for(o=e.firstChild;o;)Ks(o,t,r,i,n.slice()),o=o.nextSibling;return;case es:return Xs(t,e.name,e.value);case ts:return t.push(e.data.replace(/[<&]/g,Cs).replace(/]]>/g,"]]>"));case rs:return t.push("");case ss:return t.push("\x3c!--",e.data,"--\x3e");case ls:var y=e.publicId,_=e.systemId;if(t.push("");else if(_&&"."!=_)t.push(" SYSTEM ",_,">");else{var b=e.internalSubset;b&&t.push(" [",b,"]"),t.push(">")}return;case as:return t.push("");case is:return t.push("&",e.nodeName,";");default:t.push("??",e.nodeName)}}function Qs(e,t,r){var i;switch(t.nodeType){case Za:(i=t.cloneNode(!1)).ownerDocument=e;case us:break;case es:r=!0}if(i||(i=t.cloneNode(!1)),i.ownerDocument=e,i.parentNode=null,r)for(var n=t.firstChild;n;)i.appendChild(Qs(e,n,r)),n=n.nextSibling;return i}function Ys(e,t,r){var i=new t.constructor;for(var n in t){var a=t[n];"object"!=typeof a&&a!=i[n]&&(i[n]=a)}switch(t.childNodes&&(i.childNodes=new vs),i.ownerDocument=e,i.nodeType){case Za:var s=t.attributes,o=i.attributes=new bs,l=s.length;o._ownerElement=i;for(var u=0;u0},lookupPrefix:function(e){for(var t=this;t;){var r=t._nsMap;if(r)for(var i in r)if(r[i]==e)return i;t=t.nodeType==es?t.ownerDocument:t.parentNode}return null},lookupNamespaceURI:function(e){for(var t=this;t;){var r=t._nsMap;if(r&&e in r)return r[e];t=t.nodeType==es?t.ownerDocument:t.parentNode}return null},isDefaultNamespace:function(e){return null==this.lookupPrefix(e)}},Qa(Ja,ks),Qa(Ja,ks.prototype),xs.prototype={nodeName:"#document",nodeType:os,doctype:null,documentElement:null,_inc:1,insertBefore:function(e,t){if(e.nodeType==us){for(var r=e.firstChild;r;){var i=r.nextSibling;this.insertBefore(r,t),r=i}return e}return null==this.documentElement&&e.nodeType==Za&&(this.documentElement=e),Ds(this,e,t),e.ownerDocument=this,e},removeChild:function(e){return this.documentElement==e&&(this.documentElement=null),Os(this,e)},importNode:function(e,t){return Qs(this,e,t)},getElementById:function(e){var t=null;return Ps(this.documentElement,function(r){if(r.nodeType==Za&&r.getAttribute("id")==e)return t=r,!0}),t},getElementsByClassName:function(e){var t=Ka(e);return new ys(this,function(r){var i=[];return t.length>0&&Ps(r.documentElement,function(n){if(n!==r&&n.nodeType===Za){var a=n.getAttribute("class");if(a){var s=e===a;if(!s){var o=Ka(a);s=t.every((l=o,function(e){return l&&-1!==l.indexOf(e)}))}s&&i.push(n)}}var l}),i})},createElement:function(e){var t=new Ls;return t.ownerDocument=this,t.nodeName=e,t.tagName=e,t.localName=e,t.childNodes=new vs,(t.attributes=new bs)._ownerElement=t,t},createDocumentFragment:function(){var e=new qs;return e.ownerDocument=this,e.childNodes=new vs,e},createTextNode:function(e){var t=new Ns;return t.ownerDocument=this,t.appendData(e),t},createComment:function(e){var t=new Us;return t.ownerDocument=this,t.appendData(e),t},createCDATASection:function(e){var t=new Bs;return t.ownerDocument=this,t.appendData(e),t},createProcessingInstruction:function(e,t){var r=new $s;return r.ownerDocument=this,r.tagName=r.target=e,r.nodeValue=r.data=t,r},createAttribute:function(e){var t=new Rs;return t.ownerDocument=this,t.name=e,t.nodeName=e,t.localName=e,t.specified=!0,t},createEntityReference:function(e){var t=new Hs;return t.ownerDocument=this,t.nodeName=e,t},createElementNS:function(e,t){var r=new Ls,i=t.split(":"),n=r.attributes=new bs;return r.childNodes=new vs,r.ownerDocument=this,r.nodeName=t,r.tagName=t,r.namespaceURI=e,2==i.length?(r.prefix=i[0],r.localName=i[1]):r.localName=t,n._ownerElement=r,r},createAttributeNS:function(e,t){var r=new Rs,i=t.split(":");return r.ownerDocument=this,r.nodeName=t,r.name=t,r.namespaceURI=e,r.specified=!0,2==i.length?(r.prefix=i[0],r.localName=i[1]):r.localName=t,r}},Ya(xs,ks),Ls.prototype={nodeType:Za,hasAttribute:function(e){return null!=this.getAttributeNode(e)},getAttribute:function(e){var t=this.getAttributeNode(e);return t&&t.value||""},getAttributeNode:function(e){return this.attributes.getNamedItem(e)},setAttribute:function(e,t){var r=this.ownerDocument.createAttribute(e);r.value=r.nodeValue=""+t,this.setAttributeNode(r)},removeAttribute:function(e){var t=this.getAttributeNode(e);t&&this.removeAttributeNode(t)},appendChild:function(e){return e.nodeType===us?this.insertBefore(e,null):function(e,t){var r=t.parentNode;if(r){var i=e.lastChild;r.removeChild(t),i=e.lastChild}return i=e.lastChild,t.parentNode=e,t.previousSibling=i,t.nextSibling=null,i?i.nextSibling=t:e.firstChild=t,e.lastChild=t,As(e.ownerDocument,e,t),t}(this,e)},setAttributeNode:function(e){return this.attributes.setNamedItem(e)},setAttributeNodeNS:function(e){return this.attributes.setNamedItemNS(e)},removeAttributeNode:function(e){return this.attributes.removeNamedItem(e.nodeName)},removeAttributeNS:function(e,t){var r=this.getAttributeNodeNS(e,t);r&&this.removeAttributeNode(r)},hasAttributeNS:function(e,t){return null!=this.getAttributeNodeNS(e,t)},getAttributeNS:function(e,t){var r=this.getAttributeNodeNS(e,t);return r&&r.value||""},setAttributeNS:function(e,t,r){var i=this.ownerDocument.createAttributeNS(e,t);i.value=i.nodeValue=""+r,this.setAttributeNode(i)},getAttributeNodeNS:function(e,t){return this.attributes.getNamedItemNS(e,t)},getElementsByTagName:function(e){return new ys(this,function(t){var r=[];return Ps(t,function(i){i===t||i.nodeType!=Za||"*"!==e&&i.tagName!=e||r.push(i)}),r})},getElementsByTagNameNS:function(e,t){return new ys(this,function(r){var i=[];return Ps(r,function(n){n===r||n.nodeType!==Za||"*"!==e&&n.namespaceURI!==e||"*"!==t&&n.localName!=t||i.push(n)}),i})}},xs.prototype.getElementsByTagName=Ls.prototype.getElementsByTagName,xs.prototype.getElementsByTagNameNS=Ls.prototype.getElementsByTagNameNS,Ya(Ls,ks),Rs.prototype.nodeType=es,Ya(Rs,ks),Ms.prototype={data:"",substringData:function(e,t){return this.data.substring(e,e+t)},appendData:function(e){e=this.data+e,this.nodeValue=this.data=e,this.length=e.length},insertData:function(e,t){this.replaceData(e,0,t)},appendChild:function(e){throw new Error(hs[ps])},deleteData:function(e,t){this.replaceData(e,t,"")},replaceData:function(e,t,r){r=this.data.substring(0,e)+r+this.data.substring(e+t),this.nodeValue=this.data=r,this.length=r.length}},Ya(Ms,ks),Ns.prototype={nodeName:"#text",nodeType:ts,splitText:function(e){var t=this.data,r=t.substring(e);t=t.substring(0,e),this.data=this.nodeValue=t,this.length=t.length;var i=this.ownerDocument.createTextNode(r);return this.parentNode&&this.parentNode.insertBefore(i,this.nextSibling),i}},Ya(Ns,Ms),Us.prototype={nodeName:"#comment",nodeType:ss},Ya(Us,Ms),Bs.prototype={nodeName:"#cdata-section",nodeType:rs},Ya(Bs,Ms),Fs.prototype.nodeType=ls,Ya(Fs,ks),js.prototype.nodeType=cs,Ya(js,ks),Vs.prototype.nodeType=ns,Ya(Vs,ks),Hs.prototype.nodeType=is,Ya(Hs,ks),qs.prototype.nodeName="#document-fragment",qs.prototype.nodeType=us,Ya(qs,ks),$s.prototype.nodeType=as,Ya($s,ks),zs.prototype.serializeToString=function(e,t,r){return Ws.call(e,t,r)},ks.prototype.toString=Ws;try{if(Object.defineProperty){var Zs=function e(t){switch(t.nodeType){case Za:case us:var r=[];for(t=t.firstChild;t;)7!==t.nodeType&&8!==t.nodeType&&r.push(e(t)),t=t.nextSibling;return r.join("");default:return t.nodeValue}};Object.defineProperty(ys.prototype,"length",{get:function(){return _s(this),this.$$length}}),Object.defineProperty(ks.prototype,"textContent",{get:function(){return Zs(this)},set:function(e){switch(this.nodeType){case Za:case us:for(;this.firstChild;)this.removeChild(this.firstChild);(e||String(e))&&this.appendChild(this.ownerDocument.createTextNode(e));break;default:this.data=e,this.value=e,this.nodeValue=e}}}),Js=function(e,t,r){e["$$"+t]=r}}}catch(e){}var eo={DocumentType:Fs,DOMException:gs,DOMImplementation:Es,Element:Ls,Node:ks,NodeList:vs,XMLSerializer:zs},to=f(function(e,t){var r=za.freeze;t.XML_ENTITIES=r({amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}),t.HTML_ENTITIES=r({lt:"<",gt:">",amp:"&",quot:'"',apos:"'",Agrave:"\xc0",Aacute:"\xc1",Acirc:"\xc2",Atilde:"\xc3",Auml:"\xc4",Aring:"\xc5",AElig:"\xc6",Ccedil:"\xc7",Egrave:"\xc8",Eacute:"\xc9",Ecirc:"\xca",Euml:"\xcb",Igrave:"\xcc",Iacute:"\xcd",Icirc:"\xce",Iuml:"\xcf",ETH:"\xd0",Ntilde:"\xd1",Ograve:"\xd2",Oacute:"\xd3",Ocirc:"\xd4",Otilde:"\xd5",Ouml:"\xd6",Oslash:"\xd8",Ugrave:"\xd9",Uacute:"\xda",Ucirc:"\xdb",Uuml:"\xdc",Yacute:"\xdd",THORN:"\xde",szlig:"\xdf",agrave:"\xe0",aacute:"\xe1",acirc:"\xe2",atilde:"\xe3",auml:"\xe4",aring:"\xe5",aelig:"\xe6",ccedil:"\xe7",egrave:"\xe8",eacute:"\xe9",ecirc:"\xea",euml:"\xeb",igrave:"\xec",iacute:"\xed",icirc:"\xee",iuml:"\xef",eth:"\xf0",ntilde:"\xf1",ograve:"\xf2",oacute:"\xf3",ocirc:"\xf4",otilde:"\xf5",ouml:"\xf6",oslash:"\xf8",ugrave:"\xf9",uacute:"\xfa",ucirc:"\xfb",uuml:"\xfc",yacute:"\xfd",thorn:"\xfe",yuml:"\xff",nbsp:"\xa0",iexcl:"\xa1",cent:"\xa2",pound:"\xa3",curren:"\xa4",yen:"\xa5",brvbar:"\xa6",sect:"\xa7",uml:"\xa8",copy:"\xa9",ordf:"\xaa",laquo:"\xab",not:"\xac",shy:"\xad\xad",reg:"\xae",macr:"\xaf",deg:"\xb0",plusmn:"\xb1",sup2:"\xb2",sup3:"\xb3",acute:"\xb4",micro:"\xb5",para:"\xb6",middot:"\xb7",cedil:"\xb8",sup1:"\xb9",ordm:"\xba",raquo:"\xbb",frac14:"\xbc",frac12:"\xbd",frac34:"\xbe",iquest:"\xbf",times:"\xd7",divide:"\xf7",forall:"\u2200",part:"\u2202",exist:"\u2203",empty:"\u2205",nabla:"\u2207",isin:"\u2208",notin:"\u2209",ni:"\u220b",prod:"\u220f",sum:"\u2211",minus:"\u2212",lowast:"\u2217",radic:"\u221a",prop:"\u221d",infin:"\u221e",ang:"\u2220",and:"\u2227",or:"\u2228",cap:"\u2229",cup:"\u222a",int:"\u222b",there4:"\u2234",sim:"\u223c",cong:"\u2245",asymp:"\u2248",ne:"\u2260",equiv:"\u2261",le:"\u2264",ge:"\u2265",sub:"\u2282",sup:"\u2283",nsub:"\u2284",sube:"\u2286",supe:"\u2287",oplus:"\u2295",otimes:"\u2297",perp:"\u22a5",sdot:"\u22c5",Alpha:"\u0391",Beta:"\u0392",Gamma:"\u0393",Delta:"\u0394",Epsilon:"\u0395",Zeta:"\u0396",Eta:"\u0397",Theta:"\u0398",Iota:"\u0399",Kappa:"\u039a",Lambda:"\u039b",Mu:"\u039c",Nu:"\u039d",Xi:"\u039e",Omicron:"\u039f",Pi:"\u03a0",Rho:"\u03a1",Sigma:"\u03a3",Tau:"\u03a4",Upsilon:"\u03a5",Phi:"\u03a6",Chi:"\u03a7",Psi:"\u03a8",Omega:"\u03a9",alpha:"\u03b1",beta:"\u03b2",gamma:"\u03b3",delta:"\u03b4",epsilon:"\u03b5",zeta:"\u03b6",eta:"\u03b7",theta:"\u03b8",iota:"\u03b9",kappa:"\u03ba",lambda:"\u03bb",mu:"\u03bc",nu:"\u03bd",xi:"\u03be",omicron:"\u03bf",pi:"\u03c0",rho:"\u03c1",sigmaf:"\u03c2",sigma:"\u03c3",tau:"\u03c4",upsilon:"\u03c5",phi:"\u03c6",chi:"\u03c7",psi:"\u03c8",omega:"\u03c9",thetasym:"\u03d1",upsih:"\u03d2",piv:"\u03d6",OElig:"\u0152",oelig:"\u0153",Scaron:"\u0160",scaron:"\u0161",Yuml:"\u0178",fnof:"\u0192",circ:"\u02c6",tilde:"\u02dc",ensp:"\u2002",emsp:"\u2003",thinsp:"\u2009",zwnj:"\u200c",zwj:"\u200d",lrm:"\u200e",rlm:"\u200f",ndash:"\u2013",mdash:"\u2014",lsquo:"\u2018",rsquo:"\u2019",sbquo:"\u201a",ldquo:"\u201c",rdquo:"\u201d",bdquo:"\u201e",dagger:"\u2020",Dagger:"\u2021",bull:"\u2022",hellip:"\u2026",permil:"\u2030",prime:"\u2032",Prime:"\u2033",lsaquo:"\u2039",rsaquo:"\u203a",oline:"\u203e",euro:"\u20ac",trade:"\u2122",larr:"\u2190",uarr:"\u2191",rarr:"\u2192",darr:"\u2193",harr:"\u2194",crarr:"\u21b5",lceil:"\u2308",rceil:"\u2309",lfloor:"\u230a",rfloor:"\u230b",loz:"\u25ca",spades:"\u2660",clubs:"\u2663",hearts:"\u2665",diams:"\u2666"}),t.entityMap=t.HTML_ENTITIES});to.XML_ENTITIES,to.HTML_ENTITIES,to.entityMap;var ro=za.NAMESPACE,io=/[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,no=new RegExp("[\\-\\.0-9"+io.source.slice(1,-1)+"\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"),ao=new RegExp("^"+io.source+no.source+"*(?::"+io.source+no.source+"*)?$");function so(e,t){this.message=e,this.locator=t,Error.captureStackTrace&&Error.captureStackTrace(this,so)}function oo(){}function lo(e,t){return t.lineNumber=e.lineNumber,t.columnNumber=e.columnNumber,t}function uo(e,t,r,i,n,a){function s(e,t,i){r.attributeNames.hasOwnProperty(e)&&a.fatalError("Attribute "+e+" redefined"),r.addValue(e,t,i)}for(var o,l=++t,u=0;;){var c=e.charAt(l);switch(c){case"=":if(1===u)o=e.slice(t,l),u=3;else{if(2!==u)throw new Error("attribute equal must after attrName");u=3}break;case"'":case'"':if(3===u||1===u){if(1===u&&(a.warning('attribute value must after "="'),o=e.slice(t,l)),t=l+1,!((l=e.indexOf(c,t))>0))throw new Error("attribute value no end '"+c+"' match");s(o,d=e.slice(t,l).replace(/&#?\w+;/g,n),t-1),u=5}else{if(4!=u)throw new Error('attribute value must after "="');s(o,d=e.slice(t,l).replace(/&#?\w+;/g,n),t),a.warning('attribute "'+o+'" missed start quot('+c+")!!"),t=l+1,u=5}break;case"/":switch(u){case 0:r.setTagName(e.slice(t,l));case 5:case 6:case 7:u=7,r.closed=!0;case 4:case 1:case 2:break;default:throw new Error("attribute invalid close char('/')")}break;case"":return a.error("unexpected end of input"),0==u&&r.setTagName(e.slice(t,l)),l;case">":switch(u){case 0:r.setTagName(e.slice(t,l));case 5:case 6:case 7:break;case 4:case 1:"/"===(d=e.slice(t,l)).slice(-1)&&(r.closed=!0,d=d.slice(0,-1));case 2:2===u&&(d=o),4==u?(a.warning('attribute "'+d+'" missed quot(")!'),s(o,d.replace(/&#?\w+;/g,n),t)):(ro.isHTML(i[""])&&d.match(/^(?:disabled|checked|selected)$/i)||a.warning('attribute "'+d+'" missed value!! "'+d+'" instead!!'),s(d,d,t));break;case 3:throw new Error("attribute value missed!!")}return l;case"\x80":c=" ";default:if(c<=" ")switch(u){case 0:r.setTagName(e.slice(t,l)),u=6;break;case 1:o=e.slice(t,l),u=2;break;case 4:var d=e.slice(t,l).replace(/&#?\w+;/g,n);a.warning('attribute "'+d+'" missed quot(")!!'),s(o,d,t);case 5:u=6}else switch(u){case 2:r.tagName,ro.isHTML(i[""])&&o.match(/^(?:disabled|checked|selected)$/i)||a.warning('attribute "'+o+'" missed value!! "'+o+'" instead2!!'),s(o,o,t),t=l,u=1;break;case 5:a.warning('attribute space is required"'+o+'"!!');case 6:u=1,t=l;break;case 3:u=4,t=l;break;case 7:throw new Error("elements closed character '/' and '>' must be connected to")}}l++}}function co(e,t,r){for(var i=e.tagName,n=null,a=e.length;a--;){var s=e[a],o=s.qName,l=s.value;if((h=o.indexOf(":"))>0)var u=s.prefix=o.slice(0,h),c=o.slice(h+1),d="xmlns"===u&&c;else c=o,u=null,d="xmlns"===o&&"";s.localName=c,!1!==d&&(null==n&&(n={},fo(r,r={})),r[d]=n[d]=l,s.uri=ro.XMLNS,t.startPrefixMapping(d,l))}for(a=e.length;a--;){(u=(s=e[a]).prefix)&&("xml"===u&&(s.uri=ro.XML),"xmlns"!==u&&(s.uri=r[u||""]))}var h;(h=i.indexOf(":"))>0?(u=e.prefix=i.slice(0,h),c=e.localName=i.slice(h+1)):(u=null,c=e.localName=i);var p=e.uri=r[u||""];if(t.startElement(p,c,i,e),!e.closed)return e.currentNSMap=r,e.localNSMap=n,!0;if(t.endElement(p,c,i),n)for(u in n)t.endPrefixMapping(u)}function ho(e,t,r,i,n){if(/^(?:script|textarea)$/i.test(r)){var a=e.indexOf("",t),s=e.substring(t+1,a);if(/[&<]/.test(s))return/^script$/i.test(r)?(n.characters(s,0,s.length),a):(s=s.replace(/&#?\w+;/g,i),n.characters(s,0,s.length),a)}return t+1}function po(e,t,r,i){var n=i[r];return null==n&&((n=e.lastIndexOf(""))t?(r.comment(e,t+4,n-t-4),n+3):(i.error("Unclosed comment"),-1):-1;if("CDATA["==e.substr(t+3,6)){var n=e.indexOf("]]>",t+9);return r.startCDATA(),r.characters(e,t+9,n-t-9),r.endCDATA(),n+3}var a=function(e,t){var r,i=[],n=/'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;n.lastIndex=t,n.exec(e);for(;r=n.exec(e);)if(i.push(r),r[1])return i}(e,t),s=a.length;if(s>1&&/!doctype/i.test(a[0][0])){var o=a[1][0],l=!1,u=!1;s>3&&(/^public$/i.test(a[2][0])?(l=a[3][0],u=s>4&&a[4][0]):/^system$/i.test(a[2][0])&&(u=a[3][0]));var c=a[s-1];return r.startDTD(o,l,u),r.endDTD(),c.index+c[0].length}return-1}function go(e,t,r){var i=e.indexOf("?>",t);if(i){var n=e.substring(t,i).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);return n?(n[0].length,r.processingInstruction(n[1],n[2]),i+2):-1}return-1}function vo(){this.attributeNames={}}so.prototype=new Error,so.prototype.name=so.name,oo.prototype={parse:function(e,t,r){var i=this.domBuilder;i.startDocument(),fo(t,t={}),function(e,t,r,i,n){function a(e){if(e>65535){var t=55296+((e-=65536)>>10),r=56320+(1023&e);return String.fromCharCode(t,r)}return String.fromCharCode(e)}function s(e){var t=e.slice(1,-1);return t in r?r[t]:"#"===t.charAt(0)?a(parseInt(t.substr(1).replace("x","0x"))):(n.error("entity not found:"+e),e)}function o(t){if(t>m){var r=e.substring(m,t).replace(/&#?\w+;/g,s);h&&l(m),i.characters(r,0,t-m),m=t}}function l(t,r){for(;t>=c&&(r=d.exec(e));)u=r.index,c=u+r[0].length,h.lineNumber++;h.columnNumber=t-u+1}var u=0,c=0,d=/.*(?:\r\n?|\n)|.*$/g,h=i.locator,p=[{currentNSMap:t}],f={},m=0;for(;;){try{var g=e.indexOf("<",m);if(g<0){if(!e.substr(m).match(/^\s*$/)){var v=i.doc,y=v.createTextNode(e.substr(m));v.appendChild(y),i.currentElement=y}return}switch(g>m&&o(g),e.charAt(g+1)){case"/":var _=e.indexOf(">",g+3),b=e.substring(g+2,_).replace(/[ \t\n\r]+$/g,""),T=p.pop();_<0?(b=e.substring(g+2).replace(/[\s<].*/,""),n.error("end tag name: "+b+" is not complete:"+T.tagName),_=g+1+b.length):b.match(/\sm?m=_:o(Math.max(g,m)+1)}}(e,t,r,i,this.errorHandler),i.endDocument()}},vo.prototype={setTagName:function(e){if(!ao.test(e))throw new Error("invalid tagName:"+e);this.tagName=e},addValue:function(e,t,r){if(!ao.test(e))throw new Error("invalid attribute:"+e);this.attributeNames[e]=this.length,this[this.length++]={qName:e,value:t,offset:r}},length:0,getLocalName:function(e){return this[e].localName},getLocator:function(e){return this[e].locator},getQName:function(e){return this[e].qName},getURI:function(e){return this[e].uri},getValue:function(e){return this[e].value}};var yo={XMLReader:oo,ParseError:so},_o=eo.DOMImplementation,bo=za.NAMESPACE,To=yo.ParseError,wo=yo.XMLReader;function So(e){this.options=e||{locator:{}}}function Eo(){this.cdata=!1}function ko(e,t){t.lineNumber=e.lineNumber,t.columnNumber=e.columnNumber}function Co(e){if(e)return"\n@"+(e.systemId||"")+"#[line:"+e.lineNumber+",col:"+e.columnNumber+"]"}function Po(e,t,r){return"string"==typeof e?e.substr(t,r):e.length>=t+r||t?new java.lang.String(e,t,r)+"":e}function xo(e,t){e.currentElement?e.currentElement.appendChild(t):e.doc.appendChild(t)}So.prototype.parseFromString=function(e,t){var r=this.options,i=new wo,n=r.domBuilder||new Eo,a=r.errorHandler,s=r.locator,o=r.xmlns||{},l=/\/x?html?$/.test(t),u=l?to.HTML_ENTITIES:to.XML_ENTITIES;return s&&n.setDocumentLocator(s),i.errorHandler=function(e,t,r){if(!e){if(t instanceof Eo)return t;e=t}var i={},n=e instanceof Function;function a(t){var a=e[t];!a&&n&&(a=2==e.length?function(r){e(t,r)}:e),i[t]=a&&function(e){a("[xmldom "+t+"]\t"+e+Co(r))}||function(){}}return r=r||{},a("warning"),a("error"),a("fatalError"),i}(a,n,s),i.domBuilder=r.domBuilder||n,l&&(o[""]=bo.HTML),o.xml=o.xml||bo.XML,e&&"string"==typeof e?i.parse(e,o,u):i.errorHandler.error("invalid doc source"),n.doc},Eo.prototype={startDocument:function(){this.doc=(new _o).createDocument(null,null,null),this.locator&&(this.doc.documentURI=this.locator.systemId)},startElement:function(e,t,r,i){var n=this.doc,a=n.createElementNS(e,r||t),s=i.length;xo(this,a),this.currentElement=a,this.locator&&ko(this.locator,a);for(var o=0;ot.timeline?1:-1});var t,r},Qo=function(e){var t,r,i=[];return t=e,r=function(e,t,r,n){i=i.concat(e.playlists||[])},Xo.forEach(function(e){for(var i in t.mediaGroups[e])for(var n in t.mediaGroups[e][i]){var a=t.mediaGroups[e][i][n];r(a,e,i,n)}}),i},Yo=function(e){var t=e.playlist,r=e.mediaSequence;t.mediaSequence=r,t.segments.forEach(function(e,r){e.number=t.mediaSequence+r})},Jo=function(e){var t=e.oldManifest,r=e.newManifest,i=t.playlists.concat(Qo(t)),n=r.playlists.concat(Qo(r));return r.timelineStarts=Ko([t.timelineStarts,r.timelineStarts]),function(e){var t=e.oldPlaylists,r=e.newPlaylists,i=e.timelineStarts;r.forEach(function(e){e.discontinuitySequence=Mo(i,function(t){return t.timeline===e.timeline});var r=function(e,t){for(var r=0;rr.timeline||r.segments.length&&e.timeline>r.segments[r.segments.length-1].timeline)&&e.discontinuitySequence--);r.segments[a].discontinuity&&!n.discontinuity&&(n.discontinuity=!0,e.discontinuityStarts.unshift(0),e.discontinuitySequence--),Yo({playlist:e,mediaSequence:r.segments[a].number})}})}({oldPlaylists:i,newPlaylists:n,timelineStarts:r.timelineStarts}),r},Zo=function(e){return e&&e.uri+"-"+(t=e.byterange,r="bigint"==typeof t.offset||"bigint"==typeof t.length?window.BigInt(t.offset)+window.BigInt(t.length)-window.BigInt(1):t.offset+t.length-1,t.offset+"-"+r);var t,r},el=function(e){return Do(e.reduce(function(e,t){var r=t.attributes.id+(t.attributes.lang||"");if(e[r]){var i;if(t.segments)t.segments[0]&&(t.segments[0].discontinuity=!0),(i=e[r].segments).push.apply(i,t.segments);t.attributes.contentProtection&&(e[r].attributes.contentProtection=t.attributes.contentProtection)}else e[r]=t,e[r].attributes.timelineStarts=[];return e[r].attributes.timelineStarts.push({start:t.attributes.periodStart,timeline:t.attributes.periodStart}),e},{})).map(function(e){var t,r;return e.discontinuityStarts=(t=e.segments||[],r="discontinuity",t.reduce(function(e,t,i){return t[r]&&e.push(i),e},[])),e})},tl=function(e,t){var r=Zo(e.sidx),i=r&&t[r]&&t[r].sidx;return i&&Go(e,i,e.sidx.resolvedUri),e},rl=function(e,t){if(void 0===t&&(t={}),!Object.keys(t).length)return e;for(var r in e)e[r]=tl(e[r],t);return e},il=function(e){var t,r=e.attributes,i=e.segments,n=e.sidx,a=e.discontinuityStarts,s={attributes:(t={NAME:r.id,AUDIO:"audio",SUBTITLES:"subs",RESOLUTION:{width:r.width,height:r.height},CODECS:r.codecs,BANDWIDTH:r.bandwidth},t["PROGRAM-ID"]=1,t),uri:"",endList:"static"===r.type,timeline:r.periodStart,resolvedUri:"",targetDuration:r.duration,discontinuityStarts:a,timelineStarts:r.timelineStarts,segments:i};return r.contentProtection&&(s.contentProtection=r.contentProtection),n&&(s.sidx=n),s},nl=function(e){var t=e.attributes;return"video/mp4"===t.mimeType||"video/webm"===t.mimeType||"video"===t.contentType},al=function(e){var t=e.attributes;return"audio/mp4"===t.mimeType||"audio/webm"===t.mimeType||"audio"===t.contentType},sl=function(e){var t=e.attributes;return"text/vtt"===t.mimeType||"text"===t.contentType},ol=function(e){return e?Object.keys(e).reduce(function(t,r){var i=e[r];return t.concat(i.playlists)},[]):[]},ll=function(e){var t,r=e.dashPlaylists,i=e.locations,n=e.sidxMapping,a=void 0===n?{}:n,s=e.previousManifest;if(!r.length)return{};var o=r[0].attributes,l=o.sourceDuration,u=o.type,c=o.suggestedPresentationDelay,d=o.minimumUpdatePeriod,h=el(r.filter(nl)).map(il),p=el(r.filter(al)),f=el(r.filter(sl)),m=r.map(function(e){return e.attributes.captionServices}).filter(Boolean),g={allowCache:!0,discontinuityStarts:[],segments:[],endList:!0,mediaGroups:(t={AUDIO:{},VIDEO:{}},t["CLOSED-CAPTIONS"]={},t.SUBTITLES={},t),uri:"",duration:l,playlists:rl(h,a)};d>=0&&(g.minimumUpdatePeriod=1e3*d),i&&(g.locations=i),"dynamic"===u&&(g.suggestedPresentationDelay=c);var v,y,_=0===g.playlists.length,b=p.length?function(e,t,r){var i;void 0===t&&(t={}),void 0===r&&(r=!1);var n=e.reduce(function(e,n){var a=n.attributes.role&&n.attributes.role.value||"",s=n.attributes.lang||"",o=n.attributes.label||"main";if(s&&!n.attributes.label){var l=a?" ("+a+")":"";o=""+n.attributes.lang+l}e[o]||(e[o]={language:s,autoselect:!0,default:"main"===a,playlists:[],uri:""});var u=tl(function(e,t){var r,i=e.attributes,n=e.segments,a=e.sidx,s=e.mediaSequence,o=e.discontinuitySequence,l=e.discontinuityStarts,u={attributes:(r={NAME:i.id,BANDWIDTH:i.bandwidth,CODECS:i.codecs},r["PROGRAM-ID"]=1,r),uri:"",endList:"static"===i.type,timeline:i.periodStart,resolvedUri:"",targetDuration:i.duration,discontinuitySequence:o,discontinuityStarts:l,timelineStarts:i.timelineStarts,mediaSequence:s,segments:n};return i.contentProtection&&(u.contentProtection=i.contentProtection),a&&(u.sidx=a),t&&(u.attributes.AUDIO="audio",u.attributes.SUBTITLES="subs"),u}(n,r),t);return e[o].playlists.push(u),void 0===i&&"main"===a&&((i=n).default=!0),e},{});return i||(n[Object.keys(n)[0]].default=!0),n}(p,a,_):null,T=f.length?function(e,t){return void 0===t&&(t={}),e.reduce(function(e,r){var i=r.attributes.lang||"text";return e[i]||(e[i]={language:i,default:!1,autoselect:!1,playlists:[],uri:""}),e[i].playlists.push(tl(function(e){var t,r=e.attributes,i=e.segments,n=e.mediaSequence,a=e.discontinuityStarts,s=e.discontinuitySequence;void 0===i&&(i=[{uri:r.baseUrl,timeline:r.periodStart,resolvedUri:r.baseUrl||"",duration:r.sourceDuration,number:0}],r.duration=r.sourceDuration);var o=((t={NAME:r.id,BANDWIDTH:r.bandwidth})["PROGRAM-ID"]=1,t);return r.codecs&&(o.CODECS=r.codecs),{attributes:o,uri:"",endList:"static"===r.type,timeline:r.periodStart,resolvedUri:r.baseUrl||"",targetDuration:r.duration,timelineStarts:r.timelineStarts,discontinuityStarts:a,discontinuitySequence:s,mediaSequence:n,segments:i}}(r),t)),e},{})}(f,a):null,w=h.concat(ol(b),ol(T)),S=w.map(function(e){return e.timelineStarts});return g.timelineStarts=Ko(S),v=w,y=g.timelineStarts,v.forEach(function(e){e.mediaSequence=0,e.discontinuitySequence=Mo(y,function(t){return t.timeline===e.timeline}),e.segments&&e.segments.forEach(function(e,t){e.number=t})}),b&&(g.mediaGroups.AUDIO.audio=b),T&&(g.mediaGroups.SUBTITLES.subs=T),m.length&&(g.mediaGroups["CLOSED-CAPTIONS"].cc=m.reduce(function(e,t){return t?(t.forEach(function(t){var r=t.channel,i=t.language;e[i]={autoselect:!1,default:!1,instreamId:r,language:i},t.hasOwnProperty("aspectRatio")&&(e[i].aspectRatio=t.aspectRatio),t.hasOwnProperty("easyReader")&&(e[i].easyReader=t.easyReader),t.hasOwnProperty("3D")&&(e[i]["3D"]=t["3D"])}),e):e},{})),s?Jo({oldManifest:s,newManifest:g}):g},ul=function(e,t,r){var i=e.NOW,n=e.clientOffset,a=e.availabilityStartTime,s=e.timescale,o=void 0===s?1:s,l=e.periodStart,u=void 0===l?0:l,c=e.minimumUpdatePeriod,d=(i+n)/1e3+(void 0===c?0:c)-(a+u);return Math.ceil((d*o-t)/r)},cl=function(e,t){for(var r=e.type,i=e.minimumUpdatePeriod,n=void 0===i?0:i,a=e.media,s=void 0===a?"":a,o=e.sourceDuration,l=e.timescale,u=void 0===l?1:l,c=e.startNumber,d=void 0===c?1:c,h=e.periodStart,p=[],f=-1,m=0;mf&&(f=_);var b=void 0;if(y<0){var T=m+1;b=T===t.length?"dynamic"===r&&n>0&&s.indexOf("$Number$")>0?ul(e,f,v):(o*u-f)/v:(t[T].t-f)/v}else b=y+1;for(var w=d+p.length+b,S=d+p.length;S=n?a:""+new Array(n-a.length+1).join("0")+a)}}(t))},pl=function(e,t){var r={RepresentationID:e.id,Bandwidth:e.bandwidth||0},i=e.initialization,n=void 0===i?{sourceURL:"",range:""}:i,a=Ho({baseUrl:e.baseUrl,source:hl(n.sourceURL,r),range:n.range}),s=function(e,t){return e.duration||t?e.duration?zo(e):cl(e,t):[{number:e.startNumber||1,duration:e.sourceDuration,time:0,timeline:e.periodStart}]}(e,t);return s.map(function(t){r.Number=t.number,r.Time=t.time;var i=hl(e.media||"",r),n=e.timescale||1,s=e.presentationTimeOffset||0,o=e.periodStart+(t.time-s)/n;return{uri:i,timeline:t.timeline,duration:t.duration,resolvedUri:ya(e.baseUrl||"",i),map:a,number:t.number,presentationTime:o}})},fl=function(e,t){var r=e.duration,i=e.segmentUrls,n=void 0===i?[]:i,a=e.periodStart;if(!r&&!t||r&&t)throw new Error(jo);var s,o=n.map(function(t){return function(e,t){var r=e.baseUrl,i=e.initialization,n=void 0===i?{}:i,a=Ho({baseUrl:r,source:n.sourceURL,range:n.range}),s=Ho({baseUrl:r,source:t.media,range:t.mediaRange});return s.map=a,s}(e,t)});return r&&(s=zo(e)),t&&(s=cl(e,t)),s.map(function(t,r){if(o[r]){var i=o[r],n=e.timescale||1,s=e.presentationTimeOffset||0;return i.timeline=t.timeline,i.duration=t.duration,i.number=t.number,i.presentationTime=a+(t.time-s)/n,i}}).filter(function(e){return e})},ml=function(e){var t,r,i=e.attributes,n=e.segmentInfo;n.template?(r=pl,t=Oo(i,n.template)):n.base?(r=Wo,t=Oo(i,n.base)):n.list&&(r=fl,t=Oo(i,n.list));var a={attributes:i};if(!r)return a;var s=r(t,n.segmentTimeline);if(t.duration){var o=t,l=o.duration,u=o.timescale,c=void 0===u?1:u;t.duration=l/c}else s.length?t.duration=s.reduce(function(e,t){return Math.max(e,Math.ceil(t.duration))},0):t.duration=0;return a.attributes=t,a.segments=s,n.base&&t.indexRange&&(a.sidx=s[0],a.segments=[]),a},gl=function(e,t){return Ro(e.childNodes).filter(function(e){return e.tagName===t})},vl=function(e){return e.textContent.trim()},yl=function(e){var t=/P(?:(\d*)Y)?(?:(\d*)M)?(?:(\d*)D)?(?:T(?:(\d*)H)?(?:(\d*)M)?(?:([\d.]*)S)?)?/.exec(e);if(!t)return 0;var r=t.slice(1),i=r[0],n=r[1],a=r[2],s=r[3],o=r[4],l=r[5];return 31536e3*parseFloat(i||0)+2592e3*parseFloat(n||0)+86400*parseFloat(a||0)+3600*parseFloat(s||0)+60*parseFloat(o||0)+parseFloat(l||0)},_l={mediaPresentationDuration:function(e){return yl(e)},availabilityStartTime:function(e){return/^\d+-\d+-\d+T\d+:\d+:\d+(\.\d+)?$/.test(t=e)&&(t+="Z"),Date.parse(t)/1e3;var t},minimumUpdatePeriod:function(e){return yl(e)},suggestedPresentationDelay:function(e){return yl(e)},type:function(e){return e},timeShiftBufferDepth:function(e){return yl(e)},start:function(e){return yl(e)},width:function(e){return parseInt(e,10)},height:function(e){return parseInt(e,10)},bandwidth:function(e){return parseInt(e,10)},startNumber:function(e){return parseInt(e,10)},timescale:function(e){return parseInt(e,10)},presentationTimeOffset:function(e){return parseInt(e,10)},duration:function(e){var t=parseInt(e,10);return isNaN(t)?yl(e):t},d:function(e){return parseInt(e,10)},t:function(e){return parseInt(e,10)},r:function(e){return parseInt(e,10)},DEFAULT:function(e){return e}},bl=function(e){return e&&e.attributes?Ro(e.attributes).reduce(function(e,t){var r=_l[t.name]||_l.DEFAULT;return e[t.name]=r(t.value),e},{}):{}},Tl={"urn:uuid:1077efec-c0b2-4d02-ace3-3c1e52e2fb4b":"org.w3.clearkey","urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed":"com.widevine.alpha","urn:uuid:9a04f079-9840-4286-ab92-e65be0885f95":"com.microsoft.playready","urn:uuid:f239e769-efa3-4850-9c16-a903c6932efb":"com.adobe.primetime"},wl=function(e,t){return t.length?Lo(e.map(function(e){return t.map(function(t){return ya(e,vl(t))})})):e},Sl=function(e){var t=gl(e,"SegmentTemplate")[0],r=gl(e,"SegmentList")[0],i=r&&gl(r,"SegmentURL").map(function(e){return Oo({tag:"SegmentURL"},bl(e))}),n=gl(e,"SegmentBase")[0],a=r||t,s=a&&gl(a,"SegmentTimeline")[0],o=r||n||t,l=o&&gl(o,"Initialization")[0],u=t&&bl(t);u&&l?u.initialization=l&&bl(l):u&&u.initialization&&(u.initialization={sourceURL:u.initialization});var c={template:u,segmentTimeline:s&&gl(s,"S").map(function(e){return bl(e)}),list:r&&Oo(bl(r),{segmentUrls:i,initialization:bl(l)}),base:n&&Oo(bl(n),{initialization:bl(l)})};return Object.keys(c).forEach(function(e){c[e]||delete c[e]}),c},El=function(e,t,r){return function(i){var n,a=bl(i),s=wl(t,gl(i,"BaseURL")),o=gl(i,"Role")[0],l={role:bl(o)},u=Oo(e,a,l),c=gl(i,"Accessibility")[0],d="urn:scte:dash:cc:cea-608:2015"===(n=bl(c)).schemeIdUri?("string"!=typeof n.value?[]:n.value.split(";")).map(function(e){var t,r;if(r=e,/^CC\d=/.test(e)){var i=e.split("=");t=i[0],r=i[1]}else/^CC\d$/.test(e)&&(t=e);return{channel:t,language:r}}):"urn:scte:dash:cc:cea-708:2015"===n.schemeIdUri?("string"!=typeof n.value?[]:n.value.split(";")).map(function(e){var t={channel:void 0,language:void 0,aspectRatio:1,easyReader:0,"3D":0};if(/=/.test(e)){var r=e.split("="),i=r[0],n=r[1],a=void 0===n?"":n;t.channel=i,t.language=e,a.split(",").forEach(function(e){var r=e.split(":"),i=r[0],n=r[1];"lang"===i?t.language=n:"er"===i?t.easyReader=Number(n):"war"===i?t.aspectRatio=Number(n):"3D"===i&&(t["3D"]=Number(n))})}else t.language=e;return t.channel&&(t.channel="SERVICE"+t.channel),t}):void 0;d&&(u=Oo(u,{captionServices:d}));var h=gl(i,"Label")[0];if(h&&h.childNodes.length){var p=h.childNodes[0].nodeValue.trim();u=Oo(u,{label:p})}var f=gl(i,"ContentProtection").reduce(function(e,t){var r=bl(t),i=Tl[r.schemeIdUri];if(i){e[i]={attributes:r};var n=gl(t,"cenc:pssh")[0];if(n){var a=vl(n),s=a&&ba(a);e[i].pssh=s}}return e},{});Object.keys(f).length&&(u=Oo(u,{contentProtection:f}));var m=Sl(i),g=gl(i,"Representation"),v=Oo(r,m);return Lo(g.map(function(e,t,r){return function(i){var n=gl(i,"BaseURL"),a=wl(t,n),s=Oo(e,bl(i)),o=Sl(i);return a.map(function(e){return{segmentInfo:Oo(r,o),attributes:Oo(s,{baseUrl:e})}})}}(u,s,v)))}},kl=function(e,t){return function(r,i){var n=wl(t,gl(r.node,"BaseURL")),a=Oo(e,{periodStart:r.attributes.start});"number"==typeof r.attributes.duration&&(a.periodDuration=r.attributes.duration);var s=gl(r.node,"AdaptationSet"),o=Sl(r.node);return Lo(s.map(El(a,n,o)))}},Cl=function(e){if(""===e)throw new Error(Uo);var t,r,i=new Io;try{r=(t=i.parseFromString(e,"application/xml"))&&"MPD"===t.documentElement.tagName?t.documentElement:null}catch(e){}if(!r||r&&r.getElementsByTagName("parsererror").length>0)throw new Error(Bo);return r},Pl=function(e,t){void 0===t&&(t={});var r=function(e,t){void 0===t&&(t={});var r=t,i=r.manifestUri,n=void 0===i?"":i,a=r.NOW,s=void 0===a?Date.now():a,o=r.clientOffset,l=void 0===o?0:o,u=gl(e,"Period");if(!u.length)throw new Error(No);var c=gl(e,"Location"),d=bl(e),h=wl([n],gl(e,"BaseURL"));d.type=d.type||"static",d.sourceDuration=d.mediaPresentationDuration||0,d.NOW=s,d.clientOffset=l,c.length&&(d.locations=c.map(vl));var p=[];return u.forEach(function(e,t){var r=bl(e),i=p[t-1];r.start=function(e){var t=e.attributes,r=e.priorPeriodAttributes,i=e.mpdType;return"number"==typeof t.start?t.start:r&&"number"==typeof r.start&&"number"==typeof r.duration?r.start+r.duration:r||"static"!==i?null:0}({attributes:r,priorPeriodAttributes:i?i.attributes:null,mpdType:d.type}),p.push({node:e,attributes:r})}),{locations:d.locations,representationInfo:Lo(p.map(kl(d,h)))}}(Cl(e),t),i=r.representationInfo.map(ml);return ll({dashPlaylists:i,locations:r.locations,sidxMapping:t.sidxMapping,previousManifest:t.previousManifest})},xl=function(e){return function(e){var t=gl(e,"UTCTiming")[0];if(!t)return null;var r=bl(t);switch(r.schemeIdUri){case"urn:mpeg:dash:utc:http-head:2014":case"urn:mpeg:dash:utc:http-head:2012":r.method="HEAD";break;case"urn:mpeg:dash:utc:http-xsdate:2014":case"urn:mpeg:dash:utc:http-iso:2014":case"urn:mpeg:dash:utc:http-xsdate:2012":case"urn:mpeg:dash:utc:http-iso:2012":r.method="GET";break;case"urn:mpeg:dash:utc:direct:2014":case"urn:mpeg:dash:utc:direct:2012":r.method="DIRECT",r.value=Date.parse(r.value);break;default:throw new Error(Vo)}return r}(Cl(e))},Il=Math.pow(2,32),Al=function(e){var t,r=new DataView(e.buffer,e.byteOffset,e.byteLength);return r.getBigUint64?(t=r.getBigUint64(0))0;i+=12,n--)r.references.push({referenceType:(128&e[i])>>>7,referencedSize:2147483647&t.getUint32(i),subsegmentDuration:t.getUint32(i+4),startsWithSap:!!(128&e[i+8]),sapType:(112&e[i+8])>>>4,sapDeltaTime:268435455&t.getUint32(i+8)});return r},Dl=function(e){return e instanceof Uint8Array?e:(Array.isArray(e)||(t=e,ArrayBuffer.isView(t))||e instanceof ArrayBuffer||(e="number"!=typeof e||"number"==typeof e&&e!=e?0:[e]),new Uint8Array(e&&e.buffer||e,e&&e.byteOffset||0,e&&e.byteLength||0));var t},Ll=window.BigInt||Number,Rl=[Ll("0x1"),Ll("0x100"),Ll("0x10000"),Ll("0x1000000"),Ll("0x100000000"),Ll("0x10000000000"),Ll("0x1000000000000"),Ll("0x100000000000000"),Ll("0x10000000000000000")],Ml=function(e,t){var r=void 0===t?{}:t,i=r.signed,n=void 0!==i&&i,a=r.le,s=void 0!==a&&a;e=Dl(e);var o=s?"reduce":"reduceRight",l=(e[o]?e[o]:Array.prototype[o]).call(e,function(t,r,i){var n=s?i:Math.abs(i+1-e.length);return t+Ll(r)*Rl[n]},Ll(0));if(n){var u=Rl[e.length]/Ll(2)-Ll(1);(l=Ll(l))>u&&(l-=u,l-=u,l-=Ll(2))}return Number(l)},Nl=function(e,t){var r=(void 0===t?{}:t).le,i=void 0!==r&&r;("bigint"!=typeof e&&"number"!=typeof e||"number"==typeof e&&e!=e)&&(e=0),e=Ll(e);for(var n,a=(n=e,Math.ceil(function(e){return e.toString(2).length}(n)/8)),s=new Uint8Array(new ArrayBuffer(a)),o=0;o=t.length&&l.call(t,function(t,r){return t===(o[r]?o[r]&e[a+r]:e[a+r])})},Fl=Dl([73,68,51]),jl=function e(t,r){return void 0===r&&(r=0),(t=Dl(t)).length-r<10||!Bl(t,Fl,{offset:r})?r:(r+=function(e,t){void 0===t&&(t=0);var r=(e=Dl(e))[t+5],i=e[t+6]<<21|e[t+7]<<14|e[t+8]<<7|e[t+9];return(16&r)>>4?i+20:i+10}(t,r),e(t,r))},Vl=function(e){return"string"==typeof e?Ul(e):e},Hl=function e(t,r,i){void 0===i&&(i=!1),r=function(e){return Array.isArray(e)?e.map(function(e){return Vl(e)}):[Vl(e)]}(r),t=Dl(t);var n=[];if(!r.length)return n;for(var a=0;a>>0,o=t.subarray(a+4,a+8);if(0===s)break;var l=a+s;if(l>t.length){if(i)break;l=t.length}var u=t.subarray(a+8,l);Bl(o,r[0])&&(1===r.length?n.push(u):n.push.apply(n,e(u,r.slice(1),i))),a=l}return n},ql={EBML:Dl([26,69,223,163]),DocType:Dl([66,130]),Segment:Dl([24,83,128,103]),SegmentInfo:Dl([21,73,169,102]),Tracks:Dl([22,84,174,107]),Track:Dl([174]),TrackNumber:Dl([215]),DefaultDuration:Dl([35,227,131]),TrackEntry:Dl([174]),TrackType:Dl([131]),FlagDefault:Dl([136]),CodecID:Dl([134]),CodecPrivate:Dl([99,162]),VideoTrack:Dl([224]),AudioTrack:Dl([225]),Cluster:Dl([31,67,182,117]),Timestamp:Dl([231]),TimestampScale:Dl([42,215,177]),BlockGroup:Dl([160]),BlockDuration:Dl([155]),Block:Dl([161]),SimpleBlock:Dl([163])},$l=[128,64,32,16,8,4,2,1],zl=function(e,t,r,i){void 0===r&&(r=!0),void 0===i&&(i=!1);var n=function(e){for(var t=1,r=0;r<$l.length&&!(e&$l[r]);r++)t++;return t}(e[t]),a=e.subarray(t,t+n);return r&&((a=Array.prototype.slice.call(e,t,t+n))[0]^=$l[n-1]),{length:n,value:Ml(a,{signed:i}),bytes:a}},Wl=function e(t){return"string"==typeof t?t.match(/.{1,2}/g).map(function(t){return e(t)}):"number"==typeof t?Nl(t):t},Gl=function e(t,r,i){if(i>=r.length)return r.length;var n=zl(r,i,!1);if(Bl(t.bytes,n.bytes))return i;var a=zl(r,i+n.length);return e(t,r,i+a.length+a.value+n.length)},Xl=function e(t,r){r=function(e){return Array.isArray(e)?e.map(function(e){return Wl(e)}):[Wl(e)]}(r),t=Dl(t);var i=[];if(!r.length)return i;for(var n=0;nt.length?t.length:o+s.value,u=t.subarray(o,l);Bl(r[0],a.bytes)&&(1===r.length?i.push(u):i=i.concat(e(u,r.slice(1)))),n+=a.length+s.length+u.length}return i},Kl=Dl([0,0,0,1]),Ql=Dl([0,0,1]),Yl=Dl([0,0,3]),Jl=function(e){for(var t=[],r=1;r>1&63),-1!==r.indexOf(l)&&(n=a+o),a+=o+("h264"===t?1:2)}else a++}return e.subarray(0,0)},eu={webm:Dl([119,101,98,109]),matroska:Dl([109,97,116,114,111,115,107,97]),flac:Dl([102,76,97,67]),ogg:Dl([79,103,103,83]),ac3:Dl([11,119]),riff:Dl([82,73,70,70]),avi:Dl([65,86,73]),wav:Dl([87,65,86,69]),"3gp":Dl([102,116,121,112,51,103]),mp4:Dl([102,116,121,112]),fmp4:Dl([115,116,121,112]),mov:Dl([102,116,121,112,113,116]),moov:Dl([109,111,111,118]),moof:Dl([109,111,111,102])},tu={aac:function(e){var t=jl(e);return Bl(e,[255,16],{offset:t,mask:[255,22]})},mp3:function(e){var t=jl(e);return Bl(e,[255,2],{offset:t,mask:[255,6]})},webm:function(e){var t=Xl(e,[ql.EBML,ql.DocType])[0];return Bl(t,eu.webm)},mkv:function(e){var t=Xl(e,[ql.EBML,ql.DocType])[0];return Bl(t,eu.matroska)},mp4:function(e){return!tu["3gp"](e)&&!tu.mov(e)&&(!(!Bl(e,eu.mp4,{offset:4})&&!Bl(e,eu.fmp4,{offset:4}))||(!(!Bl(e,eu.moof,{offset:4})&&!Bl(e,eu.moov,{offset:4}))||void 0))},mov:function(e){return Bl(e,eu.mov,{offset:4})},"3gp":function(e){return Bl(e,eu["3gp"],{offset:4})},ac3:function(e){var t=jl(e);return Bl(e,eu.ac3,{offset:t})},ts:function(e){if(e.length<189&&e.length>=1)return 71===e[0];for(var t=0;t+188"):function(){}},fu=1/30,mu=.1,gu=function(e,t){var r,i=[];if(e&&e.length)for(r=0;r=t})},yu=function(e,t){return gu(e,function(e){return e-fu>=t})},_u=function(e){var t=[];if(!e||!e.length)return"";for(var r=0;r "+e.end(r));return t.join(", ")},bu=function(e){for(var t=[],r=0;ra||(r+=t>n&&t<=a?a-t:a-n)}return r},Su=pa.createTimeRange,Eu=function(e,t){if(!t.preload)return t.duration;var r=0;return(t.parts||[]).forEach(function(e){r+=e.duration}),(t.preloadHints||[]).forEach(function(t){"PART"===t.type&&(r+=e.partTargetDuration)}),r},ku=function(e){return(e.segments||[]).reduce(function(e,t,r){return t.parts?t.parts.forEach(function(i,n){e.push({duration:i.duration,segmentIndex:r,partIndex:n,part:i,segment:t})}):e.push({duration:t.duration,segmentIndex:r,partIndex:null,segment:t,part:null}),e},[])},Cu=function(e){var t=e.segments&&e.segments.length&&e.segments[e.segments.length-1];return t&&t.parts||[]},Pu=function(e){var t=e.preloadSegment;if(t){var r=t.parts,i=(t.preloadHints||[]).reduce(function(e,t){return e+("PART"===t.type?1:0)},0);return i+=r&&r.length?r.length:0}},xu=function(e,t){if(t.endList)return 0;if(e&&e.suggestedPresentationDelay)return e.suggestedPresentationDelay;var r=Cu(t).length>0;return r&&t.serverControl&&t.serverControl.partHoldBack?t.serverControl.partHoldBack:r&&t.partTargetDuration?3*t.partTargetDuration:t.serverControl&&t.serverControl.holdBack?t.serverControl.holdBack:t.targetDuration?3*t.targetDuration:0},Iu=function(e,t,r){if(void 0===t&&(t=e.mediaSequence+e.segments.length),tn){var s=[n,i];i=s[0],n=s[1]}if(i<0){for(var o=i;oDate.now()},Ru=function(e){return e.excludeUntil&&e.excludeUntil===1/0},Mu=function(e){var t=Lu(e);return!e.disabled&&!t},Nu=function(e,t){return t.attributes&&t.attributes[e]},Uu=function(e,t){if(1===e.playlists.length)return!0;var r=t.attributes.BANDWIDTH||Number.MAX_VALUE;return 0===e.playlists.filter(function(e){return!!Mu(e)&&(e.attributes.BANDWIDTH||0)0)for(var h=u-1;h>=0;h--){var p=l[h];if(o+=p.duration,s){if(o<0)continue}else if(o+fu<=0)continue;return{partIndex:p.partIndex,segmentIndex:p.segmentIndex,startTime:a-Ou({defaultDuration:t.targetDuration,durationList:l,startIndex:u,endIndex:h})}}return{partIndex:l[0]&&l[0].partIndex||null,segmentIndex:l[0]&&l[0].segmentIndex||0,startTime:r}}if(u<0){for(var f=u;f<0;f++)if((o-=t.targetDuration)<0)return{partIndex:l[0]&&l[0].partIndex||null,segmentIndex:l[0]&&l[0].segmentIndex||0,startTime:r};u=0}for(var m=u;m0)continue}else if(o-fu>=0)continue;return{partIndex:g.partIndex,segmentIndex:g.segmentIndex,startTime:a+Ou({defaultDuration:t.targetDuration,durationList:l,startIndex:u,endIndex:m})}}return{segmentIndex:l[l.length-1].segmentIndex,partIndex:l[l.length-1].partIndex,startTime:r}},isEnabled:Mu,isDisabled:function(e){return e.disabled},isBlacklisted:Lu,isIncompatible:Ru,playlistEnd:Du,isAes:function(e){for(var t=0;t-1&&s!==a.length-1&&(r._HLS_part=s),(s>-1||a.length)&&n--}r._HLS_msn=n}if(t.serverControl&&t.serverControl.canSkipUntil&&(r._HLS_skip=t.serverControl.canSkipDateranges?"v2":"YES"),Object.keys(r).length){var o=new window.URL(e);["_HLS_skip","_HLS_msn","_HLS_part"].forEach(function(e){r.hasOwnProperty(e)&&o.searchParams.set(e,r[e])}),e=o.toString()}return e}(r,t)),this.state="HAVE_CURRENT_METADATA",this.request=this.vhs_.xhr({uri:r,withCredentials:this.withCredentials},function(t,r){if(e.request)return t?e.playlistRequestError(e.request,e.media(),"HAVE_METADATA"):void e.haveMetadata({playlistString:e.request.responseText,url:e.media().uri,id:e.media().id})})}},r.playlistRequestError=function(e,t,r){var i=t.uri,n=t.id;this.request=null,r&&(this.state=r),this.error={playlist:this.master.playlists[n],status:e.status,message:"HLS playlist request error at URL: "+i+".",responseText:e.responseText,code:e.status>=500?4:2},this.trigger("error")},r.parseManifest_=function(e){var t=this,r=e.url;return function(e){var t=e.onwarn,r=e.oninfo,i=e.manifestString,n=e.customTagParsers,a=void 0===n?[]:n,s=e.customTagMappers,o=void 0===s?[]:s,l=e.experimentalLLHLS,u=new xa;t&&u.on("warn",t),r&&u.on("info",r),a.forEach(function(e){return u.addParser(e)}),o.forEach(function(e){return u.addTagMapper(e)}),u.push(i),u.end();var c=u.manifest;if(l||(["preloadSegment","skip","serverControl","renditionReports","partInf","partTargetDuration"].forEach(function(e){c.hasOwnProperty(e)&&delete c[e]}),c.segments&&c.segments.forEach(function(e){["parts","preloadHints"].forEach(function(t){e.hasOwnProperty(t)&&delete e[t]})})),!c.targetDuration){var d=10;c.segments&&c.segments.length&&(d=c.segments.reduce(function(e,t){return Math.max(e,t.duration)},0)),t&&t("manifest has no targetDuration defaulting to "+d),c.targetDuration=d}var h=Cu(c);if(h.length&&!c.partTargetDuration){var p=h.reduce(function(e,t){return Math.max(e,t.duration)},0);t&&(t("manifest has no partTargetDuration defaulting to "+p),Hu.error("LL-HLS manifest has parts but lacks required #EXT-X-PART-INF:PART-TARGET value. See https://datatracker.ietf.org/doc/html/draft-pantos-hls-rfc8216bis-09#section-4.4.3.7. Playback is not guaranteed.")),c.partTargetDuration=p}return c}({onwarn:function(e){var i=e.message;return t.logger_("m3u8-parser warn for "+r+": "+i)},oninfo:function(e){var i=e.message;return t.logger_("m3u8-parser info for "+r+": "+i)},manifestString:e.manifestString,customTagParsers:this.customTagParsers,customTagMappers:this.customTagMappers,experimentalLLHLS:this.experimentalLLHLS})},r.haveMetadata=function(e){var t=e.playlistString,r=e.playlistObject,i=e.url,n=e.id;this.request=null,this.state="HAVE_METADATA";var a=r||this.parseManifest_({url:i,manifestString:t});a.lastRequest=Date.now(),zu({playlist:a,uri:i,id:n});var s=Zu(this.master,a);this.targetDuration=a.partTargetDuration||a.targetDuration,this.pendingMedia_=null,s?(this.master=s,this.media_=this.master.playlists[n]):this.trigger("playlistunchanged"),this.updateMediaUpdateTimeout_(ec(this.media(),!!s)),this.trigger("loadedplaylist")},r.dispose=function(){this.trigger("dispose"),this.stopRequest(),window.clearTimeout(this.mediaUpdateTimeout),window.clearTimeout(this.finalRenditionTimeout),this.off()},r.stopRequest=function(){if(this.request){var e=this.request;this.request=null,e.onreadystatechange=null,e.abort()}},r.media=function(e,t){var r=this;if(!e)return this.media_;if("HAVE_NOTHING"===this.state)throw new Error("Cannot switch media playlist from "+this.state);if("string"==typeof e){if(!this.master.playlists[e])throw new Error("Unknown playlist URI: "+e);e=this.master.playlists[e]}if(window.clearTimeout(this.finalRenditionTimeout),t){var i=(e.partTargetDuration||e.targetDuration)/2*1e3||5e3;this.finalRenditionTimeout=window.setTimeout(this.media.bind(this,e,!1),i)}else{var n=this.state,a=!this.media_||e.id!==this.media_.id,s=this.master.playlists[e.id];if(s&&s.endList||e.endList&&e.segments.length)return this.request&&(this.request.onreadystatechange=null,this.request.abort(),this.request=null),this.state="HAVE_METADATA",this.media_=e,void(a&&(this.trigger("mediachanging"),"HAVE_MASTER"===n?this.trigger("loadedmetadata"):this.trigger("mediachange")));if(this.updateMediaUpdateTimeout_(ec(e,!0)),a){if(this.state="SWITCHING_MEDIA",this.request){if(e.resolvedUri===this.request.url)return;this.request.onreadystatechange=null,this.request.abort(),this.request=null}this.media_&&this.trigger("mediachanging"),this.pendingMedia_=e,this.request=this.vhs_.xhr({uri:e.resolvedUri,withCredentials:this.withCredentials},function(t,i){if(r.request){if(e.lastRequest=Date.now(),e.resolvedUri=hu(r.handleManifestRedirects,e.resolvedUri,i),t)return r.playlistRequestError(r.request,e,n);r.haveMetadata({playlistString:i.responseText,url:e.uri,id:e.id}),"HAVE_MASTER"===n?r.trigger("loadedmetadata"):r.trigger("mediachange")}})}}},r.pause=function(){this.mediaUpdateTimeout&&(window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null),this.stopRequest(),"HAVE_NOTHING"===this.state&&(this.started=!1),"SWITCHING_MEDIA"===this.state?this.media_?this.state="HAVE_METADATA":this.state="HAVE_MASTER":"HAVE_CURRENT_METADATA"===this.state&&(this.state="HAVE_METADATA")},r.load=function(e){var t=this;this.mediaUpdateTimeout&&(window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null);var r=this.media();if(e){var i=r?(r.partTargetDuration||r.targetDuration)/2*1e3:5e3;this.mediaUpdateTimeout=window.setTimeout(function(){t.mediaUpdateTimeout=null,t.load()},i)}else this.started?r&&!r.endList?this.trigger("mediaupdatetimeout"):this.trigger("loadedplaylist"):this.start()},r.updateMediaUpdateTimeout_=function(e){var t=this;this.mediaUpdateTimeout&&(window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null),this.media()&&!this.media().endList&&(this.mediaUpdateTimeout=window.setTimeout(function(){t.mediaUpdateTimeout=null,t.trigger("mediaupdatetimeout"),t.updateMediaUpdateTimeout_(e)},e))},r.start=function(){var e=this;if(this.started=!0,"object"==typeof this.src)return this.src.uri||(this.src.uri=window.location.href),this.src.resolvedUri=this.src.uri,void setTimeout(function(){e.setupInitialPlaylist(e.src)},0);this.request=this.vhs_.xhr({uri:this.src,withCredentials:this.withCredentials},function(t,r){if(e.request){if(e.request=null,t)return e.error={status:r.status,message:"HLS playlist request error at URL: "+e.src+".",responseText:r.responseText,code:2},"HAVE_NOTHING"===e.state&&(e.started=!1),e.trigger("error");e.src=hu(e.handleManifestRedirects,e.src,r);var i=e.parseManifest_({manifestString:r.responseText,url:e.src});e.setupInitialPlaylist(i)}})},r.srcUri=function(){return"string"==typeof this.src?this.src:this.src.uri},r.setupInitialPlaylist=function(e){if(this.state="HAVE_MASTER",e.playlists)return this.master=e,Wu(this.master,this.srcUri()),e.playlists.forEach(function(e){e.segments=Yu(e),e.segments.forEach(function(t){Qu(t,e.resolvedUri)})}),this.trigger("loadedplaylist"),void(this.request||this.media(this.master.playlists[0]));var t=this.srcUri()||window.location.href;this.master=function(e,t){var r=qu(0,t),i={mediaGroups:{AUDIO:{},VIDEO:{},"CLOSED-CAPTIONS":{},SUBTITLES:{}},uri:window.location.href,resolvedUri:window.location.href,playlists:[{uri:t,id:r,resolvedUri:t,attributes:{}}]};return i.playlists[r]=i.playlists[0],i.playlists[t]=i.playlists[0],i}(0,t),this.haveMetadata({playlistObject:e,url:t,id:this.master.playlists[0].id}),this.trigger("loadedmetadata")},t}(Xu),rc=pa.xhr,ic=pa.mergeOptions,nc=function(e,t,r,i){var n="arraybuffer"===e.responseType?e.response:e.responseText;!t&&n&&(e.responseTime=Date.now(),e.roundTripTime=e.responseTime-e.requestTime,e.bytesReceived=n.byteLength||n.length,e.bandwidth||(e.bandwidth=Math.floor(e.bytesReceived/e.roundTripTime*8*1e3))),r.headers&&(e.responseHeaders=r.headers),t&&"ETIMEDOUT"===t.code&&(e.timedout=!0),t||e.aborted||200===r.statusCode||206===r.statusCode||0===r.statusCode||(t=new Error("XHR Failed with a response of: "+(e&&(n||e.responseText)))),i(t,e)},ac=function(){var e=function e(t,r){t=ic({timeout:45e3},t);var i=e.beforeRequest||pa.Vhs.xhr.beforeRequest;if(i&&"function"==typeof i){var n=i(t);n&&(t=n)}var a=(!0===pa.Vhs.xhr.original?rc:pa.Vhs.xhr)(t,function(e,t){return nc(a,e,t,r)}),s=a.abort;return a.abort=function(){return a.aborted=!0,s.apply(a,arguments)},a.uri=t.uri,a.requestTime=Date.now(),a};return e.original=!0,e},sc=function(e){var t,r={};return e.byterange&&(r.Range="bytes="+(t=e.byterange).offset+"-"+("bigint"==typeof t.offset||"bigint"==typeof t.length?window.BigInt(t.offset)+window.BigInt(t.length)-window.BigInt(1):t.offset+t.length-1)),r},oc=function(e,t){return e.start(t)+"-"+e.end(t)},lc=function(e,t){var r=e.toString(16);return"00".substring(0,2-r.length)+r+(t%2?" ":"")},uc=function(e){return e>=32&&e<126?String.fromCharCode(e):"."},cc=function(e){var t={};return Object.keys(e).forEach(function(r){var i=e[r];ArrayBuffer.isView(i)?t[r]={bytes:i.buffer,byteOffset:i.byteOffset,byteLength:i.byteLength}:t[r]=i}),t},dc=function(e){var t=e.byterange||{length:1/0,offset:0};return[t.length,t.offset,e.resolvedUri].join(",")},hc=function(e){return e.resolvedUri},pc=function(e){for(var t=Array.prototype.slice.call(e),r=16,i="",n=0;ni){if(e>i+.25*a.duration)return null;r=a}return{segment:r,estimatedStart:r.videoTimingInfo?r.videoTimingInfo.transmuxedPresentationStart:i-r.duration,type:r.videoTimingInfo?"accurate":"estimate"}}(i,t);if(!a)return n({message:"valid programTime was not found"});if("estimate"===a.type)return n({message:"Accurate programTime could not be determined. Please seek to e.seekTime and try again",seekTime:a.estimatedStart});var s={mediaSeconds:i},o=function(e,t){if(!t.dateTimeObject)return null;var r=t.videoTimingInfo.transmuxerPrependedSeconds,i=e-(t.videoTimingInfo.transmuxedPresentationStart+r);return new Date(t.dateTimeObject.getTime()+1e3*i)}(i,a.segment);return o&&(s.programDateTime=o.toISOString()),n(null,s)},gc=function e(t){var r=t.programTime,i=t.playlist,n=t.retryCount,a=void 0===n?2:n,s=t.seekTo,o=t.pauseAfterSeek,l=void 0===o||o,u=t.tech,c=t.callback;if(!c)throw new Error("seekToProgramTime: callback must be provided");if(void 0===r||!i||!s)return c({message:"seekToProgramTime: programTime, seekTo and playlist must be provided"});if(!i.endList&&!u.hasStarted_)return c({message:"player must be playing a live stream to start buffering"});if(!function(e){if(!e.segments||0===e.segments.length)return!1;for(var t=0;tnew Date(o.getTime()+1e3*l)?null:(r>o&&(i=s),{segment:i,estimatedStart:i.videoTimingInfo?i.videoTimingInfo.transmuxedPresentationStart:Vu.duration(t,t.mediaSequence+t.segments.indexOf(i)),type:i.videoTimingInfo?"accurate":"estimate"})}(r,i);if(!d)return c({message:r+" was not found in the stream"});var h=d.segment,p=function(e,t){var r,i;try{r=new Date(e),i=new Date(t)}catch(e){}var n=r.getTime();return(i.getTime()-n)/1e3}(h.dateTimeObject,r);if("estimate"===d.type)return 0===a?c({message:r+" is not buffered yet. Try again"}):(s(d.estimatedStart+p),void u.one("seeked",function(){e({programTime:r,playlist:i,retryCount:a-1,seekTo:s,pauseAfterSeek:l,tech:u,callback:c})}));var f=h.start+p;u.one("seeked",function(){return c(null,u.currentTime())}),l&&u.pause(),s(f)},vc=function(e,t){if(4===e.readyState)return t()},yc=function(e,t,r){var i,n=[],a=!1,s=function(e,t,i,n){return t.abort(),a=!0,r(e,t,i,n)},o=function(e,t){if(!a){if(e)return s(e,t,"",n);var r=t.responseText.substring(n&&n.byteLength||0,t.responseText.length);if(n=function(){for(var e=arguments.length,t=new Array(e),r=0;r=c+u)return s(t,{response:o.subarray(u,u+c),status:r.status,uri:r.uri});i.request=i.vhs_.xhr({uri:a,responseType:"arraybuffer",headers:sc({byterange:e.sidx.byterange})},s)})}else this.mediaRequest_=window.setTimeout(function(){return r(!1)},0)},r.dispose=function(){this.trigger("dispose"),this.stopRequest(),this.loadedPlaylists_={},window.clearTimeout(this.minimumUpdatePeriodTimeout_),window.clearTimeout(this.mediaRequest_),window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null,this.mediaRequest_=null,this.minimumUpdatePeriodTimeout_=null,this.masterPlaylistLoader_.createMupOnMedia_&&(this.off("loadedmetadata",this.masterPlaylistLoader_.createMupOnMedia_),this.masterPlaylistLoader_.createMupOnMedia_=null),this.off()},r.hasPendingRequest=function(){return this.request||this.mediaRequest_},r.stopRequest=function(){if(this.request){var e=this.request;this.request=null,e.onreadystatechange=null,e.abort()}},r.media=function(e){var t=this;if(!e)return this.media_;if("HAVE_NOTHING"===this.state)throw new Error("Cannot switch media playlist from "+this.state);var r=this.state;if("string"==typeof e){if(!this.masterPlaylistLoader_.master.playlists[e])throw new Error("Unknown playlist URI: "+e);e=this.masterPlaylistLoader_.master.playlists[e]}var i=!this.media_||e.id!==this.media_.id;if(i&&this.loadedPlaylists_[e.id]&&this.loadedPlaylists_[e.id].endList)return this.state="HAVE_METADATA",this.media_=e,void(i&&(this.trigger("mediachanging"),this.trigger("mediachange")));i&&(this.media_&&this.trigger("mediachanging"),this.addSidxSegments_(e,r,function(i){t.haveMetadata({startingState:r,playlist:e})}))},r.haveMetadata=function(e){var t=e.startingState,r=e.playlist;this.state="HAVE_METADATA",this.loadedPlaylists_[r.id]=r,this.mediaRequest_=null,this.refreshMedia_(r.id),"HAVE_MASTER"===t?this.trigger("loadedmetadata"):this.trigger("mediachange")},r.pause=function(){this.masterPlaylistLoader_.createMupOnMedia_&&(this.off("loadedmetadata",this.masterPlaylistLoader_.createMupOnMedia_),this.masterPlaylistLoader_.createMupOnMedia_=null),this.stopRequest(),window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null,this.isMaster_&&(window.clearTimeout(this.masterPlaylistLoader_.minimumUpdatePeriodTimeout_),this.masterPlaylistLoader_.minimumUpdatePeriodTimeout_=null),"HAVE_NOTHING"===this.state&&(this.started=!1)},r.load=function(e){var t=this;window.clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null;var r=this.media();if(e){var i=r?r.targetDuration/2*1e3:5e3;this.mediaUpdateTimeout=window.setTimeout(function(){return t.load()},i)}else this.started?r&&!r.endList?(this.isMaster_&&!this.minimumUpdatePeriodTimeout_&&(this.trigger("minimumUpdatePeriod"),this.updateMinimumUpdatePeriodTimeout_()),this.trigger("mediaupdatetimeout")):this.trigger("loadedplaylist"):this.start()},r.start=function(){var e=this;this.started=!0,this.isMaster_?this.requestMaster_(function(t,r){e.haveMaster_(),e.hasPendingRequest()||e.media_||e.media(e.masterPlaylistLoader_.master.playlists[0])}):this.mediaRequest_=window.setTimeout(function(){return e.haveMaster_()},0)},r.requestMaster_=function(e){var t=this;this.request=this.vhs_.xhr({uri:this.masterPlaylistLoader_.srcUrl,withCredentials:this.withCredentials},function(r,i){if(!t.requestErrored_(r,i)){var n=i.responseText!==t.masterPlaylistLoader_.masterXml_;return t.masterPlaylistLoader_.masterXml_=i.responseText,i.responseHeaders&&i.responseHeaders.date?t.masterLoaded_=Date.parse(i.responseHeaders.date):t.masterLoaded_=Date.now(),t.masterPlaylistLoader_.srcUrl=hu(t.handleManifestRedirects,t.masterPlaylistLoader_.srcUrl,i),n?(t.handleMaster_(),void t.syncClientServerClock_(function(){return e(i,n)})):e(i,n)}"HAVE_NOTHING"===t.state&&(t.started=!1)})},r.syncClientServerClock_=function(e){var t=this,r=xl(this.masterPlaylistLoader_.masterXml_);return null===r?(this.masterPlaylistLoader_.clientOffset_=this.masterLoaded_-Date.now(),e()):"DIRECT"===r.method?(this.masterPlaylistLoader_.clientOffset_=r.value-Date.now(),e()):void(this.request=this.vhs_.xhr({uri:du(this.masterPlaylistLoader_.srcUrl,r.value),method:r.method,withCredentials:this.withCredentials},function(i,n){if(t.request){if(i)return t.masterPlaylistLoader_.clientOffset_=t.masterLoaded_-Date.now(),e();var a;a="HEAD"===r.method?n.responseHeaders&&n.responseHeaders.date?Date.parse(n.responseHeaders.date):t.masterLoaded_:Date.parse(n.responseText),t.masterPlaylistLoader_.clientOffset_=a-Date.now(),e()}}))},r.haveMaster_=function(){this.state="HAVE_MASTER",this.isMaster_?this.trigger("loadedplaylist"):this.media_||this.media(this.childPlaylist_)},r.handleMaster_=function(){this.mediaRequest_=null;var e,t,r,i,n,a,s,o=this.masterPlaylistLoader_.master,l=(e={masterXml:this.masterPlaylistLoader_.masterXml_,srcUrl:this.masterPlaylistLoader_.srcUrl,clientOffset:this.masterPlaylistLoader_.clientOffset_,sidxMapping:this.masterPlaylistLoader_.sidxMapping_,previousManifest:o},t=e.masterXml,r=e.srcUrl,i=e.clientOffset,n=e.sidxMapping,a=e.previousManifest,s=Pl(t,{manifestUri:r,clientOffset:i,sidxMapping:n,previousManifest:a}),Wu(s,r),s);o&&(l=function(e,t,r){for(var i=!0,n=bc(e,{duration:t.duration,minimumUpdatePeriod:t.minimumUpdatePeriod,timelineStarts:t.timelineStarts}),a=0;a-1)},this.trigger=function(t){var r,i,n,a;if(r=e[t])if(2===arguments.length)for(n=r.length,i=0;i>>1,e.samplingfrequencyindex<<7|e.channelcount<<3,6,1,2]))},m=function(e){return t(w.hdlr,x[e])},f=function(e){var r=new Uint8Array([0,0,0,0,0,0,0,2,0,0,0,3,0,1,95,144,e.duration>>>24&255,e.duration>>>16&255,e.duration>>>8&255,255&e.duration,85,196,0,0]);return e.samplerate&&(r[12]=e.samplerate>>>24&255,r[13]=e.samplerate>>>16&255,r[14]=e.samplerate>>>8&255,r[15]=255&e.samplerate),t(w.mdhd,r)},p=function(e){return t(w.mdia,f(e),m(e.type),s(e))},a=function(e){return t(w.mfhd,new Uint8Array([0,0,0,0,(4278190080&e)>>24,(16711680&e)>>16,(65280&e)>>8,255&e]))},s=function(e){return t(w.minf,"video"===e.type?t(w.vmhd,I):t(w.smhd,A),r(),v(e))},o=function(e,r){for(var i=[],n=r.length;n--;)i[n]=_(r[n]);return t.apply(null,[w.moof,a(e)].concat(i))},l=function(e){for(var r=e.length,i=[];r--;)i[r]=d(e[r]);return t.apply(null,[w.moov,c(4294967295)].concat(i).concat(u(e)))},u=function(e){for(var r=e.length,i=[];r--;)i[r]=b(e[r]);return t.apply(null,[w.mvex].concat(i))},c=function(e){var r=new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,2,0,1,95,144,(4278190080&e)>>24,(16711680&e)>>16,(65280&e)>>8,255&e,0,1,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,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,255,255,255]);return t(w.mvhd,r)},g=function(e){var r,i,n=e.samples||[],a=new Uint8Array(4+n.length);for(i=0;i>>8),s.push(255&n[r].byteLength),s=s.concat(Array.prototype.slice.call(n[r]));for(r=0;r>>8),o.push(255&a[r].byteLength),o=o.concat(Array.prototype.slice.call(a[r]));if(i=[w.avc1,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(65280&e.width)>>8,255&e.width,(65280&e.height)>>8,255&e.height,0,72,0,0,0,72,0,0,0,0,0,0,0,1,19,118,105,100,101,111,106,115,45,99,111,110,116,114,105,98,45,104,108,115,0,0,0,0,0,0,0,0,0,0,0,0,0,24,17,17]),t(w.avcC,new Uint8Array([1,e.profileIdc,e.profileCompatibility,e.levelIdc,255].concat([n.length],s,[a.length],o))),t(w.btrt,new Uint8Array([0,28,156,128,0,45,198,192,0,45,198,192]))],e.sarRatio){var l=e.sarRatio[0],u=e.sarRatio[1];i.push(t(w.pasp,new Uint8Array([(4278190080&l)>>24,(16711680&l)>>16,(65280&l)>>8,255&l,(4278190080&u)>>24,(16711680&u)>>16,(65280&u)>>8,255&u])))}return t.apply(null,i)},U=function(e){return t(w.mp4a,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,(65280&e.channelcount)>>8,255&e.channelcount,(65280&e.samplesize)>>8,255&e.samplesize,0,0,0,0,(65280&e.samplerate)>>8,255&e.samplerate,0,0]),i(e))},h=function(e){var r=new Uint8Array([0,0,0,7,0,0,0,0,0,0,0,0,(4278190080&e.id)>>24,(16711680&e.id)>>16,(65280&e.id)>>8,255&e.id,0,0,0,0,(4278190080&e.duration)>>24,(16711680&e.duration)>>16,(65280&e.duration)>>8,255&e.duration,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,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,64,0,0,0,(65280&e.width)>>8,255&e.width,0,0,(65280&e.height)>>8,255&e.height,0,0]);return t(w.tkhd,r)},_=function(e){var r,i,n,a,s,o;return r=t(w.tfhd,new Uint8Array([0,0,0,58,(4278190080&e.id)>>24,(16711680&e.id)>>16,(65280&e.id)>>8,255&e.id,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0])),s=Math.floor(e.baseMediaDecodeTime/$),o=Math.floor(e.baseMediaDecodeTime%$),i=t(w.tfdt,new Uint8Array([1,0,0,0,s>>>24&255,s>>>16&255,s>>>8&255,255&s,o>>>24&255,o>>>16&255,o>>>8&255,255&o])),92,"audio"===e.type?(n=T(e,92),t(w.traf,r,i,n)):(a=g(e),n=T(e,a.length+92),t(w.traf,r,i,n,a))},d=function(e){return e.duration=e.duration||4294967295,t(w.trak,h(e),p(e))},b=function(e){var r=new Uint8Array([0,0,0,0,(4278190080&e.id)>>24,(16711680&e.id)>>16,(65280&e.id)>>8,255&e.id,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1]);return"video"!==e.type&&(r[r.length-1]=0),t(w.trex,r)},j=function(e,t){var r=0,i=0,n=0,a=0;return e.length&&(void 0!==e[0].duration&&(r=1),void 0!==e[0].size&&(i=2),void 0!==e[0].flags&&(n=4),void 0!==e[0].compositionTimeOffset&&(a=8)),[0,0,r|i|n|a,1,(4278190080&e.length)>>>24,(16711680&e.length)>>>16,(65280&e.length)>>>8,255&e.length,(4278190080&t)>>>24,(16711680&t)>>>16,(65280&t)>>>8,255&t]},F=function(e,r){var i,n,a,s,o,l;for(r+=20+16*(s=e.samples||[]).length,a=j(s,r),(n=new Uint8Array(a.length+16*s.length)).set(a),i=a.length,l=0;l>>24,n[i++]=(16711680&o.duration)>>>16,n[i++]=(65280&o.duration)>>>8,n[i++]=255&o.duration,n[i++]=(4278190080&o.size)>>>24,n[i++]=(16711680&o.size)>>>16,n[i++]=(65280&o.size)>>>8,n[i++]=255&o.size,n[i++]=o.flags.isLeading<<2|o.flags.dependsOn,n[i++]=o.flags.isDependedOn<<6|o.flags.hasRedundancy<<4|o.flags.paddingValue<<1|o.flags.isNonSyncSample,n[i++]=61440&o.flags.degradationPriority,n[i++]=15&o.flags.degradationPriority,n[i++]=(4278190080&o.compositionTimeOffset)>>>24,n[i++]=(16711680&o.compositionTimeOffset)>>>16,n[i++]=(65280&o.compositionTimeOffset)>>>8,n[i++]=255&o.compositionTimeOffset;return t(w.trun,n)},B=function(e,r){var i,n,a,s,o,l;for(r+=20+8*(s=e.samples||[]).length,a=j(s,r),(i=new Uint8Array(a.length+8*s.length)).set(a),n=a.length,l=0;l>>24,i[n++]=(16711680&o.duration)>>>16,i[n++]=(65280&o.duration)>>>8,i[n++]=255&o.duration,i[n++]=(4278190080&o.size)>>>24,i[n++]=(16711680&o.size)>>>16,i[n++]=(65280&o.size)>>>8,i[n++]=255&o.size;return t(w.trun,i)},T=function(e,t){return"audio"===e.type?B(e,t):F(e,t)};n=function(){return t(w.ftyp,S,E,S,k)};var z,W,G,X,K,Q,Y,J,Z=function(e){return t(w.mdat,e)},ee=o,te=function(e){var t,r=n(),i=l(e);return(t=new Uint8Array(r.byteLength+i.byteLength)).set(r),t.set(i,r.byteLength),t},re=function(e,t){var r={size:0,flags:{isLeading:0,dependsOn:1,isDependedOn:0,hasRedundancy:0,degradationPriority:0,isNonSyncSample:1}};return r.dataOffset=t,r.compositionTimeOffset=e.pts-e.dts,r.duration=e.duration,r.size=4*e.length,r.size+=e.byteLength,e.keyFrame&&(r.flags.dependsOn=2,r.flags.isNonSyncSample=0),r},ie=function(e){var t,r,i=[],n=[];for(n.byteLength=0,n.nalCount=0,n.duration=0,i.byteLength=0,t=0;t1&&(t=e.shift(),e.byteLength-=t.byteLength,e.nalCount-=t.nalCount,e[0][0].dts=t.dts,e[0][0].pts=t.pts,e[0][0].duration+=t.duration),e},se=function(e,t){var r,i,n,a,s,o=t||0,l=[];for(r=0;rpe/2))){for((s=de()[e.samplerate])||(s=t[0].data),o=0;o=r?e:(t.minSegmentDts=1/0,e.filter(function(e){return e.dts>=r&&(t.minSegmentDts=Math.min(t.minSegmentDts,e.dts),t.minSegmentPts=t.minSegmentDts,!0)}))},Te=function(e){var t,r,i=[];for(t=0;t=this.virtualRowCount&&"function"==typeof this.beforeRowOverflow&&this.beforeRowOverflow(e),this.rows.length>0&&(this.rows.push(""),this.rowIdx++);this.rows.length>this.virtualRowCount;)this.rows.shift(),this.rowIdx--},Me.prototype.isEmpty=function(){return 0===this.rows.length||1===this.rows.length&&""===this.rows[0]},Me.prototype.addText=function(e){this.rows[this.rowIdx]+=e},Me.prototype.backspace=function(){if(!this.isEmpty()){var e=this.rows[this.rowIdx];this.rows[this.rowIdx]=e.substr(0,e.length-1)}};var Ne=function(e,t,r){this.serviceNum=e,this.text="",this.currentWindow=new Me(-1),this.windows=[],this.stream=r,"string"==typeof t&&this.createTextDecoder(t)};Ne.prototype.init=function(e,t){this.startPts=e;for(var r=0;r<8;r++)this.windows[r]=new Me(r),"function"==typeof t&&(this.windows[r].beforeRowOverflow=t)},Ne.prototype.setCurrentWindow=function(e){this.currentWindow=this.windows[e]},Ne.prototype.createTextDecoder=function(e){if("undefined"==typeof TextDecoder)this.stream.trigger("log",{level:"warn",message:"The `encoding` option is unsupported without TextDecoder support"});else try{this.textDecoder_=new TextDecoder(e)}catch(t){this.stream.trigger("log",{level:"warn",message:"TextDecoder could not be created with "+e+" encoding. "+t})}};var Ue=function e(t){t=t||{},e.prototype.init.call(this);var r,i=this,n=t.captionServices||{},a={};Object.keys(n).forEach(function(e){r=n[e],/^SERVICE/.test(e)&&(a[e]=r.encoding)}),this.serviceEncodings=a,this.current708Packet=null,this.services={},this.push=function(e){3===e.type?(i.new708Packet(),i.add708Bytes(e)):(null===i.current708Packet&&i.new708Packet(),i.add708Bytes(e))}};Ue.prototype=new V,Ue.prototype.new708Packet=function(){null!==this.current708Packet&&this.push708Packet(),this.current708Packet={data:[],ptsVals:[]}},Ue.prototype.add708Bytes=function(e){var t=e.ccData,r=t>>>8,i=255&t;this.current708Packet.ptsVals.push(e.pts),this.current708Packet.data.push(r),this.current708Packet.data.push(i)},Ue.prototype.push708Packet=function(){var e=this.current708Packet,t=e.data,r=null,i=null,n=0,a=t[n++];for(e.seq=a>>6,e.sizeCode=63&a;n>5)&&i>0&&(r=a=t[n++]),this.pushServiceBlock(r,n,i),i>0&&(n+=i-1)},Ue.prototype.pushServiceBlock=function(e,t,r){var i,n=t,a=this.current708Packet.data,s=this.services[e];for(s||(s=this.initService(e,n));n>5,a.rowLock=(16&i)>>4,a.columnLock=(8&i)>>3,a.priority=7&i,i=r[++e],a.relativePositioning=(128&i)>>7,a.anchorVertical=127&i,i=r[++e],a.anchorHorizontal=i,i=r[++e],a.anchorPoint=(240&i)>>4,a.rowCount=15&i,i=r[++e],a.columnCount=63&i,i=r[++e],a.windowStyle=(56&i)>>3,a.penStyle=7&i,a.virtualRowCount=a.rowCount+1,e},Ue.prototype.setWindowAttributes=function(e,t){var r=this.current708Packet.data,i=r[e],n=t.currentWindow.winAttr;return i=r[++e],n.fillOpacity=(192&i)>>6,n.fillRed=(48&i)>>4,n.fillGreen=(12&i)>>2,n.fillBlue=3&i,i=r[++e],n.borderType=(192&i)>>6,n.borderRed=(48&i)>>4,n.borderGreen=(12&i)>>2,n.borderBlue=3&i,i=r[++e],n.borderType+=(128&i)>>5,n.wordWrap=(64&i)>>6,n.printDirection=(48&i)>>4,n.scrollDirection=(12&i)>>2,n.justify=3&i,i=r[++e],n.effectSpeed=(240&i)>>4,n.effectDirection=(12&i)>>2,n.displayEffect=3&i,e},Ue.prototype.flushDisplayed=function(e,t){for(var r=[],i=0;i<8;i++)t.windows[i].visible&&!t.windows[i].isEmpty()&&r.push(t.windows[i].getText());t.endPts=e,t.text=r.join("\n\n"),this.pushCaption(t),t.startPts=e},Ue.prototype.pushCaption=function(e){""!==e.text&&(this.trigger("data",{startPts:e.startPts,endPts:e.endPts,text:e.text,stream:"cc708_"+e.serviceNum}),e.text="",e.startPts=e.endPts)},Ue.prototype.displayWindows=function(e,t){var r=this.current708Packet.data[++e],i=this.getPts(e);this.flushDisplayed(i,t);for(var n=0;n<8;n++)r&1<>4,n.offset=(12&i)>>2,n.penSize=3&i,i=r[++e],n.italics=(128&i)>>7,n.underline=(64&i)>>6,n.edgeType=(56&i)>>3,n.fontStyle=7&i,e},Ue.prototype.setPenColor=function(e,t){var r=this.current708Packet.data,i=r[e],n=t.currentWindow.penColor;return i=r[++e],n.fgOpacity=(192&i)>>6,n.fgRed=(48&i)>>4,n.fgGreen=(12&i)>>2,n.fgBlue=3&i,i=r[++e],n.bgOpacity=(192&i)>>6,n.bgRed=(48&i)>>4,n.bgGreen=(12&i)>>2,n.bgBlue=3&i,i=r[++e],n.edgeRed=(48&i)>>4,n.edgeGreen=(12&i)>>2,n.edgeBlue=3&i,e},Ue.prototype.setPenLocation=function(e,t){var r=this.current708Packet.data,i=r[e],n=t.currentWindow.penLoc;return t.currentWindow.pendingNewLine=!0,i=r[++e],n.row=15&i,i=r[++e],n.column=63&i,e},Ue.prototype.reset=function(e,t){var r=this.getPts(e);return this.flushDisplayed(r,t),this.initService(t.serviceNum,e)};var Be={42:225,92:233,94:237,95:243,96:250,123:231,124:247,125:209,126:241,127:9608,304:174,305:176,306:189,307:191,308:8482,309:162,310:163,311:9834,312:224,313:160,314:232,315:226,316:234,317:238,318:244,319:251,544:193,545:201,546:211,547:218,548:220,549:252,550:8216,551:161,552:42,553:39,554:8212,555:169,556:8480,557:8226,558:8220,559:8221,560:192,561:194,562:199,563:200,564:202,565:203,566:235,567:206,568:207,569:239,570:212,571:217,572:249,573:219,574:171,575:187,800:195,801:227,802:205,803:204,804:236,805:210,806:242,807:213,808:245,809:123,810:125,811:92,812:94,813:95,814:124,815:126,816:196,817:228,818:214,819:246,820:223,821:165,822:164,823:9474,824:197,825:229,826:216,827:248,828:9484,829:9488,830:9492,831:9496},Fe=function(e){return null===e?"":(e=Be[e]||e,String.fromCharCode(e))},je=[4352,4384,4608,4640,5376,5408,5632,5664,5888,5920,4096,4864,4896,5120,5152],Ve=function(){for(var e=[],t=15;t--;)e.push("");return e},He=function e(t,r){e.prototype.init.call(this),this.field_=t||0,this.dataChannel_=r||0,this.name_="CC"+(1+(this.field_<<1|this.dataChannel_)),this.setConstants(),this.reset(),this.push=function(e){var t,r,i,n,a;if((t=32639&e.ccData)!==this.lastControlCode_){if(4096==(61440&t)?this.lastControlCode_=t:t!==this.PADDING_&&(this.lastControlCode_=null),i=t>>>8,n=255&t,t!==this.PADDING_)if(t===this.RESUME_CAPTION_LOADING_)this.mode_="popOn";else if(t===this.END_OF_CAPTION_)this.mode_="popOn",this.clearFormatting(e.pts),this.flushDisplayed(e.pts),r=this.displayed_,this.displayed_=this.nonDisplayed_,this.nonDisplayed_=r,this.startPts_=e.pts;else if(t===this.ROLL_UP_2_ROWS_)this.rollUpRows_=2,this.setRollUp(e.pts);else if(t===this.ROLL_UP_3_ROWS_)this.rollUpRows_=3,this.setRollUp(e.pts);else if(t===this.ROLL_UP_4_ROWS_)this.rollUpRows_=4,this.setRollUp(e.pts);else if(t===this.CARRIAGE_RETURN_)this.clearFormatting(e.pts),this.flushDisplayed(e.pts),this.shiftRowsUp_(),this.startPts_=e.pts;else if(t===this.BACKSPACE_)"popOn"===this.mode_?this.nonDisplayed_[this.row_]=this.nonDisplayed_[this.row_].slice(0,-1):this.displayed_[this.row_]=this.displayed_[this.row_].slice(0,-1);else if(t===this.ERASE_DISPLAYED_MEMORY_)this.flushDisplayed(e.pts),this.displayed_=Ve();else if(t===this.ERASE_NON_DISPLAYED_MEMORY_)this.nonDisplayed_=Ve();else if(t===this.RESUME_DIRECT_CAPTIONING_)"paintOn"!==this.mode_&&(this.flushDisplayed(e.pts),this.displayed_=Ve()),this.mode_="paintOn",this.startPts_=e.pts;else if(this.isSpecialCharacter(i,n))a=Fe((i=(3&i)<<8)|n),this[this.mode_](e.pts,a),this.column_++;else if(this.isExtCharacter(i,n))"popOn"===this.mode_?this.nonDisplayed_[this.row_]=this.nonDisplayed_[this.row_].slice(0,-1):this.displayed_[this.row_]=this.displayed_[this.row_].slice(0,-1),a=Fe((i=(3&i)<<8)|n),this[this.mode_](e.pts,a),this.column_++;else if(this.isMidRowCode(i,n))this.clearFormatting(e.pts),this[this.mode_](e.pts," "),this.column_++,14==(14&n)&&this.addFormatting(e.pts,["i"]),1==(1&n)&&this.addFormatting(e.pts,["u"]);else if(this.isOffsetControlCode(i,n))this.column_+=3&n;else if(this.isPAC(i,n)){var s=je.indexOf(7968&t);"rollUp"===this.mode_&&(s-this.rollUpRows_+1<0&&(s=this.rollUpRows_-1),this.setRollUp(e.pts,s)),s!==this.row_&&(this.clearFormatting(e.pts),this.row_=s),1&n&&-1===this.formatting_.indexOf("u")&&this.addFormatting(e.pts,["u"]),16==(16&t)&&(this.column_=4*((14&t)>>1)),this.isColorPAC(n)&&14==(14&n)&&this.addFormatting(e.pts,["i"])}else this.isNormalChar(i)&&(0===n&&(n=null),a=Fe(i),a+=Fe(n),this[this.mode_](e.pts,a),this.column_+=a.length)}else this.lastControlCode_=null}};He.prototype=new V,He.prototype.flushDisplayed=function(e){var t=this.displayed_.map(function(e,t){try{return e.trim()}catch(e){return this.trigger("log",{level:"warn",message:"Skipping a malformed 608 caption at index "+t+"."}),""}},this).join("\n").replace(/^\n+|\n+$/g,"");t.length&&this.trigger("data",{startPts:this.startPts_,endPts:e,text:t,stream:this.name_})},He.prototype.reset=function(){this.mode_="popOn",this.topRow_=0,this.startPts_=0,this.displayed_=Ve(),this.nonDisplayed_=Ve(),this.lastControlCode_=null,this.column_=0,this.row_=14,this.rollUpRows_=2,this.formatting_=[]},He.prototype.setConstants=function(){0===this.dataChannel_?(this.BASE_=16,this.EXT_=17,this.CONTROL_=(20|this.field_)<<8,this.OFFSET_=23):1===this.dataChannel_&&(this.BASE_=24,this.EXT_=25,this.CONTROL_=(28|this.field_)<<8,this.OFFSET_=31),this.PADDING_=0,this.RESUME_CAPTION_LOADING_=32|this.CONTROL_,this.END_OF_CAPTION_=47|this.CONTROL_,this.ROLL_UP_2_ROWS_=37|this.CONTROL_,this.ROLL_UP_3_ROWS_=38|this.CONTROL_,this.ROLL_UP_4_ROWS_=39|this.CONTROL_,this.CARRIAGE_RETURN_=45|this.CONTROL_,this.RESUME_DIRECT_CAPTIONING_=41|this.CONTROL_,this.BACKSPACE_=33|this.CONTROL_,this.ERASE_DISPLAYED_MEMORY_=44|this.CONTROL_,this.ERASE_NON_DISPLAYED_MEMORY_=46|this.CONTROL_},He.prototype.isSpecialCharacter=function(e,t){return e===this.EXT_&&t>=48&&t<=63},He.prototype.isExtCharacter=function(e,t){return(e===this.EXT_+1||e===this.EXT_+2)&&t>=32&&t<=63},He.prototype.isMidRowCode=function(e,t){return e===this.EXT_&&t>=32&&t<=47},He.prototype.isOffsetControlCode=function(e,t){return e===this.OFFSET_&&t>=33&&t<=35},He.prototype.isPAC=function(e,t){return e>=this.BASE_&&e=64&&t<=127},He.prototype.isColorPAC=function(e){return e>=64&&e<=79||e>=96&&e<=127},He.prototype.isNormalChar=function(e){return e>=32&&e<=127},He.prototype.setRollUp=function(e,t){if("rollUp"!==this.mode_&&(this.row_=14,this.mode_="rollUp",this.flushDisplayed(e),this.nonDisplayed_=Ve(),this.displayed_=Ve()),void 0!==t&&t!==this.row_)for(var r=0;r"},"");this[this.mode_](e,r)},He.prototype.clearFormatting=function(e){if(this.formatting_.length){var t=this.formatting_.reverse().reduce(function(e,t){return e+""},"");this.formatting_=[],this[this.mode_](e,t)}},He.prototype.popOn=function(e,t){var r=this.nonDisplayed_[this.row_];r+=t,this.nonDisplayed_[this.row_]=r},He.prototype.rollUp=function(e,t){var r=this.displayed_[this.row_];r+=t,this.displayed_[this.row_]=r},He.prototype.shiftRowsUp_=function(){var e;for(e=0;et&&(r=-1);Math.abs(t-e)>4294967296;)e+=8589934592*r;return e},Ge=function e(t){var r,i;e.prototype.init.call(this),this.type_=t||ze,this.push=function(e){this.type_!==ze&&e.type!==this.type_||(void 0===i&&(i=e.dts),e.dts=We(e.dts,i),e.pts=We(e.pts,i),r=e.dts,this.trigger("data",e))},this.flush=function(){i=r,this.trigger("done")},this.endTimeline=function(){this.flush(),this.trigger("endedtimeline")},this.discontinuity=function(){i=void 0,r=void 0},this.reset=function(){this.discontinuity(),this.trigger("reset")}};Ge.prototype=new V;var Xe,Ke=Ge,Qe=We,Ye=function(e,t,r){var i,n="";for(i=t;i>>2;c*=4,c+=3&u[7],o.timeStamp=c,void 0===t.pts&&void 0===t.dts&&(t.pts=o.timeStamp,t.dts=o.timeStamp),this.trigger("timestamp",o)}t.frames.push(o),r+=10,r+=s}while(r>>4>1&&(i+=t[i]+1),0===r.pid)r.type="pat",e(t.subarray(i),r),this.trigger("data",r);else if(r.pid===this.pmtPid)for(r.type="pmt",e(t.subarray(i),r),this.trigger("data",r);this.packetsWaitingForPmt.length;)this.processPes_.apply(this,this.packetsWaitingForPmt.shift());else void 0===this.programMapTable?this.packetsWaitingForPmt.push([t,i,r]):this.processPes_(t,i,r)},this.processPes_=function(e,t,r){r.pid===this.programMapTable.video?r.streamType=$e.H264_STREAM_TYPE:r.pid===this.programMapTable.audio?r.streamType=$e.ADTS_STREAM_TYPE:r.streamType=this.programMapTable["timed-metadata"][r.pid],r.type="pes",r.data=e.subarray(t),this.trigger("data",r)}},rt.prototype=new V,rt.STREAM_TYPES={h264:27,adts:15},it=function(){var e,t=this,r=!1,i={data:[],size:0},n={data:[],size:0},a={data:[],size:0},s=function(e,r,i){var n,a,s=new Uint8Array(e.size),o={type:r},l=0,u=0;if(e.data.length&&!(e.size<9)){for(o.trackId=e.data[0].pid,l=0;l>>3,d.pts*=4,d.pts+=(6&c[13])>>>1,d.dts=d.pts,64&h&&(d.dts=(14&c[14])<<27|(255&c[15])<<20|(254&c[16])<<12|(255&c[17])<<5|(254&c[18])>>>3,d.dts*=4,d.dts+=(6&c[18])>>>1)),d.data=c.subarray(9+c[8])),n="video"===r||o.packetLength<=e.size,(i||n)&&(e.size=0,e.data.length=0),n&&t.trigger("data",o)}};it.prototype.init.call(this),this.push=function(o){({pat:function(){},pes:function(){var e,t;switch(o.streamType){case $e.H264_STREAM_TYPE:e=i,t="video";break;case $e.ADTS_STREAM_TYPE:e=n,t="audio";break;case $e.METADATA_STREAM_TYPE:e=a,t="timed-metadata";break;default:return}o.payloadUnitStartIndicator&&s(e,t,!0),e.data.push(o),e.size+=o.data.byteLength},pmt:function(){var i={type:"metadata",tracks:[]};null!==(e=o.programMapTable).video&&i.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+e.video,codec:"avc",type:"video"}),null!==e.audio&&i.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+e.audio,codec:"adts",type:"audio"}),r=!0,t.trigger("data",i)}})[o.type]()},this.reset=function(){i.size=0,i.data.length=0,n.size=0,n.data.length=0,this.trigger("reset")},this.flushStreams_=function(){s(i,"video"),s(n,"audio"),s(a,"timed-metadata")},this.flush=function(){if(!r&&e){var i={type:"metadata",tracks:[]};null!==e.video&&i.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+e.video,codec:"avc",type:"video"}),null!==e.audio&&i.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+e.audio,codec:"adts",type:"audio"}),t.trigger("data",i)}r=!1,this.flushStreams_(),this.trigger("done")}},it.prototype=new V;var ot={PAT_PID:0,MP2T_PACKET_LENGTH:st,TransportPacketStream:tt,TransportParseStream:rt,ElementaryStream:it,TimestampRolloverStream:at,CaptionStream:qe.CaptionStream,Cea608Stream:qe.Cea608Stream,Cea708Stream:qe.Cea708Stream,MetadataStream:nt};for(var lt in $e)$e.hasOwnProperty(lt)&&(ot[lt]=$e[lt]);var ut,ct=ot,dt=pe,ht=[96e3,88200,64e3,48e3,44100,32e3,24e3,22050,16e3,12e3,11025,8e3,7350];ut=function(e){var t,r=0;ut.prototype.init.call(this),this.skipWarn_=function(e,t){this.trigger("log",{level:"warn",message:"adts skiping bytes "+e+" to "+t+" in frame "+r+" outside syncword"})},this.push=function(i){var n,a,s,o,l,u=0;if(e||(r=0),"audio"===i.type){var c;for(t&&t.length?(s=t,(t=new Uint8Array(s.byteLength+i.data.byteLength)).set(s),t.set(i.data,s.byteLength)):t=i.data;u+7>5,l=(o=1024*(1+(3&t[u+6])))*dt/ht[(60&t[u+2])>>>2],t.byteLength-u>>6&3),channelcount:(1&t[u+2])<<2|(192&t[u+3])>>>6,samplerate:ht[(60&t[u+2])>>>2],samplingfrequencyindex:(60&t[u+2])>>>2,samplesize:16,data:t.subarray(u+7+a,u+n)}),r++,u+=n}else"number"!=typeof c&&(c=u),u++;"number"==typeof c&&(this.skipWarn_(c,u),c=null),t=t.subarray(u)}},this.flush=function(){r=0,this.trigger("done")},this.reset=function(){t=void 0,this.trigger("reset")},this.endTimeline=function(){t=void 0,this.trigger("endedtimeline")}},ut.prototype=new V;var pt,ft=ut;pt=function(e){var t=e.byteLength,r=0,i=0;this.length=function(){return 8*t},this.bitsAvailable=function(){return 8*t+i},this.loadWord=function(){var n=e.byteLength-t,a=new Uint8Array(4),s=Math.min(4,t);if(0===s)throw new Error("no bytes available");a.set(e.subarray(n,n+s)),r=new DataView(a.buffer).getUint32(0),i=8*s,t-=s},this.skipBits=function(e){var n;i>e?(r<<=e,i-=e):(e-=i,e-=8*(n=Math.floor(e/8)),t-=n,this.loadWord(),r<<=e,i-=e)},this.readBits=function(e){var n=Math.min(i,e),a=r>>>32-n;return(i-=n)>0?r<<=n:t>0&&this.loadWord(),(n=e-n)>0?a<>>e))return r<<=e,i-=e,e;return this.loadWord(),e+this.skipLeadingZeros()},this.skipUnsignedExpGolomb=function(){this.skipBits(1+this.skipLeadingZeros())},this.skipExpGolomb=function(){this.skipBits(1+this.skipLeadingZeros())},this.readUnsignedExpGolomb=function(){var e=this.skipLeadingZeros();return this.readBits(e+1)-1},this.readExpGolomb=function(){var e=this.readUnsignedExpGolomb();return 1&e?1+e>>>1:-1*(e>>>1)},this.readBoolean=function(){return 1===this.readBits(1)},this.readUnsignedByte=function(){return this.readBits(8)},this.loadWord()};var mt,gt,vt,yt=pt;gt=function(){var e,t,r=0;gt.prototype.init.call(this),this.push=function(i){var n;t?((n=new Uint8Array(t.byteLength+i.data.byteLength)).set(t),n.set(i.data,t.byteLength),t=n):t=i.data;for(var a=t.byteLength;r3&&this.trigger("data",t.subarray(r+3)),t=null,r=0,this.trigger("done")},this.endTimeline=function(){this.flush(),this.trigger("endedtimeline")}},gt.prototype=new V,vt={100:!0,110:!0,122:!0,244:!0,44:!0,83:!0,86:!0,118:!0,128:!0,138:!0,139:!0,134:!0},mt=function(){var e,t,r,i,n,a,s,o=new gt;mt.prototype.init.call(this),e=this,this.push=function(e){"video"===e.type&&(t=e.trackId,r=e.pts,i=e.dts,o.push(e))},o.on("data",function(s){var o={trackId:t,pts:r,dts:i,data:s,nalUnitTypeCode:31&s[0]};switch(o.nalUnitTypeCode){case 5:o.nalUnitType="slice_layer_without_partitioning_rbsp_idr";break;case 6:o.nalUnitType="sei_rbsp",o.escapedRBSP=n(s.subarray(1));break;case 7:o.nalUnitType="seq_parameter_set_rbsp",o.escapedRBSP=n(s.subarray(1)),o.config=a(o.escapedRBSP);break;case 8:o.nalUnitType="pic_parameter_set_rbsp";break;case 9:o.nalUnitType="access_unit_delimiter_rbsp"}e.trigger("data",o)}),o.on("done",function(){e.trigger("done")}),o.on("partialdone",function(){e.trigger("partialdone")}),o.on("reset",function(){e.trigger("reset")}),o.on("endedtimeline",function(){e.trigger("endedtimeline")}),this.flush=function(){o.flush()},this.partialFlush=function(){o.partialFlush()},this.reset=function(){o.reset()},this.endTimeline=function(){o.endTimeline()},s=function(e,t){var r,i=8,n=8;for(r=0;r=0?r:0,(16&e[t+5])>>4?r+20:r+10},St=function e(t,r){return t.length-r<10||t[r]!=="I".charCodeAt(0)||t[r+1]!=="D".charCodeAt(0)||t[r+2]!=="3".charCodeAt(0)?r:e(t,r+=wt(t,r))},Et=function(e){return e[0]<<21|e[1]<<14|e[2]<<7|e[3]},kt={isLikelyAacData:function(e){var t=St(e,0);return e.length>=t+2&&255==(255&e[t])&&240==(240&e[t+1])&&16==(22&e[t+1])},parseId3TagSize:wt,parseAdtsSize:function(e,t){var r=(224&e[t+5])>>5,i=e[t+4]<<3;return 6144&e[t+3]|i|r},parseType:function(e,t){return e[t]==="I".charCodeAt(0)&&e[t+1]==="D".charCodeAt(0)&&e[t+2]==="3".charCodeAt(0)?"timed-metadata":!0&e[t]&&240==(240&e[t+1])?"audio":null},parseSampleRate:function(e){for(var t=0;t+5>>2];t++}return null},parseAacTimestamp:function(e){var t,r,i;t=10,64&e[5]&&(t+=4,t+=Et(e.subarray(10,14)));do{if((r=Et(e.subarray(t+4,t+8)))<1)return null;if("PRIV"===String.fromCharCode(e[t],e[t+1],e[t+2],e[t+3])){i=e.subarray(t+10,t+r+10);for(var n=0;n>>2;return o*=4,o+=3&s[7]}break}}t+=10,t+=r}while(t=3;)if(e[l]!=="I".charCodeAt(0)||e[l+1]!=="D".charCodeAt(0)||e[l+2]!=="3".charCodeAt(0))if(255!=(255&e[l])||240!=(240&e[l+1]))l++;else{if(e.length-l<7)break;if(l+(o=kt.parseAdtsSize(e,l))>e.length)break;a={type:"audio",data:e.subarray(l,l+o),pts:t,dts:t},this.trigger("data",a),l+=o}else{if(e.length-l<10)break;if(l+(o=kt.parseId3TagSize(e,l))>e.length)break;n={type:"timed-metadata",data:e.subarray(l,l+o)},this.trigger("data",n),l+=o}i=e.length-l,e=i>0?e.subarray(l):new Uint8Array},this.reset=function(){e=new Uint8Array,this.trigger("reset")},this.endTimeline=function(){e=new Uint8Array,this.trigger("endedtimeline")}}).prototype=new V;var Ct,Pt,xt,It,At=_t,Ot=["audioobjecttype","channelcount","samplerate","samplingfrequencyindex","samplesize"],Dt=["width","height","profileIdc","levelIdc","profileCompatibility","sarRatio"],Lt=bt.H264Stream,Rt=kt.isLikelyAacData,Mt=pe,Nt=function(e,t){t.stream=e,this.trigger("log",t)},Ut=function(e,t){for(var r=Object.keys(t),i=0;i=-1e4&&r<=45e3&&(!i||o>r)&&(i=a,o=r));return i?i.gop:null},this.alignGopsAtStart_=function(e){var t,r,i,n,a,o,l,u;for(a=e.byteLength,o=e.nalCount,l=e.duration,t=r=0;ti.pts?t++:(r++,a-=n.byteLength,o-=n.nalCount,l-=n.duration);return 0===r?e:r===e.length?null:((u=e.slice(r)).byteLength=a,u.duration=l,u.nalCount=o,u.pts=u[0].pts,u.dts=u[0].dts,u)},this.alignGopsAtEnd_=function(e){var t,r,i,n,a,o,l;for(t=s.length-1,r=e.length-1,a=null,o=!1;t>=0&&r>=0;){if(i=s[t],n=e[r],i.pts===n.pts){o=!0;break}i.pts>n.pts?t--:(t===s.length-1&&(a=r),r--)}if(!o&&null===a)return null;if(0===(l=o?r:a))return e;var u=e.slice(l),c=u.reduce(function(e,t){return e.byteLength+=t.byteLength,e.duration+=t.duration,e.nalCount+=t.nalCount,e},{byteLength:0,duration:0,nalCount:0});return u.byteLength=c.byteLength,u.duration=c.duration,u.nalCount=c.nalCount,u.pts=u[0].pts,u.dts=u[0].dts,u},this.alignGopsWith=function(e){s=e}},Ct.prototype=new V,It=function(e,t){this.numberOfTracks=0,this.metadataStream=t,void 0!==(e=e||{}).remux?this.remuxTracks=!!e.remux:this.remuxTracks=!0,"boolean"==typeof e.keepOriginalTimestamps?this.keepOriginalTimestamps=e.keepOriginalTimestamps:this.keepOriginalTimestamps=!1,this.pendingTracks=[],this.videoTrack=null,this.pendingBoxes=[],this.pendingCaptions=[],this.pendingMetadata=[],this.pendingBytes=0,this.emittedTracks=0,It.prototype.init.call(this),this.push=function(e){return e.text?this.pendingCaptions.push(e):e.frames?this.pendingMetadata.push(e):(this.pendingTracks.push(e.track),this.pendingBytes+=e.boxes.byteLength,"video"===e.track.type&&(this.videoTrack=e.track,this.pendingBoxes.push(e.boxes)),void("audio"===e.track.type&&(this.audioTrack=e.track,this.pendingBoxes.unshift(e.boxes))))}},It.prototype=new V,It.prototype.flush=function(e){var t,r,i,n,a=0,s={captions:[],captionStreams:{},metadata:[],info:{}},o=0;if(this.pendingTracks.length=this.numberOfTracks&&(this.trigger("done"),this.emittedTracks=0))}if(this.videoTrack?(o=this.videoTrack.timelineStartInfo.pts,Dt.forEach(function(e){s.info[e]=this.videoTrack[e]},this)):this.audioTrack&&(o=this.audioTrack.timelineStartInfo.pts,Ot.forEach(function(e){s.info[e]=this.audioTrack[e]},this)),this.videoTrack||this.audioTrack){for(1===this.pendingTracks.length?s.type=this.pendingTracks[0].type:s.type="combined",this.emittedTracks+=this.pendingTracks.length,i=te(this.pendingTracks),s.initSegment=new Uint8Array(i.byteLength),s.initSegment.set(i),s.data=new Uint8Array(this.pendingBytes),n=0;n=this.numberOfTracks&&(this.trigger("done"),this.emittedTracks=0)},It.prototype.setRemux=function(e){this.remuxTracks=e},xt=function(e){var t,r,i=this,n=!0;xt.prototype.init.call(this),e=e||{},this.baseMediaDecodeTime=e.baseMediaDecodeTime||0,this.transmuxPipeline_={},this.setupAacPipeline=function(){var n={};this.transmuxPipeline_=n,n.type="aac",n.metadataStream=new ct.MetadataStream,n.aacStream=new At,n.audioTimestampRolloverStream=new ct.TimestampRolloverStream("audio"),n.timedMetadataTimestampRolloverStream=new ct.TimestampRolloverStream("timed-metadata"),n.adtsStream=new ft,n.coalesceStream=new It(e,n.metadataStream),n.headOfPipeline=n.aacStream,n.aacStream.pipe(n.audioTimestampRolloverStream).pipe(n.adtsStream),n.aacStream.pipe(n.timedMetadataTimestampRolloverStream).pipe(n.metadataStream).pipe(n.coalesceStream),n.metadataStream.on("timestamp",function(e){n.aacStream.setTimestamp(e.timeStamp)}),n.aacStream.on("data",function(a){"timed-metadata"!==a.type&&"audio"!==a.type||n.audioSegmentStream||(r=r||{timelineStartInfo:{baseMediaDecodeTime:i.baseMediaDecodeTime},codec:"adts",type:"audio"},n.coalesceStream.numberOfTracks++,n.audioSegmentStream=new Pt(r,e),n.audioSegmentStream.on("log",i.getLogTrigger_("audioSegmentStream")),n.audioSegmentStream.on("timingInfo",i.trigger.bind(i,"audioTimingInfo")),n.adtsStream.pipe(n.audioSegmentStream).pipe(n.coalesceStream),i.trigger("trackinfo",{hasAudio:!!r,hasVideo:!!t}))}),n.coalesceStream.on("data",this.trigger.bind(this,"data")),n.coalesceStream.on("done",this.trigger.bind(this,"done")),Ut(this,n)},this.setupTsPipeline=function(){var n={};this.transmuxPipeline_=n,n.type="ts",n.metadataStream=new ct.MetadataStream,n.packetStream=new ct.TransportPacketStream,n.parseStream=new ct.TransportParseStream,n.elementaryStream=new ct.ElementaryStream,n.timestampRolloverStream=new ct.TimestampRolloverStream,n.adtsStream=new ft,n.h264Stream=new Lt,n.captionStream=new ct.CaptionStream(e),n.coalesceStream=new It(e,n.metadataStream),n.headOfPipeline=n.packetStream,n.packetStream.pipe(n.parseStream).pipe(n.elementaryStream).pipe(n.timestampRolloverStream),n.timestampRolloverStream.pipe(n.h264Stream),n.timestampRolloverStream.pipe(n.adtsStream),n.timestampRolloverStream.pipe(n.metadataStream).pipe(n.coalesceStream),n.h264Stream.pipe(n.captionStream).pipe(n.coalesceStream),n.elementaryStream.on("data",function(a){var s;if("metadata"===a.type){for(s=a.tracks.length;s--;)t||"video"!==a.tracks[s].type?r||"audio"!==a.tracks[s].type||((r=a.tracks[s]).timelineStartInfo.baseMediaDecodeTime=i.baseMediaDecodeTime):(t=a.tracks[s]).timelineStartInfo.baseMediaDecodeTime=i.baseMediaDecodeTime;t&&!n.videoSegmentStream&&(n.coalesceStream.numberOfTracks++,n.videoSegmentStream=new Ct(t,e),n.videoSegmentStream.on("log",i.getLogTrigger_("videoSegmentStream")),n.videoSegmentStream.on("timelineStartInfo",function(t){r&&!e.keepOriginalTimestamps&&(r.timelineStartInfo=t,n.audioSegmentStream.setEarliestDts(t.dts-i.baseMediaDecodeTime))}),n.videoSegmentStream.on("processedGopsInfo",i.trigger.bind(i,"gopInfo")),n.videoSegmentStream.on("segmentTimingInfo",i.trigger.bind(i,"videoSegmentTimingInfo")),n.videoSegmentStream.on("baseMediaDecodeTime",function(e){r&&n.audioSegmentStream.setVideoBaseMediaDecodeTime(e)}),n.videoSegmentStream.on("timingInfo",i.trigger.bind(i,"videoTimingInfo")),n.h264Stream.pipe(n.videoSegmentStream).pipe(n.coalesceStream)),r&&!n.audioSegmentStream&&(n.coalesceStream.numberOfTracks++,n.audioSegmentStream=new Pt(r,e),n.audioSegmentStream.on("log",i.getLogTrigger_("audioSegmentStream")),n.audioSegmentStream.on("timingInfo",i.trigger.bind(i,"audioTimingInfo")),n.audioSegmentStream.on("segmentTimingInfo",i.trigger.bind(i,"audioSegmentTimingInfo")),n.adtsStream.pipe(n.audioSegmentStream).pipe(n.coalesceStream)),i.trigger("trackinfo",{hasAudio:!!r,hasVideo:!!t})}}),n.coalesceStream.on("data",this.trigger.bind(this,"data")),n.coalesceStream.on("id3Frame",function(e){e.dispatchType=n.metadataStream.dispatchType,i.trigger("id3Frame",e)}),n.coalesceStream.on("caption",this.trigger.bind(this,"caption")),n.coalesceStream.on("done",this.trigger.bind(this,"done")),Ut(this,n)},this.setBaseMediaDecodeTime=function(i){var n=this.transmuxPipeline_;e.keepOriginalTimestamps||(this.baseMediaDecodeTime=i),r&&(r.timelineStartInfo.dts=void 0,r.timelineStartInfo.pts=void 0,Ee(r),n.audioTimestampRolloverStream&&n.audioTimestampRolloverStream.discontinuity()),t&&(n.videoSegmentStream&&(n.videoSegmentStream.gopCache_=[]),t.timelineStartInfo.dts=void 0,t.timelineStartInfo.pts=void 0,Ee(t),n.captionStream.reset()),n.timestampRolloverStream&&n.timestampRolloverStream.discontinuity()},this.setAudioAppendStart=function(e){r&&this.transmuxPipeline_.audioSegmentStream.setAudioAppendStart(e)},this.setRemux=function(t){var r=this.transmuxPipeline_;e.remux=t,r&&r.coalesceStream&&r.coalesceStream.setRemux(t)},this.alignGopsWith=function(e){t&&this.transmuxPipeline_.videoSegmentStream&&this.transmuxPipeline_.videoSegmentStream.alignGopsWith(e)},this.getLogTrigger_=function(e){var t=this;return function(r){r.stream=e,t.trigger("log",r)}},this.push=function(e){if(n){var t=Rt(e);t&&"aac"!==this.transmuxPipeline_.type?this.setupAacPipeline():t||"ts"===this.transmuxPipeline_.type||this.setupTsPipeline(),n=!1}this.transmuxPipeline_.headOfPipeline.push(e)},this.flush=function(){n=!0,this.transmuxPipeline_.headOfPipeline.flush()},this.endTimeline=function(){this.transmuxPipeline_.headOfPipeline.endTimeline()},this.reset=function(){this.transmuxPipeline_.headOfPipeline&&this.transmuxPipeline_.headOfPipeline.reset()},this.resetCaptions=function(){this.transmuxPipeline_.captionStream&&this.transmuxPipeline_.captionStream.reset()}},xt.prototype=new V;var jt,Vt,Ht,qt={Transmuxer:xt,VideoSegmentStream:Ct,AudioSegmentStream:Pt,AUDIO_PROPERTIES:Ot,VIDEO_PROPERTIES:Dt,generateSegmentTimingInfo:Ft},$t=function(e){return e>>>0},zt=function(e){var t="";return t+=String.fromCharCode(e[0]),t+=String.fromCharCode(e[1]),t+=String.fromCharCode(e[2]),t+=String.fromCharCode(e[3])},Wt=$t,Gt=function e(t,r){var i,n,a,s,o,l=[];if(!r.length)return null;for(i=0;i1?i+n:t.byteLength,a===r[0]&&(1===r.length?l.push(t.subarray(i+8,s)):(o=e(t.subarray(i+8,s),r.slice(1))).length&&(l=l.concat(o))),i=s;return l},Xt=$t,Kt=q.getUint64,Qt=function(e){var t={version:e[0],flags:new Uint8Array(e.subarray(1,4))};return 1===t.version?t.baseMediaDecodeTime=Kt(e.subarray(4)):t.baseMediaDecodeTime=Xt(e[4]<<24|e[5]<<16|e[6]<<8|e[7]),t},Yt=function(e){return{isLeading:(12&e[0])>>>2,dependsOn:3&e[0],isDependedOn:(192&e[1])>>>6,hasRedundancy:(48&e[1])>>>4,paddingValue:(14&e[1])>>>1,isNonSyncSample:1&e[1],degradationPriority:e[2]<<8|e[3]}},Jt=function(e){var t,r={version:e[0],flags:new Uint8Array(e.subarray(1,4)),samples:[]},i=new DataView(e.buffer,e.byteOffset,e.byteLength),n=1&r.flags[2],a=4&r.flags[2],s=1&r.flags[1],o=2&r.flags[1],l=4&r.flags[1],u=8&r.flags[1],c=i.getUint32(4),d=8;for(n&&(r.dataOffset=i.getInt32(d),d+=4),a&&c&&(t={flags:Yt(e.subarray(d,d+4))},d+=4,s&&(t.duration=i.getUint32(d),d+=4),o&&(t.size=i.getUint32(d),d+=4),u&&(1===r.version?t.compositionTimeOffset=i.getInt32(d):t.compositionTimeOffset=i.getUint32(d),d+=4),r.samples.push(t),c--);c--;)t={},s&&(t.duration=i.getUint32(d),d+=4),o&&(t.size=i.getUint32(d),d+=4),l&&(t.flags=Yt(e.subarray(d,d+4)),d+=4),u&&(1===r.version?t.compositionTimeOffset=i.getInt32(d):t.compositionTimeOffset=i.getUint32(d),d+=4),r.samples.push(t);return r},Zt=function(e){var t,r=new DataView(e.buffer,e.byteOffset,e.byteLength),i={version:e[0],flags:new Uint8Array(e.subarray(1,4)),trackId:r.getUint32(4)},n=1&i.flags[2],a=2&i.flags[2],s=8&i.flags[2],o=16&i.flags[2],l=32&i.flags[2],u=65536&i.flags[0],c=131072&i.flags[0];return t=8,n&&(t+=4,i.baseDataOffset=r.getUint32(12),t+=4),a&&(i.sampleDescriptionIndex=r.getUint32(t),t+=4),s&&(i.defaultSampleDuration=r.getUint32(t),t+=4),o&&(i.defaultSampleSize=r.getUint32(t),t+=4),l&&(i.defaultSampleFlags=r.getUint32(t)),u&&(i.durationIsEmpty=!0),!n&&c&&(i.baseDataOffsetIsMoof=!0),i},er="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},tr="undefined"!=typeof window?window:void 0!==er?er:"undefined"!=typeof self?self:{},rr=Ae,ir=qe.CaptionStream,nr=function(e,t){for(var r=e,i=0;i0?Qt(c[0]).baseMediaDecodeTime:0,h=Gt(s,["trun"]);t===u&&h.length>0&&(r=function(e,t,r){var i=t,n=r.defaultSampleDuration||0,a=r.defaultSampleSize||0,s=r.trackId,o=[];return e.forEach(function(e){var t=Jt(e).samples;t.forEach(function(e){void 0===e.duration&&(e.duration=n),void 0===e.size&&(e.size=a),e.trackId=s,e.dts=i,void 0===e.compositionTimeOffset&&(e.compositionTimeOffset=0),"bigint"==typeof i?(e.pts=i+tr.BigInt(e.compositionTimeOffset),i+=tr.BigInt(e.duration)):(e.pts=i+e.compositionTimeOffset,i+=e.duration)}),o=o.concat(t)}),o}(h,d,l),i=function(e,t,r){var i,n,a,s,o=new DataView(e.buffer,e.byteOffset,e.byteLength),l={logs:[],seiNals:[]};for(n=0;n+40;){var l=t.shift();this.parse(l,a,s)}return o=function(e,t,r){if(null===t)return null;var i=ar(e,t)[t]||{};return{seiNals:i.seiNals,logs:i.logs,timescale:r}}(e,r,i),o&&o.logs&&(n.logs=n.logs.concat(o.logs)),null!==o&&o.seiNals?(this.pushNals(o.seiNals),this.flushStream(),n):n.logs.length?{logs:n.logs,captions:[],captionStreams:[]}:null},this.pushNals=function(t){if(!this.isInitialized()||!t||0===t.length)return null;t.forEach(function(t){e.push(t)})},this.flushStream=function(){if(!this.isInitialized())return null;a?e.partialFlush():e.flush()},this.clearParsedCaptions=function(){n.captions=[],n.captionStreams={},n.logs=[]},this.resetCaptionStream=function(){if(!this.isInitialized())return null;e.reset()},this.clearAllCaptions=function(){this.clearParsedCaptions(),this.resetCaptionStream()},this.reset=function(){t=[],r=null,i=null,n?this.clearParsedCaptions():n={captions:[],captionStreams:{},logs:[]},this.resetCaptionStream()},this.reset()},or=$t,lr=function(e){return("00"+e.toString(16)).slice(-2)},ur=q.getUint64;jt=function(e,t){var r=Gt(t,["moof","traf"]).reduce(function(t,r){var i,n,a=Gt(r,["tfhd"])[0],s=or(a[4]<<24|a[5]<<16|a[6]<<8|a[7]),o=e[s]||9e4,l=Gt(r,["tfdt"])[0],u=new DataView(l.buffer,l.byteOffset,l.byteLength);return"bigint"==typeof(i=1===l[0]?ur(l.subarray(4,12)):u.getUint32(4))?n=i/tr.BigInt(o):"number"!=typeof i||isNaN(i)||(n=i/o),n11?(n.codec+=".",n.codec+=lr(c[9]),n.codec+=lr(c[10]),n.codec+=lr(c[11])):n.codec="avc1.4d400d"):/^mp4[a,v]$/i.test(n.codec)?(c=d.subarray(28),"esds"===zt(c.subarray(4,8))&&c.length>20&&0!==c[19]?(n.codec+="."+lr(c[19]),n.codec+="."+lr(c[20]>>>2&63).replace(/^0/,"")):n.codec="mp4a.40.2"):n.codec=n.codec.toLowerCase())}var h=Gt(e,["mdia","mdhd"])[0];h&&(n.timescale=Ht(h)),r.push(n)}),r};var cr=jt,dr=Vt,hr=function(e){var t=31&e[1];return t<<=8,t|=e[2]},pr=function(e){return!!(64&e[1])},fr=function(e){var t=0;return(48&e[3])>>>4>1&&(t+=e[4]+1),t},mr=function(e){switch(e){case 5:return"slice_layer_without_partitioning_rbsp_idr";case 6:return"sei_rbsp";case 7:return"seq_parameter_set_rbsp";case 8:return"pic_parameter_set_rbsp";case 9:return"access_unit_delimiter_rbsp";default:return null}},gr={parseType:function(e,t){var r=hr(e);return 0===r?"pat":r===t?"pmt":t?"pes":null},parsePat:function(e){var t=pr(e),r=4+fr(e);return t&&(r+=e[r]+1),(31&e[r+10])<<8|e[r+11]},parsePmt:function(e){var t={},r=pr(e),i=4+fr(e);if(r&&(i+=e[i]+1),1&e[i+5]){var n;n=3+((15&e[i+1])<<8|e[i+2])-4;for(var a=12+((15&e[i+10])<<8|e[i+11]);a=e.byteLength)return null;var r,i=null;return 192&(r=e[t+7])&&((i={}).pts=(14&e[t+9])<<27|(255&e[t+10])<<20|(254&e[t+11])<<12|(255&e[t+12])<<5|(254&e[t+13])>>>3,i.pts*=4,i.pts+=(6&e[t+13])>>>1,i.dts=i.pts,64&r&&(i.dts=(14&e[t+14])<<27|(255&e[t+15])<<20|(254&e[t+16])<<12|(255&e[t+17])<<5|(254&e[t+18])>>>3,i.dts*=4,i.dts+=(6&e[t+18])>>>1)),i},videoPacketContainsKeyFrame:function(e){for(var t=4+fr(e),r=e.subarray(t),i=0,n=0,a=!1;n3&&"slice_layer_without_partitioning_rbsp_idr"===mr(31&r[n+3])&&(a=!0),a}},vr=Qe,yr={};yr.ts=gr,yr.aac=kt;var _r=pe,br=188,Tr=71,wr=function(e,t,r){for(var i,n,a,s,o=0,l=br,u=!1;l<=e.byteLength;)if(e[o]!==Tr||e[l]!==Tr&&l!==e.byteLength)o++,l++;else{if(i=e.subarray(o,l),"pes"===yr.ts.parseType(i,t.pid))n=yr.ts.parsePesType(i,t.table),a=yr.ts.parsePayloadUnitStartIndicator(i),"audio"===n&&a&&(s=yr.ts.parsePesTime(i))&&(s.type="audio",r.audio.push(s),u=!0);if(u)break;o+=br,l+=br}for(o=(l=e.byteLength)-br,u=!1;o>=0;)if(e[o]!==Tr||e[l]!==Tr&&l!==e.byteLength)o--,l--;else{if(i=e.subarray(o,l),"pes"===yr.ts.parseType(i,t.pid))n=yr.ts.parsePesType(i,t.table),a=yr.ts.parsePayloadUnitStartIndicator(i),"audio"===n&&a&&(s=yr.ts.parsePesTime(i))&&(s.type="audio",r.audio.push(s),u=!0);if(u)break;o-=br,l-=br}},Sr=function(e,t,r){for(var i,n,a,s,o,l,u,c=0,d=br,h=!1,p={data:[],size:0};d=0;)if(e[c]!==Tr||e[d]!==Tr)c--,d--;else{if(i=e.subarray(c,d),"pes"===yr.ts.parseType(i,t.pid))n=yr.ts.parsePesType(i,t.table),a=yr.ts.parsePayloadUnitStartIndicator(i),"video"===n&&a&&(s=yr.ts.parsePesTime(i))&&(s.type="video",r.video.push(s),h=!0);if(h)break;c-=br,d-=br}},Er=function(e){var t={pid:null,table:null},r={};for(var i in function(e,t){for(var r,i=0,n=br;n=3;){switch(yr.aac.parseType(e,o)){case"timed-metadata":if(e.length-o<10){r=!0;break}if((s=yr.aac.parseId3TagSize(e,o))>e.length){r=!0;break}null===a&&(t=e.subarray(o,o+s),a=yr.aac.parseAacTimestamp(t)),o+=s;break;case"audio":if(e.length-o<7){r=!0;break}if((s=yr.aac.parseAdtsSize(e,o))>e.length){r=!0;break}null===n&&(t=e.subarray(o,o+s),n=yr.aac.parseSampleRate(t)),i++,o+=s;break;default:o++}if(r)return null}if(null===n||null===a)return null;var l=_r/n;return{audio:[{type:"audio",dts:a,pts:a},{type:"audio",dts:a+1024*i*l,pts:a+1024*i*l}]}}(e):Er(e),r&&(r.audio||r.video)?(function(e,t){if(e.audio&&e.audio.length){var r=t;(void 0===r||isNaN(r))&&(r=e.audio[0].dts),e.audio.forEach(function(e){e.dts=vr(e.dts,r),e.pts=vr(e.pts,r),e.dtsTime=e.dts/_r,e.ptsTime=e.pts/_r})}if(e.video&&e.video.length){var i=t;if((void 0===i||isNaN(i))&&(i=e.video[0].dts),e.video.forEach(function(e){e.dts=vr(e.dts,i),e.pts=vr(e.pts,i),e.dtsTime=e.dts/_r,e.ptsTime=e.pts/_r}),e.firstKeyFrame){var n=e.firstKeyFrame;n.dts=vr(n.dts,i),n.pts=vr(n.pts,i),n.dtsTime=n.dts/_r,n.ptsTime=n.pts/_r}}}(r,t),r):null},Cr=function(){function e(e,t){this.options=t||{},this.self=e,this.init()}var t=e.prototype;return t.init=function(){this.transmuxer&&this.transmuxer.dispose(),this.transmuxer=new qt.Transmuxer(this.options),function(e,t){t.on("data",function(t){var r=t.initSegment;t.initSegment={data:r.buffer,byteOffset:r.byteOffset,byteLength:r.byteLength};var i=t.data;t.data=i.buffer,e.postMessage({action:"data",segment:t,byteOffset:i.byteOffset,byteLength:i.byteLength},[t.data])}),t.on("done",function(t){e.postMessage({action:"done"})}),t.on("gopInfo",function(t){e.postMessage({action:"gopInfo",gopInfo:t})}),t.on("videoSegmentTimingInfo",function(t){var r={start:{decode:me(t.start.dts),presentation:me(t.start.pts)},end:{decode:me(t.end.dts),presentation:me(t.end.pts)},baseMediaDecodeTime:me(t.baseMediaDecodeTime)};t.prependedContentDuration&&(r.prependedContentDuration=me(t.prependedContentDuration)),e.postMessage({action:"videoSegmentTimingInfo",videoSegmentTimingInfo:r})}),t.on("audioSegmentTimingInfo",function(t){var r={start:{decode:me(t.start.dts),presentation:me(t.start.pts)},end:{decode:me(t.end.dts),presentation:me(t.end.pts)},baseMediaDecodeTime:me(t.baseMediaDecodeTime)};t.prependedContentDuration&&(r.prependedContentDuration=me(t.prependedContentDuration)),e.postMessage({action:"audioSegmentTimingInfo",audioSegmentTimingInfo:r})}),t.on("id3Frame",function(t){e.postMessage({action:"id3Frame",id3Frame:t})}),t.on("caption",function(t){e.postMessage({action:"caption",caption:t})}),t.on("trackinfo",function(t){e.postMessage({action:"trackinfo",trackInfo:t})}),t.on("audioTimingInfo",function(t){e.postMessage({action:"audioTimingInfo",audioTimingInfo:{start:me(t.start),end:me(t.end)}})}),t.on("videoTimingInfo",function(t){e.postMessage({action:"videoTimingInfo",videoTimingInfo:{start:me(t.start),end:me(t.end)}})}),t.on("log",function(t){e.postMessage({action:"log",log:t})})}(this.self,this.transmuxer)},t.pushMp4Captions=function(e){this.captionParser||(this.captionParser=new sr,this.captionParser.init());var t=new Uint8Array(e.data,e.byteOffset,e.byteLength),r=this.captionParser.parse(t,e.trackIds,e.timescales);this.self.postMessage({action:"mp4Captions",captions:r&&r.captions||[],logs:r&&r.logs||[],data:t.buffer},[t.buffer])},t.probeMp4StartTime=function(e){var t=e.timescales,r=e.data,i=cr(t,r);this.self.postMessage({action:"probeMp4StartTime",startTime:i,data:r},[r.buffer])},t.probeMp4Tracks=function(e){var t=e.data,r=dr(t);this.self.postMessage({action:"probeMp4Tracks",tracks:r,data:t},[t.buffer])},t.probeTs=function(e){var t=e.data,r=e.baseStartTime,i="number"!=typeof r||isNaN(r)?void 0:r*pe,n=kr(t,i),a=null;n&&((a={hasVideo:n.video&&2===n.video.length||!1,hasAudio:n.audio&&2===n.audio.length||!1}).hasVideo&&(a.videoStart=n.video[0].ptsTime),a.hasAudio&&(a.audioStart=n.audio[0].ptsTime)),this.self.postMessage({action:"probeTs",result:a,data:t},[t.buffer])},t.clearAllMp4Captions=function(){this.captionParser&&this.captionParser.clearAllCaptions()},t.clearParsedMp4Captions=function(){this.captionParser&&this.captionParser.clearParsedCaptions()},t.push=function(e){var t=new Uint8Array(e.data,e.byteOffset,e.byteLength);this.transmuxer.push(t)},t.reset=function(){this.transmuxer.reset()},t.setTimestampOffset=function(e){var t=e.timestampOffset||0;this.transmuxer.setBaseMediaDecodeTime(Math.round(fe(t)))},t.setAudioAppendStart=function(e){this.transmuxer.setAudioAppendStart(Math.ceil(fe(e.appendStart)))},t.setRemux=function(e){this.transmuxer.setRemux(e.remux)},t.flush=function(e){this.transmuxer.flush(),self.postMessage({action:"done",type:"transmuxed"})},t.endTimeline=function(){this.transmuxer.endTimeline(),self.postMessage({action:"endedtimeline",type:"transmuxed"})},t.alignGopsWith=function(e){this.transmuxer.alignGopsWith(e.gopsToAlignWith.slice())},e}();self.onmessage=function(e){"init"===e.data.action&&e.data.options?this.messageHandlers=new Cr(self,e.data.options):(this.messageHandlers||(this.messageHandlers=new Cr(self)),e.data&&e.data.action&&"init"!==e.data.action&&this.messageHandlers[e.data.action]&&this.messageHandlers[e.data.action](e.data))}})),Ac=Cc(Ic),Oc=function(e){var t=e.transmuxer,r=e.bytes,i=e.audioAppendStart,n=e.gopsToAlignWith,a=e.remux,s=e.onData,o=e.onTrackInfo,l=e.onAudioTimingInfo,u=e.onVideoTimingInfo,c=e.onVideoSegmentTimingInfo,d=e.onAudioSegmentTimingInfo,h=e.onId3,p=e.onCaptions,f=e.onDone,m=e.onEndedTimeline,g=e.onTransmuxerLog,v=e.isEndOfTimeline,y={buffer:[]},_=v;if(t.onmessage=function(r){t.currentTransmux===e&&("data"===r.data.action&&function(e,t,r){var i=e.data.segment,n=i.type,a=i.initSegment,s=i.captions,o=i.captionStreams,l=i.metadata,u=i.videoFrameDtsTime,c=i.videoFramePtsTime;t.buffer.push({captions:s,captionStreams:o,metadata:l});var d=e.data.segment.boxes||{data:e.data.segment.data},h={type:n,data:new Uint8Array(d.data,d.data.byteOffset,d.data.byteLength),initSegment:new Uint8Array(a.data,a.byteOffset,a.byteLength)};void 0!==u&&(h.videoFrameDtsTime=u),void 0!==c&&(h.videoFramePtsTime=c),r(h)}(r,y,s),"trackinfo"===r.data.action&&o(r.data.trackInfo),"gopInfo"===r.data.action&&function(e,t){t.gopInfo=e.data.gopInfo}(r,y),"audioTimingInfo"===r.data.action&&l(r.data.audioTimingInfo),"videoTimingInfo"===r.data.action&&u(r.data.videoTimingInfo),"videoSegmentTimingInfo"===r.data.action&&c(r.data.videoSegmentTimingInfo),"audioSegmentTimingInfo"===r.data.action&&d(r.data.audioSegmentTimingInfo),"id3Frame"===r.data.action&&h([r.data.id3Frame],r.data.id3Frame.dispatchType),"caption"===r.data.action&&p(r.data.caption),"endedtimeline"===r.data.action&&(_=!1,m()),"log"===r.data.action&&g(r.data.log),"transmuxed"===r.data.type&&(_||(t.onmessage=null,function(e){var t=e.transmuxedData,r=e.callback;t.buffer=[],r(t)}({transmuxedData:y,callback:f}),Dc(t))))},i&&t.postMessage({action:"setAudioAppendStart",appendStart:i}),Array.isArray(n)&&t.postMessage({action:"alignGopsWith",gopsToAlignWith:n}),void 0!==a&&t.postMessage({action:"setRemux",remux:a}),r.byteLength){var b=r instanceof ArrayBuffer?r:r.buffer,T=r instanceof ArrayBuffer?0:r.byteOffset;t.postMessage({action:"push",data:b,byteOffset:T,byteLength:r.byteLength},[b])}v&&t.postMessage({action:"endTimeline"}),t.postMessage({action:"flush"})},Dc=function(e){e.currentTransmux=null,e.transmuxQueue.length&&(e.currentTransmux=e.transmuxQueue.shift(),"function"==typeof e.currentTransmux?e.currentTransmux():Oc(e.currentTransmux))},Lc=function(e,t){e.postMessage({action:t}),Dc(e)},Rc=function(e,t){if(!t.currentTransmux)return t.currentTransmux=e,void Lc(t,e);t.transmuxQueue.push(Lc.bind(null,t,e))},Mc=function(e){if(!e.transmuxer.currentTransmux)return e.transmuxer.currentTransmux=e,void Oc(e);e.transmuxer.transmuxQueue.push(e)},Nc=function(e){Rc("reset",e)},Uc=function(e){var t=new Ac;t.currentTransmux=null,t.transmuxQueue=[];var r=t.terminate;return t.terminate=function(){return t.currentTransmux=null,t.transmuxQueue.length=0,r.call(t)},t.postMessage({action:"init",options:e}),t},Bc=function(e){var t=e.transmuxer,r=e.endAction||e.action,i=e.callback,n=m({},e,{endAction:null,transmuxer:null,callback:null});if(t.addEventListener("message",function n(a){a.data.action===r&&(t.removeEventListener("message",n),a.data.data&&(a.data.data=new Uint8Array(a.data.data,e.byteOffset||0,e.byteLength||a.data.data.byteLength),e.data&&(e.data=a.data.data)),i(a.data))}),e.data){var a=e.data instanceof ArrayBuffer;n.byteOffset=a?0:e.data.byteOffset,n.byteLength=e.data.byteLength;var s=[a?e.data:e.data.buffer];t.postMessage(n,s)}else t.postMessage(n)},Fc=2,jc=-101,Vc=-102,Hc=function(e){e.forEach(function(e){e.abort()})},qc=function(e,t){return t.timedout?{status:t.status,message:"HLS request timed-out at URL: "+t.uri,code:jc,xhr:t}:t.aborted?{status:t.status,message:"HLS request aborted at URL: "+t.uri,code:Vc,xhr:t}:e?{status:t.status,message:"HLS request errored at URL: "+t.uri,code:Fc,xhr:t}:"arraybuffer"===t.responseType&&0===t.response.byteLength?{status:t.status,message:"Empty HLS response at URL: "+t.uri,code:Fc,xhr:t}:null},$c=function(e,t,r){return function(i,n){var a=n.response,s=qc(i,n);if(s)return r(s,e);if(16!==a.byteLength)return r({status:n.status,message:"Invalid HLS key at URL: "+n.uri,code:Fc,xhr:n},e);for(var o=new DataView(a),l=new Uint32Array([o.getUint32(0),o.getUint32(4),o.getUint32(8),o.getUint32(12)]),u=0;u0}(f)){t.isFmp4=!0;var m=t.map.tracks,g={isFmp4:!0,hasVideo:!!m.video,hasAudio:!!m.audio};m.audio&&m.audio.codec&&"enca"!==m.audio.codec&&(g.audioCodec=m.audio.codec),m.video&&m.video.codec&&"encv"!==m.video.codec&&(g.videoCodec=m.video.codec),m.video&&m.audio&&(g.isMuxed=!0),i(t,g);var v=function(e){d(t,{data:f,type:g.hasAudio&&!g.isMuxed?"audio":"video"}),e&&e.length&&l(t,e),h(null,t,{})};Bc({action:"probeMp4StartTime",timescales:t.map.timescales,data:f,transmuxer:t.transmuxer,callback:function(e){var i=e.data,a=e.startTime;r=i.buffer,t.bytes=f=i,g.hasAudio&&!g.isMuxed&&n(t,"audio","start",a),g.hasVideo&&n(t,"video","start",a),m.video&&i.byteLength&&t.transmuxer?Bc({action:"pushMp4Captions",endAction:"mp4Captions",transmuxer:t.transmuxer,data:f,timescales:t.map.timescales,trackIds:[m.video.id],callback:function(e){r=e.data.buffer,t.bytes=f=e.data,e.logs.forEach(function(e){p(pa.mergeOptions(e,{stream:"mp4CaptionParser"}))}),v(e.captions)}}):v()}})}else if(t.transmuxer){if(void 0===t.container&&(t.container=lu(f)),"ts"!==t.container&&"aac"!==t.container)return i(t,{hasAudio:!1,hasVideo:!1}),void h(null,t,{});Gc({segment:t,bytes:r,trackInfoFn:i,timingInfoFn:n,videoSegmentTimingInfoFn:a,audioSegmentTimingInfoFn:s,id3Fn:o,captionsFn:l,isEndOfTimeline:u,endedTimelineFn:c,dataFn:d,doneFn:h,onTransmuxerLog:p})}else h(null,t,{})},Kc=function(e,t){var r,i=e.id,n=e.key,a=e.encryptedBytes,s=e.decryptionWorker;s.addEventListener("message",function e(r){if(r.data.source===i){s.removeEventListener("message",e);var n=r.data.decrypted;t(new Uint8Array(n.bytes,n.byteOffset,n.byteLength))}}),r=n.bytes.slice?n.bytes.slice():new Uint32Array(Array.prototype.slice.call(n.bytes)),s.postMessage(cc({source:i,encrypted:a,key:r,iv:n.iv}),[a.buffer,r.buffer])},Qc=function(e){var t=e.activeXhrs,r=e.decryptionWorker,i=e.trackInfoFn,n=e.timingInfoFn,a=e.videoSegmentTimingInfoFn,s=e.audioSegmentTimingInfoFn,o=e.id3Fn,l=e.captionsFn,u=e.isEndOfTimeline,c=e.endedTimelineFn,d=e.dataFn,h=e.doneFn,p=e.onTransmuxerLog,f=0,m=!1;return function(e,g){if(!m){if(e)return m=!0,Hc(t),h(e,g);if((f+=1)===t.length){var v=function(){if(g.encryptedBytes)return function(e){var t=e.decryptionWorker,r=e.segment,i=e.trackInfoFn,n=e.timingInfoFn,a=e.videoSegmentTimingInfoFn,s=e.audioSegmentTimingInfoFn,o=e.id3Fn,l=e.captionsFn,u=e.isEndOfTimeline,c=e.endedTimelineFn,d=e.dataFn,h=e.doneFn,p=e.onTransmuxerLog;Kc({id:r.requestId,key:r.key,encryptedBytes:r.encryptedBytes,decryptionWorker:t},function(e){r.bytes=e,Xc({segment:r,bytes:r.bytes,trackInfoFn:i,timingInfoFn:n,videoSegmentTimingInfoFn:a,audioSegmentTimingInfoFn:s,id3Fn:o,captionsFn:l,isEndOfTimeline:u,endedTimelineFn:c,dataFn:d,doneFn:h,onTransmuxerLog:p})})}({decryptionWorker:r,segment:g,trackInfoFn:i,timingInfoFn:n,videoSegmentTimingInfoFn:a,audioSegmentTimingInfoFn:s,id3Fn:o,captionsFn:l,isEndOfTimeline:u,endedTimelineFn:c,dataFn:d,doneFn:h,onTransmuxerLog:p});Xc({segment:g,bytes:g.bytes,trackInfoFn:i,timingInfoFn:n,videoSegmentTimingInfoFn:a,audioSegmentTimingInfoFn:s,id3Fn:o,captionsFn:l,isEndOfTimeline:u,endedTimelineFn:c,dataFn:d,doneFn:h,onTransmuxerLog:p})};if(g.endOfAllRequests=Date.now(),g.map&&g.map.encryptedBytes&&!g.map.bytes)return Kc({decryptionWorker:r,id:g.requestId+"-init",encryptedBytes:g.map.encryptedBytes,key:g.map.key},function(e){g.map.bytes=e,zc(g,function(e){if(e)return Hc(t),h(e,g);v()})});v()}}}},Yc=function(e){var t=e.segment,r=e.progressFn;return e.trackInfoFn,e.timingInfoFn,e.videoSegmentTimingInfoFn,e.audioSegmentTimingInfoFn,e.id3Fn,e.captionsFn,e.isEndOfTimeline,e.endedTimelineFn,e.dataFn,function(e){if(!e.target.aborted)return t.stats=pa.mergeOptions(t.stats,function(e){var t=e.target,r={bandwidth:1/0,bytesReceived:0,roundTripTime:Date.now()-t.requestTime||0};return r.bytesReceived=e.loaded,r.bandwidth=Math.floor(r.bytesReceived/r.roundTripTime*8*1e3),r}(e)),!t.stats.firstBytesReceivedAt&&t.stats.bytesReceived&&(t.stats.firstBytesReceivedAt=Date.now()),r(e,t)}},Jc=function(e){var t=e.xhr,r=e.xhrOptions,i=e.decryptionWorker,n=e.segment,a=e.abortFn,s=e.progressFn,o=e.trackInfoFn,l=e.timingInfoFn,u=e.videoSegmentTimingInfoFn,c=e.audioSegmentTimingInfoFn,d=e.id3Fn,h=e.captionsFn,p=e.isEndOfTimeline,f=e.endedTimelineFn,m=e.dataFn,g=e.doneFn,v=e.onTransmuxerLog,y=[],_=Qc({activeXhrs:y,decryptionWorker:i,trackInfoFn:o,timingInfoFn:l,videoSegmentTimingInfoFn:u,audioSegmentTimingInfoFn:c,id3Fn:d,captionsFn:h,isEndOfTimeline:p,endedTimelineFn:f,dataFn:m,doneFn:g,onTransmuxerLog:v});if(n.key&&!n.key.bytes){var b=[n.key];n.map&&!n.map.bytes&&n.map.key&&n.map.key.resolvedUri===n.key.resolvedUri&&b.push(n.map.key);var T=t(pa.mergeOptions(r,{uri:n.key.resolvedUri,responseType:"arraybuffer"}),$c(n,b,_));y.push(T)}if(n.map&&!n.map.bytes){if(n.map.key&&(!n.key||n.key.resolvedUri!==n.map.key.resolvedUri)){var w=t(pa.mergeOptions(r,{uri:n.map.key.resolvedUri,responseType:"arraybuffer"}),$c(n,[n.map.key],_));y.push(w)}var S=pa.mergeOptions(r,{uri:n.map.resolvedUri,responseType:"arraybuffer",headers:sc(n.map)}),E=function(e){var t=e.segment,r=e.finishProcessingFn;return function(e,i){var n=qc(e,i);if(n)return r(n,t);var a=new Uint8Array(i.response);if(t.map.key)return t.map.encryptedBytes=a,r(null,t);t.map.bytes=a,zc(t,function(e){if(e)return e.xhr=i,e.status=i.status,r(e,t);r(null,t)})}}({segment:n,finishProcessingFn:_}),k=t(S,E);y.push(k)}var C=pa.mergeOptions(r,{uri:n.part&&n.part.resolvedUri||n.resolvedUri,responseType:"arraybuffer",headers:sc(n)}),P=t(C,Wc({segment:n,finishProcessingFn:_,responseType:C.responseType}));P.addEventListener("progress",Yc({segment:n,progressFn:s,trackInfoFn:o,timingInfoFn:l,videoSegmentTimingInfoFn:u,audioSegmentTimingInfoFn:c,id3Fn:d,captionsFn:h,isEndOfTimeline:p,endedTimelineFn:f,dataFn:m})),y.push(P);var x={};return y.forEach(function(e){e.addEventListener("loadend",function(e){var t=e.loadendState,r=e.abortFn;return function(e){e.target.aborted&&r&&!t.calledAbortFn&&(r(),t.calledAbortFn=!0)}}({loadendState:x,abortFn:a}))}),function(){return Hc(y)}},Zc=pu("CodecUtils"),ed=function(e,t){var r=t.attributes||{};return e&&e.mediaGroups&&e.mediaGroups.AUDIO&&r.AUDIO&&e.mediaGroups.AUDIO[r.AUDIO]},td=function(e){var t={};return e.forEach(function(e){var r=e.mediaType,i=e.type,n=e.details;t[r]=t[r]||[],t[r].push(Da(""+i+n))}),Object.keys(t).forEach(function(e){if(t[e].length>1)return Zc("multiple "+e+" codecs found as attributes: "+t[e].join(", ")+". Setting playlist codecs to null so that we wait for mux.js to probe segments for real codecs."),void(t[e]=null);t[e]=t[e][0]}),t},rd=function(e){var t=0;return e.audio&&t++,e.video&&t++,t},id=function(e,t){var r=t.attributes||{},i=td(function(e){var t=e.attributes||{};if(t.CODECS)return La(t.CODECS)}(t)||[]);if(ed(e,t)&&!i.audio&&!function(e,t){if(!ed(e,t))return!0;var r=t.attributes||{},i=e.mediaGroups.AUDIO[r.AUDIO];for(var n in i)if(!i[n].uri&&!i[n].playlists)return!0;return!1}(e,t)){var n=td(function(e,t){if(!e.mediaGroups.AUDIO||!t)return null;var r=e.mediaGroups.AUDIO[t];if(!r)return null;for(var i in r){var n=r[i];if(n.default&&n.playlists)return La(n.playlists[0].attributes.CODECS)}return null}(e,r.AUDIO)||[]);n.audio&&(i.audio=n.audio)}return i},nd=pu("PlaylistSelector"),ad=function(e){if(e&&e.playlist){var t=e.playlist;return JSON.stringify({id:t.id,bandwidth:e.bandwidth,width:e.width,height:e.height,codecs:t.attributes&&t.attributes.CODECS||""})}},sd=function(e,t){if(!e)return"";var r=window.getComputedStyle(e);return r?r[t]:""},od=function(e,t){var r=e.slice();e.sort(function(e,i){var n=t(e,i);return 0===n?r.indexOf(e)-r.indexOf(i):n})},ld=function(e,t){var r,i;return e.attributes.BANDWIDTH&&(r=e.attributes.BANDWIDTH),r=r||window.Number.MAX_VALUE,t.attributes.BANDWIDTH&&(i=t.attributes.BANDWIDTH),r-(i=i||window.Number.MAX_VALUE)},ud=function(e,t,r,i,n,a){if(e){var s={bandwidth:t,width:r,height:i,limitRenditionByPlayerDimensions:n},o=e.playlists;Vu.isAudioOnly(e)&&(o=a.getAudioTrackPlaylists_(),s.audioOnly=!0);var l=o.map(function(e){var t=e.attributes&&e.attributes.RESOLUTION&&e.attributes.RESOLUTION.width,r=e.attributes&&e.attributes.RESOLUTION&&e.attributes.RESOLUTION.height;return{bandwidth:e.attributes&&e.attributes.BANDWIDTH||window.Number.MAX_VALUE,width:t,height:r,playlist:e}});od(l,function(e,t){return e.bandwidth-t.bandwidth});var u=(l=l.filter(function(e){return!Vu.isIncompatible(e.playlist)})).filter(function(e){return Vu.isEnabled(e.playlist)});u.length||(u=l.filter(function(e){return!Vu.isDisabled(e.playlist)}));var c=u.filter(function(e){return e.bandwidth*Ec.BANDWIDTH_VARIANCEr||e.height>i})).filter(function(e){return e.width===v[0].width&&e.height===v[0].height}),d=y[y.length-1],_=y.filter(function(e){return e.bandwidth===d.bandwidth})[0]),a.experimentalLeastPixelDiffSelector){var w=m.map(function(e){return e.pixelDiff=Math.abs(e.width-r)+Math.abs(e.height-i),e});od(w,function(e,t){return e.pixelDiff===t.pixelDiff?t.bandwidth-e.bandwidth:e.pixelDiff-t.pixelDiff}),b=w[0]}var S=b||_||T||h||u[0]||l[0];if(S&&S.playlist){var E="sortedPlaylistReps";return b?E="leastPixelDiffRep":_?E="resolutionPlusOneRep":T?E="resolutionBestRep":h?E="bandwidthBestRep":u[0]&&(E="enabledPlaylistReps"),nd("choosing "+ad(S)+" using "+E+" with options",s),S.playlist}return nd("could not choose a playlist with options",s),null}},cd=function(){var e=this.useDevicePixelRatio&&window.devicePixelRatio||1;return ud(this.playlists.master,this.systemBandwidth,parseInt(sd(this.tech_.el(),"width"),10)*e,parseInt(sd(this.tech_.el(),"height"),10)*e,this.limitRenditionByPlayerDimensions,this.masterPlaylistController_)},dd=function(e){var t=e.inbandTextTracks,r=e.metadataArray,i=e.timestampOffset,n=e.videoDuration;if(r){var a=window.WebKitDataCue||window.VTTCue,s=t.metadataTrack_;if(s&&(r.forEach(function(e){var t=e.cueTime+i;!("number"!=typeof t||window.isNaN(t)||t<0)&&t<1/0&&e.frames.forEach(function(e){var r=new a(t,t,e.value||e.url||e.data||"");r.frame=e,r.value=e,function(e){Object.defineProperties(e.frame,{id:{get:function(){return pa.log.warn("cue.frame.id is deprecated. Use cue.value.key instead."),e.value.key}},value:{get:function(){return pa.log.warn("cue.frame.value is deprecated. Use cue.value.data instead."),e.value.data}},privateData:{get:function(){return pa.log.warn("cue.frame.privateData is deprecated. Use cue.value.data instead."),e.value.data}}})}(r),s.addCue(r)})}),s.cues&&s.cues.length)){for(var o=s.cues,l=[],u=0;u=e&&n.endTime<=t&&r.removeCue(n)},pd=function(e){return"number"==typeof e&&isFinite(e)},fd=1/60,md=function(e){var t=e.startOfSegment,r=e.duration,i=e.segment,n=e.part,a=e.playlist,s=a.mediaSequence,o=a.id,l=a.segments,u=void 0===l?[]:l,c=e.mediaIndex,d=e.partIndex,h=e.timeline,p=u.length-1,f="mediaIndex/partIndex increment";e.getMediaInfoForTime?f="getMediaInfoForTime ("+e.getMediaInfoForTime+")":e.isSyncRequest&&(f="getSyncSegmentCandidate (isSyncRequest)"),e.independent&&(f+=" with independent "+e.independent);var m="number"==typeof d,g=e.segment.uri?"segment":"pre-segment",v=m?Pu({preloadSegment:i})-1:0;return g+" ["+(s+c)+"/"+(s+p)+"]"+(m?" part ["+d+"/"+v+"]":"")+" segment start/end ["+i.start+" => "+i.end+"]"+(m?" part start/end ["+n.start+" => "+n.end+"]":"")+" startOfSegment ["+t+"] duration ["+r+"] timeline ["+h+"] selected by ["+f+"] playlist ["+o+"]"},gd=function(e){return e+"TimingInfo"},vd=function(e){var t=e.timelineChangeController,r=e.currentTimeline,i=e.segmentTimeline,n=e.loaderType,a=e.audioDisabled;if(r===i)return!1;if("audio"===n){var s=t.lastTimelineChange({type:"main"});return!s||s.to!==i}if("main"===n&&a){var o=t.pendingTimelineChange({type:"audio"});return!o||o.to!==i}return!1},yd=function(e){var t=e.segmentDuration,r=e.maxDuration;return!!t&&Math.round(t)>r+fu},_d=function(e,t){if("hls"!==t)return null;var r,i,n=(r={audioTimingInfo:e.audioTimingInfo,videoTimingInfo:e.videoTimingInfo},i=0,["video","audio"].forEach(function(e){var t=r[e+"TimingInfo"];if(t){var n,a=t.start,s=t.end;"bigint"==typeof a||"bigint"==typeof s?n=window.BigInt(s)-window.BigInt(a):"number"==typeof a&&"number"==typeof s&&(n=s-a),void 0!==n&&n>i&&(i=n)}}),"bigint"==typeof i&&i=11,i.appendInitSegment_={audio:!0,video:!0},i.playlistOfLastInitSegment_={audio:null,video:null},i.callQueue_=[],i.loadQueue_=[],i.metadataQueue_={id3:[],caption:[]},i.waitingOnRemove_=!1,i.quotaExceededErrorRetryTimeout_=null,i.activeInitSegmentId_=null,i.initSegments_={},i.cacheEncryptionKeys_=t.cacheEncryptionKeys,i.keyCache_={},i.decrypter_=t.decrypter,i.syncController_=t.syncController,i.syncPoint_={segmentIndex:0,time:0},i.transmuxer_=i.createTransmuxer_(),i.triggerSyncInfoUpdate_=function(){return i.trigger("syncinfoupdate")},i.syncController_.on("syncinfoupdate",i.triggerSyncInfoUpdate_),i.mediaSource_.addEventListener("sourceopen",function(){i.isEndOfStream_()||(i.ended_=!1)}),i.fetchAtBuffer_=!1,i.logger_=pu("SegmentLoader["+i.loaderType_+"]"),Object.defineProperty(vt(i),"state",{get:function(){return this.state_},set:function(e){e!==this.state_&&(this.logger_(this.state_+" -> "+e),this.state_=e,this.trigger("statechange"))}}),i.sourceUpdater_.on("ready",function(){i.hasEnoughInfoToAppend_()&&i.processCallQueue_()}),"main"===i.loaderType_&&i.timelineChangeController_.on("pendingtimelinechange",function(){i.hasEnoughInfoToAppend_()&&i.processCallQueue_()}),"audio"===i.loaderType_&&i.timelineChangeController_.on("timelinechange",function(){i.hasEnoughInfoToLoad_()&&i.processLoadQueue_(),i.hasEnoughInfoToAppend_()&&i.processCallQueue_()}),i}yt(t,e);var r=t.prototype;return r.createTransmuxer_=function(){return Uc({remux:!1,alignGopsAtEnd:this.safeAppend_,keepOriginalTimestamps:!0,parse708captions:this.parse708captions_,captionServices:this.captionServices_})},r.resetStats_=function(){this.mediaBytesTransferred=0,this.mediaRequests=0,this.mediaRequestsAborted=0,this.mediaRequestsTimedout=0,this.mediaRequestsErrored=0,this.mediaTransferDuration=0,this.mediaSecondsLoaded=0,this.mediaAppends=0},r.dispose=function(){this.trigger("dispose"),this.state="DISPOSED",this.pause(),this.abort_(),this.transmuxer_&&this.transmuxer_.terminate(),this.resetStats_(),this.checkBufferTimeout_&&window.clearTimeout(this.checkBufferTimeout_),this.syncController_&&this.triggerSyncInfoUpdate_&&this.syncController_.off("syncinfoupdate",this.triggerSyncInfoUpdate_),this.off()},r.setAudio=function(e){this.audioDisabled_=!e,e?this.appendInitSegment_.audio=!0:this.sourceUpdater_.removeAudio(0,this.duration_())},r.abort=function(){"WAITING"===this.state?(this.abort_(),this.state="READY",this.paused()||this.monitorBuffer_()):this.pendingSegment_&&(this.pendingSegment_=null)},r.abort_=function(){this.pendingSegment_&&this.pendingSegment_.abortRequests&&this.pendingSegment_.abortRequests(),this.pendingSegment_=null,this.callQueue_=[],this.loadQueue_=[],this.metadataQueue_.id3=[],this.metadataQueue_.caption=[],this.timelineChangeController_.clearPendingTimelineChange(this.loaderType_),this.waitingOnRemove_=!1,window.clearTimeout(this.quotaExceededErrorRetryTimeout_),this.quotaExceededErrorRetryTimeout_=null},r.checkForAbort_=function(e){return"APPENDING"!==this.state||this.pendingSegment_?!this.pendingSegment_||this.pendingSegment_.requestId!==e:(this.state="READY",!0)},r.error=function(e){return void 0!==e&&(this.logger_("error occurred:",e),this.error_=e),this.pendingSegment_=null,this.error_},r.endOfStream=function(){this.ended_=!0,this.transmuxer_&&Nc(this.transmuxer_),this.gopBuffer_.length=0,this.pause(),this.trigger("ended")},r.buffered_=function(){var e=this.getMediaInfo_();if(!this.sourceUpdater_||!e)return pa.createTimeRanges();if("main"===this.loaderType_){var t=e.hasAudio,r=e.hasVideo,i=e.isMuxed;if(r&&t&&!this.audioDisabled_&&!i)return this.sourceUpdater_.buffered();if(r)return this.sourceUpdater_.videoBuffered()}return this.sourceUpdater_.audioBuffered()},r.initSegmentForMap=function(e,t){if(void 0===t&&(t=!1),!e)return null;var r=dc(e),i=this.initSegments_[r];return t&&!i&&e.bytes&&(this.initSegments_[r]=i={resolvedUri:e.resolvedUri,byterange:e.byterange,bytes:e.bytes,tracks:e.tracks,timescales:e.timescales}),i||e},r.segmentKey=function(e,t){if(void 0===t&&(t=!1),!e)return null;var r=hc(e),i=this.keyCache_[r];this.cacheEncryptionKeys_&&t&&!i&&e.bytes&&(this.keyCache_[r]=i={resolvedUri:e.resolvedUri,bytes:e.bytes});var n={resolvedUri:(i||e).resolvedUri};return i&&(n.bytes=i.bytes),n},r.couldBeginLoading_=function(){return this.playlist_&&!this.paused()},r.load=function(){if(this.monitorBuffer_(),this.playlist_)return"INIT"===this.state&&this.couldBeginLoading_()?this.init_():void(!this.couldBeginLoading_()||"READY"!==this.state&&"INIT"!==this.state||(this.state="READY"))},r.init_=function(){return this.state="READY",this.resetEverything(),this.monitorBuffer_()},r.playlist=function(e,t){if(void 0===t&&(t={}),e){var r=this.playlist_,i=this.pendingSegment_;this.playlist_=e,this.xhrOptions_=t,"INIT"===this.state&&(e.syncInfo={mediaSequence:e.mediaSequence,time:0},"main"===this.loaderType_&&this.syncController_.setDateTimeMappingForStart(e));var n=null;if(r&&(r.id?n=r.id:r.uri&&(n=r.uri)),this.logger_("playlist update ["+n+" => "+(e.id||e.uri)+"]"),this.trigger("syncinfoupdate"),"INIT"===this.state&&this.couldBeginLoading_())return this.init_();if(!r||r.uri!==e.uri)return null!==this.mediaIndex&&(e.endList?this.resyncLoader():this.resetLoader()),this.currentMediaInfo_=void 0,void this.trigger("playlistupdate");var a=e.mediaSequence-r.mediaSequence;if(this.logger_("live window shift ["+a+"]"),null!==this.mediaIndex)if(this.mediaIndex-=a,this.mediaIndex<0)this.mediaIndex=null,this.partIndex=null;else{var s=this.playlist_.segments[this.mediaIndex];if(this.partIndex&&(!s.parts||!s.parts.length||!s.parts[this.partIndex])){var o=this.mediaIndex;this.logger_("currently processing part (index "+this.partIndex+") no longer exists."),this.resetLoader(),this.mediaIndex=o}}i&&(i.mediaIndex-=a,i.mediaIndex<0?(i.mediaIndex=null,i.partIndex=null):(i.mediaIndex>=0&&(i.segment=e.segments[i.mediaIndex]),i.partIndex>=0&&i.segment.parts&&(i.part=i.segment.parts[i.partIndex]))),this.syncController_.saveExpiredSegmentInfo(r,e)}},r.pause=function(){this.checkBufferTimeout_&&(window.clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=null)},r.paused=function(){return null===this.checkBufferTimeout_},r.resetEverything=function(e){this.ended_=!1,this.appendInitSegment_={audio:!0,video:!0},this.resetLoader(),this.remove(0,1/0,e),this.transmuxer_&&(this.transmuxer_.postMessage({action:"clearAllMp4Captions"}),this.transmuxer_.postMessage({action:"reset"}))},r.resetLoader=function(){this.fetchAtBuffer_=!1,this.resyncLoader()},r.resyncLoader=function(){this.transmuxer_&&Nc(this.transmuxer_),this.mediaIndex=null,this.partIndex=null,this.syncPoint_=null,this.isPendingTimestampOffset_=!1,this.callQueue_=[],this.loadQueue_=[],this.metadataQueue_.id3=[],this.metadataQueue_.caption=[],this.abort(),this.transmuxer_&&this.transmuxer_.postMessage({action:"clearParsedMp4Captions"})},r.remove=function(e,t,r,i){if(void 0===r&&(r=function(){}),void 0===i&&(i=!1),t===1/0&&(t=this.duration_()),t<=e)this.logger_("skipping remove because end ${end} is <= start ${start}");else if(this.sourceUpdater_&&this.getMediaInfo_()){var n=1,a=function(){0===--n&&r()};for(var s in!i&&this.audioDisabled_||(n++,this.sourceUpdater_.removeAudio(e,t,a)),(i||"main"===this.loaderType_)&&(this.gopBuffer_=function(e,t,r,i){for(var n=Math.ceil((t-i)*cu),a=Math.ceil((r-i)*cu),s=e.slice(),o=e.length;o--&&!(e[o].pts<=a););if(-1===o)return s;for(var l=o+1;l--&&!(e[l].pts<=n););return l=Math.max(l,0),s.splice(l,o-l+1),s}(this.gopBuffer_,e,t,this.timeMapping_),n++,this.sourceUpdater_.removeVideo(e,t,a)),this.inbandTextTracks_)hd(e,t,this.inbandTextTracks_[s]);hd(e,t,this.segmentMetadataTrack_),a()}else this.logger_("skipping remove because no source updater or starting media info")},r.monitorBuffer_=function(){this.checkBufferTimeout_&&window.clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=window.setTimeout(this.monitorBufferTick_.bind(this),1)},r.monitorBufferTick_=function(){"READY"===this.state&&this.fillBuffer_(),this.checkBufferTimeout_&&window.clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=window.setTimeout(this.monitorBufferTick_.bind(this),500)},r.fillBuffer_=function(){if(!this.sourceUpdater_.updating()){var e=this.chooseNextRequest_();e&&("number"==typeof e.timestampOffset&&(this.isPendingTimestampOffset_=!1,this.timelineChangeController_.pendingTimelineChange({type:this.loaderType_,from:this.currentTimeline_,to:e.timeline})),this.loadSegment_(e))}},r.isEndOfStream_=function(e,t,r){if(void 0===e&&(e=this.mediaIndex),void 0===t&&(t=this.playlist_),void 0===r&&(r=this.partIndex),!t||!this.mediaSource_)return!1;var i="number"==typeof e&&t.segments[e],n=e+1===t.segments.length,a=!i||!i.parts||r+1===i.parts.length;return t.endList&&"open"===this.mediaSource_.readyState&&n&&a},r.chooseNextRequest_=function(){var e=this.buffered_(),t=Tu(e)||0,r=wu(e,this.currentTime_()),i=!this.hasPlayed_()&&r>=1,n=r>=this.goalBufferLength_(),a=this.playlist_.segments;if(!a.length||i||n)return null;this.syncPoint_=this.syncPoint_||this.syncController_.getSyncPoint(this.playlist_,this.duration_(),this.currentTimeline_,this.currentTime_());var s={partIndex:null,mediaIndex:null,startOfSegment:null,playlist:this.playlist_,isSyncRequest:Boolean(!this.syncPoint_)};if(s.isSyncRequest)s.mediaIndex=function(e,t,r){t=t||[];for(var i=[],n=0,a=0;ar))return a}return 0===i.length?0:i[i.length-1]}(this.currentTimeline_,a,t);else if(null!==this.mediaIndex){var o=a[this.mediaIndex],l="number"==typeof this.partIndex?this.partIndex:-1;s.startOfSegment=o.end?o.end:t,o.parts&&o.parts[l+1]?(s.mediaIndex=this.mediaIndex,s.partIndex=l+1):s.mediaIndex=this.mediaIndex+1}else{var u=Vu.getMediaInfoForTime({experimentalExactManifestTimings:this.experimentalExactManifestTimings,playlist:this.playlist_,currentTime:this.fetchAtBuffer_?t:this.currentTime_(),startingPartIndex:this.syncPoint_.partIndex,startingSegmentIndex:this.syncPoint_.segmentIndex,startTime:this.syncPoint_.time}),c=u.segmentIndex,d=u.startTime,h=u.partIndex;s.getMediaInfoForTime=this.fetchAtBuffer_?"bufferedEnd "+t:"currentTime "+this.currentTime_(),s.mediaIndex=c,s.startOfSegment=d,s.partIndex=h}var p=a[s.mediaIndex],f=p&&"number"==typeof s.partIndex&&p.parts&&p.parts[s.partIndex];if(!p||"number"==typeof s.partIndex&&!f)return null;if("number"!=typeof s.partIndex&&p.parts&&(s.partIndex=0,f=p.parts[0]),!r&&f&&!f.independent)if(0===s.partIndex){var m=a[s.mediaIndex-1],g=m.parts&&m.parts.length&&m.parts[m.parts.length-1];g&&g.independent&&(s.mediaIndex-=1,s.partIndex=m.parts.length-1,s.independent="previous segment")}else p.parts[s.partIndex-1].independent&&(s.partIndex-=1,s.independent="previous part");var v=this.mediaSource_&&"ended"===this.mediaSource_.readyState;return s.mediaIndex>=a.length-1&&v&&!this.seeking_()?null:this.generateSegmentInfo_(s)},r.generateSegmentInfo_=function(e){var t=e.independent,r=e.playlist,i=e.mediaIndex,n=e.startOfSegment,a=e.isSyncRequest,s=e.partIndex,o=e.forceTimestampOffset,l=e.getMediaInfoForTime,u=r.segments[i],c="number"==typeof s&&u.parts[s],d={requestId:"segment-loader-"+Math.random(),uri:c&&c.resolvedUri||u.resolvedUri,mediaIndex:i,partIndex:c?s:null,isSyncRequest:a,startOfSegment:n,playlist:r,bytes:null,encryptedBytes:null,timestampOffset:null,timeline:u.timeline,duration:c&&c.duration||u.duration,segment:u,part:c,byteLength:0,transmuxer:this.transmuxer_,getMediaInfoForTime:l,independent:t},h=void 0!==o?o:this.isPendingTimestampOffset_;d.timestampOffset=this.timestampOffsetForSegment_({segmentTimeline:u.timeline,currentTimeline:this.currentTimeline_,startOfSegment:n,buffered:this.buffered_(),overrideCheck:h});var p=Tu(this.sourceUpdater_.audioBuffered());return"number"==typeof p&&(d.audioAppendStart=p-this.sourceUpdater_.audioTimestampOffset()),this.sourceUpdater_.videoBuffered().length&&(d.gopsToAlignWith=function(e,t,r){if(null==t||!e.length)return[];var i,n=Math.ceil((t-r+3)*cu);for(i=0;in);i++);return e.slice(i)}(this.gopBuffer_,this.currentTime_()-this.sourceUpdater_.videoTimestampOffset(),this.timeMapping_)),d},r.timestampOffsetForSegment_=function(e){return r=(t=e).segmentTimeline,i=t.currentTimeline,n=t.startOfSegment,a=t.buffered,t.overrideCheck||r!==i?r "+s+" for "+e),function(e,t,r){if(!e[r]){t.trigger({type:"usage",name:"vhs-608"}),t.trigger({type:"usage",name:"hls-608"});var i=r;/^cc708_/.test(r)&&(i="SERVICE"+r.split("_")[1]);var n=t.textTracks().getTrackById(i);if(n)e[r]=n;else{var a=r,s=r,o=!1,l=(t.options_.vhs&&t.options_.vhs.captionServices||{})[i];l&&(a=l.label,s=l.language,o=l.default),e[r]=t.addRemoteTextTrack({kind:"captions",id:i,default:o,label:a,language:s},!1).track}}}(l,r.vhs_.tech_,e),hd(a,s,l[e]),function(e){var t=e.inbandTextTracks,r=e.captionArray,i=e.timestampOffset;if(r){var n=window.WebKitDataCue||window.VTTCue;r.forEach(function(e){var r=e.stream;t[r].addCue(new n(e.startTime+i,e.endTime+i,e.text))})}}({captionArray:o,inbandTextTracks:l,timestampOffset:i})}),this.transmuxer_&&this.transmuxer_.postMessage({action:"clearParsedMp4Captions"})}else this.metadataQueue_.caption.push(this.handleCaptions_.bind(this,e,t));else this.logger_("SegmentLoader received no captions from a caption event")},r.handleId3_=function(e,t,r){if(this.earlyAbortWhenNeeded_(e.stats),!this.checkForAbort_(e.requestId))if(this.pendingSegment_.hasAppendedData_){var i=null===this.sourceUpdater_.videoTimestampOffset()?this.sourceUpdater_.audioTimestampOffset():this.sourceUpdater_.videoTimestampOffset();!function(e,t,r){e.metadataTrack_||(e.metadataTrack_=r.addRemoteTextTrack({kind:"metadata",label:"Timed Metadata"},!1).track,e.metadataTrack_.inBandMetadataTrackDispatchType=t)}(this.inbandTextTracks_,r,this.vhs_.tech_),dd({inbandTextTracks:this.inbandTextTracks_,metadataArray:t,timestampOffset:i,videoDuration:this.duration_()})}else this.metadataQueue_.id3.push(this.handleId3_.bind(this,e,t,r))},r.processMetadataQueue_=function(){this.metadataQueue_.id3.forEach(function(e){return e()}),this.metadataQueue_.caption.forEach(function(e){return e()}),this.metadataQueue_.id3=[],this.metadataQueue_.caption=[]},r.processCallQueue_=function(){var e=this.callQueue_;this.callQueue_=[],e.forEach(function(e){return e()})},r.processLoadQueue_=function(){var e=this.loadQueue_;this.loadQueue_=[],e.forEach(function(e){return e()})},r.hasEnoughInfoToLoad_=function(){if("audio"!==this.loaderType_)return!0;var e=this.pendingSegment_;return!!e&&(!this.getCurrentMediaInfo_()||!vd({timelineChangeController:this.timelineChangeController_,currentTimeline:this.currentTimeline_,segmentTimeline:e.timeline,loaderType:this.loaderType_,audioDisabled:this.audioDisabled_}))},r.getCurrentMediaInfo_=function(e){return void 0===e&&(e=this.pendingSegment_),e&&e.trackInfo||this.currentMediaInfo_},r.getMediaInfo_=function(e){return void 0===e&&(e=this.pendingSegment_),this.getCurrentMediaInfo_(e)||this.startingMediaInfo_},r.hasEnoughInfoToAppend_=function(){if(!this.sourceUpdater_.ready())return!1;if(this.waitingOnRemove_||this.quotaExceededErrorRetryTimeout_)return!1;var e=this.pendingSegment_,t=this.getCurrentMediaInfo_();if(!e||!t)return!1;var r=t.hasAudio,i=t.hasVideo,n=t.isMuxed;return!(i&&!e.videoTimingInfo)&&(!(r&&!this.audioDisabled_&&!n&&!e.audioTimingInfo)&&!vd({timelineChangeController:this.timelineChangeController_,currentTimeline:this.currentTimeline_,segmentTimeline:e.timeline,loaderType:this.loaderType_,audioDisabled:this.audioDisabled_}))},r.handleData_=function(e,t){if(this.earlyAbortWhenNeeded_(e.stats),!this.checkForAbort_(e.requestId))if(!this.callQueue_.length&&this.hasEnoughInfoToAppend_()){var r=this.pendingSegment_;if(this.setTimeMapping_(r.timeline),this.updateMediaSecondsLoaded_(r.part||r.segment),"closed"!==this.mediaSource_.readyState){if(e.map&&(e.map=this.initSegmentForMap(e.map,!0),r.segment.map=e.map),e.key&&this.segmentKey(e.key,!0),r.isFmp4=e.isFmp4,r.timingInfo=r.timingInfo||{},r.isFmp4)this.trigger("fmp4"),r.timingInfo.start=r[gd(t.type)].start;else{var i,n=this.getCurrentMediaInfo_(),a="main"===this.loaderType_&&n&&n.hasVideo;a&&(i=r.videoTimingInfo.start),r.timingInfo.start=this.trueSegmentStart_({currentStart:r.timingInfo.start,playlist:r.playlist,mediaIndex:r.mediaIndex,currentVideoTimestampOffset:this.sourceUpdater_.videoTimestampOffset(),useVideoTimingInfo:a,firstVideoFrameTimeForData:i,videoTimingInfo:r.videoTimingInfo,audioTimingInfo:r.audioTimingInfo})}if(this.updateAppendInitSegmentStatus(r,t.type),this.updateSourceBufferTimestampOffset_(r),r.isSyncRequest){this.updateTimingInfoEnd_(r),this.syncController_.saveSegmentTimingInfo({segmentInfo:r,shouldSaveTimelineMapping:"main"===this.loaderType_});var s=this.chooseNextRequest_();if(s.mediaIndex!==r.mediaIndex||s.partIndex!==r.partIndex)return void this.logger_("sync segment was incorrect, not appending");this.logger_("sync segment was correct, appending")}r.hasAppendedData_=!0,this.processMetadataQueue_(),this.appendData_(r,t)}}else this.callQueue_.push(this.handleData_.bind(this,e,t))},r.updateAppendInitSegmentStatus=function(e,t){"main"!==this.loaderType_||"number"!=typeof e.timestampOffset||e.changedTimestampOffset||(this.appendInitSegment_={audio:!0,video:!0}),this.playlistOfLastInitSegment_[t]!==e.playlist&&(this.appendInitSegment_[t]=!0)},r.getInitSegmentAndUpdateState_=function(e){var t=e.type,r=e.initSegment,i=e.map,n=e.playlist;if(i){var a=dc(i);if(this.activeInitSegmentId_===a)return null;r=this.initSegmentForMap(i,!0).bytes,this.activeInitSegmentId_=a}return r&&this.appendInitSegment_[t]?(this.playlistOfLastInitSegment_[t]=n,this.appendInitSegment_[t]=!1,this.activeInitSegmentId_=null,r):null},r.handleQuotaExceededError_=function(e,t){var r=this,i=e.segmentInfo,n=e.type,a=e.bytes,s=this.sourceUpdater_.audioBuffered(),o=this.sourceUpdater_.videoBuffered();s.length>1&&this.logger_("On QUOTA_EXCEEDED_ERR, found gaps in the audio buffer: "+bu(s).join(", ")),o.length>1&&this.logger_("On QUOTA_EXCEEDED_ERR, found gaps in the video buffer: "+bu(o).join(", "));var l=s.length?s.start(0):0,u=s.length?s.end(s.length-1):0,c=o.length?o.start(0):0,d=o.length?o.end(o.length-1):0;if(u-l<=1&&d-c<=1)return this.logger_("On QUOTA_EXCEEDED_ERR, single segment too large to append to buffer, triggering an error. Appended byte length: "+a.byteLength+", audio buffer: "+bu(s).join(", ")+", video buffer: "+bu(o).join(", ")+", "),this.error({message:"Quota exceeded error with append of a single segment of content",excludeUntil:1/0}),void this.trigger("error");this.waitingOnRemove_=!0,this.callQueue_.push(this.appendToSourceBuffer_.bind(this,{segmentInfo:i,type:n,bytes:a}));var h=this.currentTime_()-1;this.logger_("On QUOTA_EXCEEDED_ERR, removing audio/video from 0 to "+h),this.remove(0,h,function(){r.logger_("On QUOTA_EXCEEDED_ERR, retrying append in 1s"),r.waitingOnRemove_=!1,r.quotaExceededErrorRetryTimeout_=window.setTimeout(function(){r.logger_("On QUOTA_EXCEEDED_ERR, re-processing call queue"),r.quotaExceededErrorRetryTimeout_=null,r.processCallQueue_()},1e3)},!0)},r.handleAppendError_=function(e,t){var r=e.segmentInfo,i=e.type,n=e.bytes;t&&(22!==t.code?(this.logger_("Received non QUOTA_EXCEEDED_ERR on append",t),this.error(i+" append of "+n.length+"b failed for segment #"+r.mediaIndex+" in playlist "+r.playlist.id),this.trigger("appenderror")):this.handleQuotaExceededError_({segmentInfo:r,type:i,bytes:n}))},r.appendToSourceBuffer_=function(e){var t,r,i,n=e.segmentInfo,a=e.type,s=e.initSegment,o=e.data,l=e.bytes;if(!l){var u=[o],c=o.byteLength;s&&(u.unshift(s),c+=s.byteLength),i=0,(t={bytes:c,segments:u}).bytes&&(r=new Uint8Array(t.bytes),t.segments.forEach(function(e){r.set(e,i),i+=e.byteLength})),l=r}this.sourceUpdater_.appendBuffer({segmentInfo:n,type:a,bytes:l},this.handleAppendError_.bind(this,{segmentInfo:n,type:a,bytes:l}))},r.handleSegmentTimingInfo_=function(e,t,r){if(this.pendingSegment_&&t===this.pendingSegment_.requestId){var i=this.pendingSegment_.segment,n=e+"TimingInfo";i[n]||(i[n]={}),i[n].transmuxerPrependedSeconds=r.prependedContentDuration||0,i[n].transmuxedPresentationStart=r.start.presentation,i[n].transmuxedDecodeStart=r.start.decode,i[n].transmuxedPresentationEnd=r.end.presentation,i[n].transmuxedDecodeEnd=r.end.decode,i[n].baseMediaDecodeTime=r.baseMediaDecodeTime}},r.appendData_=function(e,t){var r=t.type,i=t.data;if(i&&i.byteLength&&("audio"!==r||!this.audioDisabled_)){var n=this.getInitSegmentAndUpdateState_({type:r,initSegment:t.initSegment,playlist:e.playlist,map:e.isFmp4?e.segment.map:null});this.appendToSourceBuffer_({segmentInfo:e,type:r,initSegment:n,data:i})}},r.loadSegment_=function(e){var t=this;this.state="WAITING",this.pendingSegment_=e,this.trimBackBuffer_(e),"number"==typeof e.timestampOffset&&this.transmuxer_&&this.transmuxer_.postMessage({action:"clearAllMp4Captions"}),this.hasEnoughInfoToLoad_()?this.updateTransmuxerAndRequestSegment_(e):this.loadQueue_.push(function(){var r=m({},e,{forceTimestampOffset:!0});m(e,t.generateSegmentInfo_(r)),t.isPendingTimestampOffset_=!1,t.updateTransmuxerAndRequestSegment_(e)})},r.updateTransmuxerAndRequestSegment_=function(e){var t=this;this.shouldUpdateTransmuxerTimestampOffset_(e.timestampOffset)&&(this.gopBuffer_.length=0,e.gopsToAlignWith=[],this.timeMapping_=0,this.transmuxer_.postMessage({action:"reset"}),this.transmuxer_.postMessage({action:"setTimestampOffset",timestampOffset:e.timestampOffset}));var r=this.createSimplifiedSegmentObj_(e),i=this.isEndOfStream_(e.mediaIndex,e.playlist,e.partIndex),n=null!==this.mediaIndex,a=e.timeline!==this.currentTimeline_&&e.timeline>0,s=i||n&&a;this.logger_("Requesting "+md(e)),r.map&&!r.map.bytes&&(this.logger_("going to request init segment."),this.appendInitSegment_={video:!0,audio:!0}),e.abortRequests=Jc({xhr:this.vhs_.xhr,xhrOptions:this.xhrOptions_,decryptionWorker:this.decrypter_,segment:r,abortFn:this.handleAbort_.bind(this,e),progressFn:this.handleProgress_.bind(this),trackInfoFn:this.handleTrackInfo_.bind(this),timingInfoFn:this.handleTimingInfo_.bind(this),videoSegmentTimingInfoFn:this.handleSegmentTimingInfo_.bind(this,"video",e.requestId),audioSegmentTimingInfoFn:this.handleSegmentTimingInfo_.bind(this,"audio",e.requestId),captionsFn:this.handleCaptions_.bind(this),isEndOfTimeline:s,endedTimelineFn:function(){t.logger_("received endedtimeline callback")},id3Fn:this.handleId3_.bind(this),dataFn:this.handleData_.bind(this),doneFn:this.segmentRequestFinished_.bind(this),onTransmuxerLog:function(r){var i=r.message,n=r.level,a=r.stream;t.logger_(md(e)+" logged from transmuxer stream "+a+" as a "+n+": "+i)}})},r.trimBackBuffer_=function(e){var t=function(e,t,r){var i=t-Ec.BACK_BUFFER_LENGTH;e.length&&(i=Math.max(i,e.start(0)));var n=t-r;return Math.min(n,i)}(this.seekable_(),this.currentTime_(),this.playlist_.targetDuration||10);t>0&&this.remove(0,t)},r.createSimplifiedSegmentObj_=function(e){var t=e.segment,r=e.part,i={resolvedUri:r?r.resolvedUri:t.resolvedUri,byterange:r?r.byterange:t.byterange,requestId:e.requestId,transmuxer:e.transmuxer,audioAppendStart:e.audioAppendStart,gopsToAlignWith:e.gopsToAlignWith,part:e.part},n=e.playlist.segments[e.mediaIndex-1];if(n&&n.timeline===t.timeline&&(n.videoTimingInfo?i.baseStartTime=n.videoTimingInfo.transmuxedDecodeEnd:n.audioTimingInfo&&(i.baseStartTime=n.audioTimingInfo.transmuxedDecodeEnd)),t.key){var a=t.key.iv||new Uint32Array([0,0,0,e.mediaIndex+e.playlist.mediaSequence]);i.key=this.segmentKey(t.key),i.key.iv=a}return t.map&&(i.map=this.initSegmentForMap(t.map)),i},r.saveTransferStats_=function(e){this.mediaRequests+=1,e&&(this.mediaBytesTransferred+=e.bytesReceived,this.mediaTransferDuration+=e.roundTripTime)},r.saveBandwidthRelatedStats_=function(e,t){this.pendingSegment_.byteLength=t.bytesReceived,e=i);n++);return e.slice(0,n).concat(t)}(this.gopBuffer_,r.gopInfo,this.safeAppend_)),this.state="APPENDING",this.trigger("appending"),this.waitForAppendsToComplete_(i)}},r.setTimeMapping_=function(e){var t=this.syncController_.mappingForTimeline(e);null!==t&&(this.timeMapping_=t)},r.updateMediaSecondsLoaded_=function(e){"number"==typeof e.start&&"number"==typeof e.end?this.mediaSecondsLoaded+=e.end-e.start:this.mediaSecondsLoaded+=e.duration},r.shouldUpdateTransmuxerTimestampOffset_=function(e){return null!==e&&("main"===this.loaderType_&&e!==this.sourceUpdater_.videoTimestampOffset()||!this.audioDisabled_&&e!==this.sourceUpdater_.audioTimestampOffset())},r.trueSegmentStart_=function(e){var t=e.currentStart,r=e.playlist,i=e.mediaIndex,n=e.firstVideoFrameTimeForData,a=e.currentVideoTimestampOffset,s=e.useVideoTimingInfo,o=e.videoTimingInfo,l=e.audioTimingInfo;if(void 0!==t)return t;if(!s)return l.start;var u=r.segments[i-1];return 0!==i&&u&&void 0!==u.start&&u.end===n+a?o.start:n},r.waitForAppendsToComplete_=function(e){var t=this.getCurrentMediaInfo_(e);if(!t)return this.error({message:"No starting media returned, likely due to an unsupported media format.",blacklistDuration:1/0}),void this.trigger("error");var r=t.hasAudio,i=t.hasVideo,n=t.isMuxed,a="main"===this.loaderType_&&i,s=!this.audioDisabled_&&r&&!n;if(e.waitingOnAppends=0,!e.hasAppendedData_)return e.timingInfo||"number"!=typeof e.timestampOffset||(this.isPendingTimestampOffset_=!0),e.timingInfo={start:0},e.waitingOnAppends++,this.isPendingTimestampOffset_||(this.updateSourceBufferTimestampOffset_(e),this.processMetadataQueue_()),void this.checkAppendsDone_(e);a&&e.waitingOnAppends++,s&&e.waitingOnAppends++,a&&this.sourceUpdater_.videoQueueCallback(this.checkAppendsDone_.bind(this,e)),s&&this.sourceUpdater_.audioQueueCallback(this.checkAppendsDone_.bind(this,e))},r.checkAppendsDone_=function(e){this.checkForAbort_(e.requestId)||(e.waitingOnAppends--,0===e.waitingOnAppends&&this.handleAppendsDone_())},r.checkForIllegalMediaSwitch=function(e){var t=function(e,t,r){return"main"===e&&t&&r?r.hasAudio||r.hasVideo?t.hasVideo&&!r.hasVideo?"Only audio found in segment when we expected video. We can't switch to audio only from a stream that had video. To get rid of this message, please add codec information to the manifest.":!t.hasVideo&&r.hasVideo?"Video found in segment when we expected only audio. We can't switch to a stream with video from an audio only stream. To get rid of this message, please add codec information to the manifest.":null:"Neither audio nor video found in segment.":null}(this.loaderType_,this.getCurrentMediaInfo_(),e);return!!t&&(this.error({message:t,blacklistDuration:1/0}),this.trigger("error"),!0)},r.updateSourceBufferTimestampOffset_=function(e){if(null!==e.timestampOffset&&"number"==typeof e.timingInfo.start&&!e.changedTimestampOffset&&"main"===this.loaderType_){var t=!1;e.timestampOffset-=e.timingInfo.start,e.changedTimestampOffset=!0,e.timestampOffset!==this.sourceUpdater_.videoTimestampOffset()&&(this.sourceUpdater_.videoTimestampOffset(e.timestampOffset),t=!0),e.timestampOffset!==this.sourceUpdater_.audioTimestampOffset()&&(this.sourceUpdater_.audioTimestampOffset(e.timestampOffset),t=!0),t&&this.trigger("timestampoffset")}},r.updateTimingInfoEnd_=function(e){e.timingInfo=e.timingInfo||{};var t=this.getMediaInfo_(),r="main"===this.loaderType_&&t&&t.hasVideo&&e.videoTimingInfo?e.videoTimingInfo:e.audioTimingInfo;r&&(e.timingInfo.end="number"==typeof r.end?r.end:r.start+e.duration)},r.handleAppendsDone_=function(){if(this.pendingSegment_&&this.trigger("appendsdone"),!this.pendingSegment_)return this.state="READY",void(this.paused()||this.monitorBuffer_());var e=this.pendingSegment_;this.updateTimingInfoEnd_(e),this.shouldSaveSegmentTimingInfo_&&this.syncController_.saveSegmentTimingInfo({segmentInfo:e,shouldSaveTimelineMapping:"main"===this.loaderType_});var t=_d(e,this.sourceType_);if(t&&("warn"===t.severity?pa.log.warn(t.message):this.logger_(t.message)),this.recordThroughput_(e),this.pendingSegment_=null,this.state="READY",!e.isSyncRequest||(this.trigger("syncinfoupdate"),e.hasAppendedData_)){this.logger_("Appended "+md(e)),this.addSegmentMetadataCue_(e),this.fetchAtBuffer_=!0,this.currentTimeline_!==e.timeline&&(this.timelineChangeController_.lastTimelineChange({type:this.loaderType_,from:this.currentTimeline_,to:e.timeline}),"main"!==this.loaderType_||this.audioDisabled_||this.timelineChangeController_.lastTimelineChange({type:"audio",from:this.currentTimeline_,to:e.timeline})),this.currentTimeline_=e.timeline,this.trigger("syncinfoupdate");var r=e.segment,i=e.part,n=r.end&&this.currentTime_()-r.end>3*e.playlist.targetDuration,a=i&&i.end&&this.currentTime_()-i.end>3*e.playlist.partTargetDuration;if(n||a)return this.logger_("bad "+(n?"segment":"part")+" "+md(e)),void this.resetEverything();null!==this.mediaIndex&&this.trigger("bandwidthupdate"),this.trigger("progress"),this.mediaIndex=e.mediaIndex,this.partIndex=e.partIndex,this.isEndOfStream_(e.mediaIndex,e.playlist,e.partIndex)&&this.endOfStream(),this.trigger("appended"),e.hasAppendedData_&&this.mediaAppends++,this.paused()||this.monitorBuffer_()}else this.logger_("Throwing away un-appended sync request "+md(e))},r.recordThroughput_=function(e){if(e.duration=e.playlist.segments.length){e=null;break}e=this.generateSegmentInfo_({playlist:e.playlist,mediaIndex:e.mediaIndex+1,startOfSegment:e.startOfSegment+e.duration,isSyncRequest:e.isSyncRequest})}return e},r.stopForError=function(e){this.error(e),this.state="READY",this.pause(),this.trigger("error")},r.segmentRequestFinished_=function(e,t,r){var i=this;if(this.subtitlesTrack_){if(this.saveTransferStats_(t.stats),!this.pendingSegment_)return this.state="READY",void(this.mediaRequestsAborted+=1);if(e)return e.code===jc&&this.handleTimeout_(),e.code===Vc?this.mediaRequestsAborted+=1:this.mediaRequestsErrored+=1,void this.stopForError(e);var n=this.pendingSegment_;this.saveBandwidthRelatedStats_(n.duration,t.stats),this.state="APPENDING",this.trigger("appending");var a=n.segment;if(a.map&&(a.map.bytes=t.map.bytes),n.bytes=t.bytes,"function"!=typeof window.WebVTT&&this.subtitlesTrack_&&this.subtitlesTrack_.tech_){var s,o=function(){i.subtitlesTrack_.tech_.off("vttjsloaded",s),i.stopForError({message:"Error loading vtt.js"})};return s=function(){i.subtitlesTrack_.tech_.off("vttjserror",o),i.segmentRequestFinished_(e,t,r)},this.state="WAITING_ON_VTTJS",this.subtitlesTrack_.tech_.one("vttjsloaded",s),void this.subtitlesTrack_.tech_.one("vttjserror",o)}a.requested=!0;try{this.parseVTTCues_(n)}catch(e){return void this.stopForError({message:e.message})}if(this.updateTimeMapping_(n,this.syncController_.timelines[n.timeline],this.playlist_),n.cues.length?n.timingInfo={start:n.cues[0].startTime,end:n.cues[n.cues.length-1].endTime}:n.timingInfo={start:n.startOfSegment,end:n.startOfSegment+n.duration},n.isSyncRequest)return this.trigger("syncinfoupdate"),this.pendingSegment_=null,void(this.state="READY");n.byteLength=n.bytes.byteLength,this.mediaSecondsLoaded+=a.duration,n.cues.forEach(function(e){i.subtitlesTrack_.addCue(i.featuresNativeTextTracks_?new window.VTTCue(e.startTime,e.endTime,e.text):e)}),function(e){var t=e.cues;if(t)for(var r=0;r1&&i.push(t[a]);i.length&&i.forEach(function(t){return e.removeCue(t)})}}(this.subtitlesTrack_),this.handleAppendsDone_()}else this.state="READY"},r.handleData_=function(){},r.updateTimingInfoEnd_=function(){},r.parseVTTCues_=function(e){var t,r=!1;"function"==typeof window.TextDecoder?t=new window.TextDecoder("utf8"):(t=window.WebVTT.StringDecoder(),r=!0);var i=new window.WebVTT.Parser(window,window.vttjs,t);if(e.cues=[],e.timestampmap={MPEGTS:0,LOCAL:0},i.oncue=e.cues.push.bind(e.cues),i.ontimestampmap=function(t){e.timestampmap=t},i.onparsingerror=function(e){pa.log.warn("Error encountered when parsing cues: "+e.message)},e.segment.map){var n=e.segment.map.bytes;r&&(n=Hd(n)),i.parse(n)}var a=e.bytes;r&&(a=Hd(a)),i.parse(a),i.flush()},r.updateTimeMapping_=function(e,t,r){var i=e.segment;if(t)if(e.cues.length){var n=e.timestampmap,a=n.MPEGTS/cu-n.LOCAL+t.mapping;if(e.cues.forEach(function(e){e.startTime+=a,e.endTime+=a}),!r.syncInfo){var s=e.cues[0].startTime,o=e.cues[e.cues.length-1].startTime;r.syncInfo={mediaSequence:r.mediaSequence+e.mediaIndex,time:Math.min(s,o-i.duration)}}}else i.empty=!0},t}(bd),zd=function(e,t){for(var r=e.cues,i=0;i=n.adStartTime&&t<=n.adEndTime)return n}return null},Wd=[{name:"VOD",run:function(e,t,r,i,n){if(r!==1/0){return{time:0,segmentIndex:0,partIndex:null}}return null}},{name:"ProgramDateTime",run:function(e,t,r,i,n){if(!Object.keys(e.timelineToDatetimeMappings).length)return null;var a=null,s=null,o=ku(t);n=n||0;for(var l=0;l=h)&&(s=h,a={time:d,segmentIndex:u.segmentIndex,partIndex:u.partIndex})}}return a}},{name:"Discontinuity",run:function(e,t,r,i,n){var a=null;if(n=n||0,t.discontinuityStarts&&t.discontinuityStarts.length)for(var s=null,o=0;o=d)&&(s=d,a={time:c.time,segmentIndex:l,partIndex:null})}}return a}},{name:"Playlist",run:function(e,t,r,i,n){return t.syncInfo?{time:t.syncInfo.time,segmentIndex:t.syncInfo.mediaSequence-t.mediaSequence,partIndex:null}:null}}],Gd=function(e){function t(t){var r;return(r=e.call(this)||this).timelines=[],r.discontinuities=[],r.timelineToDatetimeMappings={},r.logger_=pu("SyncController"),r}yt(t,e);var r=t.prototype;return r.getSyncPoint=function(e,t,r,i){var n=this.runStrategies_(e,t,r,i);return n.length?this.selectSyncPoint_(n,{key:"time",value:i}):null},r.getExpiredTime=function(e,t){if(!e||!e.segments)return null;var r=this.runStrategies_(e,t,e.discontinuitySequence,0);if(!r.length)return null;var i=this.selectSyncPoint_(r,{key:"segmentIndex",value:0});return i.segmentIndex>0&&(i.time*=-1),Math.abs(i.time+Ou({defaultDuration:e.targetDuration,durationList:e.segments,startIndex:i.segmentIndex,endIndex:0}))},r.runStrategies_=function(e,t,r,i){for(var n=[],a=0;a86400)pa.log.warn("Not saving expired segment info. Media sequence gap "+r+" is too large.");else for(var i=r-1;i>=0;i--){var n=e.segments[i];if(n&&void 0!==n.start){t.syncInfo={mediaSequence:e.mediaSequence+i,time:n.start},this.logger_("playlist refresh sync: [time:"+t.syncInfo.time+", mediaSequence: "+t.syncInfo.mediaSequence+"]"),this.trigger("syncinfoupdate");break}}},r.setDateTimeMappingForStart=function(e){if(this.timelineToDatetimeMappings={},e.segments&&e.segments.length&&e.segments[0].dateTimeObject){var t=e.segments[0],r=t.dateTimeObject.getTime()/1e3;this.timelineToDatetimeMappings[t.timeline]=-r}},r.saveSegmentTimingInfo=function(e){var t=e.segmentInfo,r=e.shouldSaveTimelineMapping,i=this.calculateSegmentTimeMapping_(t,t.timingInfo,r),n=t.segment;i&&(this.saveDiscontinuitySyncInfo_(t),t.playlist.syncInfo||(t.playlist.syncInfo={mediaSequence:t.playlist.mediaSequence+t.mediaIndex,time:n.start}));var a=n.dateTimeObject;n.discontinuity&&r&&a&&(this.timelineToDatetimeMappings[n.timeline]=-a.getTime()/1e3)},r.timestampOffsetForTimeline=function(e){return void 0===this.timelines[e]?null:this.timelines[e].time},r.mappingForTimeline=function(e){return void 0===this.timelines[e]?null:this.timelines[e].mapping},r.calculateSegmentTimeMapping_=function(e,t,r){var i,n,a=e.segment,s=e.part,o=this.timelines[e.timeline];if("number"==typeof e.timestampOffset)o={time:e.startOfSegment,mapping:e.startOfSegment-t.start},r&&(this.timelines[e.timeline]=o,this.trigger("timestampoffset"),this.logger_("time mapping for timeline "+e.timeline+": [time: "+o.time+"] [mapping: "+o.mapping+"]")),i=e.startOfSegment,n=t.end+o.mapping;else{if(!o)return!1;i=t.start+o.mapping,n=t.end+o.mapping}return s&&(s.start=i,s.end=n),(!a.start||io){var l=void 0;l=s<0?r.start-Ou({defaultDuration:t.targetDuration,durationList:t.segments,startIndex:e.mediaIndex,endIndex:n}):r.end+Ou({defaultDuration:t.targetDuration,durationList:t.segments,startIndex:e.mediaIndex+1,endIndex:n}),this.discontinuities[a]={time:l,accuracy:o}}}},r.dispose=function(){this.trigger("dispose"),this.off()},t}(pa.EventTarget),Xd=function(e){function t(){var t;return(t=e.call(this)||this).pendingTimelineChanges_={},t.lastTimelineChanges_={},t}yt(t,e);var r=t.prototype;return r.clearPendingTimelineChange=function(e){this.pendingTimelineChanges_[e]=null,this.trigger("pendingtimelinechange")},r.pendingTimelineChange=function(e){var t=e.type,r=e.from,i=e.to;return"number"==typeof r&&"number"==typeof i&&(this.pendingTimelineChanges_[t]={type:t,from:r,to:i},this.trigger("pendingtimelinechange")),this.pendingTimelineChanges_[t]},r.lastTimelineChange=function(e){var t=e.type,r=e.from,i=e.to;return"number"==typeof r&&"number"==typeof i&&(this.lastTimelineChanges_[t]={type:t,from:r,to:i},delete this.pendingTimelineChanges_[t],this.trigger("timelinechange")),this.lastTimelineChanges_[t]},r.dispose=function(){this.trigger("dispose"),this.pendingTimelineChanges_={},this.lastTimelineChanges_={},this.off()},t}(pa.EventTarget),Kd=Pc(xc(function(){function e(e,t,r){return e(r={path:t,exports:{},require:function(e,t){return function(){throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs")}(null==t&&r.path)}},r.exports),r.exports}var t=e(function(e){function t(e,t){for(var r=0;r-1},t.trigger=function(e){var t=this.listeners[e];if(t)if(2===arguments.length)for(var r=t.length,i=0;i>7))^e]=e;for(t=r=0;!d[t];t^=i||1,r=f[r]||1)for(a=(a=r^r<<1^r<<2^r<<3^r<<4)>>8^255&a^99,d[t]=a,h[a]=t,o=16843009*p[n=p[i=p[t]]]^65537*n^257*i^16843008*t,s=257*p[a]^16843008*a,e=0;e<4;e++)u[e][t]=s=s<<24^s>>>8,c[e][a]=o=o<<24^o>>>8;for(e=0;e<5;e++)u[e]=u[e].slice(0),c[e]=c[e].slice(0);return l}()),this._tables=[[a[0][0].slice(),a[0][1].slice(),a[0][2].slice(),a[0][3].slice(),a[0][4].slice()],[a[1][0].slice(),a[1][1].slice(),a[1][2].slice(),a[1][3].slice(),a[1][4].slice()]];var n=this._tables[0][4],s=this._tables[1],o=e.length,l=1;if(4!==o&&6!==o&&8!==o)throw new Error("Invalid aes key size");var u=e.slice(0),c=[];for(this._key=[u,c],t=o;t<4*o+28;t++)i=u[t-1],(t%o==0||8===o&&t%o==4)&&(i=n[i>>>24]<<24^n[i>>16&255]<<16^n[i>>8&255]<<8^n[255&i],t%o==0&&(i=i<<8^i>>>24^l<<24,l=l<<1^283*(l>>7))),u[t]=u[t-o]^i;for(r=0;t;r++,t--)i=u[3&r?t:t-4],c[r]=t<=4||r<4?i:s[0][n[i>>>24]]^s[1][n[i>>16&255]]^s[2][n[i>>8&255]]^s[3][n[255&i]]}return e.prototype.decrypt=function(e,t,r,i,n,a){var s,o,l,u,c=this._key[1],d=e^c[0],h=i^c[1],p=r^c[2],f=t^c[3],m=c.length/4-2,g=4,v=this._tables[1],y=v[0],_=v[1],b=v[2],T=v[3],w=v[4];for(u=0;u>>24]^_[h>>16&255]^b[p>>8&255]^T[255&f]^c[g],o=y[h>>>24]^_[p>>16&255]^b[f>>8&255]^T[255&d]^c[g+1],l=y[p>>>24]^_[f>>16&255]^b[d>>8&255]^T[255&h]^c[g+2],f=y[f>>>24]^_[d>>16&255]^b[h>>8&255]^T[255&p]^c[g+3],g+=4,d=s,h=o,p=l;for(u=0;u<4;u++)n[(3&-u)+a]=w[d>>>24]<<24^w[h>>16&255]<<16^w[p>>8&255]<<8^w[255&f]^c[g++],s=d,d=h,h=p,p=f,f=s},e}(),o=function(e){function t(){var t;return(t=e.call(this,n)||this).jobs=[],t.delay=1,t.timeout_=null,t}i(t,e);var r=t.prototype;return r.processJob_=function(){this.jobs.shift()(),this.jobs.length?this.timeout_=setTimeout(this.processJob_.bind(this),this.delay):this.timeout_=null},r.push=function(e){this.jobs.push(e),this.timeout_||(this.timeout_=setTimeout(this.processJob_.bind(this),this.delay))},t}(n),l=function(e){return e<<24|(65280&e)<<8|(16711680&e)>>8|e>>>24},u=function(){function e(t,r,i,n){var a=e.STEP,s=new Int32Array(t.buffer),u=new Uint8Array(t.byteLength),c=0;for(this.asyncStream_=new o,this.asyncStream_.push(this.decryptChunk_(s.subarray(c,c+a),r,i,u)),c=a;c>2),m=new s(Array.prototype.slice.call(t)),g=new Uint8Array(e.byteLength),v=new Int32Array(g.buffer);for(i=r[0],n=r[1],a=r[2],o=r[3],p=0;p=0&&(t="main-desc"),t},Jd=function(e,t){e.abort(),e.pause(),t&&t.activePlaylistLoader&&(t.activePlaylistLoader.pause(),t.activePlaylistLoader=null)},Zd=function(e,t){t.activePlaylistLoader=e,e.load()},eh={AUDIO:function(e,t){return function(){var r=t.segmentLoaders[e],i=t.mediaTypes[e],n=t.blacklistCurrentPlaylist;Jd(r,i);var a=i.activeTrack(),s=i.activeGroup(),o=(s.filter(function(e){return e.default})[0]||s[0]).id,l=i.tracks[o];if(a!==l){for(var u in pa.log.warn("Problem encountered loading the alternate audio track.Switching back to default."),i.tracks)i.tracks[u].enabled=i.tracks[u]===l;i.onTrackChanged()}else n({message:"Problem encountered loading the default audio track."})}},SUBTITLES:function(e,t){return function(){var r=t.segmentLoaders[e],i=t.mediaTypes[e];pa.log.warn("Problem encountered loading the subtitle track.Disabling subtitle track."),Jd(r,i);var n=i.activeTrack();n&&(n.mode="disabled"),i.onTrackChanged()}}},th={AUDIO:function(e,t,r){if(t){var i=r.tech,n=r.requestOptions,a=r.segmentLoaders[e];t.on("loadedmetadata",function(){var e=t.media();a.playlist(e,n),(!i.paused()||e.endList&&"none"!==i.preload())&&a.load()}),t.on("loadedplaylist",function(){a.playlist(t.media(),n),i.paused()||a.load()}),t.on("error",eh[e](e,r))}},SUBTITLES:function(e,t,r){var i=r.tech,n=r.requestOptions,a=r.segmentLoaders[e],s=r.mediaTypes[e];t.on("loadedmetadata",function(){var e=t.media();a.playlist(e,n),a.track(s.activeTrack()),(!i.paused()||e.endList&&"none"!==i.preload())&&a.load()}),t.on("loadedplaylist",function(){a.playlist(t.media(),n),i.paused()||a.load()}),t.on("error",eh[e](e,r))}},rh={AUDIO:function(e,t){var r=t.vhs,i=t.sourceType,n=t.segmentLoaders[e],a=t.requestOptions,s=t.master.mediaGroups,o=t.mediaTypes[e],l=o.groups,u=o.tracks,c=o.logger_,d=t.masterPlaylistLoader,h=ju(d.master);for(var p in s[e]&&0!==Object.keys(s[e]).length||(s[e]={main:{default:{default:!0}}},h&&(s[e].main.default.playlists=d.master.playlists)),s[e])for(var f in l[p]||(l[p]=[]),s[e][p]){var m=s[e][p][f],g=void 0;if(h?(c("AUDIO group '"+p+"' label '"+f+"' is a master playlist"),m.isMasterPlaylist=!0,g=null):g="vhs-json"===i&&m.playlists?new tc(m.playlists[0],r,a):m.resolvedUri?new tc(m.resolvedUri,r,a):m.playlists&&"dash"===i?new Sc(m.playlists[0],r,a,d):null,m=pa.mergeOptions({id:f,playlistLoader:g},m),th[e](e,m.playlistLoader,t),l[p].push(m),void 0===u[f]){var v=new pa.AudioTrack({id:f,kind:Yd(m),enabled:!1,language:m.language,default:m.default,label:f});u[f]=v}}n.on("error",eh[e](e,t))},SUBTITLES:function(e,t){var r=t.tech,i=t.vhs,n=t.sourceType,a=t.segmentLoaders[e],s=t.requestOptions,o=t.master.mediaGroups,l=t.mediaTypes[e],u=l.groups,c=l.tracks,d=t.masterPlaylistLoader;for(var h in o[e])for(var p in u[h]||(u[h]=[]),o[e][h])if(!o[e][h][p].forced){var f=o[e][h][p],m=void 0;if("hls"===n)m=new tc(f.resolvedUri,i,s);else if("dash"===n){if(!f.playlists.filter(function(e){return e.excludeUntil!==1/0}).length)return;m=new Sc(f.playlists[0],i,s,d)}else"vhs-json"===n&&(m=new tc(f.playlists?f.playlists[0]:f.resolvedUri,i,s));if(f=pa.mergeOptions({id:p,playlistLoader:m},f),th[e](e,f.playlistLoader,t),u[h].push(f),void 0===c[p]){var g=r.addRemoteTextTrack({id:p,kind:"subtitles",default:f.default&&f.autoselect,language:f.language,label:p},!1).track;c[p]=g}}a.on("error",eh[e](e,t))},"CLOSED-CAPTIONS":function(e,t){var r=t.tech,i=t.master.mediaGroups,n=t.mediaTypes[e],a=n.groups,s=n.tracks;for(var o in i[e])for(var l in a[o]||(a[o]=[]),i[e][o]){var u=i[e][o][l];if(/^(?:CC|SERVICE)/.test(u.instreamId)){var c=r.options_.vhs&&r.options_.vhs.captionServices||{},d={label:l,language:u.language,instreamId:u.instreamId,default:u.default&&u.autoselect};if(c[d.instreamId]&&(d=pa.mergeOptions(d,c[d.instreamId])),void 0===d.default&&delete d.default,a[o].push(pa.mergeOptions({id:l},u)),void 0===s[l]){var h=r.addRemoteTextTrack({id:d.instreamId,kind:"captions",default:d.default,language:d.language,label:d.label},!1).track;s[l]=h}}}}},ih=function e(t,r){for(var i=0;i1&&ju(t.master))for(var l=0;l "+a+" from "+t),this.tech_.trigger({type:"usage",name:"vhs-rendition-change-"+t})),this.masterPlaylistLoader_.media(e,r)},r.startABRTimer_=function(){var e=this;this.stopABRTimer_(),this.abrTimer_=window.setInterval(function(){return e.checkABR_()},250)},r.stopABRTimer_=function(){this.tech_.scrubbing&&this.tech_.scrubbing()||(window.clearInterval(this.abrTimer_),this.abrTimer_=null)},r.getAudioTrackPlaylists_=function(){var e=this.master(),t=e&&e.playlists||[];if(!e||!e.mediaGroups||!e.mediaGroups.AUDIO)return t;var r,i=e.mediaGroups.AUDIO,n=Object.keys(i);if(Object.keys(this.mediaTypes_.AUDIO.groups).length)r=this.mediaTypes_.AUDIO.activeTrack();else{var a=i.main||n.length&&i[n[0]];for(var s in a)if(a[s].default){r={label:s};break}}if(!r)return t;var o=[];for(var l in i)if(i[l][r.label]){var u=i[l][r.label];if(u.playlists&&u.playlists.length)o.push.apply(o,u.playlists);else if(u.uri)o.push(u);else if(e.playlists.length)for(var c=0;c1&&(this.tech_.trigger({type:"usage",name:"vhs-alternate-audio"}),this.tech_.trigger({type:"usage",name:"hls-alternate-audio"})),this.useCueTags_&&(this.tech_.trigger({type:"usage",name:"vhs-playlist-cue-tags"}),this.tech_.trigger({type:"usage",name:"hls-playlist-cue-tags"}))},r.shouldSwitchToMedia_=function(e){var t=this.masterPlaylistLoader_.media()||this.masterPlaylistLoader_.pendingMedia_,r=this.tech_.currentTime(),i=this.bufferLowWaterLine(),n=this.bufferHighWaterLine();return function(e){var t=e.currentPlaylist,r=e.buffered,i=e.currentTime,n=e.nextPlaylist,a=e.bufferLowWaterLine,s=e.bufferHighWaterLine,o=e.duration,l=e.experimentalBufferBasedABR,u=e.log;if(!n)return pa.log.warn("We received no playlist to switch to. Please check your stream."),!1;var c="allowing switch "+(t&&t.id||"null")+" -> "+n.id;if(!t)return u(c+" as current playlist is not set"),!0;if(n.id===t.id)return!1;var d=Boolean(vu(r,i).length);if(!t.endList)return d||"number"!=typeof t.partTargetDuration?(u(c+" as current playlist is live"),!0):(u("not "+c+" as current playlist is live llhls, but currentTime isn't in buffered."),!1);var h=wu(r,i),p=l?Ec.EXPERIMENTAL_MAX_BUFFER_LOW_WATER_LINE:Ec.MAX_BUFFER_LOW_WATER_LINE;if(om)&&h>=a){var v=c+" as forwardBuffer >= bufferLowWaterLine ("+h+" >= "+a+")";return l&&(v+=" and next bandwidth > current bandwidth ("+f+" > "+m+")"),u(v),!0}return u("not "+c+" as no switching criteria met"),!1}({buffered:this.tech_.buffered(),currentTime:r,currentPlaylist:t,nextPlaylist:e,bufferLowWaterLine:i,bufferHighWaterLine:n,duration:this.duration(),experimentalBufferBasedABR:this.experimentalBufferBasedABR,log:this.logger_})},r.setupSegmentLoaderListeners_=function(){var e=this;this.experimentalBufferBasedABR||(this.mainSegmentLoader_.on("bandwidthupdate",function(){var t=e.selectPlaylist();e.shouldSwitchToMedia_(t)&&e.switchMedia_(t,"bandwidthupdate"),e.tech_.trigger("bandwidthupdate")}),this.mainSegmentLoader_.on("progress",function(){e.trigger("progress")})),this.mainSegmentLoader_.on("error",function(){e.blacklistCurrentPlaylist(e.mainSegmentLoader_.error())}),this.mainSegmentLoader_.on("appenderror",function(){e.error=e.mainSegmentLoader_.error_,e.trigger("error")}),this.mainSegmentLoader_.on("syncinfoupdate",function(){e.onSyncInfoUpdate_()}),this.mainSegmentLoader_.on("timestampoffset",function(){e.tech_.trigger({type:"usage",name:"vhs-timestamp-offset"}),e.tech_.trigger({type:"usage",name:"hls-timestamp-offset"})}),this.audioSegmentLoader_.on("syncinfoupdate",function(){e.onSyncInfoUpdate_()}),this.audioSegmentLoader_.on("appenderror",function(){e.error=e.audioSegmentLoader_.error_,e.trigger("error")}),this.mainSegmentLoader_.on("ended",function(){e.logger_("main segment loader ended"),e.onEndOfStream()}),this.mainSegmentLoader_.on("earlyabort",function(t){e.experimentalBufferBasedABR||(e.delegateLoaders_("all",["abort"]),e.blacklistCurrentPlaylist({message:"Aborted early because there isn't enough bandwidth to complete the request without rebuffering."},120))});var t=function(){if(!e.sourceUpdater_.hasCreatedSourceBuffers())return e.tryToCreateSourceBuffers_();var t=e.getCodecsOrExclude_();t&&e.sourceUpdater_.addOrChangeSourceBuffers(t)};this.mainSegmentLoader_.on("trackinfo",t),this.audioSegmentLoader_.on("trackinfo",t),this.mainSegmentLoader_.on("fmp4",function(){e.triggeredFmp4Usage||(e.tech_.trigger({type:"usage",name:"vhs-fmp4"}),e.tech_.trigger({type:"usage",name:"hls-fmp4"}),e.triggeredFmp4Usage=!0)}),this.audioSegmentLoader_.on("fmp4",function(){e.triggeredFmp4Usage||(e.tech_.trigger({type:"usage",name:"vhs-fmp4"}),e.tech_.trigger({type:"usage",name:"hls-fmp4"}),e.triggeredFmp4Usage=!0)}),this.audioSegmentLoader_.on("ended",function(){e.logger_("audioSegmentLoader ended"),e.onEndOfStream()})},r.mediaSecondsLoaded_=function(){return Math.max(this.audioSegmentLoader_.mediaSecondsLoaded+this.mainSegmentLoader_.mediaSecondsLoaded)},r.load=function(){this.mainSegmentLoader_.load(),this.mediaTypes_.AUDIO.activePlaylistLoader&&this.audioSegmentLoader_.load(),this.mediaTypes_.SUBTITLES.activePlaylistLoader&&this.subtitleSegmentLoader_.load()},r.smoothQualityChange_=function(e){void 0===e&&(e=this.selectPlaylist()),this.fastQualityChange_(e)},r.fastQualityChange_=function(e){var t=this;void 0===e&&(e=this.selectPlaylist()),e!==this.masterPlaylistLoader_.media()?(this.switchMedia_(e,"fast-quality"),this.mainSegmentLoader_.resetEverything(function(){pa.browser.IE_VERSION||pa.browser.IS_EDGE?t.tech_.setCurrentTime(t.tech_.currentTime()+.04):t.tech_.setCurrentTime(t.tech_.currentTime())})):this.logger_("skipping fastQualityChange because new media is same as old")},r.play=function(){if(!this.setupFirstPlay()){this.tech_.ended()&&this.tech_.setCurrentTime(0),this.hasPlayed_&&this.load();var e=this.tech_.seekable();return this.tech_.duration()===1/0&&this.tech_.currentTime()this.maxPlaylistRetries?1/0:Date.now()+1e3*t,r.excludeUntil=i,e.reason&&(r.lastExcludeReason_=e.reason),this.tech_.trigger("blacklistplaylist"),this.tech_.trigger({type:"usage",name:"vhs-rendition-blacklisted"}),this.tech_.trigger({type:"usage",name:"hls-rendition-blacklisted"});var l=this.selectPlaylist();if(!l)return this.error="Playback cannot continue. No available working or supported playlists.",void this.trigger("error");var u=e.internal?this.logger_:pa.log.warn,c=e.message?" "+e.message:"";u((e.internal?"Internal problem":"Problem")+" encountered with playlist "+r.id+"."+c+" Switching to playlist "+l.id+"."),l.attributes.AUDIO!==r.attributes.AUDIO&&this.delegateLoaders_("audio",["abort","pause"]),l.attributes.SUBTITLES!==r.attributes.SUBTITLES&&this.delegateLoaders_("subtitle",["abort","pause"]),this.delegateLoaders_("main",["abort","pause"]);var d=l.targetDuration/2*1e3||5e3,h="number"==typeof l.lastRequest&&Date.now()-l.lastRequest<=d;return this.switchMedia_(l,"exclude",s||h)},r.pauseLoading=function(){this.delegateLoaders_("all",["abort","pause"]),this.stopABRTimer_()},r.delegateLoaders_=function(e,t){var r=this,i=[],n="all"===e;(n||"main"===e)&&i.push(this.masterPlaylistLoader_);var a=[];(n||"audio"===e)&&a.push("AUDIO"),(n||"subtitle"===e)&&(a.push("CLOSED-CAPTIONS"),a.push("SUBTITLES")),a.forEach(function(e){var t=r.mediaTypes_[e]&&r.mediaTypes_[e].activePlaylistLoader;t&&i.push(t)}),["main","audio","subtitle"].forEach(function(t){var n=r[t+"SegmentLoader_"];!n||e!==t&&"all"!==e||i.push(n)}),i.forEach(function(e){return t.forEach(function(t){"function"==typeof e[t]&&e[t]()})})},r.setCurrentTime=function(e){var t=vu(this.tech_.buffered(),e);return this.masterPlaylistLoader_&&this.masterPlaylistLoader_.media()&&this.masterPlaylistLoader_.media().segments?t&&t.length?e:(this.mainSegmentLoader_.resetEverything(),this.mainSegmentLoader_.abort(),this.mediaTypes_.AUDIO.activePlaylistLoader&&(this.audioSegmentLoader_.resetEverything(),this.audioSegmentLoader_.abort()),this.mediaTypes_.SUBTITLES.activePlaylistLoader&&(this.subtitleSegmentLoader_.resetEverything(),this.subtitleSegmentLoader_.abort()),void this.load()):0},r.duration=function(){if(!this.masterPlaylistLoader_)return 0;var e=this.masterPlaylistLoader_.media();return e?e.endList?this.mediaSource?this.mediaSource.duration:wd.Playlist.duration(e):1/0:0},r.seekable=function(){return this.seekable_},r.onSyncInfoUpdate_=function(){var e;if(this.masterPlaylistLoader_){var t=this.masterPlaylistLoader_.media();if(t){var r=this.syncController_.getExpiredTime(t,this.duration());if(null!==r){var i=this.masterPlaylistLoader_.master,n=wd.Playlist.seekable(t,r,wd.Playlist.liveEdgeDelay(i,t));if(0!==n.length){if(this.mediaTypes_.AUDIO.activePlaylistLoader){if(t=this.mediaTypes_.AUDIO.activePlaylistLoader.media(),null===(r=this.syncController_.getExpiredTime(t,this.duration())))return;if(0===(e=wd.Playlist.seekable(t,r,wd.Playlist.liveEdgeDelay(i,t))).length)return}var a,s;this.seekable_&&this.seekable_.length&&(a=this.seekable_.end(0),s=this.seekable_.start(0)),e?e.start(0)>n.end(0)||n.start(0)>e.end(0)?this.seekable_=n:this.seekable_=pa.createTimeRanges([[e.start(0)>n.start(0)?e.start(0):n.start(0),e.end(0)0&&(i=Math.max(i,r.end(r.length-1))),this.mediaSource.duration!==i&&this.sourceUpdater_.setDuration(i)}},r.dispose=function(){var e=this;this.trigger("dispose"),this.decrypter_.terminate(),this.masterPlaylistLoader_.dispose(),this.mainSegmentLoader_.dispose(),this.loadOnPlay_&&this.tech_.off("play",this.loadOnPlay_),["AUDIO","SUBTITLES"].forEach(function(t){var r=e.mediaTypes_[t].groups;for(var i in r)r[i].forEach(function(e){e.playlistLoader&&e.playlistLoader.dispose()})}),this.audioSegmentLoader_.dispose(),this.subtitleSegmentLoader_.dispose(),this.sourceUpdater_.dispose(),this.timelineChangeController_.dispose(),this.stopABRTimer_(),this.updateDuration_&&this.mediaSource.removeEventListener("sourceopen",this.updateDuration_),this.mediaSource.removeEventListener("durationchange",this.handleDurationChange_),this.mediaSource.removeEventListener("sourceopen",this.handleSourceOpen_),this.mediaSource.removeEventListener("sourceended",this.handleSourceEnded_),this.off()},r.master=function(){return this.masterPlaylistLoader_.master},r.media=function(){return this.masterPlaylistLoader_.media()||this.initialMedia_},r.areMediaTypesKnown_=function(){var e=!!this.mediaTypes_.AUDIO.activePlaylistLoader,t=!!this.mainSegmentLoader_.getCurrentMediaInfo_(),r=!e||!!this.audioSegmentLoader_.getCurrentMediaInfo_();return!(!t||!r)},r.getCodecsOrExclude_=function(){var e=this,t={main:this.mainSegmentLoader_.getCurrentMediaInfo_()||{},audio:this.audioSegmentLoader_.getCurrentMediaInfo_()||{}};t.video=t.main;var r=id(this.master(),this.media()),i={},n=!!this.mediaTypes_.AUDIO.activePlaylistLoader;if(t.main.hasVideo&&(i.video=r.video||t.main.videoCodec||"avc1.4d400d"),t.main.isMuxed&&(i.video+=","+(r.audio||t.main.audioCodec||Ba)),(t.main.hasAudio&&!t.main.isMuxed||t.audio.hasAudio||n)&&(i.audio=r.audio||t.main.audioCodec||t.audio.audioCodec||Ba,t.audio.isFmp4=t.main.hasAudio&&!t.main.isMuxed?t.main.isFmp4:t.audio.isFmp4),i.audio||i.video){var a,s={};if(["video","audio"].forEach(function(e){if(i.hasOwnProperty(e)&&(n=t[e].isFmp4,o=i[e],!(n?Na(o):Ua(o)))){var r=t[e].isFmp4?"browser":"muxer";s[r]=s[r]||[],s[r].push(i[e]),"audio"===e&&(a=r)}var n,o}),n&&a&&this.media().attributes.AUDIO){var o=this.media().attributes.AUDIO;this.master().playlists.forEach(function(t){(t.attributes&&t.attributes.AUDIO)===o&&t!==e.media()&&(t.excludeUntil=1/0)}),this.logger_("excluding audio group "+o+" as "+a+' does not support codec(s): "'+i.audio+'"')}if(!Object.keys(s).length){if(this.sourceUpdater_.hasCreatedSourceBuffers()&&!this.sourceUpdater_.canChangeType()){var l=[];if(["video","audio"].forEach(function(t){var r=(La(e.sourceUpdater_.codecs[t]||"")[0]||{}).type,n=(La(i[t]||"")[0]||{}).type;r&&n&&r.toLowerCase()!==n.toLowerCase()&&l.push('"'+e.sourceUpdater_.codecs[t]+'" -> "'+i[t]+'"')}),l.length)return void this.blacklistCurrentPlaylist({playlist:this.media(),message:"Codec switching not supported: "+l.join(", ")+".",blacklistDuration:1/0,internal:!0})}return i}var u=Object.keys(s).reduce(function(e,t){return e&&(e+=", "),e+=t+' does not support codec(s): "'+s[t].join(",")+'"'},"")+".";this.blacklistCurrentPlaylist({playlist:this.media(),internal:!0,message:u,blacklistDuration:1/0})}else this.blacklistCurrentPlaylist({playlist:this.media(),message:"Could not determine codecs for playlist.",blacklistDuration:1/0})},r.tryToCreateSourceBuffers_=function(){if("open"===this.mediaSource.readyState&&!this.sourceUpdater_.hasCreatedSourceBuffers()&&this.areMediaTypesKnown_()){var e=this.getCodecsOrExclude_();if(e){this.sourceUpdater_.createSourceBuffers(e);var t=[e.video,e.audio].filter(Boolean).join(",");this.excludeIncompatibleVariants_(t)}}},r.excludeUnsupportedVariants_=function(){var e=this,t=this.master().playlists,r=[];Object.keys(t).forEach(function(i){var n=t[i];if(-1===r.indexOf(n.id)){r.push(n.id);var a=id(e.master,n),s=[];!a.audio||Ua(a.audio)||Na(a.audio)||s.push("audio codec "+a.audio),!a.video||Ua(a.video)||Na(a.video)||s.push("video codec "+a.video),a.text&&"stpp.ttml.im1t"===a.text&&s.push("text codec "+a.text),s.length&&(n.excludeUntil=1/0,e.logger_("excluding "+n.id+" for unsupported: "+s.join(", ")))}})},r.excludeIncompatibleVariants_=function(e){var t=this,r=[],i=this.master().playlists,n=td(La(e)),a=rd(n),s=n.video&&La(n.video)[0]||null,o=n.audio&&La(n.audio)[0]||null;Object.keys(i).forEach(function(e){var n=i[e];if(-1===r.indexOf(n.id)&&n.excludeUntil!==1/0){r.push(n.id);var l=[],u=id(t.masterPlaylistLoader_.master,n),c=rd(u);if(u.audio||u.video){if(c!==a&&l.push('codec count "'+c+'" !== "'+a+'"'),!t.sourceUpdater_.canChangeType()){var d=u.video&&La(u.video)[0]||null,h=u.audio&&La(u.audio)[0]||null;d&&s&&d.type.toLowerCase()!==s.type.toLowerCase()&&l.push('video codec "'+d.type+'" !== "'+s.type+'"'),h&&o&&h.type.toLowerCase()!==o.type.toLowerCase()&&l.push('audio codec "'+h.type+'" !== "'+o.type+'"')}l.length&&(n.excludeUntil=1/0,t.logger_("blacklisting "+n.id+": "+l.join(" && ")))}}})},r.updateAdCues_=function(e){var t=0,r=this.seekable();r.length&&(t=r.start(0)),function(e,t,r){if(void 0===r&&(r=0),e.segments)for(var i,n=r,a=0;a0&&this.logger_("resetting possible stalled download count for "+e+" loader"),this[e+"StalledDownloads_"]=0,this[e+"Buffered_"]=t.buffered_()},t.checkSegmentDownloads_=function(e){var t=this.masterPlaylistController_,r=t[e+"SegmentLoader_"],i=r.buffered_(),n=function(e,t){if(e===t)return!1;if(!e&&t||!t&&e)return!0;if(e.length!==t.length)return!0;for(var r=0;r=t.end(t.length-1)))return this.techWaiting_();this.consecutiveUpdates>=5&&e===this.lastRecordedTime?(this.consecutiveUpdates++,this.waiting_()):e===this.lastRecordedTime?this.consecutiveUpdates++:(this.consecutiveUpdates=0,this.lastRecordedTime=e)}},t.cancelTimer_=function(){this.consecutiveUpdates=0,this.timer_&&(this.logger_("cancelTimer_"),clearTimeout(this.timer_)),this.timer_=null},t.fixesBadSeeks_=function(){if(!this.tech_.seeking())return!1;var e,t=this.seekable(),r=this.tech_.currentTime();this.afterSeekableWindow_(t,r,this.media(),this.allowSeeksWithinUnsafeLiveWindow)&&(e=t.end(t.length-1));if(this.beforeSeekableWindow_(t,r)){var i=t.start(0);e=i+(i===t.end(0)?0:mu)}if(void 0!==e)return this.logger_("Trying to seek outside of seekable at time "+r+" with seekable range "+_u(t)+". Seeking to "+e+"."),this.tech_.setCurrentTime(e),!0;for(var n=this.masterPlaylistController_.sourceUpdater_,a=this.tech_.buffered(),s=n.audioBuffer?n.audioBuffered():null,o=n.videoBuffer?n.videoBuffered():null,l=this.media(),u=l.partTargetDuration?l.partTargetDuration:2*(l.targetDuration-fu),c=[s,o],d=0;d "+r.end(0)+"]. Attempting to resume playback by seeking to the current time."),this.tech_.trigger({type:"usage",name:"vhs-unknown-waiting"}),void this.tech_.trigger({type:"usage",name:"hls-unknown-waiting"})):void 0}},t.techWaiting_=function(){var e=this.seekable(),t=this.tech_.currentTime();if(this.tech_.seeking()||null!==this.timer_)return!0;if(this.beforeSeekableWindow_(e,t)){var r=e.end(e.length-1);return this.logger_("Fell out of live window at time "+t+". Seeking to live point (seekable end) "+r),this.cancelTimer_(),this.tech_.setCurrentTime(r),this.tech_.trigger({type:"usage",name:"vhs-live-resync"}),this.tech_.trigger({type:"usage",name:"hls-live-resync"}),!0}var i=this.tech_.vhs.masterPlaylistController_.sourceUpdater_,n=this.tech_.buffered();if(this.videoUnderflow_({audioBuffered:i.audioBuffered(),videoBuffered:i.videoBuffered(),currentTime:t}))return this.cancelTimer_(),this.tech_.setCurrentTime(t),this.tech_.trigger({type:"usage",name:"vhs-video-underflow"}),this.tech_.trigger({type:"usage",name:"hls-video-underflow"}),!0;var a=yu(n,t);if(a.length>0){var s=a.start(0)-t;return this.logger_("Stopped at "+t+", setting timer for "+s+", seeking to "+a.start(0)),this.cancelTimer_(),this.timer_=setTimeout(this.skipTheGap_.bind(this),1e3*s,t),!0}return!1},t.afterSeekableWindow_=function(e,t,r,i){if(void 0===i&&(i=!1),!e.length)return!1;var n=e.end(e.length-1)+mu;return!r.endList&&i&&(n=e.end(e.length-1)+3*r.targetDuration),t>n},t.beforeSeekableWindow_=function(e,t){return!!(e.length&&e.start(0)>0&&t2)return{start:n,end:a}}return null},e}(),hh={errorInterval:30,getSource:function(e){return e(this.tech({IWillNotUseThisInPlugins:!0}).currentSource_||this.currentSource())}},ph=function e(t,r){var i=0,n=0,a=pa.mergeOptions(hh,r);t.ready(function(){t.trigger({type:"usage",name:"vhs-error-reload-initialized"}),t.trigger({type:"usage",name:"hls-error-reload-initialized"})});var s=function(){n&&t.currentTime(n)},o=function(e){null!=e&&(n=t.duration()!==1/0&&t.currentTime()||0,t.one("loadedmetadata",s),t.src(e),t.trigger({type:"usage",name:"vhs-error-reload"}),t.trigger({type:"usage",name:"hls-error-reload"}),t.play())},l=function(){return Date.now()-i<1e3*a.errorInterval?(t.trigger({type:"usage",name:"vhs-error-reload-canceled"}),void t.trigger({type:"usage",name:"hls-error-reload-canceled"})):a.getSource&&"function"==typeof a.getSource?(i=Date.now(),a.getSource.call(t,o)):void pa.log.error("ERROR: reloadSourceOnError - The option getSource must be a function!")},u=function e(){t.off("loadedmetadata",s),t.off("error",l),t.off("dispose",e)};t.on("error",l),t.on("dispose",u),t.reloadSourceOnError=function(r){u(),e(t,r)}},fh="2.13.1",mh={PlaylistLoader:tc,Playlist:Vu,utils:fc,STANDARD_PLAYLIST_SELECTOR:cd,INITIAL_PLAYLIST_SELECTOR:function(){var e=this,t=this.playlists.master.playlists.filter(Vu.isEnabled);return od(t,function(e,t){return ld(e,t)}),t.filter(function(t){return!!id(e.playlists.master,t).video})[0]||null},lastBandwidthSelector:cd,movingAverageBandwidthSelector:function(e){var t=-1,r=-1;if(e<0||e>1)throw new Error("Moving average bandwidth decay must be between 0 and 1.");return function(){var i=this.useDevicePixelRatio&&window.devicePixelRatio||1;return t<0&&(t=this.systemBandwidth,r=this.systemBandwidth),this.systemBandwidth>0&&this.systemBandwidth!==r&&(t=e*this.systemBandwidth+(1-e)*t,r=this.systemBandwidth),ud(this.playlists.master,t,parseInt(sd(this.tech_.el(),"width"),10)*i,parseInt(sd(this.tech_.el(),"height"),10)*i,this.limitRenditionByPlayerDimensions,this.masterPlaylistController_)}},comparePlaylistBandwidth:ld,comparePlaylistResolution:function(e,t){var r,i;return e.attributes.RESOLUTION&&e.attributes.RESOLUTION.width&&(r=e.attributes.RESOLUTION.width),r=r||window.Number.MAX_VALUE,t.attributes.RESOLUTION&&t.attributes.RESOLUTION.width&&(i=t.attributes.RESOLUTION.width),r===(i=i||window.Number.MAX_VALUE)&&e.attributes.BANDWIDTH&&t.attributes.BANDWIDTH?e.attributes.BANDWIDTH-t.attributes.BANDWIDTH:r-i},xhr:ac()};Object.keys(Ec).forEach(function(e){Object.defineProperty(mh,e,{get:function(){return pa.log.warn("using Vhs."+e+" is UNSAFE be sure you know what you are doing"),Ec[e]},set:function(t){pa.log.warn("using Vhs."+e+" is UNSAFE be sure you know what you are doing"),"number"!=typeof t||t<0?pa.log.warn("value of Vhs."+e+" must be greater than or equal to 0"):Ec[e]=t}})});var gh="videojs-vhs",vh=function(e,t){for(var r=t.media(),i=-1,n=0;n=r&&e>=r?Math.max(e,i):i}return e},set:function(e){this.masterPlaylistController_.mainSegmentLoader_.bandwidth=e,this.masterPlaylistController_.mainSegmentLoader_.throughput={rate:0,count:0}}},systemBandwidth:{get:function(){var e,t=1/(this.bandwidth||1);return e=this.throughput>0?1/this.throughput:0,Math.floor(1/(t+e))},set:function(){pa.log.error('The "systemBandwidth" property is read-only')}}}),this.options_.bandwidth&&(this.bandwidth=this.options_.bandwidth),this.options_.throughput&&(this.throughput=this.options_.throughput),Object.defineProperties(this.stats,{bandwidth:{get:function(){return r.bandwidth||0},enumerable:!0},mediaRequests:{get:function(){return r.masterPlaylistController_.mediaRequests_()||0},enumerable:!0},mediaRequestsAborted:{get:function(){return r.masterPlaylistController_.mediaRequestsAborted_()||0},enumerable:!0},mediaRequestsTimedout:{get:function(){return r.masterPlaylistController_.mediaRequestsTimedout_()||0},enumerable:!0},mediaRequestsErrored:{get:function(){return r.masterPlaylistController_.mediaRequestsErrored_()||0},enumerable:!0},mediaTransferDuration:{get:function(){return r.masterPlaylistController_.mediaTransferDuration_()||0},enumerable:!0},mediaBytesTransferred:{get:function(){return r.masterPlaylistController_.mediaBytesTransferred_()||0},enumerable:!0},mediaSecondsLoaded:{get:function(){return r.masterPlaylistController_.mediaSecondsLoaded_()||0},enumerable:!0},mediaAppends:{get:function(){return r.masterPlaylistController_.mediaAppends_()||0},enumerable:!0},mainAppendsToLoadedData:{get:function(){return r.masterPlaylistController_.mainAppendsToLoadedData_()||0},enumerable:!0},audioAppendsToLoadedData:{get:function(){return r.masterPlaylistController_.audioAppendsToLoadedData_()||0},enumerable:!0},appendsToLoadedData:{get:function(){return r.masterPlaylistController_.appendsToLoadedData_()||0},enumerable:!0},timeToLoadedData:{get:function(){return r.masterPlaylistController_.timeToLoadedData_()||0},enumerable:!0},buffered:{get:function(){return bu(r.tech_.buffered())},enumerable:!0},currentTime:{get:function(){return r.tech_.currentTime()},enumerable:!0},currentSource:{get:function(){return r.tech_.currentSource_},enumerable:!0},currentTech:{get:function(){return r.tech_.name_},enumerable:!0},duration:{get:function(){return r.tech_.duration()},enumerable:!0},master:{get:function(){return r.playlists.master},enumerable:!0},playerDimensions:{get:function(){return r.tech_.currentDimensions()},enumerable:!0},seekable:{get:function(){return bu(r.tech_.seekable())},enumerable:!0},timestamp:{get:function(){return Date.now()},enumerable:!0},videoPlaybackQuality:{get:function(){return r.tech_.getVideoPlaybackQuality()},enumerable:!0}}),this.tech_.one("canplay",this.masterPlaylistController_.setupFirstPlay.bind(this.masterPlaylistController_)),this.tech_.on("bandwidthupdate",function(){r.options_.useBandwidthFromLocalStorage&&function(e){if(!window.localStorage)return!1;var t=bh();t=t?pa.mergeOptions(t,e):e;try{window.localStorage.setItem(gh,JSON.stringify(t))}catch(e){return!1}}({bandwidth:r.bandwidth,throughput:Math.round(r.throughput)})}),this.masterPlaylistController_.on("selectedinitialmedia",function(){var e;(e=r).representations=function(){var t=e.masterPlaylistController_.master(),r=ju(t)?e.masterPlaylistController_.getAudioTrackPlaylists_():t.playlists;return r?r.filter(function(e){return!Ru(e)}).map(function(t,r){return new uh(e,t,t.id)}):[]}}),this.masterPlaylistController_.sourceUpdater_.on("createdsourcebuffers",function(){r.setupEme_()}),this.on(this.masterPlaylistController_,"progress",function(){this.tech_.trigger("progress")}),this.on(this.masterPlaylistController_,"firstplay",function(){this.ignoreNextSeekingEvent_=!0}),this.setupQualityLevels_(),this.tech_.el()&&(this.mediaSourceUrl_=window.URL.createObjectURL(this.masterPlaylistController_.mediaSource),this.tech_.src(this.mediaSourceUrl_))}},r.createKeySessions_=function(){var e=this,t=this.masterPlaylistController_.mediaTypes_.AUDIO.activePlaylistLoader;this.logger_("waiting for EME key session creation"),yh({player:this.player_,sourceKeySystems:this.source_.keySystems,audioMedia:t&&t.media(),mainPlaylists:this.playlists.master.playlists}).then(function(){e.logger_("created EME key session"),e.masterPlaylistController_.sourceUpdater_.initializedEme()}).catch(function(t){e.logger_("error while creating EME key session",t),e.player_.error({message:"Failed to initialize media keys for EME",code:3})})},r.handleWaitingForKey_=function(){this.logger_("waitingforkey fired, attempting to create any new key sessions"),this.createKeySessions_()},r.setupEme_=function(){var e=this,t=this.masterPlaylistController_.mediaTypes_.AUDIO.activePlaylistLoader,r=_h({player:this.player_,sourceKeySystems:this.source_.keySystems,media:this.playlists.media(),audioMedia:t&&t.media()});this.player_.tech_.on("keystatuschange",function(t){"output-restricted"===t.status&&e.masterPlaylistController_.blacklistCurrentPlaylist({playlist:e.masterPlaylistController_.media(),message:"DRM keystatus changed to "+t.status+". Playlist will fail to play. Check for HDCP content.",blacklistDuration:1/0})}),this.handleWaitingForKey_=this.handleWaitingForKey_.bind(this),this.player_.tech_.on("waitingforkey",this.handleWaitingForKey_),11!==pa.browser.IE_VERSION&&r?this.createKeySessions_():this.masterPlaylistController_.sourceUpdater_.initializedEme()},r.setupQualityLevels_=function(){var e=this,t=pa.players[this.tech_.options_.playerId];t&&t.qualityLevels&&!this.qualityLevels_&&(this.qualityLevels_=t.qualityLevels(),this.masterPlaylistController_.on("selectedinitialmedia",function(){var t,r;t=e.qualityLevels_,(r=e).representations().forEach(function(e){t.addQualityLevel(e)}),vh(t,r.playlists)}),this.playlists.on("mediachange",function(){vh(e.qualityLevels_,e.playlists)}))},t.version=function(){return{"@videojs/http-streaming":fh,"mux.js":"6.0.1","mpd-parser":"0.21.0","m3u8-parser":"4.7.0","aes-decrypter":"3.1.2"}},r.version=function(){return this.constructor.version()},r.canChangeType=function(){return Vd.canChangeType()},r.play=function(){this.masterPlaylistController_.play()},r.setCurrentTime=function(e){this.masterPlaylistController_.setCurrentTime(e)},r.duration=function(){return this.masterPlaylistController_.duration()},r.seekable=function(){return this.masterPlaylistController_.seekable()},r.dispose=function(){this.playbackWatcher_&&this.playbackWatcher_.dispose(),this.masterPlaylistController_&&this.masterPlaylistController_.dispose(),this.qualityLevels_&&this.qualityLevels_.dispose(),this.player_&&(delete this.player_.vhs,delete this.player_.dash,delete this.player_.hls),this.tech_&&this.tech_.vhs&&delete this.tech_.vhs,this.tech_&&delete this.tech_.hls,this.mediaSourceUrl_&&window.URL.revokeObjectURL&&(window.URL.revokeObjectURL(this.mediaSourceUrl_),this.mediaSourceUrl_=null),this.tech_&&this.tech_.off("waitingforkey",this.handleWaitingForKey_),e.prototype.dispose.call(this)},r.convertToProgramTime=function(e,t){return mc({playlist:this.masterPlaylistController_.media(),time:e,callback:t})},r.seekToProgramTime=function(e,t,r,i){return void 0===r&&(r=!0),void 0===i&&(i=2),gc({programTime:e,playlist:this.masterPlaylistController_.media(),retryCount:i,pauseAfterSeek:r,seekTo:this.options_.seekTo,tech:this.options_.tech,callback:t})},t}(pa.getComponent("Component")),wh={name:"videojs-http-streaming",VERSION:fh,canHandleSource:function(e,t){void 0===t&&(t={});var r=pa.mergeOptions(pa.options,t);return wh.canPlayType(e.type,r)},handleSource:function(e,t,r){void 0===r&&(r={});var i=pa.mergeOptions(pa.options,r);return t.vhs=new Th(e,t,i),pa.hasOwnProperty("hls")||Object.defineProperty(t,"hls",{get:function(){return pa.log.warn("player.tech().hls is deprecated. Use player.tech().vhs instead."),t.vhs},configurable:!0}),t.vhs.xhr=ac(),t.vhs.src(e.src,e.type),t.vhs},canPlayType:function(e,t){void 0===t&&(t={});var r=pa.mergeOptions(pa.options,t),i=r.vhs,n=(i=void 0===i?{}:i).overrideNative,a=void 0===n?!pa.browser.IS_ANY_SAFARI:n,s=r.hls,o=(s=void 0===s?{}:s).overrideNative,l=void 0!==o&&o,u=Va(e);return u&&(!mh.supportsTypeNatively(u)||l||a)?"maybe":""}};(Na("avc1.4d400d,mp4a.40.2")&&pa.getTech("Html5").registerSourceHandler(wh,0),pa.VhsHandler=Th,Object.defineProperty(pa,"HlsHandler",{get:function(){return pa.log.warn("videojs.HlsHandler is deprecated. Use videojs.VhsHandler instead."),Th},configurable:!0}),pa.VhsSourceHandler=wh,Object.defineProperty(pa,"HlsSourceHandler",{get:function(){return pa.log.warn("videojs.HlsSourceHandler is deprecated. Use videojs.VhsSourceHandler instead."),wh},configurable:!0}),pa.Vhs=mh,Object.defineProperty(pa,"Hls",{get:function(){return pa.log.warn("videojs.Hls is deprecated. Use videojs.Vhs instead."),mh},configurable:!0}),pa.use||(pa.registerComponent("Hls",mh),pa.registerComponent("Vhs",mh)),pa.options.vhs=pa.options.vhs||{},pa.options.hls=pa.options.hls||{},pa.getPlugin&&pa.getPlugin("reloadSourceOnError"))||(pa.registerPlugin||pa.plugin)("reloadSourceOnError",function(e){ph(this,e)});return pa}),function(e,t,r){var i={markerStyle:{width:"7px","border-radius":"30%","background-color":"red"},markerTip:{display:!0,text:function(e){return"Break: "+e.text},time:function(e){return e.time}},breakOverlay:{display:!1,displayTime:3,text:function(e){return"Break overlay: "+e.overlayText},style:{width:"100%",height:"20%","background-color":"rgba(0,0,0,0.7)",color:"white","font-size":"17px"}},onMarkerClick:function(e){},onMarkerReached:function(e){},markers:[]};t.plugin("markers",function(t){var r=e.extend(!0,{},i,t),n={},a=[],s=e(this.el()),o=-1,l=this,u=null,c=null,d=-1;function h(){a.sort(function(e,t){return r.markerTip.time(e)-r.markerTip.time(t)})}function p(t){e.each(t,function(t,i){var o;i.key=(o=(new Date).getTime(),"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(e){var t=(o+16*Math.random())%16|0;return o=Math.floor(o/16),("x"==e?t:3&t|8).toString(16)})),s.find(".vjs-progress-control").append(function(t,i){var a=e("
");a.css(r.markerStyle).css({"margin-left":-parseFloat(a.css("width"))/2+"px",left:f(t)+"%"}).attr("data-marker-key",t.key).attr("data-marker-time",r.markerTip.time(t)),t.class&&a.addClass(t.class);a.on("click",function(i){var a=!1;if("function"==typeof r.onMarkerClick&&(a=0==r.onMarkerClick(t)),!a){var s=e(this).data("marker-key");l.currentTime(r.markerTip.time(n[s]))}}),r.markerTip.display&&function(t){t.on("mouseover",function(){var t=n[e(this).data("marker-key")];u.find(".vjs-tip-inner").text(r.markerTip.text(t)),u.css({left:f(t)+"%","margin-left":-parseFloat(u.css("width"))/2-5+"px",visibility:"visible"})}).on("mouseout",function(){u.css("visibility","hidden")})}(a);return a}(i)),n[i.key]=i,a.push(i)}),h()}function f(e){return r.markerTip.time(e)/l.duration()*100}function m(e){c&&(d=-1,c.css("visibility","hidden")),o=-1;for(var t=0;t=0;t--)null===a[t]&&a.splice(t,1);h()}function g(e){if(!(o<0)){var t=a[o],i=r.markerTip.time(t);e>=i&&e<=i+r.breakOverlay.displayTime?(d!=o&&(d=o,c.find(".vjs-break-overlay-text").text(r.breakOverlay.text(t))),c.css("visibility","visible")):(d=-1,c.css("visibility","hidden"))}}function v(){var e,i=function(e){return e=r.markerTip.time(a[o])&&n0&&n=r.markerTip.time(a[u])&&n
"),s.find(".vjs-progress-control").append(u)),l.markers.removeAll(),p(t.markers),r.breakOverlay.display&&(c=e("
").css(r.breakOverlay.style),s.append(c),d=-1),v(),l.on("timeupdate",v)}l.on("loadedmetadata",function(){y()}),l.markers={getMarkers:function(){return a},next:function(){for(var e=l.currentTime(),t=0;te){l.currentTime(i);break}}},prev:function(){for(var e=l.currentTime(),t=a.length-1;t>=0;t--){var i=r.markerTip.time(a[t]);if(i+.5r&&this.selectedIndex_--;break}return t&&this.trigger({qualityLevel:e,type:"removequalitylevel"}),t},o.getQualityLevelById=function(e){for(var t=0,r=this.length;tt.options_.sortVal?-1:0}),e},n}(s),l={},u=function(t){var r=this;this.ready(function(){!function(t,r){t.addClass("vjs-http-source-selector"),console.log("videojs-http-source-selector initialized!"),console.log("player.techName_:"+t.techName_),"Html5"==t.techName_&&t.on(["loadedmetadata"],function(r){if(t.qualityLevels(),e.log("loadmetadata event"),"undefined"==t.videojs_http_source_selector_initialized||1==t.videojs_http_source_selector_initialized)console.log("player.videojs_http_source_selector_initialized == true");else{console.log("player.videojs_http_source_selector_initialized == false"),t.videojs_http_source_selector_initialized=!0;var i=t.controlBar,n=i.getChild("fullscreenToggle").el();i.el().insertBefore(i.addChild("SourceMenuButton").el(),n)}})}(r,e.mergeOptions(l,t))}),e.registerComponent("SourceMenuButton",o),e.registerComponent("SourceMenuItem",a)};return(e.registerPlugin||e.plugin)("httpSourceSelector",u),u.VERSION="1.1.6",u}), -/*! videojs-transcript - v1.0.0 -* (c) 2015 Matthew Walsh, changes (c) 2020 Tom Byrer; Licensed MIT */ -function(e,t){"use strict";var r={settings:{},prefix:"transcript"};r.player=this;var i,n,a,s,o={autoscroll:!0,clickArea:"text",showTitle:!0,showTrackSelector:!0,followPlayerTrack:!0,stopScrollWhenInUse:!0},l=(i=r,{secondsToTime:function(e){var t=Math.floor(e/3600),r=Math.floor(e%3600/60),i=Math.floor(e%60);return i=i<10?"0"+i:i,r=t>0&&r<10?"0"+r:r,t>0?t+":"+r+":"+i:r+":"+i},localize:function(e){return e},createEl:function(e,t){t=t||"";var r=document.createElement(e);return r.className=i.prefix+t,r},extend:function(e){var t,r,i=typeof e;if(!("function"===i||"object"===i&&e))return e;for(var n=1,a=arguments.length;nr.scrollTop+r.clientHeight&&(t=n-i),void 0!==t&&r.scrollTop!==t&&a.call(this,r,t,400)}},canScroll:function(){var e=this.element;return e.scrollHeight>e.offsetHeight},inUse:function(){return this.userIsScrolling}}),d={get:function(){var e,t,i=[];for(r.tracks=r.player.textTracks(),e=0;ea&&e0))throw new Error("videojs-transcript: No tracks found!");return i(),r.player.on("timeupdate",function(){r.widget.setCue(r.player.currentTime())}),r.settings.followPlayerTrack&&(r.player.on("captionstrackchange",i),r.player.on("subtitlestrackchange",i)),{el:function(){return r.widget.el()},setTrack:r.widget.setTrack}})}(window,videojs); -//# sourceMappingURL=scripts.js.map -(self.webpackChunksunbird_video_player_app=self.webpackChunksunbird_video_player_app||[]).push([["vendor"],{4364:function(It,we,D){"use strict";D.d(we,{ez:function(){return la},K0:function(){return Le},mk:function(){return Vt},sg:function(){return Qn},O5:function(){return Cr},PC:function(){return ti},RF:function(){return lr},n9:function(){return Sr},JF:function(){return Va},w_:function(){return de},bD:function(){return Za},q:function(){return be},Mx:function(){return bt},HT:function(){return De}});var L=D(5012),C=D(9862),t=D(4338),R=D(8270),V=D(7444),F=D(47),E=D(3587),y=null; + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */Ai.\u0275fac=function(x){return new(x||Ai)(t.LFG(t.soG))},Ai.\u0275prov=t.Yz7({token:Ai,factory:Ai.\u0275fac});class pi{constructor(x,ne,Se,gt){this._iterableDiffers=x,this._keyValueDiffers=ne,this._ngEl=Se,this._renderer=gt,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}set klass(x){this._removeClasses(this._initialClasses),this._initialClasses="string"==typeof x?x.split(/\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}set ngClass(x){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass="string"==typeof x?x.split(/\s+/):x,this._rawClass&&((0,t.sIi)(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}ngDoCheck(){if(this._iterableDiffer){const x=this._iterableDiffer.diff(this._rawClass);x&&this._applyIterableChanges(x)}else if(this._keyValueDiffer){const x=this._keyValueDiffer.diff(this._rawClass);x&&this._applyKeyValueChanges(x)}}_applyKeyValueChanges(x){x.forEachAddedItem(ne=>this._toggleClass(ne.key,ne.currentValue)),x.forEachChangedItem(ne=>this._toggleClass(ne.key,ne.currentValue)),x.forEachRemovedItem(ne=>{ne.previousValue&&this._toggleClass(ne.key,!1)})}_applyIterableChanges(x){x.forEachAddedItem(ne=>{if("string"!=typeof ne.item)throw new Error(`NgClass can only toggle CSS classes expressed as strings, got ${(0,t.AaK)(ne.item)}`);this._toggleClass(ne.item,!0)}),x.forEachRemovedItem(ne=>this._toggleClass(ne.item,!1))}_applyClasses(x){x&&(Array.isArray(x)||x instanceof Set?x.forEach(ne=>this._toggleClass(ne,!0)):Object.keys(x).forEach(ne=>this._toggleClass(ne,!!x[ne])))}_removeClasses(x){x&&(Array.isArray(x)||x instanceof Set?x.forEach(ne=>this._toggleClass(ne,!1)):Object.keys(x).forEach(ne=>this._toggleClass(ne,!1)))}_toggleClass(x,ne){(x=x.trim())&&x.split(/\s+/g).forEach(Se=>{ne?this._renderer.addClass(this._ngEl.nativeElement,Se):this._renderer.removeClass(this._ngEl.nativeElement,Se)})}}pi.\u0275fac=function(x){return new(x||pi)(t.Y36(t.ZZ4),t.Y36(t.aQg),t.Y36(t.SBq),t.Y36(t.Qsj))},pi.\u0275dir=t.lG2({type:pi,selectors:[["","ngClass",""]],inputs:{klass:["class","klass"],ngClass:"ngClass"},standalone:!0}); +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +class Bn{constructor(x){this._viewContainerRef=x,this.ngComponentOutlet=null}ngOnChanges(x){const{_viewContainerRef:ne,ngComponentOutletNgModule:Se,ngComponentOutletNgModuleFactory:gt}=this;if(ne.clear(),this._componentRef=void 0,this.ngComponentOutlet){const Pt=this.ngComponentOutletInjector||ne.parentInjector;(x.ngComponentOutletNgModule||x.ngComponentOutletNgModuleFactory)&&(this._moduleRef&&this._moduleRef.destroy(),this._moduleRef=Se?(0,t.Lck)(Se,Dr(Pt)):gt?gt.create(Dr(Pt)):void 0),this._componentRef=ne.createComponent(this.ngComponentOutlet,{index:ne.length,injector:Pt,ngModuleRef:this._moduleRef,projectableNodes:this.ngComponentOutletContent})}}ngOnDestroy(){this._moduleRef&&this._moduleRef.destroy()}}function Dr(k){return k.get(t.h0i).injector} +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */Bn.\u0275fac=function(x){return new(x||Bn)(t.Y36(t.s_b))},Bn.\u0275dir=t.lG2({type:Bn,selectors:[["","ngComponentOutlet",""]],inputs:{ngComponentOutlet:"ngComponentOutlet",ngComponentOutletInjector:"ngComponentOutletInjector",ngComponentOutletContent:"ngComponentOutletContent",ngComponentOutletNgModule:"ngComponentOutletNgModule",ngComponentOutletNgModuleFactory:"ngComponentOutletNgModuleFactory"},standalone:!0,features:[t.TTD]});class ko{constructor(x,ne,Se,gt){this.$implicit=x,this.ngForOf=ne,this.index=Se,this.count=gt}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}}class gi{constructor(x,ne,Se){this._viewContainer=x,this._template=ne,this._differs=Se,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForOf(x){this._ngForOf=x,this._ngForOfDirty=!0}set ngForTrackBy(x){this._trackByFn=x}get ngForTrackBy(){return this._trackByFn}set ngForTemplate(x){x&&(this._template=x)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const x=this._ngForOf;!this._differ&&x&&(this._differ=this._differs.find(x).create(this.ngForTrackBy))}if(this._differ){const x=this._differ.diff(this._ngForOf);x&&this._applyChanges(x)}}_applyChanges(x){const ne=this._viewContainer;x.forEachOperation((Se,gt,Pt)=>{if(null==Se.previousIndex)ne.createEmbeddedView(this._template,new ko(Se.item,this._ngForOf,-1,-1),null===Pt?void 0:Pt);else if(null==Pt)ne.remove(null===gt?void 0:gt);else if(null!==gt){const pn=ne.get(gt);ne.move(pn,Pt),Si(pn,Se)}});for(let Se=0,gt=ne.length;Se{Si(ne.get(Se.currentIndex),Se)})}static ngTemplateContextGuard(x,ne){return!0}}function Si(k,x){k.context.$implicit=x.item}gi.\u0275fac=function(x){return new(x||gi)(t.Y36(t.s_b),t.Y36(t.Rgc),t.Y36(t.ZZ4))},gi.\u0275dir=t.lG2({type:gi,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"},standalone:!0}); +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +class Sr{constructor(x,ne){this._viewContainer=x,this._context=new Wi,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=ne}set ngIf(x){this._context.$implicit=this._context.ngIf=x,this._updateView()}set ngIfThen(x){Ko("ngIfThen",x),this._thenTemplateRef=x,this._thenViewRef=null,this._updateView()}set ngIfElse(x){Ko("ngIfElse",x),this._elseTemplateRef=x,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(x,ne){return!0}}Sr.\u0275fac=function(x){return new(x||Sr)(t.Y36(t.s_b),t.Y36(t.Rgc))},Sr.\u0275dir=t.lG2({type:Sr,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"},standalone:!0});class Wi{constructor(){this.$implicit=null,this.ngIf=null}}function Ko(k,x){if(x&&!x.createEmbeddedView)throw new Error(`${k} must be a TemplateRef, but received '${(0,t.AaK)(x)}'.`)} +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */class No{constructor(x,ne){this._viewContainerRef=x,this._templateRef=ne,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(x){x&&!this._created?this.create():!x&&this._created&&this.destroy()}}class mi{constructor(){this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(x){this._ngSwitch=x,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(x){this._defaultViews||(this._defaultViews=[]),this._defaultViews.push(x)}_matchCase(x){const ne=x==this._ngSwitch;return this._lastCasesMatched=this._lastCasesMatched||ne,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),ne}_updateDefaultCases(x){if(this._defaultViews&&x!==this._defaultUsed){this._defaultUsed=x;for(let ne=0;nethis._setStyle(ne.key,null)),x.forEachAddedItem(ne=>this._setStyle(ne.key,ne.currentValue)),x.forEachChangedItem(ne=>this._setStyle(ne.key,ne.currentValue))}}Pr.\u0275fac=function(x){return new(x||Pr)(t.Y36(t.SBq),t.Y36(t.aQg),t.Y36(t.Qsj))},Pr.\u0275dir=t.lG2({type:Pr,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"},standalone:!0}); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function be(){return y}function De(z){y||(y=z)}var de=(0,V.Z)(function z(){(0,F.Z)(this,z)}),Le=new E.OlP("DocumentToken"),ce=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"historyGo",value:function(le){throw new Error("Not implemented")}}]),z}(); + */ +class or{constructor(x){this._viewContainerRef=x,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null,this.ngTemplateOutletInjector=null}ngOnChanges(x){if(x.ngTemplateOutlet||x.ngTemplateOutletInjector){const ne=this._viewContainerRef;if(this._viewRef&&ne.remove(ne.indexOf(this._viewRef)),this.ngTemplateOutlet){const{ngTemplateOutlet:Se,ngTemplateOutletContext:gt,ngTemplateOutletInjector:Pt}=this;this._viewRef=ne.createEmbeddedView(Se,gt,Pt?{injector:Pt}:void 0)}else this._viewRef=null}else this._viewRef&&x.ngTemplateOutletContext&&this.ngTemplateOutletContext&&(this._viewRef.context=this.ngTemplateOutletContext)}}or.\u0275fac=function(x){return new(x||or)(t.Y36(t.s_b))},or.\u0275dir=t.lG2({type:or,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},standalone:!0,features:[t.TTD]}); +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ +function er(k,x){return new t.vHH(2100,!1)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ce.\u0275fac=function(J){return new(J||ce)},ce.\u0275prov=(0,E.Yz7)({factory:function(){return(0,E.LFG)(ge)},token:ce,providedIn:"platform"});new E.OlP("Location Initialized");var ge=function(z){(0,t.Z)(le,z);var J=(0,R.Z)(le);function le(Re){var O;return(0,F.Z)(this,le),(O=J.call(this))._doc=Re,O._init(),O}return(0,V.Z)(le,[{key:"_init",value:function(){this.location=window.location,this._history=window.history}},{key:"getBaseHrefFromDOM",value:function(){return be().getBaseHref(this._doc)}},{key:"onPopState",value:function(O){var B=be().getGlobalEventTarget(this._doc,"window");return B.addEventListener("popstate",O,!1),function(){return B.removeEventListener("popstate",O)}}},{key:"onHashChange",value:function(O){var B=be().getGlobalEventTarget(this._doc,"window");return B.addEventListener("hashchange",O,!1),function(){return B.removeEventListener("hashchange",O)}}},{key:"href",get:function(){return this.location.href}},{key:"protocol",get:function(){return this.location.protocol}},{key:"hostname",get:function(){return this.location.hostname}},{key:"port",get:function(){return this.location.port}},{key:"pathname",get:function(){return this.location.pathname},set:function(O){this.location.pathname=O}},{key:"search",get:function(){return this.location.search}},{key:"hash",get:function(){return this.location.hash}},{key:"pushState",value:function(O,B,N){ye()?this._history.pushState(O,B,N):this.location.hash=N}},{key:"replaceState",value:function(O,B,N){ye()?this._history.replaceState(O,B,N):this.location.hash=N}},{key:"forward",value:function(){this._history.forward()}},{key:"back",value:function(){this._history.back()}},{key:"historyGo",value:function(){var O=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this._history.go(O)}},{key:"getState",value:function(){return this._history.state}}]),le}(ce);function ye(){return!!window.history.pushState} + */const eo=new class Xr{createSubscription(x,ne){return x.then(ne,Se=>{throw Se})}dispose(x){}},wo=new class Or{createSubscription(x,ne){return x.subscribe({next:ne,error:Se=>{throw Se}})}dispose(x){x.unsubscribe()}};class yr{constructor(x){this._latestValue=null,this._subscription=null,this._obj=null,this._strategy=null,this._ref=x}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(x){return this._obj?x!==this._obj?(this._dispose(),this.transform(x)):this._latestValue:(x&&this._subscribe(x),this._latestValue)}_subscribe(x){this._obj=x,this._strategy=this._selectStrategy(x),this._subscription=this._strategy.createSubscription(x,ne=>this._updateLatestValue(x,ne))}_selectStrategy(x){if((0,t.QGY)(x))return eo;if((0,t.F4k)(x))return wo;throw er()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(x,ne){x===this._obj&&(this._latestValue=ne,this._ref.markForCheck())}}yr.\u0275fac=function(x){return new(x||yr)(t.Y36(t.sBO,16))},yr.\u0275pipe=t.Yjl({name:"async",type:yr,pure:!1,standalone:!0}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -316,6 +409,7 @@ function(e,t){"use strict";var r={settings:{},prefix:"transcript"};r.player=this * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +class bi{transform(x){if(null==x)return null;if("string"!=typeof x)throw er();return x.toLowerCase()}}bi.\u0275fac=function(x){return new(x||bi)},bi.\u0275pipe=t.Yjl({name:"lowercase",type:bi,pure:!0,standalone:!0});const Jo=/(?:[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;class Tn{transform(x){if(null==x)return null;if("string"!=typeof x)throw er();return x.replace(Jo,ne=>ne[0].toUpperCase()+ne.slice(1).toLowerCase())}}Tn.\u0275fac=function(x){return new(x||Tn)},Tn.\u0275pipe=t.Yjl({name:"titlecase",type:Tn,pure:!0,standalone:!0});class qr{transform(x){if(null==x)return null;if("string"!=typeof x)throw er();return x.toUpperCase()}}qr.\u0275fac=function(x){return new(x||qr)},qr.\u0275pipe=t.Yjl({name:"uppercase",type:qr,pure:!0,standalone:!0}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -323,14 +417,15 @@ function(e,t){"use strict";var r={settings:{},prefix:"transcript"};r.player=this * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function ve(z,J){if(0==z.length)return J;if(0==J.length)return z;var le=0;return z.endsWith("/")&&le++,J.startsWith("/")&&le++,2==le?z+J.substring(1):1==le?z+J:z+"/"+J}function Ue(z){var J=z.match(/#|\?|$/),le=J&&J.index||z.length,Re=le-("/"===z[le-1]?1:0);return z.slice(0,Re)+z.slice(le)}function Ke(z){return z&&"?"!==z[0]?"?"+z:z} +const $o=new t.OlP("DATE_PIPE_DEFAULT_TIMEZONE");class Ii{constructor(x,ne){this.locale=x,this.defaultTimezone=ne}transform(x,ne="mediumDate",Se,gt){if(null==x||""===x||x!=x)return null;try{return we(x,ne,gt||this.locale,Se??this.defaultTimezone??void 0)}catch(Pt){throw er(0,Pt.message)}}}Ii.\u0275fac=function(x){return new(x||Ii)(t.Y36(t.soG,16),t.Y36($o,24))},Ii.\u0275pipe=t.Yjl({name:"date",type:Ii,pure:!0,standalone:!0}); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ge.\u0275fac=function(J){return new(J||ge)(E.LFG(Le))},ge.\u0275prov=(0,E.Yz7)({factory:function(){return new ge((0,E.LFG)(Le))},token:ge,providedIn:"platform"}),ge.ctorParameters=function(){return[{type:void 0,decorators:[{type:E.tBr,args:[Le]}]}]};var Ze=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"historyGo",value:function(le){throw new Error("Not implemented")}}]),z}();Ze.\u0275fac=function(J){return new(J||Ze)},Ze.\u0275prov=(0,E.Yz7)({factory:function(z){var J=(0,E.LFG)(Le).location;return new A((0,E.LFG)(ce),J&&J.origin||"")},token:Ze,providedIn:"root"});var Xe=new E.OlP("appBaseHref"),A=function(z){(0,t.Z)(le,z);var J=(0,R.Z)(le);function le(Re,O){var B;if((0,F.Z)(this,le),(B=J.call(this))._platformLocation=Re,B._removeListenerFns=[],null==O&&(O=B._platformLocation.getBaseHrefFromDOM()),null==O)throw new Error("No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.");return B._baseHref=O,B}return(0,V.Z)(le,[{key:"ngOnDestroy",value:function(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}},{key:"onPopState",value:function(O){this._removeListenerFns.push(this._platformLocation.onPopState(O),this._platformLocation.onHashChange(O))}},{key:"getBaseHref",value:function(){return this._baseHref}},{key:"prepareExternalUrl",value:function(O){return ve(this._baseHref,O)}},{key:"path",value:function(){var O=arguments.length>0&&void 0!==arguments[0]&&arguments[0],B=this._platformLocation.pathname+Ke(this._platformLocation.search),N=this._platformLocation.hash;return N&&O?"".concat(B).concat(N):B}},{key:"pushState",value:function(O,B,N,ie){var oe=this.prepareExternalUrl(N+Ke(ie));this._platformLocation.pushState(O,B,oe)}},{key:"replaceState",value:function(O,B,N,ie){var oe=this.prepareExternalUrl(N+Ke(ie));this._platformLocation.replaceState(O,B,oe)}},{key:"forward",value:function(){this._platformLocation.forward()}},{key:"back",value:function(){this._platformLocation.back()}},{key:"historyGo",value:function(){var B,N,O=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;null===(N=(B=this._platformLocation).historyGo)||void 0===N||N.call(B,O)}}]),le}(Ze);A.\u0275fac=function(J){return new(J||A)(E.LFG(ce),E.LFG(Xe,8))},A.\u0275prov=E.Yz7({token:A,factory:A.\u0275fac}),A.ctorParameters=function(){return[{type:ce},{type:String,decorators:[{type:E.FiY},{type:E.tBr,args:[Xe]}]}]}; + */ +const Fo=/#/g;class xo{constructor(x){this._localization=x}transform(x,ne,Se){if(null==x)return"";if("object"!=typeof ne||null===ne)throw er();return ne[Ri(x,Object.keys(ne),this._localization,Se)].replace(Fo,x.toString())}}xo.\u0275fac=function(x){return new(x||xo)(t.Y36(vr,16))},xo.\u0275pipe=t.Yjl({name:"i18nPlural",type:xo,pure:!0,standalone:!0}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -338,7 +433,7 @@ function ve(z,J){if(0==z.length)return J;if(0==J.length)return z;var le=0;return * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var W=function(z){(0,t.Z)(le,z);var J=(0,R.Z)(le);function le(Re,O){var B;return(0,F.Z)(this,le),(B=J.call(this))._platformLocation=Re,B._baseHref="",B._removeListenerFns=[],null!=O&&(B._baseHref=O),B}return(0,V.Z)(le,[{key:"ngOnDestroy",value:function(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}},{key:"onPopState",value:function(O){this._removeListenerFns.push(this._platformLocation.onPopState(O),this._platformLocation.onHashChange(O))}},{key:"getBaseHref",value:function(){return this._baseHref}},{key:"path",value:function(){arguments.length>0&&void 0!==arguments[0]&&arguments[0];var B=this._platformLocation.hash;return null==B&&(B="#"),B.length>0?B.substring(1):B}},{key:"prepareExternalUrl",value:function(O){var B=ve(this._baseHref,O);return B.length>0?"#"+B:B}},{key:"pushState",value:function(O,B,N,ie){var oe=this.prepareExternalUrl(N+Ke(ie));0==oe.length&&(oe=this._platformLocation.pathname),this._platformLocation.pushState(O,B,oe)}},{key:"replaceState",value:function(O,B,N,ie){var oe=this.prepareExternalUrl(N+Ke(ie));0==oe.length&&(oe=this._platformLocation.pathname),this._platformLocation.replaceState(O,B,oe)}},{key:"forward",value:function(){this._platformLocation.forward()}},{key:"back",value:function(){this._platformLocation.back()}},{key:"historyGo",value:function(){var B,N,O=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;null===(N=(B=this._platformLocation).historyGo)||void 0===N||N.call(B,O)}}]),le}(Ze);W.\u0275fac=function(J){return new(J||W)(E.LFG(ce),E.LFG(Xe,8))},W.\u0275prov=E.Yz7({token:W,factory:W.\u0275fac}),W.ctorParameters=function(){return[{type:ce},{type:String,decorators:[{type:E.FiY},{type:E.tBr,args:[Xe]}]}]}; +class pr{transform(x,ne){if(null==x)return"";if("object"!=typeof ne||"string"!=typeof x)throw er();return ne.hasOwnProperty(x)?ne[x]:ne.hasOwnProperty("other")?ne.other:""}}pr.\u0275fac=function(x){return new(x||pr)},pr.\u0275pipe=t.Yjl({name:"i18nSelect",type:pr,pure:!0,standalone:!0}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -346,7 +441,7 @@ var W=function(z){(0,t.Z)(le,z);var J=(0,R.Z)(le);function le(Re,O){var B;return * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var U=function(){function z(J,le){var Re=this;(0,F.Z)(this,z),this._subject=new E.vpe,this._urlChangeListeners=[],this._platformStrategy=J;var O=this._platformStrategy.getBaseHref();this._platformLocation=le,this._baseHref=Ue(Ye(O)),this._platformStrategy.onPopState(function(B){Re._subject.emit({url:Re.path(!0),pop:!0,state:B.state,type:B.type})})}return(0,V.Z)(z,[{key:"path",value:function(){var le=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return this.normalize(this._platformStrategy.path(le))}},{key:"getState",value:function(){return this._platformLocation.getState()}},{key:"isCurrentPathEqualTo",value:function(le){var Re=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return this.path()==this.normalize(le+Ke(Re))}},{key:"normalize",value:function(le){return z.stripTrailingSlash(function(z,J){return z&&J.startsWith(z)?J.substring(z.length):J}(this._baseHref,Ye(le)))}},{key:"prepareExternalUrl",value:function(le){return le&&"/"!==le[0]&&(le="/"+le),this._platformStrategy.prepareExternalUrl(le)}},{key:"go",value:function(le){var Re=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",O=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;this._platformStrategy.pushState(O,"",le,Re),this._notifyUrlChangeListeners(this.prepareExternalUrl(le+Ke(Re)),O)}},{key:"replaceState",value:function(le){var Re=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",O=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;this._platformStrategy.replaceState(O,"",le,Re),this._notifyUrlChangeListeners(this.prepareExternalUrl(le+Ke(Re)),O)}},{key:"forward",value:function(){this._platformStrategy.forward()}},{key:"back",value:function(){this._platformStrategy.back()}},{key:"historyGo",value:function(){var Re,O,le=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;null===(O=(Re=this._platformStrategy).historyGo)||void 0===O||O.call(Re,le)}},{key:"onUrlChange",value:function(le){var Re=this;this._urlChangeListeners.push(le),this._urlChangeSubscription||(this._urlChangeSubscription=this.subscribe(function(O){Re._notifyUrlChangeListeners(O.url,O.state)}))}},{key:"_notifyUrlChangeListeners",value:function(){var le=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",Re=arguments.length>1?arguments[1]:void 0;this._urlChangeListeners.forEach(function(O){return O(le,Re)})}},{key:"subscribe",value:function(le,Re,O){return this._subject.subscribe({next:le,error:Re,complete:O})}}]),z}();function Ye(z){return z.replace(/\/index.html$/,"")} +class qo{transform(x){return JSON.stringify(x,null,2)}}qo.\u0275fac=function(x){return new(x||qo)},qo.\u0275pipe=t.Yjl({name:"json",type:qo,pure:!1,standalone:!0});class oo{constructor(x){this.differs=x,this.keyValues=[],this.compareFn=Bo}transform(x,ne=Bo){if(!x||!(x instanceof Map)&&"object"!=typeof x)return null;this.differ||(this.differ=this.differs.find(x).create());const Se=this.differ.diff(x),gt=ne!==this.compareFn;return Se&&(this.keyValues=[],Se.forEachItem(Pt=>{this.keyValues.push( /** * @license * Copyright Google LLC All Rights Reserved. @@ -354,20 +449,29 @@ var U=function(){function z(J,le){var Re=this;(0,F.Z)(this,z),this._subject=new * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +function Xo(k,x){return{key:k,value:x}}(Pt.key,Pt.currentValue))})),(Se||gt)&&(this.keyValues.sort(ne),this.compareFn=ne),this.keyValues}}function Bo(k,x){const ne=k.key,Se=x.key;if(ne===Se)return 0;if(void 0===ne)return 1;if(void 0===Se)return-1;if(null===ne)return 1;if(null===Se)return-1;if("string"==typeof ne&&"string"==typeof Se)return ne-1;le--)if(void 0!==z[le])return z[le];throw new Error("Locale data API: locale data undefined")}function ln(z){var J=z.split(":"),le=(0,C.Z)(J,2);return{hours:+le[0],minutes:+le[1]}}function vn(z,J){var le=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"en",Re=pn(le)[z]||st[z]||[],O=Re[1];return"narrow"===J&&"string"==typeof O?O:Re[0]||z} + */ +class Qr{}Qr.\u0275fac=function(x){return new(x||Qr)},Qr.\u0275mod=t.oAB({type:Qr}),Qr.\u0275inj=t.cJS({}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -375,21 +479,22 @@ var U=function(){function z(J,le){var Re=this;(0,F.Z)(this,z),this._subject=new * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var xe,fe,$e,se=/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,me={},$=/((?:[^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]*)/;function ht(z,J,le,Re){var O=function(z){if(yn(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)){var J=z.split("-").map(function(tn){return+tn}),le=(0,C.Z)(J,3),Re=le[0],O=le[1],B=void 0===O?1:O,N=le[2];return wt(Re,B-1,void 0===N?1:N)}var Ve,oe=parseFloat(z);if(!isNaN(z-oe))return new Date(oe);if(Ve=z.match(se))return function(z){var J=new Date(0),le=0,Re=0,O=z[8]?J.setUTCFullYear:J.setFullYear,B=z[8]?J.setUTCHours:J.setHours;z[9]&&(le=Number(z[9]+z[10]),Re=Number(z[9]+z[11])),O.call(J,Number(z[1]),Number(z[2])-1,Number(z[3]));var N=Number(z[4]||0)-le,ie=Number(z[5]||0)-Re,oe=Number(z[6]||0),Ve=Math.floor(1e3*parseFloat("0."+(z[7]||0)));return B.call(J,N,ie,oe,Ve),J}(Ve)}var Tt=new Date(z);if(!yn(Tt))throw new Error('Unable to convert "'.concat(z,'" into a date'));return Tt}(z);J=Gt(le,J)||J;for(var ie,N=[];J;){if(!(ie=$.exec(J))){N.push(J);break}var oe=(N=N.concat(ie.slice(1))).pop();if(!oe)break;J=oe}var Ve=O.getTimezoneOffset();Re&&(Ve=We(Re,Ve),O=function(z,J,le){var Re=le?-1:1,O=z.getTimezoneOffset(),B=We(J,O);return function(z,J){return(z=new Date(z.getTime())).setMinutes(z.getMinutes()+J),z}(z,Re*(B-O))}(O,Re,!0));var Tt="";return N.forEach(function(tn){var Un=function(z){if(oa[z])return oa[z];var J;switch(z){case"G":case"GG":case"GGG":J=Fn($e.Eras,ot.Abbreviated);break;case"GGGG":J=Fn($e.Eras,ot.Wide);break;case"GGGGG":J=Fn($e.Eras,ot.Narrow);break;case"y":J=Rn(fe.FullYear,1,0,!1,!0);break;case"yy":J=Rn(fe.FullYear,2,0,!0,!0);break;case"yyy":J=Rn(fe.FullYear,3,0,!1,!0);break;case"yyyy":J=Rn(fe.FullYear,4,0,!1,!0);break;case"Y":J=vi(1);break;case"YY":J=vi(2,!0);break;case"YYY":J=vi(3);break;case"YYYY":J=vi(4);break;case"M":case"L":J=Rn(fe.Month,1,1);break;case"MM":case"LL":J=Rn(fe.Month,2,1);break;case"MMM":J=Fn($e.Months,ot.Abbreviated);break;case"MMMM":J=Fn($e.Months,ot.Wide);break;case"MMMMM":J=Fn($e.Months,ot.Narrow);break;case"LLL":J=Fn($e.Months,ot.Abbreviated,ft.Standalone);break;case"LLLL":J=Fn($e.Months,ot.Wide,ft.Standalone);break;case"LLLLL":J=Fn($e.Months,ot.Narrow,ft.Standalone);break;case"w":J=Lr(1);break;case"ww":J=Lr(2);break;case"W":J=Lr(1,!0);break;case"d":J=Rn(fe.Date,1);break;case"dd":J=Rn(fe.Date,2);break;case"c":case"cc":J=Rn(fe.Day,1);break;case"ccc":J=Fn($e.Days,ot.Abbreviated,ft.Standalone);break;case"cccc":J=Fn($e.Days,ot.Wide,ft.Standalone);break;case"ccccc":J=Fn($e.Days,ot.Narrow,ft.Standalone);break;case"cccccc":J=Fn($e.Days,ot.Short,ft.Standalone);break;case"E":case"EE":case"EEE":J=Fn($e.Days,ot.Abbreviated);break;case"EEEE":J=Fn($e.Days,ot.Wide);break;case"EEEEE":J=Fn($e.Days,ot.Narrow);break;case"EEEEEE":J=Fn($e.Days,ot.Short);break;case"a":case"aa":case"aaa":J=Fn($e.DayPeriods,ot.Abbreviated);break;case"aaaa":J=Fn($e.DayPeriods,ot.Wide);break;case"aaaaa":J=Fn($e.DayPeriods,ot.Narrow);break;case"b":case"bb":case"bbb":J=Fn($e.DayPeriods,ot.Abbreviated,ft.Standalone,!0);break;case"bbbb":J=Fn($e.DayPeriods,ot.Wide,ft.Standalone,!0);break;case"bbbbb":J=Fn($e.DayPeriods,ot.Narrow,ft.Standalone,!0);break;case"B":case"BB":case"BBB":J=Fn($e.DayPeriods,ot.Abbreviated,ft.Format,!0);break;case"BBBB":J=Fn($e.DayPeriods,ot.Wide,ft.Format,!0);break;case"BBBBB":J=Fn($e.DayPeriods,ot.Narrow,ft.Format,!0);break;case"h":J=Rn(fe.Hours,1,-12);break;case"hh":J=Rn(fe.Hours,2,-12);break;case"H":J=Rn(fe.Hours,1);break;case"HH":J=Rn(fe.Hours,2);break;case"m":J=Rn(fe.Minutes,1);break;case"mm":J=Rn(fe.Minutes,2);break;case"s":J=Rn(fe.Seconds,1);break;case"ss":J=Rn(fe.Seconds,2);break;case"S":J=Rn(fe.FractionalSeconds,1);break;case"SS":J=Rn(fe.FractionalSeconds,2);break;case"SSS":J=Rn(fe.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":J=Mr(xe.Short);break;case"ZZZZZ":J=Mr(xe.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":J=Mr(xe.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":J=Mr(xe.Long);break;default:return null}return oa[z]=J,J}(tn);Tt+=Un?Un(O,le,Ve):"''"===tn?"'":tn.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),Tt}function wt(z,J,le){var Re=new Date(0);return Re.setFullYear(z,J,le),Re.setHours(0,0,0),Re}function Gt(z,J){var le=function(z){return(0,E.cg1)(z)[E.wAp.LocaleId]}(z);if(me[le]=me[le]||{},me[le][J])return me[le][J];var Re="";switch(J){case"shortDate":Re=on(z,kt.Short);break;case"mediumDate":Re=on(z,kt.Medium);break;case"longDate":Re=on(z,kt.Long);break;case"fullDate":Re=on(z,kt.Full);break;case"shortTime":Re=pt(z,kt.Short);break;case"mediumTime":Re=pt(z,kt.Medium);break;case"longTime":Re=pt(z,kt.Long);break;case"fullTime":Re=pt(z,kt.Full);break;case"short":var O=Gt(z,"shortTime"),B=Gt(z,"shortDate");Re=un(xt(z,kt.Short),[O,B]);break;case"medium":var N=Gt(z,"mediumTime"),ie=Gt(z,"mediumDate");Re=un(xt(z,kt.Medium),[N,ie]);break;case"long":var oe=Gt(z,"longTime"),Ve=Gt(z,"longDate");Re=un(xt(z,kt.Long),[oe,Ve]);break;case"full":var Tt=Gt(z,"fullTime"),tn=Gt(z,"fullDate");Re=un(xt(z,kt.Full),[Tt,tn])}return Re&&(me[le][J]=Re),Re}function un(z,J){return J&&(z=z.replace(/\{([^}]+)}/g,function(le,Re){return null!=J&&Re in J?J[Re]:le})),z}function bn(z,J){var le=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"-",Re=arguments.length>3?arguments[3]:void 0,O=arguments.length>4?arguments[4]:void 0,B="";(z<0||O&&z<=0)&&(O?z=1-z:(z=-z,B=le));for(var N=String(z);N.length2&&void 0!==arguments[2]?arguments[2]:0,Re=arguments.length>3&&void 0!==arguments[3]&&arguments[3],O=arguments.length>4&&void 0!==arguments[4]&&arguments[4];return function(B,N){var ie=ir(z,B);if((le>0||ie>-le)&&(ie+=le),z===fe.Hours)0===ie&&-12===le&&(ie=12);else if(z===fe.FractionalSeconds)return Xn(ie,J);var oe=je(N,_t.MinusSign);return bn(ie,J,oe,Re,O)}}function ir(z,J){switch(z){case fe.FullYear:return J.getFullYear();case fe.Month:return J.getMonth();case fe.Date:return J.getDate();case fe.Hours:return J.getHours();case fe.Minutes:return J.getMinutes();case fe.Seconds:return J.getSeconds();case fe.FractionalSeconds:return J.getMilliseconds();case fe.Day:return J.getDay();default:throw new Error('Unknown DateType value "'.concat(z,'".'))}}function Fn(z,J){var le=arguments.length>2&&void 0!==arguments[2]?arguments[2]:ft.Format,Re=arguments.length>3&&void 0!==arguments[3]&&arguments[3];return function(O,B){return di(O,B,z,J,le,Re)}}function di(z,J,le,Re,O,B){switch(le){case $e.Months:return function(z,J,le){var Re=(0,E.cg1)(z),B=Ot([Re[E.wAp.MonthsFormat],Re[E.wAp.MonthsStandalone]],J);return Ot(B,le)}(J,O,Re)[z.getMonth()];case $e.Days:return function(z,J,le){var Re=(0,E.cg1)(z),B=Ot([Re[E.wAp.DaysFormat],Re[E.wAp.DaysStandalone]],J);return Ot(B,le)}(J,O,Re)[z.getDay()];case $e.DayPeriods:var N=z.getHours(),ie=z.getMinutes();if(B){var oe=function(z){var J=(0,E.cg1)(z);return Jn(J),(J[E.wAp.ExtraData][2]||[]).map(function(Re){return"string"==typeof Re?ln(Re):[ln(Re[0]),ln(Re[1])]})}(J),Ve=function(z,J,le){var Re=(0,E.cg1)(z);Jn(Re);var B=Ot([Re[E.wAp.ExtraData][0],Re[E.wAp.ExtraData][1]],J)||[];return Ot(B,le)||[]}(J,O,Re),Tt=oe.findIndex(function(Un){if(Array.isArray(Un)){var jr=(0,C.Z)(Un,2),bi=jr[0],hi=jr[1],ji=N>=bi.hours&&ie>=bi.minutes,Gn=N0?Math.floor(O/60):Math.ceil(O/60);switch(z){case xe.Short:return(O>=0?"+":"")+bn(N,2,B)+bn(Math.abs(O%60),2,B);case xe.ShortGMT:return"GMT"+(O>=0?"+":"")+bn(N,1,B);case xe.Long:return"GMT"+(O>=0?"+":"")+bn(N,2,B)+":"+bn(Math.abs(O%60),2,B);case xe.Extended:return 0===Re?"Z":(O>=0?"+":"")+bn(N,2,B)+":"+bn(Math.abs(O%60),2,B);default:throw new Error('Unknown zone width "'.concat(z,'"'))}}}!function(z){z[z.Short=0]="Short",z[z.ShortGMT=1]="ShortGMT",z[z.Long=2]="Long",z[z.Extended=3]="Extended"}(xe||(xe={})),function(z){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"}(fe||(fe={})),function(z){z[z.DayPeriods=0]="DayPeriods",z[z.Days=1]="Days",z[z.Months=2]="Months",z[z.Eras=3]="Eras"}($e||($e={}));function Dr(z){var J=wt(z,0,1).getDay();return wt(z,0,1+(J<=4?4:11)-J)}function Or(z){return wt(z.getFullYear(),z.getMonth(),z.getDate()+(4-z.getDay()))}function Lr(z){var J=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return function(le,Re){var O;if(J){var B=new Date(le.getFullYear(),le.getMonth(),1).getDay()-1,N=le.getDate();O=1+Math.floor((N+B)/7)}else{var ie=Or(le),oe=Dr(ie.getFullYear()),Ve=ie.getTime()-oe.getTime();O=1+Math.round(Ve/6048e5)}return bn(O,z,je(Re,_t.MinusSign))}}function vi(z){var J=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return function(le,Re){return bn(Or(le).getFullYear(),z,je(Re,_t.MinusSign),J)}}var oa={};function We(z,J){z=z.replace(/:/g,"");var le=Date.parse("Jan 01, 1970 00:00:00 "+z)/6e4;return isNaN(le)?J:le}function yn(z){return z instanceof Date&&!isNaN(z.valueOf())} +const ts="browser"; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var sr=/^(\d+)?\.((\d+)(-(\d+))?)?$/,Vr="0";function Yn(z,J,le,Re,O,B){var N=arguments.length>6&&void 0!==arguments[6]&&arguments[6],ie="",oe=!1;if(isFinite(z)){var Ve=$r(z);N&&(Ve=Ri(Ve));var Tt=J.minInt,tn=J.minFrac,Un=J.maxFrac;if(B){var jr=B.match(sr);if(null===jr)throw new Error("".concat(B," is not a valid digit info"));var bi=jr[1],hi=jr[3],ji=jr[5];null!=bi&&(Tt=sa(bi)),null!=hi&&(tn=sa(hi)),null!=ji?Un=sa(ji):null!=hi&&tn>Un&&(Un=tn)}Er(Ve,tn,Un);var Gn=Ve.digits,Oi=Ve.integerLen,Ha=Ve.exponent,Co=[];for(oe=Gn.every(function(zs){return!zs});Oi0?Co=Gn.splice(Oi,Gn.length):(Co=Gn,Gn=[0]);var La=[];for(Gn.length>=J.lgSize&&La.unshift(Gn.splice(-J.lgSize,Gn.length).join(""));Gn.length>J.gSize;)La.unshift(Gn.splice(-J.gSize,Gn.length).join(""));Gn.length&&La.unshift(Gn.join("")),ie=La.join(je(le,Re)),Co.length&&(ie+=je(le,O)+Co.join("")),Ha&&(ie+=je(le,_t.Exponential)+"+"+Ha)}else ie=je(le,_t.Infinity);return ie=z<0&&!oe?J.negPre+ie+J.negSuf:J.posPre+ie+J.posSuf}function qr(z,J,le,Re,O){var N=Ci(rn(J,at.Currency),je(J,_t.MinusSign));return N.minFrac=function(z){var J,le=st[z];return le&&(J=le[2]),"number"==typeof J?J:2}(Re),N.maxFrac=N.minFrac,Yn(z,N,J,_t.CurrencyGroup,_t.CurrencyDecimal,O).replace("\xa4",le).replace("\xa4","").trim()}function Ci(z){var J=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"-",le={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},Re=z.split(";"),O=Re[0],B=Re[1],N=-1!==O.indexOf(".")?O.split("."):[O.substring(0,O.lastIndexOf(Vr)+1),O.substring(O.lastIndexOf(Vr)+1)],ie=N[0],oe=N[1]||"";le.posPre=ie.substr(0,ie.indexOf("#"));for(var Ve=0;Ve-1&&(J=J.replace(".","")),(B=J.search(/e/i))>0?(O<0&&(O=B),O+=+J.slice(B+1),J=J.substring(0,B)):O<0&&(O=J.length),B=0;J.charAt(B)===Vr;B++);if(B===(ie=J.length))Re=[0],O=1;else{for(ie--;J.charAt(ie)===Vr;)ie--;for(O-=B,Re=[],N=0;B<=ie;B++,N++)Re[N]=Number(J.charAt(B))}return O>22&&(Re=Re.splice(0,21),le=O-1,O=1),{digits:Re,exponent:le,integerLen:O}}function Er(z,J,le){if(J>le)throw new Error("The minimum number of digits after fraction (".concat(J,") is higher than the maximum (").concat(le,")."));var Re=z.digits,O=Re.length-z.integerLen,B=Math.min(Math.max(J,O),le),N=B+z.integerLen,ie=Re[N];if(N>0){Re.splice(Math.max(z.integerLen,N));for(var oe=N;oe=5)if(N-1<0){for(var Tt=0;Tt>N;Tt--)Re.unshift(0),z.integerLen++;Re.unshift(1),z.integerLen++}else Re[N-1]++;for(;O=Un?Gn.pop():tn=!1),hi>=10?1:0},0);jr&&(Re.unshift(jr),z.integerLen++)}function sa(z){var J=parseInt(z);if(isNaN(J))throw new Error("Invalid integer literal when parsing "+z);return J} + */ +new t.GfV("14.2.12"); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var Nt=(0,V.Z)(function z(){(0,F.Z)(this,z)});function Mt(z,J,le,Re){var O="=".concat(z);if(J.indexOf(O)>-1||(O=le.getPluralCategory(z,Re),J.indexOf(O)>-1))return O;if(J.indexOf("other")>-1)return"other";throw new Error('No plural message found for value "'.concat(z,'"'))}var nt=function(z){(0,t.Z)(le,z);var J=(0,R.Z)(le);function le(Re){var O;return(0,F.Z)(this,le),(O=J.call(this)).locale=Re,O}return(0,V.Z)(le,[{key:"getPluralCategory",value:function(O,B){switch(Ct(B||this.locale)(O)){case St.Zero:return"zero";case St.One:return"one";case St.Two:return"two";case St.Few:return"few";case St.Many:return"many";default:return"other"}}}]),le}(Nt); + */class ea{}ea.\u0275prov=(0,t.Yz7)({token:ea,providedIn:"root",factory:()=>new ki((0,t.LFG)(K),window)});class ki{constructor(x,ne){this.document=x,this.window=ne,this.offset=()=>[0,0]}setOffset(x){Array.isArray(x)?this.offset=()=>x:this.offset=x}getScrollPosition(){return this.supportsScrolling()?[this.window.pageXOffset,this.window.pageYOffset]:[0,0]}scrollToPosition(x){this.supportsScrolling()&&this.window.scrollTo(x[0],x[1])}scrollToAnchor(x){if(!this.supportsScrolling())return;const ne=function Io(k,x){const ne=k.getElementById(x)||k.getElementsByName(x)[0];if(ne)return ne;if("function"==typeof k.createTreeWalker&&k.body&&(k.body.createShadowRoot||k.body.attachShadow)){const Se=k.createTreeWalker(k.body,NodeFilter.SHOW_ELEMENT);let gt=Se.currentNode;for(;gt;){const Pt=gt.shadowRoot;if(Pt){const pn=Pt.getElementById(x)||Pt.querySelector(`[name="${x}"]`);if(pn)return pn}gt=Se.nextNode()}}return null}(this.document,x);ne&&(this.scrollToElement(ne),ne.focus())}setHistoryScrollRestoration(x){if(this.supportScrollRestoration()){const ne=this.window.history;ne&&ne.scrollRestoration&&(ne.scrollRestoration=x)}}scrollToElement(x){const ne=x.getBoundingClientRect(),Se=ne.left+this.window.pageXOffset,gt=ne.top+this.window.pageYOffset,Pt=this.offset();this.window.scrollTo(Se-Pt[0],gt-Pt[1])}supportScrollRestoration(){try{if(!this.supportsScrolling())return!1;const x=Eo(this.window.history)||Eo(Object.getPrototypeOf(this.window.history));return!(!x||!x.writable&&!x.set)}catch{return!1}}supportsScrolling(){try{return!!this.window&&!!this.window.scrollTo&&"pageXOffset"in this.window}catch{return!1}}}function Eo(k){return Object.getOwnPropertyDescriptor(k,"scrollRestoration")} /** * @license * Copyright Google LLC All Rights Reserved. @@ -397,91 +502,84 @@ var xe,fe,$e,se=/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function bt(z,J){J=encodeURIComponent(J);var Re,le=(0,L.Z)(z.split(";"));try{for(le.s();!(Re=le.n()).done;){var O=Re.value,B=O.indexOf("="),N=-1==B?[O,""]:[O.slice(0,B),O.slice(B+1)],ie=(0,C.Z)(N,2),oe=ie[0],Ve=ie[1];if(oe.trim()===J)return decodeURIComponent(Ve)}}catch(Tt){le.e(Tt)}finally{le.f()}return null} +class hr{} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */nt.\u0275fac=function(J){return new(J||nt)(E.LFG(E.soG))},nt.\u0275prov=E.Yz7({token:nt,factory:nt.\u0275fac}),nt.ctorParameters=function(){return[{type:String,decorators:[{type:E.tBr,args:[E.soG]}]}]};var Vt=function(){function z(J,le,Re,O){(0,F.Z)(this,z),this._iterableDiffers=J,this._keyValueDiffers=le,this._ngEl=Re,this._renderer=O,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}return(0,V.Z)(z,[{key:"klass",set:function(le){this._removeClasses(this._initialClasses),this._initialClasses="string"==typeof le?le.split(/\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}},{key:"ngClass",set:function(le){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass="string"==typeof le?le.split(/\s+/):le,this._rawClass&&((0,E.sIi)(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}},{key:"ngDoCheck",value:function(){if(this._iterableDiffer){var le=this._iterableDiffer.diff(this._rawClass);le&&this._applyIterableChanges(le)}else if(this._keyValueDiffer){var Re=this._keyValueDiffer.diff(this._rawClass);Re&&this._applyKeyValueChanges(Re)}}},{key:"_applyKeyValueChanges",value:function(le){var Re=this;le.forEachAddedItem(function(O){return Re._toggleClass(O.key,O.currentValue)}),le.forEachChangedItem(function(O){return Re._toggleClass(O.key,O.currentValue)}),le.forEachRemovedItem(function(O){O.previousValue&&Re._toggleClass(O.key,!1)})}},{key:"_applyIterableChanges",value:function(le){var Re=this;le.forEachAddedItem(function(O){if("string"!=typeof O.item)throw new Error("NgClass can only toggle CSS classes expressed as strings, got ".concat((0,E.AaK)(O.item)));Re._toggleClass(O.item,!0)}),le.forEachRemovedItem(function(O){return Re._toggleClass(O.item,!1)})}},{key:"_applyClasses",value:function(le){var Re=this;le&&(Array.isArray(le)||le instanceof Set?le.forEach(function(O){return Re._toggleClass(O,!0)}):Object.keys(le).forEach(function(O){return Re._toggleClass(O,!!le[O])}))}},{key:"_removeClasses",value:function(le){var Re=this;le&&(Array.isArray(le)||le instanceof Set?le.forEach(function(O){return Re._toggleClass(O,!1)}):Object.keys(le).forEach(function(O){return Re._toggleClass(O,!1)}))}},{key:"_toggleClass",value:function(le,Re){var O=this;(le=le.trim())&&le.split(/\s+/g).forEach(function(B){Re?O._renderer.addClass(O._ngEl.nativeElement,B):O._renderer.removeClass(O._ngEl.nativeElement,B)})}}]),z}();Vt.\u0275fac=function(J){return new(J||Vt)(E.Y36(E.ZZ4),E.Y36(E.aQg),E.Y36(E.SBq),E.Y36(E.Qsj))},Vt.\u0275dir=E.lG2({type:Vt,selectors:[["","ngClass",""]],inputs:{klass:["class","klass"],ngClass:"ngClass"}}),Vt.ctorParameters=function(){return[{type:E.ZZ4},{type:E.aQg},{type:E.SBq},{type:E.Qsj}]},Vt.propDecorators={klass:[{type:E.IIB,args:["class"]}],ngClass:[{type:E.IIB,args:["ngClass"]}]}; + */function ns(k){throw new t.vHH(2958,`Unexpected invocation of the ${k} in the prod mode. Please make sure that the prod mode is enabled for production builds.`)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var En=function(){function z(J){(0,F.Z)(this,z),this._viewContainerRef=J,this._componentRef=null,this._moduleRef=null}return(0,V.Z)(z,[{key:"ngOnChanges",value:function(le){if(this._viewContainerRef.clear(),this._componentRef=null,this.ngComponentOutlet){var Re=this.ngComponentOutletInjector||this._viewContainerRef.parentInjector;if(le.ngComponentOutletNgModuleFactory)if(this._moduleRef&&this._moduleRef.destroy(),this.ngComponentOutletNgModuleFactory){var O=Re.get(E.h0i);this._moduleRef=this.ngComponentOutletNgModuleFactory.create(O.injector)}else this._moduleRef=null;var N=(this._moduleRef?this._moduleRef.componentFactoryResolver:Re.get(E._Vd)).resolveComponentFactory(this.ngComponentOutlet);this._componentRef=this._viewContainerRef.createComponent(N,this._viewContainerRef.length,Re,this.ngComponentOutletContent)}}},{key:"ngOnDestroy",value:function(){this._moduleRef&&this._moduleRef.destroy()}}]),z}();En.\u0275fac=function(J){return new(J||En)(E.Y36(E.s_b))},En.\u0275dir=E.lG2({type:En,selectors:[["","ngComponentOutlet",""]],inputs:{ngComponentOutlet:"ngComponentOutlet",ngComponentOutletInjector:"ngComponentOutletInjector",ngComponentOutletContent:"ngComponentOutletContent",ngComponentOutletNgModuleFactory:"ngComponentOutletNgModuleFactory"},features:[E.TTD]}),En.ctorParameters=function(){return[{type:E.s_b}]},En.propDecorators={ngComponentOutlet:[{type:E.IIB}],ngComponentOutletInjector:[{type:E.IIB}],ngComponentOutletContent:[{type:E.IIB}],ngComponentOutletNgModuleFactory:[{type:E.IIB}]}; + */function Li(k,x=!0){return`The NgOptimizedImage directive ${x?`(activated on an element with the \`ngSrc="${k}"\`) `:""}has detected that`} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var kn=function(){function z(J,le,Re,O){(0,F.Z)(this,z),this.$implicit=J,this.ngForOf=le,this.index=Re,this.count=O}return(0,V.Z)(z,[{key:"first",get:function(){return 0===this.index}},{key:"last",get:function(){return this.index===this.count-1}},{key:"even",get:function(){return this.index%2==0}},{key:"odd",get:function(){return!this.even}}]),z}(),Qn=function(){function z(J,le,Re){(0,F.Z)(this,z),this._viewContainer=J,this._template=le,this._differs=Re,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}return(0,V.Z)(z,[{key:"ngForOf",set:function(le){this._ngForOf=le,this._ngForOfDirty=!0}},{key:"ngForTrackBy",get:function(){return this._trackByFn},set:function(le){this._trackByFn=le}},{key:"ngForTemplate",set:function(le){le&&(this._template=le)}},{key:"ngDoCheck",value:function(){if(this._ngForOfDirty){this._ngForOfDirty=!1;var le=this._ngForOf;if(!this._differ&&le)try{this._differ=this._differs.find(le).create(this.ngForTrackBy)}catch(O){throw new Error("Cannot find a differ supporting object '".concat(le,"' of type '").concat(function(z){return z.name||typeof z} + */function _i(k,x){return lo(k)?new URL(k):new URL(k,x.location.href)}function lo(k){return/^https?:\/\//.test(k)}function pa(k){return k.startsWith("/")?k.slice(1):k} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */(le),"'. NgFor only supports binding to Iterables such as Arrays."))}}if(this._differ){var Re=this._differ.diff(this._ngForOf);Re&&this._applyChanges(Re)}}},{key:"_applyChanges",value:function(le){var Re=this,O=[];le.forEachOperation(function(Ve,Tt,tn){if(null==Ve.previousIndex){var Un=Re._viewContainer.createEmbeddedView(Re._template,new kn(null,Re._ngForOf,-1,-1),null===tn?void 0:tn),jr=new pr(Ve,Un);O.push(jr)}else if(null==tn)Re._viewContainer.remove(null===Tt?void 0:Tt);else if(null!==Tt){var bi=Re._viewContainer.get(Tt);Re._viewContainer.move(bi,tn);var hi=new pr(Ve,bi);O.push(hi)}});for(var B=0;B{this.blocklist.add(function Za(k){return lo(k)?new URL(k).hostname:k}(ne))})}assertPreconnect(x,ne){if(!this.window)return;const Se=_i(x,this.window);this.blocklist.has(Se.hostname)||this.alreadySeen.has(Se.origin)||(this.alreadySeen.add(Se.origin),this.preconnectLinks||(this.preconnectLinks=this.queryPreconnectLinks()),this.preconnectLinks.has(Se.origin)||console.warn((0,t.kuF)(2956,`${Li(ne)} there is no preconnect tag present for this image. Preconnecting to the origin(s) that serve priority images ensures that these images are delivered as soon as possible. To fix this, please add the following element into the of the document:\n `)))}queryPreconnectLinks(){const x=new Set,Se=Array.from(this.document.querySelectorAll("link[rel=preconnect]"));for(let gt of Se){const Pt=_i(gt.href,this.window);x.add(Pt.origin)}return x}ngOnDestroy(){this.preconnectLinks?.clear(),this.alreadySeen.clear()}}function mo(k,x){for(let ne of k)Array.isArray(ne)?mo(ne,x):x(ne)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var qn=function(){function z(J,le){(0,F.Z)(this,z),this._viewContainerRef=J,this._templateRef=le,this._created=!1}return(0,V.Z)(z,[{key:"create",value:function(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}},{key:"destroy",value:function(){this._created=!1,this._viewContainerRef.clear()}},{key:"enforceState",value:function(le){le&&!this._created?this.create():!le&&this._created&&this.destroy()}}]),z}(),lr=function(){function z(){(0,F.Z)(this,z),this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}return(0,V.Z)(z,[{key:"ngSwitch",set:function(le){this._ngSwitch=le,0===this._caseCount&&this._updateDefaultCases(!0)}},{key:"_addCase",value:function(){return this._caseCount++}},{key:"_addDefault",value:function(le){this._defaultViews||(this._defaultViews=[]),this._defaultViews.push(le)}},{key:"_matchCase",value:function(le){var Re=le==this._ngSwitch;return this._lastCasesMatched=this._lastCasesMatched||Re,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),Re}},{key:"_updateDefaultCases",value:function(le){if(this._defaultViews&&le!==this._defaultUsed){this._defaultUsed=le;for(var Re=0;Rek.src,zi=new t.OlP("ImageLoader",{providedIn:"root",factory:()=>uo});function Ea(k,x){return function(Se,gt={ensurePreconnect:!0}){return function ui(k){if("string"!=typeof k||""===k.trim())return!1;try{return new URL(k),!0}catch{return!1}}(Se)||function Ia(k,x){throw new t.vHH(2959,!1)}(),Se=function ms(k){return k.endsWith("/")?k.slice(0,-1):k}(Se),[{provide:zi,useValue:On=>(lo(On.src)&&function As(k,x){throw new t.vHH(2959,!1)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var ei=function(){function z(J){(0,F.Z)(this,z),this._localization=J,this._caseViews={}}return(0,V.Z)(z,[{key:"ngPlural",set:function(le){this._switchValue=le,this._updateView()}},{key:"addCase",value:function(le,Re){this._caseViews[le]=Re}},{key:"_updateView",value:function(){this._clearViews();var le=Object.keys(this._caseViews),Re=Mt(this._switchValue,le,this._localization);this._activateView(this._caseViews[Re])}},{key:"_clearViews",value:function(){this._activeView&&this._activeView.destroy()}},{key:"_activateView",value:function(le){le&&(this._activeView=le,this._activeView.create())}}]),z}();ei.\u0275fac=function(J){return new(J||ei)(E.Y36(Nt))},ei.\u0275dir=E.lG2({type:ei,selectors:[["","ngPlural",""]],inputs:{ngPlural:"ngPlural"}}),ei.ctorParameters=function(){return[{type:Nt}]},ei.propDecorators={ngPlural:[{type:E.IIB}]};var Br=(0,V.Z)(function z(J,le,Re,O){(0,F.Z)(this,z),this.value=J;var B=!isNaN(Number(J));O.addCase(B?"=".concat(J):J,new qn(Re,le))});Br.\u0275fac=function(J){return new(J||Br)(E.$8M("ngPluralCase"),E.Y36(E.Rgc),E.Y36(E.s_b),E.Y36(ei,1))},Br.\u0275dir=E.lG2({type:Br,selectors:[["","ngPluralCase",""]]}),Br.ctorParameters=function(){return[{type:String,decorators:[{type:E.ahi,args:["ngPluralCase"]}]},{type:E.Rgc},{type:E.s_b},{type:ei,decorators:[{type:E.AA_}]}]}; + */(0,On.src),k(Se,{...On,src:pa(On.src)}))}]}}Ea(function Rr(k,x){let ne="format=auto";return x.width&&(ne+=`,width=${x.width}`),`${k}/cdn-cgi/image/${ne}/${x.src}` /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var ti=function(){function z(J,le,Re){(0,F.Z)(this,z),this._ngEl=J,this._differs=le,this._renderer=Re,this._ngStyle=null,this._differ=null}return(0,V.Z)(z,[{key:"ngStyle",set:function(le){this._ngStyle=le,!this._differ&&le&&(this._differ=this._differs.find(le).create())}},{key:"ngDoCheck",value:function(){if(this._differ){var le=this._differ.diff(this._ngStyle);le&&this._applyChanges(le)}}},{key:"_setStyle",value:function(le,Re){var O=le.split("."),B=(0,C.Z)(O,2),N=B[0],ie=B[1];null!=(Re=null!=Re&&ie?"".concat(Re).concat(ie):Re)?this._renderer.setStyle(this._ngEl.nativeElement,N,Re):this._renderer.removeStyle(this._ngEl.nativeElement,N)}},{key:"_applyChanges",value:function(le){var Re=this;le.forEachRemovedItem(function(O){return Re._setStyle(O.key,null)}),le.forEachAddedItem(function(O){return Re._setStyle(O.key,O.currentValue)}),le.forEachChangedItem(function(O){return Re._setStyle(O.key,O.currentValue)})}}]),z}();ti.\u0275fac=function(J){return new(J||ti)(E.Y36(E.SBq),E.Y36(E.aQg),E.Y36(E.Qsj))},ti.\u0275dir=E.lG2({type:ti,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"}}),ti.ctorParameters=function(){return[{type:E.SBq},{type:E.aQg},{type:E.Qsj}]},ti.propDecorators={ngStyle:[{type:E.IIB,args:["ngStyle"]}]}; + */});Ea(function An(k,x){let ne="f_auto,q_auto";return x.width&&(ne+=`,w_${x.width}`),`${k}/image/upload/${ne}/${x.src}` /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var Pi=function(){function z(J){(0,F.Z)(this,z),this._viewContainerRef=J,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null}return(0,V.Z)(z,[{key:"ngOnChanges",value:function(le){if(le.ngTemplateOutlet){var Re=this._viewContainerRef;this._viewRef&&Re.remove(Re.indexOf(this._viewRef)),this._viewRef=this.ngTemplateOutlet?Re.createEmbeddedView(this.ngTemplateOutlet,this.ngTemplateOutletContext):null}else this._viewRef&&le.ngTemplateOutletContext&&this.ngTemplateOutletContext&&(this._viewRef.context=this.ngTemplateOutletContext)}}]),z}();Pi.\u0275fac=function(J){return new(J||Pi)(E.Y36(E.s_b))},Pi.\u0275dir=E.lG2({type:Pi,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet"},features:[E.TTD]}),Pi.ctorParameters=function(){return[{type:E.s_b}]},Pi.propDecorators={ngTemplateOutletContext:[{type:E.IIB}],ngTemplateOutlet:[{type:E.IIB}]}; + */});Ea(function oe(k,x){let ne="tr:q-auto";return x.width&&(ne+=`,w-${x.width}`),`${k}/${ne}/${x.src}` /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -function Ui(z,J){return Error("InvalidPipeArgument: '".concat(J,"' for pipe '").concat((0,E.AaK)(z),"'"))} + */});Ea(function X(k,x){const ne=new URL(`${k}/${x.src}`);return ne.searchParams.set("auto","format"),x.width&&ne.searchParams.set("w",x.width.toString()),ne.href /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var ni=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"createSubscription",value:function(le,Re){return le.subscribe({next:Re,error:function(B){throw B}})}},{key:"dispose",value:function(le){le.unsubscribe()}},{key:"onDestroy",value:function(le){le.unsubscribe()}}]),z}(),No=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"createSubscription",value:function(le,Re){return le.then(Re,function(O){throw O})}},{key:"dispose",value:function(le){}},{key:"onDestroy",value:function(le){}}]),z}(),In=new No,Wi=new ni,Ca=function(){function z(J){(0,F.Z)(this,z),this._ref=J,this._latestValue=null,this._subscription=null,this._obj=null,this._strategy=null}return(0,V.Z)(z,[{key:"ngOnDestroy",value:function(){this._subscription&&this._dispose()}},{key:"transform",value:function(le){return this._obj?le!==this._obj?(this._dispose(),this.transform(le)):this._latestValue:(le&&this._subscribe(le),this._latestValue)}},{key:"_subscribe",value:function(le){var Re=this;this._obj=le,this._strategy=this._selectStrategy(le),this._subscription=this._strategy.createSubscription(le,function(O){return Re._updateLatestValue(le,O)})}},{key:"_selectStrategy",value:function(le){if((0,E.QGY)(le))return In;if((0,E.F4k)(le))return Wi;throw Ui(z,le)}},{key:"_dispose",value:function(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}},{key:"_updateLatestValue",value:function(le,Re){le===this._obj&&(this._latestValue=Re,this._ref.markForCheck())}}]),z}();Ca.\u0275fac=function(J){return new(J||Ca)(E.Y36(E.sBO,16))},Ca.\u0275pipe=E.Yjl({name:"async",type:Ca,pure:!1}),Ca.ctorParameters=function(){return[{type:E.sBO}]}; + */});class it{constructor(){this.images=new Map,this.alreadyWarned=new Set,this.window=null,this.observer=null,ns("LCP checker");const x=(0,t.f3M)(K).defaultView;typeof x<"u"&&typeof PerformanceObserver<"u"&&(this.window=x,this.observer=this.initPerformanceObserver())}initPerformanceObserver(){const x=new PerformanceObserver(ne=>{const Se=ne.getEntries();if(0===Se.length)return;const Pt=Se[Se.length-1].element?.src??"";Pt.startsWith("data:")||Pt.startsWith("blob:")||this.images.get(Pt)&&!this.alreadyWarned.has(Pt)&&(this.alreadyWarned.add(Pt),function $t(k){const x=Li(k);console.warn((0,t.kuF)(2955,`${x} this image is the Largest Contentful Paint (LCP) element but was not marked "priority". This image should be marked "priority" in order to prioritize its loading. To fix this, add the "priority" attribute.`))} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var rr=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"transform",value:function(le){if(null==le)return null;if("string"!=typeof le)throw Ui(z,le);return le.toLowerCase()}}]),z}();rr.\u0275fac=function(J){return new(J||rr)},rr.\u0275pipe=E.Yjl({name:"lowercase",type:rr,pure:!0});var ea=/(?:[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,hr=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"transform",value:function(le){if(null==le)return null;if("string"!=typeof le)throw Ui(z,le);return le.replace(ea,function(Re){return Re[0].toUpperCase()+Re.substr(1).toLowerCase()})}}]),z}();hr.\u0275fac=function(J){return new(J||hr)},hr.\u0275pipe=E.Yjl({name:"titlecase",type:hr,pure:!0});var ba=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"transform",value:function(le){if(null==le)return null;if("string"!=typeof le)throw Ui(z,le);return le.toUpperCase()}}]),z}();ba.\u0275fac=function(J){return new(J||ba)},ba.\u0275pipe=E.Yjl({name:"uppercase",type:ba,pure:!0}); + */(Pt))});return x.observe({type:"largest-contentful-paint",buffered:!0}),x}registerImage(x,ne){!this.observer||this.images.set(_i(x,this.window).href,ne)}unregisterImage(x){!this.observer||this.images.delete(_i(x,this.window).href)}ngOnDestroy(){!this.observer||(this.observer.disconnect(),this.images.clear(),this.alreadyWarned.clear())}}it.\u0275fac=function(x){return new(x||it)},it.\u0275prov=t.Yz7({token:it,factory:it.\u0275fac,providedIn:"root"});const Yr=/^((\s*\d+w\s*(,|$)){1,})$/;class ga{constructor(){this.imageLoader=(0,t.f3M)(zi),this.renderer=(0,t.f3M)(t.Qsj),this.imgElement=(0,t.f3M)(t.SBq).nativeElement,this.injector=(0,t.f3M)(t.zs3),this.lcpObserver=null,this._renderedSrc=null,this._priority=!1}set rawSrc(x){}set width(x){this._width=ta(x)}get width(){return this._width}set height(x){this._height=ta(x)}get height(){return this._height}set priority(x){this._priority=function to(k){return null!=k&&"false"!=`${k}`}(x)}get priority(){return this._priority}ngOnInit(){this.setHostAttributes()}setHostAttributes(){this.setHostAttribute("width",this.width.toString()),this.setHostAttribute("height",this.height.toString()),this.setHostAttribute("loading",this.getLoadingBehavior()),this.setHostAttribute("fetchpriority",this.getFetchPriority()),this.setHostAttribute("src",this.getRewrittenSrc()),this.ngSrcset&&this.setHostAttribute("srcset",this.getRewrittenSrcset())}ngOnChanges(x){}getLoadingBehavior(){return this.priority||void 0===this.loading?this.priority?"eager":"lazy":this.loading}getFetchPriority(){return this.priority?"high":"auto"}getRewrittenSrc(){if(!this._renderedSrc){const x={src:this.ngSrc};this._renderedSrc=this.imageLoader(x)}return this._renderedSrc}getRewrittenSrcset(){const x=Yr.test(this.ngSrcset);return this.ngSrcset.split(",").filter(Se=>""!==Se).map(Se=>{Se=Se.trim();const gt=x?parseFloat(Se):parseFloat(Se)*this.width;return`${this.imageLoader({src:this.ngSrc,width:gt})} ${Se}`}).join(", ")}ngOnDestroy(){}setHostAttribute(x,ne){this.renderer.setAttribute(this.imgElement,x,ne)}}function ta(k){return"string"==typeof k?parseInt(k,10):k}ga.\u0275fac=function(x){return new(x||ga)},ga.\u0275dir=t.lG2({type:ga,selectors:[["img","ngSrc",""],["img","rawSrc",""]],inputs:{rawSrc:"rawSrc",ngSrc:"ngSrc",ngSrcset:"ngSrcset",width:"width",height:"height",loading:"loading",priority:"priority",src:"src",srcset:"srcset"},standalone:!0,features:[t.TTD]})} /** * @license * Copyright Google LLC All Rights Reserved. @@ -489,7 +587,6 @@ var rr=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"transform" * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var pi=function(){function z(J){(0,F.Z)(this,z),this.locale=J}return(0,V.Z)(z,[{key:"transform",value:function(le){var Re=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"mediumDate",O=arguments.length>2?arguments[2]:void 0,B=arguments.length>3?arguments[3]:void 0;if(null==le||""===le||le!=le)return null;try{return ht(le,Re,B||this.locale,O)}catch(N){throw Ui(z,N.message)}}}]),z}();pi.\u0275fac=function(J){return new(J||pi)(E.Y36(E.soG,16))},pi.\u0275pipe=E.Yjl({name:"date",type:pi,pure:!0}),pi.ctorParameters=function(){return[{type:String,decorators:[{type:E.tBr,args:[E.soG]}]}]}; /** * @license * Copyright Google LLC All Rights Reserved. @@ -497,7 +594,6 @@ var pi=function(){function z(J){(0,F.Z)(this,z),this.locale=J}return(0,V.Z)(z,[{ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var pa=/#/g,qa=function(){function z(J){(0,F.Z)(this,z),this._localization=J}return(0,V.Z)(z,[{key:"transform",value:function(le,Re,O){if(null==le)return"";if("object"!=typeof Re||null===Re)throw Ui(z,Re);return Re[Mt(le,Object.keys(Re),this._localization,O)].replace(pa,le.toString())}}]),z}();qa.\u0275fac=function(J){return new(J||qa)(E.Y36(Nt,16))},qa.\u0275pipe=E.Yjl({name:"i18nPlural",type:qa,pure:!0}),qa.ctorParameters=function(){return[{type:Nt}]}; /** * @license * Copyright Google LLC All Rights Reserved. @@ -505,15 +601,32 @@ var pa=/#/g,qa=function(){function z(J){(0,F.Z)(this,z),this._localization=J}ret * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var ta=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"transform",value:function(le,Re){if(null==le)return"";if("object"!=typeof Re||"string"!=typeof le)throw Ui(z,Re);return Re.hasOwnProperty(le)?Re[le]:Re.hasOwnProperty("other")?Re.other:""}}]),z}();ta.\u0275fac=function(J){return new(J||ta)},ta.\u0275pipe=E.Yjl({name:"i18nSelect",type:ta,pure:!0}); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license + */,9239:(vt,_e,w)=>{"use strict";w.d(_e,{eN:()=>St,JF:()=>Nt});var t=w(4666),C=w(8008),F=w(4139),U=w(5901),N=w(522);var K=w(14);class le{constructor(q,re){this.predicate=q,this.thisArg=re}call(q,re){return re.subscribe(new R(q,this.predicate,this.thisArg))}}class R extends K.L{constructor(q,re,je){super(q),this.predicate=re,this.thisArg=je,this.count=0}_next(q){let re;try{re=this.predicate.call(this.thisArg,q,this.count++)}catch(je){return void this.destination.error(je)}re&&this.destination.next(q)}}var ae=w(6942); +/** + * @license Angular v14.2.12 + * (c) 2010-2022 Google LLC. https://angular.io/ + * License: MIT */ -var Fi=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"transform",value:function(le){return JSON.stringify(le,null,2)}}]),z}(); +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */class be{}class Be{} +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */class Ne{constructor(q){this.normalizedNames=new Map,this.lazyUpdate=null,q?this.lazyInit="string"==typeof q?()=>{this.headers=new Map,q.split("\n").forEach(re=>{const je=re.indexOf(":");if(je>0){const ut=re.slice(0,je),nn=ut.toLowerCase(),Yt=re.slice(je+1).trim();this.maybeSetNormalizedName(ut,nn),this.headers.has(nn)?this.headers.get(nn).push(Yt):this.headers.set(nn,[Yt])}})}:()=>{this.headers=new Map,Object.keys(q).forEach(re=>{let je=q[re];const ut=re.toLowerCase();"string"==typeof je&&(je=[je]),je.length>0&&(this.headers.set(ut,je),this.maybeSetNormalizedName(re,ut))})}:this.headers=new Map}has(q){return this.init(),this.headers.has(q.toLowerCase())}get(q){this.init();const re=this.headers.get(q.toLowerCase());return re&&re.length>0?re[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(q){return this.init(),this.headers.get(q.toLowerCase())||null}append(q,re){return this.clone({name:q,value:re,op:"a"})}set(q,re){return this.clone({name:q,value:re,op:"s"})}delete(q,re){return this.clone({name:q,value:re,op:"d"})}maybeSetNormalizedName(q,re){this.normalizedNames.has(re)||this.normalizedNames.set(re,q)}init(){this.lazyInit&&(this.lazyInit instanceof Ne?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(q=>this.applyUpdate(q)),this.lazyUpdate=null))}copyFrom(q){q.init(),Array.from(q.headers.keys()).forEach(re=>{this.headers.set(re,q.headers.get(re)),this.normalizedNames.set(re,q.normalizedNames.get(re))})}clone(q){const re=new Ne;return re.lazyInit=this.lazyInit&&this.lazyInit instanceof Ne?this.lazyInit:this,re.lazyUpdate=(this.lazyUpdate||[]).concat([q]),re}applyUpdate(q){const re=q.name.toLowerCase();switch(q.op){case"a":case"s":let je=q.value;if("string"==typeof je&&(je=[je]),0===je.length)return;this.maybeSetNormalizedName(q.name,re);const ut=("a"===q.op?this.headers.get(re):void 0)||[];ut.push(...je),this.headers.set(re,ut);break;case"d":const nn=q.value;if(nn){let Yt=this.headers.get(re);if(!Yt)return;Yt=Yt.filter(an=>-1===nn.indexOf(an)),0===Yt.length?(this.headers.delete(re),this.normalizedNames.delete(re)):this.headers.set(re,Yt)}else this.headers.delete(re),this.normalizedNames.delete(re)}}forEach(q){this.init(),Array.from(this.normalizedNames.keys()).forEach(re=>q(this.normalizedNames.get(re),this.headers.get(re)))}} /** * @license * Copyright Google LLC All Rights Reserved. @@ -521,21 +634,35 @@ var Fi=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"transform" * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function Bi(z,J){return{key:z,value:J}}Fi.\u0275fac=function(J){return new(J||Fi)},Fi.\u0275pipe=E.Yjl({name:"json",type:Fi,pure:!1});var Bn=function(){function z(J){(0,F.Z)(this,z),this.differs=J,this.keyValues=[],this.compareFn=ja}return(0,V.Z)(z,[{key:"transform",value:function(le){var Re=this,O=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ja;if(!le||!(le instanceof Map)&&"object"!=typeof le)return null;this.differ||(this.differ=this.differs.find(le).create());var B=this.differ.diff(le),N=O!==this.compareFn;return B&&(this.keyValues=[],B.forEachItem(function(ie){Re.keyValues.push(Bi(ie.key,ie.currentValue))})),(B||N)&&(this.keyValues.sort(O),this.compareFn=O),this.keyValues}}]),z}();function ja(z,J){var le=z.key,Re=J.key;if(le===Re)return 0;if(void 0===le)return 1;if(void 0===Re)return-1;if(null===le)return 1;if(null===Re)return-1;if("string"==typeof le&&"string"==typeof Re)return lepe[re]??q)}function et(we){return`${we}`}class $e{constructor(q={}){if(this.updates=null,this.cloneFrom=null,this.encoder=q.encoder||new Re,q.fromString){if(q.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=function fe(we,q){const re=new Map;return we.length>0&&we.replace(/^\?/,"").split("&").forEach(ut=>{const nn=ut.indexOf("="),[Yt,an]=-1==nn?[q.decodeKey(ut),""]:[q.decodeKey(ut.slice(0,nn)),q.decodeValue(ut.slice(nn+1))],zt=re.get(Yt)||[];zt.push(an),re.set(Yt,zt)}),re}(q.fromString,this.encoder)}else q.fromObject?(this.map=new Map,Object.keys(q.fromObject).forEach(re=>{const je=q.fromObject[re],ut=Array.isArray(je)?je.map(et):[et(je)];this.map.set(re,ut)})):this.map=null}has(q){return this.init(),this.map.has(q)}get(q){this.init();const re=this.map.get(q);return re?re[0]:null}getAll(q){return this.init(),this.map.get(q)||null}keys(){return this.init(),Array.from(this.map.keys())}append(q,re){return this.clone({param:q,value:re,op:"a"})}appendAll(q){const re=[];return Object.keys(q).forEach(je=>{const ut=q[je];Array.isArray(ut)?ut.forEach(nn=>{re.push({param:je,value:nn,op:"a"})}):re.push({param:je,value:ut,op:"a"})}),this.clone(re)}set(q,re){return this.clone({param:q,value:re,op:"s"})}delete(q,re){return this.clone({param:q,value:re,op:"d"})}toString(){return this.init(),this.keys().map(q=>{const re=this.encoder.encodeKey(q);return this.map.get(q).map(je=>re+"="+this.encoder.encodeValue(je)).join("&")}).filter(q=>""!==q).join("&")}clone(q){const re=new $e({encoder:this.encoder});return re.cloneFrom=this.cloneFrom||this,re.updates=(this.updates||[]).concat(q),re}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(q=>this.map.set(q,this.cloneFrom.map.get(q))),this.updates.forEach(q=>{switch(q.op){case"a":case"s":const re=("a"===q.op?this.map.get(q.param):void 0)||[];re.push(et(q.value)),this.map.set(q.param,re);break;case"d":if(void 0===q.value){this.map.delete(q.param);break}{let je=this.map.get(q.param)||[];const ut=je.indexOf(et(q.value));-1!==ut&&je.splice(ut,1),je.length>0?this.map.set(q.param,je):this.map.delete(q.param)}}}),this.cloneFrom=this.updates=null)}} +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */class Ie{constructor(){this.map=new Map}set(q,re){return this.map.set(q,re),this}get(q){return this.map.has(q)||this.map.set(q,q.defaultValue()),this.map.get(q)}delete(q){return this.map.delete(q),this}has(q){return this.map.has(q)}keys(){return this.map.keys()}} +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */function T(we){return typeof ArrayBuffer<"u"&&we instanceof ArrayBuffer}function Z(we){return typeof Blob<"u"&&we instanceof Blob}function Ce(we){return typeof FormData<"u"&&we instanceof FormData}class Qe{constructor(q,re,je,ut){let nn;if(this.url=re,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=q.toUpperCase(),function He(we){switch(we){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||ut?(this.body=void 0!==je?je:null,nn=ut):nn=je,nn&&(this.reportProgress=!!nn.reportProgress,this.withCredentials=!!nn.withCredentials,nn.responseType&&(this.responseType=nn.responseType),nn.headers&&(this.headers=nn.headers),nn.context&&(this.context=nn.context),nn.params&&(this.params=nn.params)),this.headers||(this.headers=new Ne),this.context||(this.context=new Ie),this.params){const Yt=this.params.toString();if(0===Yt.length)this.urlWithParams=re;else{const an=re.indexOf("?"),zt=-1===an?"?":an$n.set(vn,q.setHeaders[vn]),zt)),q.setParams&&(Pn=Object.keys(q.setParams).reduce(($n,vn)=>$n.set(vn,q.setParams[vn]),Pn)),new Qe(re,je,nn,{params:Pn,headers:zt,context:Dn,reportProgress:an,responseType:ut,withCredentials:Yt})}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */Bn.\u0275fac=function(J){return new(J||Bn)(E.Y36(E.aQg,16))},Bn.\u0275pipe=E.Yjl({name:"keyvalue",type:Bn,pure:!1}),Bn.ctorParameters=function(){return[{type:E.aQg}]};var ki=function(){function z(J){(0,F.Z)(this,z),this._locale=J}return(0,V.Z)(z,[{key:"transform",value:function(le,Re,O){if(!ri(le))return null;O=O||this._locale;try{return function(z,J,le){return Yn(z,Ci(rn(J,at.Decimal),je(J,_t.MinusSign)),J,_t.Group,_t.Decimal,le)}(_o(le),O,Re)}catch(N){throw Ui(z,N.message)}}}]),z}();ki.\u0275fac=function(J){return new(J||ki)(E.Y36(E.soG,16))},ki.\u0275pipe=E.Yjl({name:"number",type:ki,pure:!0}),ki.ctorParameters=function(){return[{type:String,decorators:[{type:E.tBr,args:[E.soG]}]}]};var Hn=function(){function z(J){(0,F.Z)(this,z),this._locale=J}return(0,V.Z)(z,[{key:"transform",value:function(le,Re,O){if(!ri(le))return null;O=O||this._locale;try{return function(z,J,le){return Yn(z,Ci(rn(J,at.Percent),je(J,_t.MinusSign)),J,_t.Group,_t.Decimal,le,!0).replace(new RegExp("%","g"),je(J,_t.PercentSign))}(_o(le),O,Re)}catch(N){throw Ui(z,N.message)}}}]),z}();Hn.\u0275fac=function(J){return new(J||Hn)(E.Y36(E.soG,16))},Hn.\u0275pipe=E.Yjl({name:"percent",type:Hn,pure:!0}),Hn.ctorParameters=function(){return[{type:String,decorators:[{type:E.tBr,args:[E.soG]}]}]};var qi=function(){function z(J){var le=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"USD";(0,F.Z)(this,z),this._locale=J,this._defaultCurrencyCode=le}return(0,V.Z)(z,[{key:"transform",value:function(le){var Re=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this._defaultCurrencyCode,O=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"symbol",B=arguments.length>3?arguments[3]:void 0,N=arguments.length>4?arguments[4]:void 0;if(!ri(le))return null;N=N||this._locale,"boolean"==typeof O&&(O=O?"symbol":"code");var ie=Re||this._defaultCurrencyCode;"code"!==O&&(ie="symbol"===O||"symbol-narrow"===O?vn(ie,"symbol"===O?"wide":"narrow",N):O);try{var oe=_o(le);return qr(oe,N,ie,Re,B)}catch(Ve){throw Ui(z,Ve.message)}}}]),z}();function ri(z){return!(null==z||""===z||z!=z)}function _o(z){if("string"==typeof z&&!isNaN(Number(z)-parseFloat(z)))return Number(z);if("number"!=typeof z)throw new Error("".concat(z," is not a number"));return z} + */var st,we;(we=st||(st={}))[we.Sent=0]="Sent",we[we.UploadProgress=1]="UploadProgress",we[we.ResponseHeader=2]="ResponseHeader",we[we.DownloadProgress=3]="DownloadProgress",we[we.Response=4]="Response",we[we.User=5]="User";class bt{constructor(q,re=200,je="OK"){this.headers=q.headers||new Ne,this.status=void 0!==q.status?q.status:re,this.statusText=q.statusText||je,this.url=q.url||null,this.ok=this.status>=200&&this.status<300}}class Tt extends bt{constructor(q={}){super(q),this.type=st.ResponseHeader}clone(q={}){return new Tt({headers:q.headers||this.headers,status:void 0!==q.status?q.status:this.status,statusText:q.statusText||this.statusText,url:q.url||this.url||void 0})}}class wt extends bt{constructor(q={}){super(q),this.type=st.Response,this.body=void 0!==q.body?q.body:null}clone(q={}){return new wt({body:void 0!==q.body?q.body:this.body,headers:q.headers||this.headers,status:void 0!==q.status?q.status:this.status,statusText:q.statusText||this.statusText,url:q.url||this.url||void 0})}}class Dt extends bt{constructor(q){super(q,0,"Unknown Error"),this.name="HttpErrorResponse",this.ok=!1,this.status>=200&&this.status<300?this.message=`Http failure during parsing for ${q.url||"(unknown url)"}`:this.message=`Http failure response for ${q.url||"(unknown url)"}: ${q.status} ${q.statusText}`,this.error=q.error||null}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */qi.\u0275fac=function(J){return new(J||qi)(E.Y36(E.soG,16),E.Y36(E.EJc,16))},qi.\u0275pipe=E.Yjl({name:"currency",type:qi,pure:!0}),qi.ctorParameters=function(){return[{type:String,decorators:[{type:E.tBr,args:[E.soG]}]},{type:String,decorators:[{type:E.tBr,args:[E.EJc]}]}]};var ii=function(){function z(){(0,F.Z)(this,z)}return(0,V.Z)(z,[{key:"transform",value:function(le,Re,O){if(null==le)return null;if(!this.supports(le))throw Ui(z,le);return le.slice(Re,O)}},{key:"supports",value:function(le){return"string"==typeof le||Array.isArray(le)}}]),z}();ii.\u0275fac=function(J){return new(J||ii)},ii.\u0275pipe=E.Yjl({name:"slice",type:ii,pure:!1}); + */function Mt(we,q){return{body:q,headers:we.headers,context:we.context,observe:we.observe,params:we.params,reportProgress:we.reportProgress,responseType:we.responseType,withCredentials:we.withCredentials}}class St{constructor(q){this.handler=q}request(q,re,je={}){let ut;if(q instanceof Qe)ut=q;else{let an,zt;an=je.headers instanceof Ne?je.headers:new Ne(je.headers),je.params&&(zt=je.params instanceof $e?je.params:new $e({fromObject:je.params})),ut=new Qe(q,re,void 0!==je.body?je.body:null,{headers:an,context:je.context,params:zt,reportProgress:je.reportProgress,responseType:je.responseType||"json",withCredentials:je.withCredentials})}const nn=(0,F.of)(ut).pipe(function G(we,q){return(0,N.zg)(we,q,1)}(an=>this.handler.handle(an)));if(q instanceof Qe||"events"===je.observe)return nn;const Yt=nn.pipe(function $(we,q){return function(je){return je.lift(new le(we,q))}}(an=>an instanceof wt));switch(je.observe||"body"){case"body":switch(ut.responseType){case"arraybuffer":return Yt.pipe((0,ae.U)(an=>{if(null!==an.body&&!(an.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return an.body}));case"blob":return Yt.pipe((0,ae.U)(an=>{if(null!==an.body&&!(an.body instanceof Blob))throw new Error("Response is not a Blob.");return an.body}));case"text":return Yt.pipe((0,ae.U)(an=>{if(null!==an.body&&"string"!=typeof an.body)throw new Error("Response is not a string.");return an.body}));default:return Yt.pipe((0,ae.U)(an=>an.body))}case"response":return Yt;default:throw new Error(`Unreachable: unhandled observe type ${je.observe}}`)}}delete(q,re={}){return this.request("DELETE",q,re)}get(q,re={}){return this.request("GET",q,re)}head(q,re={}){return this.request("HEAD",q,re)}jsonp(q,re){return this.request("JSONP",q,{params:(new $e).append(re,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(q,re={}){return this.request("OPTIONS",q,re)}patch(q,re,je={}){return this.request("PATCH",q,Mt(je,re))}post(q,re,je={}){return this.request("POST",q,Mt(je,re))}put(q,re,je={}){return this.request("PUT",q,Mt(je,re))}}St.\u0275fac=function(q){return new(q||St)(C.LFG(be))},St.\u0275prov=C.Yz7({token:St,factory:St.\u0275fac}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -543,14 +670,15 @@ function Bi(z,J){return{key:z,value:J}}Fi.\u0275fac=function(J){return new(J||Fi * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var la=(0,V.Z)(function z(){(0,F.Z)(this,z)}); +class Gt{constructor(q,re){this.next=q,this.interceptor=re}handle(q){return this.interceptor.intercept(q,this.next)}}const on=new C.OlP("HTTP_INTERCEPTORS");class Bt{intercept(q,re){return re.handle(q)}}Bt.\u0275fac=function(q){return new(q||Bt)},Bt.\u0275prov=C.Yz7({token:Bt,factory:Bt.\u0275fac}); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */la.\u0275fac=function(J){return new(J||la)},la.\u0275mod=E.oAB({type:la}),la.\u0275inj=E.cJS({providers:[{provide:Nt,useClass:nt}]}); + */ +let Rt,Qt=0;class Xe{}class lt{constructor(q,re){this.callbackMap=q,this.document=re,this.resolvedPromise=Promise.resolve()}nextCallback(){return"ng_jsonp_callback_"+Qt++}handle(q){if("JSONP"!==q.method)throw new Error("JSONP requests must use JSONP request method.");if("json"!==q.responseType)throw new Error("JSONP requests must use Json response type.");if(q.headers.keys().length>0)throw new Error("JSONP requests do not support headers.");return new U.y(re=>{const je=this.nextCallback(),ut=q.urlWithParams.replace(/=JSONP_CALLBACK(&|$)/,`=${je}$1`),nn=this.document.createElement("script");nn.src=ut;let Yt=null,an=!1;this.callbackMap[je]=$n=>{delete this.callbackMap[je],Yt=$n,an=!0};const zt=()=>{nn.parentNode&&nn.parentNode.removeChild(nn),delete this.callbackMap[je]};return nn.addEventListener("load",$n=>{this.resolvedPromise.then(()=>{zt(),an?(re.next(new wt({body:Yt,status:200,statusText:"OK",url:ut})),re.complete()):re.error(new Dt({url:ut,status:0,statusText:"JSONP Error",error:new Error("JSONP injected script did not invoke callback.")}))})}),nn.addEventListener("error",$n=>{zt(),re.error(new Dt({error:$n,status:0,statusText:"JSONP Error",url:ut}))}),this.document.body.appendChild(nn),re.next({type:st.Sent}),()=>{an||this.removeListeners(nn),zt()}})}removeListeners(q){Rt||(Rt=this.document.implementation.createHTMLDocument()),Rt.adoptNode(q)}}lt.\u0275fac=function(q){return new(q||lt)(C.LFG(Xe),C.LFG(t.K0))},lt.\u0275prov=C.Yz7({token:lt,factory:lt.\u0275fac});class Et{constructor(q){this.jsonp=q}intercept(q,re){return"JSONP"===q.method?this.jsonp.handle(q):re.handle(q)}}Et.\u0275fac=function(q){return new(q||Et)(C.LFG(lt))},Et.\u0275prov=C.Yz7({token:Et,factory:Et.\u0275fac}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -558,7 +686,7 @@ var la=(0,V.Z)(function z(){(0,F.Z)(this,z)}); * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Za="browser"; +const at=/^\)\]\}',?\n/;class Xt{constructor(q){this.xhrFactory=q}handle(q){if("JSONP"===q.method)throw new Error("Attempted to construct Jsonp request without HttpClientJsonpModule installed.");return new U.y(re=>{const je=this.xhrFactory.build();if(je.open(q.method,q.urlWithParams),q.withCredentials&&(je.withCredentials=!0),q.headers.forEach((vn,vi)=>je.setRequestHeader(vn,vi.join(","))),q.headers.has("Accept")||je.setRequestHeader("Accept","application/json, text/plain, */*"),!q.headers.has("Content-Type")){const vn=q.detectContentTypeHeader();null!==vn&&je.setRequestHeader("Content-Type",vn)}if(q.responseType){const vn=q.responseType.toLowerCase();je.responseType="json"!==vn?vn:"text"}const ut=q.serializeBody();let nn=null;const Yt=()=>{if(null!==nn)return nn;const vn=je.statusText||"OK",vi=new Ne(je.getAllResponseHeaders()),Ir=function fn(we){return"responseURL"in we&&we.responseURL?we.responseURL:/^X-Request-URL:/m.test(we.getAllResponseHeaders())?we.getResponseHeader("X-Request-URL"):null}(je)||q.url;return nn=new Tt({headers:vi,status:je.status,statusText:vn,url:Ir}),nn},an=()=>{let{headers:vn,status:vi,statusText:Ir,url:Ee}=Yt(),ye=null;204!==vi&&(ye=typeof je.response>"u"?je.responseText:je.response),0===vi&&(vi=ye?200:0);let nt=vi>=200&&vi<300;if("json"===q.responseType&&"string"==typeof ye){const Ot=ye;ye=ye.replace(at,"");try{ye=""!==ye?JSON.parse(ye):null}catch(un){ye=Ot,nt&&(nt=!1,ye={error:un,text:ye})}}nt?(re.next(new wt({body:ye,headers:vn,status:vi,statusText:Ir,url:Ee||void 0})),re.complete()):re.error(new Dt({error:ye,headers:vn,status:vi,statusText:Ir,url:Ee||void 0}))},zt=vn=>{const{url:vi}=Yt(),Ir=new Dt({error:vn,status:je.status||0,statusText:je.statusText||"Unknown Error",url:vi||void 0});re.error(Ir)};let Pn=!1;const Dn=vn=>{Pn||(re.next(Yt()),Pn=!0);let vi={type:st.DownloadProgress,loaded:vn.loaded};vn.lengthComputable&&(vi.total=vn.total),"text"===q.responseType&&!!je.responseText&&(vi.partialText=je.responseText),re.next(vi)},$n=vn=>{let vi={type:st.UploadProgress,loaded:vn.loaded};vn.lengthComputable&&(vi.total=vn.total),re.next(vi)};return je.addEventListener("load",an),je.addEventListener("error",zt),je.addEventListener("timeout",zt),je.addEventListener("abort",zt),q.reportProgress&&(je.addEventListener("progress",Dn),null!==ut&&je.upload&&je.upload.addEventListener("progress",$n)),je.send(ut),re.next({type:st.Sent}),()=>{je.removeEventListener("error",zt),je.removeEventListener("abort",zt),je.removeEventListener("load",an),je.removeEventListener("timeout",zt),q.reportProgress&&(je.removeEventListener("progress",Dn),null!==ut&&je.upload&&je.upload.removeEventListener("progress",$n)),je.readyState!==je.DONE&&je.abort()}})}}Xt.\u0275fac=function(q){return new(q||Xt)(C.LFG(t.JF))},Xt.\u0275prov=C.Yz7({token:Xt,factory:Xt.\u0275fac}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -566,24 +694,25 @@ var Za="browser"; * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -new E.GfV("12.2.16"); +const Ge=new C.OlP("XSRF_COOKIE_NAME"),Je=new C.OlP("XSRF_HEADER_NAME");class Fe{}class Me{constructor(q,re,je){this.doc=q,this.platform=re,this.cookieName=je,this.lastCookieString="",this.lastToken=null,this.parseCount=0}getToken(){if("server"===this.platform)return null;const q=this.doc.cookie||"";return q!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,t.Mx)(q,this.cookieName),this.lastCookieString=q),this.lastToken}}Me.\u0275fac=function(q){return new(q||Me)(C.LFG(t.K0),C.LFG(C.Lbi),C.LFG(Ge))},Me.\u0275prov=C.Yz7({token:Me,factory:Me.\u0275fac});class kt{constructor(q,re){this.tokenService=q,this.headerName=re}intercept(q,re){const je=q.url.toLowerCase();if("GET"===q.method||"HEAD"===q.method||je.startsWith("http://")||je.startsWith("https://"))return re.handle(q);const ut=this.tokenService.getToken();return null!==ut&&!q.headers.has(this.headerName)&&(q=q.clone({headers:q.headers.set(this.headerName,ut)})),re.handle(q)}}kt.\u0275fac=function(q){return new(q||kt)(C.LFG(Fe),C.LFG(Je))},kt.\u0275prov=C.Yz7({token:kt,factory:kt.\u0275fac}); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var Da=(0,V.Z)(function z(){(0,F.Z)(this,z)});Da.\u0275prov=(0,E.Yz7)({token:Da,providedIn:"root",factory:function(){return new Ms((0,E.LFG)(Le),window)}});var Ms=function(){function z(J,le){(0,F.Z)(this,z),this.document=J,this.window=le,this.offset=function(){return[0,0]}}return(0,V.Z)(z,[{key:"setOffset",value:function(le){Array.isArray(le)?this.offset=function(){return le}:this.offset=le}},{key:"getScrollPosition",value:function(){return this.supportsScrolling()?[this.window.pageXOffset,this.window.pageYOffset]:[0,0]}},{key:"scrollToPosition",value:function(le){this.supportsScrolling()&&this.window.scrollTo(le[0],le[1])}},{key:"scrollToAnchor",value:function(le){if(this.supportsScrolling()){var Re=function(z,J){var le=z.getElementById(J)||z.getElementsByName(J)[0];if(le)return le;if("function"==typeof z.createTreeWalker&&z.body&&(z.body.createShadowRoot||z.body.attachShadow))for(var Re=z.createTreeWalker(z.body,NodeFilter.SHOW_ELEMENT),O=Re.currentNode;O;){var B=O.shadowRoot;if(B){var N=B.getElementById(J)||B.querySelector('[name="'.concat(J,'"]'));if(N)return N}O=Re.nextNode()}return null}(this.document,le);Re&&(this.scrollToElement(Re),this.attemptFocus(Re))}}},{key:"setHistoryScrollRestoration",value:function(le){if(this.supportScrollRestoration()){var Re=this.window.history;Re&&Re.scrollRestoration&&(Re.scrollRestoration=le)}}},{key:"scrollToElement",value:function(le){var Re=le.getBoundingClientRect(),O=Re.left+this.window.pageXOffset,B=Re.top+this.window.pageYOffset,N=this.offset();this.window.scrollTo(O-N[0],B-N[1])}},{key:"attemptFocus",value:function(le){return le.focus(),this.document.activeElement===le}},{key:"supportScrollRestoration",value:function(){try{if(!this.supportsScrolling())return!1;var le=el(this.window.history)||el(Object.getPrototypeOf(this.window.history));return!(!le||!le.writable&&!le.set)}catch(Re){return!1}}},{key:"supportsScrolling",value:function(){try{return!!this.window&&!!this.window.scrollTo&&"pageXOffset"in this.window}catch(le){return!1}}}]),z}();function el(z){return Object.getOwnPropertyDescriptor(z,"scrollRestoration")}var Va=(0,V.Z)(function z(){(0,F.Z)(this,z)}); + */ +class qt{constructor(q,re){this.backend=q,this.injector=re,this.chain=null}handle(q){if(null===this.chain){const re=this.injector.get(on,[]);this.chain=re.reduceRight((je,ut)=>new Gt(je,ut),this.backend)}return this.chain.handle(q)}}qt.\u0275fac=function(q){return new(q||qt)(C.LFG(Be),C.LFG(C.zs3))},qt.\u0275prov=C.Yz7({token:qt,factory:qt.\u0275fac});class dt{static disable(){return{ngModule:dt,providers:[{provide:kt,useClass:Bt}]}}static withOptions(q={}){return{ngModule:dt,providers:[q.cookieName?{provide:Ge,useValue:q.cookieName}:[],q.headerName?{provide:Je,useValue:q.headerName}:[]]}}}dt.\u0275fac=function(q){return new(q||dt)},dt.\u0275mod=C.oAB({type:dt}),dt.\u0275inj=C.cJS({providers:[kt,{provide:on,useExisting:kt,multi:!0},{provide:Fe,useClass:Me},{provide:Ge,useValue:"XSRF-TOKEN"},{provide:Je,useValue:"X-XSRF-TOKEN"}]});class Nt{}Nt.\u0275fac=function(q){return new(q||Nt)},Nt.\u0275mod=C.oAB({type:Nt}),Nt.\u0275inj=C.cJS({providers:[St,{provide:be,useClass:qt},Xt,{provide:Be,useExisting:Xt}],imports:[dt.withOptions({cookieName:"XSRF-TOKEN",headerName:"X-XSRF-TOKEN"})]});class Zt{}Zt.\u0275fac=function(q){return new(q||Zt)},Zt.\u0275mod=C.oAB({type:Zt}),Zt.\u0275inj=C.cJS({providers:[lt,{provide:Xe,useFactory:function ct(){return"object"==typeof window?window:{}}},{provide:on,useClass:Et,multi:!0}]})} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */},1987:function(It,we,D){"use strict";D.d(we,{eN:function(){return Ft},JF:function(){return mt}});var L=D(4338),C=D(8270),t=D(9862),R=D(3586),V=D(7444),F=D(47),E=D(4364),y=D(3587),be=D(1134),ue=D(9544),De=D(5816);function de($,xe){return(0,De.zg)($,xe,1)}var Le=D(1003);function ce($,xe){return function($e){return $e.lift(new pe($,xe))}}var pe=function(){function $(xe,fe){(0,F.Z)(this,$),this.predicate=xe,this.thisArg=fe}return(0,V.Z)($,[{key:"call",value:function(fe,$e){return $e.subscribe(new Ne(fe,this.predicate,this.thisArg))}}]),$}(),Ne=function($){(0,L.Z)(fe,$);var xe=(0,C.Z)(fe);function fe($e,ht,wt){var Gt;return(0,F.Z)(this,fe),(Gt=xe.call(this,$e)).predicate=ht,Gt.thisArg=wt,Gt.count=0,Gt}return(0,V.Z)(fe,[{key:"_next",value:function(ht){var wt;try{wt=this.predicate.call(this.thisArg,ht,this.count++)}catch(Gt){return void this.destination.error(Gt)}wt&&this.destination.next(ht)}}]),fe}(Le.L),ge=D(3927),ye=(0,V.Z)(function $(){(0,F.Z)(this,$)}),te=(0,V.Z)(function $(){(0,F.Z)(this,$)}),ve=function(){function $(xe){var fe=this;(0,F.Z)(this,$),this.normalizedNames=new Map,this.lazyUpdate=null,xe?this.lazyInit="string"==typeof xe?function(){fe.headers=new Map,xe.split("\n").forEach(function($e){var ht=$e.indexOf(":");if(ht>0){var wt=$e.slice(0,ht),Gt=wt.toLowerCase(),un=$e.slice(ht+1).trim();fe.maybeSetNormalizedName(wt,Gt),fe.headers.has(Gt)?fe.headers.get(Gt).push(un):fe.headers.set(Gt,[un])}})}:function(){fe.headers=new Map,Object.keys(xe).forEach(function($e){var ht=xe[$e],wt=$e.toLowerCase();"string"==typeof ht&&(ht=[ht]),ht.length>0&&(fe.headers.set(wt,ht),fe.maybeSetNormalizedName($e,wt))})}:this.headers=new Map}return(0,V.Z)($,[{key:"has",value:function(fe){return this.init(),this.headers.has(fe.toLowerCase())}},{key:"get",value:function(fe){this.init();var $e=this.headers.get(fe.toLowerCase());return $e&&$e.length>0?$e[0]:null}},{key:"keys",value:function(){return this.init(),Array.from(this.normalizedNames.values())}},{key:"getAll",value:function(fe){return this.init(),this.headers.get(fe.toLowerCase())||null}},{key:"append",value:function(fe,$e){return this.clone({name:fe,value:$e,op:"a"})}},{key:"set",value:function(fe,$e){return this.clone({name:fe,value:$e,op:"s"})}},{key:"delete",value:function(fe,$e){return this.clone({name:fe,value:$e,op:"d"})}},{key:"maybeSetNormalizedName",value:function(fe,$e){this.normalizedNames.has($e)||this.normalizedNames.set($e,fe)}},{key:"init",value:function(){var fe=this;this.lazyInit&&(this.lazyInit instanceof $?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(function($e){return fe.applyUpdate($e)}),this.lazyUpdate=null))}},{key:"copyFrom",value:function(fe){var $e=this;fe.init(),Array.from(fe.headers.keys()).forEach(function(ht){$e.headers.set(ht,fe.headers.get(ht)),$e.normalizedNames.set(ht,fe.normalizedNames.get(ht))})}},{key:"clone",value:function(fe){var $e=new $;return $e.lazyInit=this.lazyInit&&this.lazyInit instanceof $?this.lazyInit:this,$e.lazyUpdate=(this.lazyUpdate||[]).concat([fe]),$e}},{key:"applyUpdate",value:function(fe){var $e=fe.name.toLowerCase();switch(fe.op){case"a":case"s":var ht=fe.value;if("string"==typeof ht&&(ht=[ht]),0===ht.length)return;this.maybeSetNormalizedName(fe.name,$e);var wt=("a"===fe.op?this.headers.get($e):void 0)||[];wt.push.apply(wt,(0,R.Z)(ht)),this.headers.set($e,wt);break;case"d":var Gt=fe.value;if(Gt){var un=this.headers.get($e);if(!un)return;0===(un=un.filter(function(bn){return-1===Gt.indexOf(bn)})).length?(this.headers.delete($e),this.normalizedNames.delete($e)):this.headers.set($e,un)}else this.headers.delete($e),this.normalizedNames.delete($e)}}},{key:"forEach",value:function(fe){var $e=this;this.init(),Array.from(this.normalizedNames.keys()).forEach(function(ht){return fe($e.normalizedNames.get(ht),$e.headers.get(ht))})}}]),$}(),Ue=function(){function $(){(0,F.Z)(this,$)}return(0,V.Z)($,[{key:"encodeKey",value:function(fe){return Xe(fe)}},{key:"encodeValue",value:function(fe){return Xe(fe)}},{key:"decodeKey",value:function(fe){return decodeURIComponent(fe)}},{key:"decodeValue",value:function(fe){return decodeURIComponent(fe)}}]),$}(); + */,8008:(vt,_e,w)=>{"use strict";w.d(_e,{AFp:()=>A7,ip1:()=>O7,CZH:()=>f2,hGG:()=>Tc,z2F:()=>h2,ahi:()=>ys,sBO:()=>tf,wA2:()=>oh,_Vd:()=>A2,EJc:()=>gh,Xek:()=>P7,SBq:()=>N2,qLn:()=>Fu,vpe:()=>ql,AA_:()=>q1,pfw:()=>uh,L6J:()=>ch,tBr:()=>Gl,GSi:()=>Z3,OlP:()=>gr,zs3:()=>ya,IIB:()=>sh,ZZ4:()=>Bl,aQg:()=>Rl,soG:()=>T8,LVF:()=>dh,h0i:()=>vc,R0b:()=>A1,FiY:()=>Vl,r_U:()=>lh,Lbi:()=>fh,g9A:()=>N7,E6H:()=>ah,Qsj:()=>z3,FYo:()=>nd,JOm:()=>gl,q3G:()=>xl,PiD:()=>Wl,WD2:()=>Os,tp0:()=>pl,Rgc:()=>yc,dDg:()=>xc,eoX:()=>r3,GfV:()=>o0,i9L:()=>x5,s_b:()=>y5,ifc:()=>$n,Lck:()=>Xf,eFA:()=>G7,G48:()=>Oh,Gpc:()=>We,f3M:()=>p3,_c5:()=>Wh,c2e:()=>wc,zSh:()=>F3,wAp:()=>L,vHH:()=>Z,lri:()=>j7,rWj:()=>U7,EiD:()=>L2,mCW:()=>X1,qzn:()=>ja,JVY:()=>k5,pB0:()=>Qs,eBb:()=>S3,L6k:()=>pt,LAX:()=>Hc,D6c:()=>Qh,cg1:()=>u5,kuF:()=>Ce,kL8:()=>c5,dqk:()=>vn,sIi:()=>Uu,CqO:()=>tu,QGY:()=>G0,F4k:()=>$u,zlt:()=>G9,RDi:()=>ua,AaK:()=>Pe,z3N:()=>b1,qOj:()=>q0,TTD:()=>hs,_Bn:()=>F9,xp6:()=>m0,uIk:()=>oc,Q2q:()=>X2,ekj:()=>X0,Xpm:()=>Lr,lG2:()=>sn,Yz7:()=>Ge,cJS:()=>Fe,oAB:()=>ue,Yjl:()=>yn,Y36:()=>t2,_UZ:()=>eu,BQk:()=>Yu,ynx:()=>r2,qZA:()=>Ku,TgZ:()=>Qu,EpF:()=>Rd,n5z:()=>jr,LFG:()=>Hr,$8M:()=>zl,NdJ:()=>nu,CRH:()=>l7,kcU:()=>Ct,O4$:()=>Le,oxw:()=>zd,ALo:()=>X9,lcZ:()=>e7,Hsn:()=>K0,F$t:()=>Q0,Q6J:()=>sc,s9C:()=>cc,MGl:()=>dc,hYB:()=>iu,VKq:()=>V9,WLB:()=>W9,iGM:()=>a7,MAs:()=>qd,KtG:()=>ks,evT:()=>u0,Jf7:()=>od,CHM:()=>Va,oJD:()=>Yc,LSH:()=>D2,kYT:()=>ze,Udp:()=>rl,YNc:()=>Wo,_uU:()=>o5,Oqu:()=>l2,hij:()=>kl,AsE:()=>a5,Gf:()=>s7});var t=w(2218),C=w(6957),F=w(5901),U=w(5286),N=w(14);function G(){return function(i){return i.lift(new K(i))}}class K{constructor(i){this.connectable=i}call(i,l){const{connectable:c}=this;c._refCount++;const d=new $(i,c),g=l.subscribe(d);return d.closed||(d.connection=c.connect()),g}}class $ extends N.L{constructor(i,l){super(i),this.connectable=l}_unsubscribe(){const{connectable:i}=this;if(!i)return void(this.connection=null);this.connectable=null;const l=i._refCount;if(l<=0)return void(this.connection=null);if(i._refCount=l-1,l>1)return void(this.connection=null);const{connection:c}=this,d=i._connection;this.connection=null,d&&(!c||d===c)&&d.unsubscribe()}}class le extends F.y{constructor(i,l){super(),this.source=i,this.subjectFactory=l,this._refCount=0,this._isComplete=!1}_subscribe(i){return this.getSubject().subscribe(i)}getSubject(){const i=this._subject;return(!i||i.isStopped)&&(this._subject=this.subjectFactory()),this._subject}connect(){let i=this._connection;return i||(this._isComplete=!1,i=this._connection=new C.w,i.add(this.source.subscribe(new ae(this.getSubject(),this))),i.closed&&(this._connection=null,i=C.w.EMPTY)),i}refCount(){return G()(this)}}const R=(()=>{const n=le.prototype;return{operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:n._subscribe},_isComplete:{value:n._isComplete,writable:!0},getSubject:{value:n.getSubject},connect:{value:n.connect},refCount:{value:n.refCount}}})();class ae extends t.Yc{constructor(i,l){super(i),this.connectable=l}_error(i){this._unsubscribe(),super._error(i)}_complete(){this.connectable._isComplete=!0,this._unsubscribe(),super._complete()}_unsubscribe(){const i=this.connectable;if(i){this.connectable=null;const l=i._connection;i._refCount=0,i._subject=null,i._connection=null,l&&l.unsubscribe()}}}class ke{constructor(i,l){this.subjectFactory=i,this.selector=l}call(i,l){const{selector:c}=this,d=this.subjectFactory(),g=c(d).subscribe(i);return g.add(l.subscribe(d)),g}}function Re(){return new t.xQ}function fe(){return n=>G()(function Ne(n,i){return function(c){let d;if(d="function"==typeof n?n:function(){return n},"function"==typeof i)return c.lift(new ke(d,i));const g=Object.create(c,R);return g.source=c,g.subjectFactory=d,g}}(Re)(n))} /** - * @license Angular v12.2.16 - * (c) 2010-2021 Google LLC. https://angular.io/ + * @license Angular v14.2.12 + * (c) 2010-2022 Google LLC. https://angular.io/ * License: MIT */ /** @@ -592,14 +721,21 @@ new E.GfV("12.2.16"); * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Ke($,xe){var fe=new Map;$.length>0&&$.replace(/^\?/,"").split("&").forEach(function(ht){var wt=ht.indexOf("="),Gt=-1==wt?[xe.decodeKey(ht),""]:[xe.decodeKey(ht.slice(0,wt)),xe.decodeValue(ht.slice(wt+1))],un=(0,t.Z)(Gt,2),bn=un[0],Xn=un[1],Rn=fe.get(bn)||[];Rn.push(Xn),fe.set(bn,Rn)});return fe}var Ze=/%(\d[a-f0-9])/gi,ut={40:"@","3A":":",24:"$","2C":",","3B":";","2B":"+","3D":"=","3F":"?","2F":"/"};function Xe($){return encodeURIComponent($).replace(Ze,function(xe,fe){var $e;return null!==($e=ut[fe])&&void 0!==$e?$e:xe})}function A($){return"".concat($)}var W=function(){function $(){var xe=this,fe=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if((0,F.Z)(this,$),this.updates=null,this.cloneFrom=null,this.encoder=fe.encoder||new Ue,fe.fromString){if(fe.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=Ke(fe.fromString,this.encoder)}else fe.fromObject?(this.map=new Map,Object.keys(fe.fromObject).forEach(function($e){var ht=fe.fromObject[$e];xe.map.set($e,Array.isArray(ht)?ht:[ht])})):this.map=null}return(0,V.Z)($,[{key:"has",value:function(fe){return this.init(),this.map.has(fe)}},{key:"get",value:function(fe){this.init();var $e=this.map.get(fe);return $e?$e[0]:null}},{key:"getAll",value:function(fe){return this.init(),this.map.get(fe)||null}},{key:"keys",value:function(){return this.init(),Array.from(this.map.keys())}},{key:"append",value:function(fe,$e){return this.clone({param:fe,value:$e,op:"a"})}},{key:"appendAll",value:function(fe){var $e=[];return Object.keys(fe).forEach(function(ht){var wt=fe[ht];Array.isArray(wt)?wt.forEach(function(Gt){$e.push({param:ht,value:Gt,op:"a"})}):$e.push({param:ht,value:wt,op:"a"})}),this.clone($e)}},{key:"set",value:function(fe,$e){return this.clone({param:fe,value:$e,op:"s"})}},{key:"delete",value:function(fe,$e){return this.clone({param:fe,value:$e,op:"d"})}},{key:"toString",value:function(){var fe=this;return this.init(),this.keys().map(function($e){var ht=fe.encoder.encodeKey($e);return fe.map.get($e).map(function(wt){return ht+"="+fe.encoder.encodeValue(wt)}).join("&")}).filter(function($e){return""!==$e}).join("&")}},{key:"clone",value:function(fe){var $e=new $({encoder:this.encoder});return $e.cloneFrom=this.cloneFrom||this,$e.updates=(this.updates||[]).concat(fe),$e}},{key:"init",value:function(){var fe=this;null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(function($e){return fe.map.set($e,fe.cloneFrom.map.get($e))}),this.updates.forEach(function($e){switch($e.op){case"a":case"s":var ht=("a"===$e.op?fe.map.get($e.param):void 0)||[];ht.push(A($e.value)),fe.map.set($e.param,ht);break;case"d":if(void 0===$e.value){fe.map.delete($e.param);break}var wt=fe.map.get($e.param)||[],Gt=wt.indexOf(A($e.value));-1!==Gt&&wt.splice(Gt,1),wt.length>0?fe.map.set($e.param,wt):fe.map.delete($e.param)}}),this.cloneFrom=this.updates=null)}}]),$}(),Se=function(){function $(){(0,F.Z)(this,$),this.map=new Map}return(0,V.Z)($,[{key:"set",value:function(fe,$e){return this.map.set(fe,$e),this}},{key:"get",value:function(fe){return this.map.has(fe)||this.map.set(fe,fe.defaultValue()),this.map.get(fe)}},{key:"delete",value:function(fe){return this.map.delete(fe),this}},{key:"keys",value:function(){return this.map.keys()}}]),$}(); + */function de(n){for(let i in n)if(n[i]===de)return i;throw Error("Could not find renamed property on target object.")}function pe(n,i){for(const l in i)i.hasOwnProperty(l)&&!n.hasOwnProperty(l)&&(n[l]=i[l])} +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */function Pe(n){if("string"==typeof n)return n;if(Array.isArray(n))return"["+n.map(Pe).join(", ")+"]";if(null==n)return""+n;if(n.overriddenName)return`${n.overriddenName}`;if(n.name)return`${n.name}`;const i=n.toString();if(null==i)return""+i;const l=i.indexOf("\n");return-1===l?i:i.substring(0,l)}function et(n,i){return null==n||""===n?null===i?"":i:null==i||""===i?n:n+" "+i} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Ye($){return"undefined"!=typeof ArrayBuffer&&$ instanceof ArrayBuffer}function st($){return"undefined"!=typeof Blob&&$ instanceof Blob}function at($){return"undefined"!=typeof FormData&&$ instanceof FormData}var ot,$,ft=function(){function $(xe,fe,$e,ht){var wt;if((0,F.Z)(this,$),this.url=fe,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=xe.toUpperCase(), + */const $e=de({__forward_ref__:de});function We(n){return n.__forward_ref__=We,n.toString=function(){return Pe(this())},n}function Ie(n){return He(n)?n():n}function He(n){return"function"==typeof n&&n.hasOwnProperty($e)&&n.__forward_ref__===We} /** * @license * Copyright Google LLC All Rights Reserved. @@ -607,37 +743,35 @@ new E.GfV("12.2.16"); * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function($){switch($){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||ht?(this.body=void 0!==$e?$e:null,wt=ht):wt=$e,wt&&(this.reportProgress=!!wt.reportProgress,this.withCredentials=!!wt.withCredentials,wt.responseType&&(this.responseType=wt.responseType),wt.headers&&(this.headers=wt.headers),wt.context&&(this.context=wt.context),wt.params&&(this.params=wt.params)),this.headers||(this.headers=new ve),this.context||(this.context=new Se),this.params){var Gt=this.params.toString();if(0===Gt.length)this.urlWithParams=fe;else{var un=fe.indexOf("?"),bn=-1===un?"?":un0&&void 0!==arguments[0]?arguments[0]:{},ht=fe.method||this.method,wt=fe.url||this.url,Gt=fe.responseType||this.responseType,un=void 0!==fe.body?fe.body:this.body,bn=void 0!==fe.withCredentials?fe.withCredentials:this.withCredentials,Xn=void 0!==fe.reportProgress?fe.reportProgress:this.reportProgress,Rn=fe.headers||this.headers,ir=fe.params||this.params,Fn=null!==($e=fe.context)&&void 0!==$e?$e:this.context;return void 0!==fe.setHeaders&&(Rn=Object.keys(fe.setHeaders).reduce(function(di,Mr){return di.set(Mr,fe.setHeaders[Mr])},Rn)),fe.setParams&&(ir=Object.keys(fe.setParams).reduce(function(di,Mr){return di.set(Mr,fe.setParams[Mr])},ir)),new $(ht,wt,un,{params:ir,headers:Rn,context:Fn,reportProgress:Xn,responseType:Gt,withCredentials:bn})}}]),$}(); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */($=ot||(ot={}))[$.Sent=0]="Sent",$[$.UploadProgress=1]="UploadProgress",$[$.ResponseHeader=2]="ResponseHeader",$[$.DownloadProgress=3]="DownloadProgress",$[$.Response=4]="Response",$[$.User=5]="User";var kt=(0,V.Z)(function $(xe){var fe=arguments.length>1&&void 0!==arguments[1]?arguments[1]:200,$e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"OK";(0,F.Z)(this,$),this.headers=xe.headers||new ve,this.status=void 0!==xe.status?xe.status:fe,this.statusText=xe.statusText||$e,this.url=xe.url||null,this.ok=this.status>=200&&this.status<300}),_t=function($){(0,L.Z)(fe,$);var xe=(0,C.Z)(fe);function fe(){var $e,ht=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,F.Z)(this,fe),($e=xe.call(this,ht)).type=ot.ResponseHeader,$e}return(0,V.Z)(fe,[{key:"clone",value:function(){var ht=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new fe({headers:ht.headers||this.headers,status:void 0!==ht.status?ht.status:this.status,statusText:ht.statusText||this.statusText,url:ht.url||this.url||void 0})}}]),fe}(kt),Xt=function($){(0,L.Z)(fe,$);var xe=(0,C.Z)(fe);function fe(){var $e,ht=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,F.Z)(this,fe),($e=xe.call(this,ht)).type=ot.Response,$e.body=void 0!==ht.body?ht.body:null,$e}return(0,V.Z)(fe,[{key:"clone",value:function(){var ht=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new fe({body:void 0!==ht.body?ht.body:this.body,headers:ht.headers||this.headers,status:void 0!==ht.status?ht.status:this.status,statusText:ht.statusText||this.statusText,url:ht.url||this.url||void 0})}}]),fe}(kt),Jt=function($){(0,L.Z)(fe,$);var xe=(0,C.Z)(fe);function fe($e){var ht;return(0,F.Z)(this,fe),(ht=xe.call(this,$e,0,"Unknown Error")).name="HttpErrorResponse",ht.ok=!1,ht.status>=200&&ht.status<300?ht.message="Http failure during parsing for ".concat($e.url||"(unknown url)"):ht.message="Http failure response for ".concat($e.url||"(unknown url)",": ").concat($e.status," ").concat($e.statusText),ht.error=$e.error||null,ht}return(0,V.Z)(fe)}(kt); + */ +class Z extends Error{constructor(i,l){super(Ce(i,l)),this.code=i}}function Ce(n,i){return`NG0${Math.abs(n)}${i?": "+i.trim():""}`} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Wt($,xe){return{body:xe,headers:$.headers,context:$.context,observe:$.observe,params:$.params,reportProgress:$.reportProgress,responseType:$.responseType,withCredentials:$.withCredentials}}var Ft=function(){function $(xe){(0,F.Z)(this,$),this.handler=xe}return(0,V.Z)($,[{key:"request",value:function(fe,$e){var Gt,ht=this,wt=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(fe instanceof ft)Gt=fe;else{var un=void 0;un=wt.headers instanceof ve?wt.headers:new ve(wt.headers);var bn=void 0;wt.params&&(bn=wt.params instanceof W?wt.params:new W({fromObject:wt.params})),Gt=new ft(fe,$e,void 0!==wt.body?wt.body:null,{headers:un,context:wt.context,params:bn,reportProgress:wt.reportProgress,responseType:wt.responseType||"json",withCredentials:wt.withCredentials})}var Xn=(0,be.of)(Gt).pipe(de(function(ir){return ht.handler.handle(ir)}));if(fe instanceof ft||"events"===wt.observe)return Xn;var Rn=Xn.pipe(ce(function(ir){return ir instanceof Xt}));switch(wt.observe||"body"){case"body":switch(Gt.responseType){case"arraybuffer":return Rn.pipe((0,ge.U)(function(ir){if(null!==ir.body&&!(ir.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return ir.body}));case"blob":return Rn.pipe((0,ge.U)(function(ir){if(null!==ir.body&&!(ir.body instanceof Blob))throw new Error("Response is not a Blob.");return ir.body}));case"text":return Rn.pipe((0,ge.U)(function(ir){if(null!==ir.body&&"string"!=typeof ir.body)throw new Error("Response is not a string.");return ir.body}));default:return Rn.pipe((0,ge.U)(function(ir){return ir.body}))}case"response":return Rn;default:throw new Error("Unreachable: unhandled observe type ".concat(wt.observe,"}"))}}},{key:"delete",value:function(fe){var $e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request("DELETE",fe,$e)}},{key:"get",value:function(fe){var $e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request("GET",fe,$e)}},{key:"head",value:function(fe){var $e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request("HEAD",fe,$e)}},{key:"jsonp",value:function(fe,$e){return this.request("JSONP",fe,{params:(new W).append($e,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}},{key:"options",value:function(fe){var $e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request("OPTIONS",fe,$e)}},{key:"patch",value:function(fe,$e){var ht=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request("PATCH",fe,Wt(ht,$e))}},{key:"post",value:function(fe,$e){var ht=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request("POST",fe,Wt(ht,$e))}},{key:"put",value:function(fe,$e){var ht=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request("PUT",fe,Wt(ht,$e))}}]),$}();Ft.\u0275fac=function(xe){return new(xe||Ft)(y.LFG(ye))},Ft.\u0275prov=y.Yz7({token:Ft,factory:Ft.\u0275fac}),Ft.ctorParameters=function(){return[{type:ye}]}; + */function Te(n){return"string"==typeof n?n:null==n?"":String(n)}function Qe(n){return"function"==typeof n?n.name||n.toString():"object"==typeof n&&null!=n&&"function"==typeof n.type?n.type.name||n.type.toString():Te(n)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var mn=function(){function $(xe,fe){(0,F.Z)(this,$),this.next=xe,this.interceptor=fe}return(0,V.Z)($,[{key:"handle",value:function(fe){return this.interceptor.intercept(fe,this.next)}}]),$}(),Pn=new y.OlP("HTTP_INTERCEPTORS"),he=function(){function $(){(0,F.Z)(this,$)}return(0,V.Z)($,[{key:"intercept",value:function(fe,$e){return $e.handle(fe)}}]),$}();he.\u0275fac=function(xe){return new(xe||he)},he.\u0275prov=y.Yz7({token:he,factory:he.\u0275fac}); + */function wt(n,i){throw new Z(-201,!1)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var hn=0,je=(0,V.Z)(function $(){(0,F.Z)(this,$)}),rn=function(){function $(xe,fe){(0,F.Z)(this,$),this.callbackMap=xe,this.document=fe,this.resolvedPromise=Promise.resolve()}return(0,V.Z)($,[{key:"nextCallback",value:function(){return"ng_jsonp_callback_".concat(hn++)}},{key:"handle",value:function(fe){var $e=this;if("JSONP"!==fe.method)throw new Error("JSONP requests must use JSONP request method.");if("json"!==fe.responseType)throw new Error("JSONP requests must use Json response type.");return new ue.y(function(ht){var wt=$e.nextCallback(),Gt=fe.urlWithParams.replace(/=JSONP_CALLBACK(&|$)/,"=".concat(wt,"$1")),un=$e.document.createElement("script");un.src=Gt;var bn=null,Xn=!1,Rn=!1;$e.callbackMap[wt]=function(Mr){delete $e.callbackMap[wt],!Rn&&(bn=Mr,Xn=!0)};var ir=function(){un.parentNode&&un.parentNode.removeChild(un),delete $e.callbackMap[wt]},Fn=function(Gi){Rn||$e.resolvedPromise.then(function(){ir(),Xn?(ht.next(new Xt({body:bn,status:200,statusText:"OK",url:Gt})),ht.complete()):ht.error(new Jt({url:Gt,status:0,statusText:"JSONP Error",error:new Error("JSONP injected script did not invoke callback.")}))})},di=function(Gi){Rn||(ir(),ht.error(new Jt({error:Gi,status:0,statusText:"JSONP Error",url:Gt})))};return un.addEventListener("load",Fn),un.addEventListener("error",di),$e.document.body.appendChild(un),ht.next({type:ot.Sent}),function(){Rn=!0,un.removeEventListener("load",Fn),un.removeEventListener("error",di),ir()}})}}]),$}();rn.\u0275fac=function(xe){return new(xe||rn)(y.LFG(je),y.LFG(E.K0))},rn.\u0275prov=y.Yz7({token:rn,factory:rn.\u0275fac}),rn.ctorParameters=function(){return[{type:je},{type:void 0,decorators:[{type:y.tBr,args:[E.K0]}]}]};var At=function(){function $(xe){(0,F.Z)(this,$),this.jsonp=xe}return(0,V.Z)($,[{key:"intercept",value:function(fe,$e){return"JSONP"===fe.method?this.jsonp.handle(fe):$e.handle(fe)}}]),$}();At.\u0275fac=function(xe){return new(xe||At)(y.LFG(rn))},At.\u0275prov=y.Yz7({token:At,factory:At.\u0275fac}),At.ctorParameters=function(){return[{type:rn}]}; + */function on(n,i,l){n!=i&&Et(l,n,i,"==")}function lt(n,i){null==n&&Et(i,n,null,"!=")}function Et(n,i,l,c){throw new Error(`ASSERTION ERROR: ${n}`+(null==c?"":` [Expected=> ${l} ${c} ${i} <=Actual]`))} /** * @license * Copyright Google LLC All Rights Reserved. @@ -645,15 +779,14 @@ var hn=0,je=(0,V.Z)(function $(){(0,F.Z)(this,$)}),rn=function(){function $(xe,f * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Je=/^\)\]\}',?\n/;var pn=function(){function $(xe){(0,F.Z)(this,$),this.xhrFactory=xe}return(0,V.Z)($,[{key:"handle",value:function(fe){var $e=this;if("JSONP"===fe.method)throw new Error("Attempted to construct Jsonp request without HttpClientJsonpModule installed.");return new ue.y(function(ht){var wt=$e.xhrFactory.build();if(wt.open(fe.method,fe.urlWithParams),fe.withCredentials&&(wt.withCredentials=!0),fe.headers.forEach(function(jn,Dr){return wt.setRequestHeader(jn,Dr.join(","))}),fe.headers.has("Accept")||wt.setRequestHeader("Accept","application/json, text/plain, */*"),!fe.headers.has("Content-Type")){var Gt=fe.detectContentTypeHeader();null!==Gt&&wt.setRequestHeader("Content-Type",Gt)}if(fe.responseType){var un=fe.responseType.toLowerCase();wt.responseType="json"!==un?un:"text"}var bn=fe.serializeBody(),Xn=null,Rn=function(){if(null!==Xn)return Xn;var Dr=1223===wt.status?204:wt.status,Or=wt.statusText||"OK",Lr=new ve(wt.getAllResponseHeaders()),vi=function($){return"responseURL"in $&&$.responseURL?$.responseURL:/^X-Request-URL:/m.test($.getAllResponseHeaders())?$.getResponseHeader("X-Request-URL"):null}(wt)||fe.url;return Xn=new _t({headers:Lr,status:Dr,statusText:Or,url:vi})},ir=function(){var Dr=Rn(),Or=Dr.headers,Lr=Dr.status,vi=Dr.statusText,oa=Dr.url,wr=null;204!==Lr&&(wr=void 0===wt.response?wt.responseText:wt.response),0===Lr&&(Lr=wr?200:0);var We=Lr>=200&&Lr<300;if("json"===fe.responseType&&"string"==typeof wr){var Pe=wr;wr=wr.replace(Je,"");try{wr=""!==wr?JSON.parse(wr):null}catch(Qe){wr=Pe,We&&(We=!1,wr={error:Qe,text:wr})}}We?(ht.next(new Xt({body:wr,headers:Or,status:Lr,statusText:vi,url:oa||void 0})),ht.complete()):ht.error(new Jt({error:wr,headers:Or,status:Lr,statusText:vi,url:oa||void 0}))},Fn=function(Dr){var Lr=Rn().url,vi=new Jt({error:Dr,status:wt.status||0,statusText:wt.statusText||"Unknown Error",url:Lr||void 0});ht.error(vi)},di=!1,Mr=function(Dr){di||(ht.next(Rn()),di=!0);var Or={type:ot.DownloadProgress,loaded:Dr.loaded};Dr.lengthComputable&&(Or.total=Dr.total),"text"===fe.responseType&&!!wt.responseText&&(Or.partialText=wt.responseText),ht.next(Or)},Gi=function(Dr){var Or={type:ot.UploadProgress,loaded:Dr.loaded};Dr.lengthComputable&&(Or.total=Dr.total),ht.next(Or)};return wt.addEventListener("load",ir),wt.addEventListener("error",Fn),wt.addEventListener("timeout",Fn),wt.addEventListener("abort",Fn),fe.reportProgress&&(wt.addEventListener("progress",Mr),null!==bn&&wt.upload&&wt.upload.addEventListener("progress",Gi)),wt.send(bn),ht.next({type:ot.Sent}),function(){wt.removeEventListener("error",Fn),wt.removeEventListener("abort",Fn),wt.removeEventListener("load",ir),wt.removeEventListener("timeout",Fn),fe.reportProgress&&(wt.removeEventListener("progress",Mr),null!==bn&&wt.upload&&wt.upload.removeEventListener("progress",Gi)),wt.readyState!==wt.DONE&&wt.abort()}})}}]),$}();pn.\u0275fac=function(xe){return new(xe||pn)(y.LFG(E.JF))},pn.\u0275prov=y.Yz7({token:pn,factory:pn.\u0275fac}),pn.ctorParameters=function(){return[{type:E.JF}]}; +function Ge(n){return{token:n.token,providedIn:n.providedIn||null,factory:n.factory,value:void 0}}function Fe(n){return{providers:n.providers||[],imports:n.imports||[]}}function Me(n){return qt(n,Nt)||qt(n,Kt)}function qt(n,i){return n.hasOwnProperty(i)?n[i]:null}function dt(n){return n&&(n.hasOwnProperty(Zt)||n.hasOwnProperty(we))?n[Zt]:null}const Nt=de({\u0275prov:de}),Zt=de({\u0275inj:de}),Kt=de({ngInjectableDef:de}),we=de({ngInjectorDef:de}); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var Ct=new y.OlP("XSRF_COOKIE_NAME"),Jn=new y.OlP("XSRF_HEADER_NAME"),_n=(0,V.Z)(function $(){(0,F.Z)(this,$)}),gt=function(){function $(xe,fe,$e){(0,F.Z)(this,$),this.doc=xe,this.platform=fe,this.cookieName=$e,this.lastCookieString="",this.lastToken=null,this.parseCount=0}return(0,V.Z)($,[{key:"getToken",value:function(){if("server"===this.platform)return null;var fe=this.doc.cookie||"";return fe!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,E.Mx)(fe,this.cookieName),this.lastCookieString=fe),this.lastToken}}]),$}();gt.\u0275fac=function(xe){return new(xe||gt)(y.LFG(E.K0),y.LFG(y.Lbi),y.LFG(Ct))},gt.\u0275prov=y.Yz7({token:gt,factory:gt.\u0275fac}),gt.ctorParameters=function(){return[{type:void 0,decorators:[{type:y.tBr,args:[E.K0]}]},{type:String,decorators:[{type:y.tBr,args:[y.Lbi]}]},{type:String,decorators:[{type:y.tBr,args:[Ct]}]}]};var Bt=function(){function $(xe,fe){(0,F.Z)(this,$),this.tokenService=xe,this.headerName=fe}return(0,V.Z)($,[{key:"intercept",value:function(fe,$e){var ht=fe.url.toLowerCase();if("GET"===fe.method||"HEAD"===fe.method||ht.startsWith("http://")||ht.startsWith("https://"))return $e.handle(fe);var wt=this.tokenService.getToken();return null!==wt&&!fe.headers.has(this.headerName)&&(fe=fe.clone({headers:fe.headers.set(this.headerName,wt)})),$e.handle(fe)}}]),$}();Bt.\u0275fac=function(xe){return new(xe||Bt)(y.LFG(_n),y.LFG(Jn))},Bt.\u0275prov=y.Yz7({token:Bt,factory:Bt.\u0275fac}),Bt.ctorParameters=function(){return[{type:_n},{type:String,decorators:[{type:y.tBr,args:[Jn]}]}]}; + */var q,n; /** * @license * Copyright Google LLC All Rights Reserved. @@ -661,7 +794,7 @@ var Ct=new y.OlP("XSRF_COOKIE_NAME"),Jn=new y.OlP("XSRF_HEADER_NAME"),_n=(0,V.Z) * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Ot=function(){function $(xe,fe){(0,F.Z)(this,$),this.backend=xe,this.injector=fe,this.chain=null}return(0,V.Z)($,[{key:"handle",value:function(fe){if(null===this.chain){var $e=this.injector.get(Pn,[]);this.chain=$e.reduceRight(function(ht,wt){return new mn(ht,wt)},this.backend)}return this.chain.handle(fe)}}]),$}();Ot.\u0275fac=function(xe){return new(xe||Ot)(y.LFG(te),y.LFG(y.zs3))},Ot.\u0275prov=y.Yz7({token:Ot,factory:Ot.\u0275fac}),Ot.ctorParameters=function(){return[{type:te},{type:y.zs3}]};var Dt=function(){function $(){(0,F.Z)(this,$)}return(0,V.Z)($,null,[{key:"disable",value:function(){return{ngModule:$,providers:[{provide:Bt,useClass:he}]}}},{key:"withOptions",value:function(){var fe=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{ngModule:$,providers:[fe.cookieName?{provide:Ct,useValue:fe.cookieName}:[],fe.headerName?{provide:Jn,useValue:fe.headerName}:[]]}}}]),$}();Dt.\u0275fac=function(xe){return new(xe||Dt)},Dt.\u0275mod=y.oAB({type:Dt}),Dt.\u0275inj=y.cJS({providers:[Bt,{provide:Pn,useExisting:Bt,multi:!0},{provide:_n,useClass:gt},{provide:Ct,useValue:"XSRF-TOKEN"},{provide:Jn,useValue:"X-XSRF-TOKEN"}]});var mt=(0,V.Z)(function $(){(0,F.Z)(this,$)});mt.\u0275fac=function(xe){return new(xe||mt)},mt.\u0275mod=y.oAB({type:mt}),mt.\u0275inj=y.cJS({providers:[Ft,{provide:ye,useClass:Ot},pn,{provide:te,useExisting:pn}],imports:[[Dt.withOptions({cookieName:"XSRF-TOKEN",headerName:"X-XSRF-TOKEN"})]]});var se=(0,V.Z)(function $(){(0,F.Z)(this,$)});se.\u0275fac=function(xe){return new(xe||se)},se.\u0275mod=y.oAB({type:se}),se.\u0275inj=y.cJS({providers:[rn,{provide:je,useFactory:function(){return"object"==typeof window?window:{}}},{provide:Pn,useClass:At,multi:!0}]}); +let re;function ut(n){const i=re;return re=n,i}function nn(n,i,l){const c=Me(n);return c&&"root"==c.providedIn?void 0===c.value?c.value=c.factory():c.value:l&q.Optional?null:void 0!==i?i:void wt(Pe(n))} /** * @license * Copyright Google LLC All Rights Reserved. @@ -669,68 +802,74 @@ var Ot=function(){function $(xe,fe){(0,F.Z)(this,$),this.backend=xe,this.injecto * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -E.JF; +function an(n){return{toString:n}.toString()} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */},3587:function(It,we,D){"use strict";D.d(we,{AFp:function(){return Rp},ip1:function(){return U6},CZH:function(){return w1},hGG:function(){return jc},z2F:function(){return $1},ahi:function(){return S1},sBO:function(){return Ff},wA2:function(){return t_},_Vd:function(){return Rc},EJc:function(){return qp},Xek:function(){return Np},SBq:function(){return e2},qLn:function(){return da},vpe:function(){return Cu},AA_:function(){return So},pfw:function(){return c_},L6J:function(){return f_},gxx:function(){return b2},tBr:function(){return k1},GSi:function(){return z3},OlP:function(){return Ar},zs3:function(){return Li},IIB:function(){return o_},ZZ4:function(){return e0},aQg:function(){return t0},soG:function(){return j6},LVF:function(){return b_},h0i:function(){return Bc},PXZ:function(){return X_},R0b:function(){return X1},FiY:function(){return ss},r_U:function(){return l_},Lbi:function(){return Bp},g9A:function(){return Fp},E6H:function(){return i_},Qsj:function(){return Rf},FYo:function(){return P6},JOm:function(){return g2},Tiy:function(){return i5},q3G:function(){return go},PiD:function(){return $s},WD2:function(){return ie},tp0:function(){return e1},Rgc:function(){return Fc},dDg:function(){return R2},GfV:function(){return C7},i9L:function(){return p0},s_b:function(){return n0},ifc:function(){return yt},eFA:function(){return Qp},G48:function(){return H_},Gpc:function(){return Wt},_c5:function(){return hy},VLi:function(){return V_},c2e:function(){return zc},zSh:function(){return gs},wAp:function(){return Nc},vHH:function(){return he},EiD:function(){return F1},mCW:function(){return kr},qzn:function(){return dl},JVY:function(){return S0},pB0:function(){return c3},eBb:function(){return u3},L6k:function(){return P0},LAX:function(){return f2},cg1:function(){return Df},Tjo:function(){return fy},kL8:function(){return j9},yhl:function(){return l3},dqk:function(){return nr},sIi:function(){return wc},CqO:function(){return Zd},QGY:function(){return qd},F4k:function(){return W3},zlt:function(){return J7},RDi:function(){return La},AaK:function(){return _t},z3N:function(){return Ss},qOj:function(){return y1},TTD:function(){return oe},_Bn:function(){return m7},xp6:function(){return B5},uIk:function(){return Tc},Q2q:function(){return wd},ekj:function(){return Gd},Xpm:function(){return $r},lG2:function(){return Vt},Yz7:function(){return ht},cJS:function(){return Gt},oAB:function(){return nt},Yjl:function(){return En},Y36:function(){return Sc},_UZ:function(){return Q8},BQk:function(){return S2},ynx:function(){return Bd},qZA:function(){return Fd},TgZ:function(){return Rd},EpF:function(){return Y8},n5z:function(){return Du},LFG:function(){return Ki},$8M:function(){return V2},NdJ:function(){return Pc},CRH:function(){return hp},kcU:function(){return Do},O4$:function(){return Bo},oxw:function(){return kc},ALo:function(){return sp},lcZ:function(){return lp},Hsn:function(){return zd},F$t:function(){return X8},Q6J:function(){return Ad},s9C:function(){return Q3},MGl:function(){return k2},hYB:function(){return Ud},VKq:function(){return ep},WLB:function(){return tp},iGM:function(){return fp},MAs:function(){return N8},evT:function(){return Nu},Jf7:function(){return k0},CHM:function(){return x1},oJD:function(){return ml},LSH:function(){return u1},kYT:function(){return lt},Udp:function(){return Hd},YNc:function(){return Td},_uU:function(){return $u},Oqu:function(){return ci},hij:function(){return K1},AsE:function(){return ro},Gf:function(){return pp}});var L=D(9520),C=D(1365),t=D(9021),R=D(9862);D(9482),D(7450),D(5572),D(6356);var De=D(5012),de=D(3586),Le=D(1995),ce=D(7444),pe=D(47),Ne=D(4338),ge=D(8270),ye=D(4924),te=D(1318),ve=D(9441),Ue=D(9544),Ke=D(6248),Ze=D(1003);function ut(){return function(r){return r.lift(new Xe(r))}}var e,Xe=function(){function e(r){(0,pe.Z)(this,e),this.connectable=r}return(0,ce.Z)(e,[{key:"call",value:function(i,u){var d=this.connectable;d._refCount++;var f=new A(i,d),g=u.subscribe(f);return f.closed||(f.connection=d.connect()),g}}]),e}(),A=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(u,d){var f;return(0,pe.Z)(this,i),(f=r.call(this,u)).connectable=d,f}return(0,ce.Z)(i,[{key:"_unsubscribe",value:function(){var d=this.connectable;if(d){this.connectable=null;var f=d._refCount;if(f<=0)this.connection=null;else if(d._refCount=f-1,f>1)this.connection=null;else{var g=this.connection,v=d._connection;this.connection=null,v&&(!g||v===g)&&v.unsubscribe()}}else this.connection=null}}]),i}(Ze.L),W=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(u,d){var f;return(0,pe.Z)(this,i),(f=r.call(this)).source=u,f.subjectFactory=d,f._refCount=0,f._isComplete=!1,f}return(0,ce.Z)(i,[{key:"_subscribe",value:function(d){return this.getSubject().subscribe(d)}},{key:"getSubject",value:function(){var d=this._subject;return(!d||d.isStopped)&&(this._subject=this.subjectFactory()),this._subject}},{key:"connect",value:function(){var d=this._connection;return d||(this._isComplete=!1,(d=this._connection=new te.w).add(this.source.subscribe(new Se(this.getSubject(),this))),d.closed&&(this._connection=null,d=te.w.EMPTY)),d}},{key:"refCount",value:function(){return ut()(this)}}]),i}(Ue.y),U={operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:(e=W.prototype)._subscribe},_isComplete:{value:e._isComplete,writable:!0},getSubject:{value:e.getSubject},connect:{value:e.connect},refCount:{value:e.refCount}},Se=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(u,d){var f;return(0,pe.Z)(this,i),(f=r.call(this,u)).connectable=d,f}return(0,ce.Z)(i,[{key:"_error",value:function(d){this._unsubscribe(),(0,L.Z)((0,C.Z)(i.prototype),"_error",this).call(this,d)}},{key:"_complete",value:function(){this.connectable._isComplete=!0,this._unsubscribe(),(0,L.Z)((0,C.Z)(i.prototype),"_complete",this).call(this)}},{key:"_unsubscribe",value:function(){var d=this.connectable;if(d){this.connectable=null;var f=d._connection;d._refCount=0,d._subject=null,d._connection=null,f&&f.unsubscribe()}}}]),i}(ve.Yc);Ze.L;var at=function(){function e(r,i){(0,pe.Z)(this,e),this.subjectFactory=r,this.selector=i}return(0,ce.Z)(e,[{key:"call",value:function(i,u){var d=this.selector,f=this.subjectFactory(),g=d(f).subscribe(i);return g.add(u.subscribe(f)),g}}]),e}();function St(){return new ve.xQ}function ft(){return function(e){return ut()(function(e,r){return function(u){var d;if(d="function"==typeof e?e:function(){return e},"function"==typeof r)return u.lift(new at(d,r));var f=Object.create(u,U);return f.source=u,f.subjectFactory=d,f}}(St)(e))}} + */var zt,Pn,$n;(n=q||(q={}))[n.Default=0]="Default",n[n.Host=1]="Host",n[n.Self=2]="Self",n[n.SkipSelf=4]="SkipSelf",n[n.Optional=8]="Optional",function(n){n[n.OnPush=0]="OnPush",n[n.Default=1]="Default"}(zt||(zt={})),function(n){n[n.CheckOnce=0]="CheckOnce",n[n.Checked=1]="Checked",n[n.CheckAlways=2]="CheckAlways",n[n.Detached=3]="Detached",n[n.Errored=4]="Errored",n[n.Destroyed=5]="Destroyed"}(Pn||(Pn={})),function(n){n[n.Emulated=0]="Emulated",n[n.None=2]="None",n[n.ShadowDom=3]="ShadowDom"}($n||($n={})); /** - * @license Angular v12.2.16 - * (c) 2010-2021 Google LLC. https://angular.io/ - * License: MIT + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license */ +const vn=(()=>typeof globalThis<"u"&&globalThis||typeof global<"u"&&global||typeof window<"u"&&window||typeof self<"u"&&typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&self)(); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function ot(e){for(var r in e)if(e[r]===ot)return r;throw Error("Could not find renamed property on target object.")}function kt(e,r){for(var i in r)r.hasOwnProperty(i)&&!e.hasOwnProperty(i)&&(e[i]=r[i])} + */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function _t(e){if("string"==typeof e)return e;if(Array.isArray(e))return"["+e.map(_t).join(", ")+"]";if(null==e)return""+e;if(e.overriddenName)return"".concat(e.overriddenName);if(e.name)return"".concat(e.name);var r=e.toString();if(null==r)return""+r;var i=r.indexOf("\n");return-1===i?r:r.substring(0,i)}function Xt(e,r){return null==e||""===e?null===r?"":r:null==r||""===r?e:e+" "+r} + */ +const Ee={},ye=[],nt=de({\u0275cmp:de}),Ot=de({\u0275dir:de}),un=de({\u0275pipe:de}),Un=de({\u0275mod:de}),Vn=de({\u0275fac:de}),Fi=de({__NG_ELEMENT_ID__:de}); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var Jt=ot({__forward_ref__:ot});function Wt(e){return e.__forward_ref__=Wt,e.toString=function(){return _t(this())},e}function Ft(e){return mn(e)?e():e}function mn(e){return"function"==typeof e&&e.hasOwnProperty(Jt)&&e.__forward_ref__===Wt} + */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var he=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(u,d){var f;return(0,pe.Z)(this,i),(f=r.call(this,on(u,d))).code=u,f}return(0,ce.Z)(i)}((0,ye.Z)(Error)); + */ +let Cr=0;function Lr(n){return an(()=>{const i=n.type,l=!0===n.standalone,c={},d={type:i,providersResolver:null,decls:n.decls,vars:n.vars,factory:null,template:n.template||null,consts:n.consts||null,ngContentSelectors:n.ngContentSelectors,hostBindings:n.hostBindings||null,hostVars:n.hostVars||0,hostAttrs:n.hostAttrs||null,contentQueries:n.contentQueries||null,declaredInputs:c,inputs:null,outputs:null,exportAs:n.exportAs||null,onPush:n.changeDetection===zt.OnPush,directiveDefs:null,pipeDefs:null,standalone:l,dependencies:l&&n.dependencies||null,getStandaloneInjector:null,selectors:n.selectors||ye,viewQuery:n.viewQuery||null,features:n.features||null,data:n.data||{},encapsulation:n.encapsulation||$n.Emulated,id:"c"+Cr++,styles:n.styles||ye,_:null,setInput:null,schemas:n.schemas||null,tView:null},g=n.dependencies,v=n.features;return d.inputs=It(n.inputs,c),d.outputs=It(n.outputs),v&&v.forEach(I=>I(d)),d.directiveDefs=g?()=>("function"==typeof g?g():g).map(Oi).filter(At):null,d.pipeDefs=g?()=>("function"==typeof g?g():g).map(oi).filter(At):null,d})}function qi(n,i,l){const c=n.\u0275cmp;c.directiveDefs=()=>("function"==typeof i?i():i).map(Oi),c.pipeDefs=()=>("function"==typeof l?l():l).map(oi)}function Oi(n){return In(n)||qn(n)}function At(n){return null!==n}function ue(n){return an(()=>({type:n.type,bootstrap:n.bootstrap||ye,declarations:n.declarations||ye,imports:n.imports||ye,exports:n.exports||ye,transitiveCompileScopes:null,schemas:n.schemas||null,id:n.id||null}))}function ze(n,i){return an(()=>{const l=Xi(n,!0);l.declarations=i.declarations||ye,l.imports=i.imports||ye,l.exports=i.exports||ye})}function It(n,i){if(null==n)return Ee;const l={};for(const c in n)if(n.hasOwnProperty(c)){let d=n[c],g=d;Array.isArray(d)&&(g=d[1],d=d[0]),l[d]=c,i&&(i[d]=g)}return l}const sn=Lr;function yn(n){return{type:n.type,name:n.name,factory:null,pure:!1!==n.pure,standalone:!0===n.standalone,onDestroy:n.type.prototype.ngOnDestroy||null}}function In(n){return n[nt]||null}function qn(n){return n[Ot]||null}function oi(n){return n[un]||null}function ai(n){const i=In(n)||qn(n)||oi(n);return null!==i&&i.standalone}function Xi(n,i){const l=n[Un]||null;if(!l&&!0===i)throw new Error(`Type ${Pe(n)} does not have '\u0275mod' property.`);return l} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */new Set(["100","200","201","300","301","302"]);function on(e,r){var i=e?"NG0".concat(e,": "):"";return"".concat(i).concat(r)} + */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function pt(e){return"string"==typeof e?e:null==e?"":String(e)}function xt(e){return"function"==typeof e?e.name||e.toString():"object"==typeof e&&null!=e&&"function"==typeof e.type?e.type.name||e.type.toString():pt(e)}function Je(e,r){var i=r?" in ".concat(r):"";throw new he("201","No provider for ".concat(xt(e)," found").concat(i))} + */ +function Or(n){return Array.isArray(n)&&"object"==typeof n[1]}function Xr(n){return Array.isArray(n)&&!0===n[1]}function eo(n){return 0!=(8&n.flags)}function wo(n){return 2==(2&n.flags)}function yr(n){return 1==(1&n.flags)}function bi(n){return null!==n.template}function Jo(n){return 0!=(256&n[2])} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function _n(e,r,i){e!=r&&$(i,e,r,"==")}function me(e,r){null==e&&$(r,e,null,"!=")}function $(e,r,i,u){throw new Error("ASSERTION ERROR: ".concat(e)+(null==u?"":" [Expected=> ".concat(i," ").concat(u," ").concat(r," <=Actual]")))} + */ /** * @license * Copyright Google LLC All Rights Reserved. @@ -738,29 +877,28 @@ E.JF; * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function ht(e){return{token:e.token,providedIn:e.providedIn||null,factory:e.factory,value:void 0}}function Gt(e){return{providers:e.providers||[],imports:e.imports||[]}}function un(e){return bn(e,Fn)||bn(e,Mr)}function bn(e,r){return e.hasOwnProperty(r)?e[r]:null}function ir(e){return e&&(e.hasOwnProperty(di)||e.hasOwnProperty(Gi))?e[di]:null}var jn,Dr,We,Pe,yt,Fn=ot({"\u0275prov":ot}),di=ot({"\u0275inj":ot}),Mr=ot({ngInjectableDef:ot}),Gi=ot({ngInjectorDef:ot}); +function go(n,i){return n.hasOwnProperty(Vn)?n[Vn]:null} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Or(){return Dr}function Lr(e){var r=Dr;return Dr=e,r}function vi(e,r,i){var u=un(e);return u&&"root"==u.providedIn?void 0===u.value?u.value=u.factory():u.value:i&jn.Optional?null:void 0!==r?r:void Je(_t(e),"Injector")} + */class Os{constructor(i,l,c){this.previousValue=i,this.currentValue=l,this.firstChange=c}isFirstChange(){return this.firstChange}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -function wr(e){return{toString:e}.toString()} + */function hs(){return Kr}function Kr(n){return n.type.prototype.ngOnChanges&&(n.setInput=so),gs}function gs(){const n=ki(this),i=n?.current;if(i){const l=n.previous;if(l===Ee)n.previous=i;else for(let c in i)l[c]=i[c];n.current=null,this.ngOnChanges(i)}}function so(n,i,l,c){const d=ki(n)||function Eo(n,i){return n[ea]=i} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */!function(e){e[e.Default=0]="Default",e[e.Host=1]="Host",e[e.Self=2]="Self",e[e.SkipSelf=4]="SkipSelf",e[e.Optional=8]="Optional"}(jn||(jn={})),function(e){e[e.OnPush=0]="OnPush",e[e.Default=1]="Default"}(We||(We={})),function(e){e[e.CheckOnce=0]="CheckOnce",e[e.Checked=1]="Checked",e[e.CheckAlways=2]="CheckAlways",e[e.Detached=3]="Detached",e[e.Errored=4]="Errored",e[e.Destroyed=5]="Destroyed"}(Pe||(Pe={})),function(e){e[e.Emulated=0]="Emulated",e[e.None=2]="None",e[e.ShadowDom=3]="ShadowDom"}(yt||(yt={})); + */(n,{previous:Ee,current:null}),g=d.current||(d.current={}),v=d.previous,I=this.declaredInputs[l],O=v[I];g[I]=new Os(O&&O.currentValue,i,v===Ee),n[c]=i}hs.ngInherit=!0;const ea="__ngSimpleChanges__";function ki(n){return n[ea]||null}let Io=null;const hr=function(n,i,l){Io?.(n,i,l)},_i="math"; /** * @license * Copyright Google LLC All Rights Reserved. @@ -768,7 +906,6 @@ function wr(e){return{toString:e}.toString()} * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Qt="undefined"!=typeof globalThis&&globalThis,yn="undefined"!=typeof window&&window,sr="undefined"!=typeof self&&"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,tr="undefined"!=typeof global&&global,nr=Qt||tr||yn||sr; /** * @license * Copyright Google LLC All Rights Reserved. @@ -776,36 +913,35 @@ var Qt="undefined"!=typeof globalThis&&globalThis,yn="undefined"!=typeof window& * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +function ui(n){for(;Array.isArray(n);)n=n[0];return n}function Ha(n,i){return ui(i[n])}function ci(n,i){return ui(i[n.index])}function mo(n,i){return n.data[i]}function uo(n,i){return n[i]}function zi(n,i){const l=i[n];return Or(l)?l:l[0]}function Ia(n){return 64==(64&n[2])}function co(n,i){return null==i?null:n[i]}function Rr(n){n[18]=0}function ha(n,i){n[5]+=i;let l=n,c=n[3];for(;null!==c&&(1===i&&1===l[5]||-1===i&&0===l[5]);)c[5]+=i,l=c,c=c[3] /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var _i={},$n=[],Xr=ot({"\u0275cmp":ot}),yi=ot({"\u0275dir":ot}),Yn=ot({"\u0275pipe":ot}),qr=ot({"\u0275mod":ot}),ya=ot({"\u0275loc":ot}),Fr=ot({"\u0275fac":ot}),Ci=ot({__NG_ELEMENT_ID__:ot}),Ri=0; + */}const An={lFrame:Ci(null),bindingsEnabled:!0};function $t(){return An.bindingsEnabled}function hi(){An.bindingsEnabled=!0}function Yr(){An.bindingsEnabled=!1}function Vt(){return An.lFrame.lView}function Zn(){return An.lFrame.tView}function Va(n){return An.lFrame.contextLView=n,n[8]}function ks(n){return An.lFrame.contextLView=null,n}function Qi(){let n=ga();for(;null!==n&&64===n.type;)n=n.parent;return n}function ga(){return An.lFrame.currentTNode}function ta(){const n=An.lFrame,i=n.currentTNode;return n.isParent?i:i.parent}function to(n,i){const l=An.lFrame;l.currentTNode=n,l.isParent=i}function La(){return An.lFrame.isParent}function is(){An.lFrame.isParent=!1}function kn(){const n=An.lFrame;let i=n.bindingRootIndex;return-1===i&&(i=n.bindingRootIndex=n.tView.bindingStartIndex),i}function zo(){return An.lFrame.bindingIndex}function r1(n){return An.lFrame.bindingIndex=n}function na(){return An.lFrame.bindingIndex++}function wr(n){const i=An.lFrame,l=i.bindingIndex;return i.bindingIndex=i.bindingIndex+n,l}function wi(n){An.lFrame.inI18n=n}function k(n,i){const l=An.lFrame;l.bindingIndex=l.bindingRootIndex=n,ne(i)}function ne(n){An.lFrame.currentDirectiveIndex=n}function Se(n){const i=An.lFrame.currentDirectiveIndex;return-1===i?null:n[i]}function gt(){return An.lFrame.currentQueryIndex}function Pt(n){An.lFrame.currentQueryIndex=n}function pn(n){const i=n[1];return 2===i.type?i.declTNode:1===i.type?n[6]:null}function On(n,i,l){if(l&q.SkipSelf){let d=i,g=n;for(;(d=d.parent,null===d&&!(l&q.Host))&&(d=pn(g),!(null===d||(g=g[15],10&d.type))););if(null===d)return!1;i=d,n=g}const c=An.lFrame=di();return c.currentTNode=i,c.lView=n,!0}function si(n){const i=di(),l=n[1];An.lFrame=i,i.currentTNode=l.firstChild,i.lView=n,i.tView=l,i.contextLView=n,i.bindingIndex=l.bindingStartIndex,i.inI18n=!1}function di(){const n=An.lFrame,i=null===n?null:n.child;return null===i?Ci(n):i}function Ci(n){const i={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:n,child:null,inI18n:!1};return null!==n&&(n.child=i),i}function ei(){const n=An.lFrame;return An.lFrame=n.parent,n.currentTNode=null,n.lView=null,n}const Ui=ei;function fi(){const n=ei();n.isParent=!0,n.tView=null,n.selectedIndex=-1,n.contextLView=null,n.elementDepthCount=0,n.currentDirectiveIndex=-1,n.currentNamespace=null,n.bindingRootIndex=-1,n.bindingIndex=-1,n.currentQueryIndex=0}function xr(n){return(An.lFrame.contextLView=function Lo(n,i){for(;n>0;)i=i[15],n--;return i}(n,An.lFrame.contextLView))[8]}function Q(){return An.lFrame.selectedIndex}function V(n){An.lFrame.selectedIndex=n}function he(){const n=An.lFrame;return mo(n.tView,n.selectedIndex)}function Le(){An.lFrame.currentNamespace="svg"}function Ve(){An.lFrame.currentNamespace=_i}function Ct(){!function cn(){An.lFrame.currentNamespace=null}()}function Yn(n,i){for(let l=i.directiveStart,c=i.directiveEnd;l=c)break}else i[O]<0&&(n[18]+=65536),(I>11>16&&(3&n[2])===i){n[2]+=2048,hr(4,I,g);try{g.call(I)}finally{hr(5,I,g)}}}else{hr(4,I,g);try{g.call(I)}finally{hr(5,I,g)}}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function $r(e){return wr(function(){var i={},u={type:e.type,providersResolver:null,decls:e.decls,vars:e.vars,factory:null,template:e.template||null,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:i,inputs:null,outputs:null,exportAs:e.exportAs||null,onPush:e.changeDetection===We.OnPush,directiveDefs:null,pipeDefs:null,selectors:e.selectors||$n,viewQuery:e.viewQuery||null,features:e.features||null,data:e.data||{},encapsulation:e.encapsulation||yt.Emulated,id:"c",styles:e.styles||$n,_:null,setInput:null,schemas:e.schemas||null,tView:null},d=e.directives,f=e.features,g=e.pipes;return u.id+=Ri++,u.inputs=bt(e.inputs,i),u.outputs=bt(e.outputs),f&&f.forEach(function(v){return v(u)}),u.directiveDefs=d?function(){return("function"==typeof d?d():d).map(sa)}:null,u.pipeDefs=g?function(){return("function"==typeof g?g():g).map(Nt)}:null,u})}function Er(e,r,i){var u=e.\u0275cmp;u.directiveDefs=function(){return r.map(sa)},u.pipeDefs=function(){return i.map(Nt)}}function sa(e){return kn(e)||Qn(e)}function Nt(e){return pr(e)}var Mt={};function nt(e){return wr(function(){var r={type:e.type,bootstrap:e.bootstrap||$n,declarations:e.declarations||$n,imports:e.imports||$n,exports:e.exports||$n,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null};return null!=e.id&&(Mt[e.id]=e.type),r})}function lt(e,r){return wr(function(){var i=zr(e,!0);i.declarations=r.declarations||$n,i.imports=r.imports||$n,i.exports=r.exports||$n})}function bt(e,r){if(null==e)return _i;var i={};for(var u in e)if(e.hasOwnProperty(u)){var d=e[u],f=d;Array.isArray(d)&&(f=d[1],d=d[0]),i[d]=u,r&&(r[d]=f)}return i}var Vt=$r;function En(e){return{type:e.type,name:e.name,factory:null,pure:!1!==e.pure,onDestroy:e.type.prototype.ngOnDestroy||null}}function kn(e){return e[Xr]||null}function Qn(e){return e[yi]||null}function pr(e){return e[Yn]||null}function zr(e,r){var i=e[qr]||null;if(!i&&!0===r)throw new Error("Type ".concat(_t(e)," does not have '\u0275mod' property."));return i} + */class po{constructor(i,l,c){this.factory=i,this.resolving=!1,this.canSeeViewProviders=l,this.injectImpl=c}}function ia(n,i,l){let c=0;for(;ci){v=g-1;break}}}for(;g>16}(n),c=i;for(;l>0;)c=c[15],l--;return c} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ + */let rs=!0;function Ca(n){const i=rs;return rs=n,i}let a1=0;const Ya={};function s1(n,i){const l=z(n,i);if(-1!==l)return l;const c=i[1];c.firstCreatePass&&(n.injectorIndex=i.length,C2(c.data,n),C2(i,null),C2(c.blueprint,null));const d=A(n,i),g=n.injectorIndex;if(_a(d)){const v=oa(d),I=jo(d,i),O=I[1].data;for(let Y=0;Y<8;Y++)i[g+Y]=I[v+Y]|O[v+Y]}return i[g+8]=d,g}function C2(n,i){n.push(0,0,0,0,0,0,0,0,i)}function z(n,i){return-1===n.injectorIndex||n.parent&&n.parent.injectorIndex===n.injectorIndex||null===i[n.injectorIndex+8]?-1:n.injectorIndex}function A(n,i){if(n.parent&&-1!==n.parent.injectorIndex)return n.parent.injectorIndex;let l=0,c=null,d=i;for(;null!==d;){if(c=v2(d),null===c)return-1;if(l++,d=d[15],-1!==c.injectorIndex)return c.injectorIndex|l<<16}return-1}function te(n,i,l){!function lu(n,i,l){let c;"string"==typeof l?c=l.charCodeAt(0)||0:l.hasOwnProperty(Fi)&&(c=l[Fi]),null==c&&(c=l[Fi]=a1++);const d=255&c,g=1<>5)]|=g}(n,i,l)}function Ae(n,i,l){if(l&q.Optional||void 0!==n)return n;wt()}function tt(n,i,l,c){if(l&q.Optional&&void 0===c&&(c=null),0==(l&(q.Self|q.Host))){const d=n[9],g=ut(void 0);try{return d?d.get(i,c,l&q.Optional):nn(i,c,l&q.Optional)}finally{ut(g)}}return Ae(c,0,l)}function tn(n,i,l,c=q.Default,d){if(null!==n){if(1024&i[2]){const v=function l1(n,i,l,c,d){let g=n,v=i;for(;null!==g&&null!==v&&1024&v[2]&&!(256&v[2]);){const I=Gn(g,v,l,c|q.Self,Ya);if(I!==Ya)return I;let O=g.parent;if(!O){const Y=v[21];if(Y){const ge=Y.get(l,Ya,c);if(ge!==Ya)return ge}O=v2(v),v=v[15]}g=O}return d}(n,i,l,c,Ya);if(v!==Ya)return v}const g=Gn(n,i,l,c,Ya);if(g!==Ya)return g}return tt(i,l,c,d)}function Gn(n,i,l,c,d){const g=function zr(n){if("string"==typeof n)return n.charCodeAt(0)||0;const i=n.hasOwnProperty(Fi)?n[Fi]:void 0;return"number"==typeof i?i>=0?255&i:Pi:i}(l);if("function"==typeof g){if(!On(i,n,c))return c&q.Host?Ae(d,0,c):tt(i,l,c,d);try{const v=g(c);if(null!=v||c&q.Optional)return v;wt()}finally{Ui()}}else if("number"==typeof g){let v=null,I=z(n,i),O=-1,Y=c&q.Host?i[16][6]:null;for((-1===I||c&q.SkipSelf)&&(O=-1===I?A(n,i):i[I+8],-1!==O&&Ns(c,!1)?(v=i[1],I=oa(O),i=jo(O,i)):I=-1);-1!==I;){const ge=i[1];if(Co(g,I,ge.data)){const qe=Rn(I,i,l,v,c,Y);if(qe!==Ya)return qe}O=i[I+8],-1!==O&&Ns(c,i[1].data[I+8]===Y)&&Co(g,I,i)?(v=ge,I=oa(O),i=jo(O,i)):I=-1}}return d}function Rn(n,i,l,c,d,g){const v=i[1],I=v.data[n+8],ge=ni(I,v,l,null==c?wo(I)&&rs:c!=v&&0!=(3&I.type),d&q.Host&&g===I);return null!==ge?ji(i,v,ge,I):Ya}function ni(n,i,l,c,d){const g=n.providerIndexes,v=i.data,I=1048575&g,O=n.directiveStart,Y=n.directiveEnd,ge=g>>20,ot=d?I+ge:Y;for(let xt=c?I:I+ge;xt=O&&Wt.type===l)return xt}if(d){const xt=v[O];if(xt&&bi(xt)&&xt.type===l)return O}return null}function ji(n,i,l,c){let d=n[l];const g=i.data;if(function Wa(n){return n instanceof po}(d)){const v=d;v.resolving&&function st(n,i){const l=i?`. Dependency path: ${i.join(" > ")} > ${n}`:"";throw new Z(-200,`Circular dependency in DI detected for ${n}${l}`)}(Qe(g[l]));const I=Ca(v.canSeeViewProviders);v.resolving=!0;const O=v.injectImpl?ut(v.injectImpl):null;On(n,c,q.Default);try{d=n[l]=v.factory(void 0,g,n,c),i.firstCreatePass&&l>=c.directiveStart&& /** * @license * Copyright Google LLC All Rights Reserved. @@ -813,106 +949,106 @@ function ki(e){return Array.isArray(e)&&"object"==typeof e[1]}function Hn(e){ret * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function N(e,r){return e.hasOwnProperty(Fr)?e[Fr]:null} +function Kn(n,i,l){const{ngOnChanges:c,ngOnInit:d,ngDoCheck:g}=i.type.prototype;if(c){const v=Kr(i);(l.preOrderHooks||(l.preOrderHooks=[])).push(n,v),(l.preOrderCheckHooks||(l.preOrderCheckHooks=[])).push(n,v)}d&&(l.preOrderHooks||(l.preOrderHooks=[])).push(0-n,d),g&&((l.preOrderHooks||(l.preOrderHooks=[])).push(n,g),(l.preOrderCheckHooks||(l.preOrderCheckHooks=[])).push(n,g))}(l,g[l],i)}finally{null!==O&&ut(O),Ca(I),v.resolving=!1,Ui()}}return d}function Co(n,i,l){const c=1<>5)]&c)}function Ns(n,i){return!(n&q.Self||n&q.Host&&i)}class va{constructor(i,l){this._tNode=i,this._lView=l}get(i,l,c){return tn(this._tNode,this._lView,i,c,l)}}function Pi(){return new va(Qi(),Vt())}function jr(n){return an(()=>{const i=n.prototype.constructor,l=i[Vn]||Oa(i),c=Object.prototype;let d=Object.getPrototypeOf(n.prototype).constructor;for(;d&&d!==c;){const g=d[Vn]||Oa(d);if(g&&g!==l)return g;d=Object.getPrototypeOf(d)}return g=>new g})}function Oa(n){return He(n)?()=>{const i=Oa(Ie(n));return i&&i()}:go(n)}function v2(n){const i=n[1],l=i.type;return 2===l?i.declTNode:1===l?n[6]:null} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var ie=function(){function e(r,i,u){(0,pe.Z)(this,e),this.previousValue=r,this.currentValue=i,this.firstChange=u}return(0,ce.Z)(e,[{key:"isFirstChange",value:function(){return this.firstChange}}]),e}(); + */function zl(n){return function ve(n,i){if("class"===i)return n.classes;if("style"===i)return n.styles;const l=n.attrs;if(l){const c=l.length;let d=0;for(;d{const g=ho(i);function v(...I){if(this instanceof v)return g.call(this,...I),this;const O=new v(...I);return function(ge){return d&&d(ge,...I),(ge.hasOwnProperty(aa)?ge[aa]:Object.defineProperty(ge,aa,{value:[]})[aa]).push(O),c&&c(ge),ge}}return l&&(v.prototype=Object.create(l.prototype)),v.prototype.ngMetadataName=n,v.annotationCls=v,v})}function ho(n){return function(...l){if(n){const c=n(...l);for(const d in c)this[d]=c[d]}}}function Fs(n,i,l){return an(()=>{const c=ho(i);function d(...g){if(this instanceof d)return c.apply(this,g),this;const v=new d(...g);return I.annotation=v,I;function I(O,Y,ge){const qe=O.hasOwnProperty(Hi)?O[Hi]:Object.defineProperty(O,Hi,{value:[]})[Hi];for(;qe.length<=ge;)qe.push(null);return(qe[ge]=qe[ge]||[]).push(v),O}}return l&&(d.prototype=Object.create(l.prototype)),d.prototype.ngMetadataName=n,d.annotationCls=d,d})}function sa(n,i,l,c){return an(()=>{const d=ho(i);function g(...v){if(this instanceof g)return d.apply(this,v),this;const I=new g(...v);return function O(Y,ge){const qe=Y.constructor,ot=qe.hasOwnProperty(Aa)?qe[Aa]:Object.defineProperty(qe,Aa,{value:{}})[Aa];ot[ge]=ot.hasOwnProperty(ge)&&ot[ge]||[],ot[ge].unshift(I),c&&c(Y,ge,...v)}}return l&&(g.prototype=Object.create(l.prototype)),g.prototype.ngMetadataName=n,g.annotationCls=g,g})} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */(e,{previous:_i,current:null}),f=d.current||(d.current={}),g=d.previous,v=this.declaredInputs[i],T=g[v];f[v]=new ie(T&&T.currentValue,r,g===_i),e[u]=r}oe.ngInherit=!0;var Un="__ngSimpleChanges__";function jr(e){return e[Un]||null}var oo,hi=null,Gn=function(r,i,u){null!=hi&&hi(r,i,u)},Oi="http://www.w3.org/2000/svg",Ha="http://www.w3.org/1998/MathML/",Co=void 0; + */const ys=Fs("Attribute",n=>({attributeName:n,__NG_ELEMENT_ID__:()=>zl(n)})); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function La(e){Co=e}function zs(){return void 0!==Co?Co:"undefined"!=typeof document?document:void 0} + */class gr{constructor(i,l){this._desc=i,this.ngMetadataName="InjectionToken",this.\u0275prov=void 0,"number"==typeof l?this.__NG_ELEMENT_ID__=l:void 0!==l&&(this.\u0275prov=Ge({token:this,providedIn:l.providedIn||"root",factory:l.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Mi(e){return!!e.listen}!function(e){e[e.Important=1]="Important",e[e.DashCase=2]="DashCase"}(oo||(oo={}));var Mo={createRenderer:function(r,i){return zs()}}; + */new gr("AnalyzeForEntryComponents");class b2{}sa("ContentChildren",(n,i={})=>({selector:n,first:!1,isViewQuery:!1,descendants:!1,emitDistinctChangesOnly:true,...i}),b2),sa("ContentChild",(n,i={})=>({selector:n,first:!0,isViewQuery:!1,descendants:!0,...i}),b2),sa("ViewChildren",(n,i={})=>({selector:n,first:!1,isViewQuery:!0,descendants:!0,emitDistinctChangesOnly:true,...i}),b2) /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Ti(e){for(;Array.isArray(e);)e=e[0];return e}function Jo(e,r){return Ti(r[e])}function Sa(e,r){return Ti(r[e.index])}function wo(e,r){return e.data[r]}function To(e,r){return e[r]}function ai(e,r){var i=r[e];return ki(i)?i:i[0]}function kl(e){return 4==(4&e[2])}function E1(e){return 128==(128&e[2])}function Eo(e,r){return null==r?null:e[r]}function nl(e){e[18]=0}function Us(e,r){e[5]+=r;for(var i=e,u=e[3];null!==u&&(1===r&&1===i[5]||-1===r&&0===i[5]);)u[5]+=r,i=u,u=u[3] + */;const x5=sa("ViewChild",(n,i)=>({selector:n,first:!0,isViewQuery:!0,descendants:!0,...i}),b2);var qs,u3,cu; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */}var Zn={lFrame:lo(null),bindingsEnabled:!0,isInCheckNoChangesMode:!1};function ka(){return Zn.bindingsEnabled}function Ei(){Zn.bindingsEnabled=!0}function Xo(){Zn.bindingsEnabled=!1}function dn(){return Zn.lFrame.lView}function mr(){return Zn.lFrame.tView}function x1(e){return Zn.lFrame.contextLView=e,e[8]}function Gr(){for(var e=Vs();null!==e&&64===e.type;)e=e.parent;return e}function Vs(){return Zn.lFrame.currentTNode}function Fo(){var e=Zn.lFrame,r=e.currentTNode;return e.isParent?r:r.parent}function ha(e,r){var i=Zn.lFrame;i.currentTNode=e,i.isParent=r}function $o(){return Zn.lFrame.isParent}function Ga(){Zn.lFrame.isParent=!1}function ae(){return Zn.isInCheckNoChangesMode}function X(e){Zn.isInCheckNoChangesMode=e}function ke(){var e=Zn.lFrame,r=e.bindingRootIndex;return-1===r&&(r=e.bindingRootIndex=e.tView.bindingStartIndex),r}function Fe(){return Zn.lFrame.bindingIndex}function rt(e){return Zn.lFrame.bindingIndex=e}function jt(){return Zn.lFrame.bindingIndex++}function gn(e){var r=Zn.lFrame,i=r.bindingIndex;return r.bindingIndex=r.bindingIndex+e,i}function or(e){Zn.lFrame.inI18n=e}function gr(e,r){var i=Zn.lFrame;i.bindingIndex=i.bindingRootIndex=e,li(r)}function li(e){Zn.lFrame.currentDirectiveIndex=e}function Zi(e){var r=Zn.lFrame.currentDirectiveIndex;return-1===r?null:e[r]}function xo(){return Zn.lFrame.currentQueryIndex}function Wa(e){Zn.lFrame.currentQueryIndex=e}function Tr(e){var r=e[1];return 2===r.type?r.declTNode:1===r.type?e[6]:null}function Oa(e,r,i){if(i&jn.SkipSelf){for(var u=r,d=e;null===(u=u.parent)&&!(i&jn.Host)&&!(null===(u=Tr(d))||(d=d[15],10&u.type)););if(null===u)return!1;r=u,e=d}var f=Zn.lFrame=Qa();return f.currentTNode=r,f.lView=e,!0}function so(e){var r=Qa(),i=e[1];Zn.lFrame=r,r.currentTNode=i.firstChild,r.lView=e,r.tView=i,r.contextLView=e,r.bindingIndex=i.bindingStartIndex,r.inI18n=!1}function Qa(){var e=Zn.lFrame,r=null===e?null:e.child;return null===r?lo(e):r}function lo(e){var r={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:e,child:null,inI18n:!1};return null!==e&&(e.child=r),r}function es(){var e=Zn.lFrame;return Zn.lFrame=e.parent,e.currentTNode=null,e.lView=null,e}var Al=es;function rl(){var e=es();e.isParent=!0,e.tView=null,e.selectedIndex=-1,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function ts(e){var r=Zn.lFrame.contextLView=function(e,r){for(;e>0;)r=r[15],e--;return r}(e,Zn.lFrame.contextLView);return r[8]}function Qi(){return Zn.lFrame.selectedIndex}function uo(e){Zn.lFrame.selectedIndex=e}function gi(){var e=Zn.lFrame;return wo(e.tView,e.selectedIndex)}function Bo(){Zn.lFrame.currentNamespace=Oi}function Io(){Zn.lFrame.currentNamespace=Ha}function Do(){Zn.lFrame.currentNamespace=null}function qo(e,r){for(var i=r.directiveStart,u=r.directiveEnd;i=u)break}else r[T]<0&&(e[18]+=65536),(v>11>16&&(3&e[2])===r){e[2]+=2048,Gn(4,v,f);try{f.call(v)}finally{Gn(5,v,f)}}}else{Gn(4,v,f);try{f.call(v)}finally{Gn(5,v,f)}}} + */ +function Ur(n){const i=vn.ng;if(i&&i.\u0275compilerFacade)return i.\u0275compilerFacade;throw new Error("JIT compiler unavailable")} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var zo=(0,ce.Z)(function e(r,i,u){(0,pe.Z)(this,e),this.factory=r,this.resolving=!1,this.canSeeViewProviders=i,this.injectImpl=u});function Be(e,r,i){for(var u=Mi(e),d=0;dr){g=f-1;break}}}for(;f>16}(e),u=r;i>0;)u=u[15],i--;return u} + */function ka(n,i){void 0===i&&(i=n);for(let l=0;lArray.isArray(l)?Bs(l,i):i(l))}function Zr(n,i,l){i>=n.length?n.push(l):n.splice(i,0,l)}function Jt(n,i){return i>=n.length-1?n.pop():n.splice(i,1)[0]}function os(n,i){const l=[];for(let c=0;c=0?n[1|c]=l:(c=~c,function Rs(n,i,l,c){let d=n.length;if(d==i)n.push(l,c);else if(1===d)n.push(c,n[0]),n[0]=l;else{for(d--,n.push(n[d-1],n[d]);d>i;){const g=d-2;n[d]=n[g],d--}n[i]=l,n[i+1]=c}}(n,c,i,l)),c}function Ja(n,i){const l=u1(n,i);if(l>=0)return n[1|l]}function u1(n,i){return c3(n,i,1)}function c3(n,i,l){let c=0,d=n.length>>l;for(;d!==c;){const g=c+(d-c>>1),v=n[g<i?d=g:c=g+1}return~(d<>5)]|=f}(e,r,i)}function Ks(e,r,i){if(i&jn.Optional)return e;Je(r,"NodeInjector")}function d0(e,r,i,u){if(i&jn.Optional&&void 0===u&&(u=null),0==(i&(jn.Self|jn.Host))){var d=e[9],f=Lr(void 0);try{return d?d.get(r,u,i&jn.Optional):vi(r,u,i&jn.Optional)}finally{Lr(f)}}return Ks(u,r,i)}function D1(e,r,i){var u=arguments.length>3&&void 0!==arguments[3]?arguments[3]:jn.Default,d=arguments.length>4?arguments[4]:void 0;if(null!==e){var f=_5(i);if("function"==typeof f){if(!Oa(r,e,u))return u&jn.Host?Ks(d,i,u):d0(r,i,u,d);try{var g=f(u);if(null!=g||u&jn.Optional)return g;Je(i)}finally{Al()}}else if("number"==typeof f){var v=null,T=Wc(e,r),Z=-1,ee=u&jn.Host?r[16][6]:null;for((-1===T||u&jn.SkipSelf)&&(-1!==(Z=-1===T?ca(e,r):r[T+8])&&Yc(u,!1)?(v=r[1],T=Wr(Z),r=ga(Z,r)):T=-1);-1!==T;){var _e=r[1];if(Iu(f,T,_e.data)){var Ee=Qc(T,r,i,v,u,ee);if(Ee!==xu)return Ee}-1!==(Z=r[T+8])&&Yc(u,r[1].data[T+8]===ee)&&Iu(f,T,r)?(v=_e,T=Wr(Z),r=ga(Z,r)):T=-1}}}return d0(r,i,u,d)}var xu={};function f0(){return new Fl(Gr(),dn())}function Qc(e,r,i,u,d,f){var g=r[1],v=g.data[e+8],ee=Rl(v,g,i,null==u?ri(v)&&Yi:u!=g&&0!=(3&v.type),d&jn.Host&&f===v);return null!==ee?Is(r,g,ee,v):xu}function Rl(e,r,i,u,d){for(var f=e.providerIndexes,g=r.data,v=1048575&f,T=e.directiveStart,Z=e.directiveEnd,ee=f>>20,Ee=d?v+ee:Z,Ge=u?v:v+ee;Ge=T&&it.type===i)return Ge}if(d){var Et=g[T];if(Et&&ii(Et)&&Et.type===i)return T}return null}function Is(e,r,i,u){var d=e[i],f=r.data;if(function(e){return e instanceof zo}(d)){var g=d;g.resolving&&function(e,r){var i=r?". Dependency path: ".concat(r.join(" > ")," > ").concat(e):"";throw new he("200","Circular dependency in DI detected for ".concat(e).concat(i))}(xt(f[i]));var v=wi(g.canSeeViewProviders);g.resolving=!0;var T=g.injectImpl?Lr(g.injectImpl):null;Oa(e,u,jn.Default);try{d=e[i]=g.factory(void 0,f,e,u),r.firstCreatePass&&i>=u.directiveStart&& + */const d3=/^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*(arguments|(?:[^()]+\(\[\],)?[^()]+\(arguments\).*)\)/,fu=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{/,ll=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(/,ul=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(\)\s*{[^}]*super\(\.\.\.arguments\)/;class pu{constructor(i){this._reflect=i||vn.Reflect}factory(i){return(...l)=>new i(...l)}_zipTypesAndAnnotations(i,l){let c;c=os(typeof i>"u"?l.length:i.length);for(let d=0;d"u"?c[d]=[]:i[d]&&i[d]!=Object?c[d]=[i[d]]:c[d]=[],l&&null!=l[d]&&(c[d]=c[d].concat(l[d]));return c}_ownParameters(i,l){if(function Lc(n){return d3.test(n)||ul.test(n)||fu.test(n)&&!ll.test(n)}(i.toString()))return null;if(i.parameters&&i.parameters!==l.parameters)return i.parameters;const d=i.ctorParameters;if(d&&d!==l.ctorParameters){const I="function"==typeof d?d():d,O=I.map(ge=>ge&&ge.type),Y=I.map(ge=>ge&&hu(ge.decorators));return this._zipTypesAndAnnotations(O,Y)}const g=i.hasOwnProperty(Hi)&&i[Hi],v=this._reflect&&this._reflect.getOwnMetadata&&this._reflect.getOwnMetadata("design:paramtypes",i);return v||g?this._zipTypesAndAnnotations(v,g):os(i.length)}parameters(i){if(!Ul(i))return[];const l=cl(i);let c=this._ownParameters(i,l);return!c&&l!==Object&&(c=this.parameters(l)),c||[]}_ownAnnotations(i,l){if(i.annotations&&i.annotations!==l.annotations){let c=i.annotations;return"function"==typeof c&&c.annotations&&(c=c.annotations),c}return i.decorators&&i.decorators!==l.decorators?hu(i.decorators):i.hasOwnProperty(aa)?i[aa]:null}annotations(i){if(!Ul(i))return[];const l=cl(i),c=this._ownAnnotations(i,l)||[];return(l!==Object?this.annotations(l):[]).concat(c)}_ownPropMetadata(i,l){if(i.propMetadata&&i.propMetadata!==l.propMetadata){let c=i.propMetadata;return"function"==typeof c&&c.propMetadata&&(c=c.propMetadata),c}if(i.propDecorators&&i.propDecorators!==l.propDecorators){const c=i.propDecorators,d={};return Object.keys(c).forEach(g=>{d[g]=hu(c[g])}),d}return i.hasOwnProperty(Aa)?i[Aa]:null}propMetadata(i){if(!Ul(i))return{};const l=cl(i),c={};if(l!==Object){const g=this.propMetadata(l);Object.keys(g).forEach(v=>{c[v]=g[v]})}const d=this._ownPropMetadata(i,l);return d&&Object.keys(d).forEach(g=>{const v=[];c.hasOwnProperty(g)&&v.push(...c[g]),v.push(...d[g]),c[g]=v}),c}ownPropMetadata(i){return Ul(i)&&this._ownPropMetadata(i,cl(i))||{}}hasLifecycleHook(i,l){return i instanceof Nr&&l in i.prototype}}function hu(n){return n?n.map(i=>new(0,i.type.annotationCls)(...i.args?i.args:[])):[]}function cl(n){const i=n.prototype?Object.getPrototypeOf(n.prototype):null;return(i?i.constructor:null)||Object} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -function(e,r,i){var u=r.type.prototype,d=u.ngOnChanges,f=u.ngOnInit,g=u.ngDoCheck;if(d){var v=Ve(r);(i.preOrderHooks||(i.preOrderHooks=[])).push(e,v),(i.preOrderCheckHooks||(i.preOrderCheckHooks=[])).push(e,v)}f&&(i.preOrderHooks||(i.preOrderHooks=[])).push(0-e,f),g&&((i.preOrderHooks||(i.preOrderHooks=[])).push(e,g),(i.preOrderCheckHooks||(i.preOrderCheckHooks=[])).push(e,g))}(i,f[i],r)}finally{null!==T&&Lr(T),wi(v),g.resolving=!1,Al()}}return d}function _5(e){if("string"==typeof e)return e.charCodeAt(0)||0;var r=e.hasOwnProperty(Ci)?e[Ci]:void 0;return"number"==typeof r?r>=0?255&r:f0:r}function Iu(e,r,i){var u=1<>5)]&u)}function Yc(e,r){return!(e&jn.Self||e&jn.Host&&r)}var Fl=function(){function e(r,i){(0,pe.Z)(this,e),this._tNode=r,this._lView=i}return(0,ce.Z)(e,[{key:"get",value:function(i,u,d){return D1(this._tNode,this._lView,i,d,u)}}]),e}();function Du(e){return wr(function(){for(var r=e.prototype.constructor,i=r[Fr]||Vi(r),u=Object.prototype,d=Object.getPrototypeOf(e.prototype).constructor;d&&d!==u;){var f=d[Fr]||Vi(d);if(f&&f!==i)return f;d=Object.getPrototypeOf(d)}return function(g){return new g}})}function Vi(e){return mn(e)?function(){var r=Vi(Ft(e));return r&&r()}:N(e)} + */const js={},gu="__NG_DI_FLAG__",dl="ngTempTokenPath",Sc=/\n/gm,mu="__source";let F1;function c1(n){const i=F1;return F1=n,i}function f3(n,i=q.Default){if(void 0===F1)throw new Z(-203,!1);return null===F1?nn(n,void 0,i):F1.get(n,i&q.Optional?null:void 0,i)}function Hr(n,i=q.Default){return(function je(){return re}()||f3)(Ie(n),i)}function Zl(n){throw new Z(202,!1)}function p3(n,i=q.Default){return"number"!=typeof i&&(i=0|(i.optional&&8)|(i.host&&1)|(i.self&&2)|(i.skipSelf&&4)),Hr(n,i)}function M2(n){const i=[];for(let l=0;l ");else if("object"==typeof i){let g=[];for(let v in i)if(i.hasOwnProperty(v)){let I=i[v];g.push(v+":"+("string"==typeof I?JSON.stringify(I):Pe(I)))}d=`{${g.join(", ")}}`}return`${l}${c?"("+c+")":""}[${d}]: ${n.replace(Sc,"\n ")}`} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function V2(e){return function(e,r){if("class"===r)return e.classes;if("style"===r)return e.styles;var i=e.attrs;if(i)for(var u=i.length,d=0;d({token:n})),-1),Vl=fl(Fs("Optional"),8),Wl=fl(Fs("Self"),2),pl=fl(Fs("SkipSelf"),4),q1=fl(Fs("Host"),1); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var oi="__annotations__",Bl="__parameters__",ql="__prop__metadata__";function Zl(e,r,i,u,d){return wr(function(){var f=rs(r);function g(){for(var v=arguments.length,T=new Array(v),Z=0;Zfunction mr(n){const i={token:null,attribute:null,host:!1,optional:!1,self:!1,skipSelf:!1};if(Array.isArray(n)&&n.length>0)for(let l=0;l1&&void 0!==arguments[1]?arguments[1]:{};return Object.assign({selector:r,first:!1,isViewQuery:!1,descendants:!1,emitDistinctChangesOnly:true},i)},ui),L1("ContentChild",function(r){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.assign({selector:r,first:!0,isViewQuery:!1,descendants:!0},i)},ui),L1("ViewChildren",function(r){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.assign({selector:r,first:!1,isViewQuery:!0,descendants:!0,emitDistinctChangesOnly:true},i)},ui),L1("ViewChild",function(r,i){return Object.assign({selector:r,first:!0,isViewQuery:!0,descendants:!0},i)},ui)); + */(i))}let d1=new Map;const f1=new Set;function _3(n){return!!(n.templateUrl&&!n.hasOwnProperty("template")||n.styleUrls&&n.styleUrls.length)} /** * @license * Copyright Google LLC All Rights Reserved. @@ -920,6 +1056,7 @@ function(e,r,i){var u=r.type.prototype,d=u.ngOnChanges,f=u.ngOnInit,g=u.ngDoChec * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +const Ql=new Map;let w2=!0;function v3(n,i){(function Fc(n,i,l){if(i&&i!==l&&w2)throw new Error(`Duplicate module registered for ${n} - ${Pe(i)} vs ${Pe(i.name)}`)})(i,Ql.get(i)||null,n),Ql.set(i,n)} /** * @license * Copyright Google LLC All Rights Reserved. @@ -927,106 +1064,116 @@ function(e,r,i){var u=r.type.prototype,d=u.ngOnChanges,f=u.ngOnInit,g=u.ngDoChec * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function ra(e){var r=nr.ng;if(r&&r.\u0275compilerFacade)return r.\u0275compilerFacade;throw new Error("JIT compiler unavailable")} +var gl;!function(n){n[n.Important=1]="Important",n[n.DashCase=2]="DashCase"}(gl||(gl={})); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */!function(e){e[e.Directive=0]="Directive",e[e.Component=1]="Component",e[e.Injectable=2]="Injectable",e[e.Pipe=3]="Pipe",e[e.NgModule=4]="NgModule"}(Js||(Js={})),function(e){e[e.Emulated=0]="Emulated",e[e.None=2]="None",e[e.ShadowDom=3]="ShadowDom"}(Jc||(Jc={}));var Q2=Function;function Su(e){return"function"==typeof e} + */ +const w3=/^>|^->||--!>|)/;function x3(n){return n.replace(w3,i=>i.replace(bu,"\u200b$1\u200b"))} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function jo(e,r){void 0===r&&(r=e);for(var i=0;i=e.length?e.push(i):e.splice(r,0,i)}function P1(e,r){return r>=e.length-1?e.pop():e.splice(r,1)[0]}function as(e,r){for(var i=[],u=0;u=0?e[1|u]=i:function(e,r,i,u){var d=e.length;if(d==r)e.push(i,u);else if(1===d)e.push(u,e[0]),e[0]=i;else{for(d--,e.push(e[d-1],e[d]);d>r;){var f=d-2;e[d]=e[f],d--}e[r]=i,e[r+1]=u}}(e,u=~u,r,i),u}function sl(e,r){var i=ll(e,r);if(i>=0)return e[1|i]}function ll(e,r){return X2(e,r,1)}function X2(e,r,i){for(var u=0,d=e.length>>i;d!==u;){var f=u+(d-u>>1),g=e[f<r?d=f:u=f+1}return~(d<1&&void 0!==arguments[1]?arguments[1]:jn.Default;if(void 0===ku)throw new Error("inject() must be called from an injection context");return null===ku?vi(e,void 0,r):ku.get(e,r&jn.Optional?null:void 0,r)}function Ki(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:jn.Default;return(Or()||t3)(Ft(e),r)}function n3(e){throw new Error("invalid")}function ul(e){for(var r=[],i=0;i3&&void 0!==arguments[3]?arguments[3]:null;e=e&&"\n"===e.charAt(0)&&"\u0275"==e.charAt(1)?e.substr(2):e;var d=_t(r);if(Array.isArray(r))d=r.map(_t).join(" -> ");else if("object"==typeof r){var f=[];for(var g in r)if(r.hasOwnProperty(g)){var v=r[g];f.push(g+":"+("string"==typeof v?JSON.stringify(v):_t(v)))}d="{".concat(f.join(", "),"}")}return"".concat(i).concat(u?"("+u+")":"","[").concat(d,"]: ").concat(e.replace(_0,"\n "))} + */ +function ss(n){const i=n[3];return Xr(i)?i[3]:i}function Jl(n){return z1(n[13])}function Cl(n){return z1(n[4])}function z1(n){for(;null!==n&&!Xr(n);)n=n[4];return n} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var k1=os(fn("Inject",function(r){return{token:r}}),-1),ss=os(fn("Optional"),8),$s=os(fn("Self"),2),e1=os(fn("SkipSelf"),4),So=os(fn("Host"),1),ec=null; + */function Oo(n,i,l,c,d){if(null!=c){let g,v=!1;Xr(c)?g=c:Or(c)&&(v=!0,c=c[0]);const I=ui(c);0===n&&null!==l?null==d?W1(i,l,I):Ba(i,l,I,d||null,!0):1===n&&null!==l?Ba(i,l,I,d||null,!0):2===n?m(i,I,v):3===n&&i.destroyNode(I),null!=g&&function mt(n,i,l,c,d){const g=l[7],v=ui(l);g!==v&&Oo(i,n,c,g,d);for(let I=10;I0&&(l[d-1][4]=i),c0&&(n[l-1][4]=c[4]);const g=Jt(n,10+i);!function j1(n,i){H(n,i,i[11],2,null,null),i[0]=null,i[6]=null}(c[1],c);const v=g[19];null!==v&&v.detachView(g[1]),c[3]=null,c[4]=null,c[2]&=-65}return c}function C1(n,i){if(!(128&i[2])){const l=i[11];l.destroyNode&&H(n,i,l,3,null,null),function H1(n){let i=n[13];if(!i)return Ts(n[1],n);for(;i;){let l=null;if(Or(i))l=i[13];else{const c=i[10];c&&(l=c)}if(!l){for(;i&&!i[4]&&i!==n;)Or(i)&&Ts(i[1],i),i=i[3];null===i&&(i=n),Or(i)&&Ts(i[1],i),l=i&&i[4]}i=l}}(i)}}function Ts(n,i){if(!(128&i[2])){i[2]&=-65,i[2]|=128,function yl(n,i){let l;if(null!=n&&null!=(l=n.destroyHooks))for(let c=0;c=0?c[d=Y]():c[d=-Y].unsubscribe(),g+=2}else{const v=c[d=l[g+1]];l[g].call(v)}if(null!==c){for(let g=d+1;g0)for(var i=0;in,createScript:n=>n,createScriptURL:n=>n})}catch{}return ri}function jn(n){return yi()?.createHTML(n)||n} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var t1=function(){function e(r){(0,pe.Z)(this,e),this.changingThisBreaksApplicationSecurity=r}return(0,ce.Z)(e,[{key:"toString",value:function(){return"SafeValue must use [property]=binding: ".concat(this.changingThisBreaksApplicationSecurity)+" (see https://g.co/ng/security#xss)"}}]),e}(),o3=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(){return(0,pe.Z)(this,i),r.apply(this,arguments)}return(0,ce.Z)(i,[{key:"getTypeName",value:function(){return"HTML"}}]),i}(t1),d2=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(){return(0,pe.Z)(this,i),r.apply(this,arguments)}return(0,ce.Z)(i,[{key:"getTypeName",value:function(){return"Style"}}]),i}(t1),ac=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(){return(0,pe.Z)(this,i),r.apply(this,arguments)}return(0,ce.Z)(i,[{key:"getTypeName",value:function(){return"Script"}}]),i}(t1),oc=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(){return(0,pe.Z)(this,i),r.apply(this,arguments)}return(0,ce.Z)(i,[{key:"getTypeName",value:function(){return"URL"}}]),i}(t1),s3=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(){return(0,pe.Z)(this,i),r.apply(this,arguments)}return(0,ce.Z)(i,[{key:"getTypeName",value:function(){return"ResourceURL"}}]),i}(t1);function Ss(e){return e instanceof t1?e.changingThisBreaksApplicationSecurity:e}function dl(e,r){var i=l3(e);if(null!=i&&i!==r){if("ResourceURL"===i&&"URL"===r)return!0;throw new Error("Required a safe ".concat(r,", got a ").concat(i," (see https://g.co/ng/security#xss)"))}return i===r}function l3(e){return e instanceof t1&&e.getTypeName()||null}function S0(e){return new o3(e)}function P0(e){return new d2(e)}function u3(e){return new ac(e)}function f2(e){return new oc(e)}function c3(e){return new s3(e)} + */ +function Ji(n,i,l){const c=Vt(),d=he(),g=ci(d,c);if(2===d.type&&"iframe"===i.toLowerCase()){const v=g;v.src="",v.srcdoc=jn(""),m(c[11],v);throw new Z(-910,!1)}return n} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function d3(e){var r=new ls(e);return function(){try{return!!(new window.DOMParser).parseFromString(Ql(""),"text/html")}catch(e){return!1}} + */function ua(n){xi=n}function ca(){return void 0!==xi?xi:typeof document<"u"?document:void 0} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */()?new ia(r):r}var ia=function(){function e(r){(0,pe.Z)(this,e),this.inertDocumentHelper=r}return(0,ce.Z)(e,[{key:"getInertBodyElement",value:function(i){i=""+i;try{var u=(new window.DOMParser).parseFromString(Ql(i),"text/html").body;return null===u?this.inertDocumentHelper.getInertBodyElement(i):(u.removeChild(u.firstChild),u)}catch(d){return null}}}]),e}(),ls=function(){function e(r){if((0,pe.Z)(this,e),this.defaultDoc=r,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert"),null==this.inertDocument.body){var i=this.inertDocument.createElement("html");this.inertDocument.appendChild(i);var u=this.inertDocument.createElement("body");i.appendChild(u)}}return(0,ce.Z)(e,[{key:"getInertBodyElement",value:function(i){var u=this.inertDocument.createElement("template");if("content"in u)return u.innerHTML=Ql(i),u;var d=this.inertDocument.createElement("body");return d.innerHTML=Ql(i),this.defaultDoc.documentMode&&this.stripCustomNsAttrs(d),d}},{key:"stripCustomNsAttrs",value:function(i){for(var u=i.attributes,d=u.length-1;0n,createScript:n=>n,createScriptURL:n=>n})}catch{}return Xa}function Ls(n){return ar()?.createHTML(n)||n}function $1(n){return ar()?.createScript(n)||n}function Vs(n){return ar()?.createScriptURL(n)||n} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function us(e){var u,r={},i=(0,De.Z)(e.split(","));try{for(i.s();!(u=i.n()).done;){r[u.value]=!0}}catch(f){i.e(f)}finally{i.f()}return r}function cs(){for(var e={},r=arguments.length,i=new Array(r),u=0;u"),!0}},{key:"endElement",value:function(i){var u=i.nodeName.toLowerCase();o1.hasOwnProperty(u)&&!A1.hasOwnProperty(u)&&(this.buf.push(""))}},{key:"chars",value:function(i){this.buf.push(Ps(i))}},{key:"checkClobberedElement",value:function(i,u){if(u&&(i.compareDocumentPosition(u)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error("Failed to sanitize html because the element is clobbered: ".concat(i.outerHTML));return u}}]),e}(),R1=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,$l=/([^\#-~ |!])/g;function Ps(e){return e.replace(/&/g,"&").replace(R1,function(r){return"&#"+(1024*(r.charCodeAt(0)-55296)+(r.charCodeAt(1)-56320)+65536)+";"}).replace($l,function(r){return"&#"+r.charCodeAt(0)+";"}).replace(//g,">")}function F1(e,r){var i=null;try{ks=ks||d3(e);var u=r?String(r):"";i=ks.getInertBodyElement(u);var d=5,f=u;do{if(0===d)throw new Error("Failed to sanitize html because the input is unstable");d--,u=f,f=i.innerHTML,i=ks.getInertBodyElement(u)}while(u!==f);return Ql((new hl).sanitizeChildren(l1(i)||i))}finally{if(i)for(var T=l1(i)||i;T.firstChild;)T.removeChild(T.firstChild)}}function l1(e){return"content"in e&&function(e){return e.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===e.nodeName} + */class za{constructor(i){this.changingThisBreaksApplicationSecurity=i}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see https://g.co/ng/security#xss)`}}class Ws extends za{getTypeName(){return"HTML"}}class L3 extends za{getTypeName(){return"Style"}}class A5 extends za{getTypeName(){return"Script"}}class D3 extends za{getTypeName(){return"URL"}}class D8 extends za{getTypeName(){return"ResourceURL"}}function b1(n){return n instanceof za?n.changingThisBreaksApplicationSecurity:n}function ja(n,i){const l=function S8(n){return n instanceof za&&n.getTypeName()||null}(n);if(null!=l&&l!==i){if("ResourceURL"===l&&"URL"===i)return!0;throw new Error(`Required a safe ${i}, got a ${l} (see https://g.co/ng/security#xss)`)}return l===i}function k5(n){return new Ws(n)}function pt(n){return new L3(n)}function S3(n){return new A5(n)}function Hc(n){return new D3(n)}function Qs(n){return new D8(n)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */(e)?e.content:null} + */function Du(n){const i=new wl(n);return function M1(){try{return!!(new window.DOMParser).parseFromString(jn(""),"text/html")}catch{return!1}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -function ml(e){var r=p2();return r?c2(r.sanitize(go.HTML,e)||""):dl(e,"HTML")?c2(Ss(e)):F1(zs(),pt(e))}function vl(e){var r=p2();return r?r.sanitize(go.STYLE,e)||"":dl(e,"Style")?Ss(e):pt(e)}function u1(e){var r=p2();return r?r.sanitize(go.URL,e)||"":dl(e,"URL")?Ss(e):kr(pt(e))}function c1(e){var r=p2();if(r)return a3(r.sanitize(go.RESOURCE_URL,e)||"");if(dl(e,"ResourceURL"))return a3(Ss(e));throw new Error("unsafe value used in a resource URL context (see https://g.co/ng/security#xss)")}function B1(e){var r=p2();if(r)return i3(r.sanitize(go.SCRIPT,e)||"");if(dl(e,"Script"))return i3(Ss(e));throw new Error("unsafe value used in a script context")}function eu(e){return Ql(e[0])}function fs(e){return function(e){var r;return(null===(r=Ou())||void 0===r?void 0:r.createScriptURL(e))||e}(e[0])}function Ho(e,r,i){return function(e,r){return"src"===r&&("embed"===e||"frame"===e||"iframe"===e||"media"===e||"script"===e)||"href"===r&&("base"===e||"link"===e)?c1:u1}(r,i)(e)}function p2(){var e=dn();return e&&e[12]} + */()?new Ks(i):i}class Ks{constructor(i){this.inertDocumentHelper=i}getInertBodyElement(i){i=""+i;try{const l=(new window.DOMParser).parseFromString(jn(i),"text/html").body;return null===l?this.inertDocumentHelper.getInertBodyElement(i):(l.removeChild(l.firstChild),l)}catch{return null}}}class wl{constructor(i){if(this.defaultDoc=i,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert"),null==this.inertDocument.body){const l=this.inertDocument.createElement("html");this.inertDocument.appendChild(l);const c=this.inertDocument.createElement("body");l.appendChild(c)}}getInertBodyElement(i){const l=this.inertDocument.createElement("template");if("content"in l)return l.innerHTML=jn(i),l;const c=this.inertDocument.createElement("body");return c.innerHTML=jn(i),this.defaultDoc.documentMode&&this.stripCustomNsAttrs(c),c}stripCustomNsAttrs(i){const l=i.attributes;for(let d=l.length-1;0"),!0}endElement(i){const l=i.nodeName.toLowerCase();Pu.hasOwnProperty(l)&&!F5.hasOwnProperty(l)&&(this.buf.push(""))}chars(i){this.buf.push(Kc(i))}checkClobberedElement(i,l){if(l&&(i.compareDocumentPosition(l)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(`Failed to sanitize html because the element is clobbered: ${i.outerHTML}`);return l}}const O8=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,A8=/([^\#-~ |!])/g;function Kc(n){return n.replace(/&/g,"&").replace(O8,function(i){return"&#"+(1024*(i.charCodeAt(0)-55296)+(i.charCodeAt(1)-56320)+65536)+";"}).replace(A8,function(i){return"&#"+i.charCodeAt(0)+";"}).replace(//g,">")}let Ou;function L2(n,i){let l=null;try{Ou=Ou||Du(n);let c=i?String(i):"";l=Ou.getInertBodyElement(c);let d=5,g=c;do{if(0===d)throw new Error("Failed to sanitize html because the input is unstable");d--,c=g,g=l.innerHTML,l=Ou.getInertBodyElement(c)}while(c!==g);return jn((new z5).sanitizeChildren(O3(l)||l))}finally{if(l){const c=O3(l)||l;for(;c.firstChild;)c.removeChild(c.firstChild)}}}function O3(n){return"content"in n&&function k8(n){return n.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===n.nodeName} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */!function(e){e[e.NONE=0]="NONE",e[e.HTML=1]="HTML",e[e.STYLE=2]="STYLE",e[e.SCRIPT=3]="SCRIPT",e[e.URL=4]="URL",e[e.RESOURCE_URL=5]="RESOURCE_URL"}(go||(go={}));var I="__ngContext__";function m(e,r){e[I]=r}function x(e){return e[I]||null}function Y(e){var r=x(e);return r?Array.isArray(r)?r:r.lView:null} + */(n)?n.content:null}var xl; /** * @license * Copyright Google LLC All Rights Reserved. @@ -1034,21 +1181,21 @@ function ml(e){var r=p2();return r?c2(r.sanitize(go.HTML,e)||""):dl(e,"HTML")?c2 * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Ji="ngDebugContext",cr="ngOriginalError",Ai="ngErrorLogger";function Ja(e){return e[Ji]}function Xa(e){return e[cr]}function d1(e){for(var r=arguments.length,i=new Array(r>1?r-1:0),u=1;u|^->||--!>|)/; + */!function(n){n[n.NONE=0]="NONE",n[n.HTML=1]="HTML",n[n.STYLE=2]="STYLE",n[n.SCRIPT=3]="SCRIPT",n[n.URL=4]="URL",n[n.RESOURCE_URL=5]="RESOURCE_URL"}(xl||(xl={}));const e0=new gr("ENVIRONMENT_INITIALIZER"),k3=new gr("INJECTOR",-1),Z5=new gr("INJECTOR_DEF_TYPES"); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Pt(e){return e.replace(Fa,function(r){return r.replace(ru,"\u200b$1\u200b")})} + */ /** * @license * Copyright Google LLC All Rights Reserved. @@ -1056,6 +1203,7 @@ var Ji="ngDebugContext",cr="ngOriginalError",Ai="ngErrorLogger";function Ja(e){r * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +class S2{get(i,l=js){if(l===js){const c=new Error(`NullInjectorError: No provider for ${Pe(i)}!`);throw c.name="NullInjectorError",c}return l}} /** * @license * Copyright Google LLC All Rights Reserved. @@ -1063,14 +1211,13 @@ var Ji="ngDebugContext",cr="ngOriginalError",Ai="ngErrorLogger";function Ja(e){r * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var p1=("undefined"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(nr);function k0(e){return e.ownerDocument.defaultView}function Nu(e){return e.ownerDocument}function h3(e){return e.ownerDocument.body}var g2,sc;function z1(e){return e instanceof Function?e():e} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function g3(e,r){return sc(e,r)}!function(e){e[e.Important=1]="Important",e[e.DashCase=2]="DashCase"}(g2||(g2={})); + */function H5(...n){return{\u0275providers:G5(!0,n)}}function G5(n,...i){const l=[],c=new Set;let d;return Bs(i,g=>{const v=g;t0(v,l,[],c)&&(d||(d=[]),d.push(v))}),void 0!==d&&V5(d,l),l}function V5(n,i){for(let l=0;l{i.push(g)})}}function t0(n,i,l,c){if(!(n=Ie(n)))return!1;let d=null,g=dt(n);const v=!g&&In(n);if(g||v){if(v&&!v.standalone)return!1;d=n}else{const O=n.ngModule;if(g=dt(O),!g)return!1;d=O}const I=c.has(d);if(v){if(I)return!1;if(c.add(d),v.dependencies){const O="function"==typeof v.dependencies?v.dependencies():v.dependencies;for(const Y of O)t0(Y,i,l,c)}}else{if(!g)return!1;{if(null!=g.imports&&!I){let Y;c.add(d);try{Bs(g.imports,ge=>{t0(ge,i,l,c)&&(Y||(Y=[]),Y.push(ge))})}finally{}void 0!==Y&&V5(Y,i)}if(!I){const Y=go(d)||(()=>new d);i.push({provide:d,useFactory:Y,deps:ye},{provide:Z5,useValue:d,multi:!0},{provide:e0,useValue:()=>Hr(d),multi:!0})}const O=g.providers;if(null!=O&&!I){Bs(O,ge=>{i.push(ge)})}}}return d!==n&&void 0!==n.providers}const N3=de({provide:String,useValue:de});function n0(n){return null!==n&&"object"==typeof n&&N3 in n}function W5(n){return!(!n||!n.useExisting)}function Q5(n){return!(!n||!n.useFactory)}function Xl(n){return"function"==typeof n} /** * @license * Copyright Google LLC All Rights Reserved. @@ -1078,28 +1225,35 @@ var p1=("undefined"!=typeof requestAnimationFrame&&requestAnimationFrame||setTim * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function m2(e){var r=e[3];return Hn(r)?r[3]:r}function R0(e){return B0(e[13])}function F0(e){return B0(e[4])}function B0(e){for(;null!==e&&!Hn(e);)e=e[4];return e} +const F3=new gr("Set Injector scope."),Au={},i0={}; +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */let ku;function el(){return void 0===ku&&(ku=new S2),ku}class P2{}class Y5 extends P2{constructor(i,l,c,d){super(),this.parent=l,this.source=c,this.scopes=d,this.records=new Map,this._ngOnDestroyHooks=new Set,this._onDestroyHooks=[],this._destroyed=!1,R3(i,v=>this.processProvider(v)),this.records.set(k3,O2(void 0,this)),d.has("environment")&&this.records.set(P2,O2(void 0,this));const g=this.records.get(F3);null!=g&&"string"==typeof g.value&&this.scopes.add(g.value),this.injectorDefTypes=new Set(this.get(Z5.multi,ye,q.Self))}get destroyed(){return this._destroyed}destroy(){this.assertNotDestroyed(),this._destroyed=!0;try{for(const i of this._ngOnDestroyHooks)i.ngOnDestroy();for(const i of this._onDestroyHooks)i()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),this._onDestroyHooks.length=0}}onDestroy(i){this._onDestroyHooks.push(i)}runInContext(i){this.assertNotDestroyed();const l=c1(this),c=ut(void 0);try{return i()}finally{c1(l),ut(c)}}get(i,l=js,c=q.Default){this.assertNotDestroyed();const d=c1(this),g=ut(void 0);try{if(!(c&q.SkipSelf)){let I=this.records.get(i);if(void 0===I){const O=function $5(n){return"function"==typeof n||"object"==typeof n&&n instanceof gr}(i)&&Me(i);I=O&&this.injectableDefInScope(O)?O2(Nu(i),Au):null,this.records.set(i,I)}if(null!=I)return this.hydrate(i,I)}const v=c&q.Self?el():this.parent;return l=c&q.Optional&&l===js?null:l,v.get(i,l)}catch(v){if("NullInjectorError"===v.name){if((v[dl]=v[dl]||[]).unshift(Pe(i)),d)throw v;return h3(v,i,"R3InjectorError",this.source)}throw v}finally{ut(g),c1(d)}}resolveInjectorInitializers(){const i=c1(this),l=ut(void 0);try{const c=this.get(e0.multi,ye,q.Self);for(const d of c)d()}finally{c1(i),ut(l)}}toString(){const i=[],l=this.records;for(const c of l.keys())i.push(Pe(c));return`R3Injector[${i.join(", ")}]`}assertNotDestroyed(){if(this._destroyed)throw new Z(205,!1)}processProvider(i){let l=Xl(i=Ie(i))?i:Ie(i&&i.provide);const c=function R8(n){if(n0(n))return O2(void 0,n.useValue);return O2(q3(n),Au)}(i);if(Xl(i)||!0!==i.multi){this.records.get(l)}else{let d=this.records.get(l);d||(d=O2(void 0,Au,!0),d.factory=()=>M2(d.multi),this.records.set(l,d)),l=i,d.multi.push(i)}this.records.set(l,c)}hydrate(i,l){return l.value===Au&&(l.value=i0,l.value=l.factory()),"object"==typeof l.value&&l.value&&function j8(n){return null!==n&&"object"==typeof n&&"function"==typeof n.ngOnDestroy}(l.value)&&this._ngOnDestroyHooks.add(l.value),l.value}injectableDefInScope(i){if(!i.providedIn)return!1;const l=Ie(i.providedIn);return"string"==typeof l?"any"===l||this.scopes.has(l):this.injectorDefTypes.has(l)}}function Nu(n){const i=Me(n),l=null!==i?i.factory:go(n);if(null!==l)return l;if(n instanceof gr)throw new Z(204,!1);if(n instanceof Function)return function J5(n){const i=n.length;if(i>0){os(i,"?");throw new Z(204,!1)}const l=function Ye(n){const i=n&&(n[Nt]||n[Kt]);if(i){const l=function ct(n){if(n.hasOwnProperty("name"))return n.name;const i=(""+n).match(/^function\s*([^\s(]+)/);return null===i?"":i[1]}(n);return console.warn(`DEPRECATED: DI is instantiating a token "${l}" that inherits its @Injectable decorator but does not provide one itself.\nThis will become an error in a future version of Angular. Please add @Injectable() to the "${l}" class.`),i}return null}(n);return null!==l?()=>l.factory(n):()=>new n}(n);throw new Z(204,!1)}function q3(n,i,l){let c;if(Xl(n)){const d=Ie(n);return go(d)||Nu(d)}if(n0(n))c=()=>Ie(n.useValue);else if(Q5(n))c=()=>n.useFactory(...M2(n.deps||[]));else if(W5(n))c=()=>Hr(Ie(n.useExisting));else{const d=Ie(n&&(n.useClass||n.provide));if(!function z8(n){return!!n.deps}(n))return go(d)||Nu(d);c=()=>new d(...M2(n.deps))}return c}function O2(n,i,l=!1){return{factory:n,value:i,multi:l?[]:void 0}}function B3(n){return!!n.\u0275providers}function R3(n,i){for(const l of n)Array.isArray(l)?R3(l,i):B3(l)?R3(l.\u0275providers,i):i(l)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function U1(e,r,i,u,d){if(null!=u){var f,g=!1;Hn(u)?f=u:ki(u)&&(g=!0,u=u[0]);var v=Ti(u);0===e&&null!==i?null==d?z0(r,i,v):h1(r,i,v,d||null,!0):1===e&&null!==i?h1(r,i,v,d||null,!0):2===e?w3(r,v,g):3===e&&r.destroyNode(v),null!=f&&function(e,r,i,u,d){var f=i[7],g=Ti(i);f!==g&&U1(r,e,u,f,d);for(var v=10;v0&&(i[d-1][4]=r),u0&&(e[i-1][4]=u[4]);var f=P1(e,10+r);!function(e,r){pc(e,r,r[11],2,null,null),r[0]=null,r[6]=null}(u[1],u);var g=f[19];null!==g&&g.detachView(f[1]),u[3]=null,u[4]=null,u[2]&=-129}return u}}function Z0(e,r){if(!(256&r[2])){var i=r[11];Mi(i)&&i.destroyNode&&pc(e,r,i,3,null,null),function(e){var r=e[13];if(!r)return Ru(e[1],e);for(;r;){var i=null;if(ki(r))i=r[13];else{var u=r[10];u&&(i=u)}if(!i){for(;r&&!r[4]&&r!==e;)ki(r)&&Ru(r[1],r),r=r[3];null===r&&(r=e),ki(r)&&Ru(r[1],r),i=r&&r[4]}r=i}}(r)}}function Ru(e,r){if(!(256&r[2])){r[2]&=-129,r[2]|=256,function(e,r){var i;if(null!=e&&null!=(i=e.destroyHooks))for(var u=0;u=0?u[d=Z]():u[d=-Z].unsubscribe(),f+=2}else{var ee=u[d=i[f+1]];i[f].call(ee)}if(null!==u){for(var _e=d+1;_ef?"":d[_e+1].toLowerCase();var Ge=8&u?Ee:null;if(Ge&&-1!==N5(Ge,Z,0)||2&u&&Z!==Ee){if(g1(u))return!1;g=!0}}}}else{if(!g&&!g1(u)&&!g1(T))return!1;if(g&&g1(T))continue;g=!1,u=T|1&u}}return g1(u)||g}function g1(e){return 0==(1&e)}function l4(e,r,i,u){if(null===r)return-1;var d=0;if(u||!i){for(var f=!1;d-1)for(i++;i2&&void 0!==arguments[2]&&arguments[2],u=0;u0?'="'+v+'"':"")+"]"}else 8&u?d+="."+g:4&u&&(d+=" "+g);else""!==d&&!g1(g)&&(r+=F5(f,d),d=""),u=g,f=f||!g1(u);i++}return""!==d&&(r+=F5(f,d)),r} + */N2.__NG_ELEMENT_ID__= /** * @license * Copyright Google LLC All Rights Reserved. @@ -1107,35 +1261,36 @@ function m2(e){var r=e[3];return Hn(r)?r[3]:r}function R0(e){return B0(e[13])}fu * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var fr={}; +function G8(){return k2(Qi(),Vt())};new gr("Renderer2Interceptor");class nd{}class z3{}z3.__NG_ELEMENT_ID__=()=>function W8(){const n=Vt(),l=zi(Qi().index,n);return(Or(l)?l:n)[11]} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function B5(e){q5(mr(),dn(),Qi()+e,ae())}function q5(e,r,i,u){if(!u)if(3==(3&r[2])){var f=e.preOrderCheckHooks;null!==f&&co(r,f,i)}else{var g=e.preOrderHooks;null!==g&&Zo(r,g,0,i)}uo(i)} + */();class r0{}r0.\u0275prov=Ge({token:r0,providedIn:"root",factory:()=>null}); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function hc(e,r){return e<<17|r<<2}function As(e){return e>>17&32767}function Z5(e){return 2==(2&e)}function Q0(e){return 2|e}function j1(e){return(131068&e)>>2}function Y0(e,r){return-131069&e|r<<2}function I3(e){return 1==(1&e)}function Ta(e){return 1|e}var L3=Promise.resolve(null);function vc(e,r){var i=e.contentQueries;if(null!==i)for(var u=0;u20&&q5(e,r,20,ae()),Gn(g?2:0,d),i(u,d)}finally{uo(f),Gn(g?3:1,d)}}function K5(e,r,i){if(qi(r))for(var u=r.directiveStart,d=r.directiveEnd,f=u;f2&&void 0!==arguments[2]?arguments[2]:Sa,u=r.localNames;if(null!==u)for(var d=r.index+1,f=0;f0;){var i=e[--r];if("number"==typeof i&&i<0)return i}return 0})(v)!=T&&v.push(T),v.push(u,d,g)}}function i8(e,r){null!==e.hostBindings&&e.hostBindings(1,r)}function o8(e,r){r.flags|=2,(e.components||(e.components=[])).push(r.index)}function yl(e,r,i){if(i){if(r.exportAs)for(var u=0;u0&&k3(i)}}function k3(e){for(var r=R0(e);null!==r;r=F0(r))for(var i=10;i0&&k3(u)}var g=e[1].components;if(null!==g)for(var v=0;v0&&k3(T)}}function N4(e,r){var i=ai(r,e),u=i[1];(function(e,r){for(var i=r.length;i1&&void 0!==arguments[1]?arguments[1]:ho;if(u===ho){var d=new Error("NullInjectorError: No provider for ".concat(_t(i),"!"));throw d.name="NullInjectorError",d}return u}}]),e}(),gs=new Ar("Set Injector scope."),bc={},U4={},_d=void 0; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function y8(){return void 0===_d&&(_d=new _8),_d}function C8(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,u=arguments.length>3?arguments[3]:void 0;return new V4(e,i,r||y8(),u)}var V4=function(){function e(r,i,u){var d=this,f=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;(0,pe.Z)(this,e),this.parent=u,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this._destroyed=!1;var g=[];i&&Ds(i,function(T){return d.processProvider(T,r,i)}),Ds([r],function(T){return d.processInjectorType(T,[],g)}),this.records.set(b2,M2(void 0,this));var v=this.records.get(gs);this.scope=null!=v?v.value:null,this.source=f||("object"==typeof r?null:_t(r))}return(0,ce.Z)(e,[{key:"destroyed",get:function(){return this._destroyed}},{key:"destroy",value:function(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach(function(i){return i.ngOnDestroy()})}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}},{key:"get",value:function(i){var u=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ho,d=arguments.length>2&&void 0!==arguments[2]?arguments[2]:jn.Default;this.assertNotDestroyed();var f=s2(this),g=Lr(void 0);try{if(!(d&jn.SkipSelf)){var v=this.records.get(i);if(void 0===v){var T=w8(i)&&un(i);v=T&&this.injectableDefInScope(T)?M2(N3(i),bc):null,this.records.set(i,v)}if(null!=v)return this.hydrate(i,v)}var Z=d&jn.Self?y8():this.parent;return u=d&jn.Optional&&u===ho?null:u,Z.get(i,u)}catch(_e){if("NullInjectorError"===_e.name){var ee=_e[Xs]=_e[Xs]||[];if(ee.unshift(_t(i)),f)throw _e;return l2(_e,i,"R3InjectorError",this.source)}throw _e}finally{Lr(g),s2(f)}}},{key:"_resolveInjectorDefTypes",value:function(){var i=this;this.injectorDefTypes.forEach(function(u){return i.get(u)})}},{key:"toString",value:function(){var i=[];return this.records.forEach(function(d,f){return i.push(_t(f))}),"R3Injector[".concat(i.join(", "),"]")}},{key:"assertNotDestroyed",value:function(){if(this._destroyed)throw new Error("Injector has already been destroyed.")}},{key:"processInjectorType",value:function(i,u,d){var f=this;if(!(i=Ft(i)))return!1;var g=ir(i),v=null==g&&i.ngModule||void 0,T=void 0===v?i:v,_e=-1!==d.indexOf(T);if(void 0!==v&&(g=ir(v)),null==g)return!1;if(null!=g.imports&&!_e){var Ee;d.push(T);try{Ds(g.imports,function($t){f.processInjectorType($t,u,d)&&(void 0===Ee&&(Ee=[]),Ee.push($t))})}finally{}if(void 0!==Ee)for(var Ge=function(){var An=Ee[it],br=An.ngModule,Rr=An.providers;Ds(Rr,function(Si){return f.processProvider(Si,br,Rr||$n)})},it=0;it0){var i=as(r,"?");throw new Error("Can't resolve all parameters for ".concat(_t(e),": (").concat(i.join(", "),")."))}var u=function(e){var r=e&&(e[Fn]||e[Mr]);if(r){var i=function(e){if(e.hasOwnProperty("name"))return e.name;var r=(""+e).match(/^function\s*([^\s(]+)/);return null===r?"":r[1]}(e);return console.warn('DEPRECATED: DI is instantiating a token "'.concat(i,'" that inherits its @Injectable decorator but does not provide one itself.\n')+'This will become an error in a future version of Angular. Please add @Injectable() to the "'.concat(i,'" class.')),r}return null}(e);return null!==u?function(){return u.factory(e)}:function(){return new e}}(e);throw new Error("unreachable")}function b8(e,r,i){var u=void 0;if(w2(e)){var d=Ft(e);return N(d)||N3(d)}if(yd(e))u=function(){return Ft(e.useValue)};else if(function(e){return!(!e||!e.useFactory)}(e))u=function(){return e.useFactory.apply(e,(0,de.Z)(ul(e.deps||[])))};else if(function(e){return!(!e||!e.useExisting)}(e))u=function(){return Ki(Ft(e.useExisting))};else{var f=Ft(e&&(e.useClass||e.provide));if(!function(e){return!!e.deps}(e))return N(f)||N3(f);u=function(){return(0,Le.Z)(f,(0,de.Z)(ul(e.deps)))}}return u}function M2(e,r){var i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return{factory:e,value:r,multi:i?[]:void 0}}function yd(e){return null!==e&&"object"==typeof e&&o2 in e}function w2(e){return"function"==typeof e}function w8(e){return"function"==typeof e||"object"==typeof e&&e instanceof Ar} + */ +function od(n){return n.ownerDocument.defaultView}function u0(n){return n.ownerDocument}function ad(n){return n.ownerDocument.body}function tl(n){return n instanceof Function?n():n} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var T8=function(e,r,i){return function(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,u=arguments.length>3?arguments[3]:void 0,d=C8(e,r,i,u);return d._resolveInjectorDefTypes(),d}({name:i},r,e,i)},Li=function(){function e(){(0,pe.Z)(this,e)}return(0,ce.Z)(e,null,[{key:"create",value:function(i,u){return Array.isArray(i)?T8(i,u,""):T8(i.providers,i.parent,i.name||"")}}]),e}();Li.THROW_IF_NOT_FOUND=ho,Li.NULL=new _8,Li.\u0275prov=ht({token:Li,providedIn:"any",factory:function(){return Ki(b2)}}),Li.__NG_ELEMENT_ID__=-1;function eo(e,r,i,u,d,f){var g=i[1];i[20]=e;var T=Fu(g,20,2,"#host",null),Z=T.mergedAttrs=r.hostAttrs;null!==Z&&(A3(T,Z,!0),null!==e&&(Be(d,e,Z),null!==T.classes&&V0(d,e,T.classes),null!==T.styles&&E3(d,e,T.styles)));var ee=u.createRenderer(e,r),_e=uu(i,J5(r),null,r.onPush?64:16,i[20],T,u,ee,f||null,null);return g.firstCreatePass&&(il(Qr(T,i),g,r.type),o8(g,T),fd(T,i.length,1)),O3(i,_e),i[20]=_e}function mi(e,r,i,u,d){var f=i[1],g=function(e,r,i){var u=Gr();e.firstCreatePass&&(i.providersResolver&&i.providersResolver(i),s8(e,u,r,m1(e,r,1,null),i));var f=Is(r,e,u.directiveStart,u);m(f,r);var g=Sa(u,r);return g&&m(g,r),f}(f,i,r);if(u.components.push(g),e[8]=g,d&&d.forEach(function(ee){return ee(g,r)}),r.contentQueries){var v=Gr();r.contentQueries(1,g,v.directiveStart)}var T=Gr();!f.firstCreatePass||null===r.hostBindings&&null===r.hostAttrs||(uo(T.index),qu(i[1],T,0,T.directiveStart,T.directiveEnd,r),i8(r,g));return g}function cu(e,r){return{components:[],scheduler:e||p1,clean:q4,playerHandler:r||null,flags:0}}function Rs(e,r){qo(Y(e)[1],Gr())} + */ /** * @license * Copyright Google LLC All Rights Reserved. @@ -1165,128 +1320,129 @@ var b2=new Ar("INJECTOR",-1),_8=function(){function e(){(0,pe.Z)(this,e)}return( * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function _1(e){return Object.getPrototypeOf(e.prototype).constructor}function y1(e){for(var r=_1(e.type),i=!0,u=[e];r;){var d=void 0;if(ii(e))d=r.\u0275cmp||r.\u0275dir;else{if(r.\u0275cmp)throw new Error("Directives cannot inherit Components");d=r.\u0275dir}if(d){if(i){u.push(d);var f=e;f.inputs=C1(e.inputs),f.declaredInputs=C1(e.declaredInputs),f.outputs=C1(e.outputs);var g=d.hostBindings;g&&I8(e,g);var v=d.viewQuery,T=d.contentQueries;if(v&&zu(e,v),T&&Uu(e,T),kt(e.inputs,d.inputs),kt(e.declaredInputs,d.declaredInputs),kt(e.outputs,d.outputs),ii(d)&&d.data.animation){var Z=e.data;Z.animation=(Z.animation||[]).concat(d.data.animation)}}var ee=d.features;if(ee)for(var _e=0;_e=0;u--){var d=e[u];d.hostVars=r+=d.hostVars,d.hostAttrs=zn(d.hostAttrs,i=zn(i,d.hostAttrs))}}(u)}function C1(e){return e===_i?{}:e===$n?[]:e}function zu(e,r){var i=e.viewQuery;e.viewQuery=i?function(u,d){r(u,d),i(u,d)}:r}function Uu(e,r){var i=e.contentQueries;e.contentQueries=i?function(u,d,f){r(u,d,f),i(u,d,f)}:r}function I8(e,r){var i=e.hostBindings;e.hostBindings=i?function(u,d){r(u,d),i(u,d)}:r} +function d0(n,i,l){let c=n.length;for(;;){const d=n.indexOf(i,l);if(-1===d)return d;if(0===d||n.charCodeAt(d-1)<=32){const g=i.length;if(d+g===c||n.charCodeAt(d+g)<=32)return d}l=d+1}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var Mc=["providersResolver"],tf=["template","decls","consts","vars","onPush","ngContentSelectors","styles","encapsulation","schemas"];function nf(e){var r=_1(e.type),i=void 0;i=ii(e)?r.\u0275cmp:r.\u0275dir;var f,u=e,d=(0,De.Z)(Mc);try{for(d.s();!(f=d.n()).done;){var g=f.value;u[g]=i[g]}}catch(ee){d.e(ee)}finally{d.f()}if(ii(i)){var T,v=(0,De.Z)(tf);try{for(v.s();!(T=v.n()).done;){var Z=T.value;u[Z]=i[Z]}}catch(ee){v.e(ee)}finally{v.f()}}} + */const sd="ng-template";function e6(n,i,l){let c=0;for(;cg?"":d[qe+1].toLowerCase();const xt=8&c?ot:null;if(xt&&-1!==d0(xt,Y,0)||2&c&&Y!==ot){if(es(c))return!1;v=!0}}}}else{if(!v&&!es(c)&&!es(O))return!1;if(v&&es(O))continue;v=!1,c=O|1&c}}return es(c)||v}function es(n){return 0==(1&n)}function w1(n,i,l,c){if(null===i)return-1;let d=0;if(c||!l){let g=!1;for(;d-1)for(l++;l0?'="'+I+'"':"")+"]"}else 8&c?d+="."+v:4&c&&(d+=" "+v);else""!==d&&!es(v)&&(i+=g0(g,d),d=""),c=v,g=g||!es(c);l++}return""!==d&&(i+=g0(g,d)),i} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var F3=null;function E2(){if(!F3){var e=nr.Symbol;if(e&&e.iterator)F3=e.iterator;else for(var r=Object.getOwnPropertyNames(Map.prototype),i=0;i(null===l&&(l=Ur().compileInjectable(cd,`ng:///${n.name}/\u0275prov.js`,function c6(n,i){const l=i||{providedIn:null},c={name:n.name,type:n,typeArgumentCount:0,providedIn:l.providedIn};return(dd(l)||fd(l))&&void 0!==l.deps&&(c.deps=m3(l.deps)),dd(l)?c.useClass=l.useClass:function u6(n){return l6 in n}(l)?c.useValue=l.useValue:fd(l)?c.useFactory=l.useFactory:function pd(n){return void 0!==n.useExisting}(l)&&(c.useExisting=l.useExisting),c /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function du(e,r){for(var i=!1,u=Fe(),d=1;d{if(null===c){const d=Ur();c=d.compileFactory(cd,`ng:///${n.name}/\u0275fac.js`,{name:n.name,type:n,typeArgumentCount:0,deps:yo(n),target:d.FactoryTarget.Injectable})}return c},configurable:!0})}const l6=de({provide:String,useValue:de});function dd(n){return void 0!==n.useClass}function fd(n){return void 0!==n.useFactory}const Z3=y2("Injectable",void 0,void 0,void 0,(n,i)=>s6(n,i)); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Td(e,r,i,u,d,f,g,v){var T=dn(),Z=mr(),ee=e+20,_e=Z.firstCreatePass?function(e,r,i,u,d,f,g,v,T){var Z=r.consts,ee=Fu(r,e,4,g||null,Eo(Z,v));cd(r,i,ee,Eo(Z,T)),qo(r,ee);var _e=ee.tViews=S3(2,ee,u,d,f,r.directiveRegistry,r.pipeRegistry,null,r.schemas,Z);return null!==r.queries&&(r.queries.template(r,ee),_e.queries=r.queries.embeddedTView(ee)),ee}(ee,Z,T,r,i,u,d,f,g):Z.data[ee];ha(_e,!1);var Ee=T[11].createComment("");cc(Z,T,Ee,_e),m(Ee,T),O3(T,T[ee]=Wo(Ee,T,Ee,_e)),_o(_e)&&od(Z,T,_e),null!=g&&sd(T,_e,v)} + */function _0(n,i=null,l=null,c){const d=F2(n,i,l,c);return d.resolveInjectorInitializers(),d}function F2(n,i=null,l=null,c,d=new Set){const g=[l||ye,H5(n)];return c=c||("object"==typeof n?void 0:Pe(n)),new Y5(g,i||el(),c||null,d) /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function N8(e){return To(Zn.lFrame.contextLView,20+e)} + */}class ya{static create(i,l){if(Array.isArray(i))return _0({name:""},l,i,"");{const c=i.name??"";return _0({name:c},i.parent,i.providers,c)}}}function q2(n){if(n.length>1){return" ("+ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var R8={"\u0275\u0275defineInjectable":ht,"\u0275\u0275defineInjector":Gt,"\u0275\u0275inject":Ki,"\u0275\u0275invalidFactoryDep":n3,resolveForwardRef:Ft}; + */ +function hd(n){const i=[];for(let l=0;l-1)return i.push(n[l]),i;i.push(n[l])}return i}(n.slice().reverse()).map(c=>Pe(c.token)).join(" -> ")+")"}return""}function Tl(n,i,l,c){const d=[i],g=l(d),v=c?function Q8(n,i){const l=`${n} caused by: ${i instanceof Error?i.message:i}`,c=Error(l);return c[s0]=i,c}(g,c):Error(g);return v.addKey=C0,v.keys=d,v.injectors=[n],v.constructResolvingMessage=l,v[s0]=c,v}function C0(n,i){this.injectors.push(n),this.keys.push(i),this.message=this.constructResolvingMessage(this.keys)}function _d(n,i){const l=[];for(let c=0,d=i.length;cHr(k3)}),ya.__NG_ELEMENT_ID__=-1;class El{constructor(i,l){if(this.token=i,this.id=l,!i)throw new Z(208,!1);this.displayName=Pe(this.token)}static get(i){return Cd.get(Ie(i))}static get numberOfKeys(){return Cd.numberOfKeys}}const Cd=new class g6{constructor(){this._allKeys=new Map}get(i){if(i instanceof El)return i;if(this._allKeys.has(i))return this._allKeys.get(i);const l=new El(i,El.numberOfKeys);return this._allKeys.set(i,l),l}get numberOfKeys(){return this._allKeys.size}}; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -ot({provide:String,useValue:ot}); + */class H3{constructor(i,l,c){this.key=i,this.optional=l,this.visibility=c}static fromKey(i){return new H3(i,!1,null)}}const m6=[];class B2{constructor(i,l,c){this.key=i,this.resolvedFactories=l,this.multiProvider=c,this.resolvedFactory=this.resolvedFactories[0]}}class _6{constructor(i,l){this.factory=i,this.dependencies=l}}function C6(n){let i,l;if(n.useClass){const c=Ie(n.useClass);i=Ms().factory(c),l=R2(c)}else n.useExisting?(i=c=>c,l=[H3.fromKey(El.get(n.useExisting))]):n.useFactory?(i=n.useFactory,l=function M6(n,i){if(i){const l=i.map(c=>[c]);return i.map(c=>vd(n,c,l))}return R2(n)}(n.useFactory,n.deps)):(i=()=>n.useValue,l=m6);return new _6(i,l)}function v6(n){return new B2(El.get(n.provide),[C6(n)],n.multi||!1)}function y6(n){const c=function b6(n,i){for(let l=0;l{if(l instanceof Nr)i.push({provide:l,useClass:l});else if(l&&"object"==typeof l&&void 0!==l.provide)i.push(l);else{if(!Array.isArray(l))throw function f6(n){return Error(`Invalid provider - only instances of Provider and Type are allowed, got: ${n}`)}(l);v0(l,i)}}),i}function R2(n){const i=Ms().parameters(n);if(!i)return[];if(i.some(l=>null==l))throw _d(n,i);return i.map(l=>vd(n,l,i))}function vd(n,i,l){let c=null,d=!1;if(!Array.isArray(i))return G3(i instanceof Gl?i.token:i,d,null);let g=null;for(let v=0;v=this._providers.length)throw function p6(n){return Error(`Index ${n} is out-of-bounds.`)}(i);return this._providers[i]}_new(i){if(this._constructionCounter++>this._getMaxNumberOfObjects())throw function gd(n,i){return Tl(n,i,function(l){return`Cannot instantiate cyclic dependency!${q2(l)}`})}(this,i.key);return this._instantiateProvider(i)}_getMaxNumberOfObjects(){return this.objs.length}_instantiateProvider(i){if(i.multiProvider){const l=[];for(let c=0;cthis._getByReflectiveDependency(v))}catch(v){throw v.addKey&&v.addKey(this,i.key),v}try{g=c(...d)}catch(v){throw function md(n,i,l,c){return Tl(n,c,function(d){const g=Pe(d[0].token);return`${i.message}: Error during instantiation of ${g}!${q2(d)}.`},i)}(this,v,v.stack,i.key)}return g}_getByReflectiveDependency(i){return this._getByKey(i.key,i.visibility,i.optional?null:js)}_getByKey(i,l,c){return i===z2.INJECTOR_KEY?this:l instanceof Wl?this._getByKeySelf(i,c):this._getByKeyDefault(i,c,l)}_getObjByKeyId(i){for(let l=0;l1){var r=function(e){for(var r=[],i=0;i-1)return r.push(e[i]),r;r.push(e[i])}return r}(e.slice().reverse());return" ("+r.map(function(u){return _t(u.token)}).join(" -> ")+")"}return""}function xd(e,r,i,u){var d=[r],f=i(d),g=u?function(e,r){var i="".concat(e," caused by: ").concat(r instanceof Error?r.message:r),u=Error(i);return u[cr]=r,u + */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */}(f,u):Error(f);return g.addKey=q8,g.keys=d,g.injectors=[e],g.constructResolvingMessage=i,g[cr]=u,g}function q8(e,r){this.injectors.push(e),this.keys.push(r),this.message=this.constructResolvingMessage(this.keys)}function Ic(e,r){for(var i=[],u=0,d=r.length;u' "'+l.key.displayName+'" ').join(", ")}])`}toString(){return this.displayName}}function t2(n,i=q.Default){const l=Vt();if(null===l)return Hr(n,i);return tn(Qi(),l,Ie(n),i)}function w6(){throw new Error("invalid")} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function V8(e){var r,i;if(e.useClass){var u=Ft(e.useClass);r=Dc.factory(u),i=Sd(u)}else e.useExisting?(r=function(f){return f},i=[D2.fromKey(wl.get(e.useExisting))]):e.useFactory?(r=e.useFactory,i=function(e,r){if(r){var i=r.map(function(u){return[u]});return r.map(function(u){return Pd(e,u,i)})}return Sd(e)}(e.useFactory,e.deps)):(r=function(){return e.useValue},i=H3);return new Dd(r,i)}function Ld(e){return new Ju(wl.get(e.provide),[V8(e)],e.multi||!1)}function Tl(e){var u=function(e,r){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:ho;return this._getByKey(wl.get(i),null,u)}},{key:"resolveAndCreateChild",value:function(i){var u=L2.resolve(i);return this.createChildFromResolved(u)}},{key:"createChildFromResolved",value:function(i){var u=new e(i);return u.parent=this,u}},{key:"resolveAndInstantiate",value:function(i){return this.instantiateResolved(L2.resolve([i])[0])}},{key:"instantiateResolved",value:function(i){return this._instantiateProvider(i)}},{key:"getProviderAtIndex",value:function(i){if(i<0||i>=this._providers.length)throw function(e){return Error("Index ".concat(e," is out-of-bounds."))}(i);return this._providers[i]}},{key:"_new",value:function(i){if(this._constructionCounter++>this._getMaxNumberOfObjects())throw function(e,r){return xd(e,r,function(i){return"Cannot instantiate cyclic dependency!".concat(Ed(i))})}(this,i.key);return this._instantiateProvider(i)}},{key:"_getMaxNumberOfObjects",value:function(){return this.objs.length}},{key:"_instantiateProvider",value:function(i){if(i.multiProvider){for(var u=[],d=0;d>17&32767}function yd(n){return 2==(2&n)}function Ys(n){return 2|n}function x1(n){return(131068&n)>>2}function M0(n,i){return-131069&n|i<<2}function W3(n){return 1==(1&n)}function w0(n){return 1|n}z2.INJECTOR_KEY=El.get(ya);function Id(n,i){const l=n.contentQueries;if(null!==l)for(let c=0;c22&&ud(n,i,22,!1),hr(v?2:0,d),l(c,d)}finally{V(g),hr(v?3:1,d)}}function O0(n,i,l){if(eo(i)){const c=i.directiveStart,d=i.directiveEnd;for(let g=c;g0;){const l=n[--i];if("number"==typeof l&&l<0)return l}return 0})(I)!=O&&I.push(O),I.push(c,d,v)}}function p(n,i){null!==n.hostBindings&&n.hostBindings(1,i)}function y(n,i){i.flags|=2,(n.components||(n.components=[])).push(i.index)}function j(n,i,l){if(l){if(i.exportAs)for(let c=0;c0&&en(l)}}function en(n){for(let c=Jl(n);null!==c;c=Cl(c))for(let d=10;d0&&en(g)}const l=n[1].components;if(null!==l)for(let c=0;c0&&en(d)}}function En(n,i){const l=zi(i,n),c=l[1];(function wn(n,i){for(let l=i.length;l1&&void 0!==arguments[1]?arguments[1]:jn.Default,i=dn();if(null===i)return Ki(e,r);var u=Gr();return D1(u,i,Ft(e),r)}function G8(){throw new Error("invalid")} + */function L1(n,i,l,c,d=!1){for(;null!==l;){const g=i[l.index];if(null!==g&&c.push(ui(g)),Xr(g))for(let I=10;I-1&&(_1(i,c),Jt(l,c))}this._attachedToViewContainer=!1}C1(this._lView[1],this._lView)}onDestroy(i){Sd(this._lView[1],this._lView,null,i)}markForCheck(){Nn(this._cdRefInjectingView||this._lView)}detach(){this._lView[2]&=-65}reattach(){this._lView[2]|=64}detectChanges(){sr(this._lView[1],this._lView,this.context)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new Z(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null,function Z1(n,i){H(n,i,i[11],2,null,null)}(this._lView[1],this._lView)}attachToAppRef(i){if(this._attachedToViewContainer)throw new Z(902,!1);this._appRef=i}}class Ru extends H2{constructor(i){super(i),this._view=i}detectChanges(){const i=this._view;sr(i[1],i,i[8],!1)}checkNoChanges(){}get context(){return null}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Rd(e,r,i,u){var d=dn(),f=mr(),g=20+e,v=d[11],T=d[g]=_3(v,r,Zn.lFrame.currentNamespace),Z=f.firstCreatePass?function(e,r,i,u,d,f,g){var v=r.consts,Z=Fu(r,e,2,d,Eo(v,f));return cd(r,i,Z,Eo(v,g)),null!==Z.attrs&&A3(Z,Z.attrs,!1),null!==Z.mergedAttrs&&A3(Z,Z.mergedAttrs,!0),null!==r.queries&&r.queries.elementStart(r,Z),Z}(g,f,d,0,r,i,u):f.data[g];ha(Z,!0);var ee=Z.mergedAttrs;null!==ee&&Be(v,T,ee);var _e=Z.classes;null!==_e&&V0(v,T,_e);var Ee=Z.styles;null!==Ee&&E3(v,T,Ee),64!=(64&Z.flags)&&cc(f,d,T,Z),0===Zn.lFrame.elementDepthCount&&m(T,d),Zn.lFrame.elementDepthCount++,_o(Z)&&(od(f,d,Z),K5(f,Z,d)),null!==u&&sd(d,Z)}function Fd(){var e=Gr();$o()?Ga():ha(e=e.parent,!1);var r=e;Zn.lFrame.elementDepthCount--;var i=mr();i.firstCreatePass&&(qo(i,e),qi(e)&&i.queries.elementEnd(e)),null!=r.classesWithoutHost&&function(e){return 0!=(16&e.flags)}(r)&&Nd(i,r,dn(),r.classesWithoutHost,!0),null!=r.stylesWithoutHost&&function(e){return 0!=(32&e.flags)} + */class N0 extends A2{constructor(i){super(),this.ngModule=i}resolveComponentFactory(i){const l=In(i);return new G2(l,this.ngModule)}}function Ad(n){const i=[];for(let l in n)if(n.hasOwnProperty(l)){const c=n[l];i.push({propName:c,templateName:l})}return i}class z6{constructor(i,l){this.injector=i,this.parentInjector=l}get(i,l,c){const d=this.injector.get(i,a0,c);return d!==a0||l===a0?d:this.parentInjector.get(i,l,c)}}class G2 extends ed{constructor(i,l){super(),this.componentDef=i,this.ngModule=l,this.componentType=i.type,this.selector=function o6(n){return n.map(r6).join(",")}(i.selectors),this.ngContentSelectors=i.ngContentSelectors?i.ngContentSelectors:[],this.isBoundToModule=!!l}get inputs(){return Ad(this.componentDef.inputs)}get outputs(){return Ad(this.componentDef.outputs)}create(i,l,c,d){let g=(d=d||this.ngModule)instanceof P2?d:d?.injector;g&&null!==this.componentDef.getStandaloneInjector&&(g=this.componentDef.getStandaloneInjector(g)||g);const v=g?new z6(i,g):i,I=v.get(nd,null);if(null===I)throw new Z(407,!1);const O=v.get(r0,null),Y=I.createRenderer(null,this.componentDef),ge=this.componentDef.selectors[0][0]||"div",qe=c?function Dd(n,i,l){const c=l===$n.ShadowDom;return n.selectRootElement(i,c)}(Y,c,this.componentDef.encapsulation):xs(Y,ge,function R6(n){const i=n.toLowerCase();return"svg"===i?"svg":"math"===i?_i:null}(ge)),ot=this.componentDef.onPush?288:272,xt=k0(0,null,null,1,0,null,null,null,null,null),Wt=$3(null,xt,null,ot,null,null,I,Y,O,v,null);let mn,xn;si(Wt);try{const Fn=function zu(n,i,l,c,d,g){const v=l[1],I=22;l[I]=n;const O=n2(v,I,2,"#host",null),Y=O.mergedAttrs=i.hostAttrs;null!==Y&&(I1(O,Y,!0),null!==n&&(ia(d,n,Y),null!==O.classes&&ii(d,n,O.classes),null!==O.styles&&Cn(d,n,O.styles)));const ge=c.createRenderer(n,i),qe=$3(l,Ld(i),null,i.onPush?32:16,l[I],O,c,ge,g||null,null,null);return v.firstCreatePass&&(te(s1(O,l),v,i.type),y(v,O),B(O,l.length,1)),Ti(l,qe),l[I]=qe}(qe,this.componentDef,Wt,I,Y);if(qe)if(c)ia(Y,qe,["ng-version",id.full]);else{const{attrs:Qn,classes:ln}=function a6(n){const i=[],l=[];let c=1,d=2;for(;c0&&ii(Y,qe,ln.join(" "))}if(xn=mo(xt,22),void 0!==l){const Qn=xn.projection=[];for(let ln=0;ln=0;c--){const d=n[c];d.hostVars=i+=d.hostVars,d.hostAttrs=Ka(d.hostAttrs,l=Ka(l,d.hostAttrs))}}(c)}function R0(n){return n===Ee?{}:n===ye?[]:n}function z0(n,i){const l=n.viewQuery;n.viewQuery=l?(c,d)=>{i(c,d),l(c,d)}:i}function j0(n,i){const l=n.contentQueries;n.contentQueries=l?(c,d,g)=>{i(c,d,g),l(c,d,g)}:i}function U0(n,i){const l=n.hostBindings;n.hostBindings=l?(c,d)=>{i(c,d),l(c,d)}:i} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -function(e,r,i,u,d){var f=r.consts,g=Eo(f,u),v=Fu(r,e,8,"ng-container",g);return null!==g&&A3(v,g,!0),cd(r,i,v,Eo(f,d)),null!==r.queries&&r.queries.elementStart(r,v),v}(f,d,u,r,i):d.data[f];ha(g,!0);var v=u[f]=u[11].createComment("");cc(d,u,v,g),m(v,u),_o(g)&&(od(d,u,g),K5(d,g,u)),null!=i&&sd(u,g)}function S2(){var e=Gr(),r=mr();$o()?Ga():ha(e=e.parent,!1),r.firstCreatePass&&(qo(r,e),qi(e)&&r.queries.elementEnd(e))}function G3(e,r,i){Bd(e,r,i),S2()}function Y8(){return dn()} + */const ic=["providersResolver"],Z0=["template","decls","consts","vars","onPush","ngContentSelectors","styles","encapsulation","schemas"];function kd(n){let l,i=nr(n.type);l=bi(n)?i.\u0275cmp:i.\u0275dir;const c=n;for(const d of ic)c[d]=l[d];if(bi(l))for(const d of Z0)c[d]=l[d]} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function qd(e){return!!e&&"function"==typeof e.then}function W3(e){return!!e&&"function"==typeof e.subscribe}Od.INJECTOR_KEY=wl.get(Li);var Zd=W3; + */let ju=null;function Pl(){if(!ju){const n=vn.Symbol;if(n&&n.iterator)ju=n.iterator;else{const i=Object.getOwnPropertyNames(Map.prototype);for(let l=0;lT?v[T]:null}"string"==typeof g&&(f+=2)}return null}(e,r,d,u.index)),null!==$t){($t.__ngLastListenerFn__||$t).__ngNextListenerFn__=f,$t.__ngLastListenerFn__=f,Ge=!1}else{f=gu(u,r,_e,f,!1);var br=i.listen(Et,d,f);Ee.push(f,br),ee&&ee.push(d,Tn,Yt,Yt+1)}}else f=gu(u,r,_e,f,!0),Et.addEventListener(d,f,g),Ee.push(f),ee&&ee.push(d,Tn,Yt,g)}else f=gu(u,r,_e,f,!1);var Si,Rr=u.outputs;if(Ge&&null!==Rr&&(Si=Rr[d])){var xa=Si.length;if(xa)for(var io=0;io0&&void 0!==arguments[0]?arguments[0]:1;return ts(e)} + */ +function fs(n,i,l){return n[i]=l}function Zu(n,i){return n[i]}function wa(n,i,l){const c=n[i];return!Object.is(c,l)&&(n[i]=l,!0)}function i2(n,i,l,c){const d=wa(n,i,l);return wa(n,i+1,c)||d}function rc(n,i,l,c,d){const g=i2(n,i,l,c);return wa(n,i+2,d)||g}function no(n,i,l,c,d,g){const v=i2(n,i,l,c);return i2(n,i+2,d,g)||v} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Xu(e,r){for(var i=null,u=function(e){var r=e.attrs;if(null!=r){var i=r.indexOf(5);if(0==(1&i))return r[i+1]}return null}(e),d=0;d1&&void 0!==arguments[1]?arguments[1]:0,i=arguments.length>2?arguments[2]:void 0,u=dn(),d=mr(),f=Fu(d,20+e,16,null,i||null);null===f.projection&&(f.projection=r),Ga(),64!=(64&f.flags)&&a4(d,u,f)}function Q3(e,r,i){return k2(e,"",r,"",i),Q3}function k2(e,r,i,u,d){var f=dn(),g=fu(f,r,i,u);g!==fr&&hs(mr(),gi(),f,e,g,f[11],d,!1);return k2}function Ud(e,r,i,u,d,f,g){var v=dn(),T=bl(v,r,i,u,d,f);T!==fr&&hs(mr(),gi(),v,e,T,v[11],g,!1);return Ud}function $8(e,r,i,u,d,f,g,v,T){var Z=dn(),ee=pu(Z,r,i,u,d,f,g,v);ee!==fr&&hs(mr(),gi(),Z,e,ee,Z[11],T,!1);return $8}function e6(e,r,i,u,d,f,g,v,T,Z,ee){var _e=dn(),Ee=Wu(_e,r,i,u,d,f,g,v,T,Z);Ee!==fr&&hs(mr(),gi(),_e,e,Ee,_e[11],ee,!1);return e6}function Oc(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee){var Ge=dn(),it=Qu(Ge,r,i,u,d,f,g,v,T,Z,ee,_e);it!==fr&&hs(mr(),gi(),Ge,e,it,Ge[11],Ee,!1);return Oc}function t6(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it){var Et=dn(),Yt=Yu(Et,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge);Yt!==fr&&hs(mr(),gi(),Et,e,Yt,Et[11],it,!1);return t6}function mu(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt){var Tn=dn(),$t=Zr(Tn,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et);$t!==fr&&hs(mr(),gi(),Tn,e,$t,Tn[11],Yt,!1);return mu}function n6(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt,Tn,$t){var An=dn(),br=I2(An,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt,Tn);br!==fr&&hs(mr(),gi(),An,e,br,An[11],$t,!1);return n6}function r6(e,r,i){var u=dn(),d=du(u,r);d!==fr&&hs(mr(),gi(),u,e,d,u[11],i,!1);return r6} + */function oc(n,i,l,c){const d=Vt();if(wa(d,na(),i)){Zn();me(he(),d,n,i,l,c)}return oc} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function mf(e,r,i,u,d,f){var g=f?r.classBindings:r.styleBindings,v=As(g),T=j1(g);e[u]=i;var ee,Z=!1;if(Array.isArray(i)){var _e=i;(null===(ee=_e[1])||ll(_e,ee)>0)&&(Z=!0)}else ee=i;if(d)if(0!==T){var Ge=As(e[v+1]);e[u+1]=hc(Ge,v),0!==Ge&&(e[Ge+1]=Y0(e[Ge+1],u)),e[v+1]=function(e,r){return 131071&e|r<<17}(e[v+1],u)}else e[u+1]=hc(v,0),0!==v&&(e[v+1]=Y0(e[v+1],u)),v=u;else e[u+1]=hc(T,0),0===v?v=u:e[T+1]=Y0(e[T+1],u),T=u;Z&&(e[u+1]=Q0(e[u+1])),i6(e,ee,u,!0,f),i6(e,ee,u,!1,f),function(e,r,i,u,d){var f=d?e.residualClasses:e.residualStyles;null!=f&&"string"==typeof r&&ll(f,r)>=0&&(i[u+1]=Ta(i[u+1]))}(r,ee,e,u,f),g=hc(v,T),f?r.classBindings=g:r.styleBindings=g}function i6(e,r,i,u,d){for(var f=e[i+1],g=null===r,v=u?As(f):j1(f),T=!1;0!==v&&(!1===T||g);){var Z=e[v],ee=e[v+1];a6(Z,r)&&(T=!0,e[v+1]=u?Ta(ee):Q0(ee)),v=u?As(ee):j1(ee)}T&&(e[i+1]=u?Q0(f):Ta(f))}function a6(e,r){return null===e||null==r||(Array.isArray(e)?e[1]:e)===r||!(!Array.isArray(e)||"string"!=typeof r)&&ll(e,r)>=0} + */function V2(n,i){let l=!1,c=zo();for(let g=1;g32;)r++;return r}(e,Ba.key=r,i),W1(e,r,i))}function Vd(e,r){var i=Ba.textEnd,u=Ba.key=W1(e,r,i);return i===u?-1:(u=Ba.keyEnd=function(e,r,i){for(var u;r=65&&(-33&u)<=90||u>=48&&u<=57);)r++;return r}(e,u,i),u=u6(e,u,i,58),u=Ba.value=W1(e,u,i),u=Ba.valueEnd=function(e,r,i){for(var u=-1,d=-1,f=-1,g=r,v=g;g32&&(v=g),f=d,d=u,u=-33&T}return v}(e,u,i),u6(e,u,i,59))}function O2(e){Ba.key=0,Ba.keyEnd=0,Ba.value=0,Ba.valueEnd=0,Ba.textEnd=e.length}function W1(e,r,i){for(;r=0;i=Vd(r,i))h6(e,jd(r),_f(r))}function Ac(e){qs(po,Y1,e,!0)}function Y1(e,r){for(var i=function(e){return O2(e),s6(e,W1(e,0,Ba.textEnd))}(r);i>=0;i=s6(r,i))po(e,jd(r),!0)}function Bs(e,r,i,u){var d=dn(),f=mr(),g=gn(2);(f.firstUpdatePass&&Qd(f,e,g,u),r!==fr&&_r(d,g,r))&&g6(f,f.data[Qi()],d,d[11],e,d[g+1]=function(e,r){return null==e||("string"==typeof r?e+=r:"object"==typeof e&&(e=_t(Ss(e)))),e}(r,i),u,g)}function qs(e,r,i,u){var d=mr(),f=gn(2);d.firstUpdatePass&&Qd(d,null,f,u);var g=dn();if(i!==fr&&_r(g,f,i)){var v=d.data[Qi()];if(v6(v,u)&&!Wd(d,f)){var Z=u?v.classesWithoutHost:v.stylesWithoutHost;null!==Z&&(i=Xt(Z,i||"")),Nd(d,v,g,i,u)}else!function(e,r,i,u,d,f,g,v){d===fr&&(d=$n);for(var T=0,Z=0,ee=0=e.expandoStartIndex}function Qd(e,r,i,u){var d=e.data;if(null===d[i+1]){var f=d[Qi()],g=Wd(e,i);v6(f,u)&&null===r&&!g&&(r=!1),r=function(e,r,i,u){var d=Zi(e),f=u?r.residualClasses:r.residualStyles;if(null===d){0===(u?r.classBindings:r.styleBindings)&&(i=vu(i=A2(null,e,r,i,u),r.attrs,u),f=null)}else{var v=r.directiveStylingLast;if(-1===v||e[v]!==d)if(i=A2(d,e,r,i,u),null===f){var Z=function(e,r,i){var u=i?r.classBindings:r.styleBindings;if(0!==j1(u))return e[As(u)]}(e,r,u);void 0!==Z&&Array.isArray(Z)&&function(e,r,i,u){var d=i?r.classBindings:r.styleBindings;e[As(d)]=u}(e,r,u,Z=vu(Z=A2(null,e,r,Z[1],u),r.attrs,u))}else f=function(e,r,i){for(var u=void 0,d=r.directiveEnd,f=1+r.directiveStylingLast;f0;){var T=e[d],Z=Array.isArray(T),ee=Z?T[1]:T,_e=null===ee,Ee=i[d+1];Ee===fr&&(Ee=_e?$n:void 0);var Ge=_e?sl(Ee,u):ee===u?Ee:void 0;if(Z&&!N2(Ge)&&(Ge=sl(T,u)),N2(Ge)&&(v=Ge,g))return v;var it=e[d+1];d=g?As(it):j1(it)}if(null!==r){var Et=f?r.residualClasses:r.residualStyles;null!=Et&&(v=sl(Et,u))}return v}function N2(e){return void 0!==e}function v6(e,r){return 0!=(e.flags&(r?16:32))} +function ac(n,i,l,c,d,g,v,I,O){const Y=i.consts,ge=n2(i,n,4,v||null,co(Y,I));s(i,l,ge,co(Y,O)),Yn(i,ge);const qe=ge.tViews=k0(2,ge,c,d,g,i.directiveRegistry,i.pipeRegistry,null,i.schemas,Y);return null!==i.queries&&(i.queries.template(i,ge),qe.queries=i.queries.embeddedTView(ge)),ge}(ge,Y,O,i,l,c,d,g,v):Y.data[ge];to(qe,!1);const ot=O[11].createComment("");Gs(Y,O,ot,qe),So(ot,O),Ti(O,O[ge]=jt(ot,O,ot,qe)),yr(qe)&&ec(Y,O,qe),null!=v&&A0(O,qe,I)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function $u(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",i=dn(),u=mr(),d=e+20,f=u.firstCreatePass?Fu(u,d,1,r,null):u.data[d],g=i[d]=v3(i[11],r);cc(u,i,g,f),ha(f,!1)} + */function qd(n){return uo(function fo(){return An.lFrame.contextLView}(),22+n)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function ci(e){return K1("",e,""),ci}function K1(e,r,i){var u=dn(),d=fu(u,e,r,i);return d!==fr&&Cl(u,Qi(),d),K1}function ro(e,r,i,u,d){var f=dn(),g=bl(f,e,r,i,u,d);return g!==fr&&Cl(f,Qi(),g),ro}function M1(e,r,i,u,d,f,g){var v=dn(),T=pu(v,e,r,i,u,d,f,g);return T!==fr&&Cl(v,Qi(),T),M1}function _6(e,r,i,u,d,f,g,v,T){var Z=dn(),ee=Wu(Z,e,r,i,u,d,f,g,v,T);return ee!==fr&&Cl(Z,Qi(),ee),_6}function Kd(e,r,i,u,d,f,g,v,T,Z,ee){var _e=dn(),Ee=Qu(_e,e,r,i,u,d,f,g,v,T,Z,ee);return Ee!==fr&&Cl(_e,Qi(),Ee),Kd}function y6(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee){var Ge=dn(),it=Yu(Ge,e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee);return it!==fr&&Cl(Ge,Qi(),it),y6}function C6(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it){var Et=dn(),Yt=Zr(Et,e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it);return Yt!==fr&&Cl(Et,Qi(),Yt),C6}function b6(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt){var Tn=dn(),$t=I2(Tn,e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt);return $t!==fr&&Cl(Tn,Qi(),$t),b6}function M6(e){var r=dn(),i=du(r,e);return i!==fr&&Cl(r,Qi(),i),M6 + */function sc(n,i,l){const c=Vt();if(wa(c,na(),i)){us(Zn(),he(),c,n,i,c[11],l,!1)}return sc}function Wu(n,i,l,c,d){const v=d?"class":"style";il(n,l,i.inputs[v],v,c)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */}function Ef(e,r,i){qs(po,Y1,fu(dn(),e,r,i),!0)}function xf(e,r,i,u,d){qs(po,Y1,bl(dn(),e,r,i,u,d),!0)}function If(e,r,i,u,d,f,g){qs(po,Y1,pu(dn(),e,r,i,u,d,f,g),!0)}function w6(e,r,i,u,d,f,g,v,T){qs(po,Y1,Wu(dn(),e,r,i,u,d,f,g,v,T),!0)}function Me(e,r,i,u,d,f,g,v,T,Z,ee){qs(po,Y1,Qu(dn(),e,r,i,u,d,f,g,v,T,Z,ee),!0)}function w(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee){qs(po,Y1,Yu(dn(),e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee),!0)}function k(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it){qs(po,Y1,Zr(dn(),e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it),!0)}function S(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt){qs(po,Y1,I2(dn(),e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt),!0)}function q(e){qs(po,Y1,du(dn(),e),!0)} + */function Qu(n,i,l,c){const d=Vt(),g=Zn(),v=22+n,I=d[11],O=d[v]=xs(I,i,function Hn(){return An.lFrame.currentNamespace}()),Y=g.firstCreatePass?function Bd(n,i,l,c,d,g,v){const I=i.consts,Y=n2(i,n,2,d,co(I,g));return s(i,l,Y,co(I,v)),null!==Y.attrs&&I1(Y,Y.attrs,!1),null!==Y.mergedAttrs&&I1(Y,Y.mergedAttrs,!0),null!==i.queries&&i.queries.elementStart(i,Y),Y}(v,g,d,0,i,l,c):g.data[v];to(Y,!0);const ge=Y.mergedAttrs;null!==ge&&ia(I,O,ge);const qe=Y.classes;null!==qe&&ii(I,O,qe);const ot=Y.styles;return null!==ot&&Cn(I,O,ot),64!=(64&Y.flags)&&Gs(g,d,O,Y),0===function M(){return An.lFrame.elementDepthCount}()&&So(O,d),function X(){An.lFrame.elementDepthCount++}(),yr(Y)&&(ec(g,d,Y),O0(g,Y,d)),null!==c&&A0(d,Y),Qu}function Ku(){let n=Qi();La()?is():(n=n.parent,to(n,!1));const i=n;!function it(){An.lFrame.elementDepthCount--}();const l=Zn();return l.firstCreatePass&&(Yn(l,n),eo(n)&&l.queries.elementEnd(n)),null!=i.classesWithoutHost&&function g2(n){return 0!=(16&n.flags)}(i)&&Wu(l,i,Vt(),i.classesWithoutHost,!0),null!=i.stylesWithoutHost&&function m2(n){return 0!=(32&n.flags)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function K(e,r,i){Q1(fu(dn(),e,r,i))}function ne(e,r,i,u,d){Q1(bl(dn(),e,r,i,u,d))}function He(e,r,i,u,d,f,g){Q1(pu(dn(),e,r,i,u,d,f,g))}function et(e,r,i,u,d,f,g,v,T){Q1(Wu(dn(),e,r,i,u,d,f,g,v,T))}function vt(e,r,i,u,d,f,g,v,T,Z,ee){Q1(Qu(dn(),e,r,i,u,d,f,g,v,T,Z,ee))}function dt(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee){Q1(Yu(dn(),e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee))}function Lt(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it){Q1(Zr(dn(),e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it))}function an(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt){Q1(I2(dn(),e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt))}function Ln(e){Q1(du(dn(),e))} + */(i)&&Wu(l,i,Vt(),i.stylesWithoutHost,!1),Ku}function eu(n,i,l,c){return Qu(n,i,l,c),Ku(),eu /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Nn(e,r,i,u,d){return Bs(e,fu(dn(),r,i,u),d,!1),Nn}function Cn(e,r,i,u,d,f,g){return Bs(e,bl(dn(),r,i,u,d,f),g,!1),Cn}function ar(e,r,i,u,d,f,g,v,T){return Bs(e,pu(dn(),r,i,u,d,f,g,v),T,!1),ar}function Ea(e,r,i,u,d,f,g,v,T,Z,ee){return Bs(e,Wu(dn(),r,i,u,d,f,g,v,T,Z),ee,!1),Ea}function mo(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee){return Bs(e,Qu(dn(),r,i,u,d,f,g,v,T,Z,ee,_e),Ee,!1),mo}function _u(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it){return Bs(e,Yu(dn(),r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge),it,!1),_u}function K3(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt){return Bs(e,Zr(dn(),r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et),Yt,!1),K3}function Jd(e,r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt,Tn,$t){return Bs(e,I2(dn(),r,i,u,d,f,g,v,T,Z,ee,_e,Ee,Ge,it,Et,Yt,Tn),$t,!1),Jd}function Xd(e,r,i){return Bs(e,du(dn(),r),i,!1),Xd + */}function r2(n,i,l){const c=Vt(),d=Zn(),g=n+22,v=d.firstCreatePass?function W6(n,i,l,c,d){const g=i.consts,v=co(g,c),I=n2(i,n,8,"ng-container",v);return null!==v&&I1(I,v,!0),s(i,l,I,co(g,d)),null!==i.queries&&i.queries.elementStart(i,I),I}(g,d,c,i,l):d.data[g];to(v,!0);const I=c[g]=c[11].createComment("");return Gs(d,c,I,v),So(I,c),yr(v)&&(ec(d,c,v),O0(d,v,c)),null!=l&&A0(c,v),r2}function Yu(){let n=Qi();const i=Zn();return La()?is():(n=n.parent,to(n,!1)),i.firstCreatePass&&(Yn(i,n),eo(n)&&i.queries.elementEnd(n)),Yu}function Ju(n,i,l){return r2(n,i,l),Yu(),Ju}function Rd(){return Vt()} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */}function $d(e,r,i){var u=dn();_r(u,jt(),r)&&hs(mr(),gi(),u,e,r,u[11],i,!0);return $d}function J3(e,r,i){var u=dn();if(_r(u,jt(),r)){var f=mr(),g=gi();hs(f,g,u,e,r,Cc(Zi(f.data),g,u),i,!0)}return J3} + */function G0(n){return!!n&&"function"==typeof n.then}function $u(n){return!!n&&"function"==typeof n.subscribe}const tu=$u; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ + */function nu(n,i,l,c){const d=Vt(),g=Zn(),v=Qi();return W0(g,d,d[11],v,n,i,!!l,c),nu}function o2(n,i){const l=Qi(),c=Vt(),d=Zn();return W0(d,c,Js(Se(d.data),l,c),l,n,i,!1),o2}function W0(n,i,l,c,d,g,v,I){const O=yr(c),ge=n.firstCreatePass&&ds(n),qe=i[8],ot=cs(i);let xt=!0;if(3&c.type||I){const xn=ci(c,i),Fn=I?I(xn):xn,Qn=ot.length,ln=I?lr=>I(ui(lr[c.index])):c.index;let Xn=null;if(!I&&O&&(Xn=function V0(n,i,l,c){const d=n.cleanup;if(null!=d)for(let g=0;gO?I[O]:null}"string"==typeof v&&(g+=2)}return null}(n,i,d,c.index)),null!==Xn){(Xn.__ngLastListenerFn__||Xn).__ngNextListenerFn__=g,Xn.__ngLastListenerFn__=g,xt=!1}else{g=P1(c,i,qe,g,!1);const lr=l.listen(Fn,d,g);ot.push(g,lr),ge&&ge.push(d,ln,Qn,Qn+1)}}else g=P1(c,i,qe,g,!1);const Wt=c.outputs;let mn;if(xt&&null!==Wt&&(mn=Wt[d])){const xn=mn.length;if(xn)for(let Fn=0;Fn0)&&(Y=!0)}else ge=l;if(d)if(0!==O){const ot=Ss(n[I+1]);n[c+1]=V3(ot,I),0!==ot&&(n[ot+1]=M0(n[ot+1],c)),n[I+1]=function b0(n,i){return 131071&n|i<<17}(n[I+1],c)}else n[c+1]=V3(I,0),0!==I&&(n[I+1]=M0(n[I+1],c)),I=c;else n[c+1]=V3(O,0),0===I?I=c:n[O+1]=M0(n[O+1],c),O=c;Y&&(n[c+1]=Ys(n[c+1])),Gd(n,ge,c,!0,g),Gd(n,ge,c,!1,g),function Y6(n,i,l,c,d){const g=d?n.residualClasses:n.residualStyles;null!=g&&"string"==typeof i&&u1(g,i)>=0&&(l[c+1]=w0(l[c+1]))}(i,ge,n,c,g),v=V3(I,O),g?i.classBindings=v:i.styleBindings=v}function Gd(n,i,l,c,d){const g=n[l+1],v=null===i;let I=c?Ss(g):x1(g),O=!1;for(;0!==I&&(!1===O||v);){const Y=n[I],ge=n[I+1];J6(Y,i)&&(O=!0,n[I+1]=c?w0(ge):Ys(ge)),I=c?Ss(ge):x1(ge)}O&&(n[l+1]=c?Ys(g):w0(g))}function J6(n,i){return null===n||null==i||(Array.isArray(n)?n[1]:n)===i||!(!Array.isArray(n)||"string"!=typeof i)&&u1(n,i)>=0} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Lf(e){me(e,"Expected localeId to be defined"),"string"==typeof e&&(H9=e.toLowerCase().replace(/_/g,"-"))} + */const Ao={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function Vd(n){return n.substring(Ao.key,Ao.keyEnd)}function fc(n){return n.substring(Ao.value,Ao.valueEnd)}function Wd(n,i){const l=Ao.textEnd;return l===i?-1:(i=Ao.keyEnd=function X6(n,i,l){for(;i32;)i++;return i}(n,Ao.key=i,l),Al(n,i,l))}function hc(n,i){const l=Ao.textEnd;let c=Ao.key=Al(n,i,l);return l===c?-1:(c=Ao.keyEnd=function e4(n,i,l){let c;for(;i=65&&(-33&c)<=90||c>=48&&c<=57);)i++;return i}(n,c,l),c=Kd(n,c,l,58),c=Ao.value=Al(n,c,l),c=Ao.valueEnd=function Xu(n,i,l){let c=-1,d=-1,g=-1,v=i,I=v;for(;v32&&(I=v),g=d,d=c,c=-33&O}return I}(n,c,l),Kd(n,c,l,59))}function Qd(n){Ao.key=0,Ao.keyEnd=0,Ao.value=0,Ao.valueEnd=0,Ao.textEnd=n.length}function Al(n,i,l){for(;i=0;l=hc(i,l))n5(n,Vd(i),fc(i))}function e5(n){e1(vo,O1,n,!0)}function O1(n,i){for(let l=function pc(n){return Qd(n),Wd(n,Al(n,0,Ao.textEnd))}(i);l>=0;l=Wd(i,l))vo(n,Vd(i),!0)}function Xs(n,i,l,c){const d=Vt(),g=Zn(),v=wr(2);if(g.firstUpdatePass&&Jd(g,n,v,c),i!==li&&wa(d,v,i)){i5(g,g.data[Q()],d,d[11],n,d[v+1]=function o4(n,i){return null==n||("string"==typeof i?n+=i:"object"==typeof n&&(n=Pe(b1(n)))),n}(i,l),c,v)}}function e1(n,i,l,c){const d=Zn(),g=wr(2);d.firstUpdatePass&&Jd(d,null,g,c);const v=Vt();if(l!==li&&wa(v,g,l)){const I=d.data[Q()];if(r5(I,c)&&!e3(d,g)){let O=c?I.classesWithoutHost:I.stylesWithoutHost;null!==O&&(l=et(O,l||"")),Wu(d,I,v,l,c)}else!function r4(n,i,l,c,d,g,v,I){d===li&&(d=ye);let O=0,Y=0,ge=0=n.expandoStartIndex}function Jd(n,i,l,c){const d=n.data;if(null===d[l+1]){const g=d[Q()],v=e3(n,l);r5(g,c)&&null===i&&!v&&(i=!1),i=function s2(n,i,l,c){const d=Se(n);let g=c?i.residualClasses:i.residualStyles;if(null===d)0===(c?i.classBindings:i.styleBindings)&&(l=t3(l=t5(null,n,i,l,c),i.attrs,c),g=null);else{const v=i.directiveStylingLast;if(-1===v||n[v]!==d)if(l=t5(d,n,i,l,c),null===g){let O=function t4(n,i,l){const c=l?i.classBindings:i.styleBindings;if(0!==x1(c))return n[Ss(c)]}(n,i,c);void 0!==O&&Array.isArray(O)&&(O=t5(null,n,i,O[1],c),O=t3(O,i.attrs,c),function n4(n,i,l,c){const d=l?i.classBindings:i.styleBindings;n[Ss(d)]=c}(n,i,c,O))}else g=function Fr(n,i,l){let c;const d=i.directiveEnd;for(let g=1+i.directiveStylingLast;g0;){const O=n[d],Y=Array.isArray(O),ge=Y?O[1]:O,qe=null===ge;let ot=l[d+1];ot===li&&(ot=qe?ye:void 0);let xt=qe?Ja(ot,c):ge===c?ot:void 0;if(Y&&!n3(xt)&&(xt=Ja(O,c)),n3(xt)&&(I=xt,v))return I;const Wt=n[d+1];d=v?Ss(Wt):x1(Wt)}if(null!==i){let O=g?i.residualClasses:i.residualStyles;null!=O&&(I=Ja(O,c))}return I}function n3(n){return void 0!==n}function r5(n,i){return 0!=(n.flags&(i?16:32))} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Q9(e,r){if(e.push(r),e.length>1)for(var i=e.length-2;i>=0;i--){var u=e[i];Y9(u)||Lh(u,r)&&null===Sh(u)&&Ph(u,r.index)}}function Y9(e){return!(64&e.type)}function Lh(e,r){return Y9(r)||e.index>r.index}function Sh(e){var r=e.insertBeforeIndex;return Array.isArray(r)?r[0]:r}function Ph(e,r){var i=e.insertBeforeIndex;Array.isArray(i)?i[0]=r:(O5(G9,W9),e.insertBeforeIndex=r)} + */function o5(n,i=""){const l=Vt(),c=Zn(),d=n+22,g=c.firstCreatePass?n2(c,d,1,i,null):c.data[d],v=l[d]=ws(l[11],i);Gs(c,l,v,g),to(g,!1)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function e5(e,r){var i=e.data[r];return null===i||"string"==typeof i?null:i.hasOwnProperty("currentCaseLViewIndex")?i:i.value}function Ah(e,r,i){var u=v2(e,i,64,null,null);return Q9(r,u),u}function D6(e,r){var i=r[e.currentCaseLViewIndex];return null===i?i:i<0?~i:i}function K9(e){return e>>>17}function J9(e){return(131070&e)>>>1} + */function l2(n){return kl("",n,""),l2}function kl(n,i,l){const c=Vt(),d=W2(c,n,i,l);return d!==li&&da(c,Q(),d),kl}function a5(n,i,l,c,d){const g=Vt(),v=Q2(g,n,i,l,c,d);return v!==li&&da(g,Q(),v),a5}function Xd(n,i,l,c,d,g,v){const I=Vt(),O=K2(I,n,i,l,c,d,g,v);return O!==li&&da(I,Q(),O),Xd}function e8(n,i,l,c,d,g,v,I,O){const Y=Vt(),ge=Y2(Y,n,i,l,c,d,g,v,I,O);return ge!==li&&da(Y,Q(),ge),e8}function t8(n,i,l,c,d,g,v,I,O,Y,ge){const qe=Vt(),ot=D1(qe,n,i,l,c,d,g,v,I,O,Y,ge);return ot!==li&&da(qe,Q(),ot),t8}function n8(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot){const xt=Vt(),Wt=Vo(xt,n,i,l,c,d,g,v,I,O,Y,ge,qe,ot);return Wt!==li&&da(xt,Q(),Wt),n8}function i8(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt){const mn=Vt(),xn=J2(mn,n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt);return xn!==li&&da(mn,Q(),xn),i8}function r8(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt,mn,xn){const Fn=Vt(),Qn=$2(Fn,n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt,mn,xn);return Qn!==li&&da(Fn,Q(),Qn),r8}function o8(n){const i=Vt(),l=V2(i,n);return l!==li&&da(i,Q(),l),o8 /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var t5=0,n5=0;function Bh(e,r,i,u){for(var d=e[11],f=0;f>>ms.SHIFT,_e=e[ee];null===_e&&(_e=e[ee]=T?d.createComment(v):v3(d,v)),Z&&null!==i&&h1(d,i,_e,u,!1)}}function $9(e,r,i,u){for(var g,d=i[11],f=null,v=0;v>>1,$t=r[++v],An=r[++v];yc(d,Jo(Tn,i),null,null,$t,An,null);break;default:throw new Error('Unable to determine the type of mutate operation for "'.concat(T,'"'))}else switch(T){case I6:var br=r[++v],Rr=r[++v];if(null===i[Rr])m(i[Rr]=e4(d,br),i);break;case x6:var xa=r[++v],io=r[++v];if(null===i[io])m(i[io]=_3(d,xa,null),i)}}}function e7(e,r,i,u,d){for(var f=0;f>>2;switch(3&ee){case 1:var Ee=i[++Z],Ge=i[++Z],it=e.data[_e];"string"==typeof it?yc(r[11],r[_e],null,it,Ee,T,Ge):hs(e,it,r,Ee,T,r[11],Ge,!1);break;case 0:var Et=r[_e];null!==Et&&E5(r[11],Et,T);break;case 2:qh(e,e5(e,_e),r,T);break;case 3:t7(e,e5(e,_e),u,r)}}}else{var Yt=i[f+1];if(Yt>0&&3==(3&Yt)){var $t=e5(e,Yt>>>2);r[$t.currentCaseLViewIndex]<0&&t7(e,$t,u,r)}}f+=v}}function t7(e,r,i,u){var d=u[r.currentCaseLViewIndex];if(null!==d){var f=t5;d<0&&(d=u[r.currentCaseLViewIndex]=~d,f=-1),e7(e,u,r.update[d],i,f)}}function qh(e,r,i,u){var d=function(e,r){var i=e.cases.indexOf(r);if(-1===i)switch(e.type){case 1:var u=function(e,r){var i=j9(r)(parseInt(e,10)),u=Eh[i];return void 0!==u?u:"other"}(r,H9);-1===(i=e.cases.indexOf(u))&&"other"!==u&&(i=e.cases.indexOf("other"));break;case 0:i=e.cases.indexOf("other")}return-1===i?null:i} + */}function a4(n,i,l){e1(vo,O1,W2(Vt(),n,i,l),!0)}function gc(n,i,l,c,d){e1(vo,O1,Q2(Vt(),n,i,l,c,d),!0)}function i3(n,i,l,c,d,g,v){e1(vo,O1,K2(Vt(),n,i,l,c,d,g,v),!0)}function s4(n,i,l,c,d,g,v,I,O){e1(vo,O1,Y2(Vt(),n,i,l,c,d,g,v,I,O),!0)}function a8(n,i,l,c,d,g,v,I,O,Y,ge){e1(vo,O1,D1(Vt(),n,i,l,c,d,g,v,I,O,Y,ge),!0)}function s8(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot){e1(vo,O1,Vo(Vt(),n,i,l,c,d,g,v,I,O,Y,ge,qe,ot),!0)}function l8(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt){e1(vo,O1,J2(Vt(),n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt),!0)}function u8(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt,mn,xn){e1(vo,O1,$2(Vt(),n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt,mn,xn),!0)}function c8(n){e1(vo,O1,V2(Vt(),n),!0)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */(r,u);if(D6(r,i)!==d&&(n7(e,r,i),i[r.currentCaseLViewIndex]=null===d?null:~d,null!==d)){var g=i[r.anchorIdx];g&&$9(e,r.create[d],i,g)}}function n7(e,r,i){var u=D6(r,i);if(null!==u)for(var d=r.remove[u],f=0;f0){var v=Jo(g,i);null!==v&&w3(i[11],v)}else n7(e,e5(e,~g),i)}}function zh(){var i,u,e=[],r=-1;function f(v,T){r=0;var Z=D6(v,T);u=null!==Z?v.remove[Z]:$n}function g(){if(r0)return i[v];e.push(r,u);var Z=~v;return f(i[1].data[Z],i),g()}return 0===e.length?null:(u=e.pop(),r=e.pop(),g())}return function(v,T){for(i=T;e.length;)e.pop();return f(v.value,T),g}} + */function s5(n,i,l){$s(W2(Vt(),n,i,l))}function d8(n,i,l,c,d){$s(Q2(Vt(),n,i,l,c,d))}function f8(n,i,l,c,d,g,v){$s(K2(Vt(),n,i,l,c,d,g,v))}function mc(n,i,l,c,d,g,v,I,O){$s(Y2(Vt(),n,i,l,c,d,g,v,I,O))}function _c(n,i,l,c,d,g,v,I,O,Y,ge){$s(D1(Vt(),n,i,l,c,d,g,v,I,O,Y,ge))}function l4(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot){$s(Vo(Vt(),n,i,l,c,d,g,v,I,O,Y,ge,qe,ot))}function u4(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt){$s(J2(Vt(),n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt))}function c4(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt,mn,xn){$s($2(Vt(),n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt,mn,xn))}function d4(n){$s(V2(Vt(),n))} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var L6=/\ufffd(\d+):?\d*\ufffd/gi,Uh=/({\s*\ufffd\d+:?\d*\ufffd\s*,\s*\S{6}\s*,[\s\S]*})/gi,jh=/\ufffd(\d+)\ufffd/,i7=/^\s*(\ufffd\d+:?\d*\ufffd)\s*,\s*(select|plural)\s*,/,r5="\ufffd",Vh=/\ufffd\/?\*(\d+:\d+)\ufffd/gi,Hh=/\ufffd(\/?[#*]\d+):?\d*\ufffd/gi,Gh=/\uE500/g; + */function p8(n,i,l,c,d){return Xs(n,W2(Vt(),i,l,c),d,!1),p8}function Cc(n,i,l,c,d,g,v){return Xs(n,Q2(Vt(),i,l,c,d,g),v,!1),Cc}function h8(n,i,l,c,d,g,v,I,O){return Xs(n,K2(Vt(),i,l,c,d,g,v,I),O,!1),h8}function g8(n,i,l,c,d,g,v,I,O,Y,ge){return Xs(n,Y2(Vt(),i,l,c,d,g,v,I,O,Y),ge,!1),g8}function u2(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot){return Xs(n,D1(Vt(),i,l,c,d,g,v,I,O,Y,ge,qe),ot,!1),u2}function rr(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt){return Xs(n,Vo(Vt(),i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt),Wt,!1),rr}function Nl(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt,mn,xn){return Xs(n,J2(Vt(),i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt,mn),xn,!1),Nl}function xa(n,i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt,mn,xn,Fn,Qn){return Xs(n,$2(Vt(),i,l,c,d,g,v,I,O,Y,ge,qe,ot,xt,Wt,mn,xn,Fn),Qn,!1),xa}function t1(n,i,l){return Xs(n,V2(Vt(),i),l,!1),t1 /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Qh(e,r,i,u,d,f){var g=Fo(),v=[],T=[],Z=[[]];d=function(e,r){if(function(e){return-1===e}(r))return s7(e);var i=e.indexOf(":".concat(r).concat(r5))+2+r.toString().length,u=e.search(new RegExp("".concat(r5,"\\/\\*\\d+:").concat(r).concat(r5)));return s7(e.substring(i,u))}(d,f);for(var ee=function(e){return e.replace(Gh," ")}(d).split(Hh),_e=0;_ei.length&&i.push(T)}return{type:u,mainBinding:d,cases:r,values:i}}function Sf(e){if(!e)return[];var f,r=0,i=[],u=[],d=/[{}]/g;for(d.lastIndex=0;f=d.exec(e);){var g=f.index;if("}"==f[0]){if(i.pop(),0==i.length){var v=e.substring(r,g);i7.test(v)?u.push(eg(v)):u.push(v),r=g+1}}else{if(0==i.length){var T=e.substring(r,g);u.push(T),r=g+1}i.push("{")}}var Z=e.substring(r);return u.push(Z),u}function tg(e,r,i,u,d,f,g,v){var T=[],Z=[],ee=[];r.cases.push(f),r.create.push(T),r.remove.push(Z),r.update.push(ee);var Ee=d3(zs()).getInertBodyElement(g),Ge=l1(Ee)||Ee;return Ge?u7(e,r,i,u,T,Z,ee,Ge,d,v,0):0}function u7(e,r,i,u,d,f,g,v,T,Z,ee){for(var _e=0,Ee=v.firstChild;Ee;){var Ge=m1(e,i,1,null);switch(Ee.nodeType){case Node.ELEMENT_NODE:var it=Ee,Et=it.tagName.toLowerCase();if(o1.hasOwnProperty(Et)){Pf(d,x6,Et,T,Ge),e.data[Ge]=Et;for(var Yt=it.attributes,Tn=0;Tn1&&void 0!==arguments[1]?arguments[1]:{},i=e;if(og.test(e)){var u={},d=[0];i=i.replace(sg,function(f,g,v){var T=g||v,Z=u[T]||[];if(Z.length||(T.split("|").forEach(function(Tn){var $t=Tn.match(fg),An=$t?parseInt($t[1],10):0,br=dg.test(Tn);Z.push([An,br,Tn])}),u[T]=Z),!Z.length)throw new Error("i18n postprocess: unmatched placeholder - ".concat(T));for(var ee=d[d.length-1],_e=0,Ee=0;Ee2&&void 0!==arguments[2]?arguments[2]:-1,u=mr(),d=dn(),f=20+e,g=Eo(u.consts,r),v=Fo();u.firstCreatePass&&Qh(u,null===v?0:v.index,d,f,g,i);var T=u.data[f],Z=v===d[6]?null:v,ee=D5(u,Z,d),_e=v&&8&v.type?d[v.index]:null;Bh(d,T.create,ee,_e),or(!0)}function p7(){or(!1)}function hg(e,r,i){f7(e,r,i),p7()}function gg(e,r){var i=mr();!function(e,r,i){var d=Gr().index,f=[];if(e.firstCreatePass&&null===e.data[r]){for(var g=0;g0){var u=e.data[i];e7(e,r,Array.isArray(u)?u:u.update,Fe()-n5-1,t5)}t5=0,n5=0}(mr(),dn(),e+20)}function vg(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return pg(e,r)} + */let ou={};function u5(n){const i=function S(n){return n.toLowerCase().replace(/_/g,"-")} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ + */(n);let l=se(i);if(l)return l;const c=i.split("-")[0];if(l=se(c),l)return l;if("en"===c)return p4;throw new Z(701,!1)}function c5(n){return u5(n)[L.PluralCase]}function se(n){return n in ou||(ou[n]=vn.ng&&vn.ng.common&&vn.ng.common.locales&&vn.ng.common.locales[n]),ou[n]}var L;!function(n){n[n.LocaleId=0]="LocaleId",n[n.DayPeriodsFormat=1]="DayPeriodsFormat",n[n.DayPeriodsStandalone=2]="DayPeriodsStandalone",n[n.DaysFormat=3]="DaysFormat",n[n.DaysStandalone=4]="DaysStandalone",n[n.MonthsFormat=5]="MonthsFormat",n[n.MonthsStandalone=6]="MonthsStandalone",n[n.Eras=7]="Eras",n[n.FirstDayOfWeek=8]="FirstDayOfWeek",n[n.WeekendRange=9]="WeekendRange",n[n.DateFormat=10]="DateFormat",n[n.TimeFormat=11]="TimeFormat",n[n.DateTimeFormat=12]="DateTimeFormat",n[n.NumberSymbols=13]="NumberSymbols",n[n.NumberFormats=14]="NumberFormats",n[n.CurrencyCode=15]="CurrencyCode",n[n.CurrencySymbol=16]="CurrencySymbol",n[n.CurrencyName=17]="CurrencyName",n[n.Currencies=18]="Currencies",n[n.Directionality=19]="Directionality",n[n.PluralCase=20]="PluralCase",n[n.ExtraData=21]="ExtraData"}(L||(L={}));const P=["zero","one","two","few","many"];const J="en-US",Ze={marker:"element"},rt={marker:"ICU"}; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function _g(e,r,i){var u=mr();if(u.firstCreatePass){var d=ii(e);kf(i,u.data,u.blueprint,d,!0),kf(r,u.data,u.blueprint,d,!1)}}function kf(e,r,i,u,d){if(e=Ft(e),Array.isArray(e))for(var f=0;f>20;if(w2(e)||!e.multi){var it=new zo(Z,d,Sc),Et=Af(T,r,d?_e:_e+Ge,Ee);-1===Et?(il(Qr(ee,v),g,T),Of(g,e,r.length),r.push(T),ee.directiveStart++,ee.directiveEnd++,d&&(ee.providerIndexes+=1048576),i.push(it),v.push(it)):(i[Et]=it,v[Et]=it)}else{var Yt=Af(T,r,_e+Ge,Ee),Tn=Af(T,r,_e,_e+Ge),$t=Yt>=0&&i[Yt],An=Tn>=0&&i[Tn];if(d&&!An||!d&&!$t){il(Qr(ee,v),g,T);var br=function(e,r,i,u,d){var f=new zo(e,i,Sc);return f.multi=[],f.index=r,f.componentProviders=0,g7(f,d,u&&!i),f}(d?Cg:yg,i.length,d,u,Z);!d&&An&&(i[Tn].providerFactory=br),Of(g,e,r.length,0),r.push(T),ee.directiveStart++,ee.directiveEnd++,d&&(ee.providerIndexes+=1048576),i.push(br),v.push(br)}else{Of(g,e,Yt>-1?Yt:Tn,g7(i[d?Tn:Yt],Z,!d&&u))}!d&&u&&An&&i[Tn].componentProviders++}}}function Of(e,r,i,u){var d=w2(r);if(d||function(e){return!!e.useClass}(r)){var g=(r.useClass||r).prototype.ngOnDestroy;if(g){var v=e.destroyHooks||(e.destroyHooks=[]);if(!d&&r.multi){var T=v.indexOf(i);-1===T?v.push(i,[u,g]):v[T+1].push(u,g)}else v.push(i,g)}}}function g7(e,r,i){return i&&e.componentProviders++,e.multi.push(r)-1}function Af(e,r,i,u){for(var d=i;d1&&void 0!==arguments[1]?arguments[1]:[];return function(i){i.providersResolver=function(u,d){return _g(u,d?d(e):e,r)}}} + */var Ke;!function(n){n[n.SHIFT=2]="SHIFT",n[n.APPEND_EAGERLY=1]="APPEND_EAGERLY",n[n.COMMENT=2]="COMMENT"}(Ke||(Ke={})); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var Mg=(0,ce.Z)(function e(){(0,pe.Z)(this,e)}),v7=(0,ce.Z)(function e(){(0,pe.Z)(this,e)}); + */ +let Ht=J;function bn(n){lt(n,"Expected localeId to be defined"),"string"==typeof n&&(Ht=n.toLowerCase().replace(/_/g,"-"))} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var _7="ngComponent";var Tg=function(){function e(){(0,pe.Z)(this,e)}return(0,ce.Z)(e,[{key:"resolveComponentFactory",value:function(i){throw function(e){var r=Error("No component factory found for ".concat(_t(e),". Did you add it to @NgModule.entryComponents?"));return r[_7]=e,r}(i)}}]),e}(),Rc=(0,ce.Z)(function e(){(0,pe.Z)(this,e)});Rc.NULL=new Tg; + */ +function hn(n,i,l){const c=i.insertBeforeIndex,d=Array.isArray(c)?c[0]:c;return null===d?Y1(n,0,l):ui(l[d])}function Wn(n,i,l,c,d){const g=i.insertBeforeIndex;if(Array.isArray(g)){let v=c,I=null;if(3&i.type||(I=v,v=d),null!==v&&0==(2&i.flags))for(let O=1;O1)for(let l=n.length-2;l>=0;l--){const c=n[l];Ta(c)||d2(c,i)&&null===d5(c)&&_8(c,i.index)}}function Ta(n){return!(64&n.type)}function d2(n,i){return Ta(i)||n.index>i.index}function d5(n){const i=n.insertBeforeIndex;return Array.isArray(i)?i[0]:i}function _8(n,i){const l=n.insertBeforeIndex;Array.isArray(l)?l[0]=i:(Hs(hn,Wn),n.insertBeforeIndex=i)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function $3(e,r){return new e2(Sa(e,r))}var Dg=function(){return $3(Gr(),dn())},e2=(0,ce.Z)(function e(r){(0,pe.Z)(this,e),this.nativeElement=r});function y7(e){return e instanceof e2?e.nativeElement:e} + */function au(n,i){const l=n.data[i];return null===l||"string"==typeof l?null:l.hasOwnProperty("currentCaseLViewIndex")?l:l.value}function v8(n,i,l){const c=S0(n,l,64,null,null);return bo(i,c),c}function Vr(n,i){const l=i[n.currentCaseLViewIndex];return null===l?l:l<0?~l:l}function p5(n){return n>>>17}function Fl(n){return(131070&n)>>>1} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */e2.__NG_ELEMENT_ID__=Dg;new Ar("Renderer2Interceptor");var P6=(0,ce.Z)(function e(){(0,pe.Z)(this,e)}),Rf=(0,ce.Z)(function e(){(0,pe.Z)(this,e)});Rf.__NG_ELEMENT_ID__=function(){return Sg()};var Lg=function(){var e=dn(),i=ai(Gr().index,e);return function(e){return e[11]}(ki(i)?i:e)} + */ +let h5=0,g5=0;function v9(n,i,l,c){const d=l[11];let v,g=null;for(let I=0;I>>1,xt=i[++I],Wt=i[++I];xe(d,Ha(ot,l),null,null,xt,Wt,null)}else switch(O){case rt:const Y=i[++I],ge=i[++I];if(null===l[ge]){So(l[ge]=m1(d,Y),l)}break;case Ze:const qe=i[++I],ot=i[++I];if(null===l[ot]){So(l[ot]=xs(d,qe,null),l)}}}}function y9(n,i,l,c,d){for(let g=0;g>>2;switch(3&ge){case 1:const ot=l[++Y],xt=l[++Y],Wt=n.data[qe];"string"==typeof Wt?xe(i[11],i[qe],null,Wt,ot,O,xt):us(n,Wt,i,ot,O,i[11],xt,!1);break;case 0:const mn=i[qe];null!==mn&&qa(i[11],mn,O);break;case 2:gf(n,au(n,qe),i,O);break;case 3:b9(n,au(n,qe),c,i)}}}}else{const O=l[g+1];if(O>0&&3==(3&O)){const ge=au(n,O>>>2);i[ge.currentCaseLViewIndex]<0&&b9(n,ge,c,i)}}g+=I}}function b9(n,i,l,c){let d=c[i.currentCaseLViewIndex];if(null!==d){let g=h5;d<0&&(d=c[i.currentCaseLViewIndex]=~d,g=-1),y9(n,c,i.update[d],l,g)}}function gf(n,i,l,c){const d=function mf(n,i){let l=n.cases.indexOf(i);if(-1===l)switch(n.type){case 1:{const c=function W(n,i){const l=c5(i)(parseInt(n,10)),c=P[l];return void 0!==c?c:"other"}(i,function Sn(){return Ht}());l=n.cases.indexOf(c),-1===l&&"other"!==c&&(l=n.cases.indexOf("other"));break}case 0:l=n.cases.indexOf("other")}return-1===l?null:l} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */,Sg=Lg;var i5=(0,ce.Z)(function e(){(0,pe.Z)(this,e)});i5.\u0275prov=ht({token:i5,providedIn:"root",factory:function(){return null}}); + */(i,c);if(Vr(i,l)!==d&&(M9(n,i,l),l[i.currentCaseLViewIndex]=null===d?null:~d,null!==d)){const v=l[i.anchorIdx];v&&v9(n,i.create[d],l,v)}}function M9(n,i,l){let c=Vr(i,l);if(null!==c){const d=i.remove[c];for(let g=0;g0){const I=Ha(v,l);null!==I&&m(l[11],I)}else M9(n,au(n,~v),l)}}}function _f(){const n=[];let l,c,i=-1;function g(I,O){i=0;const Y=Vr(I,O);c=null!==Y?I.remove[Y]:ye}function v(){if(i0)return l[I];{n.push(i,c);const O=~I;return g(l[1].data[O],l),v()}}return 0===n.length?null:(c=n.pop(),i=n.pop(),v())}return function d(I,O){for(l=O;n.length;)n.pop();return g(I.value,O),v}} /** * @license * Copyright Google LLC All Rights Reserved. @@ -1614,35 +1772,36 @@ function S6(){} * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var C7=(0,ce.Z)(function e(r){(0,pe.Z)(this,e),this.full=r,this.major=r.split(".")[0],this.minor=r.split(".")[1],this.patch=r.split(".").slice(2).join(".")}),Og=new C7("12.2.16"),b7=function(){function e(){(0,pe.Z)(this,e)}return(0,ce.Z)(e,[{key:"supports",value:function(i){return wc(i)}},{key:"create",value:function(i){return new Ng(i)}}]),e}(),Ag=function(r,i){return i},Ng=function(){function e(r){(0,pe.Z)(this,e),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=r||Ag}return(0,ce.Z)(e,[{key:"forEachItem",value:function(i){var u;for(u=this._itHead;null!==u;u=u._next)i(u)}},{key:"forEachOperation",value:function(i){for(var u=this._itHead,d=this._removalsHead,f=0,g=null;u||d;){var v=!d||u&&u.currentIndexl.length&&l.push(O)}return{type:c,mainBinding:d,cases:i,values:l}}function h4(n){if(!n)return[];let i=0;const l=[],c=[],d=/[{}]/g;let g;for(d.lastIndex=0;g=d.exec(n);){const I=g.index;if("}"==g[0]){if(l.pop(),0==l.length){const O=n.substring(i,I);x9.test(O)?c.push(Sf(O)):c.push(O),i=I+1}}else{if(0==l.length){const O=n.substring(i,I);c.push(O),i=I+1}l.push("{")}}const v=n.substring(i);return c.push(v),c}function Pf(n,i,l,c,d,g,v,I){const O=[],Y=[],ge=[];i.cases.push(g),i.create.push(O),i.remove.push(Y),i.update.push(ge);const ot=Du(ca()).getInertBodyElement(v),xt=O3(ot)||ot;return xt?D9(n,i,l,c,O,Y,ge,xt,d,I,0):0}function D9(n,i,l,c,d,g,v,I,O,Y,ge){let qe=0,ot=I.firstChild;for(;ot;){const xt=U2(n,l,1,null);switch(ot.nodeType){case Node.ELEMENT_NODE:const Wt=ot,mn=Wt.tagName.toLowerCase();if(Pu.hasOwnProperty(mn)){g4(d,Ze,mn,O,xt),n.data[xt]=mn;const ln=Wt.attributes;for(let Xn=0;Xn>>Ke.SHIFT;let qe=n[ge];null===qe&&(qe=n[ge]=O?d.createComment(I):ws(d,I)),Y&&null!==l&&Ba(d,l,qe,c,!1)}})(d,O.create,ge,qe),wi(!0)}function A9(){wi(!1)}function Hf(n,i,l){O9(n,i,l),A9()}function Gf(n,i){const l=Zn();!function Ef(n,i,l){const d=Qi().index,g=[];if(n.firstCreatePass&&null===n.data[i]){for(let v=0;v0){const c=n.data[l];y9(n,i,Array.isArray(c)?c:c.update,zo()-g5-1,h5)}h5=0,g5=0}(Zn(),Vt(),n+22)}function Wf(n,i={}){return function Zf(n,i={}){let l=n;if(Ff.test(n)){const c={},d=[0];l=l.replace(qf,(g,v,I)=>{const O=v||I,Y=c[O]||[];if(Y.length||(O.split("|").forEach(mn=>{const xn=mn.match(Uf),Fn=xn?parseInt(xn[1],10):0,Qn=jf.test(mn);Y.push([Fn,Qn,mn])}),c[O]=Y),!Y.length)throw new Error(`i18n postprocess: unmatched placeholder - ${O}`);const ge=d[d.length-1];let qe=0;for(let mn=0;mni.hasOwnProperty(g)?`${d}${i[g]}${O}`:c),l=l.replace(Rf,(c,d)=>i.hasOwnProperty(d)?i[d]:c),l=l.replace(zf,(c,d)=>{if(i.hasOwnProperty(d)){const g=i[d];if(!g.length)throw new Error(`i18n postprocess: unmatched ICU - ${c} with key: ${d}`);return g.shift()}return c})),l}(n,i)} /** * @license * Copyright Google LLC All Rights Reserved. @@ -1650,165 +1809,163 @@ var C7=(0,ce.Z)(function e(r){(0,pe.Z)(this,e),this.full=r,this.major=r.split(". * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function k6(e,r,i,u){for(var d=arguments.length>4&&void 0!==arguments[4]&&arguments[4];null!==i;){var f=r[i.index];if(null!==f&&u.push(Ti(f)),Hn(f))for(var g=10;g-1&&(lc(i,d),P1(u,d))}this._attachedToViewContainer=!1}Z0(this._lView[1],this._lView)}},{key:"onDestroy",value:function(i){y2(this._lView[1],this._lView,null,i)}},{key:"markForCheck",value:function(){hd(this._cdRefInjectingView||this._lView)}},{key:"detach",value:function(){this._lView[2]&=-129}},{key:"reattach",value:function(){this._lView[2]|=128}},{key:"detectChanges",value:function(){md(this._lView[1],this._lView,this.context)}},{key:"checkNoChanges",value:function(){!function(e,r,i){X(!0);try{md(e,r,i)}finally{X(!1)}}(this._lView[1],this._lView,this.context)}},{key:"attachToViewContainerRef",value:function(){if(this._appRef)throw new Error("This view is already attached directly to the ApplicationRef!");this._attachedToViewContainer=!0}},{key:"detachFromAppRef",value:function(){this._appRef=null,function(e,r){pc(e,r,r[11],2,null,null)}(this._lView[1],this._lView)}},{key:"attachToAppRef",value:function(i){if(this._attachedToViewContainer)throw new Error("This view is already attached to a ViewContainer!");this._appRef=i}}]),e}(),zg=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(u){var d;return(0,pe.Z)(this,i),(d=r.call(this,u))._view=u,d}return(0,ce.Z)(i,[{key:"detectChanges",value:function(){p8(this._view)}},{key:"checkNoChanges",value:function(){!function(e){X(!0);try{p8(e)}finally{X(!1)}}(this._view)}},{key:"context",get:function(){return null}}]),i}(a5),Ug=function(e){return function(e,r,i){if(ri(e)&&!i){var u=ai(e.index,r);return new a5(u,u)}if(47&e.type){var d=r[16];return new a5(d,r)}return null} + */function m4(n,i,l,c,d){if(n=Ie(n),Array.isArray(n))for(let g=0;g>20;if(Xl(n)||!n.multi){const xt=new po(O,d,t2),Wt=C4(I,i,d?ge:ge+ot,qe);-1===Wt?(te(s1(Y,v),g,I),_4(g,n,i.length),i.push(I),Y.directiveStart++,Y.directiveEnd++,d&&(Y.providerIndexes+=1048576),l.push(xt),v.push(xt)):(l[Wt]=xt,v[Wt]=xt)}else{const xt=C4(I,i,ge+ot,qe),Wt=C4(I,i,ge,ge+ot),mn=xt>=0&&l[xt],xn=Wt>=0&&l[Wt];if(d&&!xn||!d&&!mn){te(s1(Y,v),g,I);const Fn=function Jf(n,i,l,c,d){const g=new po(n,l,t2);return g.multi=[],g.index=i,g.componentProviders=0,N9(g,d,c&&!l),g}(d?Yf:Kf,l.length,d,c,O);!d&&xn&&(l[Wt].providerFactory=Fn),_4(g,n,i.length,0),i.push(I),Y.directiveStart++,Y.directiveEnd++,d&&(Y.providerIndexes+=1048576),l.push(Fn),v.push(Fn)}else{_4(g,n,xt>-1?xt:Wt,N9(l[d?Wt:xt],O,!d&&c))}!d&&c&&xn&&l[Wt].componentProviders++}}}function _4(n,i,l,c){const d=Xl(i),g=function K5(n){return!!n.useClass}(i);if(d||g){const O=(g?Ie(i.useClass):i).prototype.ngOnDestroy;if(O){const Y=n.destroyHooks||(n.destroyHooks=[]);if(!d&&i.multi){const ge=Y.indexOf(l);-1===ge?Y.push(l,[c,O]):Y[ge+1].push(c,O)}else Y.push(l,O)}}}function N9(n,i,l){return l&&n.componentProviders++,n.multi.push(i)-1}function C4(n,i,l,c){for(let d=l;d{l.providersResolver=(c,d)=>function Qf(n,i,l){const c=Zn();if(c.firstCreatePass){const d=bi(n);m4(l,c.data,c.blueprint,d,!0),m4(i,c.data,c.blueprint,d,!1)}}(c,d?d(n):n,i)}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */(Gr(),dn(),16==(16&e))},jg=Ug,Ff=(0,ce.Z)(function e(){(0,pe.Z)(this,e)}); + */class vc{} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */Ff.__NG_ELEMENT_ID__=jg;var Gg=[new T7],Wg=[new b7],Qg=new e0(Wg),Yg=new t0(Gg),Jg=function(){return O6(Gr(),dn())},Fc=(0,ce.Z)(function e(){(0,pe.Z)(this,e)}); + */ +function Xf(n,i){return new q9(n,i??null)}class q9 extends vc{constructor(i,l){super(),this._parent=l,this._bootstrapComponents=[],this.destroyCbs=[],this.componentFactoryResolver=new N0(this);const c=Xi(i);this._bootstrapComponents=tl(c.bootstrap),this._r3Injector=F2(i,l,[{provide:vc,useValue:this},{provide:A2,useValue:this.componentFactoryResolver}],Pe(i),new Set(["environment"])),this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(i)}get injector(){return this._r3Injector}destroy(){const i=this._r3Injector;!i.destroyed&&i.destroy(),this.destroyCbs.forEach(l=>l()),this.destroyCbs=null}onDestroy(i){this.destroyCbs.push(i)}}class y4 extends class $f{}{constructor(i){super(),this.moduleType=i}create(i){return new q9(this.moduleType,i)}}class ep extends vc{constructor(i,l,c){super(),this.componentFactoryResolver=new N0(this),this.instance=null;const d=new Y5([...i,{provide:vc,useValue:this},{provide:A2,useValue:this.componentFactoryResolver}],l||el(),c,new Set(["environment"]));this.injector=d,d.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(i){this.injector.onDestroy(i)}}function B9(n,i,l=null){return new ep(n,i,l).injector} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */Fc.__NG_ELEMENT_ID__=Jg;var $g=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(u,d,f){var g;return(0,pe.Z)(this,i),(g=r.call(this))._declarationLView=u,g._declarationTContainer=d,g.elementRef=f,g}return(0,ce.Z)(i,[{key:"createEmbeddedView",value:function(d){var f=this._declarationTContainer.tViews,g=uu(this._declarationLView,f,d,16,null,f.declTNode,null,null,null,null),v=this._declarationLView[this._declarationTContainer.index];g[17]=v;var T=this._declarationLView[19];return null!==T&&(g[19]=T.createEmbeddedView(f)),Bu(f,g,d),new a5(g)}}]),i}(Fc);function O6(e,r){return 4&e.type?new $g(r,e,$3(e,r)):null} + */class b8{constructor(i){this._injector=i,this.cachedInjectors=new Map}getOrCreateStandaloneInjector(i){if(!i.standalone)return null;if(!this.cachedInjectors.has(i.id)){const l=G5(0,i.type),c=l.length>0?B9([l],this._injector,`Standalone[${i.type.name}]`):null;this.cachedInjectors.set(i.id,c)}return this.cachedInjectors.get(i.id)}ngOnDestroy(){try{for(const i of this.cachedInjectors.values())null!==i&&i.destroy()}finally{this.cachedInjectors.clear()}}}function tp(n){n.getStandaloneInjector=i=>i.get(b8).getOrCreateStandaloneInjector(n)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var Bc=(0,ce.Z)(function e(){(0,pe.Z)(this,e)}),tm=(0,ce.Z)(function e(){(0,pe.Z)(this,e)}),rm=function(){return L7(Gr(),dn())},n0=(0,ce.Z)(function e(){(0,pe.Z)(this,e)}); + */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */n0.__NG_ELEMENT_ID__=rm;var I7=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(u,d,f){var g;return(0,pe.Z)(this,i),(g=r.call(this))._lContainer=u,g._hostTNode=d,g._hostLView=f,g}return(0,ce.Z)(i,[{key:"element",get:function(){return $3(this._hostTNode,this._hostLView)}},{key:"injector",get:function(){return new Fl(this._hostTNode,this._hostLView)}},{key:"parentInjector",get:function(){var d=ca(this._hostTNode,this._hostLView);if(vr(d)){var f=ga(d,this._hostLView),g=Wr(d),v=f[1].data[g+8];return new Fl(v,f)}return new Fl(null,this._hostLView)}},{key:"clear",value:function(){for(;this.length>0;)this.remove(this.length-1)}},{key:"get",value:function(d){var f=D7(this._lContainer);return null!==f&&f[d]||null}},{key:"length",get:function(){return this._lContainer.length-10}},{key:"createEmbeddedView",value:function(d,f,g){var v=d.createEmbeddedView(f||{});return this.insert(v,g),v}},{key:"createComponent",value:function(d,f,g,v,T){var Z=g||this.parentInjector;if(!T&&null==d.ngModule&&Z){var ee=Z.get(Bc,null);ee&&(T=ee)}var _e=d.create(Z,v,void 0,T);return this.insert(_e.hostView,f),_e}},{key:"insert",value:function(d,f){var g=d._lView,v=g[1];if(function(e){return Hn(e[3])}(g)){var T=this.indexOf(d);if(-1!==T)this.detach(T);else{var Z=g[3],ee=new I7(Z,Z[6],Z[3]);ee.detach(ee.indexOf(d))}}var _e=this._adjustIndex(f),Ee=this._lContainer;x5(v,g,Ee,_e);var Ge=fc(_e,Ee),it=g[11],Et=M3(it,Ee[7]);return null!==Et&&function(e,r,i,u,d,f){u[0]=d,u[6]=r,pc(e,u,i,1,d,f)}(v,Ee[6],it,g,Et,Ge),d.attachToViewContainerRef(),r2(Bf(Ee),_e,d),d}},{key:"move",value:function(d,f){return this.insert(d,f)}},{key:"indexOf",value:function(d){var f=D7(this._lContainer);return null!==f?f.indexOf(d):-1}},{key:"remove",value:function(d){var f=this._adjustIndex(d,-1),g=lc(this._lContainer,f);g&&(P1(Bf(this._lContainer),f),Z0(g[1],g))}},{key:"detach",value:function(d){var f=this._adjustIndex(d,-1),g=lc(this._lContainer,f);return g&&null!=P1(Bf(this._lContainer),f)?new a5(g):null}},{key:"_adjustIndex",value:function(d){var f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return null==d?this.length+f:d}}]),i}(n0);function D7(e){return e[8]}function Bf(e){return e[8]||(e[8]=[])}function L7(e,r){var i,u=r[e.index];if(Hn(u))i=u;else{var d;if(8&e.type)d=Ti(u);else{var f=r[11];d=f.createComment("");var g=Sa(e,r);h1(f,M3(f,g),d,function(e,r){return Mi(e)?e.nextSibling(r):r.nextSibling}(f,g),!1)}r[e.index]=i=Wo(u,r,d,e),O3(r,i)}return new I7(i,e,r)} + */ +function G9(n,i,l,c){return an(()=>{const d=n;null!==i&&(d.hasOwnProperty("decorators")&&void 0!==d.decorators?d.decorators.push(...i):d.decorators=i),null!==l&&(d.ctorParameters=l),null!==c&&(d.hasOwnProperty("propDecorators")&&void 0!==d.propDecorators?d.propDecorators={...d.propDecorators,...c}:d.propDecorators=c)})} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var qf=new Map; + */function up(n,i,l){const c=kn()+n,d=Vt();return d[c]===li?fs(d,c,l?i.call(l):i()):Zu(d,c)}function V9(n,i,l,c){return Q9(Vt(),kn(),n,i,l,c)}function W9(n,i,l,c,d){return K9(Vt(),kn(),n,i,l,c,d)}function cp(n,i,l,c,d,g){return Y9(Vt(),kn(),n,i,l,c,d,g)}function dp(n,i,l,c,d,g,v){return J9(Vt(),kn(),n,i,l,c,d,g,v)}function fp(n,i,l,c,d,g,v,I){const O=kn()+n,Y=Vt(),ge=no(Y,O,l,c,d,g);return wa(Y,O+4,v)||ge?fs(Y,O+5,I?i.call(I,l,c,d,g,v):i(l,c,d,g,v)):Zu(Y,O+5)}function pp(n,i,l,c,d,g,v,I,O){const Y=kn()+n,ge=Vt(),qe=no(ge,Y,l,c,d,g);return i2(ge,Y+4,v,I)||qe?fs(ge,Y+6,O?i.call(O,l,c,d,g,v,I):i(l,c,d,g,v,I)):Zu(ge,Y+6)}function hp(n,i,l,c,d,g,v,I,O,Y){const ge=kn()+n,qe=Vt();let ot=no(qe,ge,l,c,d,g);return rc(qe,ge+4,v,I,O)||ot?fs(qe,ge+7,Y?i.call(Y,l,c,d,g,v,I,O):i(l,c,d,g,v,I,O)):Zu(qe,ge+7)}function gp(n,i,l,c,d,g,v,I,O,Y,ge){const qe=kn()+n,ot=Vt(),xt=no(ot,qe,l,c,d,g);return no(ot,qe+4,v,I,O,Y)||xt?fs(ot,qe+8,ge?i.call(ge,l,c,d,g,v,I,O,Y):i(l,c,d,g,v,I,O,Y)):Zu(ot,qe+8)}function mp(n,i,l,c){return $9(Vt(),kn(),n,i,l,c)}function C5(n,i){const l=n[i];return l===li?void 0:l}function Q9(n,i,l,c,d,g){const v=i+l;return wa(n,v,d)?fs(n,v+1,g?c.call(g,d):c(d)):C5(n,v+1)}function K9(n,i,l,c,d,g,v){const I=i+l;return i2(n,I,d,g)?fs(n,I+2,v?c.call(v,d,g):c(d,g)):C5(n,I+2)}function Y9(n,i,l,c,d,g,v,I){const O=i+l;return rc(n,O,d,g,v)?fs(n,O+3,I?c.call(I,d,g,v):c(d,g,v)):C5(n,O+3)}function J9(n,i,l,c,d,g,v,I,O){const Y=i+l;return no(n,Y,d,g,v,I)?fs(n,Y+4,O?c.call(O,d,g,v,I):c(d,g,v,I)):C5(n,Y+4)}function $9(n,i,l,c,d,g){let v=i+l,I=!1;for(let O=0;O=0;l--){const c=i[l];if(n===c.name)return c}}(i,l.pipeRegistry),l.data[d]=c,c.onDestroy&&(l.destroyHooks||(l.destroyHooks=[])).push(d,c.onDestroy)):c=l.data[d];const g=c.factory||(c.factory=go(c.type)),v=ut(t2);try{const I=Ca(!1),O=g();return Ca(I),function V6(n,i,l,c){l>=n.data.length&&(n.data[l]=null,n.blueprint[l]=null),i[l]=c}(l,Vt(),d,O),O}finally{ut(v)}}function e7(n,i,l){const c=n+22,d=Vt(),g=uo(d,c);return v5(d,c)?Q9(d,kn(),i,g.transform,l,g):g.transform(l)}function Cp(n,i,l,c){const d=n+22,g=Vt(),v=uo(g,d);return v5(g,d)?K9(g,kn(),i,v.transform,l,c,v):v.transform(l,c)}function vp(n,i,l,c,d){const g=n+22,v=Vt(),I=uo(v,g);return v5(v,g)?Y9(v,kn(),i,I.transform,l,c,d,I):I.transform(l,c,d)}function yp(n,i,l,c,d,g){const v=n+22,I=Vt(),O=uo(I,v);return v5(I,v)?J9(I,kn(),i,O.transform,l,c,d,g,O):O.transform(l,c,d,g)}function bp(n,i,l){const c=n+22,d=Vt(),g=uo(d,c);return v5(d,c)?$9(d,kn(),i,g.transform,l,g):g.transform.apply(g,l)}function v5(n,i){return n[1].data[i].pure} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -vs(Li),vs(b2),vs(Bc);vs(Rf),vs(e2),vs(n0),vs(Fc),vs(Ff),vs(Li),vs(b2) + */b8.\u0275prov=Ge({token:b8,providedIn:"environment",factory:()=>new b8(Hr(P2))});class Mp extends t.xQ{constructor(i=!1){super(),this.__isAsync=i}emit(i){super.next(i)}subscribe(i,l,c){let d=i,g=l||(()=>null),v=c;if(i&&"object"==typeof i){const O=i;d=O.next?.bind(O),g=O.error?.bind(O),v=O.complete?.bind(O)}this.__isAsync&&(g=M4(g),d&&(d=M4(d)),v&&(v=M4(v)));const I=super.subscribe({next:d,error:g,complete:v});return i instanceof C.w&&i.add(I),I}}function M4(n){return i=>{setTimeout(n,void 0,i)}}const ql=Mp; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */;var i0={}; + */function wp(){return this._results[Pl()]()}class w4{constructor(i=!1){this._emitDistinctChangesOnly=i,this.dirty=!0,this._results=[],this._changesDetected=!1,this._changes=null,this.length=0,this.first=void 0,this.last=void 0;const l=Pl(),c=w4.prototype;c[l]||(c[l]=wp)}get changes(){return this._changes||(this._changes=new ql)}get(i){return this._results[i]}map(i){return this._results.map(i)}filter(i){return this._results.filter(i)}find(i){return this._results.find(i)}reduce(i,l){return this._results.reduce(i,l)}forEach(i){this._results.forEach(i)}some(i){return this._results.some(i)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(i,l){const c=this;c.dirty=!1;const d=ka(i);(this._changesDetected=!function N1(n,i,l){if(n.length!==i.length)return!1;for(let c=0;c0&&V0(_e,Ge,xa.join(" "))}if(An=wo(Yt,20),void 0!==f)for(var io=An.projection=[],vo=0;vo0;)this.remove(this.length-1)}get(i){const l=n7(this._lContainer);return null!==l&&l[i]||null}get length(){return this._lContainer.length-10}createEmbeddedView(i,l,c){let d,g;"number"==typeof c?d=c:null!=c&&(d=c.index,g=c.injector);const v=i.createEmbeddedView(l||{},g);return this.insert(v,d),v}createComponent(i,l,c,d,g){const v=i&&!Ul(i);let I;if(v)I=l;else{const qe=l||{};I=qe.index,c=qe.injector,d=qe.projectableNodes,g=qe.environmentInjector||qe.ngModuleRef}const O=v?i:new G2(In(i)),Y=c||this.parentInjector;if(!g&&null==O.ngModule){const ot=(v?Y:this.parentInjector).get(P2,null);ot&&(g=ot)}const ge=O.create(Y,d,void 0,g);return this.insert(ge.hostView,I),ge}insert(i,l){const c=i._lView,d=c[1];if(function As(n){return Xr(n[3])}(c)){const ge=this.indexOf(i);if(-1!==ge)this.detach(ge);else{const qe=c[3],ot=new t7(qe,qe[6],qe[3]);ot.detach(ot.indexOf(i))}}const g=this._adjustIndex(l),v=this._lContainer;vl(d,c,v,g);const I=E(g,v),O=c[11],Y=Is(O,v[7]);return null!==Y&&function U1(n,i,l,c,d,g){c[0]=d,c[6]=i,H(n,c,l,1,d,g)}(d,v[6],O,c,Y,I),i.attachToViewContainerRef(),Zr(x4(v),g,i),i}move(i,l){return this.insert(i,l)}indexOf(i){const l=n7(this._lContainer);return null!==l?l.indexOf(i):-1}remove(i){const l=this._adjustIndex(i,-1),c=_1(this._lContainer,l);c&&(Jt(x4(this._lContainer),l),C1(c[1],c))}detach(i){const l=this._adjustIndex(i,-1),c=_1(this._lContainer,l);return c&&null!=Jt(x4(this._lContainer),l)?new H2(c):null}_adjustIndex(i,l=0){return i??this.length+l}};function n7(n){return n[8]}function x4(n){return n[8]||(n[8]=[])}function i7(n,i){let l;const c=i[n.index];if(Xr(c))l=c;else{let d;if(8&n.type)d=ui(c);else{const g=i[11];d=g.createComment("");const v=ci(n,i);Ba(g,Is(g,v),d,function Ml(n,i){return n.nextSibling(i)}(g,v),!1)}i[n.index]=l=jt(c,i,d,n),Ti(i,l)}return new t7(l,n,i)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var a0=new Map;function X7(e,r,i){if(r&&r!==i)throw new Error("Duplicate module registered for ".concat(e," - ").concat(_t(r)," vs ").concat(_t(r.name)))} + */class T4{constructor(i){this.queryList=i,this.matches=null}clone(){return new T4(this.queryList)}setDirty(){this.queryList.setDirty()}}class E4{constructor(i=[]){this.queries=i}createEmbeddedView(i){const l=i.queries;if(null!==l){const c=null!==i.contentQueries?i.contentQueries[0]:l.length,d=[];for(let g=0;g0)c.push(v[I/2]);else{const Y=g[I+1],ge=i[-O];for(let qe=10;qe1&&void 0!==arguments[1]?arguments[1]:Li.THROW_IF_NOT_FOUND,g=arguments.length>2&&void 0!==arguments[2]?arguments[2]:jn.Default;return d===Li||d===Bc||d===b2?this:this._r3Injector.get(d,f,g)}},{key:"destroy",value:function(){var d=this._r3Injector;!d.destroyed&&d.destroy(),this.destroyCbs.forEach(function(f){return f()}),this.destroyCbs=null}},{key:"onDestroy",value:function(d){this.destroyCbs.push(d)}}]),i}(Bc),Kf=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(u){var d;return(0,pe.Z)(this,i),(d=r.call(this)).moduleType=u,null!==zr(u)&&function(e){var r=new Set;!function i(u){var d=zr(u,!0),f=d.id;null!==f&&(X7(f,a0.get(f),u),a0.set(f,u));var Z,v=z1(d.imports),T=(0,De.Z)(v);try{for(T.s();!(Z=T.n()).done;){var ee=Z.value;r.has(ee)||(r.add(ee),i(ee))}}catch(_e){T.e(_e)}finally{T.f()}}(e)}(u),d}return(0,ce.Z)(i,[{key:"create",value:function(d){return new rv(this.moduleType,d)}}]),i}(tm); + */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function iv(e,r,i){var u=ke()+e,d=dn();return d[u]===fr?to(d,u,i?r.call(i):r()):Hu(d,u)}function ep(e,r,i,u){return np(dn(),ke(),e,r,i,u)}function tp(e,r,i,u,d){return rp(dn(),ke(),e,r,i,u,d)}function av(e,r,i,u,d,f){return ip(dn(),ke(),e,r,i,u,d,f)}function ov(e,r,i,u,d,f,g){return ap(dn(),ke(),e,r,i,u,d,f,g)}function sv(e,r,i,u,d,f,g,v){var T=ke()+e,Z=dn(),ee=Fs(Z,T,i,u,d,f);return _r(Z,T+4,g)||ee?to(Z,T+5,v?r.call(v,i,u,d,f,g):r(i,u,d,f,g)):Hu(Z,T+5)}function lv(e,r,i,u,d,f,g,v,T){var Z=ke()+e,ee=dn(),_e=Fs(ee,Z,i,u,d,f);return Gu(ee,Z+4,g,v)||_e?to(ee,Z+6,T?r.call(T,i,u,d,f,g,v):r(i,u,d,f,g,v)):Hu(ee,Z+6)}function uv(e,r,i,u,d,f,g,v,T,Z){var ee=ke()+e,_e=dn(),Ee=Fs(_e,ee,i,u,d,f);return x2(_e,ee+4,g,v,T)||Ee?to(_e,ee+7,Z?r.call(Z,i,u,d,f,g,v,T):r(i,u,d,f,g,v,T)):Hu(_e,ee+7)}function cv(e,r,i,u,d,f,g,v,T,Z,ee){var _e=ke()+e,Ee=dn(),Ge=Fs(Ee,_e,i,u,d,f);return Fs(Ee,_e+4,g,v,T,Z)||Ge?to(Ee,_e+8,ee?r.call(ee,i,u,d,f,g,v,T,Z):r(i,u,d,f,g,v,T,Z)):Hu(Ee,_e+8)}function dv(e,r,i,u){return op(dn(),ke(),e,r,i,u)}function c5(e,r){var i=e[r];return i===fr?void 0:i}function np(e,r,i,u,d,f){var g=r+i;return _r(e,g,d)?to(e,g+1,f?u.call(f,d):u(d)):c5(e,g+1)}function rp(e,r,i,u,d,f,g){var v=r+i;return Gu(e,v,d,f)?to(e,v+2,g?u.call(g,d,f):u(d,f)):c5(e,v+2)}function ip(e,r,i,u,d,f,g,v){var T=r+i;return x2(e,T,d,f,g)?to(e,T+3,v?u.call(v,d,f,g):u(d,f,g)):c5(e,T+3)}function ap(e,r,i,u,d,f,g,v,T){var Z=r+i;return Fs(e,Z,d,f,g,v)?to(e,Z+4,T?u.call(T,d,f,g,v):u(d,f,g,v)):c5(e,Z+4)}function op(e,r,i,u,d,f){for(var g=r+i,v=!1,T=0;T=0;i--){var u=r[i];if(e===u.name)return u}throw new he("302","The pipe '".concat(e,"' could not be found!"))}(r,i.pipeRegistry),i.data[d]=u,u.onDestroy&&(i.destroyHooks||(i.destroyHooks=[])).push(d,u.onDestroy)):u=i.data[d];var f=u.factory||(u.factory=N(u.type)),g=Lr(Sc);try{var v=wi(!1),T=f();return wi(v),function(e,r,i,u){i>=e.data.length&&(e.data[i]=null,e.blueprint[i]=null),r[i]=u}(i,dn(),d,T),T}finally{Lr(g)}}function lp(e,r,i){var u=e+20,d=dn(),f=To(d,u);return f5(d,d5(d,u)?np(d,ke(),r,f.transform,i,f):f.transform(i))}function pv(e,r,i,u){var d=e+20,f=dn(),g=To(f,d);return f5(f,d5(f,d)?rp(f,ke(),r,g.transform,i,u,g):g.transform(i,u))}function hv(e,r,i,u,d){var f=e+20,g=dn(),v=To(g,f);return f5(g,d5(g,f)?ip(g,ke(),r,v.transform,i,u,d,v):v.transform(i,u,d))}function gv(e,r,i,u,d,f){var g=e+20,v=dn(),T=To(v,g);return f5(v,d5(v,g)?ap(v,ke(),r,T.transform,i,u,d,f,T):T.transform(i,u,d,f))}function mv(e,r,i){var u=e+20,d=dn(),f=To(d,u);return f5(d,d5(d,u)?op(d,ke(),r,f.transform,i,f):f.transform.apply(f,i))}function d5(e,r){return e[1].data[r].pure}function f5(e,r){ju.isWrapped(r)&&(r=ju.unwrap(r),e[Fe()]=fr);return r} + */ +function f7(n){return void 0!==n.ngModule}function p7(n){return!!Xi(n)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var vv=function(e){(0,Ne.Z)(i,e);var r=(0,ge.Z)(i);function i(){var u,d=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return(0,pe.Z)(this,i),(u=r.call(this)).__isAsync=d,u}return(0,ce.Z)(i,[{key:"emit",value:function(d){(0,L.Z)((0,C.Z)(i.prototype),"next",this).call(this,d)}},{key:"subscribe",value:function(d,f,g){var v,T,Z,ee=d,_e=f||function(){return null},Ee=g;if(d&&"object"==typeof d){var Ge=d;ee=null===(v=Ge.next)||void 0===v?void 0:v.bind(Ge),_e=null===(T=Ge.error)||void 0===T?void 0:T.bind(Ge),Ee=null===(Z=Ge.complete)||void 0===Z?void 0:Z.bind(Ge)}this.__isAsync&&(_e=Jf(_e),ee&&(ee=Jf(ee)),Ee&&(Ee=Jf(Ee)));var it=(0,L.Z)((0,C.Z)(i.prototype),"subscribe",this).call(this,{next:ee,error:_e,complete:Ee});return d instanceof te.w&&d.add(it),it}}]),i}(ve.xQ);function Jf(e){return function(r){setTimeout(e,void 0,r)}}var Cu=vv; + */const b5=[];let S4=!1;function h7(n){return Array.isArray(n)?n.every(h7):!!Ie(n)}function Zp(n,i={}){(function Hp(n,i,l=!1){const c=ka(i.declarations||ye);let d=null;Object.defineProperty(n,Un,{configurable:!0,get:()=>(null===d&&(d=Ur().compileNgModule(ps,`ng:///${n.name}/\u0275mod.js`,{type:n,bootstrap:ka(i.bootstrap||ye).map(Ie),declarations:c.map(Ie),imports:ka(i.imports||ye).map(Ie).map(v7),exports:ka(i.exports||ye).map(Ie).map(v7),schemas:i.schemas?ka(i.schemas):null,id:i.id||null}),d.schemas||(d.schemas=[])),d)});let g=null;Object.defineProperty(n,Vn,{get:()=>{if(null===g){const I=Ur();g=I.compileFactory(ps,`ng:///${n.name}/\u0275fac.js`,{name:n.name,type:n,deps:yo(n),target:I.FactoryTarget.NgModule,typeArgumentCount:0})}return g},configurable:!1});let v=null;Object.defineProperty(n,Zt,{get:()=>{if(null===v){const I={name:n.name,type:n,providers:i.providers||ye,imports:[(i.imports||ye).map(Ie),(i.exports||ye).map(Ie)]};v=Ur().compileInjector(ps,`ng:///${n.name}/\u0275inj.js`,I)}return v},configurable:!1})})(n,i),void 0!==i.id&&v3(n,i.id),function jp(n,i){b5.push({moduleType:n,ngModule:i})}(n,i)}function Vp(n,i){const l=ka(i.declarations||ye),c=Mc(n);l.forEach(d=>{if((d=Ie(d)).hasOwnProperty(nt)){C7(In(d),c)}else!d.hasOwnProperty(Ot)&&!d.hasOwnProperty(un)&&(d.ngSelectorScope=n)})}function C7(n,i){n.directiveDefs=()=>Array.from(i.compilation.directives).map(l=>l.hasOwnProperty(nt)?In(l):qn(l)).filter(l=>!!l),n.pipeDefs=()=>Array.from(i.compilation.pipes).map(l=>oi(l)),n.schemas=i.schemas,n.tView=null}function Mc(n){if(p7(n))return function Wp(n){const i=Xi(n,!0);if(null!==i.transitiveCompileScopes)return i.transitiveCompileScopes;const l={schemas:i.schemas||null,compilation:{directives:new Set,pipes:new Set},exported:{directives:new Set,pipes:new Set}};return tl(i.imports).forEach(c=>{const d=Mc(c);d.exported.directives.forEach(g=>l.compilation.directives.add(g)),d.exported.pipes.forEach(g=>l.compilation.pipes.add(g))}),tl(i.declarations).forEach(c=>{oi(c)?l.compilation.pipes.add(c):l.compilation.directives.add(c)}),tl(i.exports).forEach(c=>{const d=c;if(p7(d)){const g=Mc(d);g.exported.directives.forEach(v=>{l.compilation.directives.add(v),l.exported.directives.add(v)}),g.exported.pipes.forEach(v=>{l.compilation.pipes.add(v),l.exported.pipes.add(v)})}else oi(d)?l.exported.pipes.add(d):l.exported.directives.add(d)}),i.transitiveCompileScopes=l,l}(n);if(ai(n)){if(null!==(In(n)||qn(n)))return{schemas:null,compilation:{directives:new Set,pipes:new Set},exported:{directives:new Set([n]),pipes:new Set}};if(null!==oi(n))return{schemas:null,compilation:{directives:new Set,pipes:new Set},exported:{directives:new Set,pipes:new Set([n])}}}throw new Error(`${n.name} does not have a module def (\u0275mod property)`)}function v7(n){return f7(n)?n.ngModule:n} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function _v(){return this._results[E2()]()}var up=function(){function e(){var r=arguments.length>0&&void 0!==arguments[0]&&arguments[0];(0,pe.Z)(this,e),this._emitDistinctChangesOnly=r,this.dirty=!0,this._results=[],this._changesDetected=!1,this._changes=null,this.length=0,this.first=void 0,this.last=void 0;var i=E2(),u=e.prototype;u[i]||(u[i]=_v)}return(0,ce.Z)(e,[{key:"changes",get:function(){return this._changes||(this._changes=new Cu)}},{key:"get",value:function(i){return this._results[i]}},{key:"map",value:function(i){return this._results.map(i)}},{key:"filter",value:function(i){return this._results.filter(i)}},{key:"find",value:function(i){return this._results.find(i)}},{key:"reduce",value:function(i,u){return this._results.reduce(i,u)}},{key:"forEach",value:function(i){this._results.forEach(i)}},{key:"some",value:function(i){return this._results.some(i)}},{key:"toArray",value:function(){return this._results.slice()}},{key:"toString",value:function(){return this._results.toString()}},{key:"reset",value:function(i,u){var d=this;d.dirty=!1;var f=jo(i);(this._changesDetected=!function(e,r,i){if(e.length!==r.length)return!1;for(var u=0;u{if(null===l){const c=Ur();if(_3(i)){const Y=[`Component '${n.name}' is not resolved:`];throw i.templateUrl&&Y.push(` - templateUrl: ${i.templateUrl}`),i.styleUrls&&i.styleUrls.length&&Y.push(` - styleUrls: ${JSON.stringify(i.styleUrls)}`),Y.push("Did you run and wait for 'resolveComponentResources()'?"),new Error(Y.join("\n"))}const d=function zp(){return bc}();let g=i.preserveWhitespaces;void 0===g&&(g=null!==d&&void 0!==d.preserveWhitespaces&&d.preserveWhitespaces);let v=i.encapsulation;void 0===v&&(v=null!==d&&void 0!==d.defaultEncapsulation?d.defaultEncapsulation:$n.Emulated);const I=i.templateUrl||`ng:///${n.name}/template.html`,O={...w7(n,i),typeSourceSpan:c.createParseSourceSpan("Component",n.name,I),template:i.template||"",preserveWhitespaces:g,styles:i.styles||ye,animations:i.animations,declarations:[],changeDetection:i.changeDetection,encapsulation:v,interpolation:i.interpolation,viewProviders:i.viewProviders||null,isStandalone:!!i.standalone};A4++;try{if(O.usesInheritance&&x7(n),l=c.compileComponent(ps,I,O),i.standalone){const Y=ka(i.imports||ye),{directiveDefs:ge,pipeDefs:qe}=function Yp(n,i){let l=null,c=null;return{directiveDefs:()=>{if(null===l){l=[In(n)];const v=new Set;for(const I of i){const O=Ie(I);if(!v.has(O))if(v.add(O),Xi(O)){const Y=Mc(O);for(const ge of Y.exported.directives){const qe=In(ge)||qn(ge);qe&&!v.has(ge)&&(v.add(ge),l.push(qe))}}else{const Y=In(O)||qn(O);Y&&l.push(Y)}}}return l},pipeDefs:()=>{if(null===c){c=[];const v=new Set;for(const I of i){const O=Ie(I);if(!v.has(O))if(v.add(O),Xi(O)){const Y=Mc(O);for(const ge of Y.exported.pipes){const qe=oi(ge);qe&&!v.has(ge)&&(v.add(ge),c.push(qe))}}else{const Y=oi(O);Y&&c.push(Y)}}}return c}}}(n,Y);l.directiveDefs=ge,l.pipeDefs=qe,l.dependencies=()=>Y.map(Ie)}}finally{A4--}if(0===A4&&function Up(){if(!S4){S4=!0;try{for(let n=b5.length-1;n>=0;n--){const{moduleType:i,ngModule:l}=b5[n];l.declarations&&l.declarations.every(h7)&&(b5.splice(n,1),Vp(i,l))}}finally{S4=!1}}}(),function Jp(n){return void 0!==n.ngSelectorScope}(n)){const Y=Mc(n.ngSelectorScope);C7(l,Y)}if(i.schemas){if(!i.standalone)throw new Error(`The 'schemas' was specified for the ${Qe(n)} but is only valid on a component that is standalone.`);l.schemas=i.schemas}else i.standalone&&(l.schemas=[])}return l},configurable:!1})}function y7(n,i){let l=null;M7(n,i||{}),Object.defineProperty(n,Ot,{get:()=>{if(null===l){const c=b7(n,i||{});l=Ur().compileDirective(ps,c.sourceMapUrl,c.metadata)}return l},configurable:!1})}function b7(n,i){const l=n&&n.name,c=`ng:///${l}/\u0275dir.js`,d=Ur(),g=w7(n,i);return g.typeSourceSpan=d.createParseSourceSpan("Directive",l,c),g.usesInheritance&&x7(n),{metadata:g,sourceMapUrl:c}}function M7(n,i){let l=null;Object.defineProperty(n,Vn,{get:()=>{if(null===l){const c=b7(n,i),d=Ur();l=d.compileFactory(ps,`ng:///${n.name}/\u0275fac.js`,{name:c.metadata.name,type:c.metadata.type,typeArgumentCount:0,deps:yo(n),target:d.FactoryTarget.Directive})}return l},configurable:!1})}function $p(n){return Object.getPrototypeOf(n.prototype)===Object.prototype}function w7(n,i){const l=Ms(),c=l.ownPropMetadata(n);return{name:n.name,type:n,selector:void 0!==i.selector?i.selector:null,host:i.host||Ee,propMetadata:c,inputs:i.inputs||ye,outputs:i.outputs||ye,queries:T7(n,c,E7),lifecycle:{usesOnChanges:l.hasLifecycleHook(n,"ngOnChanges")},typeSourceSpan:null,usesInheritance:!$p(n),exportAs:th(i.exportAs),providers:i.providers||null,viewQueries:T7(n,c,I7),isStandalone:!!i.standalone}}function x7(n){const i=Object.prototype;let l=Object.getPrototypeOf(n.prototype).constructor;for(;l&&l!==i;)!qn(l)&&!In(l)&&ih(l)&&y7(l,null),l=Object.getPrototypeOf(l)}function Xp(n){return"string"==typeof n?D7(n):Ie(n)}function eh(n,i){return{propertyName:n,predicate:Xp(i.selector),descendants:i.descendants,first:i.first,read:i.read?i.read:null,static:!!i.static,emitDistinctChangesOnly:!!i.emitDistinctChangesOnly}}function T7(n,i,l){const c=[];for(const d in i)if(i.hasOwnProperty(d)){const g=i[d];g.forEach(v=>{if(l(v)){if(!v.selector)throw new Error(`Can't construct a query for the property "${d}" of "${Qe(n)}" since the query selector wasn't defined.`);if(g.some(L7))throw new Error("Cannot combine @Input decorators with query decorators");c.push(eh(d,v))}})}return c}function th(n){return void 0===n?null:D7(n)}function E7(n){const i=n.ngMetadataName;return"ContentChild"===i||"ContentChildren"===i}function I7(n){const i=n.ngMetadataName;return"ViewChild"===i||"ViewChildren"===i}function L7(n){return"Input"===n.ngMetadataName}function D7(n){return n.split(",").map(i=>i.trim())}const nh=["ngOnChanges","ngOnInit","ngOnDestroy","ngDoCheck","ngAfterViewInit","ngAfterViewChecked","ngAfterContentInit","ngAfterContentChecked"];function ih(n){const i=Ms();if(nh.some(c=>i.hasLifecycleHook(n,c)))return!0;const l=i.propMetadata(n);for(const c in l){const d=l[c];for(let g=0;g0&&void 0!==arguments[0]?arguments[0]:[];(0,pe.Z)(this,e),this.queries=r}return(0,ce.Z)(e,[{key:"createEmbeddedView",value:function(i){var u=i.queries;if(null!==u){for(var d=null!==i.contentQueries?i.contentQueries[0]:u.length,f=[],g=0;g2&&void 0!==arguments[2]?arguments[2]:null;(0,pe.Z)(this,e),this.predicate=r,this.flags=i,this.read=u}),wv=function(){function e(){var r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];(0,pe.Z)(this,e),this.queries=r}return(0,ce.Z)(e,[{key:"elementStart",value:function(i,u){for(var d=0;d1&&void 0!==arguments[1]?arguments[1]:-1;(0,pe.Z)(this,e),this.metadata=r,this.matches=null,this.indexInDeclarationView=-1,this.crossesNgTemplate=!1,this._appliesToNextNode=!0,this._declarationNodeIndex=i}return(0,ce.Z)(e,[{key:"elementStart",value:function(i,u){this.isApplyingToNode(u)&&this.matchTNode(i,u)}},{key:"elementEnd",value:function(i){this._declarationNodeIndex===i.index&&(this._appliesToNextNode=!1)}},{key:"template",value:function(i,u){this.elementStart(i,u)}},{key:"embeddedTView",value:function(i,u){return this.isApplyingToNode(i)?(this.crossesNgTemplate=!0,this.addMatch(-i.index,u),new e(this.metadata)):null}},{key:"isApplyingToNode",value:function(i){if(this._appliesToNextNode&&1!=(1&this.metadata.flags)){for(var u=this._declarationNodeIndex,d=i.parent;null!==d&&8&d.type&&d.index!==u;)d=d.parent;return u===(null!==d?d.index:-1)}return this._appliesToNextNode}},{key:"matchTNode",value:function(i,u){var d=this.metadata.predicate;if(Array.isArray(d))for(var f=0;f0)u.push(g[v/2]);else{for(var Z=f[v+1],ee=r[-T],_e=10;_en,void 0,void 0,(n,i)=>y7(n,i)),oh=y2("Component",(n={})=>({changeDetection:zt.Default,...n}),P7,void 0,(n,i)=>Qp(n,i)),ah=y2("Pipe",n=>({pure:!0,...n}),void 0,void 0,(n,i)=>function rh(n,i){let l=null,c=null;Object.defineProperty(n,Vn,{get:()=>{if(null===c){const d=S7(n,i),g=Ur(d.type);c=g.compileFactory(ps,`ng:///${d.name}/\u0275fac.js`,{name:d.name,type:d.type,typeArgumentCount:0,deps:yo(n),target:g.FactoryTarget.Pipe})}return c},configurable:!1}),Object.defineProperty(n,un,{get:()=>{if(null===l){const d=S7(n,i);l=Ur(d.type).compilePipe(ps,`ng:///${d.name}/\u0275pipe.js`,d)}return l},configurable:!1})}(n,i)),sh=sa("Input",n=>({bindingPropertyName:n})),lh=sa("Output",n=>({bindingPropertyName:n})),uh=sa("HostBinding",n=>({hostPropertyName:n})),ch=sa("HostListener",(n,i)=>({eventName:n,args:i})),dh=y2("NgModule",n=>n,void 0,void 0,(n,i)=>Zp(n,i)); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function kv(e,r){return O6(e,r)} + */ /** * @license * Copyright Google LLC All Rights Reserved. @@ -1822,7 +1979,7 @@ var bv=function(){function e(r){(0,pe.Z)(this,e),this.queryList=r,this.matches=n * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var ys={"\u0275\u0275attribute":Tc,"\u0275\u0275attributeInterpolate1":wd,"\u0275\u0275attributeInterpolate2":D8,"\u0275\u0275attributeInterpolate3":L8,"\u0275\u0275attributeInterpolate4":S8,"\u0275\u0275attributeInterpolate5":Ec,"\u0275\u0275attributeInterpolate6":P8,"\u0275\u0275attributeInterpolate7":k8,"\u0275\u0275attributeInterpolate8":O8,"\u0275\u0275attributeInterpolateV":A8,"\u0275\u0275defineComponent":$r,"\u0275\u0275defineDirective":Vt,"\u0275\u0275defineInjectable":ht,"\u0275\u0275defineInjector":Gt,"\u0275\u0275defineNgModule":nt,"\u0275\u0275definePipe":En,"\u0275\u0275directiveInject":Sc,"\u0275\u0275getInheritedFactory":Du,"\u0275\u0275inject":Ki,"\u0275\u0275injectAttribute":V2,"\u0275\u0275invalidFactory":G8,"\u0275\u0275invalidFactoryDep":n3,"\u0275\u0275templateRefExtractor":kv,"\u0275\u0275NgOnChangesFeature":oe,"\u0275\u0275ProvidersFeature":m7,"\u0275\u0275CopyDefinitionFeature":nf,"\u0275\u0275InheritDefinitionFeature":y1,"\u0275\u0275nextContext":kc,"\u0275\u0275namespaceHTML":Do,"\u0275\u0275namespaceMathML":Io,"\u0275\u0275namespaceSVG":Bo,"\u0275\u0275enableBindings":Ei,"\u0275\u0275disableBindings":Xo,"\u0275\u0275elementStart":Rd,"\u0275\u0275elementEnd":Fd,"\u0275\u0275element":Q8,"\u0275\u0275elementContainerStart":Bd,"\u0275\u0275elementContainerEnd":S2,"\u0275\u0275elementContainer":G3,"\u0275\u0275pureFunction0":iv,"\u0275\u0275pureFunction1":ep,"\u0275\u0275pureFunction2":tp,"\u0275\u0275pureFunction3":av,"\u0275\u0275pureFunction4":ov,"\u0275\u0275pureFunction5":sv,"\u0275\u0275pureFunction6":lv,"\u0275\u0275pureFunction7":uv,"\u0275\u0275pureFunction8":cv,"\u0275\u0275pureFunctionV":dv,"\u0275\u0275getCurrentView":Y8,"\u0275\u0275restoreView":x1,"\u0275\u0275listener":Pc,"\u0275\u0275projection":zd,"\u0275\u0275syntheticHostProperty":J3,"\u0275\u0275syntheticHostListener":K8,"\u0275\u0275pipeBind1":lp,"\u0275\u0275pipeBind2":pv,"\u0275\u0275pipeBind3":hv,"\u0275\u0275pipeBind4":gv,"\u0275\u0275pipeBindV":mv,"\u0275\u0275projectionDef":X8,"\u0275\u0275hostProperty":$d,"\u0275\u0275property":Ad,"\u0275\u0275propertyInterpolate":Q3,"\u0275\u0275propertyInterpolate1":k2,"\u0275\u0275propertyInterpolate2":Ud,"\u0275\u0275propertyInterpolate3":$8,"\u0275\u0275propertyInterpolate4":e6,"\u0275\u0275propertyInterpolate5":Oc,"\u0275\u0275propertyInterpolate6":t6,"\u0275\u0275propertyInterpolate7":mu,"\u0275\u0275propertyInterpolate8":n6,"\u0275\u0275propertyInterpolateV":r6,"\u0275\u0275pipe":sp,"\u0275\u0275queryRefresh":fp,"\u0275\u0275viewQuery":pp,"\u0275\u0275loadQuery":hp,"\u0275\u0275contentQuery":Lv,"\u0275\u0275reference":N8,"\u0275\u0275classMap":Ac,"\u0275\u0275classMapInterpolate1":Ef,"\u0275\u0275classMapInterpolate2":xf,"\u0275\u0275classMapInterpolate3":If,"\u0275\u0275classMapInterpolate4":w6,"\u0275\u0275classMapInterpolate5":Me,"\u0275\u0275classMapInterpolate6":w,"\u0275\u0275classMapInterpolate7":k,"\u0275\u0275classMapInterpolate8":S,"\u0275\u0275classMapInterpolateV":q,"\u0275\u0275styleMap":Q1,"\u0275\u0275styleMapInterpolate1":K,"\u0275\u0275styleMapInterpolate2":ne,"\u0275\u0275styleMapInterpolate3":He,"\u0275\u0275styleMapInterpolate4":et,"\u0275\u0275styleMapInterpolate5":vt,"\u0275\u0275styleMapInterpolate6":dt,"\u0275\u0275styleMapInterpolate7":Lt,"\u0275\u0275styleMapInterpolate8":an,"\u0275\u0275styleMapInterpolateV":Ln,"\u0275\u0275styleProp":Hd,"\u0275\u0275stylePropInterpolate1":Nn,"\u0275\u0275stylePropInterpolate2":Cn,"\u0275\u0275stylePropInterpolate3":ar,"\u0275\u0275stylePropInterpolate4":Ea,"\u0275\u0275stylePropInterpolate5":mo,"\u0275\u0275stylePropInterpolate6":_u,"\u0275\u0275stylePropInterpolate7":K3,"\u0275\u0275stylePropInterpolate8":Jd,"\u0275\u0275stylePropInterpolateV":Xd,"\u0275\u0275classProp":Gd,"\u0275\u0275advance":B5,"\u0275\u0275template":Td,"\u0275\u0275text":$u,"\u0275\u0275textInterpolate":ci,"\u0275\u0275textInterpolate1":K1,"\u0275\u0275textInterpolate2":ro,"\u0275\u0275textInterpolate3":M1,"\u0275\u0275textInterpolate4":_6,"\u0275\u0275textInterpolate5":Kd,"\u0275\u0275textInterpolate6":y6,"\u0275\u0275textInterpolate7":C6,"\u0275\u0275textInterpolate8":b6,"\u0275\u0275textInterpolateV":M6,"\u0275\u0275i18n":hg,"\u0275\u0275i18nAttributes":gg,"\u0275\u0275i18nExp":h7,"\u0275\u0275i18nStart":f7,"\u0275\u0275i18nEnd":p7,"\u0275\u0275i18nApply":mg,"\u0275\u0275i18nPostprocess":vg,"\u0275\u0275resolveWindow":k0,"\u0275\u0275resolveDocument":Nu,"\u0275\u0275resolveBody":h3,"\u0275\u0275setComponentScope":Er,"\u0275\u0275setNgModuleScope":lt,"\u0275\u0275sanitizeHtml":ml,"\u0275\u0275sanitizeStyle":vl,"\u0275\u0275sanitizeResourceUrl":c1,"\u0275\u0275sanitizeScript":B1,"\u0275\u0275sanitizeUrl":u1,"\u0275\u0275sanitizeUrlOrResourceUrl":Ho,"\u0275\u0275trustConstantHtml":eu,"\u0275\u0275trustConstantResourceUrl":fs,forwardRef:Wt,resolveForwardRef:Ft},o0=null; + */ /** * @license * Copyright Google LLC All Rights Reserved. @@ -1830,35 +1987,37 @@ var bv=function(){function e(r){(0,pe.Z)(this,e),this.queryList=r,this.matches=n * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var p5=[];function Rv(e,r){p5.push({moduleType:e,ngModule:r})}var $f=!1;function _p(e){return Array.isArray(e)?e.every(_p):!!Ft(e)}function qv(e,r){arguments.length>2&&void 0!==arguments[2]&&arguments[2];var u=jo(r.declarations||$n),d=null;Object.defineProperty(e,qr,{configurable:!0,get:function(){if(null===d){var T=ra();(d=T.compileNgModule(ys,"ng:///".concat(e.name,"/\u0275mod.js"),{type:e,bootstrap:jo(r.bootstrap||$n).map(Ft),declarations:u.map(Ft),imports:jo(r.imports||$n).map(Ft).map(wp),exports:jo(r.exports||$n).map(Ft).map(wp),schemas:r.schemas?jo(r.schemas):null,id:r.id||null})).schemas||(d.schemas=[])}return d}});var f=null;Object.defineProperty(e,Fr,{get:function(){if(null===f){var T=ra();f=T.compileFactory(ys,"ng:///".concat(e.name,"/\u0275fac.js"),{name:e.name,type:e,deps:jl(e),target:T.FactoryTarget.NgModule,typeArgumentCount:0})}return f},configurable:!1});var g=null;Object.defineProperty(e,di,{get:function(){if(null===g){var T={name:e.name,type:e,providers:r.providers||$n,imports:[(r.imports||$n).map(Ft),(r.exports||$n).map(Ft)]},Z=ra();g=Z.compileInjector(ys,"ng:///".concat(e.name,"/\u0275inj.js"),T)}return g},configurable:!1})}new WeakMap,new WeakMap;function Zv(e,r){var i=jo(r.declarations||$n),u=z6(e);i.forEach(function(d){d.hasOwnProperty(Xr)?Mp(kn(d),u):!d.hasOwnProperty(yi)&&!d.hasOwnProperty(Yn)&&(d.ngSelectorScope=e)})}function Mp(e,r){e.directiveDefs=function(){return Array.from(r.compilation.directives).map(function(i){return i.hasOwnProperty(Xr)?kn(i):Qn(i)}).filter(function(i){return!!i})},e.pipeDefs=function(){return Array.from(r.compilation.pipes).map(function(i){return pr(i)})},e.schemas=r.schemas,e.tView=null}function z6(e){if(!n9(e))throw new Error("".concat(e.name," does not have a module def (\u0275mod property)"));var r=zr(e);if(null!==r.transitiveCompileScopes)return r.transitiveCompileScopes;var i={schemas:r.schemas||null,compilation:{directives:new Set,pipes:new Set},exported:{directives:new Set,pipes:new Set}};return z1(r.imports).forEach(function(u){var d=u;if(!n9(d))throw new Error("Importing ".concat(d.name," which does not have a \u0275mod property"));var f=z6(d);f.exported.directives.forEach(function(g){return i.compilation.directives.add(g)}),f.exported.pipes.forEach(function(g){return i.compilation.pipes.add(g)})}),z1(r.declarations).forEach(function(u){pr(u)?i.compilation.pipes.add(u):i.compilation.directives.add(u)}),z1(r.exports).forEach(function(u){var d=u;if(n9(d)){var f=z6(d);f.exported.directives.forEach(function(g){i.compilation.directives.add(g),i.exported.directives.add(g)}),f.exported.pipes.forEach(function(g){i.compilation.pipes.add(g),i.exported.pipes.add(g)})}else pr(d)?i.exported.pipes.add(d):i.exported.directives.add(d)}),r.transitiveCompileScopes=i,i}function wp(e){return function(e){return void 0!==e.ngModule}(e)?e.ngModule:e}function n9(e){return!!zr(e)} +function x8(...n){} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var r9=0;function Tp(e,r){var i=null;xp(e,r||{}),Object.defineProperty(e,yi,{get:function(){if(null===i){var d=Ep(e,r||{}),f=ra();i=f.compileDirective(ys,d.sourceMapUrl,d.metadata)}return i},configurable:!1})}function Ep(e,r){var i=e&&e.name,u="ng:///".concat(i,"/\u0275dir.js"),d=ra(),f=Ip(e,r);return f.typeSourceSpan=d.createParseSourceSpan("Directive",i,u),f.usesInheritance&&Dp(e),{metadata:f,sourceMapUrl:u}}function xp(e,r){var i=null;Object.defineProperty(e,Fr,{get:function(){if(null===i){var d=Ep(e,r),f=ra();i=f.compileFactory(ys,"ng:///".concat(e.name,"/\u0275fac.js"),{name:d.metadata.name,type:d.metadata.type,typeArgumentCount:0,deps:jl(e),target:f.FactoryTarget.Directive})}return i},configurable:!1})}function Vv(e){return Object.getPrototypeOf(e.prototype)===Object.prototype}function Ip(e,r){var i=tc(),u=i.ownPropMetadata(e);return{name:e.name,type:e,selector:void 0!==r.selector?r.selector:null,host:r.host||_i,propMetadata:u,inputs:r.inputs||$n,outputs:r.outputs||$n,queries:Lp(e,u,Sp),lifecycle:{usesOnChanges:i.hasLifecycleHook(e,"ngOnChanges")},typeSourceSpan:null,usesInheritance:!Vv(e),exportAs:Wv(r.exportAs),providers:r.providers||null,viewQueries:Lp(e,u,Pp)}}function Dp(e){for(var r=Object.prototype,i=Object.getPrototypeOf(e.prototype).constructor;i&&i!==r;)!Qn(i)&&!kn(i)&&Yv(i)&&Tp(i,null),i=Object.getPrototypeOf(i)}function Hv(e){return"string"==typeof e?Op(e):Ft(e)}function Lp(e,r,i){var u=[],d=function(v){if(r.hasOwnProperty(v)){var T=r[v];T.forEach(function(Z){if(i(Z)){if(!Z.selector)throw new Error("Can't construct a query for the property \"".concat(v,'" of ')+'"'.concat(xt(e),"\" since the query selector wasn't defined."));if(T.some(kp))throw new Error("Cannot combine @Input decorators with query decorators");u.push(function(e,r){return{propertyName:e,predicate:Hv(r.selector),descendants:r.descendants,first:r.first,read:r.read?r.read:null,static:!!r.static,emitDistinctChangesOnly:!!r.emitDistinctChangesOnly}}(v,Z))}})}};for(var f in r)d(f);return u}function Wv(e){return void 0===e?null:Op(e)}function Sp(e){var r=e.ngMetadataName;return"ContentChild"===r||"ContentChildren"===r}function Pp(e){var r=e.ngMetadataName;return"ViewChild"===r||"ViewChildren"===r}function kp(e){return"Input"===e.ngMetadataName}function Op(e){return e.split(",").map(function(r){return r.trim()})}var Qv=["ngOnChanges","ngOnInit","ngOnDestroy","ngDoCheck","ngAfterViewInit","ngAfterViewChecked","ngAfterContentInit","ngAfterContentChecked"];function Yv(e){var r=tc();if(Qv.some(function(T){return r.hasLifecycleHook(e,T)}))return!0;var i=r.propMetadata(e);for(var u in i)for(var d=i[u],f=0;f{this.resolve=l,this.reject=c})}runInitializers(){if(this.initialized)return;const i=[],l=()=>{this.done=!0,this.resolve()};if(this.appInits)for(let c=0;c{d.subscribe({complete:v,error:I})});i.push(g)}}Promise.all(i).then(()=>{l()}).catch(c=>{this.reject(c)}),0===i.length&&l(),this.initialized=!0}}f2.\u0275fac=function(i){return new(i||f2)(Hr(O7,8))},f2.\u0275prov=Ge({token:f2,factory:f2.\u0275fac,providedIn:"root"}); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Ap(e,r){return{type:e,name:e.name,pipeName:r.name,pure:void 0===r.pure||r.pure}} + */ +const A7=new gr("AppId",{providedIn:"root",factory:k7});function k7(){return`${k4()}${k4()}${k4()}`}function k4(){return String.fromCharCode(97+Math.floor(25*Math.random()))}const N7=new gr("Platform Initializer"),fh=new gr("Platform ID",{providedIn:"platform",factory:()=>"unknown"}),ph=new gr("appBootstrapListener"); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var Np=Zl("Directive",function(){var r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return r},void 0,void 0,function(r,i){return v_(r,i)}),t_=Zl("Component",function(){var r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Object.assign({changeDetection:We.Default},r)},Np,void 0,function(r,i){return m_(r,i)}),i_=Zl("Pipe",function(r){return Object.assign({pure:!0},r)},void 0,void 0,function(r,i){return __(r,i)}),o_=L1("Input",function(r){return{bindingPropertyName:r}}),l_=L1("Output",function(r){return{bindingPropertyName:r}}),c_=L1("HostBinding",function(r){return{hostPropertyName:r}}),f_=L1("HostListener",function(r,i){return{eventName:r,args:i}}),p_=function(e,r){var i=null;(function(e,r){nc(r)&&(Ua.set(e,r),Vl.add(e))})(e,r),xp(e,r),Object.defineProperty(e,Xr,{get:function(){if(null===i){var d=ra();if(nc(r)){var f=["Component '".concat(e.name,"' is not resolved:")];throw r.templateUrl&&f.push(" - templateUrl: ".concat(r.templateUrl)),r.styleUrls&&r.styleUrls.length&&f.push(" - styleUrls: ".concat(JSON.stringify(r.styleUrls))),f.push("Did you run and wait for 'resolveComponentResources()'?"),new Error(f.join("\n"))}var g=o0,v=r.preserveWhitespaces;void 0===v&&(v=null!==g&&void 0!==g.preserveWhitespaces&&g.preserveWhitespaces);var T=r.encapsulation;void 0===T&&(T=null!==g&&void 0!==g.defaultEncapsulation?g.defaultEncapsulation:yt.Emulated);var Z=r.templateUrl||"ng:///".concat(e.name,"/template.html"),ee=Object.assign(Object.assign({},Ip(e,r)),{typeSourceSpan:d.createParseSourceSpan("Component",e.name,Z),template:r.template||"",preserveWhitespaces:v,styles:r.styles||$n,animations:r.animations,directives:[],changeDetection:r.changeDetection,pipes:new Map,encapsulation:T,interpolation:r.interpolation,viewProviders:r.viewProviders||null});r9++;try{ee.usesInheritance&&Dp(e),i=d.compileComponent(ys,Z,ee)}finally{r9--}if(0===r9&&function(){if(!$f){$f=!0;try{for(var e=p5.length-1;e>=0;e--){var r=p5[e],i=r.moduleType,u=r.ngModule;u.declarations&&u.declarations.every(_p)&&(p5.splice(e,1),Zv(i,u))}}finally{$f=!1}}}(),function(e){return void 0!==e.ngSelectorScope}(e)){var _e=z6(e.ngSelectorScope);Mp(i,_e)}}return i},configurable:!1})},g_=function(e,r){var i=null,u=null;Object.defineProperty(e,Fr,{get:function(){if(null===u){var f=Ap(e,r),g=ra(f.type);u=g.compileFactory(ys,"ng:///".concat(f.name,"/\u0275fac.js"),{name:f.name,type:f.type,typeArgumentCount:0,deps:jl(e),target:g.FactoryTarget.Pipe})}return u},configurable:!1}),Object.defineProperty(e,Yn,{get:function(){if(null===i){var f=Ap(e,r),g=ra(f.type);i=g.compilePipe(ys,"ng:///".concat(f.name,"/\u0275pipe.js"),f)}return i},configurable:!1})},m_=p_,v_=Tp,__=g_,b_=Zl("NgModule",function(r){return r},void 0,void 0,function(r,i){return w_(r,i)}); + */new gr("Application Packages Root URL"),new gr("AnimationModuleType");class wc{log(i){console.log(i)}warn(i){console.warn(i)}}wc.\u0275fac=function(i){return new(i||wc)},wc.\u0275prov=Ge({token:wc,factory:wc.\u0275fac,providedIn:"platform"});const T8=new gr("LocaleId",{providedIn:"root",factory:()=>p3(T8,q.Optional|q.SkipSelf)|| /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var M_=function(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};qv(e,r),Rv(e,r)},w_=M_,U6=new Ar("Application Initializer"),w1=function(){function e(r){var i=this;(0,pe.Z)(this,e),this.appInits=r,this.resolve=S6,this.reject=S6,this.initialized=!1,this.done=!1,this.donePromise=new Promise(function(u,d){i.resolve=u,i.reject=d})}return(0,ce.Z)(e,[{key:"runInitializers",value:function(){var i=this;if(!this.initialized){var u=[],d=function(){i.done=!0,i.resolve()};if(this.appInits)for(var f=function(){var T=i.appInits[g]();if(qd(T))u.push(T);else if(Zd(T)){var Z=new Promise(function(ee,_e){T.subscribe({complete:ee,error:_e})});u.push(Z)}},g=0;g"USD"});new gr("Translations"),new gr("TranslationsFormat");var F7;!function(n){n[n.Error=0]="Error",n[n.Warning=1]="Warning",n[n.Ignore=2]="Ignore"}(F7||(F7={})); /** * @license * Copyright Google LLC All Rights Reserved. @@ -1866,6 +2025,7 @@ var p5=[];function Rv(e,r){p5.push({moduleType:e,ngModule:r})}var $f=!1;function * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +class mh{constructor(i,l){this.ngModuleFactory=i,this.componentFactories=l}}class M5{compileModuleSync(i){return new y4(i)}compileModuleAsync(i){return Promise.resolve(this.compileModuleSync(i))}compileModuleAndAllComponentsSync(i){const l=this.compileModuleSync(i),d=tl(Xi(i).declarations).reduce((g,v)=>{const I=In(v);return I&&g.push(new G2(I)),g},[]);return new mh(l,d)}compileModuleAndAllComponentsAsync(i){return Promise.resolve(this.compileModuleAndAllComponentsSync(i))}clearCache(){}clearCacheFor(i){}getModuleId(i){}}M5.\u0275fac=function(i){return new(i||M5)},M5.\u0275prov=Ge({token:M5,factory:M5.\u0275fac,providedIn:"root"});new gr("compilerOptions"); /** * @license * Copyright Google LLC All Rights Reserved. @@ -1873,13 +2033,14 @@ var p5=[];function Rv(e,r){p5.push({moduleType:e,ngModule:r})}var $f=!1;function * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +const vh=Promise.resolve(0);function N4(n){typeof Zone>"u"?vh.then(()=>{n&&n.apply(null,null)}):Zone.current.scheduleMicroTask("scheduleMicrotask",n)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */w1.\u0275fac=function(r){return new(r||w1)(Ki(U6,8))},w1.\u0275prov=ht({token:w1,factory:w1.\u0275fac}),w1.ctorParameters=function(){return[{type:void 0,decorators:[{type:k1,args:[U6]},{type:ss}]}]}; + */ /** * @license * Copyright Google LLC All Rights Reserved. @@ -1887,22 +2048,21 @@ var p5=[];function Rv(e,r){p5.push({moduleType:e,ngModule:r})}var $f=!1;function * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Rp=new Ar("AppId");var E_={provide:Rp,useFactory:function(){return"".concat(i9()).concat(i9()).concat(i9())},deps:[]};function i9(){return String.fromCharCode(97+Math.floor(25*Math.random()))}var Fp=new Ar("Platform Initializer"),Bp=new Ar("Platform ID"),x_=new Ar("appBootstrapListener"),zc=(new Ar("Application Packages Root URL"),function(){function e(){(0,pe.Z)(this,e)}return(0,ce.Z)(e,[{key:"log",value:function(i){console.log(i)}},{key:"warn",value:function(i){console.warn(i)}}]),e}()); +class A1{constructor({enableLongStackTrace:i=!1,shouldCoalesceEventChangeDetection:l=!1,shouldCoalesceRunChangeDetection:c=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new ql(!1),this.onMicrotaskEmpty=new ql(!1),this.onStable=new ql(!1),this.onError=new ql(!1),typeof Zone>"u")throw new Z(908,!1);Zone.assertZonePatched();const d=this;if(d._nesting=0,d._outer=d._inner=Zone.current,Zone.AsyncStackTaggingZoneSpec){const g=Zone.AsyncStackTaggingZoneSpec;d._inner=d._inner.fork(new g("Angular"))}Zone.TaskTrackingZoneSpec&&(d._inner=d._inner.fork(new Zone.TaskTrackingZoneSpec)),i&&Zone.longStackTraceZoneSpec&&(d._inner=d._inner.fork(Zone.longStackTraceZoneSpec)),d.shouldCoalesceEventChangeDetection=!c&&l,d.shouldCoalesceRunChangeDetection=c,d.lastRequestAnimationFrameId=-1,d.nativeRequestAnimationFrame=function yh(){let n=vn.requestAnimationFrame,i=vn.cancelAnimationFrame;if(typeof Zone<"u"&&n&&i){const l=n[Zone.__symbol__("OriginalDelegate")];l&&(n=l);const c=i[Zone.__symbol__("OriginalDelegate")];c&&(i=c)}return{nativeRequestAnimationFrame:n,nativeCancelAnimationFrame:i}}().nativeRequestAnimationFrame,function wh(n){const i=()=>{!function Mh(n){n.isCheckStableRunning||-1!==n.lastRequestAnimationFrameId||(n.lastRequestAnimationFrameId=n.nativeRequestAnimationFrame.call(vn,()=>{n.fakeTopEventTask||(n.fakeTopEventTask=Zone.root.scheduleEventTask("fakeTopEventTask",()=>{n.lastRequestAnimationFrameId=-1,q4(n),n.isCheckStableRunning=!0,F4(n),n.isCheckStableRunning=!1},void 0,()=>{},()=>{})),n.fakeTopEventTask.invoke()}),q4(n))}(n)};n._inner=n._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:(l,c,d,g,v,I)=>{try{return R7(n),l.invokeTask(d,g,v,I)}finally{(n.shouldCoalesceEventChangeDetection&&"eventTask"===g.type||n.shouldCoalesceRunChangeDetection)&&i(),z7(n)}},onInvoke:(l,c,d,g,v,I,O)=>{try{return R7(n),l.invoke(d,g,v,I,O)}finally{n.shouldCoalesceRunChangeDetection&&i(),z7(n)}},onHasTask:(l,c,d,g)=>{l.hasTask(d,g),c===d&&("microTask"==g.change?(n._hasPendingMicrotasks=g.microTask,q4(n),F4(n)):"macroTask"==g.change&&(n.hasPendingMacrotasks=g.macroTask))},onHandleError:(l,c,d,g)=>(l.handleError(d,g),n.runOutsideAngular(()=>n.onError.emit(g)),!1)})}(d)}static isInAngularZone(){return typeof Zone<"u"&&!0===Zone.current.get("isAngularZone")}static assertInAngularZone(){if(!A1.isInAngularZone())throw new Z(909,!1)}static assertNotInAngularZone(){if(A1.isInAngularZone())throw new Z(909,!1)}run(i,l,c){return this._inner.run(i,l,c)}runTask(i,l,c,d){const g=this._inner,v=g.scheduleEventTask("NgZoneEvent: "+d,i,bh,x8,x8);try{return g.runTask(v,l,c)}finally{g.cancelTask(v)}}runGuarded(i,l,c){return this._inner.runGuarded(i,l,c)}runOutsideAngular(i){return this._outer.run(i)}}const bh={};function F4(n){if(0==n._nesting&&!n.hasPendingMicrotasks&&!n.isStable)try{n._nesting++,n.onMicrotaskEmpty.emit(null)}finally{if(n._nesting--,!n.hasPendingMicrotasks)try{n.runOutsideAngular(()=>n.onStable.emit(null))}finally{n.isStable=!0}}}function q4(n){n._hasPendingMicrotasks||(n.shouldCoalesceEventChangeDetection||n.shouldCoalesceRunChangeDetection)&&-1!==n.lastRequestAnimationFrameId?n.hasPendingMicrotasks=!0:n.hasPendingMicrotasks=!1}function R7(n){n._nesting++,n.isStable&&(n.isStable=!1,n.onUnstable.emit(null))}function z7(n){n._nesting--,F4(n)}class xh{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new ql,this.onMicrotaskEmpty=new ql,this.onStable=new ql,this.onError=new ql}run(i,l,c){return i.apply(l,c)}runGuarded(i,l,c){return i.apply(l,c)}runOutsideAngular(i){return i()}runTask(i,l,c,d){return i.apply(l,c)}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */zc.\u0275fac=function(r){return new(r||zc)},zc.\u0275prov=ht({token:zc,factory:zc.\u0275fac}); + */const j7=new gr(""),U7=new gr("");class xc{constructor(i,l,c){this._ngZone=i,this.registry=l,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,B4||(function Th(n){B4=n}(c),c.addToWindow(l)),this._watchAngularEvents(),i.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:()=>{A1.assertNotInAngularZone(),N4(()=>{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())N4(()=>{for(;0!==this._callbacks.length;){let i=this._callbacks.pop();clearTimeout(i.timeoutId),i.doneCb(this._didWork)}this._didWork=!1});else{let i=this.getPendingTasks();this._callbacks=this._callbacks.filter(l=>!l.updateCb||!l.updateCb(i)||(clearTimeout(l.timeoutId),!1)),this._didWork=!0}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(i=>({source:i.source,creationLocation:i.creationLocation,data:i.data})):[]}addCallback(i,l,c){let d=-1;l&&l>0&&(d=setTimeout(()=>{this._callbacks=this._callbacks.filter(g=>g.timeoutId!==d),i(this._didWork,this.getPendingTasks())},l)),this._callbacks.push({doneCb:i,timeoutId:d,updateCb:c})}whenStable(i,l,c){if(c&&!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(i,l,c),this._runCallbacksIfReady()}getPendingRequestCount(){return this._pendingCount}registerApplication(i){this.registry.registerApplication(i,this)}unregisterApplication(i){this.registry.unregisterApplication(i)}findProviders(i,l,c){return[]}}xc.\u0275fac=function(i){return new(i||xc)(Hr(A1),Hr(r3),Hr(U7))},xc.\u0275prov=Ge({token:xc,factory:xc.\u0275fac});class r3{constructor(){this._applications=new Map}registerApplication(i,l){this._applications.set(i,l)}unregisterApplication(i){this._applications.delete(i)}unregisterAllApplications(){this._applications.clear()}getTestability(i){return this._applications.get(i)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(i,l=!0){return B4?.findTestabilityInTree(this,i,l)??null}}let B4; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var Zp,j6=new Ar("LocaleId"),qp=new Ar("DefaultCurrencyCode");new Ar("Translations"),new Ar("TranslationsFormat");!function(e){e[e.Error=0]="Error",e[e.Warning=1]="Warning",e[e.Ignore=2]="Ignore"}(Zp||(Zp={})); + */r3.\u0275fac=function(i){return new(i||r3)},r3.\u0275prov=Ge({token:r3,factory:r3.\u0275fac,providedIn:"platform"});let su=null;const Z7=new gr("AllowMultipleToken"),R4=new gr("PlatformDestroyListeners"),p2=!1;function H7(n){const i=n.get(N7,null);i&&i.forEach(l=>l())}function G7(n,i,l=[]){const c=`Platform: ${i}`,d=new gr(c);return(g=[])=>{let v=z4();if(!v||v.injector.get(Z7,!1)){const I=[...l,...g,{provide:d,useValue:!0}];n?n(I):function Lh(n){if(su&&!su.get(Z7,!1))throw new Z(400,!1);su=n;const i=n.get(o3);return H7(n),i}(V7(I,c))}return function Sh(n){const i=z4();if(!i)throw new Z(401,!1);return i}()}}function V7(n=[],i){return ya.create({name:i,providers:[{provide:F3,useValue:"platform"},{provide:R4,useValue:new Set([()=>su=null])},...n]})}function z4(){return su?.get(o3)??null}class o3{constructor(i){this._injector=i,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(i,l){const c=Q7(l?.ngZone,W7(l)),d=[{provide:A1,useValue:c}];return c.run(()=>{const g=ya.create({providers:d,parent:this.injector,name:i.moduleType.name}),v=i.create(g),I=v.injector.get(Fu,null);if(!I)throw new Z(402,!1);return c.runOutsideAngular(()=>{const O=c.onError.subscribe({next:Y=>{I.handleError(Y)}});v.onDestroy(()=>{E8(this._modules,v),O.unsubscribe()})}),K7(I,c,()=>{const O=v.injector.get(f2);return O.runInitializers(),O.donePromise.then(()=>(bn(v.injector.get(T8,J)||J),this._moduleDoBootstrap(v),v))})})}bootstrapModule(i,l=[]){const c=Y7({},l);return function Eh(n,i,l){const c=new y4(l);return Promise.resolve(c)}(this.injector,0,i).then(d=>this.bootstrapModuleFactory(d,c))}_moduleDoBootstrap(i){const l=i.injector.get(h2);if(i._bootstrapComponents.length>0)i._bootstrapComponents.forEach(c=>l.bootstrap(c));else{if(!i.instance.ngDoBootstrap)throw new Z(403,!1);i.instance.ngDoBootstrap(l)}this._modules.push(i)}onDestroy(i){this._destroyListeners.push(i)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new Z(404,!1);this._modules.slice().forEach(l=>l.destroy()),this._destroyListeners.forEach(l=>l());const i=this._injector.get(R4,null);i&&(i.forEach(l=>l()),i.clear()),this._destroyed=!0}get destroyed(){return this._destroyed}}function W7(n){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:!(!n||!n.ngZoneEventCoalescing)||!1,shouldCoalesceRunChangeDetection:!(!n||!n.ngZoneRunCoalescing)||!1}}function Q7(n,i){let l;return l="noop"===n?new xh:("zone.js"===n?void 0:n)||new A1(i),l}function K7(n,i,l){try{const c=l();return G0(c)?c.catch(d=>{throw i.runOutsideAngular(()=>n.handleError(d)),d}):c}catch(c){throw i.runOutsideAngular(()=>n.handleError(c)),c}}function Y7(n,i){return n=Array.isArray(i)?i.reduce(Y7,n):{...n,...i}}o3.\u0275fac=function(i){return new(i||o3)(Hr(ya))},o3.\u0275prov=Ge({token:o3,factory:o3.\u0275fac,providedIn:"platform"});class h2{constructor(i,l,c){this._zone=i,this._injector=l,this._exceptionHandler=c,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._stable=!0,this._destroyed=!1,this._destroyListeners=[],this.componentTypes=[],this.components=[],this._onMicrotaskEmptySubscription=this._zone.onMicrotaskEmpty.subscribe({next:()=>{this._zone.run(()=>{this.tick()})}});const d=new F.y(v=>{this._stable=this._zone.isStable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks,this._zone.runOutsideAngular(()=>{v.next(this._stable),v.complete()})}),g=new F.y(v=>{let I;this._zone.runOutsideAngular(()=>{I=this._zone.onStable.subscribe(()=>{A1.assertNotInAngularZone(),N4(()=>{!this._stable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks&&(this._stable=!0,v.next(!0))})})});const O=this._zone.onUnstable.subscribe(()=>{A1.assertInAngularZone(),this._stable&&(this._stable=!1,this._zone.runOutsideAngular(()=>{v.next(!1)}))});return()=>{I.unsubscribe(),O.unsubscribe()}});this.isStable=(0,U.T)(d,g.pipe(fe()))}get destroyed(){return this._destroyed}get injector(){return this._injector}bootstrap(i,l){const c=i instanceof ed;if(!this._injector.get(f2).done){!c&&ai(i);throw new Z(405,p2)}let g;g=c?i:this._injector.get(A2).resolveComponentFactory(i),this.componentTypes.push(g.componentType);const v=function Ih(n){return n.isBoundToModule}(g)?void 0:this._injector.get(vc),I=l||g.selector,O=g.create(ya.NULL,[],I,v),Y=O.location.nativeElement,ge=O.injector.get(j7,null);return ge?.registerApplication(Y),O.onDestroy(()=>{this.detachView(O.hostView),E8(this.components,O),ge?.unregisterApplication(Y)}),this._loadComponent(O),O}tick(){if(this._runningTick)throw new Z(101,!1);try{this._runningTick=!0;for(let i of this._views)i.detectChanges()}catch(i){this._zone.runOutsideAngular(()=>this._exceptionHandler.handleError(i))}finally{this._runningTick=!1}}attachView(i){const l=i;this._views.push(l),l.attachToAppRef(this)}detachView(i){const l=i;E8(this._views,l),l.detachFromAppRef()}_loadComponent(i){this.attachView(i.hostView),this.tick(),this.components.push(i),this._injector.get(ph,[]).concat(this._bootstrapListeners).forEach(c=>c(i))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(i=>i()),this._views.slice().forEach(i=>i.destroy()),this._onMicrotaskEmptySubscription.unsubscribe()}finally{this._destroyed=!0,this._views=[],this._bootstrapListeners=[],this._destroyListeners=[]}}onDestroy(i){return this._destroyListeners.push(i),()=>E8(this._destroyListeners,i)}destroy(){if(this._destroyed)throw new Z(406,!1);const i=this._injector;i.destroy&&!i.destroyed&&i.destroy()}get viewCount(){return this._views.length}warnIfDestroyed(){}}function E8(n,i){const l=n.indexOf(i);l>-1&&n.splice(l,1)}h2.\u0275fac=function(i){return new(i||h2)(Hr(A1),Hr(P2),Hr(Fu))},h2.\u0275prov=Ge({token:h2,factory:h2.\u0275fac,providedIn:"root"}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -1910,21 +2070,21 @@ var Zp,j6=new Ar("LocaleId"),qp=new Ar("DefaultCurrencyCode");new Ar("Translatio * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var D_=(0,ce.Z)(function e(r,i){(0,pe.Z)(this,e),this.ngModuleFactory=r,this.componentFactories=i}); +let $7=!0,X7=!1;function Oh(){if(X7)throw new Error("Cannot enable prod mode after platform setup.");$7=!1} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var a9=function(r){return new Kf(r)},L_=a9,P_=function(r){return Promise.resolve(a9(r))},zp=function(r){var i=a9(r),d=z1(zr(r).declarations).reduce(function(f,g){var v=kn(g);return v&&f.push(new K7(v)),f},[]);return new D_(i,d)},k_=zp,A_=function(r){return Promise.resolve(zp(r))},bu=function(){function e(){(0,pe.Z)(this,e),this.compileModuleSync=L_,this.compileModuleAsync=P_,this.compileModuleAndAllComponentsSync=k_,this.compileModuleAndAllComponentsAsync=A_}return(0,ce.Z)(e,[{key:"clearCache",value:function(){}},{key:"clearCacheFor",value:function(i){}},{key:"getModuleId",value:function(i){}}]),e}();bu.\u0275fac=function(r){return new(r||bu)},bu.\u0275prov=ht({token:bu,factory:bu.\u0275fac});new Ar("compilerOptions"); + */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var F_=Promise.resolve(0);function o9(e){"undefined"==typeof Zone?F_.then(function(){e&&e.apply(null,null)}):Zone.current.scheduleMicroTask("scheduleMicrotask",e)} + */ /** * @license * Copyright Google LLC All Rights Reserved. @@ -1939,43 +2099,44 @@ var D_=(0,ce.Z)(function e(r,i){(0,pe.Z)(this,e),this.ngModuleFactory=r,this.com * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var X1=function(){function e(r){var i=r.enableLongStackTrace,u=void 0!==i&&i,d=r.shouldCoalesceEventChangeDetection,f=void 0!==d&&d,g=r.shouldCoalesceRunChangeDetection,v=void 0!==g&&g;if((0,pe.Z)(this,e),this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new Cu(!1),this.onMicrotaskEmpty=new Cu(!1),this.onStable=new Cu(!1),this.onError=new Cu(!1),"undefined"==typeof Zone)throw new Error("In this configuration Angular requires Zone.js");Zone.assertZonePatched();var T=this;T._nesting=0,T._outer=T._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(T._inner=T._inner.fork(new Zone.TaskTrackingZoneSpec)),u&&Zone.longStackTraceZoneSpec&&(T._inner=T._inner.fork(Zone.longStackTraceZoneSpec)),T.shouldCoalesceEventChangeDetection=!v&&f,T.shouldCoalesceRunChangeDetection=v,T.lastRequestAnimationFrameId=-1,T.nativeRequestAnimationFrame=function(){var e=nr.requestAnimationFrame,r=nr.cancelAnimationFrame;if("undefined"!=typeof Zone&&e&&r){var i=e[Zone.__symbol__("OriginalDelegate")];i&&(e=i);var u=r[Zone.__symbol__("OriginalDelegate")];u&&(r=u)}return{nativeRequestAnimationFrame:e,nativeCancelAnimationFrame:r}}().nativeRequestAnimationFrame,function(e){var r=function(){!function(e){e.isCheckStableRunning||-1!==e.lastRequestAnimationFrameId||(e.lastRequestAnimationFrameId=e.nativeRequestAnimationFrame.call(nr,function(){e.fakeTopEventTask||(e.fakeTopEventTask=Zone.root.scheduleEventTask("fakeTopEventTask",function(){e.lastRequestAnimationFrameId=-1,l9(e),e.isCheckStableRunning=!0,s9(e),e.isCheckStableRunning=!1},void 0,function(){},function(){})),e.fakeTopEventTask.invoke()}),l9(e))}(e)};e._inner=e._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:function(u,d,f,g,v,T){try{return Up(e),u.invokeTask(f,g,v,T)}finally{(e.shouldCoalesceEventChangeDetection&&"eventTask"===g.type||e.shouldCoalesceRunChangeDetection)&&r(),jp(e)}},onInvoke:function(u,d,f,g,v,T,Z){try{return Up(e),u.invoke(f,g,v,T,Z)}finally{e.shouldCoalesceRunChangeDetection&&r(),jp(e)}},onHasTask:function(u,d,f,g){u.hasTask(f,g),d===f&&("microTask"==g.change?(e._hasPendingMicrotasks=g.microTask,l9(e),s9(e)):"macroTask"==g.change&&(e.hasPendingMacrotasks=g.macroTask))},onHandleError:function(u,d,f,g){return u.handleError(f,g),e.runOutsideAngular(function(){return e.onError.emit(g)}),!1}})}(T)}return(0,ce.Z)(e,[{key:"run",value:function(i,u,d){return this._inner.run(i,u,d)}},{key:"runTask",value:function(i,u,d,f){var g=this._inner,v=g.scheduleEventTask("NgZoneEvent: "+f,i,q_,S6,S6);try{return g.runTask(v,u,d)}finally{g.cancelTask(v)}}},{key:"runGuarded",value:function(i,u,d){return this._inner.runGuarded(i,u,d)}},{key:"runOutsideAngular",value:function(i){return this._outer.run(i)}}],[{key:"isInAngularZone",value:function(){return!0===Zone.current.get("isAngularZone")}},{key:"assertInAngularZone",value:function(){if(!e.isInAngularZone())throw new Error("Expected to be in Angular Zone, but it is not!")}},{key:"assertNotInAngularZone",value:function(){if(e.isInAngularZone())throw new Error("Expected to not be in Angular Zone, but it is!")}}]),e}(),q_={};function s9(e){if(0==e._nesting&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null)}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular(function(){return e.onStable.emit(null)})}finally{e.isStable=!0}}}function l9(e){e._hasPendingMicrotasks||(e.shouldCoalesceEventChangeDetection||e.shouldCoalesceRunChangeDetection)&&-1!==e.lastRequestAnimationFrameId?e.hasPendingMicrotasks=!0:e.hasPendingMicrotasks=!1}function Up(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function jp(e){e._nesting--,s9(e)}var U_=function(){function e(){(0,pe.Z)(this,e),this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new Cu,this.onMicrotaskEmpty=new Cu,this.onStable=new Cu,this.onError=new Cu}return(0,ce.Z)(e,[{key:"run",value:function(i,u,d){return i.apply(u,d)}},{key:"runGuarded",value:function(i,u,d){return i.apply(u,d)}},{key:"runOutsideAngular",value:function(i){return i()}},{key:"runTask",value:function(i,u,d,f){return i.apply(u,d)}}]),e}(),R2=function(){function e(r){var i=this;(0,pe.Z)(this,e),this._ngZone=r,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,this._watchAngularEvents(),r.run(function(){i.taskTrackingZone="undefined"==typeof Zone?null:Zone.current.get("TaskTrackingZone")})}return(0,ce.Z)(e,[{key:"_watchAngularEvents",value:function(){var i=this;this._ngZone.onUnstable.subscribe({next:function(){i._didWork=!0,i._isZoneStable=!1}}),this._ngZone.runOutsideAngular(function(){i._ngZone.onStable.subscribe({next:function(){X1.assertNotInAngularZone(),o9(function(){i._isZoneStable=!0,i._runCallbacksIfReady()})}})})}},{key:"increasePendingRequestCount",value:function(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount}},{key:"decreasePendingRequestCount",value:function(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error("pending async requests below zero");return this._runCallbacksIfReady(),this._pendingCount}},{key:"isStable",value:function(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks}},{key:"_runCallbacksIfReady",value:function(){var i=this;if(this.isStable())o9(function(){for(;0!==i._callbacks.length;){var d=i._callbacks.pop();clearTimeout(d.timeoutId),d.doneCb(i._didWork)}i._didWork=!1});else{var u=this.getPendingTasks();this._callbacks=this._callbacks.filter(function(d){return!d.updateCb||!d.updateCb(u)||(clearTimeout(d.timeoutId),!1)}),this._didWork=!0}}},{key:"getPendingTasks",value:function(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(function(i){return{source:i.source,creationLocation:i.creationLocation,data:i.data}}):[]}},{key:"addCallback",value:function(i,u,d){var f=this,g=-1;u&&u>0&&(g=setTimeout(function(){f._callbacks=f._callbacks.filter(function(v){return v.timeoutId!==g}),i(f._didWork,f.getPendingTasks())},u)),this._callbacks.push({doneCb:i,timeoutId:g,updateCb:d})}},{key:"whenStable",value:function(i,u,d){if(d&&!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(i,u,d),this._runCallbacksIfReady()}},{key:"getPendingRequestCount",value:function(){return this._pendingCount}},{key:"findProviders",value:function(i,u,d){return[]}}]),e}(); +class tf{}tf.__NG_ELEMENT_ID__=function Ah(n){return function kh(n,i,l){if(wo(n)&&!l){const c=zi(n.index,i);return new H2(c,c)}if(47&n.type){const c=i[16];return new H2(c,i)}return null} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */R2.\u0275fac=function(r){return new(r||R2)(Ki(X1))},R2.\u0275prov=ht({token:R2,factory:R2.\u0275fac}),R2.ctorParameters=function(){return[{type:X1}]};var F2=function(){function e(){(0,pe.Z)(this,e),this._applications=new Map,u9.addToWindow(this)}return(0,ce.Z)(e,[{key:"registerApplication",value:function(i,u){this._applications.set(i,u)}},{key:"unregisterApplication",value:function(i){this._applications.delete(i)}},{key:"unregisterAllApplications",value:function(){this._applications.clear()}},{key:"getTestability",value:function(i){return this._applications.get(i)||null}},{key:"getAllTestabilities",value:function(){return Array.from(this._applications.values())}},{key:"getAllRootElements",value:function(){return Array.from(this._applications.keys())}},{key:"findTestabilityInTree",value:function(i){var u=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return u9.findTestabilityInTree(this,i,u)}}]),e}();F2.\u0275fac=function(r){return new(r||F2)},F2.\u0275prov=ht({token:F2,factory:F2.\u0275fac}),F2.ctorParameters=function(){return[]};var j_=function(){function e(){(0,pe.Z)(this,e)}return(0,ce.Z)(e,[{key:"addToWindow",value:function(i){}},{key:"findTestabilityInTree",value:function(i,u,d){return null}}]),e}();function V_(e){u9=e}var u9=new j_,Vp=!0,Hp=!1; + */(Qi(),Vt(),16==(16&n))}; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Gp(){return Hp=!0,Vp}function H_(){if(Hp)throw new Error("Cannot enable prod mode after platform setup.");Vp=!1} + */ +class of{constructor(){}supports(i){return Uu(i)}create(i){return new zh(i)}}const Rh=(n,i)=>i;class zh{constructor(i){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=i||Rh}forEachItem(i){let l;for(l=this._itHead;null!==l;l=l._next)i(l)}forEachOperation(i){let l=this._itHead,c=this._removalsHead,d=0,g=null;for(;l||c;){const v=!c||l&&l.currentIndex{v=this._trackByFn(d,I),null!==l&&Object.is(l.trackById,v)?(c&&(l=this._verifyReinsertion(l,I,v,d)),Object.is(l.item,I)||this._addIdentityChange(l,I)):(l=this._mismatch(l,I,v,d),c=!0),l=l._next,d++}),this.length=d;return this._truncate(l),this.collection=i,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let i;for(i=this._previousItHead=this._itHead;null!==i;i=i._next)i._nextPrevious=i._next;for(i=this._additionsHead;null!==i;i=i._nextAdded)i.previousIndex=i.currentIndex;for(this._additionsHead=this._additionsTail=null,i=this._movesHead;null!==i;i=i._nextMoved)i.previousIndex=i.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(i,l,c,d){let g;return null===i?g=this._itTail:(g=i._prev,this._remove(i)),null!==(i=null===this._unlinkedRecords?null:this._unlinkedRecords.get(c,null))?(Object.is(i.item,l)||this._addIdentityChange(i,l),this._reinsertAfter(i,g,d)):null!==(i=null===this._linkedRecords?null:this._linkedRecords.get(c,d))?(Object.is(i.item,l)||this._addIdentityChange(i,l),this._moveAfter(i,g,d)):i=this._addAfter(new jh(l,c),g,d),i}_verifyReinsertion(i,l,c,d){let g=null===this._unlinkedRecords?null:this._unlinkedRecords.get(c,null);return null!==g?i=this._reinsertAfter(g,i._prev,d):i.currentIndex!=d&&(i.currentIndex=d,this._addToMoves(i,d)),i}_truncate(i){for(;null!==i;){const l=i._next;this._addToRemovals(this._unlink(i)),i=l}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(i,l,c){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(i);const d=i._prevRemoved,g=i._nextRemoved;return null===d?this._removalsHead=g:d._nextRemoved=g,null===g?this._removalsTail=d:g._prevRemoved=d,this._insertAfter(i,l,c),this._addToMoves(i,c),i}_moveAfter(i,l,c){return this._unlink(i),this._insertAfter(i,l,c),this._addToMoves(i,c),i}_addAfter(i,l,c){return this._insertAfter(i,l,c),null===this._additionsTail?this._additionsTail=this._additionsHead=i:this._additionsTail=this._additionsTail._nextAdded=i,i}_insertAfter(i,l,c){const d=null===l?this._itHead:l._next;return i._next=d,i._prev=l,null===d?this._itTail=i:d._prev=i,null===l?this._itHead=i:l._next=i,null===this._linkedRecords&&(this._linkedRecords=new af),this._linkedRecords.put(i),i.currentIndex=c,i}_remove(i){return this._addToRemovals(this._unlink(i))}_unlink(i){null!==this._linkedRecords&&this._linkedRecords.remove(i);const l=i._prev,c=i._next;return null===l?this._itHead=c:l._next=c,null===c?this._itTail=l:c._prev=l,i}_addToMoves(i,l){return i.previousIndex===l||(null===this._movesTail?this._movesTail=this._movesHead=i:this._movesTail=this._movesTail._nextMoved=i),i}_addToRemovals(i){return null===this._unlinkedRecords&&(this._unlinkedRecords=new af),this._unlinkedRecords.put(i),i.currentIndex=null,i._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=i,i._prevRemoved=null):(i._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=i),i}_addIdentityChange(i,l){return i.item=l,null===this._identityChangesTail?this._identityChangesTail=this._identityChangesHead=i:this._identityChangesTail=this._identityChangesTail._nextIdentityChange=i,i}}class jh{constructor(i,l){this.item=i,this.trackById=l,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 Uh{constructor(){this._head=null,this._tail=null}add(i){null===this._head?(this._head=this._tail=i,i._nextDup=null,i._prevDup=null):(this._tail._nextDup=i,i._prevDup=this._tail,i._nextDup=null,this._tail=i)}get(i,l){let c;for(c=this._head;null!==c;c=c._nextDup)if((null===l||l<=c.currentIndex)&&Object.is(c.trackById,i))return c;return null}remove(i){const l=i._prevDup,c=i._nextDup;return null===l?this._head=c:l._nextDup=c,null===c?this._tail=l:c._prevDup=l,null===this._head}}class af{constructor(){this.map=new Map}put(i){const l=i.trackById;let c=this.map.get(l);c||(c=new Uh,this.map.set(l,c)),c.add(i)}get(i,l){const c=i,d=this.map.get(c);return d?d.get(i,l):null}remove(i){const l=i.trackById;return this.map.get(l).remove(i)&&this.map.delete(l),i}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function sf(n,i,l){const c=n.previousIndex;if(null===c)return c;let d=0;return l&&c2&&void 0!==arguments[2]?arguments[2]:[],u="Platform: ".concat(r),d=new Ar(u);return function(){var f=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],g=Yp();if(!g||g.injector.get(Wp,!1))if(e)e(i.concat(f).concat({provide:d,useValue:!0}));else{var v=i.concat(f).concat({provide:d,useValue:!0},{provide:gs,useValue:"platform"});$_(Li.create({providers:v,name:u}))}return ey(d)}}function ey(e){var r=Yp();if(!r)throw new Error("No platform exists!");if(!r.injector.get(e,null))throw new Error("A platform with a different configuration has been created. Please destroy it first.");return r}function Yp(){return Dl&&!Dl.destroyed?Dl:null}var B2=function(){function e(r){(0,pe.Z)(this,e),this._injector=r,this._modules=[],this._destroyListeners=[],this._destroyed=!1}return(0,ce.Z)(e,[{key:"bootstrapModuleFactory",value:function(i,u){var d=this,T=function(e,r){var i;return i="noop"===e?new U_:("zone.js"===e?void 0:e)||new X1({enableLongStackTrace:Gp(),shouldCoalesceEventChangeDetection:!!(null==r?void 0:r.ngZoneEventCoalescing),shouldCoalesceRunChangeDetection:!!(null==r?void 0:r.ngZoneRunCoalescing)}),i}(u?u.ngZone:void 0,{ngZoneEventCoalescing:u&&u.ngZoneEventCoalescing||!1,ngZoneRunCoalescing:u&&u.ngZoneRunCoalescing||!1}),Z=[{provide:X1,useValue:T}];return T.run(function(){var ee=Li.create({providers:Z,parent:d.injector,name:i.moduleType.name}),_e=i.create(ee),Ee=_e.injector.get(da,null);if(!Ee)throw new Error("No ErrorHandler. Is platform module (BrowserModule) included?");return T.runOutsideAngular(function(){var Ge=T.onError.subscribe({next:function(Et){Ee.handleError(Et)}});_e.onDestroy(function(){c9(d._modules,_e),Ge.unsubscribe()})}),function(e,r,i){try{var u=i();return qd(u)?u.catch(function(d){throw r.runOutsideAngular(function(){return e.handleError(d)}),d}):u}catch(d){throw r.runOutsideAngular(function(){return e.handleError(d)}),d}}(Ee,T,function(){var Ge=_e.injector.get(w1);return Ge.runInitializers(),Ge.donePromise.then(function(){return Lf(_e.injector.get(j6,E6)||E6),d._moduleDoBootstrap(_e),_e})})})}},{key:"bootstrapModule",value:function(i){var u=this,d=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],f=Kp({},d);return G_(this.injector,f,i).then(function(g){return u.bootstrapModuleFactory(g,f)})}},{key:"_moduleDoBootstrap",value:function(i){var u=i.injector.get($1);if(i._bootstrapComponents.length>0)i._bootstrapComponents.forEach(function(d){return u.bootstrap(d)});else{if(!i.instance.ngDoBootstrap)throw new Error("The module ".concat(_t(i.instance.constructor),' was bootstrapped, but it does not declare "@NgModule.bootstrap" components nor a "ngDoBootstrap" method. ')+"Please define one of these.");i.instance.ngDoBootstrap(u)}this._modules.push(i)}},{key:"onDestroy",value:function(i){this._destroyListeners.push(i)}},{key:"injector",get:function(){return this._injector}},{key:"destroy",value:function(){if(this._destroyed)throw new Error("The platform has already been destroyed!");this._modules.slice().forEach(function(i){return i.destroy()}),this._destroyListeners.forEach(function(i){return i()}),this._destroyed=!0}},{key:"destroyed",get:function(){return this._destroyed}}]),e}();function Kp(e,r){return e=Array.isArray(r)?r.reduce(Kp,e):Object.assign(Object.assign({},e),r)}B2.\u0275fac=function(r){return new(r||B2)(Ki(Li))},B2.\u0275prov=ht({token:B2,factory:B2.\u0275fac}),B2.ctorParameters=function(){return[{type:Li}]};var $1=function(){function e(r,i,u,d,f){var g=this;(0,pe.Z)(this,e),this._zone=r,this._injector=i,this._exceptionHandler=u,this._componentFactoryResolver=d,this._initStatus=f,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._onMicrotaskEmptySubscription=this._zone.onMicrotaskEmpty.subscribe({next:function(){g._zone.run(function(){g.tick()})}});var v=new Ue.y(function(Z){g._stable=g._zone.isStable&&!g._zone.hasPendingMacrotasks&&!g._zone.hasPendingMicrotasks,g._zone.runOutsideAngular(function(){Z.next(g._stable),Z.complete()})}),T=new Ue.y(function(Z){var ee;g._zone.runOutsideAngular(function(){ee=g._zone.onStable.subscribe(function(){X1.assertNotInAngularZone(),o9(function(){!g._stable&&!g._zone.hasPendingMacrotasks&&!g._zone.hasPendingMicrotasks&&(g._stable=!0,Z.next(!0))})})});var _e=g._zone.onUnstable.subscribe(function(){X1.assertInAngularZone(),g._stable&&(g._stable=!1,g._zone.runOutsideAngular(function(){Z.next(!1)}))});return function(){ee.unsubscribe(),_e.unsubscribe()}});this.isStable=(0,Ke.T)(v,T.pipe(ft()))}return(0,ce.Z)(e,[{key:"bootstrap",value:function(i,u){var f,d=this;if(!this._initStatus.done)throw new Error("Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.");f=i instanceof v7?i:this._componentFactoryResolver.resolveComponentFactory(i),this.componentTypes.push(f.componentType);var g=K_(f)?void 0:this._injector.get(Bc),v=u||f.selector,T=f.create(Li.NULL,[],v,g),Z=T.location.nativeElement,ee=T.injector.get(R2,null),_e=ee&&T.injector.get(F2);return ee&&_e&&_e.registerApplication(Z,ee),T.onDestroy(function(){d.detachView(T.hostView),c9(d.components,T),_e&&_e.unregisterApplication(Z)}),this._loadComponent(T),T}},{key:"tick",value:function(){var i=this;if(this._runningTick)throw new Error("ApplicationRef.tick is called recursively");try{this._runningTick=!0;var d,u=(0,De.Z)(this._views);try{for(u.s();!(d=u.n()).done;){d.value.detectChanges()}}catch(Z){u.e(Z)}finally{u.f()}}catch(Z){this._zone.runOutsideAngular(function(){return i._exceptionHandler.handleError(Z)})}finally{this._runningTick=!1}}},{key:"attachView",value:function(i){var u=i;this._views.push(u),u.attachToAppRef(this)}},{key:"detachView",value:function(i){var u=i;c9(this._views,u),u.detachFromAppRef()}},{key:"_loadComponent",value:function(i){this.attachView(i.hostView),this.tick(),this.components.push(i),this._injector.get(x_,[]).concat(this._bootstrapListeners).forEach(function(d){return d(i)})}},{key:"ngOnDestroy",value:function(){this._views.slice().forEach(function(i){return i.destroy()}),this._onMicrotaskEmptySubscription.unsubscribe()}},{key:"viewCount",get:function(){return this._views.length}}]),e}();function c9(e,r){var i=e.indexOf(r);i>-1&&e.splice(i,1)}$1.\u0275fac=function(r){return new(r||$1)(Ki(X1),Ki(Li),Ki(da),Ki(Rc),Ki(w1))},$1.\u0275prov=ht({token:$1,factory:$1.\u0275fac}),$1.ctorParameters=function(){return[{type:X1},{type:Li},{type:da},{type:Rc},{type:w1}]}; + */}class lf{constructor(){}supports(i){return i instanceof Map||H0(i)}create(){return new Zh}}class Zh{constructor(){this._records=new Map,this._mapHead=null,this._appendAfter=null,this._previousMapHead=null,this._changesHead=null,this._changesTail=null,this._additionsHead=null,this._additionsTail=null,this._removalsHead=null,this._removalsTail=null}get isDirty(){return null!==this._additionsHead||null!==this._changesHead||null!==this._removalsHead}forEachItem(i){let l;for(l=this._mapHead;null!==l;l=l._next)i(l)}forEachPreviousItem(i){let l;for(l=this._previousMapHead;null!==l;l=l._nextPrevious)i(l)}forEachChangedItem(i){let l;for(l=this._changesHead;null!==l;l=l._nextChanged)i(l)}forEachAddedItem(i){let l;for(l=this._additionsHead;null!==l;l=l._nextAdded)i(l)}forEachRemovedItem(i){let l;for(l=this._removalsHead;null!==l;l=l._nextRemoved)i(l)}diff(i){if(i){if(!(i instanceof Map||H0(i)))throw new Z(900,!1)}else i=new Map;return this.check(i)?this:null}onDestroy(){}check(i){this._reset();let l=this._mapHead;if(this._appendAfter=null,this._forEach(i,(c,d)=>{if(l&&l.key===d)this._maybeAddToChanges(l,c),this._appendAfter=l,l=l._next;else{const g=this._getOrCreateRecordForKey(d,c);l=this._insertBeforeOrAppend(l,g)}}),l){l._prev&&(l._prev._next=null),this._removalsHead=l;for(let c=l;null!==c;c=c._nextRemoved)c===this._mapHead&&(this._mapHead=null),this._records.delete(c.key),c._nextRemoved=c._next,c.previousValue=c.currentValue,c.currentValue=null,c._prev=null,c._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(i,l){if(i){const c=i._prev;return l._next=i,l._prev=c,i._prev=l,c&&(c._next=l),i===this._mapHead&&(this._mapHead=l),this._appendAfter=i,i}return this._appendAfter?(this._appendAfter._next=l,l._prev=this._appendAfter):this._mapHead=l,this._appendAfter=l,null}_getOrCreateRecordForKey(i,l){if(this._records.has(i)){const d=this._records.get(i);this._maybeAddToChanges(d,l);const g=d._prev,v=d._next;return g&&(g._next=v),v&&(v._prev=g),d._next=null,d._prev=null,d}const c=new Hh(i);return this._records.set(i,c),c.currentValue=l,this._addToAdditions(c),c}_reset(){if(this.isDirty){let i;for(this._previousMapHead=this._mapHead,i=this._previousMapHead;null!==i;i=i._next)i._nextPrevious=i._next;for(i=this._changesHead;null!==i;i=i._nextChanged)i.previousValue=i.currentValue;for(i=this._additionsHead;null!=i;i=i._nextAdded)i.previousValue=i.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(i,l){Object.is(l,i.currentValue)||(i.previousValue=i.currentValue,i.currentValue=l,this._addToChanges(i))}_addToAdditions(i){null===this._additionsHead?this._additionsHead=this._additionsTail=i:(this._additionsTail._nextAdded=i,this._additionsTail=i)}_addToChanges(i){null===this._changesHead?this._changesHead=this._changesTail=i:(this._changesTail._nextChanged=i,this._changesTail=i)}_forEach(i,l){i instanceof Map?i.forEach(l):Object.keys(i).forEach(c=>l(i[c],c))}}class Hh{constructor(i){this.key=i,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var eh=(0,ce.Z)(function e(){(0,pe.Z)(this,e)}),ay={factoryPathPrefix:"",factoryPathSuffix:".ngfactory"},s0=function(){function e(r,i){(0,pe.Z)(this,e),this._compiler=r,this._config=i||ay}return(0,ce.Z)(e,[{key:"load",value:function(i){return this.loadAndCompile(i)}},{key:"loadAndCompile",value:function(i){var u=this,d=i.split("#"),f=(0,R.Z)(d,2),g=f[0],v=f[1];return void 0===v&&(v="default"),D(1893)(g).then(function(T){return T[v]}).then(function(T){return th(T,g,v)}).then(function(T){return u._compiler.compileModuleAsync(T)})}},{key:"loadFactory",value:function(i){var u=i.split("#"),d=(0,R.Z)(u,2),f=d[0],g=d[1],v="NgFactory";return void 0===g&&(g="default",v=""),D(1893)(this._config.factoryPathPrefix+f+this._config.factoryPathSuffix).then(function(T){return T[g+v]}).then(function(T){return th(T,f,g)})}}]),e}();function th(e,r,i){if(!e)throw new Error("Cannot find '".concat(i,"' in '").concat(r,"'"));return e} + */function uf(){return new Bl([new of])}class Bl{constructor(i){this.factories=i}static create(i,l){if(null!=l){const c=l.factories.slice();i=i.concat(c)}return new Bl(i)}static extend(i){return{provide:Bl,useFactory:l=>Bl.create(i,l||uf()),deps:[[Bl,new pl,new Vl]]}}find(i){const l=this.factories.find(c=>c.supports(i));if(null!=l)return l;throw new Z(901,!1)}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */s0.\u0275fac=function(r){return new(r||s0)(Ki(bu),Ki(eh,8))},s0.\u0275prov=ht({token:s0,factory:s0.\u0275fac}),s0.ctorParameters=function(){return[{type:bu},{type:eh,decorators:[{type:ss}]}]};new Map;var fy=function(e){return null};var hy=Qp(null,"core",[{provide:Bp,useValue:"unknown"},{provide:B2,deps:[Li]},{provide:F2,deps:[]},{provide:zc,deps:[]}]); + */ +function cf(){return new Rl([new lf])}Bl.\u0275prov=Ge({token:Bl,providedIn:"root",factory:uf});class Rl{constructor(i){this.factories=i}static create(i,l){if(l){const c=l.factories.slice();i=i.concat(c)}return new Rl(i)}static extend(i){return{provide:Rl,useFactory:l=>Rl.create(i,l||cf()),deps:[[Rl,new pl,new Vl]]}}find(i){const l=this.factories.find(c=>c.supports(i));if(l)return l;throw new Z(901,!1)}}Rl.\u0275prov=Ge({token:Rl,providedIn:"root",factory:cf}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -1983,13 +2144,14 @@ var eh=(0,ce.Z)(function e(){(0,pe.Z)(this,e)}),ay={factoryPathPrefix:"",factory * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +const Gh=[new lf],Vh=[new of],Wh=(new Bl(Vh),new Rl(Gh),G7(null,"core",[])); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var Cy=[{provide:$1,useClass:$1,deps:[X1,Li,da,Rc,w1]},{provide:Xm,deps:[X1],useFactory:function(e){var r=[];return e.onStable.subscribe(function(){for(;r.length;)r.pop()()}),function(i){r.push(i)}}},{provide:w1,useClass:w1,deps:[[new ss,U6]]},{provide:bu,useClass:bu,deps:[]},E_,{provide:e0,useFactory: + */ /** * @license * Copyright Google LLC All Rights Reserved. @@ -1997,26 +2159,29 @@ var eh=(0,ce.Z)(function e(){(0,pe.Z)(this,e)}),ay={factoryPathPrefix:"",factory * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function(){return Qg},deps:[]},{provide:t0,useFactory:function(){return Yg},deps:[]},{provide:j6,useFactory:function(e){return Lf(e=e||"undefined"!=typeof $localize&&$localize.locale||E6),e},deps:[[new k1(j6),new ss,new e1]]},{provide:qp,useValue:"USD"}];var Ao,jc=(0,ce.Z)(function e(r){(0,pe.Z)(this,e)});jc.\u0275fac=function(r){return new(r||jc)(Ki($1))},jc.\u0275mod=nt({type:jc}),jc.\u0275inj=Gt({providers:Cy}),jc.ctorParameters=function(){return[{type:$1}]},function(e){e[e.CreateViewNodes=0]="CreateViewNodes",e[e.CheckNoChanges=1]="CheckNoChanges",e[e.CheckNoChangesProjectedViews=2]="CheckNoChangesProjectedViews",e[e.CheckAndUpdate=3]="CheckAndUpdate",e[e.CheckAndUpdateProjectedViews=4]="CheckAndUpdateProjectedViews",e[e.Destroy=5]="Destroy"}(Ao||(Ao={}));var Pl;new Map,new Map,new Map;!function(e){e[e.create=0]="create",e[e.detectChanges=1]="detectChanges",e[e.checkNoChanges=2]="checkNoChanges",e[e.destroy=3]="destroy",e[e.handleEvent=4]="handleEvent"}(Pl||(Pl={}))},9402:function(It,we,D){"use strict";D.d(we,{iD:function(){return ln}});var L=D(4338),C=D(8270),t=D(4924),R=D(3586),V=D(47),F=D(7444),E=D(3587),y=D(9520),be=D(1365),ue=D(9441),De=D(1318),de=function(Dt){(0,L.Z)(se,Dt);var mt=(0,C.Z)(se);function se(me,$){return(0,V.Z)(this,se),mt.call(this)}return(0,F.Z)(se,[{key:"schedule",value:function($){arguments.length>1&&void 0!==arguments[1]&&arguments[1];return this}}]),se}(De.w),Le=function(Dt){(0,L.Z)(se,Dt);var mt=(0,C.Z)(se);function se(me,$){var xe;return(0,V.Z)(this,se),(xe=mt.call(this,me,$)).scheduler=me,xe.work=$,xe.pending=!1,xe}return(0,F.Z)(se,[{key:"schedule",value:function($){var xe=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(this.closed)return this;this.state=$;var fe=this.id,$e=this.scheduler;return null!=fe&&(this.id=this.recycleAsyncId($e,fe,xe)),this.pending=!0,this.delay=xe,this.id=this.id||this.requestAsyncId($e,this.id,xe),this}},{key:"requestAsyncId",value:function($,xe){var fe=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return setInterval($.flush.bind($,this),fe)}},{key:"recycleAsyncId",value:function($,xe){var fe=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(null!==fe&&this.delay===fe&&!1===this.pending)return xe;clearInterval(xe)}},{key:"execute",value:function($,xe){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;var fe=this._execute($,xe);if(fe)return fe;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}},{key:"_execute",value:function($,xe){var fe=!1,$e=void 0;try{this.work($)}catch(ht){fe=!0,$e=!!ht&&ht||new Error(ht)}if(fe)return this.unsubscribe(),$e}},{key:"_unsubscribe",value:function(){var $=this.id,xe=this.scheduler,fe=xe.actions,$e=fe.indexOf(this);this.work=null,this.state=null,this.pending=!1,this.scheduler=null,-1!==$e&&fe.splice($e,1),null!=$&&(this.id=this.recycleAsyncId(xe,$,null)),this.delay=null}}]),se}(de),ce=function(Dt){(0,L.Z)(se,Dt);var mt=(0,C.Z)(se);function se(me,$){var xe;return(0,V.Z)(this,se),(xe=mt.call(this,me,$)).scheduler=me,xe.work=$,xe}return(0,F.Z)(se,[{key:"schedule",value:function($){var xe=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return xe>0?(0,y.Z)((0,be.Z)(se.prototype),"schedule",this).call(this,$,xe):(this.delay=xe,this.state=$,this.scheduler.flush(this),this)}},{key:"execute",value:function($,xe){return xe>0||this.closed?(0,y.Z)((0,be.Z)(se.prototype),"execute",this).call(this,$,xe):this._execute($,xe)}},{key:"requestAsyncId",value:function($,xe){var fe=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return null!==fe&&fe>0||null===fe&&this.delay>0?(0,y.Z)((0,be.Z)(se.prototype),"requestAsyncId",this).call(this,$,xe,fe):$.flush(this)}}]),se}(Le),pe=D(9021),Ne=function(){function Dt(mt){var se=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Dt.now;(0,V.Z)(this,Dt),this.SchedulerAction=mt,this.now=se}return(0,F.Z)(Dt,[{key:"schedule",value:function(se){var me=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,$=arguments.length>2?arguments[2]:void 0;return new this.SchedulerAction(this,se).schedule($,me)}}]),Dt}();Ne.now=function(){return Date.now()};var ge=function(Dt){(0,L.Z)(se,Dt);var mt=(0,C.Z)(se);function se(me){var $,xe=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Ne.now;return(0,V.Z)(this,se),($=mt.call(this,me,function(){return se.delegate&&se.delegate!==(0,pe.Z)($)?se.delegate.now():xe()})).actions=[],$.active=!1,$.scheduled=void 0,$}return(0,F.Z)(se,[{key:"schedule",value:function($){var xe=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,fe=arguments.length>2?arguments[2]:void 0;return se.delegate&&se.delegate!==this?se.delegate.schedule($,xe,fe):(0,y.Z)((0,be.Z)(se.prototype),"schedule",this).call(this,$,xe,fe)}},{key:"flush",value:function($){var xe=this.actions;if(this.active)xe.push($);else{var fe;this.active=!0;do{if(fe=$.execute($.state,$.delay))break}while($=xe.shift());if(this.active=!1,fe){for(;$=xe.shift();)$.unsubscribe();throw fe}}}}]),se}(Ne),ye=function(Dt){(0,L.Z)(se,Dt);var mt=(0,C.Z)(se);function se(){return(0,V.Z)(this,se),mt.apply(this,arguments)}return(0,F.Z)(se)}(ge),ve=new ye(ce),Ue=D(1003),Ke=D(9544),Ze=new Ke.y(function(Dt){return Dt.complete()});function ut(Dt){return Dt?function(Dt){return new Ke.y(function(mt){return Dt.schedule(function(){return mt.complete()})})}(Dt):Ze}var U,Dt,A=D(1134),W=D(5871);(Dt=U||(U={})).NEXT="N",Dt.ERROR="E",Dt.COMPLETE="C";var Se=function(){function Dt(mt,se,me){(0,V.Z)(this,Dt),this.kind=mt,this.value=se,this.error=me,this.hasValue="N"===mt}return(0,F.Z)(Dt,[{key:"observe",value:function(se){switch(this.kind){case"N":return se.next&&se.next(this.value);case"E":return se.error&&se.error(this.error);case"C":return se.complete&&se.complete()}}},{key:"do",value:function(se,me,$){switch(this.kind){case"N":return se&&se(this.value);case"E":return me&&me(this.error);case"C":return $&&$()}}},{key:"accept",value:function(se,me,$){return se&&"function"==typeof se.next?this.observe(se):this.do(se,me,$)}},{key:"toObservable",value:function(){switch(this.kind){case"N":return(0,A.of)(this.value);case"E":return(0,W._)(this.error);case"C":return ut()}throw new Error("unexpected notification kind value")}}],[{key:"createNext",value:function(se){return void 0!==se?new Dt("N",se):Dt.undefinedValueNotification}},{key:"createError",value:function(se){return new Dt("E",void 0,se)}},{key:"createComplete",value:function(){return Dt.completeNotification}}]),Dt}();Se.completeNotification=new Se("C"),Se.undefinedValueNotification=new Se("N",void 0);var st=function(Dt){(0,L.Z)(se,Dt);var mt=(0,C.Z)(se);function se(me,$){var xe,fe=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return(0,V.Z)(this,se),(xe=mt.call(this,me)).scheduler=$,xe.delay=fe,xe}return(0,F.Z)(se,[{key:"scheduleMessage",value:function($){this.destination.add(this.scheduler.schedule(se.dispatch,this.delay,new at($,this.destination)))}},{key:"_next",value:function($){this.scheduleMessage(Se.createNext($))}},{key:"_error",value:function($){this.scheduleMessage(Se.createError($)),this.unsubscribe()}},{key:"_complete",value:function(){this.scheduleMessage(Se.createComplete()),this.unsubscribe()}}],[{key:"dispatch",value:function($){var xe=$.notification,fe=$.destination;xe.observe(fe),this.unsubscribe()}}]),se}(Ue.L),at=(0,F.Z)(function Dt(mt,se){(0,V.Z)(this,Dt),this.notification=mt,this.destination=se}),St=D(6874),ft=D(2691),ot=function(Dt){(0,L.Z)(se,Dt);var mt=(0,C.Z)(se);function se(){var me,$=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Number.POSITIVE_INFINITY,xe=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.POSITIVE_INFINITY,fe=arguments.length>2?arguments[2]:void 0;return(0,V.Z)(this,se),(me=mt.call(this)).scheduler=fe,me._events=[],me._infiniteTimeWindow=!1,me._bufferSize=$<1?1:$,me._windowTime=xe<1?1:xe,xe===Number.POSITIVE_INFINITY?(me._infiniteTimeWindow=!0,me.next=me.nextInfiniteTimeWindow):me.next=me.nextTimeWindow,me}return(0,F.Z)(se,[{key:"nextInfiniteTimeWindow",value:function($){if(!this.isStopped){var xe=this._events;xe.push($),xe.length>this._bufferSize&&xe.shift()}(0,y.Z)((0,be.Z)(se.prototype),"next",this).call(this,$)}},{key:"nextTimeWindow",value:function($){this.isStopped||(this._events.push(new kt(this._getNow(),$)),this._trimBufferThenGetEvents()),(0,y.Z)((0,be.Z)(se.prototype),"next",this).call(this,$)}},{key:"_subscribe",value:function($){var wt,xe=this._infiniteTimeWindow,fe=xe?this._events:this._trimBufferThenGetEvents(),$e=this.scheduler,ht=fe.length;if(this.closed)throw new St.N;if(this.isStopped||this.hasError?wt=De.w.EMPTY:(this.observers.push($),wt=new ft.W(this,$)),$e&&$.add($=new st($,$e)),xe)for(var Gt=0;Gtxe&&(wt=Math.max(wt,ht-xe)),wt>0&&$e.splice(0,wt),$e}}]),se}(ue.xQ),kt=(0,F.Z)(function Dt(mt,se){(0,V.Z)(this,Dt),this.time=mt,this.value=se}),_t=D(6248),Xt=D(3927),Jt=D(400),Wt=D(7272);function Ft(Dt,mt){return"function"==typeof mt?function(se){return se.pipe(Ft(function(me,$){return(0,Jt.D)(Dt(me,$)).pipe((0,Xt.U)(function(xe,fe){return mt(me,xe,$,fe)}))}))}:function(se){return se.lift(new mn(Dt))}}var rn,mn=function(){function Dt(mt){(0,V.Z)(this,Dt),this.project=mt}return(0,F.Z)(Dt,[{key:"call",value:function(se,me){return me.subscribe(new Pn(se,this.project))}}]),Dt}(),Pn=function(Dt){(0,L.Z)(se,Dt);var mt=(0,C.Z)(se);function se(me,$){var xe;return(0,V.Z)(this,se),(xe=mt.call(this,me)).project=$,xe.index=0,xe}return(0,F.Z)(se,[{key:"_next",value:function($){var xe,fe=this.index++;try{xe=this.project($,fe)}catch($e){return void this.destination.error($e)}this._innerSub(xe)}},{key:"_innerSub",value:function($){var xe=this.innerSubscription;xe&&xe.unsubscribe();var fe=new Wt.IY(this),$e=this.destination;$e.add(fe),this.innerSubscription=(0,Wt.ft)($,fe),this.innerSubscription!==fe&&$e.add(this.innerSubscription)}},{key:"_complete",value:function(){var $=this.innerSubscription;(!$||$.closed)&&(0,y.Z)((0,be.Z)(se.prototype),"_complete",this).call(this),this.unsubscribe()}},{key:"_unsubscribe",value:function(){this.innerSubscription=void 0}},{key:"notifyComplete",value:function(){this.innerSubscription=void 0,this.isStopped&&(0,y.Z)((0,be.Z)(se.prototype),"_complete",this).call(this)}},{key:"notifyNext",value:function($){this.destination.next($)}}]),se}(Wt.Ds),he={schedule:function(mt,se){var me=setTimeout(mt,se);return function(){return clearTimeout(me)}},scheduleBeforeRender:function(mt){if("undefined"==typeof window)return he.schedule(mt,0);if(void 0===window.requestAnimationFrame){return he.schedule(mt,16)}var me=window.requestAnimationFrame(mt);return function(){return window.cancelAnimationFrame(me)}}}; /** - * @license Angular v12.2.17 - * (c) 2010-2021 Google LLC. https://angular.io/ - * License: MIT + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license */ +class Tc{constructor(i){}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */function Jn(Dt,mt,se){var me=se;return function(Dt){return!!Dt&&Dt.nodeType===Node.ELEMENT_NODE}(Dt)&&mt.some(function($,xe){return!("*"===$||!function(Dt,mt){if(!rn){var se=Element.prototype;rn=se.matches||se.matchesSelector||se.mozMatchesSelector||se.msMatchesSelector||se.oMatchesSelector||se.webkitMatchesSelector}return Dt.nodeType===Node.ELEMENT_NODE&&rn.call(Dt,mt)}(Dt,$))&&(me=xe,!0)}),me + */ +function Qh(n){return"boolean"==typeof n?n:null!=n&&"false"!==n} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */}var gt=function(){function Dt(mt,se){(0,V.Z)(this,Dt),this.componentFactory=se.get(E._Vd).resolveComponentFactory(mt)}return(0,F.Z)(Dt,[{key:"create",value:function(se){return new Bt(this.componentFactory,se)}}]),Dt}(),Bt=function(){function Dt(mt,se){(0,V.Z)(this,Dt),this.componentFactory=mt,this.injector=se,this.eventEmitters=new ot(1),this.events=this.eventEmitters.pipe(Ft(function(me){return _t.T.apply(void 0,(0,R.Z)(me))})),this.componentRef=null,this.viewChangeDetectorRef=null,this.inputChanges=null,this.hasInputChanges=!1,this.implementsOnChanges=!1,this.scheduledChangeDetectionFn=null,this.scheduledDestroyFn=null,this.initialInputValues=new Map,this.unchangedInputs=new Set(this.componentFactory.inputs.map(function(me){return me.propName})),this.ngZone=this.injector.get(E.R0b),this.elementZone="undefined"==typeof Zone?null:this.ngZone.run(function(){return Zone.current})}return(0,F.Z)(Dt,[{key:"connect",value:function(se){var me=this;this.runInZone(function(){if(null!==me.scheduledDestroyFn)return me.scheduledDestroyFn(),void(me.scheduledDestroyFn=null);null===me.componentRef&&me.initializeComponent(se)})}},{key:"disconnect",value:function(){var se=this;this.runInZone(function(){null===se.componentRef||null!==se.scheduledDestroyFn||(se.scheduledDestroyFn=he.schedule(function(){null!==se.componentRef&&(se.componentRef.destroy(),se.componentRef=null,se.viewChangeDetectorRef=null)},10))})}},{key:"getInputValue",value:function(se){var me=this;return this.runInZone(function(){return null===me.componentRef?me.initialInputValues.get(se):me.componentRef.instance[se]})}},{key:"setInputValue",value:function(se,me){var $=this;this.runInZone(function(){null!==$.componentRef?function(Dt,mt){return Dt===mt||Dt!=Dt&&mt!=mt}(me,$.getInputValue(se))&&(void 0!==me||!$.unchangedInputs.has(se))||($.recordInputChange(se,me),$.unchangedInputs.delete(se),$.hasInputChanges=!0,$.componentRef.instance[se]=me,$.scheduleDetectChanges()):$.initialInputValues.set(se,me)})}},{key:"initializeComponent",value:function(se){var me=E.zs3.create({providers:[],parent:this.injector}),$= + */Tc.\u0275fac=function(i){return new(i||Tc)(Hr(h2))},Tc.\u0275mod=ue({type:Tc}),Tc.\u0275inj=Fe({})} /** * @license * Copyright Google LLC All Rights Reserved. @@ -2024,54 +2189,61 @@ function(){return Qg},deps:[]},{provide:t0,useFactory:function(){return Yg},deps * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function(Dt,mt){var se=Dt.childNodes,me=mt.map(function(){return[]}),$=-1;mt.some(function(wt,Gt){return"*"===wt&&($=Gt,!0)});for(var xe=0,fe=se.length;xe{"use strict";w.d(_e,{iD:()=>Xt});var t=w(8008),C=w(2218),F=w(6957);class U extends F.w{constructor(Fe,Me){super()}schedule(Fe,Me=0){return this}}class N extends U{constructor(Fe,Me){super(Fe,Me),this.scheduler=Fe,this.work=Me,this.pending=!1}schedule(Fe,Me=0){if(this.closed)return this;this.state=Fe;const kt=this.id,qt=this.scheduler;return null!=kt&&(this.id=this.recycleAsyncId(qt,kt,Me)),this.pending=!0,this.delay=Me,this.id=this.id||this.requestAsyncId(qt,this.id,Me),this}requestAsyncId(Fe,Me,kt=0){return setInterval(Fe.flush.bind(Fe,this),kt)}recycleAsyncId(Fe,Me,kt=0){if(null!==kt&&this.delay===kt&&!1===this.pending)return Me;clearInterval(Me)}execute(Fe,Me){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const kt=this._execute(Fe,Me);if(kt)return kt;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(Fe,Me){let qt,kt=!1;try{this.work(Fe)}catch(Ye){kt=!0,qt=!!Ye&&Ye||new Error(Ye)}if(kt)return this.unsubscribe(),qt}_unsubscribe(){const Fe=this.id,Me=this.scheduler,kt=Me.actions,qt=kt.indexOf(this);this.work=null,this.state=null,this.pending=!1,this.scheduler=null,-1!==qt&&kt.splice(qt,1),null!=Fe&&(this.id=this.recycleAsyncId(Me,Fe,null)),this.delay=null}}class K{constructor(Fe,Me=K.now){this.SchedulerAction=Fe,this.now=Me}schedule(Fe,Me=0,kt){return new this.SchedulerAction(this,Fe).schedule(kt,Me)}}K.now=()=>Date.now();class $ extends K{constructor(Fe,Me=K.now){super(Fe,()=>$.delegate&&$.delegate!==this?$.delegate.now():Me()),this.actions=[],this.active=!1,this.scheduled=void 0}schedule(Fe,Me=0,kt){return $.delegate&&$.delegate!==this?$.delegate.schedule(Fe,Me,kt):super.schedule(Fe,Me,kt)}flush(Fe){const{actions:Me}=this;if(this.active)return void Me.push(Fe);let kt;this.active=!0;do{if(kt=Fe.execute(Fe.state,Fe.delay))break}while(Fe=Me.shift());if(this.active=!1,kt){for(;Fe=Me.shift();)Fe.unsubscribe();throw kt}}}const ae=new class le extends ${}(class G extends N{constructor(Fe,Me){super(Fe,Me),this.scheduler=Fe,this.work=Me}schedule(Fe,Me=0){return Me>0?super.schedule(Fe,Me):(this.delay=Me,this.state=Fe,this.scheduler.flush(this),this)}execute(Fe,Me){return Me>0||this.closed?super.execute(Fe,Me):this._execute(Fe,Me)}requestAsyncId(Fe,Me,kt=0){return null!==kt&&kt>0||null===kt&&this.delay>0?super.requestAsyncId(Fe,Me,kt):Fe.flush(this)}});var be=w(14),Be=w(5901);const Ne=new Be.y(Je=>Je.complete());function ke(Je){return Je?function Re(Je){return new Be.y(Fe=>Je.schedule(()=>Fe.complete()))}(Je):Ne}var pe,Je,fe=w(4139),de=w(6587);(Je=pe||(pe={})).NEXT="N",Je.ERROR="E",Je.COMPLETE="C";class Pe{constructor(Fe,Me,kt){this.kind=Fe,this.value=Me,this.error=kt,this.hasValue="N"===Fe}observe(Fe){switch(this.kind){case"N":return Fe.next&&Fe.next(this.value);case"E":return Fe.error&&Fe.error(this.error);case"C":return Fe.complete&&Fe.complete()}}do(Fe,Me,kt){switch(this.kind){case"N":return Fe&&Fe(this.value);case"E":return Me&&Me(this.error);case"C":return kt&&kt()}}accept(Fe,Me,kt){return Fe&&"function"==typeof Fe.next?this.observe(Fe):this.do(Fe,Me,kt)}toObservable(){switch(this.kind){case"N":return(0,fe.of)(this.value);case"E":return(0,de._)(this.error);case"C":return ke()}throw new Error("unexpected notification kind value")}static createNext(Fe){return typeof Fe<"u"?new Pe("N",Fe):Pe.undefinedValueNotification}static createError(Fe){return new Pe("E",void 0,Fe)}static createComplete(){return Pe.completeNotification}}Pe.completeNotification=new Pe("C"),Pe.undefinedValueNotification=new Pe("N",void 0);class We extends be.L{constructor(Fe,Me,kt=0){super(Fe),this.scheduler=Me,this.delay=kt}static dispatch(Fe){const{notification:Me,destination:kt}=Fe;Me.observe(kt),this.unsubscribe()}scheduleMessage(Fe){this.destination.add(this.scheduler.schedule(We.dispatch,this.delay,new Ie(Fe,this.destination)))}_next(Fe){this.scheduleMessage(Pe.createNext(Fe))}_error(Fe){this.scheduleMessage(Pe.createError(Fe)),this.unsubscribe()}_complete(){this.scheduleMessage(Pe.createComplete()),this.unsubscribe()}}class Ie{constructor(Fe,Me){this.notification=Fe,this.destination=Me}}var He=w(9086),T=w(1722);class Z extends C.xQ{constructor(Fe=Number.POSITIVE_INFINITY,Me=Number.POSITIVE_INFINITY,kt){super(),this.scheduler=kt,this._events=[],this._infiniteTimeWindow=!1,this._bufferSize=Fe<1?1:Fe,this._windowTime=Me<1?1:Me,Me===Number.POSITIVE_INFINITY?(this._infiniteTimeWindow=!0,this.next=this.nextInfiniteTimeWindow):this.next=this.nextTimeWindow}nextInfiniteTimeWindow(Fe){if(!this.isStopped){const Me=this._events;Me.push(Fe),Me.length>this._bufferSize&&Me.shift()}super.next(Fe)}nextTimeWindow(Fe){this.isStopped||(this._events.push(new Ce(this._getNow(),Fe)),this._trimBufferThenGetEvents()),super.next(Fe)}_subscribe(Fe){const Me=this._infiniteTimeWindow,kt=Me?this._events:this._trimBufferThenGetEvents(),qt=this.scheduler,Ye=kt.length;let ct;if(this.closed)throw new He.N;if(this.isStopped||this.hasError?ct=F.w.EMPTY:(this.observers.push(Fe),ct=new T.W(this,Fe)),qt&&Fe.add(Fe=new We(Fe,qt)),Me)for(let dt=0;dtMe&&(ct=Math.max(ct,Ye-Me)),ct>0&&qt.splice(0,ct),qt}}class Ce{constructor(Fe,Me){this.time=Fe,this.value=Me}}var Te=w(5286),Qe=w(6942),st=w(4858),bt=w(2831);function Tt(Je,Fe){return"function"==typeof Fe?Me=>Me.pipe(Tt((kt,qt)=>(0,st.D)(Je(kt,qt)).pipe((0,Qe.U)((Ye,ct)=>Fe(kt,Ye,qt,ct))))):Me=>Me.lift(new wt(Je))}class wt{constructor(Fe){this.project=Fe}call(Fe,Me){return Me.subscribe(new Dt(Fe,this.project))}}class Dt extends bt.Ds{constructor(Fe,Me){super(Fe),this.project=Me,this.index=0}_next(Fe){let Me;const kt=this.index++;try{Me=this.project(Fe,kt)}catch(qt){return void this.destination.error(qt)}this._innerSub(Me)}_innerSub(Fe){const Me=this.innerSubscription;Me&&Me.unsubscribe();const kt=new bt.IY(this),qt=this.destination;qt.add(kt),this.innerSubscription=(0,bt.ft)(Fe,kt),this.innerSubscription!==kt&&qt.add(this.innerSubscription)}_complete(){const{innerSubscription:Fe}=this;(!Fe||Fe.closed)&&super._complete(),this.unsubscribe()}_unsubscribe(){this.innerSubscription=void 0}notifyComplete(){this.innerSubscription=void 0,this.isStopped&&super._complete()}notifyNext(Fe){this.destination.next(Fe)}} +/** + * @license Angular v14.2.12 + * (c) 2010-2022 Google LLC. https://angular.io/ + * License: MIT + */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ + */const Mt={schedule(Je,Fe){const Me=setTimeout(Je,Fe);return()=>clearTimeout(Me)},scheduleBeforeRender(Je){if(typeof window>"u")return Mt.schedule(Je,0);if(typeof window.requestAnimationFrame>"u")return Mt.schedule(Je,16);const Fe=window.requestAnimationFrame(Je);return()=>window.cancelAnimationFrame(Fe)}};let Qt;function Xe(Je,Fe,Me){let kt=Me;return function Gt(Je){return!!Je&&Je.nodeType===Node.ELEMENT_NODE}(Je)&&Fe.some((qt,Ye)=>!("*"===qt||!function Rt(Je,Fe){if(!Qt){const Me=Element.prototype;Qt=Me.matches||Me.matchesSelector||Me.mozMatchesSelector||Me.msMatchesSelector||Me.oMatchesSelector||Me.webkitMatchesSelector}return Je.nodeType===Node.ELEMENT_NODE&&Qt.call(Je,Fe)}(Je,qt))&&(kt=Ye,!0)),kt /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */},1707:function(It,we,D){"use strict";D.d(we,{Fj:function(){return Ue},u5:function(){return Va},Fd:function(){return ri},qQ:function(){return ii},JJ:function(){return Bt},On:function(){return Qn},wV:function(){return Cr}});var L=D(9021),C=D(5012),t=D(3586),R=D(4338),V=D(8270),F=D(47),E=D(7444),y=D(3587),be=D(4364),ue=D(400),De=D(2720),de=D(3927),Le=function(){function O(B,N){(0,F.Z)(this,O),this._renderer=B,this._elementRef=N,this.onChange=function(ie){},this.onTouched=function(){}}return(0,E.Z)(O,[{key:"setProperty",value:function(N,ie){this._renderer.setProperty(this._elementRef.nativeElement,N,ie)}},{key:"registerOnTouched",value:function(N){this.onTouched=N}},{key:"registerOnChange",value:function(N){this.onChange=N}},{key:"setDisabledState",value:function(N){this.setProperty("disabled",N)}}]),O}(); + */}class Et{constructor(Fe,Me){this.componentFactory=Me.get(t._Vd).resolveComponentFactory(Fe)}create(Fe){return new at(this.componentFactory,Fe)}}class at{constructor(Fe,Me){this.componentFactory=Fe,this.injector=Me,this.eventEmitters=new Z(1),this.events=this.eventEmitters.pipe(Tt(kt=>(0,Te.T)(...kt))),this.componentRef=null,this.viewChangeDetectorRef=null,this.inputChanges=null,this.hasInputChanges=!1,this.implementsOnChanges=!1,this.scheduledChangeDetectionFn=null,this.scheduledDestroyFn=null,this.initialInputValues=new Map,this.unchangedInputs=new Set(this.componentFactory.inputs.map(({propName:kt})=>kt)),this.ngZone=this.injector.get(t.R0b),this.elementZone=typeof Zone>"u"?null:this.ngZone.run(()=>Zone.current)}connect(Fe){this.runInZone(()=>{if(null!==this.scheduledDestroyFn)return this.scheduledDestroyFn(),void(this.scheduledDestroyFn=null);null===this.componentRef&&this.initializeComponent(Fe)})}disconnect(){this.runInZone(()=>{null===this.componentRef||null!==this.scheduledDestroyFn||(this.scheduledDestroyFn=Mt.schedule(()=>{null!==this.componentRef&&(this.componentRef.destroy(),this.componentRef=null,this.viewChangeDetectorRef=null)},10))})}getInputValue(Fe){return this.runInZone(()=>null===this.componentRef?this.initialInputValues.get(Fe):this.componentRef.instance[Fe])}setInputValue(Fe,Me){this.runInZone(()=>{null!==this.componentRef?function _n(Je,Fe){return Je===Fe||Je!=Je&&Fe!=Fe}(Me,this.getInputValue(Fe))&&(void 0!==Me||!this.unchangedInputs.has(Fe))||(this.recordInputChange(Fe,Me),this.unchangedInputs.delete(Fe),this.hasInputChanges=!0,this.componentRef.instance[Fe]=Me,this.scheduleDetectChanges()):this.initialInputValues.set(Fe,Me)})}initializeComponent(Fe){const Me=t.zs3.create({providers:[],parent:this.injector}),kt= /** - * @license Angular v12.2.16 - * (c) 2010-2021 Google LLC. https://angular.io/ - * License: MIT + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license */ +function yt(Je,Fe){const Me=Je.childNodes,kt=Fe.map(()=>[]);let qt=-1;Fe.some((Ye,ct)=>"*"===Ye&&(qt=ct,!0));for(let Ye=0,ct=Me.length;Ye{this.initialInputValues.has(Fe)&&this.setInputValue(Fe,this.initialInputValues.get(Fe))}),this.initialInputValues.clear()}initializeOutputs(Fe){const Me=this.componentFactory.outputs.map(({propName:kt,templateName:qt})=>Fe.instance[kt].pipe((0,Qe.U)(ct=>({name:qt,value:ct}))));this.eventEmitters.next(Me)}callNgOnChanges(Fe){if(!this.implementsOnChanges||null===this.inputChanges)return;const Me=this.inputChanges;this.inputChanges=null,Fe.instance.ngOnChanges(Me)}markViewForCheck(Fe){this.hasInputChanges&&(this.hasInputChanges=!1,Fe.markForCheck())}scheduleDetectChanges(){this.scheduledChangeDetectionFn||(this.scheduledChangeDetectionFn=Mt.scheduleBeforeRender(()=>{this.scheduledChangeDetectionFn=null,this.detectChanges()}))}recordInputChange(Fe,Me){if(!this.implementsOnChanges)return;null===this.inputChanges&&(this.inputChanges={});const kt=this.inputChanges[Fe];if(kt)return void(kt.currentValue=Me);const qt=this.unchangedInputs.has(Fe),Ye=qt?void 0:this.getInputValue(Fe);this.inputChanges[Fe]=new t.WD2(Ye,Me,qt)}detectChanges(){null!==this.componentRef&&(this.callNgOnChanges(this.componentRef),this.markViewForCheck(this.viewChangeDetectorRef),this.componentRef.changeDetectorRef.detectChanges())}runInZone(Fe){return this.elementZone&&Zone.current!==this.elementZone?this.ngZone.run(Fe):Fe()}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */Le.\u0275fac=function(B){return new(B||Le)(y.Y36(y.Qsj),y.Y36(y.SBq))},Le.\u0275dir=y.lG2({type:Le}),Le.ctorParameters=function(){return[{type:y.Qsj},{type:y.SBq}]};var ce=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){return(0,F.Z)(this,N),B.apply(this,arguments)}return(0,E.Z)(N)}(Le);ce.\u0275fac=function(){var O;return function(N){return(O||(O=y.n5z(ce)))(N||ce)}}(),ce.\u0275dir=y.lG2({type:ce,features:[y.qOj]});var pe=new y.OlP("NgValueAccessor"),Ne={provide:pe,useExisting:(0,y.Gpc)(function(){return ge}),multi:!0},ge=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){return(0,F.Z)(this,N),B.apply(this,arguments)}return(0,E.Z)(N,[{key:"writeValue",value:function(oe){this.setProperty("checked",oe)}}]),N}(ce); + */class fn extends HTMLElement{constructor(){super(...arguments),this.ngElementEventsSubscription=null}}function Xt(Je,Fe){const Me=function ie(Je,Fe){return Fe.get(t._Vd).resolveComponentFactory(Je).inputs}(Je,Fe.injector),kt=Fe.strategyFactory||new Et(Je,Fe.injector),qt=function Ln(Je){const Fe={};return Je.forEach(({propName:Me,templateName:kt})=>{Fe[function St(Je){return Je.replace(/[A-Z]/g,Fe=>`-${Fe.toLowerCase()}`)}(kt)]=Me}),Fe}(Me);class Ye extends fn{constructor(dt){super(),this.injector=dt}get ngElementStrategy(){if(!this._ngElementStrategy){const dt=this._ngElementStrategy=kt.create(this.injector||Fe.injector);Me.forEach(({propName:Nt})=>{if(!this.hasOwnProperty(Nt))return;const Zt=this[Nt];delete this[Nt],dt.setInputValue(Nt,Zt)})}return this._ngElementStrategy}attributeChangedCallback(dt,Nt,Zt,Kt){const we=qt[dt];this.ngElementStrategy.setInputValue(we,Zt)}connectedCallback(){let dt=!1;this.ngElementStrategy.events&&(this.subscribeToEvents(),dt=!0),this.ngElementStrategy.connect(this),dt||this.subscribeToEvents()}disconnectedCallback(){this._ngElementStrategy&&this._ngElementStrategy.disconnect(),this.ngElementEventsSubscription&&(this.ngElementEventsSubscription.unsubscribe(),this.ngElementEventsSubscription=null)}subscribeToEvents(){this.ngElementEventsSubscription=this.ngElementStrategy.events.subscribe(dt=>{const Nt=new CustomEvent(dt.name,{detail:dt.value});this.dispatchEvent(Nt)})}}return Ye.observedAttributes=Object.keys(qt),Me.forEach(({propName:ct})=>{Object.defineProperty(Ye.prototype,ct,{get(){return this.ngElementStrategy.getInputValue(ct)},set(dt){this.ngElementStrategy.setInputValue(ct,dt)},configurable:!0,enumerable:!0})}),Ye /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ge.\u0275fac=function(){var O;return function(N){return(O||(O=y.n5z(ge)))(N||ge)}}(),ge.\u0275dir=y.lG2({type:ge,selectors:[["input","type","checkbox","formControlName",""],["input","type","checkbox","formControl",""],["input","type","checkbox","ngModel",""]],hostBindings:function(B,N){1&B&&y.NdJ("change",function(oe){return N.onChange(oe.target.checked)})("blur",function(){return N.onTouched()})},features:[y._Bn([Ne]),y.qOj]}); + */}new t.GfV("14.2.12"); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2079,30 +2251,32 @@ function(Dt,mt){var se=Dt.childNodes,me=mt.map(function(){return[]}),$=-1;mt.som * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var ye={provide:pe,useExisting:(0,y.Gpc)(function(){return Ue}),multi:!0};var ve=new y.OlP("CompositionEventMode"),Ue=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe,Ve){var Tt;return(0,F.Z)(this,N),(Tt=B.call(this,ie,oe))._compositionMode=Ve,Tt._composing=!1,null==Tt._compositionMode&&(Tt._compositionMode=!function(){var O=(0,be.q)()?(0,be.q)().getUserAgent():"";return/android (\d+)/.test(O.toLowerCase())}()),Tt}return(0,E.Z)(N,[{key:"writeValue",value:function(oe){var Ve=null==oe?"":oe;this.setProperty("value",Ve)}},{key:"_handleInput",value:function(oe){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(oe)}},{key:"_compositionStart",value:function(){this._composing=!0}},{key:"_compositionEnd",value:function(oe){this._composing=!1,this._compositionMode&&this.onChange(oe)}}]),N}(Le); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license + */},2508:(vt,_e,w)=>{"use strict";w.d(_e,{Fd:()=>so,Fj:()=>Ne,JJ:()=>Je,On:()=>Pr,qQ:()=>ki,u5:()=>uo,wV:()=>er});var t=w(8008),C=w(4666),F=w(4858),U=w(4350),N=w(6942); +/** + * @license Angular v14.2.12 + * (c) 2010-2022 Google LLC. https://angular.io/ + * License: MIT */ -function Ke(O){return null==O||0===O.length}function Ze(O){return null!=O&&"number"==typeof O.length}Ue.\u0275fac=function(B){return new(B||Ue)(y.Y36(y.Qsj),y.Y36(y.SBq),y.Y36(ve,8))},Ue.\u0275dir=y.lG2({type:Ue,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(B,N){1&B&&y.NdJ("input",function(oe){return N._handleInput(oe.target.value)})("blur",function(){return N.onTouched()})("compositionstart",function(){return N._compositionStart()})("compositionend",function(oe){return N._compositionEnd(oe.target.value)})},features:[y._Bn([ye]),y.qOj]}),Ue.ctorParameters=function(){return[{type:y.Qsj},{type:y.SBq},{type:Boolean,decorators:[{type:y.FiY},{type:y.tBr,args:[ve]}]}]};var ut=new y.OlP("NgValidators"),Xe=new y.OlP("NgAsyncValidators"),A=/^(?=.{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])?)*$/;function U(O){return function(B){if(Ke(B.value)||Ke(O))return null;var N=parseFloat(B.value);return!isNaN(N)&&NO?{max:{max:O,actual:B.value}}:null}}function ot(O){return null}function kt(O){return null!=O}function _t(O){var B=(0,y.QGY)(O)?(0,ue.D)(O):O;return(0,y.CqO)(B),B}function Xt(O){var B={};return O.forEach(function(N){B=null!=N?Object.assign(Object.assign({},B),N):B}),0===Object.keys(B).length?null:B}function Jt(O,B){return B.map(function(N){return N(O)})}function Ft(O){return O.map(function(B){return function(O){return!O.validate}(B)?B:function(N){return B.validate(N)}})}function Pn(O){return null!=O?function(O){if(!O)return null;var B=O.filter(kt);return 0==B.length?null:function(N){return Xt(Jt(N,B))}}(Ft(O)):null}function hn(O){return null!=O?function(O){if(!O)return null;var B=O.filter(kt);return 0==B.length?null:function(N){var ie=Jt(N,B).map(_t);return(0,De.D)(ie).pipe((0,de.U)(Xt))}}(Ft(O)):null}function on(O,B){return null===O?[B]:Array.isArray(O)?[].concat((0,t.Z)(O),[B]):[O,B]}function pt(O){return O._rawValidators}function xt(O){return O._rawAsyncValidators}function je(O){return O?Array.isArray(O)?O:[O]:[]}function rn(O,B){return Array.isArray(O)?O.includes(B):O===B}function At(O,B){var N=je(B);return je(O).forEach(function(oe){rn(N,oe)||N.push(oe)}),N}function Je(O,B){return je(B).filter(function(N){return!rn(O,N)})} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var qt=function(){function O(){(0,F.Z)(this,O),this._rawValidators=[],this._rawAsyncValidators=[],this._onDestroyCallbacks=[]}return(0,E.Z)(O,[{key:"value",get:function(){return this.control?this.control.value:null}},{key:"valid",get:function(){return this.control?this.control.valid:null}},{key:"invalid",get:function(){return this.control?this.control.invalid:null}},{key:"pending",get:function(){return this.control?this.control.pending:null}},{key:"disabled",get:function(){return this.control?this.control.disabled:null}},{key:"enabled",get:function(){return this.control?this.control.enabled:null}},{key:"errors",get:function(){return this.control?this.control.errors:null}},{key:"pristine",get:function(){return this.control?this.control.pristine:null}},{key:"dirty",get:function(){return this.control?this.control.dirty:null}},{key:"touched",get:function(){return this.control?this.control.touched:null}},{key:"status",get:function(){return this.control?this.control.status:null}},{key:"untouched",get:function(){return this.control?this.control.untouched:null}},{key:"statusChanges",get:function(){return this.control?this.control.statusChanges:null}},{key:"valueChanges",get:function(){return this.control?this.control.valueChanges:null}},{key:"path",get:function(){return null}},{key:"_setValidators",value:function(N){this._rawValidators=N||[],this._composedValidatorFn=Pn(this._rawValidators)}},{key:"_setAsyncValidators",value:function(N){this._rawAsyncValidators=N||[],this._composedAsyncValidatorFn=hn(this._rawAsyncValidators)}},{key:"validator",get:function(){return this._composedValidatorFn||null}},{key:"asyncValidator",get:function(){return this._composedAsyncValidatorFn||null}},{key:"_registerOnDestroy",value:function(N){this._onDestroyCallbacks.push(N)}},{key:"_invokeOnDestroyCallbacks",value:function(){this._onDestroyCallbacks.forEach(function(N){return N()}),this._onDestroyCallbacks=[]}},{key:"reset",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0;this.control&&this.control.reset(N)}},{key:"hasError",value:function(N,ie){return!!this.control&&this.control.hasError(N,ie)}},{key:"getError",value:function(N,ie){return this.control?this.control.getError(N,ie):null}}]),O}();qt.\u0275fac=function(B){return new(B||qt)},qt.\u0275dir=y.lG2({type:qt}); + */class G{constructor(M,X){this._renderer=M,this._elementRef=X,this.onChange=it=>{},this.onTouched=()=>{}}setProperty(M,X){this._renderer.setProperty(this._elementRef.nativeElement,M,X)}registerOnTouched(M){this.onTouched=M}registerOnChange(M){this.onChange=M}setDisabledState(M){this.setProperty("disabled",M)}}G.\u0275fac=function(M){return new(M||G)(t.Y36(t.Qsj),t.Y36(t.SBq))},G.\u0275dir=t.lG2({type:G});class K extends G{}K.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(K)))(X||K)}}(),K.\u0275dir=t.lG2({type:K,features:[t.qOj]});const $=new t.OlP("NgValueAccessor"),le={provide:$,useExisting:(0,t.Gpc)(()=>R),multi:!0}; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var pn=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){return(0,F.Z)(this,N),B.apply(this,arguments)}return(0,E.Z)(N,[{key:"formDirective",get:function(){return null}},{key:"path",get:function(){return null}}]),N}(qt);pn.\u0275fac=function(){var O;return function(N){return(O||(O=y.n5z(pn)))(N||pn)}}(),pn.\u0275dir=y.lG2({type:pn,features:[y.qOj]}); + */class R extends K{writeValue(M){this.setProperty("checked",M)}}R.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(R)))(X||R)}}(),R.\u0275dir=t.lG2({type:R,selectors:[["input","type","checkbox","formControlName",""],["input","type","checkbox","formControl",""],["input","type","checkbox","ngModel",""]],hostBindings:function(M,X){1&M&&t.NdJ("change",function($t){return X.onChange($t.target.checked)})("blur",function(){return X.onTouched()})},features:[t._Bn([le]),t.qOj]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2110,37 +2284,35 @@ var pn=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){return(0,F.Z)(this * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Ct=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){var ie;return(0,F.Z)(this,N),(ie=B.apply(this,arguments))._parent=null,ie.name=null,ie.valueAccessor=null,ie}return(0,E.Z)(N)}(qt),Jn=function(){function O(B){(0,F.Z)(this,O),this._cd=B}return(0,E.Z)(O,[{key:"is",value:function(N){var ie,oe,Ve;return"submitted"===N?!!(null===(ie=this._cd)||void 0===ie?void 0:ie.submitted):!!(null===(Ve=null===(oe=this._cd)||void 0===oe?void 0:oe.control)||void 0===Ve?void 0:Ve[N])}}]),O}(),Bt=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie){return(0,F.Z)(this,N),B.call(this,ie)}return(0,E.Z)(N)}(Jn); +const ae={provide:$,useExisting:(0,t.Gpc)(()=>Ne),multi:!0};const Be=new t.OlP("CompositionEventMode");class Ne extends G{constructor(M,X,it){super(M,X),this._compositionMode=it,this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function be(){const oe=(0,C.q)()?(0,C.q)().getUserAgent():"";return/android (\d+)/.test(oe.toLowerCase())}())}writeValue(M){const X=M??"";this.setProperty("value",X)}_handleInput(M){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(M)}_compositionStart(){this._composing=!0}_compositionEnd(M){this._composing=!1,this._compositionMode&&this.onChange(M)}}Ne.\u0275fac=function(M){return new(M||Ne)(t.Y36(t.Qsj),t.Y36(t.SBq),t.Y36(Be,8))},Ne.\u0275dir=t.lG2({type:Ne,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(M,X){1&M&&t.NdJ("input",function($t){return X._handleInput($t.target.value)})("blur",function(){return X.onTouched()})("compositionstart",function(){return X._compositionStart()})("compositionend",function($t){return X._compositionEnd($t.target.value)})},features:[t._Bn([ae]),t.qOj]});function Re(oe){return null==oe||("string"==typeof oe||Array.isArray(oe))&&0===oe.length}function fe(oe){return null!=oe&&"number"==typeof oe.length}const de=new t.OlP("NgValidators"),pe=new t.OlP("NgAsyncValidators"),Pe=/^(?=.{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])?)*$/;function $e(oe){return M=>{if(Re(M.value)||Re(oe))return null;const X=parseFloat(M.value);return!isNaN(X)&&X{if(Re(M.value)||Re(oe))return null;const X=parseFloat(M.value);return!isNaN(X)&&X>oe?{max:{max:oe,actual:M.value}}:null}}function Ie(oe){return Re(oe.value)?{required:!0}:null}function He(oe){return!0===oe.value?null:{required:!0}}function T(oe){return Re(oe.value)||Pe.test(oe.value)?null:{email:!0}}function Z(oe){return M=>Re(M.value)||!fe(M.value)?null:M.value.lengthfe(M.value)&&M.value.length>oe?{maxlength:{requiredLength:oe,actualLength:M.value.length}}:null}function Te(oe){if(!oe)return Qe;let M,X;return"string"==typeof oe?(X="","^"!==oe.charAt(0)&&(X+="^"),X+=oe,"$"!==oe.charAt(oe.length-1)&&(X+="$"),M=new RegExp(X)):(X=oe.toString(),M=oe),it=>{if(Re(it.value))return null;const $t=it.value;return M.test($t)?null:{pattern:{requiredPattern:X,actualValue:$t}}}}function Qe(oe){return null}function st(oe){return null!=oe}function bt(oe){const M=(0,t.QGY)(oe)?(0,F.D)(oe):oe;return M}function Tt(oe){let M={};return oe.forEach(X=>{M=null!=X?{...M,...X}:M}),0===Object.keys(M).length?null:M}function wt(oe,M){return M.map(X=>X(oe))}function Mt(oe){return oe.map(M=>function Dt(oe){return!oe.validate}(M)?M:X=>M.validate(X))}function St(oe){if(!oe)return null;const M=oe.filter(st);return 0==M.length?null:function(X){return Tt(wt(X,M))}}function Gt(oe){return null!=oe?St(Mt(oe)):null}function on(oe){if(!oe)return null;const M=oe.filter(st);return 0==M.length?null:function(X){const it=wt(X,M).map(bt);return(0,U.D)(it).pipe((0,N.U)(Tt))}}function Bt(oe){return null!=oe?on(Mt(oe)):null}function Qt(oe,M){return null===oe?[M]:Array.isArray(oe)?[...oe,M]:[oe,M]}function Rt(oe){return oe._rawValidators}function _n(oe){return oe._rawAsyncValidators}function Ln(oe){return oe?Array.isArray(oe)?oe:[oe]:[]}function ie(oe,M){return Array.isArray(oe)?oe.includes(M):oe===M}function yt(oe,M){const X=Ln(M);return Ln(oe).forEach($t=>{ie(X,$t)||X.push($t)}),X}function Xe(oe,M){return Ln(M).filter(X=>!ie(oe,X))} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */Bt.\u0275fac=function(B){return new(B||Bt)(y.Y36(Ct,2))},Bt.\u0275dir=y.lG2({type:Bt,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(B,N){2&B&&y.ekj("ng-untouched",N.is("untouched"))("ng-touched",N.is("touched"))("ng-pristine",N.is("pristine"))("ng-dirty",N.is("dirty"))("ng-valid",N.is("valid"))("ng-invalid",N.is("invalid"))("ng-pending",N.is("pending"))},features:[y.qOj]}),Bt.ctorParameters=function(){return[{type:Ct,decorators:[{type:y.PiD}]}]};var Ot=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie){return(0,F.Z)(this,N),B.call(this,ie)}return(0,E.Z)(N)}(Jn);Ot.\u0275fac=function(B){return new(B||Ot)(y.Y36(pn,10))},Ot.\u0275dir=y.lG2({type:Ot,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(B,N){2&B&&y.ekj("ng-untouched",N.is("untouched"))("ng-touched",N.is("touched"))("ng-pristine",N.is("pristine"))("ng-dirty",N.is("dirty"))("ng-valid",N.is("valid"))("ng-invalid",N.is("invalid"))("ng-pending",N.is("pending"))("ng-submitted",N.is("submitted"))},features:[y.qOj]}),Ot.ctorParameters=function(){return[{type:pn,decorators:[{type:y.FiY},{type:y.PiD}]}]}; + */class lt{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(M){this._rawValidators=M||[],this._composedValidatorFn=Gt(this._rawValidators)}_setAsyncValidators(M){this._rawAsyncValidators=M||[],this._composedAsyncValidatorFn=Bt(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_registerOnDestroy(M){this._onDestroyCallbacks.push(M)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(M=>M()),this._onDestroyCallbacks=[]}reset(M){this.control&&this.control.reset(M)}hasError(M,X){return!!this.control&&this.control.hasError(M,X)}getError(M,X){return this.control?this.control.getError(M,X):null}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -function Gt(O,B){return[].concat((0,t.Z)(B.path),[O])}function un(O,B){ir(O,B),B.valueAccessor.writeValue(O.value),function(O,B){B.valueAccessor.registerOnChange(function(N){O._pendingValue=N,O._pendingChange=!0,O._pendingDirty=!0,"change"===O.updateOn&&Gi(O,B)})}(O,B),function(O,B){var N=function(oe,Ve){B.valueAccessor.writeValue(oe),Ve&&B.viewToModelUpdate(oe)};O.registerOnChange(N),B._registerOnDestroy(function(){O._unregisterOnChange(N)})}(O,B),function(O,B){B.valueAccessor.registerOnTouched(function(){O._pendingTouched=!0,"blur"===O.updateOn&&O._pendingChange&&Gi(O,B),"submit"!==O.updateOn&&O.markAsTouched()})}(O,B),function(O,B){if(B.valueAccessor.setDisabledState){var N=function(oe){B.valueAccessor.setDisabledState(oe)};O.registerOnDisabledChange(N),B._registerOnDestroy(function(){O._unregisterOnDisabledChange(N)})}}(O,B)}function bn(O,B){!(arguments.length>2&&void 0!==arguments[2])||arguments[2];var ie=function(){};B.valueAccessor&&(B.valueAccessor.registerOnChange(ie),B.valueAccessor.registerOnTouched(ie)),Fn(O,B),O&&(B._invokeOnDestroyCallbacks(),O._registerOnCollectionChange(function(){}))}function Xn(O,B){O.forEach(function(N){N.registerOnValidatorChange&&N.registerOnValidatorChange(B)})}function ir(O,B){var N=pt(O);null!==B.validator?O.setValidators(on(N,B.validator)):"function"==typeof N&&O.setValidators([N]);var ie=xt(O);null!==B.asyncValidator?O.setAsyncValidators(on(ie,B.asyncValidator)):"function"==typeof ie&&O.setAsyncValidators([ie]);var oe=function(){return O.updateValueAndValidity()};Xn(B._rawValidators,oe),Xn(B._rawAsyncValidators,oe)}function Fn(O,B){var N=!1;if(null!==O){if(null!==B.validator){var ie=pt(O);if(Array.isArray(ie)&&ie.length>0){var oe=ie.filter(function(Un){return Un!==B.validator});oe.length!==ie.length&&(N=!0,O.setValidators(oe))}}if(null!==B.asyncValidator){var Ve=xt(O);if(Array.isArray(Ve)&&Ve.length>0){var Tt=Ve.filter(function(Un){return Un!==B.asyncValidator});Tt.length!==Ve.length&&(N=!0,O.setAsyncValidators(Tt))}}}var tn=function(){};return Xn(B._rawValidators,tn),Xn(B._rawAsyncValidators,tn),N}function Gi(O,B){O._pendingDirty&&O.markAsDirty(),O.setValue(O._pendingValue,{emitModelToViewChange:!1}),B.viewToModelUpdate(O._pendingValue),O._pendingChange=!1}function Dr(O,B){ir(O,B)}function oa(O,B){if(!O.hasOwnProperty("model"))return!1;var N=O.model;return!!N.isFirstChange()||!Object.is(B,N.currentValue)}function We(O,B){O._syncPendingControls(),B.forEach(function(N){var ie=N.control;"submit"===ie.updateOn&&ie._pendingChange&&(N.viewToModelUpdate(ie._pendingValue),ie._pendingChange=!1)})}function Pe(O,B){if(!B)return null;Array.isArray(B);var N=void 0,ie=void 0,oe=void 0;return B.forEach(function(Ve){Ve.constructor===Ue?N=Ve:function(O){return Object.getPrototypeOf(O.constructor)===ce}(Ve)?ie=Ve:oe=Ve}),oe||ie||N||null}function Qe(O,B){var N=O.indexOf(B);N>-1&&O.splice(N,1)} + */class Et extends lt{get formDirective(){return null}get path(){return null}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var Qt="VALID",yn="INVALID",sr="PENDING",tr="DISABLED";function Vr(O){return(Xr(O)?O.validators:O)||null}function Kn(O){return Array.isArray(O)?Pn(O):O||null}function _i(O,B){return(Xr(B)?B.asyncValidators:O)||null}function $n(O){return Array.isArray(O)?hn(O):O||null}function Xr(O){return null!=O&&!Array.isArray(O)&&"object"==typeof O}var yi=function(){function O(B,N){(0,F.Z)(this,O),this._hasOwnPendingAsyncValidator=!1,this._onCollectionChange=function(){},this._parent=null,this.pristine=!0,this.touched=!1,this._onDisabledChange=[],this._rawValidators=B,this._rawAsyncValidators=N,this._composedValidatorFn=Kn(this._rawValidators),this._composedAsyncValidatorFn=$n(this._rawAsyncValidators)}return(0,E.Z)(O,[{key:"validator",get:function(){return this._composedValidatorFn},set:function(N){this._rawValidators=this._composedValidatorFn=N}},{key:"asyncValidator",get:function(){return this._composedAsyncValidatorFn},set:function(N){this._rawAsyncValidators=this._composedAsyncValidatorFn=N}},{key:"parent",get:function(){return this._parent}},{key:"valid",get:function(){return this.status===Qt}},{key:"invalid",get:function(){return this.status===yn}},{key:"pending",get:function(){return this.status==sr}},{key:"disabled",get:function(){return this.status===tr}},{key:"enabled",get:function(){return this.status!==tr}},{key:"dirty",get:function(){return!this.pristine}},{key:"untouched",get:function(){return!this.touched}},{key:"updateOn",get:function(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}},{key:"setValidators",value:function(N){this._rawValidators=N,this._composedValidatorFn=Kn(N)}},{key:"setAsyncValidators",value:function(N){this._rawAsyncValidators=N,this._composedAsyncValidatorFn=$n(N)}},{key:"addValidators",value:function(N){this.setValidators(At(N,this._rawValidators))}},{key:"addAsyncValidators",value:function(N){this.setAsyncValidators(At(N,this._rawAsyncValidators))}},{key:"removeValidators",value:function(N){this.setValidators(Je(N,this._rawValidators))}},{key:"removeAsyncValidators",value:function(N){this.setAsyncValidators(Je(N,this._rawAsyncValidators))}},{key:"hasValidator",value:function(N){return rn(this._rawValidators,N)}},{key:"hasAsyncValidator",value:function(N){return rn(this._rawAsyncValidators,N)}},{key:"clearValidators",value:function(){this.validator=null}},{key:"clearAsyncValidators",value:function(){this.asyncValidator=null}},{key:"markAsTouched",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=!0,this._parent&&!N.onlySelf&&this._parent.markAsTouched(N)}},{key:"markAllAsTouched",value:function(){this.markAsTouched({onlySelf:!0}),this._forEachChild(function(N){return N.markAllAsTouched()})}},{key:"markAsUntouched",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=!1,this._pendingTouched=!1,this._forEachChild(function(ie){ie.markAsUntouched({onlySelf:!0})}),this._parent&&!N.onlySelf&&this._parent._updateTouched(N)}},{key:"markAsDirty",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!1,this._parent&&!N.onlySelf&&this._parent.markAsDirty(N)}},{key:"markAsPristine",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!0,this._pendingDirty=!1,this._forEachChild(function(ie){ie.markAsPristine({onlySelf:!0})}),this._parent&&!N.onlySelf&&this._parent._updatePristine(N)}},{key:"markAsPending",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.status=sr,!1!==N.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!N.onlySelf&&this._parent.markAsPending(N)}},{key:"disable",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},ie=this._parentMarkedDirty(N.onlySelf);this.status=tr,this.errors=null,this._forEachChild(function(oe){oe.disable(Object.assign(Object.assign({},N),{onlySelf:!0}))}),this._updateValue(),!1!==N.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},N),{skipPristineCheck:ie})),this._onDisabledChange.forEach(function(oe){return oe(!0)})}},{key:"enable",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},ie=this._parentMarkedDirty(N.onlySelf);this.status=Qt,this._forEachChild(function(oe){oe.enable(Object.assign(Object.assign({},N),{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:N.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},N),{skipPristineCheck:ie})),this._onDisabledChange.forEach(function(oe){return oe(!1)})}},{key:"_updateAncestors",value:function(N){this._parent&&!N.onlySelf&&(this._parent.updateValueAndValidity(N),N.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}},{key:"setParent",value:function(N){this._parent=N}},{key:"updateValueAndValidity",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===Qt||this.status===sr)&&this._runAsyncValidator(N.emitEvent)),!1!==N.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!N.onlySelf&&this._parent.updateValueAndValidity(N)}},{key:"_updateTreeValidity",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{emitEvent:!0};this._forEachChild(function(ie){return ie._updateTreeValidity(N)}),this.updateValueAndValidity({onlySelf:!0,emitEvent:N.emitEvent})}},{key:"_setInitialStatus",value:function(){this.status=this._allControlsDisabled()?tr:Qt}},{key:"_runValidator",value:function(){return this.validator?this.validator(this):null}},{key:"_runAsyncValidator",value:function(N){var ie=this;if(this.asyncValidator){this.status=sr,this._hasOwnPendingAsyncValidator=!0;var oe=_t(this.asyncValidator(this));this._asyncValidationSubscription=oe.subscribe(function(Ve){ie._hasOwnPendingAsyncValidator=!1,ie.setErrors(Ve,{emitEvent:N})})}}},{key:"_cancelExistingSubscription",value:function(){this._asyncValidationSubscription&&(this._asyncValidationSubscription.unsubscribe(),this._hasOwnPendingAsyncValidator=!1)}},{key:"setErrors",value:function(N){var ie=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.errors=N,this._updateControlsErrors(!1!==ie.emitEvent)}},{key:"get",value:function(N){return function(O,B,N){if(null==B||(Array.isArray(B)||(B=B.split(N)),Array.isArray(B)&&0===B.length))return null;var ie=O;return B.forEach(function(oe){ie=ie instanceof qr?ie.controls.hasOwnProperty(oe)?ie.controls[oe]:null:ie instanceof ya&&ie.at(oe)||null}),ie}(this,N,".")}},{key:"getError",value:function(N,ie){var oe=ie?this.get(ie):this;return oe&&oe.errors?oe.errors[N]:null}},{key:"hasError",value:function(N,ie){return!!this.getError(N,ie)}},{key:"root",get:function(){for(var N=this;N._parent;)N=N._parent;return N}},{key:"_updateControlsErrors",value:function(N){this.status=this._calculateStatus(),N&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(N)}},{key:"_initObservables",value:function(){this.valueChanges=new y.vpe,this.statusChanges=new y.vpe}},{key:"_calculateStatus",value:function(){return this._allControlsDisabled()?tr:this.errors?yn:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(sr)?sr:this._anyControlsHaveStatus(yn)?yn:Qt}},{key:"_anyControlsHaveStatus",value:function(N){return this._anyControls(function(ie){return ie.status===N})}},{key:"_anyControlsDirty",value:function(){return this._anyControls(function(N){return N.dirty})}},{key:"_anyControlsTouched",value:function(){return this._anyControls(function(N){return N.touched})}},{key:"_updatePristine",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!this._anyControlsDirty(),this._parent&&!N.onlySelf&&this._parent._updatePristine(N)}},{key:"_updateTouched",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=this._anyControlsTouched(),this._parent&&!N.onlySelf&&this._parent._updateTouched(N)}},{key:"_isBoxedValue",value:function(N){return"object"==typeof N&&null!==N&&2===Object.keys(N).length&&"value"in N&&"disabled"in N}},{key:"_registerOnCollectionChange",value:function(N){this._onCollectionChange=N}},{key:"_setUpdateStrategy",value:function(N){Xr(N)&&null!=N.updateOn&&(this._updateOn=N.updateOn)}},{key:"_parentMarkedDirty",value:function(N){var ie=this._parent&&this._parent.dirty;return!N&&!!ie&&!this._parent._anyControlsDirty()}}]),O}(),Yn=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){var ie,oe=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,Ve=arguments.length>1?arguments[1]:void 0,Tt=arguments.length>2?arguments[2]:void 0;return(0,F.Z)(this,N),(ie=B.call(this,Vr(Ve),_i(Tt,Ve)))._onChange=[],ie._applyFormState(oe),ie._setUpdateStrategy(Ve),ie._initObservables(),ie.updateValueAndValidity({onlySelf:!0,emitEvent:!!ie.asyncValidator}),ie}return(0,E.Z)(N,[{key:"setValue",value:function(oe){var Ve=this,Tt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.value=this._pendingValue=oe,this._onChange.length&&!1!==Tt.emitModelToViewChange&&this._onChange.forEach(function(tn){return tn(Ve.value,!1!==Tt.emitViewToModelChange)}),this.updateValueAndValidity(Tt)}},{key:"patchValue",value:function(oe){var Ve=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.setValue(oe,Ve)}},{key:"reset",value:function(){var oe=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,Ve=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._applyFormState(oe),this.markAsPristine(Ve),this.markAsUntouched(Ve),this.setValue(this.value,Ve),this._pendingChange=!1}},{key:"_updateValue",value:function(){}},{key:"_anyControls",value:function(oe){return!1}},{key:"_allControlsDisabled",value:function(){return this.disabled}},{key:"registerOnChange",value:function(oe){this._onChange.push(oe)}},{key:"_unregisterOnChange",value:function(oe){Qe(this._onChange,oe)}},{key:"registerOnDisabledChange",value:function(oe){this._onDisabledChange.push(oe)}},{key:"_unregisterOnDisabledChange",value:function(oe){Qe(this._onDisabledChange,oe)}},{key:"_forEachChild",value:function(oe){}},{key:"_syncPendingControls",value:function(){return!("submit"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange))&&(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),!0)}},{key:"_applyFormState",value:function(oe){this._isBoxedValue(oe)?(this.value=this._pendingValue=oe.value,oe.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=oe}}]),N}(yi),qr=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe,Ve){var Tt;return(0,F.Z)(this,N),(Tt=B.call(this,Vr(oe),_i(Ve,oe))).controls=ie,Tt._initObservables(),Tt._setUpdateStrategy(oe),Tt._setUpControls(),Tt.updateValueAndValidity({onlySelf:!0,emitEvent:!!Tt.asyncValidator}),Tt}return(0,E.Z)(N,[{key:"registerControl",value:function(oe,Ve){return this.controls[oe]?this.controls[oe]:(this.controls[oe]=Ve,Ve.setParent(this),Ve._registerOnCollectionChange(this._onCollectionChange),Ve)}},{key:"addControl",value:function(oe,Ve){var Tt=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.registerControl(oe,Ve),this.updateValueAndValidity({emitEvent:Tt.emitEvent}),this._onCollectionChange()}},{key:"removeControl",value:function(oe){var Ve=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.controls[oe]&&this.controls[oe]._registerOnCollectionChange(function(){}),delete this.controls[oe],this.updateValueAndValidity({emitEvent:Ve.emitEvent}),this._onCollectionChange()}},{key:"setControl",value:function(oe,Ve){var Tt=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.controls[oe]&&this.controls[oe]._registerOnCollectionChange(function(){}),delete this.controls[oe],Ve&&this.registerControl(oe,Ve),this.updateValueAndValidity({emitEvent:Tt.emitEvent}),this._onCollectionChange()}},{key:"contains",value:function(oe){return this.controls.hasOwnProperty(oe)&&this.controls[oe].enabled}},{key:"setValue",value:function(oe){var Ve=this,Tt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._checkAllValuesPresent(oe),Object.keys(oe).forEach(function(tn){Ve._throwIfControlMissing(tn),Ve.controls[tn].setValue(oe[tn],{onlySelf:!0,emitEvent:Tt.emitEvent})}),this.updateValueAndValidity(Tt)}},{key:"patchValue",value:function(oe){var Ve=this,Tt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};null!=oe&&(Object.keys(oe).forEach(function(tn){Ve.controls[tn]&&Ve.controls[tn].patchValue(oe[tn],{onlySelf:!0,emitEvent:Tt.emitEvent})}),this.updateValueAndValidity(Tt))}},{key:"reset",value:function(){var oe=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},Ve=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._forEachChild(function(Tt,tn){Tt.reset(oe[tn],{onlySelf:!0,emitEvent:Ve.emitEvent})}),this._updatePristine(Ve),this._updateTouched(Ve),this.updateValueAndValidity(Ve)}},{key:"getRawValue",value:function(){return this._reduceChildren({},function(oe,Ve,Tt){return oe[Tt]=Ve instanceof Yn?Ve.value:Ve.getRawValue(),oe})}},{key:"_syncPendingControls",value:function(){var oe=this._reduceChildren(!1,function(Ve,Tt){return!!Tt._syncPendingControls()||Ve});return oe&&this.updateValueAndValidity({onlySelf:!0}),oe}},{key:"_throwIfControlMissing",value:function(oe){if(!Object.keys(this.controls).length)throw new Error("\n There are no form controls registered with this group yet. If you're using ngModel,\n you may want to check next tick (e.g. use setTimeout).\n ");if(!this.controls[oe])throw new Error("Cannot find form control with name: ".concat(oe,"."))}},{key:"_forEachChild",value:function(oe){var Ve=this;Object.keys(this.controls).forEach(function(Tt){var tn=Ve.controls[Tt];tn&&oe(tn,Tt)})}},{key:"_setUpControls",value:function(){var oe=this;this._forEachChild(function(Ve){Ve.setParent(oe),Ve._registerOnCollectionChange(oe._onCollectionChange)})}},{key:"_updateValue",value:function(){this.value=this._reduceValue()}},{key:"_anyControls",value:function(oe){for(var Ve=0,Tt=Object.keys(this.controls);Ve0||this.disabled}},{key:"_checkAllValuesPresent",value:function(oe){this._forEachChild(function(Ve,Tt){if(void 0===oe[Tt])throw new Error("Must supply a value for form control with name: '".concat(Tt,"'."))})}}]),N}(yi),ya=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe,Ve){var Tt;return(0,F.Z)(this,N),(Tt=B.call(this,Vr(oe),_i(Ve,oe))).controls=ie,Tt._initObservables(),Tt._setUpdateStrategy(oe),Tt._setUpControls(),Tt.updateValueAndValidity({onlySelf:!0,emitEvent:!!Tt.asyncValidator}),Tt}return(0,E.Z)(N,[{key:"at",value:function(oe){return this.controls[oe]}},{key:"push",value:function(oe){var Ve=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.controls.push(oe),this._registerControl(oe),this.updateValueAndValidity({emitEvent:Ve.emitEvent}),this._onCollectionChange()}},{key:"insert",value:function(oe,Ve){var Tt=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.controls.splice(oe,0,Ve),this._registerControl(Ve),this.updateValueAndValidity({emitEvent:Tt.emitEvent})}},{key:"removeAt",value:function(oe){var Ve=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.controls[oe]&&this.controls[oe]._registerOnCollectionChange(function(){}),this.controls.splice(oe,1),this.updateValueAndValidity({emitEvent:Ve.emitEvent})}},{key:"setControl",value:function(oe,Ve){var Tt=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.controls[oe]&&this.controls[oe]._registerOnCollectionChange(function(){}),this.controls.splice(oe,1),Ve&&(this.controls.splice(oe,0,Ve),this._registerControl(Ve)),this.updateValueAndValidity({emitEvent:Tt.emitEvent}),this._onCollectionChange()}},{key:"length",get:function(){return this.controls.length}},{key:"setValue",value:function(oe){var Ve=this,Tt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._checkAllValuesPresent(oe),oe.forEach(function(tn,Un){Ve._throwIfControlMissing(Un),Ve.at(Un).setValue(tn,{onlySelf:!0,emitEvent:Tt.emitEvent})}),this.updateValueAndValidity(Tt)}},{key:"patchValue",value:function(oe){var Ve=this,Tt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};null!=oe&&(oe.forEach(function(tn,Un){Ve.at(Un)&&Ve.at(Un).patchValue(tn,{onlySelf:!0,emitEvent:Tt.emitEvent})}),this.updateValueAndValidity(Tt))}},{key:"reset",value:function(){var oe=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],Ve=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._forEachChild(function(Tt,tn){Tt.reset(oe[tn],{onlySelf:!0,emitEvent:Ve.emitEvent})}),this._updatePristine(Ve),this._updateTouched(Ve),this.updateValueAndValidity(Ve)}},{key:"getRawValue",value:function(){return this.controls.map(function(oe){return oe instanceof Yn?oe.value:oe.getRawValue()})}},{key:"clear",value:function(){var oe=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.controls.length<1||(this._forEachChild(function(Ve){return Ve._registerOnCollectionChange(function(){})}),this.controls.splice(0),this.updateValueAndValidity({emitEvent:oe.emitEvent}))}},{key:"_syncPendingControls",value:function(){var oe=this.controls.reduce(function(Ve,Tt){return!!Tt._syncPendingControls()||Ve},!1);return oe&&this.updateValueAndValidity({onlySelf:!0}),oe}},{key:"_throwIfControlMissing",value:function(oe){if(!this.controls.length)throw new Error("\n There are no form controls registered with this array yet. If you're using ngModel,\n you may want to check next tick (e.g. use setTimeout).\n ");if(!this.at(oe))throw new Error("Cannot find form control at index ".concat(oe))}},{key:"_forEachChild",value:function(oe){this.controls.forEach(function(Ve,Tt){oe(Ve,Tt)})}},{key:"_updateValue",value:function(){var oe=this;this.value=this.controls.filter(function(Ve){return Ve.enabled||oe.disabled}).map(function(Ve){return Ve.value})}},{key:"_anyControls",value:function(oe){return this.controls.some(function(Ve){return Ve.enabled&&oe(Ve)})}},{key:"_setUpControls",value:function(){var oe=this;this._forEachChild(function(Ve){return oe._registerControl(Ve)})}},{key:"_checkAllValuesPresent",value:function(oe){this._forEachChild(function(Ve,Tt){if(void 0===oe[Tt])throw new Error("Must supply a value for form control at index: ".concat(Tt,"."))})}},{key:"_allControlsDisabled",value:function(){var Ve,oe=(0,C.Z)(this.controls);try{for(oe.s();!(Ve=oe.n()).done;){if(Ve.value.enabled)return!1}}catch(tn){oe.e(tn)}finally{oe.f()}return this.controls.length>0||this.disabled}},{key:"_registerControl",value:function(oe){oe.setParent(this),oe._registerOnCollectionChange(this._onCollectionChange)}}]),N}(yi),Fr={provide:pn,useExisting:(0,y.Gpc)(function(){return $r})},Ri=Promise.resolve(null),$r=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe){var Ve;return(0,F.Z)(this,N),(Ve=B.call(this)).submitted=!1,Ve._directives=[],Ve.ngSubmit=new y.vpe,Ve.form=new qr({},Pn(ie),hn(oe)),Ve}return(0,E.Z)(N,[{key:"ngAfterViewInit",value:function(){this._setUpdateStrategy()}},{key:"formDirective",get:function(){return this}},{key:"control",get:function(){return this.form}},{key:"path",get:function(){return[]}},{key:"controls",get:function(){return this.form.controls}},{key:"addControl",value:function(oe){var Ve=this;Ri.then(function(){var Tt=Ve._findContainer(oe.path);oe.control=Tt.registerControl(oe.name,oe.control),un(oe.control,oe),oe.control.updateValueAndValidity({emitEvent:!1}),Ve._directives.push(oe)})}},{key:"getControl",value:function(oe){return this.form.get(oe.path)}},{key:"removeControl",value:function(oe){var Ve=this;Ri.then(function(){var Tt=Ve._findContainer(oe.path);Tt&&Tt.removeControl(oe.name),Qe(Ve._directives,oe)})}},{key:"addFormGroup",value:function(oe){var Ve=this;Ri.then(function(){var Tt=Ve._findContainer(oe.path),tn=new qr({});Dr(tn,oe),Tt.registerControl(oe.name,tn),tn.updateValueAndValidity({emitEvent:!1})})}},{key:"removeFormGroup",value:function(oe){var Ve=this;Ri.then(function(){var Tt=Ve._findContainer(oe.path);Tt&&Tt.removeControl(oe.name)})}},{key:"getFormGroup",value:function(oe){return this.form.get(oe.path)}},{key:"updateModel",value:function(oe,Ve){var Tt=this;Ri.then(function(){Tt.form.get(oe.path).setValue(Ve)})}},{key:"setValue",value:function(oe){this.control.setValue(oe)}},{key:"onSubmit",value:function(oe){return this.submitted=!0,We(this.form,this._directives),this.ngSubmit.emit(oe),!1}},{key:"onReset",value:function(){this.resetForm()}},{key:"resetForm",value:function(){var oe=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0;this.form.reset(oe),this.submitted=!1}},{key:"_setUpdateStrategy",value:function(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}},{key:"_findContainer",value:function(oe){return oe.pop(),oe.length?this.form.get(oe):this.form}}]),N}(pn); + */class at extends lt{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */$r.\u0275fac=function(B){return new(B||$r)(y.Y36(ut,10),y.Y36(Xe,10))},$r.\u0275dir=y.lG2({type:$r,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(B,N){1&B&&y.NdJ("submit",function(oe){return N.onSubmit(oe)})("reset",function(){return N.onReset()})},inputs:{options:["ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[y._Bn([Fr]),y.qOj]}),$r.ctorParameters=function(){return[{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[ut]}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[Xe]}]}]},$r.propDecorators={options:[{type:y.IIB,args:["ngFormOptions"]}]}; + */class fn{constructor(M){this._cd=M}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}}class Je extends fn{constructor(M){super(M)}}Je.\u0275fac=function(M){return new(M||Je)(t.Y36(at,2))},Je.\u0275dir=t.lG2({type:Je,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(M,X){2&M&&t.ekj("ng-untouched",X.isUntouched)("ng-touched",X.isTouched)("ng-pristine",X.isPristine)("ng-dirty",X.isDirty)("ng-valid",X.isValid)("ng-invalid",X.isInvalid)("ng-pending",X.isPending)},features:[t.qOj]});class Fe extends fn{constructor(M){super(M)}}Fe.\u0275fac=function(M){return new(M||Fe)(t.Y36(Et,10))},Fe.\u0275dir=t.lG2({type:Fe,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(M,X){2&M&&t.ekj("ng-untouched",X.isUntouched)("ng-touched",X.isTouched)("ng-pristine",X.isPristine)("ng-dirty",X.isDirty)("ng-valid",X.isValid)("ng-invalid",X.isInvalid)("ng-pending",X.isPending)("ng-submitted",X.isSubmitted)},features:[t.qOj]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2148,15 +2320,14 @@ var Qt="VALID",yn="INVALID",sr="PENDING",tr="DISABLED";function Vr(O){return(Xr( * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Er=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){return(0,F.Z)(this,N),B.apply(this,arguments)}return(0,E.Z)(N,[{key:"ngOnInit",value:function(){this._checkParentType(),this.formDirective.addFormGroup(this)}},{key:"ngOnDestroy",value:function(){this.formDirective&&this.formDirective.removeFormGroup(this)}},{key:"control",get:function(){return this.formDirective.getFormGroup(this)}},{key:"path",get:function(){return Gt(null==this.name?this.name:this.name.toString(),this._parent)}},{key:"formDirective",get:function(){return this._parent?this._parent.formDirective:null}},{key:"_checkParentType",value:function(){}}]),N}(pn);Er.\u0275fac=function(){var O;return function(N){return(O||(O=y.n5z(Er)))(N||Er)}}(),Er.\u0275dir=y.lG2({type:Er,features:[y.qOj]}); +const Pn="VALID",Dn="INVALID",$n="PENDING",vn="DISABLED";function vi(oe){return(nt(oe)?oe.validators:oe)||null}function Ir(oe){return Array.isArray(oe)?Gt(oe):oe||null}function Ee(oe,M){return(nt(M)?M.asyncValidators:oe)||null}function ye(oe){return Array.isArray(oe)?Bt(oe):oe||null}function nt(oe){return null!=oe&&!Array.isArray(oe)&&"object"==typeof oe}function Ot(oe,M,X){const it=oe.controls;if(!(M?Object.keys(it):it).length)throw new t.vHH(1e3,"");if(!it[X])throw new t.vHH(1001,"")}function un(oe,M,X){oe._forEachChild((it,$t)=>{if(void 0===X[$t])throw new t.vHH(1002,"")})}class Un{constructor(M,X){this._pendingDirty=!1,this._hasOwnPendingAsyncValidator=!1,this._pendingTouched=!1,this._onCollectionChange=()=>{},this._parent=null,this.pristine=!0,this.touched=!1,this._onDisabledChange=[],this._rawValidators=M,this._rawAsyncValidators=X,this._composedValidatorFn=Ir(this._rawValidators),this._composedAsyncValidatorFn=ye(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn}set validator(M){this._rawValidators=this._composedValidatorFn=M}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(M){this._rawAsyncValidators=this._composedAsyncValidatorFn=M}get parent(){return this._parent}get valid(){return this.status===Pn}get invalid(){return this.status===Dn}get pending(){return this.status==$n}get disabled(){return this.status===vn}get enabled(){return this.status!==vn}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(M){this._rawValidators=M,this._composedValidatorFn=Ir(M)}setAsyncValidators(M){this._rawAsyncValidators=M,this._composedAsyncValidatorFn=ye(M)}addValidators(M){this.setValidators(yt(M,this._rawValidators))}addAsyncValidators(M){this.setAsyncValidators(yt(M,this._rawAsyncValidators))}removeValidators(M){this.setValidators(Xe(M,this._rawValidators))}removeAsyncValidators(M){this.setAsyncValidators(Xe(M,this._rawAsyncValidators))}hasValidator(M){return ie(this._rawValidators,M)}hasAsyncValidator(M){return ie(this._rawAsyncValidators,M)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(M={}){this.touched=!0,this._parent&&!M.onlySelf&&this._parent.markAsTouched(M)}markAllAsTouched(){this.markAsTouched({onlySelf:!0}),this._forEachChild(M=>M.markAllAsTouched())}markAsUntouched(M={}){this.touched=!1,this._pendingTouched=!1,this._forEachChild(X=>{X.markAsUntouched({onlySelf:!0})}),this._parent&&!M.onlySelf&&this._parent._updateTouched(M)}markAsDirty(M={}){this.pristine=!1,this._parent&&!M.onlySelf&&this._parent.markAsDirty(M)}markAsPristine(M={}){this.pristine=!0,this._pendingDirty=!1,this._forEachChild(X=>{X.markAsPristine({onlySelf:!0})}),this._parent&&!M.onlySelf&&this._parent._updatePristine(M)}markAsPending(M={}){this.status=$n,!1!==M.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!M.onlySelf&&this._parent.markAsPending(M)}disable(M={}){const X=this._parentMarkedDirty(M.onlySelf);this.status=vn,this.errors=null,this._forEachChild(it=>{it.disable({...M,onlySelf:!0})}),this._updateValue(),!1!==M.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors({...M,skipPristineCheck:X}),this._onDisabledChange.forEach(it=>it(!0))}enable(M={}){const X=this._parentMarkedDirty(M.onlySelf);this.status=Pn,this._forEachChild(it=>{it.enable({...M,onlySelf:!0})}),this.updateValueAndValidity({onlySelf:!0,emitEvent:M.emitEvent}),this._updateAncestors({...M,skipPristineCheck:X}),this._onDisabledChange.forEach(it=>it(!1))}_updateAncestors(M){this._parent&&!M.onlySelf&&(this._parent.updateValueAndValidity(M),M.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}setParent(M){this._parent=M}getRawValue(){return this.value}updateValueAndValidity(M={}){this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===Pn||this.status===$n)&&this._runAsyncValidator(M.emitEvent)),!1!==M.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!M.onlySelf&&this._parent.updateValueAndValidity(M)}_updateTreeValidity(M={emitEvent:!0}){this._forEachChild(X=>X._updateTreeValidity(M)),this.updateValueAndValidity({onlySelf:!0,emitEvent:M.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?vn:Pn}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(M){if(this.asyncValidator){this.status=$n,this._hasOwnPendingAsyncValidator=!0;const X=bt(this.asyncValidator(this));this._asyncValidationSubscription=X.subscribe(it=>{this._hasOwnPendingAsyncValidator=!1,this.setErrors(it,{emitEvent:M})})}}_cancelExistingSubscription(){this._asyncValidationSubscription&&(this._asyncValidationSubscription.unsubscribe(),this._hasOwnPendingAsyncValidator=!1)}setErrors(M,X={}){this.errors=M,this._updateControlsErrors(!1!==X.emitEvent)}get(M){let X=M;return null==X||(Array.isArray(X)||(X=X.split(".")),0===X.length)?null:X.reduce((it,$t)=>it&&it._find($t),this)}getError(M,X){const it=X?this.get(X):this;return it&&it.errors?it.errors[M]:null}hasError(M,X){return!!this.getError(M,X)}get root(){let M=this;for(;M._parent;)M=M._parent;return M}_updateControlsErrors(M){this.status=this._calculateStatus(),M&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(M)}_initObservables(){this.valueChanges=new t.vpe,this.statusChanges=new t.vpe}_calculateStatus(){return this._allControlsDisabled()?vn:this.errors?Dn:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus($n)?$n:this._anyControlsHaveStatus(Dn)?Dn:Pn}_anyControlsHaveStatus(M){return this._anyControls(X=>X.status===M)}_anyControlsDirty(){return this._anyControls(M=>M.dirty)}_anyControlsTouched(){return this._anyControls(M=>M.touched)}_updatePristine(M={}){this.pristine=!this._anyControlsDirty(),this._parent&&!M.onlySelf&&this._parent._updatePristine(M)}_updateTouched(M={}){this.touched=this._anyControlsTouched(),this._parent&&!M.onlySelf&&this._parent._updateTouched(M)}_registerOnCollectionChange(M){this._onCollectionChange=M}_setUpdateStrategy(M){nt(M)&&null!=M.updateOn&&(this._updateOn=M.updateOn)}_parentMarkedDirty(M){const X=this._parent&&this._parent.dirty;return!M&&!!X&&!this._parent._anyControlsDirty()}_find(M){return null}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var lt={provide:pn,useExisting:(0,y.Gpc)(function(){return bt})},bt=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe,Ve){var Tt;return(0,F.Z)(this,N),(Tt=B.call(this))._parent=ie,Tt._setValidators(oe),Tt._setAsyncValidators(Ve),Tt}return(0,E.Z)(N,[{key:"_checkParentType",value:function(){!(this._parent instanceof N)&&this._parent}}]),N}(Er);bt.\u0275fac=function(B){return new(B||bt)(y.Y36(pn,5),y.Y36(ut,10),y.Y36(Xe,10))},bt.\u0275dir=y.lG2({type:bt,selectors:[["","ngModelGroup",""]],inputs:{name:["ngModelGroup","name"]},exportAs:["ngModelGroup"],features:[y._Bn([lt]),y.qOj]}),bt.ctorParameters=function(){return[{type:pn,decorators:[{type:y.AA_},{type:y.tp0}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[ut]}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[Xe]}]}]},bt.propDecorators={name:[{type:y.IIB,args:["ngModelGroup"]}]}; + */class Vn extends Un{constructor(M,X,it){super(vi(X),Ee(it,X)),this.controls=M,this._initObservables(),this._setUpdateStrategy(X),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}registerControl(M,X){return this.controls[M]?this.controls[M]:(this.controls[M]=X,X.setParent(this),X._registerOnCollectionChange(this._onCollectionChange),X)}addControl(M,X,it={}){this.registerControl(M,X),this.updateValueAndValidity({emitEvent:it.emitEvent}),this._onCollectionChange()}removeControl(M,X={}){this.controls[M]&&this.controls[M]._registerOnCollectionChange(()=>{}),delete this.controls[M],this.updateValueAndValidity({emitEvent:X.emitEvent}),this._onCollectionChange()}setControl(M,X,it={}){this.controls[M]&&this.controls[M]._registerOnCollectionChange(()=>{}),delete this.controls[M],X&&this.registerControl(M,X),this.updateValueAndValidity({emitEvent:it.emitEvent}),this._onCollectionChange()}contains(M){return this.controls.hasOwnProperty(M)&&this.controls[M].enabled}setValue(M,X={}){un(this,0,M),Object.keys(M).forEach(it=>{Ot(this,!0,it),this.controls[it].setValue(M[it],{onlySelf:!0,emitEvent:X.emitEvent})}),this.updateValueAndValidity(X)}patchValue(M,X={}){null!=M&&(Object.keys(M).forEach(it=>{const $t=this.controls[it];$t&&$t.patchValue(M[it],{onlySelf:!0,emitEvent:X.emitEvent})}),this.updateValueAndValidity(X))}reset(M={},X={}){this._forEachChild((it,$t)=>{it.reset(M[$t],{onlySelf:!0,emitEvent:X.emitEvent})}),this._updatePristine(X),this._updateTouched(X),this.updateValueAndValidity(X)}getRawValue(){return this._reduceChildren({},(M,X,it)=>(M[it]=X.getRawValue(),M))}_syncPendingControls(){let M=this._reduceChildren(!1,(X,it)=>!!it._syncPendingControls()||X);return M&&this.updateValueAndValidity({onlySelf:!0}),M}_forEachChild(M){Object.keys(this.controls).forEach(X=>{const it=this.controls[X];it&&M(it,X)})}_setUpControls(){this._forEachChild(M=>{M.setParent(this),M._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(M){for(const[X,it]of Object.entries(this.controls))if(this.contains(X)&&M(it))return!0;return!1}_reduceValue(){return this._reduceChildren({},(X,it,$t)=>((it.enabled||this.disabled)&&(X[$t]=it.value),X))}_reduceChildren(M,X){let it=M;return this._forEachChild(($t,hi)=>{it=X(it,$t,hi)}),it}_allControlsDisabled(){for(const M of Object.keys(this.controls))if(this.controls[M].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(M){return this.controls.hasOwnProperty(M)?this.controls[M]:null}}class Lr extends Vn{} /** * @license * Copyright Google LLC All Rights Reserved. @@ -2164,7 +2335,7 @@ var lt={provide:pn,useExisting:(0,y.Gpc)(function(){return bt})},bt=function(O){ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Vt={provide:Ct,useExisting:(0,y.Gpc)(function(){return Qn})},kn=Promise.resolve(null),Qn=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe,Ve,Tt){var tn;return(0,F.Z)(this,N),(tn=B.call(this)).control=new Yn,tn._registered=!1,tn.update=new y.vpe,tn._parent=ie,tn._setValidators(oe),tn._setAsyncValidators(Ve),tn.valueAccessor=Pe((0,L.Z)(tn),Tt),tn}return(0,E.Z)(N,[{key:"ngOnChanges",value:function(oe){this._checkForErrors(),this._registered||this._setUpControl(),"isDisabled"in oe&&this._updateDisabled(oe),oa(oe,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}},{key:"ngOnDestroy",value:function(){this.formDirective&&this.formDirective.removeControl(this)}},{key:"path",get:function(){return this._parent?Gt(this.name,this._parent):[this.name]}},{key:"formDirective",get:function(){return this._parent?this._parent.formDirective:null}},{key:"viewToModelUpdate",value:function(oe){this.viewModel=oe,this.update.emit(oe)}},{key:"_setUpControl",value:function(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}},{key:"_setUpdateStrategy",value:function(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}},{key:"_isStandalone",value:function(){return!this._parent||!(!this.options||!this.options.standalone)}},{key:"_setUpStandalone",value:function(){un(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}},{key:"_checkForErrors",value:function(){this._isStandalone()||this._checkParentType(),this._checkName()}},{key:"_checkParentType",value:function(){}},{key:"_checkName",value:function(){this.options&&this.options.name&&(this.name=this.options.name),!this._isStandalone()&&this.name}},{key:"_updateValue",value:function(oe){var Ve=this;kn.then(function(){Ve.control.setValue(oe,{emitViewToModelChange:!1})})}},{key:"_updateDisabled",value:function(oe){var Ve=this,Tt=oe.isDisabled.currentValue,tn=""===Tt||Tt&&"false"!==Tt;kn.then(function(){tn&&!Ve.control.disabled?Ve.control.disable():!tn&&Ve.control.disabled&&Ve.control.enable()})}}]),N}(Ct);Qn.\u0275fac=function(B){return new(B||Qn)(y.Y36(pn,9),y.Y36(ut,10),y.Y36(Xe,10),y.Y36(pe,10))},Qn.\u0275dir=y.lG2({type:Qn,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:["disabled","isDisabled"],model:["ngModel","model"],options:["ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],features:[y._Bn([Vt]),y.qOj,y.TTD]}),Qn.ctorParameters=function(){return[{type:pn,decorators:[{type:y.FiY},{type:y.AA_}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[ut]}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[Xe]}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[pe]}]}]},Qn.propDecorators={name:[{type:y.IIB}],isDisabled:[{type:y.IIB,args:["disabled"]}],model:[{type:y.IIB,args:["ngModel"]}],options:[{type:y.IIB,args:["ngModelOptions"]}],update:[{type:y.r_U,args:["ngModelChange"]}]}; +function Oi(oe,M){return[...M.path,oe]}function At(oe,M){sn(oe,M),M.valueAccessor.writeValue(oe.value),oe.disabled&&M.valueAccessor.setDisabledState?.(!0),function In(oe,M){M.valueAccessor.registerOnChange(X=>{oe._pendingValue=X,oe._pendingChange=!0,oe._pendingDirty=!0,"change"===oe.updateOn&&oi(oe,M)})}(oe,M),function ai(oe,M){const X=(it,$t)=>{M.valueAccessor.writeValue(it),$t&&M.viewToModelUpdate(it)};oe.registerOnChange(X),M._registerOnDestroy(()=>{oe._unregisterOnChange(X)})}(oe,M),function qn(oe,M){M.valueAccessor.registerOnTouched(()=>{oe._pendingTouched=!0,"blur"===oe.updateOn&&oe._pendingChange&&oi(oe,M),"submit"!==oe.updateOn&&oe.markAsTouched()})}(oe,M),function It(oe,M){if(M.valueAccessor.setDisabledState){const X=it=>{M.valueAccessor.setDisabledState(it)};oe.registerOnDisabledChange(X),M._registerOnDestroy(()=>{oe._unregisterOnDisabledChange(X)})}}(oe,M)}function ue(oe,M,X=!0){const it=()=>{};M.valueAccessor&&(M.valueAccessor.registerOnChange(it),M.valueAccessor.registerOnTouched(it)),yn(oe,M),oe&&(M._invokeOnDestroyCallbacks(),oe._registerOnCollectionChange(()=>{}))}function ze(oe,M){oe.forEach(X=>{X.registerOnValidatorChange&&X.registerOnValidatorChange(M)})}function sn(oe,M){const X=Rt(oe);null!==M.validator?oe.setValidators(Qt(X,M.validator)):"function"==typeof X&&oe.setValidators([X]);const it=_n(oe);null!==M.asyncValidator?oe.setAsyncValidators(Qt(it,M.asyncValidator)):"function"==typeof it&&oe.setAsyncValidators([it]);const $t=()=>oe.updateValueAndValidity();ze(M._rawValidators,$t),ze(M._rawAsyncValidators,$t)}function yn(oe,M){let X=!1;if(null!==oe){if(null!==M.validator){const $t=Rt(oe);if(Array.isArray($t)&&$t.length>0){const hi=$t.filter(Yr=>Yr!==M.validator);hi.length!==$t.length&&(X=!0,oe.setValidators(hi))}}if(null!==M.asyncValidator){const $t=_n(oe);if(Array.isArray($t)&&$t.length>0){const hi=$t.filter(Yr=>Yr!==M.asyncValidator);hi.length!==$t.length&&(X=!0,oe.setAsyncValidators(hi))}}}const it=()=>{};return ze(M._rawValidators,it),ze(M._rawAsyncValidators,it),X}function oi(oe,M){oe._pendingDirty&&oe.markAsDirty(),oe.setValue(oe._pendingValue,{emitModelToViewChange:!1}),M.viewToModelUpdate(oe._pendingValue),oe._pendingChange=!1}function Xi(oe,M){sn(oe,M)}function vr(oe,M){if(!oe.hasOwnProperty("model"))return!1;const X=oe.model;return!!X.isFirstChange()||!Object.is(M,X.currentValue)}function Ai(oe,M){oe._syncPendingControls(),M.forEach(X=>{const it=X.control;"submit"===it.updateOn&&it._pendingChange&&(X.viewToModelUpdate(it._pendingValue),it._pendingChange=!1)})}function Di(oe,M){if(!M)return null;let X,it,$t;return Array.isArray(M),M.forEach(hi=>{hi.constructor===Ne?X=hi:function Ri(oe){return Object.getPrototypeOf(oe.constructor)===K}(hi)?it=hi:$t=hi}),$t||it||X||null} /** * @license * Copyright Google LLC All Rights Reserved. @@ -2172,7 +2343,7 @@ var Vt={provide:Ct,useExisting:(0,y.Gpc)(function(){return Qn})},kn=Promise.reso * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var pr=(0,E.Z)(function O(){(0,F.Z)(this,O)});pr.\u0275fac=function(B){return new(B||pr)},pr.\u0275dir=y.lG2({type:pr,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""]}); +const Bn={provide:Et,useExisting:(0,t.Gpc)(()=>cr)},Dr=Promise.resolve();class cr extends Et{constructor(M,X){super(),this.submitted=!1,this._directives=new Set,this.ngSubmit=new t.vpe,this.form=new Vn({},Gt(M),Bt(X))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(M){Dr.then(()=>{const X=this._findContainer(M.path);M.control=X.registerControl(M.name,M.control),At(M.control,M),M.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(M)})}getControl(M){return this.form.get(M.path)}removeControl(M){Dr.then(()=>{const X=this._findContainer(M.path);X&&X.removeControl(M.name),this._directives.delete(M)})}addFormGroup(M){Dr.then(()=>{const X=this._findContainer(M.path),it=new Vn({});Xi(it,M),X.registerControl(M.name,it),it.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(M){Dr.then(()=>{const X=this._findContainer(M.path);X&&X.removeControl(M.name)})}getFormGroup(M){return this.form.get(M.path)}updateModel(M,X){Dr.then(()=>{this.form.get(M.path).setValue(X)})}setValue(M){this.control.setValue(M)}onSubmit(M){return this.submitted=!0,Ai(this.form,this._directives),this.ngSubmit.emit(M),"dialog"===M?.target?.method}onReset(){this.resetForm()}resetForm(M){this.form.reset(M),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(M){return M.pop(),M.length?this.form.get(M):this.form}} /** * @license * Copyright Google LLC All Rights Reserved. @@ -2180,23 +2351,21 @@ var pr=(0,E.Z)(function O(){(0,F.Z)(this,O)});pr.\u0275fac=function(B){return ne * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var zr={provide:pe,useExisting:(0,y.Gpc)(function(){return Cr}),multi:!0},Cr=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){return(0,F.Z)(this,N),B.apply(this,arguments)}return(0,E.Z)(N,[{key:"writeValue",value:function(oe){var Ve=null==oe?"":oe;this.setProperty("value",Ve)}},{key:"registerOnChange",value:function(oe){this.onChange=function(Ve){oe(""==Ve?null:parseFloat(Ve))}}}]),N}(ce);Cr.\u0275fac=function(){var O;return function(N){return(O||(O=y.n5z(Cr)))(N||Cr)}}(),Cr.\u0275dir=y.lG2({type:Cr,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(B,N){1&B&&y.NdJ("input",function(oe){return N.onChange(oe.target.value)})("blur",function(){return N.onTouched()})},features:[y._Bn([zr]),y.qOj]}); +function ko(oe,M){const X=oe.indexOf(M);X>-1&&oe.splice(X,1)} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var si={provide:pe,useExisting:(0,y.Gpc)(function(){return Sr}),multi:!0};var qn=(0,E.Z)(function O(){(0,F.Z)(this,O)});qn.\u0275fac=function(B){return new(B||qn)},qn.\u0275mod=y.oAB({type:qn}),qn.\u0275inj=y.cJS({});var lr=function(){function O(){(0,F.Z)(this,O),this._accessors=[]}return(0,E.Z)(O,[{key:"add",value:function(N,ie){this._accessors.push([N,ie])}},{key:"remove",value:function(N){for(var ie=this._accessors.length-1;ie>=0;--ie)if(this._accessors[ie][1]===N)return void this._accessors.splice(ie,1)}},{key:"select",value:function(N){var ie=this;this._accessors.forEach(function(oe){ie._isSameGroup(oe,N)&&oe[1]!==N&&oe[1].fireUncheck(N.value)})}},{key:"_isSameGroup",value:function(N,ie){return!!N[0].control&&(N[0]._parent===ie._control._parent&&N[1].name===ie.name)}}]),O}();lr.\u0275fac=function(B){return new(B||lr)},lr.\u0275prov=(0,y.Yz7)({factory:function(){return new lr},token:lr,providedIn:qn});var Sr=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe,Ve,Tt){var tn;return(0,F.Z)(this,N),(tn=B.call(this,ie,oe))._registry=Ve,tn._injector=Tt,tn.onChange=function(){},tn}return(0,E.Z)(N,[{key:"ngOnInit",value:function(){this._control=this._injector.get(Ct),this._checkName(),this._registry.add(this._control,this)}},{key:"ngOnDestroy",value:function(){this._registry.remove(this)}},{key:"writeValue",value:function(oe){this._state=oe===this.value,this.setProperty("checked",this._state)}},{key:"registerOnChange",value:function(oe){var Ve=this;this._fn=oe,this.onChange=function(){oe(Ve.value),Ve._registry.select(Ve)}}},{key:"fireUncheck",value:function(oe){this.writeValue(oe)}},{key:"_checkName",value:function(){this.name&&this.formControlName&&(this.name,this.formControlName),!this.name&&this.formControlName&&(this.name=this.formControlName)}}]),N}(ce);Sr.\u0275fac=function(B){return new(B||Sr)(y.Y36(y.Qsj),y.Y36(y.SBq),y.Y36(lr),y.Y36(y.zs3))},Sr.\u0275dir=y.lG2({type:Sr,selectors:[["input","type","radio","formControlName",""],["input","type","radio","formControl",""],["input","type","radio","ngModel",""]],hostBindings:function(B,N){1&B&&y.NdJ("change",function(){return N.onChange()})("blur",function(){return N.onTouched()})},inputs:{name:"name",formControlName:"formControlName",value:"value"},features:[y._Bn([si]),y.qOj]}),Sr.ctorParameters=function(){return[{type:y.Qsj},{type:y.SBq},{type:lr},{type:y.zs3}]},Sr.propDecorators={name:[{type:y.IIB}],formControlName:[{type:y.IIB}],value:[{type:y.IIB}]}; + */function gi(oe){return"object"==typeof oe&&null!==oe&&2===Object.keys(oe).length&&"value"in oe&&"disabled"in oe}cr.\u0275fac=function(M){return new(M||cr)(t.Y36(de,10),t.Y36(pe,10))},cr.\u0275dir=t.lG2({type:cr,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(M,X){1&M&&t.NdJ("submit",function($t){return X.onSubmit($t)})("reset",function(){return X.onReset()})},inputs:{options:["ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[t._Bn([Bn]),t.qOj]});const Si=class extends Un{constructor(M=null,X,it){super(vi(X),Ee(it,X)),this.defaultValue=null,this._onChange=[],this._pendingChange=!1,this._applyFormState(M),this._setUpdateStrategy(X),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),nt(X)&&(X.nonNullable||X.initialValueIsDefault)&&(gi(M)?this.defaultValue=M.value:this.defaultValue=M)}setValue(M,X={}){this.value=this._pendingValue=M,this._onChange.length&&!1!==X.emitModelToViewChange&&this._onChange.forEach(it=>it(this.value,!1!==X.emitViewToModelChange)),this.updateValueAndValidity(X)}patchValue(M,X={}){this.setValue(M,X)}reset(M=this.defaultValue,X={}){this._applyFormState(M),this.markAsPristine(X),this.markAsUntouched(X),this.setValue(this.value,X),this._pendingChange=!1}_updateValue(){}_anyControls(M){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(M){this._onChange.push(M)}_unregisterOnChange(M){ko(this._onChange,M)}registerOnDisabledChange(M){this._onDisabledChange.push(M)}_unregisterOnDisabledChange(M){ko(this._onDisabledChange,M)}_forEachChild(M){}_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(M){gi(M)?(this.value=this._pendingValue=M.value,M.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=M}}; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */ -var fi={provide:pe,useExisting:(0,y.Gpc)(function(){return Ur}),multi:!0},Ur=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){return(0,F.Z)(this,N),B.apply(this,arguments)}return(0,E.Z)(N,[{key:"writeValue",value:function(oe){this.setProperty("value",parseFloat(oe))}},{key:"registerOnChange",value:function(oe){this.onChange=function(Ve){oe(""==Ve?null:parseFloat(Ve))}}}]),N}(ce);Ur.\u0275fac=function(){var O;return function(N){return(O||(O=y.n5z(Ur)))(N||Ur)}}(),Ur.\u0275dir=y.lG2({type:Ur,selectors:[["input","type","range","formControlName",""],["input","type","range","formControl",""],["input","type","range","ngModel",""]],hostBindings:function(B,N){1&B&&y.NdJ("change",function(oe){return N.onChange(oe.target.value)})("input",function(oe){return N.onChange(oe.target.value)})("blur",function(){return N.onTouched()})},features:[y._Bn([fi]),y.qOj]}); + */class Wi extends Et{ngOnInit(){this._checkParentType(),this.formDirective.addFormGroup(this)}ngOnDestroy(){this.formDirective&&this.formDirective.removeFormGroup(this)}get control(){return this.formDirective.getFormGroup(this)}get path(){return Oi(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_checkParentType(){}}Wi.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(Wi)))(X||Wi)}}(),Wi.\u0275dir=t.lG2({type:Wi,features:[t.qOj]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2204,7 +2373,7 @@ var fi={provide:pe,useExisting:(0,y.Gpc)(function(){return Ur}),multi:!0},Ur=fun * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var ei=new y.OlP("NgModelWithFormControlWarning"),Br={provide:Ct,useExisting:(0,y.Gpc)(function(){return ti})},ti=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe,Ve,Tt){var tn;return(0,F.Z)(this,N),(tn=B.call(this))._ngModelWarningConfig=Tt,tn.update=new y.vpe,tn._ngModelWarningSent=!1,tn._setValidators(ie),tn._setAsyncValidators(oe),tn.valueAccessor=Pe((0,L.Z)(tn),Ve),tn}return(0,E.Z)(N,[{key:"isDisabled",set:function(oe){}},{key:"ngOnChanges",value:function(oe){if(this._isControlChanged(oe)){var Ve=oe.form.previousValue;Ve&&bn(Ve,this,!1),un(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})}oa(oe,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}},{key:"ngOnDestroy",value:function(){this.form&&bn(this.form,this,!1)}},{key:"path",get:function(){return[]}},{key:"control",get:function(){return this.form}},{key:"viewToModelUpdate",value:function(oe){this.viewModel=oe,this.update.emit(oe)}},{key:"_isControlChanged",value:function(oe){return oe.hasOwnProperty("form")}}]),N}(Ct);ti.\u0275fac=function(B){return new(B||ti)(y.Y36(ut,10),y.Y36(Xe,10),y.Y36(pe,10),y.Y36(ei,8))},ti.\u0275dir=y.lG2({type:ti,selectors:[["","formControl",""]],inputs:{isDisabled:["disabled","isDisabled"],form:["formControl","form"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],features:[y._Bn([Br]),y.qOj,y.TTD]}),ti._ngModelWarningSentOnce=!1,ti.ctorParameters=function(){return[{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[ut]}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[Xe]}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[pe]}]},{type:String,decorators:[{type:y.FiY},{type:y.tBr,args:[ei]}]}]},ti.propDecorators={form:[{type:y.IIB,args:["formControl"]}],isDisabled:[{type:y.IIB,args:["disabled"]}],model:[{type:y.IIB,args:["ngModel"]}],update:[{type:y.r_U,args:["ngModelChange"]}]}; +const $r={provide:Et,useExisting:(0,t.Gpc)(()=>Mo)};class Mo extends Wi{constructor(M,X,it){super(),this._parent=M,this._setValidators(X),this._setAsyncValidators(it)}_checkParentType(){!(this._parent instanceof Mo)&&this._parent}}Mo.\u0275fac=function(M){return new(M||Mo)(t.Y36(Et,5),t.Y36(de,10),t.Y36(pe,10))},Mo.\u0275dir=t.lG2({type:Mo,selectors:[["","ngModelGroup",""]],inputs:{name:["ngModelGroup","name"]},exportAs:["ngModelGroup"],features:[t._Bn([$r]),t.qOj]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2212,7 +2381,7 @@ var ei=new y.OlP("NgModelWithFormControlWarning"),Br={provide:Ct,useExisting:(0, * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Pi={provide:pn,useExisting:(0,y.Gpc)(function(){return Vn})},Vn=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe){var Ve;return(0,F.Z)(this,N),(Ve=B.call(this)).validators=ie,Ve.asyncValidators=oe,Ve.submitted=!1,Ve._onCollectionChange=function(){return Ve._updateDomValue()},Ve.directives=[],Ve.form=null,Ve.ngSubmit=new y.vpe,Ve._setValidators(ie),Ve._setAsyncValidators(oe),Ve}return(0,E.Z)(N,[{key:"ngOnChanges",value:function(oe){this._checkFormPresent(),oe.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}},{key:"ngOnDestroy",value:function(){this.form&&(Fn(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(function(){}))}},{key:"formDirective",get:function(){return this}},{key:"control",get:function(){return this.form}},{key:"path",get:function(){return[]}},{key:"addControl",value:function(oe){var Ve=this.form.get(oe.path);return un(Ve,oe),Ve.updateValueAndValidity({emitEvent:!1}),this.directives.push(oe),Ve}},{key:"getControl",value:function(oe){return this.form.get(oe.path)}},{key:"removeControl",value:function(oe){bn(oe.control||null,oe,!1),Qe(this.directives,oe)}},{key:"addFormGroup",value:function(oe){this._setUpFormContainer(oe)}},{key:"removeFormGroup",value:function(oe){this._cleanUpFormContainer(oe)}},{key:"getFormGroup",value:function(oe){return this.form.get(oe.path)}},{key:"addFormArray",value:function(oe){this._setUpFormContainer(oe)}},{key:"removeFormArray",value:function(oe){this._cleanUpFormContainer(oe)}},{key:"getFormArray",value:function(oe){return this.form.get(oe.path)}},{key:"updateModel",value:function(oe,Ve){this.form.get(oe.path).setValue(Ve)}},{key:"onSubmit",value:function(oe){return this.submitted=!0,We(this.form,this.directives),this.ngSubmit.emit(oe),!1}},{key:"onReset",value:function(){this.resetForm()}},{key:"resetForm",value:function(){var oe=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0;this.form.reset(oe),this.submitted=!1}},{key:"_updateDomValue",value:function(){var oe=this;this.directives.forEach(function(Ve){var Tt=Ve.control,tn=oe.form.get(Ve.path);Tt!==tn&&(bn(Tt||null,Ve),tn instanceof Yn&&(un(tn,Ve),Ve.control=tn))}),this.form._updateTreeValidity({emitEvent:!1})}},{key:"_setUpFormContainer",value:function(oe){var Ve=this.form.get(oe.path);Dr(Ve,oe),Ve.updateValueAndValidity({emitEvent:!1})}},{key:"_cleanUpFormContainer",value:function(oe){if(this.form){var Ve=this.form.get(oe.path);if(Ve){var Tt=function(O,B){return Fn(O,B)}(Ve,oe);Tt&&Ve.updateValueAndValidity({emitEvent:!1})}}}},{key:"_updateRegistrations",value:function(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(function(){})}},{key:"_updateValidators",value:function(){ir(this.form,this),this._oldForm&&Fn(this._oldForm,this)}},{key:"_checkFormPresent",value:function(){this.form}}]),N}(pn);Vn.\u0275fac=function(B){return new(B||Vn)(y.Y36(ut,10),y.Y36(Xe,10))},Vn.\u0275dir=y.lG2({type:Vn,selectors:[["","formGroup",""]],hostBindings:function(B,N){1&B&&y.NdJ("submit",function(oe){return N.onSubmit(oe)})("reset",function(){return N.onReset()})},inputs:{form:["formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[y._Bn([Pi]),y.qOj,y.TTD]}),Vn.ctorParameters=function(){return[{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[ut]}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[Xe]}]}]},Vn.propDecorators={form:[{type:y.IIB,args:["formGroup"]}],ngSubmit:[{type:y.r_U}]}; +const Wr={provide:at,useExisting:(0,t.Gpc)(()=>Pr)},dr=Promise.resolve();class Pr extends at{constructor(M,X,it,$t,hi){super(),this._changeDetectorRef=hi,this.control=new Si,this._registered=!1,this.update=new t.vpe,this._parent=M,this._setValidators(X),this._setAsyncValidators(it),this.valueAccessor=Di(0,$t)}ngOnChanges(M){if(this._checkForErrors(),!this._registered||"name"in M){if(this._registered&&(this._checkName(),this.formDirective)){const X=M.name.previousValue;this.formDirective.removeControl({name:X,path:this._getPath(X)})}this._setUpControl()}"isDisabled"in M&&this._updateDisabled(M),vr(M,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(M){this.viewModel=M,this.update.emit(M)}_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(){At(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),!this._isStandalone()&&this.name}_updateValue(M){dr.then(()=>{this.control.setValue(M,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(M){const X=M.isDisabled.currentValue,it=0!==X&&(0,t.D6c)(X);dr.then(()=>{it&&!this.control.disabled?this.control.disable():!it&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(M){return this._parent?Oi(M,this._parent):[M]}}Pr.\u0275fac=function(M){return new(M||Pr)(t.Y36(Et,9),t.Y36(de,10),t.Y36(pe,10),t.Y36($,10),t.Y36(t.sBO,8))},Pr.\u0275dir=t.lG2({type:Pr,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:["disabled","isDisabled"],model:["ngModel","model"],options:["ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],features:[t._Bn([Wr]),t.qOj,t.TTD]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2220,14 +2389,15 @@ var Pi={provide:pn,useExisting:(0,y.Gpc)(function(){return Vn})},Vn=function(O){ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Ui={provide:pn,useExisting:(0,y.Gpc)(function(){return ni})},ni=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe,Ve){var Tt;return(0,F.Z)(this,N),(Tt=B.call(this))._parent=ie,Tt._setValidators(oe),Tt._setAsyncValidators(Ve),Tt}return(0,E.Z)(N,[{key:"_checkParentType",value:function(){Wi(this._parent)}}]),N}(Er);ni.\u0275fac=function(B){return new(B||ni)(y.Y36(pn,13),y.Y36(ut,10),y.Y36(Xe,10))},ni.\u0275dir=y.lG2({type:ni,selectors:[["","formGroupName",""]],inputs:{name:["formGroupName","name"]},features:[y._Bn([Ui]),y.qOj]}),ni.ctorParameters=function(){return[{type:pn,decorators:[{type:y.FiY},{type:y.AA_},{type:y.tp0}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[ut]}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[Xe]}]}]},ni.propDecorators={name:[{type:y.IIB,args:["formGroupName"]}]};var No={provide:pn,useExisting:(0,y.Gpc)(function(){return In})},In=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe,Ve){var Tt;return(0,F.Z)(this,N),(Tt=B.call(this))._parent=ie,Tt._setValidators(oe),Tt._setAsyncValidators(Ve),Tt}return(0,E.Z)(N,[{key:"ngOnInit",value:function(){this._checkParentType(),this.formDirective.addFormArray(this)}},{key:"ngOnDestroy",value:function(){this.formDirective&&this.formDirective.removeFormArray(this)}},{key:"control",get:function(){return this.formDirective.getFormArray(this)}},{key:"formDirective",get:function(){return this._parent?this._parent.formDirective:null}},{key:"path",get:function(){return Gt(null==this.name?this.name:this.name.toString(),this._parent)}},{key:"_checkParentType",value:function(){Wi(this._parent)}}]),N}(pn);function Wi(O){return!(O instanceof ni||O instanceof Vn||O instanceof In)} +class or{}or.\u0275fac=function(M){return new(M||or)},or.\u0275dir=t.lG2({type:or,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""]}); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */In.\u0275fac=function(B){return new(B||In)(y.Y36(pn,13),y.Y36(ut,10),y.Y36(Xe,10))},In.\u0275dir=y.lG2({type:In,selectors:[["","formArrayName",""]],inputs:{name:["formArrayName","name"]},features:[y._Bn([No]),y.qOj]}),In.ctorParameters=function(){return[{type:pn,decorators:[{type:y.FiY},{type:y.AA_},{type:y.tp0}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[ut]}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[Xe]}]}]},In.propDecorators={name:[{type:y.IIB,args:["formArrayName"]}]};var Ca={provide:Ct,useExisting:(0,y.Gpc)(function(){return rr})},rr=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(ie,oe,Ve,Tt,tn){var Un;return(0,F.Z)(this,N),(Un=B.call(this))._ngModelWarningConfig=tn,Un._added=!1,Un.update=new y.vpe,Un._ngModelWarningSent=!1,Un._parent=ie,Un._setValidators(oe),Un._setAsyncValidators(Ve),Un.valueAccessor=Pe((0,L.Z)(Un),Tt),Un}return(0,E.Z)(N,[{key:"isDisabled",set:function(oe){}},{key:"ngOnChanges",value:function(oe){this._added||this._setUpControl(),oa(oe,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}},{key:"ngOnDestroy",value:function(){this.formDirective&&this.formDirective.removeControl(this)}},{key:"viewToModelUpdate",value:function(oe){this.viewModel=oe,this.update.emit(oe)}},{key:"path",get:function(){return Gt(null==this.name?this.name:this.name.toString(),this._parent)}},{key:"formDirective",get:function(){return this._parent?this._parent.formDirective:null}},{key:"_checkParentType",value:function(){}},{key:"_setUpControl",value:function(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}}]),N}(Ct);rr.\u0275fac=function(B){return new(B||rr)(y.Y36(pn,13),y.Y36(ut,10),y.Y36(Xe,10),y.Y36(pe,10),y.Y36(ei,8))},rr.\u0275dir=y.lG2({type:rr,selectors:[["","formControlName",""]],inputs:{isDisabled:["disabled","isDisabled"],name:["formControlName","name"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},features:[y._Bn([Ca]),y.qOj,y.TTD]}),rr._ngModelWarningSentOnce=!1,rr.ctorParameters=function(){return[{type:pn,decorators:[{type:y.FiY},{type:y.AA_},{type:y.tp0}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[ut]}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[Xe]}]},{type:Array,decorators:[{type:y.FiY},{type:y.PiD},{type:y.tBr,args:[pe]}]},{type:String,decorators:[{type:y.FiY},{type:y.tBr,args:[ei]}]}]},rr.propDecorators={name:[{type:y.IIB,args:["formControlName"]}],isDisabled:[{type:y.IIB,args:["disabled"]}],model:[{type:y.IIB,args:["ngModel"]}],update:[{type:y.r_U,args:["ngModelChange"]}]}; + */ +const fr={provide:$,useExisting:(0,t.Gpc)(()=>er),multi:!0};class er extends K{writeValue(M){const X=M??"";this.setProperty("value",X)}registerOnChange(M){this.onChange=X=>{M(""==X?null:parseFloat(X))}}}er.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(er)))(X||er)}}(),er.\u0275dir=t.lG2({type:er,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(M,X){1&M&&t.NdJ("input",function($t){return X.onChange($t.target.value)})("blur",function(){return X.onTouched()})},features:[t._Bn([fr]),t.qOj]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2235,7 +2405,7 @@ var Ui={provide:pn,useExisting:(0,y.Gpc)(function(){return ni})},ni=function(O){ * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var ea={provide:pe,useExisting:(0,y.Gpc)(function(){return pi}),multi:!0};function hr(O,B){return null==O?"".concat(B):(B&&"object"==typeof B&&(B="Object"),"".concat(O,": ").concat(B).slice(0,50))}var pi=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){var ie;return(0,F.Z)(this,N),(ie=B.apply(this,arguments))._optionMap=new Map,ie._idCounter=0,ie._compareWith=Object.is,ie}return(0,E.Z)(N,[{key:"compareWith",set:function(oe){this._compareWith=oe}},{key:"writeValue",value:function(oe){this.value=oe;var Ve=this._getOptionId(oe);null==Ve&&this.setProperty("selectedIndex",-1);var Tt=hr(Ve,oe);this.setProperty("value",Tt)}},{key:"registerOnChange",value:function(oe){var Ve=this;this.onChange=function(Tt){Ve.value=Ve._getOptionValue(Tt),oe(Ve.value)}}},{key:"_registerOption",value:function(){return(this._idCounter++).toString()}},{key:"_getOptionId",value:function(oe){for(var Ve=0,Tt=Array.from(this._optionMap.keys());Veyr),multi:!0};class eo{}eo.\u0275fac=function(M){return new(M||eo)},eo.\u0275mod=t.oAB({type:eo}),eo.\u0275inj=t.cJS({});class wo{constructor(){this._accessors=[]}add(M,X){this._accessors.push([M,X])}remove(M){for(let X=this._accessors.length-1;X>=0;--X)if(this._accessors[X][1]===M)return void this._accessors.splice(X,1)}select(M){this._accessors.forEach(X=>{this._isSameGroup(X,M)&&X[1]!==M&&X[1].fireUncheck(M.value)})}_isSameGroup(M,X){return!!M[0].control&&(M[0]._parent===X._control._parent&&M[1].name===X.name)}}wo.\u0275fac=function(M){return new(M||wo)},wo.\u0275prov=t.Yz7({token:wo,factory:wo.\u0275fac,providedIn:eo});class yr extends K{constructor(M,X,it,$t){super(M,X),this._registry=it,this._injector=$t,this.onChange=()=>{}}ngOnInit(){this._control=this._injector.get(at),this._checkName(),this._registry.add(this._control,this)}ngOnDestroy(){this._registry.remove(this)}writeValue(M){this._state=M===this.value,this.setProperty("checked",this._state)}registerOnChange(M){this._fn=M,this.onChange=()=>{M(this.value),this._registry.select(this)}}fireUncheck(M){this.writeValue(M)}_checkName(){this.name&&this.formControlName&&(this.name,this.formControlName),!this.name&&this.formControlName&&(this.name=this.formControlName)}}yr.\u0275fac=function(M){return new(M||yr)(t.Y36(t.Qsj),t.Y36(t.SBq),t.Y36(wo),t.Y36(t.zs3))},yr.\u0275dir=t.lG2({type:yr,selectors:[["input","type","radio","formControlName",""],["input","type","radio","formControl",""],["input","type","radio","ngModel",""]],hostBindings:function(M,X){1&M&&t.NdJ("change",function(){return X.onChange()})("blur",function(){return X.onTouched()})},inputs:{name:"name",formControlName:"formControlName",value:"value"},features:[t._Bn([Or]),t.qOj]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2243,7 +2413,7 @@ var ea={provide:pe,useExisting:(0,y.Gpc)(function(){return pi}),multi:!0};functi * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var qa={provide:pe,useExisting:(0,y.Gpc)(function(){return Bn}),multi:!0};function ta(O,B){return null==O?"".concat(B):("string"==typeof B&&(B="'".concat(B,"'")),B&&"object"==typeof B&&(B="Object"),"".concat(O,": ").concat(B).slice(0,50))}var Bn=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){var ie;return(0,F.Z)(this,N),(ie=B.apply(this,arguments))._optionMap=new Map,ie._idCounter=0,ie._compareWith=Object.is,ie}return(0,E.Z)(N,[{key:"compareWith",set:function(oe){this._compareWith=oe}},{key:"writeValue",value:function(oe){var Tt,Ve=this;if(this.value=oe,Array.isArray(oe)){var tn=oe.map(function(Un){return Ve._getOptionId(Un)});Tt=function(jr,bi){jr._setSelected(tn.indexOf(bi.toString())>-1)}}else Tt=function(jr,bi){jr._setSelected(!1)};this._optionMap.forEach(Tt)}},{key:"registerOnChange",value:function(oe){var Ve=this;this.onChange=function(Tt){var tn=[];if(void 0!==Tt.selectedOptions)for(var Un=Tt.selectedOptions,jr=0;jrJo),multi:!0};class Jo extends K{writeValue(M){this.setProperty("value",parseFloat(M))}registerOnChange(M){this.onChange=X=>{M(""==X?null:parseFloat(X))}}}Jo.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(Jo)))(X||Jo)}}(),Jo.\u0275dir=t.lG2({type:Jo,selectors:[["input","type","range","formControlName",""],["input","type","range","formControl",""],["input","type","range","ngModel",""]],hostBindings:function(M,X){1&M&&t.NdJ("change",function($t){return X.onChange($t.target.value)})("input",function($t){return X.onChange($t.target.value)})("blur",function(){return X.onTouched()})},features:[t._Bn([bi]),t.qOj]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2251,7 +2421,7 @@ var qa={provide:pe,useExisting:(0,y.Gpc)(function(){return Bn}),multi:!0};functi * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function ki(O){return"number"==typeof O?O:parseInt(O,10)}ja.\u0275fac=function(B){return new(B||ja)(y.Y36(y.SBq),y.Y36(y.Qsj),y.Y36(Bn,9))},ja.\u0275dir=y.lG2({type:ja,selectors:[["option"]],inputs:{ngValue:"ngValue",value:"value"}}),ja.ctorParameters=function(){return[{type:y.SBq},{type:y.Qsj},{type:Bn,decorators:[{type:y.FiY},{type:y.AA_}]}]},ja.propDecorators={ngValue:[{type:y.IIB,args:["ngValue"]}],value:[{type:y.IIB,args:["value"]}]};var Hn=function(){function O(){(0,F.Z)(this,O),this._validator=ot}return(0,E.Z)(O,[{key:"handleChanges",value:function(N){if(this.inputName in N){var ie=this.normalizeInput(N[this.inputName].currentValue);this._validator=this.createValidator(ie),this._onChange&&this._onChange()}}},{key:"validate",value:function(N){return this._validator(N)}},{key:"registerOnValidatorChange",value:function(N){this._onChange=N}}]),O}();Hn.\u0275fac=function(B){return new(B||Hn)},Hn.\u0275dir=y.lG2({type:Hn});var qi={provide:ut,useExisting:(0,y.Gpc)(function(){return ri}),multi:!0},ri=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){var ie;return(0,F.Z)(this,N),(ie=B.apply(this,arguments)).inputName="max",ie.normalizeInput=function(oe){return parseFloat(oe)},ie.createValidator=function(oe){return Se(oe)},ie}return(0,E.Z)(N,[{key:"ngOnChanges",value:function(oe){this.handleChanges(oe)}}]),N}(Hn);ri.\u0275fac=function(){var O;return function(N){return(O||(O=y.n5z(ri)))(N||ri)}}(),ri.\u0275dir=y.lG2({type:ri,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(B,N){var ie;2&B&&y.uIk("max",null!==(ie=N.max)&&void 0!==ie?ie:null)},inputs:{max:"max"},features:[y._Bn([qi]),y.qOj,y.TTD]}),ri.propDecorators={max:[{type:y.IIB}]};var _o={provide:ut,useExisting:(0,y.Gpc)(function(){return ii}),multi:!0},ii=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){var ie;return(0,F.Z)(this,N),(ie=B.apply(this,arguments)).inputName="min",ie.normalizeInput=function(oe){return parseFloat(oe)},ie.createValidator=function(oe){return U(oe)},ie}return(0,E.Z)(N,[{key:"ngOnChanges",value:function(oe){this.handleChanges(oe)}}]),N}(Hn);ii.\u0275fac=function(){var O;return function(N){return(O||(O=y.n5z(ii)))(N||ii)}}(),ii.\u0275dir=y.lG2({type:ii,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(B,N){var ie;2&B&&y.uIk("min",null!==(ie=N.min)&&void 0!==ie?ie:null)},inputs:{min:"min"},features:[y._Bn([_o]),y.qOj,y.TTD]}),ii.propDecorators={min:[{type:y.IIB}]};var Cs={provide:ut,useExisting:(0,y.Gpc)(function(){return Za}),multi:!0},la={provide:ut,useExisting:(0,y.Gpc)(function(){return ao}),multi:!0},Za=function(){function O(){(0,F.Z)(this,O),this._required=!1}return(0,E.Z)(O,[{key:"required",get:function(){return this._required},set:function(N){this._required=null!=N&&!1!==N&&"false"!=="".concat(N),this._onChange&&this._onChange()}},{key:"validate",value:function(N){return this.required?function(O){return Ke(O.value)?{required:!0}:null}(N):null}},{key:"registerOnValidatorChange",value:function(N){this._onChange=N}}]),O}();Za.\u0275fac=function(B){return new(B||Za)},Za.\u0275dir=y.lG2({type:Za,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(B,N){2&B&&y.uIk("required",N.required?"":null)},inputs:{required:"required"},features:[y._Bn([Cs])]}),Za.propDecorators={required:[{type:y.IIB}]};var ao=function(O){(0,R.Z)(N,O);var B=(0,V.Z)(N);function N(){return(0,F.Z)(this,N),B.apply(this,arguments)}return(0,E.Z)(N,[{key:"validate",value:function(oe){return this.required?function(O){return!0===O.value?null:{required:!0}}(oe):null}}]),N}(Za);ao.\u0275fac=function(){var O;return function(N){return(O||(O=y.n5z(ao)))(N||ao)}}(),ao.\u0275dir=y.lG2({type:ao,selectors:[["input","type","checkbox","required","","formControlName",""],["input","type","checkbox","required","","formControl",""],["input","type","checkbox","required","","ngModel",""]],hostVars:1,hostBindings:function(B,N){2&B&&y.uIk("required",N.required?"":null)},features:[y._Bn([la]),y.qOj]});var bs={provide:ut,useExisting:(0,y.Gpc)(function(){return za}),multi:!0},za=function(){function O(){(0,F.Z)(this,O),this._enabled=!1}return(0,E.Z)(O,[{key:"email",set:function(N){this._enabled=""===N||!0===N||"true"===N,this._onChange&&this._onChange()}},{key:"validate",value:function(N){return this._enabled?function(O){return Ke(O.value)||A.test(O.value)?null:{email:!0}}(N):null}},{key:"registerOnValidatorChange",value:function(N){this._onChange=N}}]),O}();za.\u0275fac=function(B){return new(B||za)},za.\u0275dir=y.lG2({type:za,selectors:[["","email","","formControlName",""],["","email","","formControl",""],["","email","","ngModel",""]],inputs:{email:"email"},features:[y._Bn([bs])]}),za.propDecorators={email:[{type:y.IIB}]};var Ko={provide:ut,useExisting:(0,y.Gpc)(function(){return Ia}),multi:!0},Ia=function(){function O(){(0,F.Z)(this,O),this._validator=ot}return(0,E.Z)(O,[{key:"ngOnChanges",value:function(N){"minlength"in N&&(this._createValidator(),this._onChange&&this._onChange())}},{key:"validate",value:function(N){return this.enabled()?this._validator(N):null}},{key:"registerOnValidatorChange",value:function(N){this._onChange=N}},{key:"_createValidator",value:function(){this._validator=this.enabled()?function(O){return function(B){return Ke(B.value)||!Ze(B.value)?null:B.value.lengthO?{maxlength:{requiredLength:O,actualLength:B.value.length}}:null}}(ki(this.maxlength)):ot}},{key:"enabled",value:function(){return null!=this.maxlength}}]),O}();Ma.\u0275fac=function(B){return new(B||Ma)},Ma.\u0275dir=y.lG2({type:Ma,selectors:[["","maxlength","","formControlName",""],["","maxlength","","formControl",""],["","maxlength","","ngModel",""]],hostVars:1,hostBindings:function(B,N){2&B&&y.uIk("maxlength",N.enabled()?N.maxlength:null)},inputs:{maxlength:"maxlength"},features:[y._Bn([ua]),y.TTD]}),Ma.propDecorators={maxlength:[{type:y.IIB}]};var yo={provide:ut,useExisting:(0,y.Gpc)(function(){return Da}),multi:!0},Da=function(){function O(){(0,F.Z)(this,O),this._validator=ot}return(0,E.Z)(O,[{key:"ngOnChanges",value:function(N){"pattern"in N&&(this._createValidator(),this._onChange&&this._onChange())}},{key:"validate",value:function(N){return this._validator(N)}},{key:"registerOnValidatorChange",value:function(N){this._onChange=N}},{key:"_createValidator",value:function(){this._validator=function(O){return O?("string"==typeof O?(N="","^"!==O.charAt(0)&&(N+="^"),N+=O,"$"!==O.charAt(O.length-1)&&(N+="$"),B=new RegExp(N)):(N=O.toString(),B=O),function(ie){if(Ke(ie.value))return null;var oe=ie.value;return B.test(oe)?null:{pattern:{requiredPattern:N,actualValue:oe}}}):ot;var B,N}(this.pattern)}}]),O}();Da.\u0275fac=function(B){return new(B||Da)},Da.\u0275dir=y.lG2({type:Da,selectors:[["","pattern","","formControlName",""],["","pattern","","formControl",""],["","pattern","","ngModel",""]],hostVars:1,hostBindings:function(B,N){2&B&&y.uIk("pattern",N.pattern?N.pattern:null)},inputs:{pattern:"pattern"},features:[y._Bn([yo]),y.TTD]}),Da.propDecorators={pattern:[{type:y.IIB}]}; +const Tn=new t.OlP("NgModelWithFormControlWarning"),qr={provide:at,useExisting:(0,t.Gpc)(()=>$o)};class $o extends at{constructor(M,X,it,$t){super(),this._ngModelWarningConfig=$t,this.update=new t.vpe,this._ngModelWarningSent=!1,this._setValidators(M),this._setAsyncValidators(X),this.valueAccessor=Di(0,it)}set isDisabled(M){}ngOnChanges(M){if(this._isControlChanged(M)){const X=M.form.previousValue;X&&ue(X,this,!1),At(this.form,this),this.form.updateValueAndValidity({emitEvent:!1})}vr(M,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&ue(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(M){this.viewModel=M,this.update.emit(M)}_isControlChanged(M){return M.hasOwnProperty("form")}}$o._ngModelWarningSentOnce=!1,$o.\u0275fac=function(M){return new(M||$o)(t.Y36(de,10),t.Y36(pe,10),t.Y36($,10),t.Y36(Tn,8))},$o.\u0275dir=t.lG2({type:$o,selectors:[["","formControl",""]],inputs:{form:["formControl","form"],isDisabled:["disabled","isDisabled"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],features:[t._Bn([qr]),t.qOj,t.TTD]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2259,7 +2429,7 @@ function ki(O){return"number"==typeof O?O:parseInt(O,10)}ja.\u0275fac=function(B * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Pr=(0,E.Z)(function O(){(0,F.Z)(this,O)});Pr.\u0275fac=function(B){return new(B||Pr)},Pr.\u0275mod=y.oAB({type:Pr}),Pr.\u0275inj=y.cJS({imports:[[qn]]}); +const Ii={provide:Et,useExisting:(0,t.Gpc)(()=>Fo)};class Fo extends Et{constructor(M,X){super(),this.submitted=!1,this._onCollectionChange=()=>this._updateDomValue(),this.directives=[],this.form=null,this.ngSubmit=new t.vpe,this._setValidators(M),this._setAsyncValidators(X)}ngOnChanges(M){this._checkFormPresent(),M.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(yn(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(M){const X=this.form.get(M.path);return At(X,M),X.updateValueAndValidity({emitEvent:!1}),this.directives.push(M),X}getControl(M){return this.form.get(M.path)}removeControl(M){ue(M.control||null,M,!1),function ro(oe,M){const X=oe.indexOf(M);X>-1&&oe.splice(X,1)}(this.directives,M)}addFormGroup(M){this._setUpFormContainer(M)}removeFormGroup(M){this._cleanUpFormContainer(M)}getFormGroup(M){return this.form.get(M.path)}addFormArray(M){this._setUpFormContainer(M)}removeFormArray(M){this._cleanUpFormContainer(M)}getFormArray(M){return this.form.get(M.path)}updateModel(M,X){this.form.get(M.path).setValue(X)}onSubmit(M){return this.submitted=!0,Ai(this.form,this.directives),this.ngSubmit.emit(M),"dialog"===M?.target?.method}onReset(){this.resetForm()}resetForm(M){this.form.reset(M),this.submitted=!1}_updateDomValue(){this.directives.forEach(M=>{const X=M.control,it=this.form.get(M.path);X!==it&&(ue(X||null,M),it instanceof Si&&(At(it,M),M.control=it))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(M){const X=this.form.get(M.path);Xi(X,M),X.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(M){if(this.form){const X=this.form.get(M.path);X&&function ur(oe,M){return yn(oe,M)}(X,M)&&X.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){sn(this.form,this),this._oldForm&&yn(this._oldForm,this)}_checkFormPresent(){this.form}}Fo.\u0275fac=function(M){return new(M||Fo)(t.Y36(de,10),t.Y36(pe,10))},Fo.\u0275dir=t.lG2({type:Fo,selectors:[["","formGroup",""]],hostBindings:function(M,X){1&M&&t.NdJ("submit",function($t){return X.onSubmit($t)})("reset",function(){return X.onReset()})},inputs:{form:["formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[t._Bn([Ii]),t.qOj,t.TTD]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2267,7 +2437,14 @@ var Pr=(0,E.Z)(function O(){(0,F.Z)(this,O)});Pr.\u0275fac=function(B){return ne * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -var Va=(0,E.Z)(function O(){(0,F.Z)(this,O)});Va.\u0275fac=function(B){return new(B||Va)},Va.\u0275mod=y.oAB({type:Va}),Va.\u0275inj=y.cJS({imports:[Pr]});var z=function(){function O(){(0,F.Z)(this,O)}return(0,E.Z)(O,null,[{key:"withConfig",value:function(N){return{ngModule:O,providers:[{provide:ei,useValue:N.warnOnNgModelWithFormControl}]}}}]),O}(); +const xo={provide:Et,useExisting:(0,t.Gpc)(()=>pr)};class pr extends Wi{constructor(M,X,it){super(),this._parent=M,this._setValidators(X),this._setAsyncValidators(it)}_checkParentType(){oo(this._parent)}}pr.\u0275fac=function(M){return new(M||pr)(t.Y36(Et,13),t.Y36(de,10),t.Y36(pe,10))},pr.\u0275dir=t.lG2({type:pr,selectors:[["","formGroupName",""]],inputs:{name:["formGroupName","name"]},features:[t._Bn([xo]),t.qOj]});const qo={provide:Et,useExisting:(0,t.Gpc)(()=>Xo)};class Xo extends Et{constructor(M,X,it){super(),this._parent=M,this._setValidators(X),this._setAsyncValidators(it)}ngOnInit(){this._checkParentType(),this.formDirective.addFormArray(this)}ngOnDestroy(){this.formDirective&&this.formDirective.removeFormArray(this)}get control(){return this.formDirective.getFormArray(this)}get formDirective(){return this._parent?this._parent.formDirective:null}get path(){return Oi(null==this.name?this.name:this.name.toString(),this._parent)}_checkParentType(){oo(this._parent)}}function oo(oe){return!(oe instanceof pr||oe instanceof Fo||oe instanceof Xo)} +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */Xo.\u0275fac=function(M){return new(M||Xo)(t.Y36(Et,13),t.Y36(de,10),t.Y36(pe,10))},Xo.\u0275dir=t.lG2({type:Xo,selectors:[["","formArrayName",""]],inputs:{name:["formArrayName","name"]},features:[t._Bn([qo]),t.qOj]});const Bo={provide:at,useExisting:(0,t.Gpc)(()=>Br)};class Br extends at{constructor(M,X,it,$t,hi){super(),this._ngModelWarningConfig=hi,this._added=!1,this.update=new t.vpe,this._ngModelWarningSent=!1,this._parent=M,this._setValidators(X),this._setAsyncValidators(it),this.valueAccessor=Di(0,$t)}set isDisabled(M){}ngOnChanges(M){this._added||this._setUpControl(),vr(M,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(M){this.viewModel=M,this.update.emit(M)}get path(){return Oi(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}}Br._ngModelWarningSentOnce=!1,Br.\u0275fac=function(M){return new(M||Br)(t.Y36(Et,13),t.Y36(de,10),t.Y36(pe,10),t.Y36($,10),t.Y36(Tn,8))},Br.\u0275dir=t.lG2({type:Br,selectors:[["","formControlName",""]],inputs:{name:["formControlName","name"],isDisabled:["disabled","isDisabled"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},features:[t._Bn([Bo]),t.qOj,t.TTD]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2275,7 +2452,7 @@ var Va=(0,E.Z)(function O(){(0,F.Z)(this,O)});Va.\u0275fac=function(B){return ne * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function J(O){return void 0!==O.asyncValidators||void 0!==O.validators||void 0!==O.updateOn}z.\u0275fac=function(B){return new(B||z)},z.\u0275mod=y.oAB({type:z}),z.\u0275inj=y.cJS({imports:[Pr]});var le=function(){function O(){(0,F.Z)(this,O)}return(0,E.Z)(O,[{key:"group",value:function(N){var ie=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,oe=this._reduceControls(N),Ve=null,Tt=null,tn=void 0;return null!=ie&&(J(ie)?(Ve=null!=ie.validators?ie.validators:null,Tt=null!=ie.asyncValidators?ie.asyncValidators:null,tn=null!=ie.updateOn?ie.updateOn:void 0):(Ve=null!=ie.validator?ie.validator:null,Tt=null!=ie.asyncValidator?ie.asyncValidator:null)),new qr(oe,{asyncValidators:Tt,updateOn:tn,validators:Ve})}},{key:"control",value:function(N,ie,oe){return new Yn(N,ie,oe)}},{key:"array",value:function(N,ie,oe){var Ve=this,Tt=N.map(function(tn){return Ve._createControl(tn)});return new ya(Tt,ie,oe)}},{key:"_reduceControls",value:function(N){var ie=this,oe={};return Object.keys(N).forEach(function(Ve){oe[Ve]=ie._createControl(N[Ve])}),oe}},{key:"_createControl",value:function(N){if(N instanceof Yn||N instanceof qr||N instanceof ya)return N;if(Array.isArray(N)){var ie=N[0],oe=N.length>1?N[1]:null,Ve=N.length>2?N[2]:null;return this.control(ie,oe,Ve)}return this.control(N)}}]),O}();le.\u0275fac=function(B){return new(B||le)},le.\u0275prov=(0,y.Yz7)({factory:function(){return new le},token:le,providedIn:z}); +const ao={provide:$,useExisting:(0,t.Gpc)(()=>Ar),multi:!0};function ti(oe,M){return null==oe?`${M}`:(M&&"object"==typeof M&&(M="Object"),`${oe}: ${M}`.slice(0,50))}class Ar extends K{constructor(){super(...arguments),this._optionMap=new Map,this._idCounter=0,this._compareWith=Object.is}set compareWith(M){this._compareWith=M}writeValue(M){this.value=M;const it=ti(this._getOptionId(M),M);this.setProperty("value",it)}registerOnChange(M){this.onChange=X=>{this.value=this._getOptionValue(X),M(this.value)}}_registerOption(){return(this._idCounter++).toString()}_getOptionId(M){for(const X of Array.from(this._optionMap.keys()))if(this._compareWith(this._optionMap.get(X),M))return X;return null}_getOptionValue(M){const X=function Mi(oe){return oe.split(":")[0]}(M);return this._optionMap.has(X)?this._optionMap.get(X):M}}Ar.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(Ar)))(X||Ar)}}(),Ar.\u0275dir=t.lG2({type:Ar,selectors:[["select","formControlName","",3,"multiple",""],["select","formControl","",3,"multiple",""],["select","ngModel","",3,"multiple",""]],hostBindings:function(M,X){1&M&&t.NdJ("change",function($t){return X.onChange($t.target.value)})("blur",function(){return X.onTouched()})},inputs:{compareWith:"compareWith"},features:[t._Bn([ao]),t.qOj]});class br{constructor(M,X,it){this._element=M,this._renderer=X,this._select=it,this._select&&(this.id=this._select._registerOption())}set ngValue(M){null!=this._select&&(this._select._optionMap.set(this.id,M),this._setElementValue(ti(this.id,M)),this._select.writeValue(this._select.value))}set value(M){this._setElementValue(M),this._select&&this._select.writeValue(this._select.value)}_setElementValue(M){this._renderer.setProperty(this._element.nativeElement,"value",M)}ngOnDestroy(){this._select&&(this._select._optionMap.delete(this.id),this._select.writeValue(this._select.value))}}br.\u0275fac=function(M){return new(M||br)(t.Y36(t.SBq),t.Y36(t.Qsj),t.Y36(Ar,9))},br.\u0275dir=t.lG2({type:br,selectors:[["option"]],inputs:{ngValue:"ngValue",value:"value"}}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2283,7 +2460,7 @@ function J(O){return void 0!==O.asyncValidators||void 0!==O.validators||void 0!= * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -new y.GfV("12.2.16"); +const Ps={provide:$,useExisting:(0,t.Gpc)(()=>To),multi:!0};function Qr(oe,M){return null==oe?`${M}`:("string"==typeof M&&(M=`'${M}'`),M&&"object"==typeof M&&(M="Object"),`${oe}: ${M}`.slice(0,50))}class To extends K{constructor(){super(...arguments),this._optionMap=new Map,this._idCounter=0,this._compareWith=Object.is}set compareWith(M){this._compareWith=M}writeValue(M){let X;if(this.value=M,Array.isArray(M)){const it=M.map($t=>this._getOptionId($t));X=($t,hi)=>{$t._setSelected(it.indexOf(hi.toString())>-1)}}else X=(it,$t)=>{it._setSelected(!1)};this._optionMap.forEach(X)}registerOnChange(M){this.onChange=X=>{const it=[],$t=X.selectedOptions;if(void 0!==$t){const hi=$t;for(let Yr=0;Yrso),multi:!0};class so extends Kr{constructor(){super(...arguments),this.inputName="max",this.normalizeInput=M=>hs(M),this.createValidator=M=>We(M)}}so.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(so)))(X||so)}}(),so.\u0275dir=t.lG2({type:so,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(M,X){2&M&&t.uIk("max",X._enabled?X.max:null)},inputs:{max:"max"},features:[t._Bn([gs]),t.qOj]});const ea={provide:de,useExisting:(0,t.Gpc)(()=>ki),multi:!0};class ki extends Kr{constructor(){super(...arguments),this.inputName="min",this.normalizeInput=M=>hs(M),this.createValidator=M=>$e(M)}}ki.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(ki)))(X||ki)}}(),ki.\u0275dir=t.lG2({type:ki,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(M,X){2&M&&t.uIk("min",X._enabled?X.min:null)},inputs:{min:"min"},features:[t._Bn([ea]),t.qOj]});const Eo={provide:de,useExisting:(0,t.Gpc)(()=>Ro),multi:!0},Io={provide:de,useExisting:(0,t.Gpc)(()=>hr),multi:!0};class Ro extends Kr{constructor(){super(...arguments),this.inputName="required",this.normalizeInput=t.D6c,this.createValidator=M=>Ie}enabled(M){return M}}Ro.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(Ro)))(X||Ro)}}(),Ro.\u0275dir=t.lG2({type:Ro,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(M,X){2&M&&t.uIk("required",X._enabled?"":null)},inputs:{required:"required"},features:[t._Bn([Eo]),t.qOj]});class hr extends Ro{constructor(){super(...arguments),this.createValidator=M=>He}}hr.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(hr)))(X||hr)}}(),hr.\u0275dir=t.lG2({type:hr,selectors:[["input","type","checkbox","required","","formControlName",""],["input","type","checkbox","required","","formControl",""],["input","type","checkbox","required","","ngModel",""]],hostVars:1,hostBindings:function(M,X){2&M&&t.uIk("required",X._enabled?"":null)},features:[t._Bn([Io]),t.qOj]});const ns={provide:de,useExisting:(0,t.Gpc)(()=>Li),multi:!0};class Li extends Kr{constructor(){super(...arguments),this.inputName="email",this.normalizeInput=t.D6c,this.createValidator=M=>T}enabled(M){return M}}Li.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(Li)))(X||Li)}}(),Li.\u0275dir=t.lG2({type:Li,selectors:[["","email","","formControlName",""],["","email","","formControl",""],["","email","","ngModel",""]],inputs:{email:"email"},features:[t._Bn([ns]),t.qOj]});const _i={provide:de,useExisting:(0,t.Gpc)(()=>lo),multi:!0};class lo extends Kr{constructor(){super(...arguments),this.inputName="minlength",this.normalizeInput=M=>Os(M),this.createValidator=M=>Z(M)}}lo.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(lo)))(X||lo)}}(),lo.\u0275dir=t.lG2({type:lo,selectors:[["","minlength","","formControlName",""],["","minlength","","formControl",""],["","minlength","","ngModel",""]],hostVars:1,hostBindings:function(M,X){2&M&&t.uIk("minlength",X._enabled?X.minlength:null)},inputs:{minlength:"minlength"},features:[t._Bn([_i]),t.qOj]});const Za={provide:de,useExisting:(0,t.Gpc)(()=>ui),multi:!0};class ui extends Kr{constructor(){super(...arguments),this.inputName="maxlength",this.normalizeInput=M=>Os(M),this.createValidator=M=>Ce(M)}}ui.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(ui)))(X||ui)}}(),ui.\u0275dir=t.lG2({type:ui,selectors:[["","maxlength","","formControlName",""],["","maxlength","","formControl",""],["","maxlength","","ngModel",""]],hostVars:1,hostBindings:function(M,X){2&M&&t.uIk("maxlength",X._enabled?X.maxlength:null)},inputs:{maxlength:"maxlength"},features:[t._Bn([Za]),t.qOj]});const ms={provide:de,useExisting:(0,t.Gpc)(()=>pa),multi:!0};class pa extends Kr{constructor(){super(...arguments),this.inputName="pattern",this.normalizeInput=M=>M,this.createValidator=M=>Te(M)}}pa.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(pa)))(X||pa)}}(),pa.\u0275dir=t.lG2({type:pa,selectors:[["","pattern","","formControlName",""],["","pattern","","formControl",""],["","pattern","","ngModel",""]],hostVars:1,hostBindings:function(M,X){2&M&&t.uIk("pattern",X._enabled?X.pattern:null)},inputs:{pattern:"pattern"},features:[t._Bn([ms]),t.qOj]});class mo{}mo.\u0275fac=function(M){return new(M||mo)},mo.\u0275mod=t.oAB({type:mo}),mo.\u0275inj=t.cJS({imports:[eo]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2298,74 +2476,85 @@ new y.GfV("12.2.16"); * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +class uo{}uo.\u0275fac=function(M){return new(M||uo)},uo.\u0275mod=t.oAB({type:uo}),uo.\u0275inj=t.cJS({imports:[mo]});class zi{static withConfig(M){return{ngModule:zi,providers:[{provide:Tn,useValue:M.warnOnNgModelWithFormControl}]}}}zi.\u0275fac=function(M){return new(M||zi)},zi.\u0275mod=t.oAB({type:zi}),zi.\u0275inj=t.cJS({imports:[mo]}); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */},1570:function(It,we,D){"use strict";D.d(we,{b2:function(){return Qe},H7:function(){return Fn},q6:function(){return We}});var Le,L=D(9520),C=D(1365),t=D(7444),R=D(47),V=D(4338),F=D(8270),E=D(4364),y=D(3587),be=function(Nt){(0,V.Z)(nt,Nt);var Mt=(0,F.Z)(nt);function nt(){var lt;return(0,R.Z)(this,nt),(lt=Mt.apply(this,arguments)).supportsDOMEvents=!0,lt}return(0,t.Z)(nt)}(E.w_),ue=function(Nt){(0,V.Z)(nt,Nt);var Mt=(0,F.Z)(nt);function nt(){return(0,R.Z)(this,nt),Mt.apply(this,arguments)}return(0,t.Z)(nt,[{key:"onAndCancel",value:function(bt,Vt,En){return bt.addEventListener(Vt,En,!1),function(){bt.removeEventListener(Vt,En,!1)}}},{key:"dispatchEvent",value:function(bt,Vt){bt.dispatchEvent(Vt)}},{key:"remove",value:function(bt){bt.parentNode&&bt.parentNode.removeChild(bt)}},{key:"createElement",value:function(bt,Vt){return(Vt=Vt||this.getDefaultDocument()).createElement(bt)}},{key:"createHtmlDocument",value:function(){return document.implementation.createHTMLDocument("fakeTitle")}},{key:"getDefaultDocument",value:function(){return document}},{key:"isElementNode",value:function(bt){return bt.nodeType===Node.ELEMENT_NODE}},{key:"isShadowRoot",value:function(bt){return bt instanceof DocumentFragment}},{key:"getGlobalEventTarget",value:function(bt,Vt){return"window"===Vt?window:"document"===Vt?bt:"body"===Vt?bt.body:null}},{key:"getBaseHref",value:function(bt){var Vt=(De=De||document.querySelector("base"))?De.getAttribute("href"):null;return null==Vt?null:function(Nt){(Le=Le||document.createElement("a")).setAttribute("href",Nt);var Mt=Le.pathname;return"/"===Mt.charAt(0)?Mt:"/".concat(Mt)} + */ +class Ea extends Un{constructor(M,X,it){super(vi(X),Ee(it,X)),this.controls=M,this._initObservables(),this._setUpdateStrategy(X),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}at(M){return this.controls[this._adjustIndex(M)]}push(M,X={}){this.controls.push(M),this._registerControl(M),this.updateValueAndValidity({emitEvent:X.emitEvent}),this._onCollectionChange()}insert(M,X,it={}){this.controls.splice(M,0,X),this._registerControl(X),this.updateValueAndValidity({emitEvent:it.emitEvent})}removeAt(M,X={}){let it=this._adjustIndex(M);it<0&&(it=0),this.controls[it]&&this.controls[it]._registerOnCollectionChange(()=>{}),this.controls.splice(it,1),this.updateValueAndValidity({emitEvent:X.emitEvent})}setControl(M,X,it={}){let $t=this._adjustIndex(M);$t<0&&($t=0),this.controls[$t]&&this.controls[$t]._registerOnCollectionChange(()=>{}),this.controls.splice($t,1),X&&(this.controls.splice($t,0,X),this._registerControl(X)),this.updateValueAndValidity({emitEvent:it.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(M,X={}){un(this,0,M),M.forEach((it,$t)=>{Ot(this,!1,$t),this.at($t).setValue(it,{onlySelf:!0,emitEvent:X.emitEvent})}),this.updateValueAndValidity(X)}patchValue(M,X={}){null!=M&&(M.forEach((it,$t)=>{this.at($t)&&this.at($t).patchValue(it,{onlySelf:!0,emitEvent:X.emitEvent})}),this.updateValueAndValidity(X))}reset(M=[],X={}){this._forEachChild((it,$t)=>{it.reset(M[$t],{onlySelf:!0,emitEvent:X.emitEvent})}),this._updatePristine(X),this._updateTouched(X),this.updateValueAndValidity(X)}getRawValue(){return this.controls.map(M=>M.getRawValue())}clear(M={}){this.controls.length<1||(this._forEachChild(X=>X._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:M.emitEvent}))}_adjustIndex(M){return M<0?M+this.length:M}_syncPendingControls(){let M=this.controls.reduce((X,it)=>!!it._syncPendingControls()||X,!1);return M&&this.updateValueAndValidity({onlySelf:!0}),M}_forEachChild(M){this.controls.forEach((X,it)=>{M(X,it)})}_updateValue(){this.value=this.controls.filter(M=>M.enabled||this.disabled).map(M=>M.value)}_anyControls(M){return this.controls.some(X=>X.enabled&&M(X))}_setUpControls(){this._forEachChild(M=>this._registerControl(M))}_allControlsDisabled(){for(const M of this.controls)if(M.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(M){M.setParent(this),M._registerOnCollectionChange(this._onCollectionChange)}_find(M){return this.at(M)??null}} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */(Vt)}},{key:"resetBaseElement",value:function(){De=null}},{key:"getUserAgent",value:function(){return window.navigator.userAgent}},{key:"getCookie",value:function(bt){return(0,E.Mx)(document.cookie,bt)}}],[{key:"makeCurrent",value:function(){(0,E.HT)(new nt)}}]),nt}(be),De=null; + */ +function co(oe){return!!oe&&(void 0!==oe.asyncValidators||void 0!==oe.validators||void 0!==oe.updateOn)}class Rr{constructor(){this.useNonNullable=!1}get nonNullable(){const M=new Rr;return M.useNonNullable=!0,M}group(M,X=null){const it=this._reduceControls(M);let $t={};return co(X)?$t=X:null!==X&&($t.validators=X.validator,$t.asyncValidators=X.asyncValidator),new Vn(it,$t)}record(M,X=null){const it=this._reduceControls(M);return new Lr(it,X)}control(M,X,it){let $t={};return this.useNonNullable?(co(X)?$t=X:($t.validators=X,$t.asyncValidators=it),new Si(M,{...$t,nonNullable:!0})):new Si(M,X,it)}array(M,X,it){const $t=M.map(hi=>this._createControl(hi));return new Ea($t,X,it)}_reduceControls(M){const X={};return Object.keys(M).forEach(it=>{X[it]=this._createControl(M[it])}),X}_createControl(M){if(M instanceof Si)return M;if(M instanceof Un)return M;if(Array.isArray(M)){const X=M[0],it=M.length>1?M[1]:null,$t=M.length>2?M[2]:null;return this.control(X,it,$t)}return this.control(M)}}Rr.\u0275fac=function(M){return new(M||Rr)},Rr.\u0275prov=t.Yz7({token:Rr,factory:Rr.\u0275fac,providedIn:zi});class ha{}ha.\u0275fac=function(M){return new(M||ha)},ha.\u0275prov=t.Yz7({token:ha,factory:function(){return(0,t.f3M)(Rr).nonNullable},providedIn:zi});class An extends Rr{group(M,X=null){return super.group(M,X)}control(M,X,it){return super.control(M,X,it)}array(M,X,it){return super.array(M,X,it)}}An.\u0275fac=function(){let oe;return function(X){return(oe||(oe=t.n5z(An)))(X||An)}}(),An.\u0275prov=t.Yz7({token:An,factory:An.\u0275fac,providedIn:zi}); /** - * @license Angular v12.2.16 - * (c) 2010-2021 Google LLC. https://angular.io/ - * License: MIT + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license */ +new t.GfV("14.2.12"); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var pe=new y.OlP("TRANSITION_ID");var ge=[{provide:y.ip1,useFactory:function(Nt,Mt,nt){return function(){nt.get(y.CZH).donePromise.then(function(){for(var lt=(0,E.q)(),bt=Mt.querySelectorAll('style[ng-transition="'.concat(Nt,'"]')),Vt=0;Vt1&&void 0!==arguments[1])||arguments[1],En=nt.findTestabilityInTree(bt,Vt);if(null==En)throw new Error("Could not find testability for element.");return En},y.dqk.getAllAngularTestabilities=function(){return nt.getAllTestabilities()},y.dqk.getAllAngularRootElements=function(){return nt.getAllRootElements()};y.dqk.frameworkStabilizers||(y.dqk.frameworkStabilizers=[]),y.dqk.frameworkStabilizers.push(function(Vt){var En=y.dqk.getAllAngularTestabilities(),kn=En.length,Qn=!1,pr=function(Cr){Qn=Qn||Cr,0==--kn&&Vt(Qn)};En.forEach(function(zr){zr.whenStable(pr)})})}},{key:"findTestabilityInTree",value:function(nt,lt,bt){if(null==lt)return null;var Vt=nt.getTestability(lt);return null!=Vt?Vt:bt?(0,E.q)().isShadowRoot(lt)?this.findTestabilityInTree(nt,lt.host,!0):this.findTestabilityInTree(nt,lt.parentElement,!0):null}}],[{key:"init",value:function(){(0,y.VLi)(new Nt)}}]),Nt}(),te=function(){function Nt(){(0,R.Z)(this,Nt)}return(0,t.Z)(Nt,[{key:"build",value:function(){return new XMLHttpRequest}}]),Nt}(); + */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */te.\u0275fac=function(Mt){return new(Mt||te)},te.\u0275prov=y.Yz7({token:te,factory:te.\u0275fac});function ut(Nt,Mt){"undefined"!=typeof COMPILED&&COMPILED||((y.dqk.ng=y.dqk.ng||{})[Nt]=Mt)} + */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var A={ApplicationRef:y.z2F,NgZone:y.R0b};function Se(Nt){return(0,y.Tjo)(Nt)}y.ip1,y.PXZ,new y.FiY; + */},4497:(vt,_e,w)=>{"use strict";w.d(_e,{H7:()=>Cr,b2:()=>Me,q6:()=>Xt});var t=w(4666),C=w(8008); +/** + * @license Angular v14.2.12 + * (c) 2010-2022 Google LLC. https://angular.io/ + * License: MIT + */ /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var St=[],ft=new y.OlP("EventManagerPlugins"),ot=function(){function Nt(Mt,nt){var lt=this;(0,R.Z)(this,Nt),this._zone=nt,this._eventNameToPlugin=new Map,Mt.forEach(function(bt){return bt.manager=lt}),this._plugins=Mt.slice().reverse()}return(0,t.Z)(Nt,[{key:"addEventListener",value:function(nt,lt,bt){return this._findPluginFor(lt).addEventListener(nt,lt,bt)}},{key:"addGlobalEventListener",value:function(nt,lt,bt){return this._findPluginFor(lt).addGlobalEventListener(nt,lt,bt)}},{key:"getZone",value:function(){return this._zone}},{key:"_findPluginFor",value:function(nt){var lt=this._eventNameToPlugin.get(nt);if(lt)return lt;for(var bt=this._plugins,Vt=0;Vt{ue.removeEventListener(ze,It,!1)}}dispatchEvent(ue,ze){ue.dispatchEvent(ze)}remove(ue){ue.parentNode&&ue.parentNode.removeChild(ue)}createElement(ue,ze){return(ze=ze||this.getDefaultDocument()).createElement(ue)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(ue){return ue.nodeType===Node.ELEMENT_NODE}isShadowRoot(ue){return ue instanceof DocumentFragment}getGlobalEventTarget(ue,ze){return"window"===ze?window:"document"===ze?ue:"body"===ze?ue.body:null}getBaseHref(ue){const ze=function G(){return N=N||document.querySelector("base"),N?N.getAttribute("href"):null}();return null==ze?null:function $(At){K=K||document.createElement("a"),K.setAttribute("href",At);const ue=K.pathname;return"/"===ue.charAt(0)?ue:`/${ue}`} /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */Xt.\u0275fac=function(Mt){return new(Mt||Xt)(y.LFG(E.K0))},Xt.\u0275prov=y.Yz7({token:Xt,factory:Xt.\u0275fac}),Xt.ctorParameters=function(){return[{type:void 0,decorators:[{type:y.tBr,args:[E.K0]}]}]};var Wt={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/"},Ft=/%COMP%/g,he="_nghost-".concat("%COMP%"),hn="_ngcontent-".concat("%COMP%");function xt(Nt,Mt,nt){for(var lt=0;lt{ze.get(C.CZH).donePromise.then(()=>{const It=(0,t.q)(),sn=ue.querySelectorAll(`style[ng-transition="${At}"]`);for(let yn=0;yn-1}}]),nt}(kt);Dt.\u0275fac=function(Mt){return new(Mt||Dt)(y.LFG(E.K0),y.LFG(Ot),y.LFG(y.c2e),y.LFG(ln,8))},Dt.\u0275prov=y.Yz7({token:Dt,factory:Dt.\u0275fac}),Dt.ctorParameters=function(){return[{type:void 0,decorators:[{type:y.tBr,args:[E.K0]}]},{type:vn,decorators:[{type:y.tBr,args:[Ot]}]},{type:y.c2e},{type:void 0,decorators:[{type:y.FiY},{type:y.tBr,args:[ln]}]}]};var se=[{provide:ft,useClass:Dt,multi:!0,deps:[E.K0,Ot,y.c2e,[new y.FiY,ln]]},{provide:Ot,useClass:vn,deps:[]}],me=[],$=(0,t.Z)(function Nt(){(0,R.Z)(this,Nt)});$.\u0275fac=function(Mt){return new(Mt||$)},$.\u0275mod=y.oAB({type:$}),$.\u0275inj=y.cJS({providers:se}); +const Ne=new C.OlP("EventManagerPlugins");class ke{constructor(ue,ze){this._zone=ze,this._eventNameToPlugin=new Map,ue.forEach(It=>It.manager=this),this._plugins=ue.slice().reverse()}addEventListener(ue,ze,It){return this._findPluginFor(ze).addEventListener(ue,ze,It)}addGlobalEventListener(ue,ze,It){return this._findPluginFor(ze).addGlobalEventListener(ue,ze,It)}getZone(){return this._zone}_findPluginFor(ue){const ze=this._eventNameToPlugin.get(ue);if(ze)return ze;const It=this._plugins;for(let sn=0;sn-1&&(Vt.splice(Cr,1),Qn+=zr+".")}),Qn+=kn,0!=Vt.length||0===kn.length)return null;var pr={};return pr.domEventName=En,pr.fullKey=Qn,pr}},{key:"getEventFullKey",value:function(bt){var Vt="",En=function(Nt){var Mt=Nt.key;if(null==Mt){if(null==(Mt=Nt.keyIdentifier))return"Unidentified";Mt.startsWith("U+")&&(Mt=String.fromCharCode(parseInt(Mt.substring(2),16)),3===Nt.location&&ht.hasOwnProperty(Mt)&&(Mt=ht[Mt]))}return $e[Mt]||Mt} + */class fe{constructor(){this._stylesSet=new Set}addStyles(ue){const ze=new Set;ue.forEach(It=>{this._stylesSet.has(It)||(this._stylesSet.add(It),ze.add(It))}),this.onStylesAdded(ze)}onStylesAdded(ue){}getAllStyles(){return Array.from(this._stylesSet)}}fe.\u0275fac=function(ue){return new(ue||fe)},fe.\u0275prov=C.Yz7({token:fe,factory:fe.\u0275fac});class de extends fe{constructor(ue){super(),this._doc=ue,this._hostNodes=new Map,this._hostNodes.set(ue.head,[])}_addStylesToHost(ue,ze,It){ue.forEach(sn=>{const yn=this._doc.createElement("style");yn.textContent=sn,It.push(ze.appendChild(yn))})}addHost(ue){const ze=[];this._addStylesToHost(this._stylesSet,ue,ze),this._hostNodes.set(ue,ze)}removeHost(ue){const ze=this._hostNodes.get(ue);ze&&ze.forEach(pe),this._hostNodes.delete(ue)}onStylesAdded(ue){this._hostNodes.forEach((ze,It)=>{this._addStylesToHost(ue,It,ze)})}ngOnDestroy(){this._hostNodes.forEach(ue=>ue.forEach(pe))}}function pe(At){(0,t.q)().remove(At)} +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */de.\u0275fac=function(ue){return new(ue||de)(C.LFG(t.K0))},de.\u0275prov=C.Yz7({token:de,factory:de.\u0275fac});const Pe={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/"},et=/%COMP%/g,Ie="_nghost-%COMP%",He="_ngcontent-%COMP%";function Ce(At,ue,ze){for(let It=0;It{if("__ngUnwrap__"===ue)return At;!1===At(ue)&&(ue.preventDefault(),ue.returnValue=!1)}}class st{constructor(ue,ze,It){this.eventManager=ue,this.sharedStylesHost=ze,this.appId=It,this.rendererByCompId=new Map,this.defaultRenderer=new bt(ue)}createRenderer(ue,ze){if(!ue||!ze)return this.defaultRenderer;switch(ze.encapsulation){case C.ifc.Emulated:{let It=this.rendererByCompId.get(ze.id);return It||(It=new Mt(this.eventManager,this.sharedStylesHost,ze,this.appId),this.rendererByCompId.set(ze.id,It)),It.applyToHost(ue),It}case 1:case C.ifc.ShadowDom:return new St(this.eventManager,this.sharedStylesHost,ue,ze);default:if(!this.rendererByCompId.has(ze.id)){const It=Ce(ze.id,ze.styles,[]);this.sharedStylesHost.addStyles(It),this.rendererByCompId.set(ze.id,this.defaultRenderer)}return this.defaultRenderer}}begin(){}end(){}}st.\u0275fac=function(ue){return new(ue||st)(C.LFG(ke),C.LFG(de),C.LFG(C.AFp))},st.\u0275prov=C.Yz7({token:st,factory:st.\u0275fac});class bt{constructor(ue){this.eventManager=ue,this.data=Object.create(null),this.destroyNode=null}destroy(){}createElement(ue,ze){return ze?document.createElementNS(Pe[ze]||ze,ue):document.createElement(ue)}createComment(ue){return document.createComment(ue)}createText(ue){return document.createTextNode(ue)}appendChild(ue,ze){(Dt(ue)?ue.content:ue).appendChild(ze)}insertBefore(ue,ze,It){ue&&(Dt(ue)?ue.content:ue).insertBefore(ze,It)}removeChild(ue,ze){ue&&ue.removeChild(ze)}selectRootElement(ue,ze){let It="string"==typeof ue?document.querySelector(ue):ue;if(!It)throw new Error(`The selector "${ue}" did not match any elements`);return ze||(It.textContent=""),It}parentNode(ue){return ue.parentNode}nextSibling(ue){return ue.nextSibling}setAttribute(ue,ze,It,sn){if(sn){ze=sn+":"+ze;const yn=Pe[sn];yn?ue.setAttributeNS(yn,ze,It):ue.setAttribute(ze,It)}else ue.setAttribute(ze,It)}removeAttribute(ue,ze,It){if(It){const sn=Pe[It];sn?ue.removeAttributeNS(sn,ze):ue.removeAttribute(`${It}:${ze}`)}else ue.removeAttribute(ze)}addClass(ue,ze){ue.classList.add(ze)}removeClass(ue,ze){ue.classList.remove(ze)}setStyle(ue,ze,It,sn){sn&(C.JOm.DashCase|C.JOm.Important)?ue.style.setProperty(ze,It,sn&C.JOm.Important?"important":""):ue.style[ze]=It}removeStyle(ue,ze,It){It&C.JOm.DashCase?ue.style.removeProperty(ze):ue.style[ze]=""}setProperty(ue,ze,It){ue[ze]=It}setValue(ue,ze){ue.nodeValue=ze}listen(ue,ze,It){return"string"==typeof ue?this.eventManager.addGlobalEventListener(ue,ze,Te(It)):this.eventManager.addEventListener(ue,ze,Te(It))}}"@".charCodeAt(0);function Dt(At){return"TEMPLATE"===At.tagName&&void 0!==At.content}class Mt extends bt{constructor(ue,ze,It,sn){super(ue),this.component=It;const yn=Ce(sn+"-"+It.id,It.styles,[]);ze.addStyles(yn),this.contentAttr=function T(At){return He.replace(et,At)}(sn+"-"+It.id),this.hostAttr=function Z(At){return Ie.replace(et,At)}(sn+"-"+It.id)}applyToHost(ue){super.setAttribute(ue,this.hostAttr,"")}createElement(ue,ze){const It=super.createElement(ue,ze);return super.setAttribute(It,this.contentAttr,""),It}}class St extends bt{constructor(ue,ze,It,sn){super(ue),this.sharedStylesHost=ze,this.hostEl=It,this.shadowRoot=It.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);const yn=Ce(sn.id,sn.styles,[]);for(let In=0;Inthis.removeEventListener(ue,ze,It)}removeEventListener(ue,ze,It){return ue.removeEventListener(ze,It)}}Gt.\u0275fac=function(ue){return new(ue||Gt)(C.LFG(t.K0))},Gt.\u0275prov=C.Yz7({token:Gt,factory:Gt.\u0275fac}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2396,7 +2591,7 @@ var xe=["alt","control","meta","shift"],$e={"\b":"Backspace","\t":"Tab","\x7f":" * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function(){ue.makeCurrent(),ye.init()},multi:!0},{provide:E.K0,useFactory:function(){return(0,y.RDi)(document),document},deps:[]}],wr=(y.Tiy,E.K0,[]),We=(0,y.eFA)(y._c5,"browser",Lr),Pe=[wr,{provide:y.zSh,useValue:"root"},{provide:y.qLn,useFactory:function(){return new y.qLn},deps:[]},{provide:ft,useClass:gt,multi:!0,deps:[E.K0,y.R0b,y.Lbi]},{provide:ft,useClass:Rn,multi:!0,deps:[E.K0]},me,{provide:At,useClass:At,deps:[ot,Xt,y.AFp]},{provide:y.FYo,useExisting:At},{provide:_t,useExisting:Xt},{provide:Xt,useClass:Xt,deps:[E.K0]},{provide:y.dDg,useClass:y.dDg,deps:[y.R0b]},{provide:ot,useClass:ot,deps:[ft,y.R0b]},{provide:E.JF,useClass:te,deps:[]},St],Qe=function(){function Nt(Mt){if((0,R.Z)(this,Nt),Mt)throw new Error("BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.")}return(0,t.Z)(Nt,null,[{key:"withServerTransition",value:function(nt){return{ngModule:Nt,providers:[{provide:y.AFp,useValue:nt.appId},{provide:pe,useExisting:y.AFp},ge]}}}]),Nt}();Qe.\u0275fac=function(Mt){return new(Mt||Qe)(y.LFG(Qe,12))},Qe.\u0275mod=y.oAB({type:Qe}),Qe.\u0275inj=y.cJS({providers:Pe,imports:[E.ez,y.hGG]}),Qe.ctorParameters=function(){return[{type:Qe,decorators:[{type:y.FiY},{type:y.tp0},{type:y.tBr,args:[Qe]}]}]};var Qt=function(){function Nt(Mt){(0,R.Z)(this,Nt),this._doc=Mt,this._dom=(0,E.q)()}return(0,t.Z)(Nt,[{key:"addTag",value:function(nt){var lt=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return nt?this._getOrCreateElement(nt,lt):null}},{key:"addTags",value:function(nt){var lt=this,bt=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return nt?nt.reduce(function(Vt,En){return En&&Vt.push(lt._getOrCreateElement(En,bt)),Vt},[]):[]}},{key:"getTag",value:function(nt){return nt&&this._doc.querySelector("meta[".concat(nt,"]"))||null}},{key:"getTags",value:function(nt){if(!nt)return[];var lt=this._doc.querySelectorAll("meta[".concat(nt,"]"));return lt?[].slice.call(lt):[]}},{key:"updateTag",value:function(nt,lt){if(!nt)return null;lt=lt||this._parseSelector(nt);var bt=this.getTag(lt);return bt?this._setMetaElementAttributes(nt,bt):this._getOrCreateElement(nt,!0)}},{key:"removeTag",value:function(nt){this.removeTagElement(this.getTag(nt))}},{key:"removeTagElement",value:function(nt){nt&&this._dom.remove(nt)}},{key:"_getOrCreateElement",value:function(nt){var lt=this,bt=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(!bt){var Vt=this._parseSelector(nt),En=this.getTags(Vt).filter(function(pr){return lt._containsAttributes(nt,pr)})[0];if(void 0!==En)return En}var kn=this._dom.createElement("meta");this._setMetaElementAttributes(nt,kn);var Qn=this._doc.getElementsByTagName("head")[0];return Qn.appendChild(kn),kn}},{key:"_setMetaElementAttributes",value:function(nt,lt){var bt=this;return Object.keys(nt).forEach(function(Vt){return lt.setAttribute(bt._getMetaKeyMap(Vt),nt[Vt])}),lt}},{key:"_parseSelector",value:function(nt){var lt=nt.name?"name":"property";return"".concat(lt,'="').concat(nt[lt],'"')}},{key:"_containsAttributes",value:function(nt,lt){var bt=this;return Object.keys(nt).every(function(Vt){return lt.getAttribute(bt._getMetaKeyMap(Vt))===nt[Vt]})}},{key:"_getMetaKeyMap",value:function(nt){return yn[nt]||nt}}]),Nt}();Qt.\u0275fac=function(Mt){return new(Mt||Qt)(y.LFG(E.K0))},Qt.\u0275prov=(0,y.Yz7)({factory: +const on=["alt","control","meta","shift"],Bt={"\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"},Qt={alt:At=>At.altKey,control:At=>At.ctrlKey,meta:At=>At.metaKey,shift:At=>At.shiftKey};class Rt extends Re{constructor(ue){super(ue)}supports(ue){return null!=Rt.parseEventName(ue)}addEventListener(ue,ze,It){const sn=Rt.parseEventName(ze),yn=Rt.eventCallback(sn.fullKey,It,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,t.q)().onAndCancel(ue,sn.domEventName,yn))}static parseEventName(ue){const ze=ue.toLowerCase().split("."),It=ze.shift();if(0===ze.length||"keydown"!==It&&"keyup"!==It)return null;const sn=Rt._normalizeKey(ze.pop());let yn="",In=ze.indexOf("code");if(In>-1&&(ze.splice(In,1),yn="code."),on.forEach(oi=>{const ai=ze.indexOf(oi);ai>-1&&(ze.splice(ai,1),yn+=oi+".")}),yn+=sn,0!=ze.length||0===sn.length)return null;const qn={};return qn.domEventName=It,qn.fullKey=yn,qn}static matchEventFullKeyCode(ue,ze){let It=Bt[ue.key]||ue.key,sn="";return ze.indexOf("code.")>-1&&(It=ue.code,sn="code."),!(null==It||!It)&&(It=It.toLowerCase()," "===It?It="space":"."===It&&(It="dot"),on.forEach(yn=>{if(yn!==It){(0,Qt[yn])(ue)&&(sn+=yn+".")}}),sn+=It,sn===ze)}static eventCallback(ue,ze,It){return sn=>{Rt.matchEventFullKeyCode(sn,ue)&&It.runGuarded(()=>ze(sn))}}static _normalizeKey(ue){return"esc"===ue?"escape":ue}}Rt.\u0275fac=function(ue){return new(ue||Rt)(C.LFG(t.K0))},Rt.\u0275prov=C.Yz7({token:Rt,factory:Rt.\u0275fac});const fn=[{provide:C.Lbi,useValue:t.bD},{provide:C.g9A,useValue:function lt(){U.makeCurrent()},multi:!0},{provide:t.K0,useFactory:function at(){return(0,C.RDi)(document),document},deps:[]}],Xt=(0,C.eFA)(C._c5,"browser",fn),Ge=new C.OlP(""),Je=[{provide:C.rWj,useClass:class be{addToWindow(ue){C.dqk.getAngularTestability=(It,sn=!0)=>{const yn=ue.findTestabilityInTree(It,sn);if(null==yn)throw new Error("Could not find testability for element.");return yn},C.dqk.getAllAngularTestabilities=()=>ue.getAllTestabilities(),C.dqk.getAllAngularRootElements=()=>ue.getAllRootElements();C.dqk.frameworkStabilizers||(C.dqk.frameworkStabilizers=[]),C.dqk.frameworkStabilizers.push(It=>{const sn=C.dqk.getAllAngularTestabilities();let yn=sn.length,In=!1;const qn=function(oi){In=In||oi,yn--,0==yn&&It(In)};sn.forEach(function(oi){oi.whenStable(qn)})})}findTestabilityInTree(ue,ze,It){if(null==ze)return null;return ue.getTestability(ze)??(It?(0,t.q)().isShadowRoot(ze)?this.findTestabilityInTree(ue,ze.host,!0):this.findTestabilityInTree(ue,ze.parentElement,!0):null)}},deps:[]},{provide:C.lri,useClass:C.dDg,deps:[C.R0b,C.eoX,C.rWj]},{provide:C.dDg,useClass:C.dDg,deps:[C.R0b,C.eoX,C.rWj]}],Fe=[{provide:C.zSh,useValue:"root"},{provide:C.qLn,useFactory:function Et(){return new C.qLn},deps:[]},{provide:Ne,useClass:Gt,multi:!0,deps:[t.K0,C.R0b,C.Lbi]},{provide:Ne,useClass:Rt,multi:!0,deps:[t.K0]},{provide:st,useClass:st,deps:[ke,de,C.AFp]},{provide:C.FYo,useExisting:st},{provide:fe,useExisting:de},{provide:de,useClass:de,deps:[t.K0]},{provide:ke,useClass:ke,deps:[Ne,C.R0b]},{provide:t.JF,useClass:Be,deps:[]},[]];class Me{constructor(ue){false}static withServerTransition(ue){return{ngModule:Me,providers:[{provide:C.AFp,useValue:ue.appId},{provide:le,useExisting:C.AFp},ae]}}}Me.\u0275fac=function(ue){return new(ue||Me)(C.LFG(Ge,12))},Me.\u0275mod=C.oAB({type:Me}),Me.\u0275inj=C.cJS({providers:[...Fe,...Je],imports:[t.ez,C.hGG]});class qt{constructor(ue){this._doc=ue,this._dom=(0,t.q)()}addTag(ue,ze=!1){return ue?this._getOrCreateElement(ue,ze):null}addTags(ue,ze=!1){return ue?ue.reduce((It,sn)=>(sn&&It.push(this._getOrCreateElement(sn,ze)),It),[]):[]}getTag(ue){return ue&&this._doc.querySelector(`meta[${ue}]`)||null}getTags(ue){if(!ue)return[];const ze=this._doc.querySelectorAll(`meta[${ue}]`);return ze?[].slice.call(ze):[]}updateTag(ue,ze){if(!ue)return null;ze=ze||this._parseSelector(ue);const It=this.getTag(ze);return It?this._setMetaElementAttributes(ue,It):this._getOrCreateElement(ue,!0)}removeTag(ue){this.removeTagElement(this.getTag(ue))}removeTagElement(ue){ue&&this._dom.remove(ue)}_getOrCreateElement(ue,ze=!1){if(!ze){const yn=this._parseSelector(ue),In=this.getTags(yn).filter(qn=>this._containsAttributes(ue,qn))[0];if(void 0!==In)return In}const It=this._dom.createElement("meta");return this._setMetaElementAttributes(ue,It),this._doc.getElementsByTagName("head")[0].appendChild(It),It}_setMetaElementAttributes(ue,ze){return Object.keys(ue).forEach(It=>ze.setAttribute(this._getMetaKeyMap(It),ue[It])),ze}_parseSelector(ue){const ze=ue.name?"name":"property";return`${ze}="${ue[ze]}"`}_containsAttributes(ue,ze){return Object.keys(ue).every(It=>ze.getAttribute(this._getMetaKeyMap(It))===ue[It])}_getMetaKeyMap(ue){return Ye[ue]||ue}}qt.\u0275fac=function(ue){return new(ue||qt)(C.LFG(t.K0))},qt.\u0275prov=C.Yz7({token:qt,factory:function(ue){let ze=null;return ze=ue?new ue: /** * @license * Copyright Google LLC All Rights Reserved. @@ -2404,14 +2599,14 @@ function(){ue.makeCurrent(),ye.init()},multi:!0},{provide:E.K0,useFactory:functi * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -function(){return new Qt((0,y.LFG)(E.K0))},token:Qt,providedIn:"root"}),Qt.ctorParameters=function(){return[{type:void 0,decorators:[{type:y.tBr,args:[E.K0]}]}]};var yn={httpEquiv:"http-equiv"}; +function kt(){return new qt((0,C.LFG)(t.K0))}(),ze},providedIn:"root"});const Ye={httpEquiv:"http-equiv"}; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var tr=function(){function Nt(Mt){(0,R.Z)(this,Nt),this._doc=Mt}return(0,t.Z)(Nt,[{key:"getTitle",value:function(){return this._doc.title}},{key:"setTitle",value:function(nt){this._doc.title=nt||""}}]),Nt}();tr.\u0275fac=function(Mt){return new(Mt||tr)(y.LFG(E.K0))},tr.\u0275prov=(0,y.Yz7)({factory:function(){return new tr((0,y.LFG)(E.K0))},token:tr,providedIn:"root"}),tr.ctorParameters=function(){return[{type:void 0,decorators:[{type:y.tBr,args:[E.K0]}]}]}; + */class dt{constructor(ue){this._doc=ue}getTitle(){return this._doc.title}setTitle(ue){this._doc.title=ue||""}}dt.\u0275fac=function(ue){return new(ue||dt)(C.LFG(t.K0))},dt.\u0275prov=C.Yz7({token:dt,factory:function(ue){let ze=null;return ze=ue?new ue:function ct(){return new dt((0,C.LFG)(t.K0))}(),ze},providedIn:"root"}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2419,14 +2614,14 @@ function(){return new Qt((0,y.LFG)(E.K0))},token:Qt,providedIn:"root"}),Qt.ctorP * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -"undefined"!=typeof window&&window; +typeof window<"u"&&window; /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */var Fr=function(){function Nt(){(0,R.Z)(this,Nt),this.store={},this.onSerializeCallbacks={}}return(0,t.Z)(Nt,[{key:"get",value:function(nt,lt){return void 0!==this.store[nt]?this.store[nt]:lt}},{key:"set",value:function(nt,lt){this.store[nt]=lt}},{key:"remove",value:function(nt){delete this.store[nt]}},{key:"hasKey",value:function(nt){return this.store.hasOwnProperty(nt)}},{key:"onSerialize",value:function(nt,lt){this.onSerializeCallbacks[nt]=lt}},{key:"toJson",value:function(){for(var nt in this.onSerializeCallbacks)if(this.onSerializeCallbacks.hasOwnProperty(nt))try{this.store[nt]=this.onSerializeCallbacks[nt]()}catch(lt){console.warn("Exception in onSerialize callback: ",lt)}return JSON.stringify(this.store)}}],[{key:"init",value:function(nt){var lt=new Nt;return lt.store=nt,lt}}]),Nt}();Fr.\u0275fac=function(Mt){return new(Mt||Fr)},Fr.\u0275prov=y.Yz7({token:Fr,factory:Fr.\u0275fac});var Ri=(0,t.Z)(function Nt(){(0,R.Z)(this,Nt)});Ri.\u0275fac=function(Mt){return new(Mt||Ri)},Ri.\u0275mod=y.oAB({type:Ri}),Ri.\u0275inj=y.cJS({providers:[{provide:Fr,useFactory:function(Nt,Mt){var nt=Nt.getElementById(Mt+"-state"),lt={};if(nt&&nt.textContent)try{lt=JSON.parse(function(Nt){var Mt={"&a;":"&","&q;":'"',"&s;":"'","&l;":"<","&g;":">"};return Nt.replace(/&[^;]+;/g,function(nt){return Mt[nt]})}(nt.textContent))}catch(bt){console.warn("Exception while restoring TransferState for app "+Mt,bt)}return Fr.init(lt)},deps:[E.K0,y.AFp]}]}); + */class vn{constructor(){this.store={},this.onSerializeCallbacks={}}get(ue,ze){return void 0!==this.store[ue]?this.store[ue]:ze}set(ue,ze){this.store[ue]=ze}remove(ue){delete this.store[ue]}hasKey(ue){return this.store.hasOwnProperty(ue)}get isEmpty(){return 0===Object.keys(this.store).length}onSerialize(ue,ze){this.onSerializeCallbacks[ue]=ze}toJson(){for(const ue in this.onSerializeCallbacks)if(this.onSerializeCallbacks.hasOwnProperty(ue))try{this.store[ue]=this.onSerializeCallbacks[ue]()}catch(ze){console.warn("Exception in onSerialize callback: ",ze)}return JSON.stringify(this.store)}}vn.\u0275fac=function(ue){return new(ue||vn)},vn.\u0275prov=C.Yz7({token:vn,factory:function(){return(()=>{const At=(0,C.f3M)(t.K0),ue=(0,C.f3M)(C.AFp),ze=new vn;return ze.store=function vi(At,ue){const ze=At.getElementById(ue+"-state");let It={};if(ze&&ze.textContent)try{It=JSON.parse(function Dn(At){const ue={"&a;":"&","&q;":'"',"&s;":"'","&l;":"<","&g;":">"};return At.replace(/&[^;]+;/g,ze=>ue[ze])}(ze.textContent))}catch(sn){console.warn("Exception while restoring TransferState for app "+ue,sn)}return It}(At,ue),ze})()},providedIn:"root"});class Ir{}Ir.\u0275fac=function(ue){return new(ue||Ir)},Ir.\u0275mod=C.oAB({type:Ir}),Ir.\u0275inj=C.cJS({}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2434,6 +2629,7 @@ function(){return new Qt((0,y.LFG)(E.K0))},token:Qt,providedIn:"root"}),Qt.ctorP * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +const nt={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},Ot=new C.OlP("HammerGestureConfig"),un=new C.OlP("HammerLoader");class Un{constructor(){this.events=[],this.overrides={}}buildHammer(ue){const ze=new Hammer(ue,this.options);ze.get("pinch").set({enable:!0}),ze.get("rotate").set({enable:!0});for(const It in this.overrides)ze.get(It).set(this.overrides[It]);return ze}}Un.\u0275fac=function(ue){return new(ue||Un)},Un.\u0275prov=C.Yz7({token:Un,factory:Un.\u0275fac});class Vn extends Re{constructor(ue,ze,It,sn){super(ue),this._config=ze,this.console=It,this.loader=sn,this._loaderPromise=null}supports(ue){return!(!nt.hasOwnProperty(ue.toLowerCase())&&!this.isCustomEvent(ue)||!window.Hammer&&!this.loader)}addEventListener(ue,ze,It){const sn=this.manager.getZone();if(ze=ze.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||sn.runOutsideAngular(()=>this.loader());let yn=!1,In=()=>{yn=!0};return sn.runOutsideAngular(()=>this._loaderPromise.then(()=>{window.Hammer?yn||(In=this.addEventListener(ue,ze,It)):In=()=>{}}).catch(()=>{In=()=>{}})),()=>{In()}}return sn.runOutsideAngular(()=>{const yn=this._config.buildHammer(ue),In=function(qn){sn.runGuarded(function(){It(qn)})};return yn.on(ze,In),()=>{yn.off(ze,In),"function"==typeof yn.destroy&&yn.destroy()}})}isCustomEvent(ue){return this._config.events.indexOf(ue)>-1}}Vn.\u0275fac=function(ue){return new(ue||Vn)(C.LFG(t.K0),C.LFG(Ot),C.LFG(C.c2e),C.LFG(un,8))},Vn.\u0275prov=C.Yz7({token:Vn,factory:Vn.\u0275fac});class Fi{}Fi.\u0275fac=function(ue){return new(ue||Fi)},Fi.\u0275mod=C.oAB({type:Fi}),Fi.\u0275inj=C.cJS({providers:[{provide:Ne,useClass:Vn,multi:!0,deps:[t.K0,Ot,C.c2e,[new C.FiY,un]]},{provide:Ot,useClass:Un,deps:[]}]}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2441,7 +2637,7 @@ function(){return new Qt((0,y.LFG)(E.K0))},token:Qt,providedIn:"root"}),Qt.ctorP * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ -new y.GfV("12.2.16"); +class Cr{}Cr.\u0275fac=function(ue){return new(ue||Cr)},Cr.\u0275prov=C.Yz7({token:Cr,factory:function(ue){let ze=null;return ze=ue?new(ue||Cr):C.LFG(qi),ze},providedIn:"root"});class qi extends Cr{constructor(ue){super(),this._doc=ue}sanitize(ue,ze){if(null==ze)return null;switch(ue){case C.q3G.NONE:return ze;case C.q3G.HTML:return(0,C.qzn)(ze,"HTML")?(0,C.z3N)(ze):(0,C.EiD)(this._doc,String(ze)).toString();case C.q3G.STYLE:return(0,C.qzn)(ze,"Style")?(0,C.z3N)(ze):ze;case C.q3G.SCRIPT:if((0,C.qzn)(ze,"Script"))return(0,C.z3N)(ze);throw new Error("unsafe value used in a script context");case C.q3G.URL:return(0,C.qzn)(ze,"URL")?(0,C.z3N)(ze):(0,C.mCW)(String(ze));case C.q3G.RESOURCE_URL:if((0,C.qzn)(ze,"ResourceURL"))return(0,C.z3N)(ze);throw new Error("unsafe value used in a resource URL context (see https://g.co/ng/security#xss)");default:throw new Error(`Unexpected SecurityContext ${ue} (see https://g.co/ng/security#xss)`)}}bypassSecurityTrustHtml(ue){return(0,C.JVY)(ue)}bypassSecurityTrustStyle(ue){return(0,C.L6k)(ue)}bypassSecurityTrustScript(ue){return(0,C.eBb)(ue)}bypassSecurityTrustUrl(ue){return(0,C.LAX)(ue)}bypassSecurityTrustResourceUrl(ue){return(0,C.pB0)(ue)}}qi.\u0275fac=function(ue){return new(ue||qi)(C.LFG(t.K0))},qi.\u0275prov=C.Yz7({token:qi,factory:function(ue){let ze=null;return ze=ue?new ue:function Lr(At){return new qi(At.get(t.K0))}(C.LFG(C.zs3)),ze},providedIn:"root"}); /** * @license * Copyright Google LLC All Rights Reserved. @@ -2456,77 +2652,827 @@ new y.GfV("12.2.16"); * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ +new C.GfV("14.2.12"); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license - */},1494:function(It){ -/*! For license information please see index.js.LICENSE.txt */ -window,It.exports=function(we){var D={};function L(C){if(D[C])return D[C].exports;var t=D[C]={i:C,l:!1,exports:{}};return we[C].call(t.exports,t,t.exports,L),t.l=!0,t.exports}return L.m=we,L.c=D,L.d=function(C,t,R){L.o(C,t)||Object.defineProperty(C,t,{enumerable:!0,get:R})},L.r=function(C){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(C,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(C,"__esModule",{value:!0})},L.t=function(C,t){if(1&t&&(C=L(C)),8&t||4&t&&"object"==typeof C&&C&&C.__esModule)return C;var R=Object.create(null);if(L.r(R),Object.defineProperty(R,"default",{enumerable:!0,value:C}),2&t&&"string"!=typeof C)for(var V in C)L.d(R,V,function(F){return C[F]}.bind(null,V));return R},L.n=function(C){var t=C&&C.__esModule?function(){return C.default}:function(){return C};return L.d(t,"a",t),t},L.o=function(C,t){return Object.prototype.hasOwnProperty.call(C,t)},L.p="",L(L.s=237)}({100:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(6),R=C(14),V=C(19);function F(){return function(E,y,be){var ue=new R.Metadata(t.UNMANAGED_TAG,!0);V.tagParameter(E,y,be,ue)}}L.unmanaged=F},101:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(6),R=C(14),V=C(19);function F(E){return function(y,be,ue){var De=new R.Metadata(t.MULTI_INJECT_TAG,E);"number"==typeof ue?V.tagParameter(y,be,ue,De):V.tagProperty(y,be,De)}}L.multiInject=F},102:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(6),R=C(14),V=C(19);function F(E){return function(y,be,ue){var De=new R.Metadata(t.NAME_TAG,E);V.tagParameter(y,be,ue,De)}}L.targetName=F},103:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(11),R=C(6),V=C(14);function F(){return function(E,y,be){var ue=new V.Metadata(R.POST_CONSTRUCT,y);if(Reflect.hasOwnMetadata(R.POST_CONSTRUCT,E.constructor))throw new Error(t.MULTIPLE_POST_CONSTRUCT_METHODS);Reflect.defineMetadata(R.POST_CONSTRUCT,ue,E.constructor)}}L.postConstruct=F},104:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0}),L.multiBindToService=function(t){return function(R){return function(){for(var V=[],F=0;F= than the number of constructor arguments of its base class."},L.CONTAINER_OPTIONS_MUST_BE_AN_OBJECT="Invalid Container constructor argument. Container options must be an object.",L.CONTAINER_OPTIONS_INVALID_DEFAULT_SCOPE="Invalid Container option. Default scope must be a string ('singleton' or 'transient').",L.CONTAINER_OPTIONS_INVALID_AUTO_BIND_INJECTABLE="Invalid Container option. Auto bind injectable must be a boolean",L.CONTAINER_OPTIONS_INVALID_SKIP_BASE_CHECK="Invalid Container option. Skip base check must be a boolean",L.MULTIPLE_POST_CONSTRUCT_METHODS="Cannot apply @postConstruct decorator multiple times in the same class",L.POST_CONSTRUCT_ERROR=function(){for(var t=[],R=0;R=0;at--)(st=A[at])&&(Ye=(ze<3?st(Ye):ze>3?st(W,U,Ye):st(W,U))||Ye);return ze>3&&Ye&&Object.defineProperty(W,U,Ye),Ye},y=function(){function Xe(){this._isInitialsed=!1}return Xe.prototype.raiseEndTelemetryWith=function(A,W,U,Se){throw new Error("Method not implemented.")},Xe.prototype.initTelemetry=function(A){window.EkTelemetry&&(this.telemetryProvider=window.EkTelemetry,this._isInitialsed=!0,this.context=A,this.telemetryProvider.initialize(A.config))},Xe.prototype.initTelmetry=function(A,W,U,Se,ze){null!=this.context&&this.telemetryProvider?this.telemetryProvider.initialize(this.context.config):(this.config.pdata=A,this.config.channel=U,this.config.did=ze,this.config.sid=Se,this.actor=W)},Xe.prototype.setTelemetryAttributes=function(A,W,U,Se,ze){this.config.pdata=A,this.config.channel=U,this.config.did=ze,this.config.sid=Se,this.actor=W},Xe.prototype.formulateBasicConfigForTelemetry=function(){},Xe.prototype.initProducerData=function(A){if(this.pData)return this.pData;this.config.pdata=A},Xe.prototype.isTelemetryInitialised=function(){return this._isInitialsed},Xe.prototype.raiseInteractTelemetry=function(A){this.isTelemetryInitialised()&&this.telemetryProvider.interact(A.edata,A.options)},Xe.prototype.raiseInteractTelemetryWith=function(A,W,U,Se){},Xe.prototype.raiseImpressionTelemetry=function(A){this.isTelemetryInitialised()&&this.telemetryProvider.impression(A.edata,A.options)},Xe.prototype.raiseImpressionTelemetryWith=function(A,W,U,Se){},Xe.prototype.raiseLogTelemetry=function(A){this.isTelemetryInitialised()&&this.telemetryProvider.log(A.edata,A.options)},Xe.prototype.raiseLogTelemetryWith=function(A,W,U,Se){},Xe.prototype.raiseErrorTelemetry=function(A){this.isTelemetryInitialised()&&this.telemetryProvider.error(A.edata,A.options)},Xe.prototype.raiseErrorTelemetryWith=function(A,W,U,Se){},Xe.prototype.raiseAuditTelemetry=function(A){this.isTelemetryInitialised()&&this.telemetryProvider.audit(A.edata,A.options)},Xe.prototype.raiseAuditTelemetryWith=function(A,W,U,Se){},Xe.prototype.raiseStartTelemetry=function(A){this.isTelemetryInitialised()&&this.telemetryProvider.start(this.context.config,A.options.object.id,A.options.object.ver,A.edata,A.options)},Xe.prototype.raiseEndTelemetry=function(A){this.isTelemetryInitialised()&&this.telemetryProvider.end(A.edata,A.options)},Xe.prototype.raiseShareTelemetry=function(A){this.isTelemetryInitialised()&&this.telemetryProvider.share(A.edata,A.options)},Xe.prototype.raiseShareTelemetryWith=function(A,W,U,Se){},Xe.prototype.raiseFeedBackTelemetry=function(A){this.isTelemetryInitialised()&&this.telemetryProvider.share(A.edata,A.options)},Xe.prototype.raiseFeedBackTelemetryWith=function(A,W,U,Se){},Xe.prototype.raiseAssesTelemetry=function(A,W){this.isTelemetryInitialised()&&this.telemetryProvider.assess(A,W)},Xe.prototype.raiseResponseTelemetry=function(A,W){this.isTelemetryInitialised()&&this.telemetryProvider.response(A,W)},Xe.prototype.raiseSummaryTelemetry=function(A,W){this.isTelemetryInitialised()&&this.telemetryProvider.summary(A,W)},E([Object(F.injectable)()],Xe)}(),be={CONTAINER:Symbol.for("CONTAINER"),services:{telemetry:{TELEMETRY_SERVICE:Symbol.for("TELEMETRY_SERVICE"),PLAYER_TELEMETRY_SERVICE:Symbol.for("PLAYER_TELEMETRY_SERVICE")}}},ue=function(A,W,U,Se){var st,ze=arguments.length,Ye=ze<3?W:null===Se?Se=Object.getOwnPropertyDescriptor(W,U):Se;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)Ye=Reflect.decorate(A,W,U,Se);else for(var at=A.length-1;at>=0;at--)(st=A[at])&&(Ye=(ze<3?st(Ye):ze>3?st(W,U,Ye):st(W,U))||Ye);return ze>3&&Ye&&Object.defineProperty(W,U,Ye),Ye},De=function(A,W){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(A,W)},de=function(){function Xe(A){this.telemetryService=A}return Xe.prototype.onStartEvent=function(A,W){},Xe.prototype.onEndEvent=function(A,W){},Xe.prototype.onErrorEvent=function(A,W){},Xe.prototype.onHeartBeatEvent=function(A,W){"LOADED"===A.type||"PLAY"===A.type||this.telemetryService.raiseLogTelemetry({})},ue([Object(F.injectable)(),De("design:paramtypes",[V])],Xe)}(),Le=(ce=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(Xe,A){Xe.__proto__=A}||function(Xe,A){for(var W in A)A.hasOwnProperty(W)&&(Xe[W]=A[W])},function(Xe,A){function W(){this.constructor=Xe}ce(Xe,A),Xe.prototype=null===A?Object.create(A):(W.prototype=A.prototype,new W)}),pe=function(A,W,U,Se){var st,ze=arguments.length,Ye=ze<3?W:null===Se?Se=Object.getOwnPropertyDescriptor(W,U):Se;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)Ye=Reflect.decorate(A,W,U,Se);else for(var at=A.length-1;at>=0;at--)(st=A[at])&&(Ye=(ze<3?st(Ye):ze>3?st(W,U,Ye):st(W,U))||Ye);return ze>3&&Ye&&Object.defineProperty(W,U,Ye),Ye},Ne=function(A,W){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(A,W)},ge=function(A,W){return function(U,Se){W(U,Se,A)}},ye=function(Xe){function A(W){return Xe.call(this,W)||this}return Le(A,Xe),A.prototype.onHeartBeatEvent=function(W,U){},pe([Object(F.injectable)(),ge(0,Object(F.inject)(be.services.telemetry.TELEMETRY_SERVICE)),Ne("design:paramtypes",[V])],A)}(de),te=function(A,W,U,Se){return new(U||(U=Promise))(function(ze,Ye){function st(ft){try{St(Se.next(ft))}catch(ot){Ye(ot)}}function at(ft){try{St(Se.throw(ft))}catch(ot){Ye(ot)}}function St(ft){ft.done?ze(ft.value):new U(function(ot){ot(ft.value)}).then(st,at)}St((Se=Se.apply(A,W||[])).next())})},ve=function(A,W){var Se,ze,Ye,st,U={label:0,sent:function(){if(1&Ye[0])throw Ye[1];return Ye[1]},trys:[],ops:[]};return st={next:at(0),throw:at(1),return:at(2)},"function"==typeof Symbol&&(st[Symbol.iterator]=function(){return this}),st;function at(ft){return function(ot){return St([ft,ot])}}function St(ft){if(Se)throw new TypeError("Generator is already executing.");for(;U;)try{if(Se=1,ze&&(Ye=ze[2&ft[0]?"return":ft[0]?"throw":"next"])&&!(Ye=Ye.call(ze,ft[1])).done)return Ye;switch(ze=0,Ye&&(ft=[0,Ye.value]),ft[0]){case 0:case 1:Ye=ft;break;case 4:return U.label++,{value:ft[1],done:!1};case 5:U.label++,ze=ft[1],ft=[0];continue;case 7:ft=U.ops.pop(),U.trys.pop();continue;default:if(!((Ye=(Ye=U.trys).length>0&&Ye[Ye.length-1])||6!==ft[0]&&2!==ft[0])){U=0;continue}if(3===ft[0]&&(!Ye||ft[1]>Ye[0]&&ft[1]1)for(var te=1;te0)return!0;var fe=Ue.get(me);return fe.delete($),fe.size>0||Ue.delete(me),!0}function st(se,me){for(var $=se.length-1;$>=0;--$){var fe=(0,se[$])(me);if(!mn(fe)&&!Pn(fe)){if(!qt(fe))throw new TypeError;me=fe}}return me}function at(se,me,$,xe){for(var fe=se.length-1;fe>=0;--fe){var ht=(0,se[fe])(me,$,xe);if(!mn(ht)&&!Pn(ht)){if(!hn(ht))throw new TypeError;xe=ht}}return xe}function St(se,me,$){var xe=Ue.get(se);if(mn(xe)){if(!$)return;xe=new ye,Ue.set(se,xe)}var fe=xe.get(me);if(mn(fe)){if(!$)return;fe=new ye,xe.set(me,fe)}return fe}function ft(se,me,$){if(ot(se,me,$))return!0;var fe=Ot(me);return!Pn(fe)&&ft(se,fe,$)}function ot(se,me,$){var xe=St(me,$,!1);return!mn(xe)&&xt(xe.has(se))}function kt(se,me,$){if(ot(se,me,$))return _t(se,me,$);var fe=Ot(me);return Pn(fe)?void 0:kt(se,fe,$)}function _t(se,me,$){var xe=St(me,$,!1);if(!mn(xe))return xe.get(se)}function Xt(se,me,$,xe){St($,xe,!0).set(se,me)}function Jt(se,me){var $=Wt(se,me),xe=Ot(se);if(null===xe)return $;var fe=Jt(xe,me);if(fe.length<=0)return $;if($.length<=0)return fe;for(var $e=new te,ht=[],wt=0,Gt=$;wt=0&&wt=this._keys.length?(this._index=-1,this._keys=me,this._values=me):this._index++,{value:Gt,done:!1}}return{value:void 0,done:!0}},ht.prototype.throw=function(wt){throw this._index>=0&&(this._index=-1,this._keys=me,this._values=me),wt},ht.prototype.return=function(wt){return this._index>=0&&(this._index=-1,this._keys=me,this._values=me),{value:wt,done:!0}},ht}();return function(){function ht(){this._keys=[],this._values=[],this._cacheKey=se,this._cacheIndex=-2}return Object.defineProperty(ht.prototype,"size",{get:function(){return this._keys.length},enumerable:!0,configurable:!0}),ht.prototype.has=function(wt){return this._find(wt,!1)>=0},ht.prototype.get=function(wt){var Gt=this._find(wt,!1);return Gt>=0?this._values[Gt]:void 0},ht.prototype.set=function(wt,Gt){var un=this._find(wt,!0);return this._values[un]=Gt,this},ht.prototype.delete=function(wt){var Gt=this._find(wt,!1);if(Gt>=0){for(var un=this._keys.length,bn=Gt+1;bn0&&Ze[Ze.length-1])||6!==W[0]&&2!==W[0])){ve=0;continue}if(3===W[0]&&(!Ze||W[1]>Ze[0]&&W[1]0?ut.length:ye.length),U=Le(Ne,ye);return W.concat(U)}function De(Ne,ge,ye,te,ve){var Ue=ve[Ne.toString()]||[],Ke=pe(Ue),Ze=!0!==Ke.unmanaged,ut=te[Ne];if((ut=Ke.inject||Ke.multiInject||ut)instanceof t.LazyServiceIdentifer&&(ut=ut.unwrap()),Ze){if(!ge&&(ut===Object||ut===Function||void 0===ut)){var ze=R.MISSING_INJECT_ANNOTATION+" argument "+Ne+" in class "+ye+".";throw new Error(ze)}var Ye=new y.Target(V.TargetTypeEnum.ConstructorArgument,Ke.targetName,ut);return Ye.metadata=Ue,Ye}return null}function de(Ne,ge,ye,te,ve){for(var Ue=[],Ke=0;Ke0?Ze:ce(Ne,ye)}return 0}function pe(Ne){var ge={};return Ne.forEach(function(ye){ge[ye.key.toString()]=ye.value}),{inject:ge[F.INJECT_TAG],multiInject:ge[F.MULTI_INJECT_TAG],targetName:ge[F.NAME_TAG],unmanaged:ge[F.UNMANAGED_TAG]}}L.getDependencies=be,L.getBaseClassDependencyCount=ce},86:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=function(){function R(V){this.str=V}return R.prototype.startsWith=function(V){return 0===this.str.indexOf(V)},R.prototype.endsWith=function(V){var F="",E=V.split("").reverse().join("");return F=this.str.split("").reverse().join(""),this.startsWith.call({str:F},E)},R.prototype.contains=function(V){return-1!==this.str.indexOf(V)},R.prototype.equals=function(V){return this.str===V},R.prototype.value=function(){return this.str},R}();L.QueryableString=t},87:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(24),R=function(){function V(F,E,y,be,ue){this.id=t.id(),this.serviceIdentifier=F,this.parentContext=E,this.parentRequest=y,this.target=ue,this.childRequests=[],this.bindings=Array.isArray(be)?be:[be],this.requestScope=null===y?new Map:null}return V.prototype.addChildRequest=function(F,E,y){var be=new V(F,this.parentContext,this,E,y);return this.childRequests.push(be),be},V}();L.Request=R},88:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(11),R=C(18),V=C(58),F=C(30),E=C(89),y=function(de,Le,ce){try{return ce()}catch(pe){throw V.isStackOverflowExeption(pe)?new Error(t.CIRCULAR_DEPENDENCY_IN_FACTORY(de,Le.toString())):pe}},be=function De(de){return function(Le){Le.parentContext.setCurrentRequest(Le);var ce=Le.bindings,pe=Le.childRequests,Ne=Le.target&&Le.target.isArray(),ge=!(Le.parentRequest&&Le.parentRequest.target&&Le.target&&Le.parentRequest.target.matchesArray(Le.target.serviceIdentifier));if(Ne&&ge)return pe.map(function(Ze){return De(de)(Ze)});var ye=null;if(!Le.target.isOptional()||0!==ce.length){var te=ce[0],ve=te.scope===R.BindingScopeEnum.Singleton,Ue=te.scope===R.BindingScopeEnum.Request;if(ve&&te.activated)return te.cache;if(Ue&&null!==de&&de.has(te.id))return de.get(te.id);if(te.type===R.BindingTypeEnum.ConstantValue)ye=te.cache;else if(te.type===R.BindingTypeEnum.Function)ye=te.cache;else if(te.type===R.BindingTypeEnum.Constructor)ye=te.implementationType;else if(te.type===R.BindingTypeEnum.DynamicValue&&null!==te.dynamicValue)ye=y("toDynamicValue",te.serviceIdentifier,function(){return te.dynamicValue(Le.parentContext)});else if(te.type===R.BindingTypeEnum.Factory&&null!==te.factory)ye=y("toFactory",te.serviceIdentifier,function(){return te.factory(Le.parentContext)});else if(te.type===R.BindingTypeEnum.Provider&&null!==te.provider)ye=y("toProvider",te.serviceIdentifier,function(){return te.provider(Le.parentContext)});else{if(te.type!==R.BindingTypeEnum.Instance||null===te.implementationType){var Ke=F.getServiceIdentifierAsString(Le.serviceIdentifier);throw new Error(t.INVALID_BINDING_TYPE+" "+Ke)}ye=E.resolveInstance(te.implementationType,pe,De(de))}return"function"==typeof te.onActivation&&(ye=te.onActivation(Le.parentContext,ye)),ve&&(te.cache=ye,te.activated=!0),Ue&&null!==de&&!de.has(te.id)&&de.set(te.id,ye),ye}}};function ue(De){return be(De.plan.rootRequest.requestScope)(De.plan.rootRequest)}L.resolve=ue},89:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(11),R=C(18),V=C(6);function F(ue,De,de){var Le=De.filter(function(pe){return null!==pe.target&&pe.target.type===R.TargetTypeEnum.ClassProperty}),ce=Le.map(de);return Le.forEach(function(pe,Ne){var ge="";ge=pe.target.name.value();var ye=ce[Ne];ue[ge]=ye}),ue}function E(ue,De){return new(ue.bind.apply(ue,[void 0].concat(De)))}function y(ue,De){if(Reflect.hasMetadata(V.POST_CONSTRUCT,ue)){var de=Reflect.getMetadata(V.POST_CONSTRUCT,ue);try{De[de.value]()}catch(Le){throw new Error(t.POST_CONSTRUCT_ERROR(ue.name,Le.message))}}}function be(ue,De,de){var Le=null;return Le=De.length>0?F(Le=E(ue,De.filter(function(Ne){return null!==Ne.target&&Ne.target.type===R.TargetTypeEnum.ConstructorArgument}).map(de)),De,de):new ue,y(ue,Le),Le}L.resolveInstance=be},90:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(11),R=C(18),V=C(91),F=C(61),E=function(){function y(be){this._binding=be}return y.prototype.to=function(be){return this._binding.type=R.BindingTypeEnum.Instance,this._binding.implementationType=be,new V.BindingInWhenOnSyntax(this._binding)},y.prototype.toSelf=function(){if("function"!=typeof this._binding.serviceIdentifier)throw new Error(""+t.INVALID_TO_SELF_VALUE);var be=this._binding.serviceIdentifier;return this.to(be)},y.prototype.toConstantValue=function(be){return this._binding.type=R.BindingTypeEnum.ConstantValue,this._binding.cache=be,this._binding.dynamicValue=null,this._binding.implementationType=null,new F.BindingWhenOnSyntax(this._binding)},y.prototype.toDynamicValue=function(be){return this._binding.type=R.BindingTypeEnum.DynamicValue,this._binding.cache=null,this._binding.dynamicValue=be,this._binding.implementationType=null,new V.BindingInWhenOnSyntax(this._binding)},y.prototype.toConstructor=function(be){return this._binding.type=R.BindingTypeEnum.Constructor,this._binding.implementationType=be,new F.BindingWhenOnSyntax(this._binding)},y.prototype.toFactory=function(be){return this._binding.type=R.BindingTypeEnum.Factory,this._binding.factory=be,new F.BindingWhenOnSyntax(this._binding)},y.prototype.toFunction=function(be){if("function"!=typeof be)throw new Error(t.INVALID_FUNCTION_BINDING);var ue=this.toConstantValue(be);return this._binding.type=R.BindingTypeEnum.Function,ue},y.prototype.toAutoFactory=function(be){return this._binding.type=R.BindingTypeEnum.Factory,this._binding.factory=function(ue){return function(){return ue.container.get(be)}},new F.BindingWhenOnSyntax(this._binding)},y.prototype.toProvider=function(be){return this._binding.type=R.BindingTypeEnum.Provider,this._binding.provider=be,new F.BindingWhenOnSyntax(this._binding)},y.prototype.toService=function(be){this.toDynamicValue(function(ue){return ue.container.get(be)})},y}();L.BindingToSyntax=E},91:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(92),R=C(44),V=C(45),F=function(){function E(y){this._binding=y,this._bindingWhenSyntax=new V.BindingWhenSyntax(this._binding),this._bindingOnSyntax=new R.BindingOnSyntax(this._binding),this._bindingInSyntax=new t.BindingInSyntax(y)}return E.prototype.inRequestScope=function(){return this._bindingInSyntax.inRequestScope()},E.prototype.inSingletonScope=function(){return this._bindingInSyntax.inSingletonScope()},E.prototype.inTransientScope=function(){return this._bindingInSyntax.inTransientScope()},E.prototype.when=function(y){return this._bindingWhenSyntax.when(y)},E.prototype.whenTargetNamed=function(y){return this._bindingWhenSyntax.whenTargetNamed(y)},E.prototype.whenTargetIsDefault=function(){return this._bindingWhenSyntax.whenTargetIsDefault()},E.prototype.whenTargetTagged=function(y,be){return this._bindingWhenSyntax.whenTargetTagged(y,be)},E.prototype.whenInjectedInto=function(y){return this._bindingWhenSyntax.whenInjectedInto(y)},E.prototype.whenParentNamed=function(y){return this._bindingWhenSyntax.whenParentNamed(y)},E.prototype.whenParentTagged=function(y,be){return this._bindingWhenSyntax.whenParentTagged(y,be)},E.prototype.whenAnyAncestorIs=function(y){return this._bindingWhenSyntax.whenAnyAncestorIs(y)},E.prototype.whenNoAncestorIs=function(y){return this._bindingWhenSyntax.whenNoAncestorIs(y)},E.prototype.whenAnyAncestorNamed=function(y){return this._bindingWhenSyntax.whenAnyAncestorNamed(y)},E.prototype.whenAnyAncestorTagged=function(y,be){return this._bindingWhenSyntax.whenAnyAncestorTagged(y,be)},E.prototype.whenNoAncestorNamed=function(y){return this._bindingWhenSyntax.whenNoAncestorNamed(y)},E.prototype.whenNoAncestorTagged=function(y,be){return this._bindingWhenSyntax.whenNoAncestorTagged(y,be)},E.prototype.whenAnyAncestorMatches=function(y){return this._bindingWhenSyntax.whenAnyAncestorMatches(y)},E.prototype.whenNoAncestorMatches=function(y){return this._bindingWhenSyntax.whenNoAncestorMatches(y)},E.prototype.onActivation=function(y){return this._bindingOnSyntax.onActivation(y)},E}();L.BindingInWhenOnSyntax=F},92:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(18),R=C(61),V=function(){function F(E){this._binding=E}return F.prototype.inRequestScope=function(){return this._binding.scope=t.BindingScopeEnum.Request,new R.BindingWhenOnSyntax(this._binding)},F.prototype.inSingletonScope=function(){return this._binding.scope=t.BindingScopeEnum.Singleton,new R.BindingWhenOnSyntax(this._binding)},F.prototype.inTransientScope=function(){return this._binding.scope=t.BindingScopeEnum.Transient,new R.BindingWhenOnSyntax(this._binding)},F}();L.BindingInSyntax=V},93:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=function(){function R(){}return R.of=function(V,F){var E=new R;return E.bindings=V,E.middleware=F,E},R}();L.ContainerSnapshot=t},94:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(11),R=function(){function V(){this._map=new Map}return V.prototype.getMap=function(){return this._map},V.prototype.add=function(F,E){if(null==F)throw new Error(t.NULL_ARGUMENT);if(null==E)throw new Error(t.NULL_ARGUMENT);var y=this._map.get(F);void 0!==y?(y.push(E),this._map.set(F,y)):this._map.set(F,[E])},V.prototype.get=function(F){if(null==F)throw new Error(t.NULL_ARGUMENT);var E=this._map.get(F);if(void 0!==E)return E;throw new Error(t.KEY_NOT_FOUND)},V.prototype.remove=function(F){if(null==F)throw new Error(t.NULL_ARGUMENT);if(!this._map.delete(F))throw new Error(t.KEY_NOT_FOUND)},V.prototype.removeByCondition=function(F){var E=this;this._map.forEach(function(y,be){var ue=y.filter(function(De){return!F(De)});ue.length>0?E._map.set(be,ue):E._map.delete(be)})},V.prototype.hasKey=function(F){if(null==F)throw new Error(t.NULL_ARGUMENT);return this._map.has(F)},V.prototype.clone=function(){var F=new V;return this._map.forEach(function(E,y){E.forEach(function(be){return F.add(y,be.clone())})}),F},V.prototype.traverse=function(F){this._map.forEach(function(E,y){F(y,E)})},V}();L.Lookup=R},95:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(24),R=function(){function F(E){this.id=t.id(),this.registry=E}return F}();L.ContainerModule=R;var V=function(){function F(E){this.id=t.id(),this.registry=E}return F}();L.AsyncContainerModule=V},96:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(11),R=C(6);function V(){return function(F){if(Reflect.hasOwnMetadata(R.PARAM_TYPES,F))throw new Error(t.DUPLICATED_INJECTABLE_DECORATOR);var E=Reflect.getMetadata(R.DESIGN_PARAM_TYPES,F)||[];return Reflect.defineMetadata(R.PARAM_TYPES,E,F),F}}L.injectable=V},97:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(14),R=C(19);function V(F,E){return function(y,be,ue){var De=new t.Metadata(F,E);"number"==typeof ue?R.tagParameter(y,be,ue,De):R.tagProperty(y,be,De)}}L.tagged=V},98:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(6),R=C(14),V=C(19);function F(E){return function(y,be,ue){var De=new R.Metadata(t.NAMED_TAG,E);"number"==typeof ue?V.tagParameter(y,be,ue,De):V.tagProperty(y,be,De)}}L.named=F},99:function(D,L,C){"use strict";Object.defineProperty(L,"__esModule",{value:!0});var t=C(6),R=C(14),V=C(19);function F(){return function(E,y,be){var ue=new R.Metadata(t.OPTIONAL_TAG,!0);"number"==typeof be?V.tagParameter(E,y,be,ue):V.tagProperty(E,y,ue)}}L.optional=F}})},1507:function(It,we,D){"use strict";D.d(we,{T_:function(){return ze},gQ:function(){return mn},uY:function(){return U},N3:function(){return Se},u_:function(){return ft},ye:function(){return st},bf:function(){return St},Z2:function(){return at},vM:function(){return Wt}});var L=D(47),C=D(7444),t=D(3587),R=D(4364),V=D(1707),F=D(8373),E=D(2516),y=function(xt){return{showDownload:xt}};function be(pt,xt){if(1&pt&&(t.O4$(),t.TgZ(0,"text",229),t.TgZ(1,"tspan",230),t._uU(2),t.qZA(),t.TgZ(3,"tspan",231),t._uU(4),t.qZA(),t.qZA()),2&pt){var je=t.oxw();t.xp6(2),t.Oqu(je.outcomeLabel),t.xp6(2),t.Oqu(je.outcome)}}function ue(pt,xt){if(1&pt&&(t.O4$(),t.TgZ(0,"g",232),t.TgZ(1,"g",233),t._UZ(2,"polygon",234),t._UZ(3,"path",235),t.qZA(),t.TgZ(4,"text",236),t.TgZ(5,"tspan",237),t._uU(6),t.qZA(),t.qZA(),t.qZA()),2&pt){var je=t.oxw();t.xp6(6),t.Oqu(je.timeSpentLabel)}}function De(pt,xt){1&pt&&(t.O4$(),t.TgZ(0,"svg",238),t.TgZ(1,"defs"),t.TgZ(2,"linearGradient",239),t._UZ(3,"stop",240),t._UZ(4,"stop",241),t.qZA(),t.qZA(),t.TgZ(5,"g",242),t._UZ(6,"path",243),t._UZ(7,"path",244),t.qZA(),t.qZA())}function de(pt,xt){1&pt&&(t.O4$(),t.TgZ(0,"svg",238),t.TgZ(1,"defs"),t.TgZ(2,"linearGradient",239),t._UZ(3,"stop",240),t._UZ(4,"stop",241),t.qZA(),t.qZA(),t.TgZ(5,"g",242),t._UZ(6,"path",243),t._UZ(7,"path",245),t.qZA(),t.qZA())}function Le(pt,xt){if(1&pt){var je=t.EpF();t.TgZ(0,"div",246),t.NdJ("click",function(){return t.CHM(je),t.oxw().exitContent.emit({type:"EXIT"})}),t.O4$(),t.TgZ(1,"svg",247),t.TgZ(2,"defs"),t.TgZ(3,"linearGradient",248),t._UZ(4,"stop",240),t._UZ(5,"stop",241),t.qZA(),t.qZA(),t.TgZ(6,"g",242),t._UZ(7,"path",249),t._UZ(8,"path",250),t.qZA(),t.qZA(),t.kcU(),t.TgZ(9,"div",226),t._uU(10,"Exit"),t.qZA(),t.qZA()}}function ce(pt,xt){if(1&pt){var je=t.EpF();t.ynx(0),t.TgZ(1,"div",251),t._uU(2,"Up Next"),t.qZA(),t.TgZ(3,"div",252),t.NdJ("click",function(){return t.CHM(je),t.oxw().playNext()}),t.TgZ(4,"div",253),t._uU(5),t.qZA(),t.TgZ(6,"div",254),t._UZ(7,"img",255),t.qZA(),t.qZA(),t.BQk()}if(2&pt){var rn=t.oxw();t.xp6(5),t.Oqu(rn.nextContent.name)}}function Ne(pt,xt){if(1&pt){var je=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(At){return t.CHM(je),t.oxw().emitSideBarEvent(At,"SHARE")})("keydown.enter",function(At){return t.CHM(je),t.oxw().emitSideBarEvent(At,"SHARE")}),t._UZ(1,"span",9),t._uU(2," Share"),t.qZA()}}function ge(pt,xt){if(1&pt){var je=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(At){return t.CHM(je),t.oxw().showDownloadPopup(At,"DOWNLOAD_MENU")})("keydown.enter",function(At){t.CHM(je);var Je=t.oxw();return Je.closeNav(At),Je.showDownloadPopup(At,"DOWNLOAD_MENU")}),t._UZ(1,"span",10),t._uU(2," Download"),t.qZA()}}function ye(pt,xt){if(1&pt){var je=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(At){t.CHM(je);var Je=t.oxw();return Je.closeNav(At),Je.emitSideBarEvent(At,"PRINT")})("keydown.enter",function(At){return t.CHM(je),t.oxw().emitSideBarEvent(At,"PRINT")}),t._UZ(1,"span",11),t._uU(2," Print"),t.qZA()}}function te(pt,xt){if(1&pt){var je=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(At){t.CHM(je);var Je=t.oxw();return Je.closeNav(At),Je.emitSideBarEvent(At,"EXIT")})("keydown.enter",function(At){t.CHM(je);var Je=t.oxw();return Je.closeNav(At),Je.emitSideBarEvent(At,"EXIT")}),t._UZ(1,"span",12),t._uU(2," Exit"),t.qZA()}}function ve(pt,xt){if(1&pt){var je=t.EpF();t.TgZ(0,"sb-player-download-popup",13),t.NdJ("hideDownloadPopUp",function(Je){return t.CHM(je),t.oxw().hideDownloadPopUp(Je)})("downloadEvent",function(Je){return t.CHM(je),t.oxw().sidebarEvent.emit(Je)}),t.qZA()}if(2&pt){var rn=t.oxw();t.Q6J("title",rn.title)("showDownloadPopUp",rn.showDownloadPopUp)}}var Ue=function(xt){return{"animated animateBg":xt}};function Ke(pt,xt){1&pt&&(t.TgZ(0,"div",1),t._uU(1," You are offline\n"),t.qZA())}var Ze=':root{--sdk-navigation-arrows-bg:#fff;--sdk-navigation-arrows-border:#F2F2F2;--sdk-navigation-arrows-after:#999999;--sdk-player-nextIcon:#fff}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]{height:2rem;width:4rem;cursor:pointer;border-radius:1rem;background-color:var(--sdk-navigation-arrows-bg);box-shadow:var(--sbt-box-shadow-3px);border:1px solid var(--sdk-navigation-arrows-border);-webkit-transition:.1s ease-in;transition:.1s ease-in}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]:hover{border:1px solid transparent;background:var(--primary-color)}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]::after{display:none;content:"";width:.5rem;height:.5rem;border-top:.125rem solid var(--sdk-navigation-arrows-after);border-left:.125rem solid var(--sdk-navigation-arrows-after)}[_nghost-%COMP%] .player-nextIcon[_ngcontent-%COMP%]::after{content:"";-webkit-transform:rotate(135deg);transform:rotate(135deg);border-top:.125rem solid var(--sdk-player-nextIcon);border-left:.125rem solid var(--sdk-player-nextIcon)}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]:hover.player-nextIcon::after{content:"";border-top:.125rem solid var(--sdk-player-nextIcon);border-left:.125rem solid var(--sdk-player-nextIcon)}[_nghost-%COMP%] .navigation-arrows.player-nextIcon[_ngcontent-%COMP%]{background:var(--primary-color)}button[_ngcontent-%COMP%]{-webkit-appearance:none;background:0 0;border:0}.paginate[_ngcontent-%COMP%]{position:relative;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.paginate[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{position:absolute;top:42%;left:40%;width:.75rem;height:.1875rem;border-radius:.09375rem;background:var(--white);-webkit-transition:.15s;transition:.15s}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{-webkit-transform-origin:0 50%;transform-origin:0 50%;background-color:var(--gray-800)}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,-1px) rotate(40deg);transform:translate(0,-1px) rotate(40deg)}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,1px) rotate(-40deg);transform:translate(0,1px) rotate(-40deg)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]{background-color:var(--white)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,0) rotate(30deg);transform:translate(0,0) rotate(30deg)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,1px) rotate(-30deg);transform:translate(0,1px) rotate(-30deg)}.paginate.left[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(-.3125rem,0) rotate(0);transform:translate(-.3125rem,0) rotate(0)}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,.0625rem) rotate(40deg);transform:translate(0,.0625rem) rotate(40deg)}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,-.0625rem) rotate(-40deg);transform:translate(0,-.0625rem) rotate(-40deg)}.paginate.right[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,.0625rem) rotate(30deg);transform:translate(0,.0625rem) rotate(30deg)}.paginate.right[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,.0625rem) rotate(-30deg);transform:translate(0,.0625rem) rotate(-30deg)}.paginate.right[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(.3125rem,0) rotate(0);transform:translate(.3125rem,0) rotate(0)}.paginate[data-state=disabled][_ngcontent-%COMP%]{opacity:.3;cursor:default} html[dir=rtl] .player-nextIcon, html[dir=rtl] .player-previousIcon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}';function ut(pt,xt){if(1&pt){var je=t.EpF();t.TgZ(0,"div",6),t.TgZ(1,"img",7),t.NdJ("click",function(){return t.CHM(je),t.oxw().rotateCW()}),t.qZA(),t.qZA()}}function Xe(pt,xt){if(1&pt){var je=t.EpF();t.TgZ(0,"div",8),t.TgZ(1,"button",9),t.NdJ("click",function(){return t.CHM(je),t.oxw().zoomOut()}),t.qZA(),t.TgZ(2,"button",10),t.NdJ("click",function(){return t.CHM(je),t.oxw().zoomIn()}),t.qZA(),t.qZA()}}function A(pt,xt){if(1&pt){var je=t.EpF();t.TgZ(0,"div",11),t.TgZ(1,"input",12),t.NdJ("ngModelChange",function(Je){return t.CHM(je),t.oxw().page=Je}),t.qZA(),t.TgZ(2,"span",13),t.NdJ("click",function(){return t.CHM(je),t.oxw().gotoPage()}),t._UZ(3,"img",14),t.qZA(),t.TgZ(4,"span",15),t._uU(5,"/"),t.qZA(),t.TgZ(6,"span",16),t._uU(7),t.qZA(),t.qZA()}if(2&pt){var rn=t.oxw();t.xp6(1),t.Q6J("ngModel",rn.page)("max",rn.totalPages),t.xp6(6),t.Oqu(rn.totalPages)}}function W(pt,xt){if(1&pt){var je=t.EpF();t.TgZ(0,"div",17),t.TgZ(1,"div",18),t.TgZ(2,"sb-player-previous-navigation",19),t.NdJ("previousAction",function(At){return t.CHM(je),t.oxw().actions.emit(At)}),t.qZA(),t.TgZ(3,"sb-player-next-navigation",20),t.NdJ("nextAction",function(At){return t.CHM(je),t.oxw().actions.emit(At)}),t.qZA(),t.qZA(),t.qZA()}}var U={contentCompatibility:"CPV2_CONT_COMP_01",contentLoadFails:"CPV2_CONT_LOAD_FAIL_01",internetConnectivity:"CPV2_INT_CONNECT_01",streamingUrlSupport:"CPV2_INT_STREAMINGURL_01"},Se={contentCompatibility:"content compatibility error",contentLoadFails:"content load failed",internetConnectivity:"content failed to load , No Internet Available",streamingUrlSupport:"streaming url is not supported",contentPlayFailedHeader:"Unable to load content",contentPlayFailTitle:"Refresh and try again later"},ze=function(){function pt(){var xt=this;(0,L.Z)(this,pt),this.playerContentCompatibiltyLevel=5,this.getInternetConnectivityError=new t.vpe,this.setInternetConnectivityError=function(){var je=new Error;je.message=Se.internetConnectivity,je.name=U.internetConnectivity,xt.getInternetConnectivityError.emit({error:je})},this.initInternetConnectivityError()}return(0,C.Z)(pt,[{key:"checkContentCompatibility",value:function(je){if(je>this.playerContentCompatibiltyLevel){var rn=new Error;return rn.message="Player supports ".concat(this.playerContentCompatibiltyLevel,"\n but content compatibility is ").concat(je),rn.name="contentCompatibily",{error:rn,isCompitable:!1}}return{error:null,isCompitable:!0}}},{key:"initInternetConnectivityError",value:function(){window.addEventListener("offline",this.setInternetConnectivityError)}},{key:"ngOnDestroy",value:function(){window.removeEventListener("offline",this.setInternetConnectivityError)}}]),pt}();ze.\u0275fac=function(xt){return new(xt||ze)},ze.ctorParameters=function(){return[]},ze.\u0275prov=(0,t.Yz7)({factory:function(){return new ze},token:ze,providedIn:"root"});var Ye=function(){function pt(){(0,L.Z)(this,pt),this.downloadEvent=new t.vpe,this.hideDownloadPopUp=new t.vpe,this.showDownloadPopUp=!1}return(0,C.Z)(pt,[{key:"hideDownloadPopup",value:function(je,rn){this.disabledHandle.disengage(),this.hideDownloadPopUp.emit({event:je,type:rn})}},{key:"ngOnChanges",value:function(je){for(var rn in je)if(je.hasOwnProperty(rn)&&"showDownloadPopUp"===rn){this.showDownloadPopUp=je[rn].currentValue||!1;var At=document.querySelector(".file-download");this.disabledHandle=F.Z.disabled({filter:At})}}},{key:"download",value:function(je,rn){this.downloadEvent.emit({event:je,type:rn}),this.disabledHandle.disengage()}}]),pt}();Ye.\u0275fac=function(xt){return new(xt||Ye)},Ye.\u0275cmp=t.Xpm({type:Ye,selectors:[["sb-player-download-popup"]],inputs:{showDownloadPopUp:"showDownloadPopUp",title:"title"},outputs:{downloadEvent:"downloadEvent",hideDownloadPopUp:"hideDownloadPopUp"},features:[t.TTD],decls:16,vars:4,consts:[[1,"file-download",3,"ngClass"],[1,"file-download__overlay"],["aria-modal","true","aria-labelledby","Download Content","aria-describedby","Dialog to download content",1,"file-download__popup"],[1,"close-btn",3,"click"],["type","button","id","close","data-animation","showShadow","aria-label","player-close-btn",1,"close-icon"],[1,"file-download__metadata"],[1,"file-download__title","text-left"],[1,"file-download__text","text-left"],[1,"file-download__size"],[1,"file-download__action-btns"],["type","button","id","cancel",1,"sb-btn","sb-btn-normal","sb-btn-outline-primary","sb-btn-radius","cancel-btn","mr-8",3,"click"],["type","button","id","download",1,"sb-btn","sb-btn-normal","sb-btn-primary","sb-btn-radius","download-btn",3,"click"]],template:function(xt,je){1&xt&&(t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.TgZ(2,"div",2),t.TgZ(3,"div",3),t.NdJ("click",function(At){return je.hideDownloadPopup(At,"DOWNLOAD_POPUP_CLOSE")}),t._UZ(4,"button",4),t.qZA(),t.TgZ(5,"div",5),t.TgZ(6,"h5",6),t._uU(7,"Confirm Download"),t.qZA(),t.TgZ(8,"div",7),t._uU(9),t.qZA(),t._UZ(10,"div",8),t.TgZ(11,"div",9),t.TgZ(12,"button",10),t.NdJ("click",function(At){return je.hideDownloadPopup(At,"DOWNLOAD_POPUP_CANCEL")}),t._uU(13,"Cancel"),t.qZA(),t.TgZ(14,"button",11),t.NdJ("click",function(At){return je.download(At,"DOWNLOAD")}),t._uU(15,"Download"),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA()),2&xt&&(t.Q6J("ngClass",t.VKq(2,y,je.showDownloadPopUp)),t.xp6(9),t.hij('"',je.title,'" will be saved on your device.'))},directives:[R.mk],styles:['[_nghost-%COMP%] .file-download[_ngcontent-%COMP%]{width:100%;height:100%;position:absolute;top:0;left:0;z-index:99;-webkit-transition:.3s;transition:.3s;opacity:0;visibility:hidden}[_nghost-%COMP%] .file-download__overlay[_ngcontent-%COMP%]{width:100%;height:100%;background:rgba(var(--rc-rgba-black),.5);display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;-webkit-transition:.3s;transition:.3s;visibility:hidden}[_nghost-%COMP%] .file-download__popup[_ngcontent-%COMP%]{width:90%;max-width:22.5rem;min-height:13.125rem;background:var(--white);border-radius:1rem;box-shadow:0 0 1.5em 0 rgba(var(--rc-rgba-black),.22);padding:1.5rem;position:relative;-webkit-transition:.3s ease-in;transition:.3s ease-in;-webkit-transform:scale(.5);transform:scale(.5)}[_nghost-%COMP%] .file-download__close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem;width:1.5rem;height:1.5rem;cursor:pointer}[_nghost-%COMP%] .file-download__close-btn[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{max-width:100%}[_nghost-%COMP%] .file-download__metadata[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;height:100%}[_nghost-%COMP%] .file-download__title[_ngcontent-%COMP%]{font-size:1rem;font-weight:700;line-height:1.375rem;word-break:break-word}[_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%]{color:var(--gray-400);word-break:break-word}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%]{color:var(--black)}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%]{font-size:.875rem;line-height:1.25rem}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__title[_ngcontent-%COMP%]{margin:0 0 1.5em}[_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:end;justify-content:flex-end}[_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%] .cancel-btn[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%] .download-btn[_ngcontent-%COMP%]{outline:0;border:none;font-size:.75rem;text-transform:uppercase;cursor:pointer;line-height:normal}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%] .file-download__popup[_ngcontent-%COMP%]{-webkit-transform:scale(1);transform:scale(1);visibility:visible}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%]{visibility:visible;opacity:1}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%] .file-download__overlay[_ngcontent-%COMP%]{visibility:visible}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]{width:1.875rem;height:1.875rem;background:0 0;border-radius:50%;cursor:pointer;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center;padding:0}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::after{content:"";-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::before{content:"";-webkit-transform:rotate(45deg);transform:rotate(45deg)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:after, [_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:before{content:"";width:1.25rem;height:.125rem;position:absolute;background-color:var(--black)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]{box-shadow:0 0 0 0 var(--red) inset;-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775);border:0 solid var(--white)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:before{-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:after{-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover{box-shadow:0 0 0 .25rem var(--red) inset}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:before{-webkit-transform:scale(.7) rotate(45deg);transform:scale(.7) rotate(45deg);-webkit-transition-delay:.1s;transition-delay:.1s;background-color:var(--red)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:after{-webkit-transform:scale(.7) rotate(-45deg);transform:scale(.7) rotate(-45deg);-webkit-transition-delay:.1s;transition-delay:.1s;background-color:var(--red)} html[dir=rtl] .close-btn{left:.75rem;right:auto}']}),Ye.propDecorators={title:[{type:t.IIB}],downloadEvent:[{type:t.r_U}],hideDownloadPopUp:[{type:t.r_U}],showDownloadPopUp:[{type:t.IIB}]};var st=function(){function pt(){(0,L.Z)(this,pt),this.showReplay=!0,this.replayContent=new t.vpe,this.exitContent=new t.vpe,this.playNextContent=new t.vpe}return(0,C.Z)(pt,[{key:"ngOnInit",value:function(){this.subscription=(0,E.R)(document,"keydown").subscribe(function(je){"Enter"===je.key&&(je.stopPropagation(),document.activeElement.click())})}},{key:"playNext",value:function(){this.playNextContent.emit({name:this.nextContent.name,identifier:this.nextContent.identifier,type:"NEXT_CONTENT_PLAY"})}},{key:"replay",value:function(){this.showReplay&&this.replayContent.emit({type:"REPLAY"})}},{key:"ngOnDestroy",value:function(){this.subscription&&this.subscription.unsubscribe()}}]),pt}();st.\u0275fac=function(xt){return new(xt||st)},st.\u0275cmp=t.Xpm({type:st,selectors:[["sb-player-end-page"]],inputs:{showReplay:"showReplay",showExit:"showExit",contentName:"contentName",outcome:"outcome",outcomeLabel:"outcomeLabel",userName:"userName",timeSpentLabel:"timeSpentLabel",nextContent:"nextContent"},outputs:{replayContent:"replayContent",exitContent:"exitContent",playNextContent:"playNextContent"},ngContentSelectors:["*"],decls:237,vars:9,consts:[[1,"player-endpage"],[1,"player-endpage__left-panel"],[1,"user-score-card"],["width","100%","height","100%","viewBox","0 0 250 250","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",0,"xmlns","xhtml","http://www.w3.org/1999/xhtml"],["id","filter-1"],["in","SourceGraphic","type","matrix","values",""],["x1","-19.3154721%","y1","50%","x2","100%","y2","50%","id","linearGradient-1"],["stop-color","#43A981","offset","0%"],["stop-color","#1D7E58","offset","100%"],["x1","0%","y1","0%","x2","101.719666%","y2","100%","id","linearGradient-2"],["stop-color","#FFCD55","offset","0%"],["stop-color","#FFD955","offset","100%"],["d","M124.02,185.665 C116.138,185.665 109.713,175.367 102.434,173.416 C94.911,171.399 84.204,177.031 77.612,173.212 C70.933,169.339 70.491,157.213 65.068,151.786 C59.642,146.36 47.514,145.92 43.643,139.24 C39.825,132.649 45.454,121.942 43.438,114.42 C41.487,107.143 31.19,100.717 31.19,92.831 C31.19,84.948 41.487,78.521 43.438,71.245 C45.454,63.721 39.825,53.013 43.644,46.423 C47.516,39.742 59.643,39.304 65.068,33.878 C70.493,28.452 70.933,16.325 77.612,12.453 C84.206,8.635 94.911,14.266 102.434,12.248 C109.713,10.297 116.138,-1.42108547e-14 124.02,-1.42108547e-14 C131.907,-1.42108547e-14 138.332,10.297 145.608,12.248 C153.132,14.266 163.839,8.635 170.429,12.454 C177.11,16.325 177.55,28.453 182.976,33.879 C188.403,39.305 200.531,39.743 204.401,46.425 C208.22,53.015 202.589,63.722 204.606,71.245 C206.558,78.521 216.854,84.948 216.854,92.831 C216.854,100.717 206.558,107.143 204.606,114.421 C202.589,121.943 208.22,132.651 204.4,139.242 C200.529,145.923 188.401,146.361 182.975,151.787 C177.55,157.214 177.11,169.34 170.429,173.212 C163.839,177.031 153.132,171.4 145.608,173.416 C138.332,175.367 131.907,185.665 124.02,185.665","id","path-3"],["x","-6.5%","y","-6.5%","width","112.9%","height","112.9%","filterUnits","objectBoundingBox","id","filter-4"],["stdDeviation","11.5","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0.0914162133 0 0 0 0 0.159459438 0 0 0 0 0.537477355 0 0 0 1 0","type","matrix","in","shadowInnerInner1"],["x1","50%","y1","0.0901442308%","x2","50%","y2","99.6203016%","id","linearGradient-5"],["stop-color","#1D6349","offset","0%"],["stop-color","#1D6349","offset","100%"],["id","text-8","x","55","y","16","text-anchor","middle","fill","#FFFFFE",4,"ngIf"],["id","player-Player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","endgame-l2","transform","translate(-39.000000, -65.000000)"],["id","Group-2","transform","translate(39.500000, 65.000000)"],["filter","url(#filter-1)","id","Group"],["transform","translate(4.000000, 4.000000)",1,"particles"],["d","M84.4144231,47.2437308 L77.9616538,41.1916154 C77.5351923,40.7922308 76.8658846,40.8133846 76.4665,41.2394231 C76.0666923,41.6654615 76.0882692,42.3351923 76.5143077,42.7345769 L82.9670769,48.7866923 C83.3931154,49.1860769 84.0624231,49.1649231 84.4622308,48.7384615 C84.8616154,48.3124231 84.8404615,47.6431154 84.4144231,47.2437308","id","Fill-3"],["d","M78.2087308,48.9402692 L84.2616923,42.4875 C84.6615,42.0614615 84.6399231,41.3921538 84.2138846,40.9927692 C83.7878462,40.5929615 83.1185385,40.6141154 82.7187308,41.0405769 L76.6661923,47.4929231 C76.2663846,47.9189615 76.2879615,48.5886923 76.714,48.9880769 C77.1400385,49.3878846 77.8093462,49.3663077 78.2087308,48.9402692","id","Fill-4"],["d","M91.8275769,140.082038 L85.3748077,134.030346 C84.9487692,133.630538 84.2794615,133.652115 83.8796538,134.078154 C83.4802692,134.504192 83.5014231,135.1735 83.9278846,135.573308 L90.3806538,141.625 C90.8066923,142.024808 91.476,142.003231 91.8753846,141.577192 C92.2751923,141.151154 92.2536154,140.481846 91.8275769,140.082038","id","Fill-5"],["d","M85.6223077,141.779 L91.6748462,135.326231 C92.0746538,134.900192 92.0535,134.230885 91.6270385,133.831077 C91.201,133.431269 90.5316923,133.452846 90.1323077,133.878885 L84.0793462,140.331654 C83.6799615,140.757692 83.7011154,141.427 84.1271538,141.826808 C84.5531923,142.226192 85.2225,142.205038 85.6223077,141.779","id","Fill-6"],["d","M13.3091538,191.951269 L6.85638462,185.899154 C6.43034615,185.499769 5.76103846,185.520923 5.36123077,185.946962 C4.96184615,186.373423 4.98342308,187.042731 5.40946154,187.442115 L11.8622308,193.494231 C12.2882692,193.893615 12.9575769,193.872462 13.3569615,193.446423 C13.7567692,193.020385 13.7351923,192.350654 13.3091538,191.951269","id","Fill-7"],["d","M7.10388462,193.647808 L13.1568462,187.195038 C13.5562308,186.769 13.5350769,186.099692 13.1090385,185.700308 C12.683,185.3005 12.0136923,185.322077 11.6138846,185.748115 L5.56092308,192.200885 C5.16153846,192.626923 5.18269231,193.296231 5.60873077,193.695615 C6.03476923,194.095423 6.70407692,194.073846 7.10388462,193.647808","id","Fill-8"],["d","M10.4914615,38.4115769 L4.03869231,32.3594615 C3.61265385,31.9600769 2.94334615,31.9812308 2.54353846,32.4072692 C2.14415385,32.8333077 2.16573077,33.5030385 2.59176923,33.9024231 L9.04453846,39.9545385 C9.47057692,40.3539231 10.1398846,40.3327692 10.5392692,39.9067308 C10.9390769,39.4802692 10.9175,38.8109615 10.4914615,38.4115769","id","Fill-9"],["d","M4.28619231,40.1081154 L10.3391538,33.6553462 C10.7385385,33.2293077 10.7173846,32.56 10.2909231,32.1606154 C9.86488462,31.7608077 9.19557692,31.7823846 8.79619231,32.2084231 L2.74323077,38.6611923 C2.34342308,39.0872308 2.365,39.7565385 2.79103846,40.1559231 C3.21707692,40.5557308 3.88638462,40.5341538 4.28619231,40.1081154","id","Fill-10"],["d","M239.977269,47.0855 L233.5245,41.0333846 C233.098462,40.634 232.429154,40.6551538 232.029769,41.0811923 C231.629962,41.5072308 231.651538,42.1765385 232.077577,42.5763462 L238.530346,48.6284615 C238.956385,49.0278462 239.625692,49.0066923 240.0255,48.5802308 C240.424885,48.1541923 240.403308,47.4848846 239.977269,47.0855","id","Fill-11"],["d","M233.771577,48.7820385 L239.824538,42.3292692 C240.223923,41.9032308 240.202769,41.2339231 239.776731,40.8341154 C239.350692,40.4347308 238.681385,40.4558846 238.281577,40.8823462 L232.228615,47.3346923 C231.829231,47.7607308 231.850385,48.4304615 232.276423,48.8298462 C232.702885,49.2296538 233.372192,49.2080769 233.771577,48.7820385","id","Fill-12"],["d","M163.849231,80.0025769 L157.396462,73.9508846 C156.970423,73.5510769 156.301115,73.5726538 155.901308,73.9986923 C155.501923,74.4247308 155.523077,75.0940385 155.949115,75.4938462 L162.401885,81.5455385 C162.828346,81.9453462 163.497654,81.9237692 163.897038,81.4977308 C164.296846,81.0716923 164.275269,80.4023846 163.849231,80.0025769","id","Fill-13"],["d","M157.644385,81.6995385 L163.696923,75.2467692 C164.096731,74.8207308 164.075154,74.1514231 163.649115,73.7516154 C163.223077,73.3522308 162.553769,73.3733846 162.154385,73.7994231 L156.101423,80.2521923 C155.701615,80.6782308 155.723192,81.3475385 156.149231,81.7473462 C156.575269,82.1467308 157.244577,82.1255769 157.644385,81.6995385","id","Fill-14"],["d","M195.311346,151.846538 L188.858577,145.794423 C188.432538,145.395038 187.763231,145.416192 187.363423,145.842654 C186.964038,146.268692 186.985615,146.938 187.411654,147.337385 L193.864423,153.3895 C194.290462,153.788885 194.959769,153.767731 195.359154,153.341692 C195.758962,152.915654 195.737385,152.245923 195.311346,151.846538","id","Fill-15"],["d","M189.105654,153.543077 L195.158615,147.090308 C195.558,146.664269 195.536846,145.994962 195.110808,145.595577 C194.684769,145.195769 194.015462,145.217346 193.615654,145.643385 L187.562692,152.096154 C187.163308,152.522192 187.184462,153.1915 187.6105,153.590885 C188.036538,153.990692 188.705846,153.969115 189.105654,153.543077","id","Fill-16"],["d","M190.299577,210.370769 L183.846808,204.318654 C183.420769,203.919269 182.751462,203.940423 182.352077,204.366885 C181.952269,204.792923 181.973846,205.462231 182.399885,205.861615 L188.852654,211.913731 C189.278692,212.313538 189.948,212.291962 190.347808,211.865923 C190.747192,211.439885 190.726038,210.770577 190.299577,210.370769","id","Fill-17"],["d","M184.093885,212.067308 L190.146846,205.614538 C190.546654,205.1885 190.525077,204.519192 190.099038,204.119808 C189.673,203.72 189.003692,203.741577 188.603885,204.167615 L182.551346,210.620385 C182.151538,211.046423 182.173115,211.715731 182.599154,212.115115 C183.025192,212.514923 183.6945,212.493346 184.093885,212.067308","id","Fill-18"],["d","M131.642077,57.7017692 L132.557615,57.1720769 L128.114462,49.4881538 C127.925346,49.1611154 127.575885,48.9597308 127.198077,48.9601532 C126.819846,48.9601532 126.470808,49.1623846 126.282538,49.4898462 L117.420346,64.8674231 C117.231654,65.1948846 117.232077,65.5980769 117.421192,65.9251154 C117.610308,66.2521538 117.959769,66.4535385 118.337577,66.453116 L127.210346,66.4459231 L136.084808,66.4416923 C136.462615,66.4416923 136.811654,66.2394615 137.000346,65.9124231 C137.189462,65.5849615 137.189038,65.1817692 136.999923,64.8547308 L132.557615,57.1720769 L131.642077,57.7017692 L130.726115,58.2310385 L134.251192,64.3271538 L127.209077,64.3305385 L120.168231,64.3364615 L127.200615,52.1336538 L130.726115,58.2310385 L131.642077,57.7017692","id","Fill-19"],["d","M116.952846,151.625692 L117.868808,151.096 L113.425654,143.412077 C113.236115,143.085038 112.887077,142.883654 112.508846,142.884076 C112.131038,142.884076 111.782,143.086308 111.593308,143.413769 L102.731115,158.791346 C102.542423,159.118385 102.542846,159.522 102.731962,159.849038 C102.921077,160.176077 103.270538,160.377462 103.648346,160.377039 L112.521538,160.369846 L121.396,160.365615 C121.773808,160.365192 122.123269,160.163385 122.311962,159.836346 C122.500654,159.508885 122.500231,159.105692 122.311115,158.778231 L117.868808,151.096 L116.952846,151.625692 L116.037308,152.154962 L119.562385,158.251077 L112.520269,158.254462 L105.479,158.260385 L112.511385,146.057577 L116.037308,152.154962 L116.952846,151.625692","id","Fill-20"],["d","M167.868885,180.468538 L168.784423,179.938846 L164.341269,172.254923 C164.152154,171.927885 163.802692,171.7265 163.424885,171.7265 C163.047077,171.726923 162.697615,171.929154 162.508923,172.256192 L158.080154,179.944346 L153.646731,187.633769 C153.458038,187.961231 153.458462,188.364423 153.647577,188.691885 C153.836692,189.018923 154.186154,189.220308 154.563962,189.219885 L163.437154,189.212692 L172.311615,189.208462 C172.689423,189.208038 173.038462,189.006231 173.227154,188.678769 C173.415846,188.351731 173.415846,187.948538 173.226731,187.621077 L168.784423,179.938846 L167.868885,180.468538 L166.952923,180.997808 L170.478,187.093923 L163.435885,187.097308 L156.394615,187.103231 L163.427423,174.900423 L166.952923,180.997808 L167.868885,180.468538","id","Fill-21"],["d","M197.152577,121.4785 L198.174731,121.751808 L200.466962,113.176885 C200.564269,112.811769 200.459769,112.422115 200.192385,112.155154 C199.925,111.888192 199.534923,111.784115 199.170231,111.882269 L190.602077,114.186769 L182.030115,116.489154 C181.665423,116.587308 181.380269,116.872462 181.282538,117.237577 C181.185231,117.602692 181.289731,117.991923 181.557115,118.259308 L187.836423,124.528462 L194.114462,130.801 C194.381846,131.067962 194.7715,131.172462 195.136615,131.074308 C195.501308,130.976154 195.786462,130.691 195.884192,130.325885 L198.174731,121.751808 L197.152577,121.4785 L196.130846,121.205615 L194.313308,128.009115 L184.348577,118.056654 L191.151231,116.229808 L197.949654,114.401269 L196.130846,121.205615 L197.152577,121.4785","id","Fill-22"],["d","M51.2223462,21.9327308 L52.2440769,22.2056154 L54.5358846,13.6306923 C54.6336154,13.2655769 54.5291154,12.8759231 54.2617308,12.6089615 C53.9939231,12.342 53.6042692,12.2379231 53.2395769,12.3360769 L44.6714231,14.6405769 L44.6718462,14.6405769 L36.0994615,16.9433846 C35.7343462,17.0411154 35.4496154,17.3266923 35.3518846,17.6918077 C35.2545769,18.0569231 35.3590769,18.4461538 35.6264615,18.7131154 L41.9061923,24.9822692 L41.9057692,24.9818462 L48.1842308,31.2543846 C48.4516154,31.5213462 48.8412692,31.6258462 49.2059615,31.5276923 C49.5710769,31.4295385 49.8562308,31.1443846 49.9535385,30.7792692 L52.2440769,22.2056154 L50.2006154,21.6594231 L48.3830769,28.4629231 L43.4009231,23.4854231 L43.4005,23.485 L38.4179231,18.5108846 L45.2205769,16.6836154 L45.221,16.6836154 L52.019,14.8550769 L50.2006154,21.6594231 L51.2223462,21.9327308","id","Fill-23"],["d","M45.1456923,207.203192 L46.1674231,207.476077 L48.4592308,198.900731 C48.5569615,198.535615 48.4520385,198.145962 48.1846538,197.879 C47.9172692,197.612038 47.5276154,197.507962 47.1629231,197.606115 L38.5947692,199.911038 L38.5947692,199.910615 L30.0228077,202.213846 C29.6576923,202.311577 29.3725385,202.597154 29.2752308,202.962269 C29.1775,203.327385 29.2824231,203.716615 29.5498077,203.983577 L35.8295385,210.252308 L35.8291154,210.251885 L42.1075769,216.524423 C42.3749615,216.791385 42.7646154,216.895885 43.1293077,216.797731 C43.4944231,216.699577 43.7791538,216.414423 43.8768846,216.049308 L46.1674231,207.476077 L44.1239615,206.930308 L42.3064231,213.732962 L37.3242692,208.755462 L37.3238462,208.755038 L32.3412692,203.781346 L39.1435,201.953654 L39.1439231,201.953654 L45.9423462,200.125115 L44.1239615,206.929885 L45.1456923,207.203192","id","Fill-24"],["d","M206.143808,31.5111923 L206.6735,32.4267308 L214.357423,27.984 C214.684462,27.7948846 214.885846,27.4454231 214.885424,27.0676154 C214.885424,26.6893846 214.683192,26.3403462 214.355731,26.1516538 L206.667577,21.7224615 L206.668,21.7228846 L198.978154,17.2894615 C198.651115,17.1007692 198.2475,17.1011923 197.920462,17.2903077 C197.593423,17.4794231 197.392038,17.8288846 197.392461,18.2066923 L197.399654,27.0798846 L197.399654,27.0794615 L197.403885,35.9547692 C197.403885,36.3325769 197.606115,36.6816154 197.933577,36.8703077 C198.260615,37.059 198.664231,37.059 198.991269,36.8698846 L206.6735,32.4267308 L206.143808,31.5111923 L205.614538,30.5952308 L199.518423,34.1211538 L199.515038,27.0786154 L199.515038,27.0781923 L199.509115,20.0373462 L205.611577,23.5556538 L205.612,23.5556538 L211.711923,27.0697308 L205.614538,30.5952308 L206.143808,31.5111923","id","Fill-25"],["d","M44.9489615,120.167385 L45.4782308,121.082923 L53.1625769,116.640192 C53.4896154,116.450654 53.691,116.101192 53.6905776,115.723385 C53.6901538,115.345577 53.4883462,114.996538 53.1608846,114.807846 L45.4727308,110.378654 L45.4731538,110.379077 L37.7833077,105.945654 C37.4558462,105.756962 37.0526538,105.757385 36.7256154,105.9465 C36.3985769,106.135615 36.1971923,106.485077 36.1971923,106.862885 L36.2094615,124.610962 C36.2094615,124.989192 36.4112692,125.338231 36.7387308,125.526923 C37.0661923,125.715615 37.4693846,125.715192 37.7964231,125.526077 L45.4786538,121.082923 L44.4192692,119.251846 L38.324,122.777346 L38.3142692,108.693538 L44.4167308,112.211423 L44.4167308,112.211846 L50.5170769,115.725923 L44.4196923,119.251846 L44.9489615,120.167385","id","Fill-26"],["d","M146.638885,105.637654 L145.581192,105.637654 C145.580769,107.208115 144.947423,108.619923 143.918923,109.650115 C142.888731,110.678615 141.476923,111.311538 139.906885,111.312385 C138.336423,111.311538 136.924192,110.678615 135.893577,109.650115 C134.865077,108.619923 134.232154,107.208115 134.231731,105.637654 C134.232154,104.066769 134.865077,102.654962 135.893577,101.624769 C136.924192,100.596269 138.336423,99.9633462 139.906885,99.9625 C141.476923,99.9633462 142.888731,100.596269 143.918923,101.624769 C144.947423,102.654962 145.580769,104.066769 145.581192,105.637654 L147.696577,105.637654 C147.695731,101.334538 144.209154,97.8479615 139.906885,97.8471154 C135.603769,97.8479615 132.116769,101.334538 132.116346,105.637654 C132.116769,109.940346 135.603769,113.426923 139.906885,113.427769 C144.209154,113.426923 147.695731,109.940346 147.696577,105.637654 L146.638885,105.637654","id","Fill-27"],["d","M112.621808,30.5059615 L111.564115,30.5059615 C111.563692,32.0768462 110.930769,33.4886538 109.901846,34.5188462 C108.871654,35.5473462 107.459846,36.1802692 105.889385,36.1811154 C104.318923,36.1802692 102.907115,35.5473462 101.8765,34.5188462 C100.848,33.4886538 100.214654,32.0764231 100.214231,30.5059615 C100.214654,28.9355 100.848,27.5236923 101.8765,26.4935 C102.907115,25.465 104.318923,24.8320769 105.889385,24.8316538 C107.459846,24.8320769 108.871654,25.465 109.901846,26.4935 C110.930769,27.5236923 111.563692,28.9355 111.564115,30.5059615 L113.6795,30.5059615 C113.678654,26.2032692 110.192077,22.7166923 105.889385,22.7162692 C101.586692,22.7166923 98.0996923,26.2032692 98.0988462,30.5059615 C98.0996923,34.8095 101.586692,38.2956538 105.889385,38.2965 C110.192077,38.2956538 113.678654,34.8090769 113.6795,30.5059615 L112.621808,30.5059615","id","Fill-28"],["d","M116.918154,229.204885 L115.860462,229.204885 C115.860038,230.775346 115.227115,232.187577 114.198192,233.217769 C113.168,234.246269 111.756192,234.879615 110.185731,234.880038 C108.615692,234.879615 107.203462,234.246269 106.172846,233.217769 C105.144346,232.187154 104.511423,230.775346 104.510577,229.204885 C104.511423,227.634423 105.144346,226.222615 106.172846,225.192423 C107.203462,224.163923 108.615692,223.531 110.185731,223.530577 C111.756192,223.531 113.168423,224.163923 114.198615,225.192423 C115.227115,226.222615 115.860038,227.634423 115.860462,229.204885 L117.975846,229.204885 C117.975423,224.901769 114.488423,221.415615 110.185731,221.415192 C108.038192,221.414346 106.084,222.288423 104.677269,223.696423 C103.268846,225.102731 102.394769,227.056923 102.395192,229.204885 C102.396038,233.508 105.883462,236.994577 110.185731,236.995423 C114.488423,236.994577 117.975423,233.508 117.975846,229.204885 L116.918154,229.204885","id","Fill-29"],["d","M135.982423,219.142846 C135.983269,217.572385 136.616192,216.160577 137.645115,215.130385 C138.675308,214.101885 140.087538,213.468962 141.658,213.468538 C143.228462,213.468962 144.640269,214.101885 145.670885,215.130385 C146.699385,216.160154 147.332308,217.572385 147.332731,219.142846 C147.332731,219.726692 147.806577,220.200538 148.390423,220.200538 C148.974692,220.200538 149.448115,219.726692 149.448115,219.142846 C149.447692,214.839731 145.960692,211.353577 141.658,211.353153 C139.510038,211.352308 137.555846,212.226385 136.149538,213.634385 C134.741115,215.040269 133.866615,216.994462 133.867038,219.142846 C133.867038,219.726692 134.340885,220.200538 134.924731,220.200538 C135.509,220.200538 135.982423,219.726692 135.982423,219.142846","id","Fill-30"],["d","M82.247,115.736077 C82.2474231,114.165615 82.8807692,112.753385 83.9092692,111.723192 C84.9398846,110.694692 86.3521154,110.061769 87.9221538,110.061346 C89.4926154,110.061769 90.9044231,110.694692 91.9350385,111.723192 C92.9635385,112.753385 93.5964615,114.165192 93.5968846,115.736077 C93.5968846,116.319923 94.0707308,116.793769 94.6545769,116.793769 C95.2388462,116.793769 95.7122692,116.319923 95.7122692,115.736077 C95.7118462,111.432962 92.2248462,107.946385 87.9221538,107.945538 C83.6198846,107.946385 80.1324615,111.432962 80.1316154,115.736077 C80.1316154,116.319923 80.6054615,116.793769 81.1893077,116.793769 C81.7735769,116.793769 82.247,116.319923 82.247,115.736077","id","Fill-31"],["d","M11.4163077,61.0732692 C11.4167308,59.5011154 12.0479615,58.0884615 13.0713846,57.0586923 C14.0969231,56.0306154 15.5006923,55.3989615 17.061,55.3981154 C18.6213077,55.3989615 20.0250769,56.0306154 21.0501923,57.0586923 C22.0736154,58.0884615 22.7048462,59.5011154 22.7052692,61.0732692 C22.7052692,61.6571154 23.1786923,62.1309615 23.7629615,62.1309615 C24.3468077,62.1309615 24.820654,61.6571154 24.820654,61.0732692 C24.8210769,58.9265769 23.9516538,56.9732308 22.5495769,55.5660769 C21.1491923,54.1576538 19.2017692,53.2823077 17.061,53.2827306 C14.9202308,53.2823077 12.9728077,54.1576538 11.5724231,55.5660769 C10.1699231,56.9732308 9.3005,58.9265769 9.30092292,61.0732692 C9.30092292,61.6571154 9.77434615,62.1309615 10.3586154,62.1309615 C10.9428846,62.1309615 11.4163077,61.6571154 11.4163077,61.0732692","id","Fill-32"],["d","M180.062808,71.0401154 C178.491077,71.0396923 177.078,70.4084615 176.048231,69.3850385 C175.019731,68.3595 174.388077,66.9557308 174.387654,65.3954231 C174.388077,63.8351154 175.019731,62.4317692 176.048231,61.4062308 C177.078,60.3828077 178.490654,59.752 180.062808,59.7511538 C180.647077,59.7511538 181.1205,59.2777308 181.1205,58.6938846 C181.1205,58.1096154 180.647077,57.6361917 180.062808,57.6361917 C177.916115,57.6353462 175.962769,58.5047692 174.555615,59.9072692 C173.147192,61.3072308 172.271423,63.2546538 172.272269,65.3954231 C172.271423,67.5361923 173.147192,69.4836154 174.555615,70.884 C175.962769,72.2865 177.916115,73.1559231 180.062808,73.1555002 C180.647077,73.1555002 181.1205,72.6820769 181.1205,72.0978077 C181.1205,71.5135385 180.647077,71.0401154 180.062808,71.0401154","id","Fill-33"],["d","M17.9490385,228.116731 C16.3768846,228.115885 14.9642308,227.485077 13.9344615,226.461654 C12.9063846,225.436115 12.2747308,224.032346 12.2743077,222.472038 C12.2747308,220.911731 12.9063846,219.507962 13.9344615,218.482846 C14.9642308,217.459423 16.3768846,216.828615 17.9490385,216.828192 C18.5328846,216.828192 19.0067308,216.354769 19.0067308,215.7705 C19.0067308,215.186231 18.5328846,214.712808 17.9490385,214.712808 C15.8023462,214.712385 13.849,215.581808 12.4418462,216.983885 C11.0334231,218.383846 10.1580769,220.331269 10.1589225,222.472038 C10.1580769,224.612808 11.0334231,226.560231 12.4418462,227.960615 C13.849,229.362692 15.8023462,230.232538 17.9490385,230.232116 C18.5328846,230.232116 19.0067308,229.758269 19.0067308,229.174423 C19.0067308,228.590154 18.5328846,228.116731 17.9490385,228.116731","id","Fill-34"],["d","M90.1932308,14.0000385 C88.6215,13.9996154 87.2088462,13.3683846 86.1790769,12.3449615 C85.151,11.3194231 84.5193462,9.91565385 84.5185,8.35534615 C84.5193462,6.79503846 85.151,5.39126923 86.1790769,4.36615385 C87.2088462,3.34273077 88.6215,2.7115 90.1932308,2.71107692 C90.7775,2.71107692 91.2509231,2.23765385 91.2509231,1.65338462 C91.2509231,1.06953846 90.7775,0.595692153 90.1932308,0.595692153 C88.0469615,0.595269231 86.0936154,1.46469231 84.6864615,2.86676923 C83.2780385,4.26715385 82.4026923,6.21457692 82.4031152,8.35534615 C82.4026923,10.4961154 83.2780385,12.4435385 84.6864615,13.8439231 C86.0931923,15.2464231 88.0469615,16.1158462 90.1932308,16.1154232 C90.7775,16.1154232 91.2509231,15.642 91.2509231,15.0577308 C91.2509231,14.4734615 90.7775,14.0000385 90.1932308,14.0000385","id","Fill-35"],["d","M21.3154615,158.362769 L20.2577692,158.362769 C20.2569231,159.933231 19.624,161.345038 18.5955,162.375654 C17.5653077,163.404154 16.1530769,164.037077 14.5830385,164.037923 C13.0125769,164.037077 11.6003462,163.404154 10.5701538,162.375654 C9.54123077,161.345038 8.90830769,159.933231 8.90788462,158.362769 C8.90830769,156.792308 9.54123077,155.3805 10.5701538,154.350308 C11.6003462,153.321808 13.0125769,152.688885 14.5830385,152.688038 C16.1530769,152.688885 17.5653077,153.321808 18.5955,154.349885 C19.624,155.380077 20.2569231,156.791885 20.2577692,158.362769 L22.3731538,158.362769 C22.3723077,154.059654 18.8853077,150.5735 14.5830385,150.572654 C12.4350769,150.572231 10.4808846,151.446308 9.07415385,152.854308 C7.66615385,154.260192 6.79165385,156.214385 6.79249939,158.362769 C6.79292308,162.665885 10.2803462,166.152462 14.5830385,166.153308 C18.8853077,166.152462 22.3723077,162.665462 22.3731538,158.362769 L21.3154615,158.362769","id","Fill-36"],["d","M228.928192,166.051346 L227.8705,166.051346 C227.869654,167.621808 227.236731,169.034038 226.208231,170.064654 C225.178038,171.093154 223.766231,171.726077 222.196192,171.7265 C220.625731,171.726077 219.2135,171.093154 218.183308,170.064654 C217.154385,169.034038 216.521462,167.621808 216.521038,166.051346 C216.521462,164.480885 217.154385,163.069077 218.182885,162.038885 C219.2135,161.010385 220.625308,160.377885 222.196192,160.377038 C223.766231,160.377885 225.178038,161.010385 226.208231,162.038885 C227.236731,163.069077 227.869654,164.480885 227.8705,166.051346 L229.985885,166.051346 C229.985038,161.748231 226.498038,158.2625 222.196192,158.261654 C217.8935,158.2625 214.406077,161.748231 214.405654,166.051346 C214.406077,170.354462 217.893077,173.841462 222.196192,173.841885 C226.498462,173.841462 229.985038,170.354462 229.985885,166.051346 L228.928192,166.051346","id","Fill-37"],["d","M210.305192,58.6993846 L210.305192,59.7570769 L222.64,59.7570769 L222.64,71.0337692 L211.362885,71.0337692 L211.362885,58.6993846 L210.305192,58.6993846 L210.305192,59.7570769 L210.305192,58.6993846 L209.2475,58.6993846 L209.2475,72.0914615 C209.2475,72.3702692 209.360462,72.6427308 209.557192,72.8394615 C209.754346,73.0366154 210.026808,73.1491538 210.305192,73.1491538 L223.697692,73.1491538 C223.976077,73.1491538 224.248538,73.0366154 224.445269,72.8394615 C224.642423,72.6427308 224.755385,72.3702692 224.755385,72.0914615 L224.755385,58.6993846 C224.755385,58.421 224.642423,58.1485385 224.445269,57.9513846 C224.248538,57.7546538 223.976077,57.6416923 223.697692,57.6416923 L210.305192,57.6416923 C210.026808,57.6416923 209.754346,57.7546538 209.557192,57.9513846 C209.360462,58.1485385 209.2475,58.421 209.2475,58.6993846 L210.305192,58.6993846","id","Fill-38"],["d","M58.8897692,65.3954231 L58.8897692,66.4531154 L71.2237308,66.4531154 L71.2237308,77.7302308 L59.9474615,77.7302308 L59.9474615,65.3954231 L58.8897692,65.3954231 L58.8897692,66.4531154 L58.8897692,65.3954231 L57.8320769,65.3954231 L57.8320769,78.7879231 C57.8320769,79.0663077 57.9450385,79.3387692 58.1417692,79.5355 C58.3389231,79.7326538 58.6113846,79.8456154 58.8897692,79.8456154 L72.2814231,79.8456154 C72.5602308,79.8456154 72.8326923,79.7326538 73.0294231,79.5355 C73.2265769,79.3387692 73.3391154,79.0663077 73.3391154,78.7879231 L73.3391154,65.3954231 C73.3391154,65.1170385 73.2265769,64.8445769 73.0294231,64.6478462 C72.8326923,64.4506923 72.5602308,64.3377308 72.2814231,64.3377308 L58.8897692,64.3377308 C58.6113846,64.3377308 58.3389231,64.4506923 58.1417692,64.6478462 C57.9450385,64.8445769 57.8320769,65.1170385 57.8320769,65.3954231 L58.8897692,65.3954231","id","Fill-39"],["d","M58.2175,150.893346 L58.2175,151.951038 L70.5518846,151.951038 L70.5518846,163.228154 L59.2751923,163.228154 L59.2751923,150.893346 L58.2175,150.893346 L58.2175,151.951038 L58.2175,150.893346 L57.1598077,150.893346 L57.1598077,164.285846 C57.1598077,164.564231 57.2727692,164.836692 57.4699231,165.033423 C57.6666538,165.230577 57.9391154,165.343538 58.2175,165.343538 L71.6095769,165.343538 C71.8879615,165.343538 72.1604231,165.230577 72.3571538,165.033423 C72.5543077,164.836692 72.6672692,164.564231 72.6672692,164.285846 L72.6672692,150.893346 C72.6672692,150.614962 72.5543077,150.3425 72.3571538,150.145346 C72.1604231,149.948615 71.8879615,149.835654 71.6095769,149.835654 L58.2175,149.835654 C57.9391154,149.835654 57.6666538,149.948615 57.4699231,150.145346 C57.2727692,150.3425 57.1598077,150.614962 57.1598077,150.893346 L58.2175,150.893346","id","Fill-40"],["d","M210.305192,215.776423 L210.305192,216.834115 L222.639154,216.834115 L222.639154,228.110808 L211.362885,228.110808 L211.362885,215.776423 L210.305192,215.776423 L210.305192,216.834115 L210.305192,215.776423 L209.2475,215.776423 L209.2475,229.1685 C209.2475,229.446885 209.360462,229.719346 209.557192,229.9165 C209.754346,230.113231 210.026808,230.226192 210.305192,230.226192 L223.696846,230.226192 C223.975231,230.226192 224.247692,230.113231 224.444423,229.9165 C224.641577,229.719346 224.754538,229.446885 224.754538,229.1685 L224.754538,215.776423 C224.754538,215.497615 224.641577,215.225154 224.444423,215.028423 C224.247692,214.831269 223.975231,214.718731 223.696846,214.718731 L210.305192,214.718731 C210.026808,214.718731 209.754346,214.831269 209.557192,215.028423 C209.360462,215.225154 209.2475,215.497615 209.2475,215.776423 L210.305192,215.776423","id","Fill-41"],["d","M154.751808,1.65973077 L154.751808,2.71742308 L167.085346,2.71742308 L167.085346,13.9941154 L155.8095,13.9941154 L155.8095,1.65973077 L154.751808,1.65973077 L154.751808,2.71742308 L154.751808,1.65973077 L153.694115,1.65973077 L153.694115,15.0518077 C153.694115,15.3306154 153.806654,15.6030769 154.003808,15.7998077 C154.200538,15.9965385 154.473,16.1095 154.751808,16.1095 L168.143038,16.1095 C168.421423,16.1095 168.693885,15.9965385 168.891038,15.7998077 C169.087769,15.6030769 169.200731,15.3306154 169.200731,15.0518077 L169.200731,1.65973077 C169.200731,1.38134615 169.087769,1.10888462 168.891038,0.911730769 C168.693885,0.715 168.421423,0.602038462 168.143038,0.602038462 L154.751808,0.602038462 C154.473,0.602038462 154.200538,0.715 154.003808,0.911730769 C153.806654,1.10888462 153.694115,1.38134615 153.694115,1.65973077 L154.751808,1.65973077","id","Fill-42"],["d","M135.508154,136.771462 C135.298731,136.769769 135.172654,136.731692 135.044885,136.667808 C134.934038,136.610269 134.818962,136.522692 134.692038,136.386462 C134.469077,136.151231 134.227077,135.765385 133.973654,135.300423 C133.585692,134.604885 133.179962,133.738423 132.487808,132.969692 C132.140885,132.587654 131.710615,132.232269 131.180923,131.980115 C130.6525,131.726692 130.033538,131.585808 129.357885,131.587068 C128.773615,131.587068 128.300192,132.060923 128.300192,132.644769 C128.300192,133.229038 128.773615,133.702462 129.357885,133.702462 C129.702269,133.703308 129.957808,133.76 130.175269,133.847577 C130.365654,133.925423 130.530654,134.0295 130.692692,134.168269 C130.975308,134.409 131.243115,134.767769 131.503731,135.2065 C131.901,135.862692 132.255115,136.675423 132.809346,137.425962 C133.089,137.799538 133.432538,138.165077 133.889038,138.443462 C134.342577,138.722692 134.9095,138.890231 135.508154,138.886896 C136.092423,138.886896 136.565846,138.413423 136.565846,137.829154 C136.565846,137.245308 136.092423,136.771462 135.508154,136.771462","id","Fill-43"],["d","M147.808269,136.771462 C147.598423,136.769769 147.472346,136.731692 147.344577,136.667808 C147.233731,136.610269 147.119077,136.522692 146.991731,136.386462 C146.768769,136.151231 146.526769,135.765385 146.273346,135.300423 C145.885385,134.604885 145.480077,133.738423 144.787923,132.970115 C144.441,132.587654 144.011154,132.232269 143.481462,131.980115 C142.953038,131.726692 142.334077,131.585808 141.658423,131.587068 C141.074577,131.587068 140.600731,132.060923 140.600731,132.644769 C140.600731,133.229038 141.074577,133.702462 141.658423,133.702462 C142.002808,133.703308 142.258346,133.76 142.475808,133.847577 C142.665769,133.925 142.830769,134.0295 142.992808,134.168269 C143.275423,134.409 143.543231,134.767769 143.803423,135.2065 C144.201115,135.862692 144.555231,136.675423 145.109038,137.425962 C145.389115,137.799538 145.732231,138.165077 146.188731,138.443462 C146.642692,138.722692 147.209192,138.890231 147.808269,138.886896 C148.392115,138.886896 148.865962,138.413423 148.865962,137.829154 C148.865962,137.245308 148.392115,136.771462 147.808269,136.771462","id","Fill-44"],["d","M135.508154,138.886873 C136.029808,138.888962 136.527346,138.764577 136.945769,138.545423 C137.313423,138.354615 137.617615,138.101192 137.870615,137.830423 C138.313154,137.353615 138.616923,136.825192 138.896577,136.319615 C139.3095,135.559346 139.676731,134.8435 140.093462,134.393346 C140.300769,134.166154 140.5085,134.003269 140.746269,133.889462 C140.985308,133.776923 141.262846,133.704154 141.658423,133.702462 C142.242692,133.702462 142.716115,133.229038 142.716115,132.644769 C142.716115,132.060923 142.242692,131.587076 141.658423,131.587076 C141.070346,131.586654 140.525423,131.692 140.045231,131.887885 C139.624269,132.058385 139.257462,132.295308 138.945654,132.563538 C138.398615,133.034846 138.015731,133.589923 137.696731,134.122154 C137.225,134.921346 136.870038,135.691346 136.512962,136.159269 C136.337385,136.394923 136.1745,136.548077 136.028538,136.635654 C135.880038,136.721962 135.748885,136.7685 135.508154,136.771462 C134.924308,136.771462 134.450462,137.245308 134.450462,137.829154 C134.450462,138.413423 134.924308,138.886873 135.508154,138.886873","id","Fill-45"],["d","M147.808269,138.886873 C148.3295,138.888962 148.827038,138.764577 149.245462,138.545423 C149.613115,138.354615 149.917308,138.101192 150.170308,137.830423 C150.612423,137.353192 150.916192,136.825192 151.196269,136.319615 C151.608769,135.559346 151.976,134.8435 152.392731,134.393346 C152.600038,134.166154 152.808192,134.003269 153.045538,133.889462 C153.284577,133.776923 153.562115,133.704154 153.957692,133.702462 C154.541538,133.702462 155.015385,133.229038 155.015385,132.644769 C155.015385,132.060923 154.541538,131.587076 153.957692,131.587076 C153.369192,131.586654 152.824269,131.692 152.344077,131.887885 C151.923538,132.058385 151.556731,132.295308 151.244923,132.563538 C150.697885,133.034846 150.315,133.589923 149.996,134.122154 C149.524269,134.921346 149.169731,135.691346 148.812231,136.159269 C148.636654,136.394923 148.473769,136.548077 148.328231,136.635654 C148.179731,136.721962 148.048154,136.7685 147.808269,136.771462 C147.224,136.771462 146.750577,137.245308 146.750577,137.829154 C146.750577,138.413423 147.224,138.886873 147.808269,138.886873","id","Fill-46"],["d","M170.546962,233.332423 C170.337115,233.330308 170.211038,233.292654 170.083269,233.228346 C169.972423,233.170808 169.857769,233.083231 169.730423,232.947 C169.507462,232.711769 169.265462,232.325923 169.012038,231.860962 C168.624077,231.165423 168.218346,230.298538 167.526615,229.529808 C167.179692,229.147769 166.749,228.792385 166.219308,228.540231 C165.690885,228.286385 165.071923,228.145923 164.396692,228.147184 C163.812423,228.147184 163.339,228.620615 163.339,229.204885 C163.339,229.789154 163.812423,230.262577 164.396692,230.262577 C164.741077,230.263423 164.996192,230.319692 165.214077,230.407692 C165.404038,230.485115 165.569038,230.589192 165.7315,230.727962 C166.013692,230.969115 166.2815,231.327885 166.542115,231.766615 C166.939385,232.422808 167.293923,233.235538 167.847731,233.9865 C168.127808,234.360077 168.470923,234.725615 168.927423,235.004 C169.381385,235.283654 169.947885,235.451192 170.546962,235.447858 C171.130808,235.447858 171.604654,234.973962 171.604654,234.390115 C171.604654,233.805846 171.130808,233.332423 170.546962,233.332423","id","Fill-47"],["d","M182.846654,233.332423 C182.637231,233.330308 182.510731,233.292654 182.382962,233.228346 C182.272538,233.170808 182.157462,233.083231 182.030115,232.947 C181.807154,232.711769 181.565577,232.326346 181.311731,231.861385 C180.924192,231.165846 180.518462,230.299385 179.826731,229.530654 C179.479808,229.148615 179.049538,228.793231 178.519846,228.540654 C177.991423,228.287231 177.372462,228.146769 176.697231,228.14803 C176.112962,228.14803 175.639538,228.621462 175.639538,229.205731 C175.639538,229.79 176.112962,230.263423 176.697231,230.263423 C177.041615,230.264269 177.296731,230.320538 177.514192,230.408115 C177.704154,230.485962 177.869577,230.590038 178.031615,230.728808 C178.313808,230.969538 178.581615,231.328308 178.842231,231.767038 C179.2395,232.423231 179.593615,233.235962 180.147846,233.9865 C180.4275,234.360077 180.771038,234.725615 181.227538,235.004 C181.681077,235.283654 182.247577,235.451192 182.846654,235.447858 C183.430923,235.447858 183.904346,234.973962 183.904346,234.390115 C183.904346,233.805846 183.430923,233.332423 182.846654,233.332423","id","Fill-48"],["d","M170.546962,235.447825 C171.068192,235.4495 171.565731,235.325538 171.984577,235.105962 C172.352231,234.915577 172.656423,234.662154 172.909,234.390962 C173.351538,233.914154 173.655308,233.385731 173.935385,232.880154 C174.347885,232.120308 174.715115,231.404038 175.131846,230.953885 C175.339154,230.726692 175.547308,230.563808 175.785077,230.45 C176.023692,230.337462 176.301231,230.264692 176.697231,230.263423 C177.2815,230.263423 177.754923,229.79 177.754923,229.205731 C177.754923,228.621462 177.2815,228.148033 176.697231,228.148033 C176.108731,228.147192 175.563808,228.252538 175.083615,228.448423 C174.663077,228.618923 174.295846,228.855846 173.984038,229.124077 C173.437,229.595808 173.054115,230.150885 172.735115,230.682692 C172.263385,231.481885 171.908846,232.251885 171.551769,232.719808 C171.375769,232.955885 171.212885,233.108615 171.067346,233.196192 C170.918846,233.282923 170.787269,233.329038 170.546962,233.332423 C169.962692,233.332423 169.489269,233.805846 169.489269,234.390115 C169.489269,234.973962 169.962692,235.447825 170.546962,235.447825","id","Fill-49"],["d","M182.847077,235.447825 C183.368308,235.4495 183.865846,235.325115 184.284269,235.105538 C184.6515,234.915154 184.955692,234.661731 185.208692,234.390538 C185.650808,233.913731 185.954577,233.385308 186.234654,232.880154 C186.647154,232.119885 187.014385,231.404038 187.431115,230.953885 C187.638423,230.726692 187.846154,230.563808 188.0835,230.45 C188.322538,230.337462 188.599654,230.264692 188.995231,230.263423 L188.995654,230.263423 L188.995654,229.208692 L188.828962,230.249885 C188.906385,230.262154 188.966038,230.263423 188.995654,230.263423 L188.995654,229.208692 L188.828962,230.249885 C189.405615,230.342115 189.948,229.9495 190.040654,229.372846 C190.132885,228.795769 189.739846,228.253385 189.163192,228.161154 C189.085769,228.148885 189.025692,228.148033 188.995654,228.148033 L188.995231,228.148033 C188.407154,228.147192 187.862231,228.252538 187.382038,228.448423 C186.9615,228.618923 186.594692,228.855846 186.282885,229.124077 C185.736269,229.595385 185.353385,230.150462 185.034385,230.682269 C184.562654,231.481462 184.208115,232.251462 183.851038,232.719808 C183.675038,232.955462 183.512154,233.108192 183.366615,233.196192 C183.218115,233.2825 183.086538,233.329038 182.846231,233.332423 C182.261962,233.332423 181.788962,233.806269 181.788962,234.390115 C181.788962,234.974385 182.262808,235.447825 182.847077,235.447825","id","Fill-50"],["d","M187.318577,94.1223462 C187.109154,94.1202308 186.983077,94.0825769 186.855308,94.0182692 C186.744462,93.9607308 186.629385,93.8731538 186.502462,93.7369231 C186.2795,93.5016923 186.0375,93.1162692 185.784077,92.6508846 C185.396115,91.9553462 184.990385,91.0888846 184.298654,90.3201538 C183.951731,89.9381154 183.521462,89.5827308 182.991769,89.3305769 C182.463346,89.0767308 181.844385,88.9362692 181.169154,88.9375299 C180.584885,88.9375299 180.111462,89.4109615 180.111462,89.9952308 C180.111462,90.5795 180.584885,91.0529231 181.169154,91.0529231 C181.513538,91.0537692 181.768654,91.1100385 181.986115,91.1980385 C182.1765,91.2754615 182.3415,91.3795385 182.503538,91.5183077 C182.786154,91.7590385 183.053538,92.1182308 183.314154,92.5565385 C183.711423,93.2131538 184.065538,94.0258846 184.619769,94.7764231 C184.899423,95.15 185.242962,95.5155385 185.699462,95.7939231 C186.153,96.0735769 186.7195,96.2411154 187.318577,96.2377811 C187.902846,96.2377811 188.376269,95.7638846 188.376269,95.1800385 C188.376269,94.5957692 187.902846,94.1223462 187.318577,94.1223462","id","Fill-51"],["d","M199.618692,94.1223462 C199.408846,94.1202308 199.282769,94.0825769 199.155,94.0182692 C199.044154,93.9607308 198.9295,93.8731538 198.802154,93.7369231 C198.579192,93.5016923 198.337192,93.1162692 198.083769,92.6513077 C197.695808,91.9557692 197.2905,91.0893077 196.598346,90.3205769 C196.251423,89.9385385 195.821154,89.5831538 195.291885,89.331 C194.763038,89.0771538 194.1445,88.9366923 193.468846,88.937953 C192.885,88.937953 192.411154,89.4113846 192.411154,89.9956538 C192.411154,90.5799231 192.885,91.0533462 193.468846,91.0533462 C193.813231,91.0541923 194.068769,91.1104615 194.286231,91.1980385 C194.476192,91.2758846 194.641192,91.3799615 194.803231,91.5187308 C195.085846,91.7594615 195.353231,92.1182308 195.613846,92.5569615 C196.011115,93.2131538 196.365654,94.0258846 196.919462,94.7768462 C197.199538,95.15 197.542654,95.5155385 197.999154,95.7939231 C198.453115,96.0735769 199.019615,96.2411154 199.618692,96.2377811 C200.202538,96.2377811 200.676385,95.7638846 200.676385,95.1800385 C200.676385,94.5957692 200.202538,94.1223462 199.618692,94.1223462","id","Fill-52"],["d","M187.318577,96.2377479 C187.839808,96.2394231 188.337769,96.1154615 188.756192,95.8958846 C189.123846,95.7055 189.428038,95.4520769 189.681038,95.1808846 C190.123577,94.7040769 190.427346,94.1756538 190.707423,93.6705 C191.119923,92.9102308 191.487577,92.1939615 191.904308,91.7438077 C192.111615,91.5166154 192.319346,91.3537308 192.557115,91.2399231 C192.795731,91.1273846 193.073269,91.0546154 193.468846,91.0533462 C194.053115,91.0533462 194.526538,90.5799231 194.526538,89.9956538 C194.526538,89.4113846 194.053115,88.9379565 193.468846,88.9379565 C192.880769,88.9371154 192.335846,89.0424615 191.855654,89.2383462 C191.435115,89.4088462 191.067885,89.6457692 190.756077,89.914 C190.209462,90.3857308 189.826154,90.9408077 189.507577,91.4726154 C189.035423,92.2718077 188.680885,93.0418077 188.323808,93.5097308 C188.147808,93.7453846 187.984923,93.8985385 187.839385,93.9861154 C187.690462,94.0728462 187.558885,94.1189615 187.318577,94.1223462 C186.734731,94.1223462 186.260885,94.5957692 186.260885,95.1800385 C186.260885,95.7638846 186.734731,96.2377479 187.318577,96.2377479","id","Fill-53"],["d","M199.618692,96.2377478 C200.139923,96.2394231 200.637462,96.1150385 201.056308,95.8958846 C201.423538,95.7050769 201.728154,95.4516538 201.980731,95.1808846 C202.423269,94.7036538 202.727038,94.1756538 203.006692,93.6700769 C203.419615,92.9102308 203.786846,92.1939615 204.203577,91.7438077 C204.410885,91.5166154 204.618615,91.3537308 204.856385,91.2399231 C205.095423,91.1273846 205.372962,91.0546154 205.768962,91.0533462 C206.352808,91.0533462 206.826654,90.5795 206.826654,89.9956538 C206.826654,89.4113846 206.352808,88.9379565 205.768962,88.9379565 C205.180462,88.9371154 204.635538,89.0424615 204.155346,89.2383462 C203.734808,89.4088462 203.367577,89.6457692 203.055769,89.914 C202.508731,90.3853077 202.125846,90.9403846 201.806846,91.4721923 C201.335115,92.2718077 200.980577,93.0418077 200.623077,93.5097308 C200.4475,93.7453846 200.284615,93.8985385 200.138654,93.9861154 C199.990154,94.0724231 199.858577,94.1189615 199.618269,94.1223462 C199.034,94.1223462 198.560577,94.5957692 198.560577,95.1800385 C198.561,95.7643077 199.034423,96.2377478 199.618692,96.2377478","id","Fill-54"],["d","M16.2766154,87.857 C16.0667692,87.8553077 15.9406923,87.8172308 15.8129231,87.7529231 C15.7020769,87.6958077 15.5874231,87.6078077 15.4600769,87.472 C15.2371154,87.2367692 14.9951154,86.8509231 14.7416923,86.3859615 C14.3537308,85.6904231 13.948,84.8235385 13.2562692,84.0552308 C12.9093462,83.6727692 12.4790769,83.3173846 11.9493846,83.0652308 C11.4209615,82.8118077 10.802,82.6709231 10.1263462,82.6721838 C9.5425,82.6721838 9.06865385,83.1460385 9.06865385,83.7298846 C9.06865385,84.3141538 9.5425,84.7875769 10.1263462,84.7875769 C10.4707308,84.7884231 10.7262692,84.8451154 10.9437308,84.9326923 C11.1341154,85.0101154 11.2991154,85.1146154 11.4611538,85.2533846 C11.7437692,85.4941154 12.0111538,85.8528846 12.2717692,86.2916154 C12.6690385,86.9478077 13.0235769,87.7605385 13.5773846,88.5115 C13.8574615,88.8850769 14.2005769,89.2506154 14.6570769,89.5285769 C15.1110385,89.8082308 15.6775385,89.9757692 16.2766154,89.9724349 C16.8604615,89.9724349 17.3343077,89.4989615 17.3343077,88.9146923 C17.3343077,88.3304231 16.8604615,87.857 16.2766154,87.857","id","Fill-55"],["d","M28.5763077,87.857 C28.3664615,87.8553077 28.2403846,87.8172308 28.1126154,87.7529231 C28.0017692,87.6958077 27.8871154,87.6078077 27.7597692,87.472 C27.5368077,87.2367692 27.2948077,86.8509231 27.0413846,86.3859615 C26.6538462,85.6904231 26.2481154,84.8239615 25.5563846,84.0552308 C25.2094615,83.6731923 24.7791923,83.3178077 24.2495,83.0656538 C23.7210769,82.8122308 23.1021154,82.6713462 22.4268846,82.6726069 C21.8426154,82.6726069 21.3691923,83.1464615 21.3691923,83.7303077 C21.3691923,84.3145769 21.8426154,84.788 22.4268846,84.788 C22.7708462,84.7888462 23.0263846,84.8455385 23.2438462,84.9331154 C23.4338077,85.0105385 23.5988077,85.1150385 23.7612692,85.2538077 C24.0434615,85.4945385 24.3112692,85.8533077 24.5718846,86.2920385 C24.9691538,86.9482308 25.3232692,87.7609615 25.8775,88.5115 C26.1571538,88.8850769 26.5006923,89.2506154 26.9571923,89.5285769 C27.4107308,89.8082308 27.9772308,89.9757692 28.5763077,89.9724349 C29.1605769,89.9724349 29.634,89.4989615 29.634,88.9146923 C29.634,88.3304231 29.1605769,87.857 28.5763077,87.857","id","Fill-56"],["d","M16.2766154,89.9724112 C16.7978462,89.9745 17.2953846,89.8501154 17.7142308,89.6309615 C18.0814615,89.4401538 18.3860769,89.1867308 18.6386538,88.9159615 C19.0811923,88.4387308 19.3849615,87.9107308 19.6650385,87.4051538 C20.0775385,86.6448846 20.4451923,85.9290385 20.8619231,85.4788846 C21.0692308,85.2516923 21.2769615,85.0888077 21.5147308,84.975 C21.7533462,84.8624615 22.0308846,84.7892692 22.4268846,84.788 C23.0107308,84.788 23.4845769,84.3145769 23.4845769,83.7303077 C23.4845769,83.1464615 23.0107308,82.6726103 22.4268846,82.6726103 C21.8383846,82.6717692 21.2934615,82.7775385 20.8132692,82.9734231 C20.3927308,83.1439231 20.0255,83.3804231 19.7136923,83.6486538 C19.1670769,84.1203846 18.7837692,84.6754615 18.4647692,85.2072692 C17.9930385,86.0068846 17.6385,86.7764615 17.2814231,87.2448077 C17.1054231,87.4804615 16.9425385,87.6331923 16.797,87.7211923 C16.6485,87.8075 16.5169231,87.8536154 16.2766154,87.857 C15.6923462,87.857 15.2189231,88.3304231 15.2189231,88.9146923 C15.2189231,89.4989615 15.6923462,89.9724112 16.2766154,89.9724112","id","Fill-57"],["d","M28.5763077,89.9724017 C29.0975385,89.9740769 29.5950769,89.8501154 30.0139231,89.6305385 C30.3815769,89.4401538 30.6857692,89.1867308 30.9383462,88.9155385 C31.3808846,88.4387308 31.6842308,87.9103077 31.9643077,87.4047308 C32.3768077,86.6448846 32.7444615,85.9286154 33.1607692,85.4788846 C33.3685,85.2516923 33.5762308,85.0888077 33.8135769,84.975 C34.0526154,84.8624615 34.3301538,84.7892692 34.7257308,84.788 L34.7257308,83.7332692 L34.6381538,84.7846154 C34.6804615,84.788 34.7109231,84.788 34.7257308,84.788 L34.7257308,83.7332692 L34.6381538,84.7846154 C35.2203077,84.8328462 35.7318077,84.4004615 35.7800385,83.8183077 C35.8286923,83.2361538 35.3963077,82.7246538 34.8141538,82.6764231 C34.7714231,82.6730385 34.7409615,82.6726141 34.7257308,82.6726141 C34.1376538,82.6721923 33.5927308,82.7775385 33.1121154,82.9734231 C32.692,83.1435 32.3247692,83.3804231 32.0129615,83.6486538 C31.4659231,84.1203846 31.0830385,84.6754615 30.7644615,85.2072692 C30.2927308,86.0064615 29.9377692,86.7764615 29.5806923,87.2443846 C29.4046923,87.4804615 29.2422308,87.6331923 29.0962692,87.7211923 C28.9477692,87.8075 28.8161923,87.8536154 28.5758846,87.857 C27.9920385,87.857 27.5186154,88.3308462 27.5186154,88.9151154 C27.5186154,89.4989615 27.9920385,89.9724017 28.5763077,89.9724017","id","Fill-58"],["d","M135.468808,19.5072308 C135.466692,19.7170769 135.429038,19.8431538 135.364731,19.9709231 C135.307192,20.0817692 135.219615,20.1964231 135.083385,20.3237692 C134.848154,20.5467308 134.462731,20.7887308 133.997346,21.0421538 C133.301808,21.4301154 132.435346,21.8358462 131.667038,22.5275769 C131.285,22.8745 130.929192,23.3047692 130.677038,23.8344615 C130.423615,24.3628846 130.282731,24.9818462 130.284408,25.6575 C130.284408,26.2413462 130.757846,26.7151923 131.342115,26.7151923 C131.925962,26.7151923 132.399808,26.2413462 132.399808,25.6575 C132.400231,25.3131154 132.456923,25.0575769 132.5445,24.8401154 C132.622346,24.6497308 132.726423,24.4847308 132.865192,24.3226923 C133.105923,24.0400769 133.464692,23.7726923 133.903423,23.5120769 C134.559615,23.1148077 135.372346,22.7602692 136.122885,22.2064615 C136.496462,21.9263846 136.862,21.5832692 137.140385,21.1267692 C137.420038,20.6728077 137.587154,20.1063077 137.584231,19.5072308 C137.584231,18.9233846 137.110346,18.4495385 136.5265,18.4495385 C135.942231,18.4495385 135.468808,18.9233846 135.468808,19.5072308","id","Fill-59"],["d","M135.468808,7.20753846 C135.466692,7.41696154 135.429038,7.54346154 135.364731,7.67123077 C135.307192,7.78165385 135.219615,7.89673077 135.083385,8.02407692 C134.848154,8.24703846 134.462731,8.48861538 133.997346,8.74246154 C133.301808,9.13 132.435346,9.53573077 131.667038,10.2274615 C131.285,10.5743846 130.929615,11.0046538 130.677038,11.5343462 C130.423615,12.0627692 130.282731,12.6817308 130.284408,13.3569615 C130.284408,13.9412308 130.757846,14.4146538 131.342115,14.4146538 C131.925962,14.4146538 132.399808,13.9412308 132.399808,13.3569615 C132.400231,13.013 132.456923,12.7574615 132.5445,12.54 C132.622346,12.3500385 132.726423,12.1846154 132.865192,12.0225769 C133.105923,11.7403846 133.464692,11.4725769 133.903423,11.2119615 C134.559615,10.8146923 135.372346,10.4605769 136.122885,9.90634615 C136.496462,9.62669231 136.862,9.28315385 137.140385,8.82665385 C137.420038,8.37311538 137.587154,7.80661538 137.584231,7.20753846 C137.584231,6.62369231 137.110346,6.14984615 136.5265,6.14984615 C135.942231,6.14984615 135.468808,6.62369231 135.468808,7.20753846","id","Fill-60"],["d","M137.584209,19.5072308 C137.585885,18.986 137.461923,18.4884615 137.242346,18.0696154 C137.051962,17.7019615 136.798538,17.3977692 136.527346,17.1451923 C136.050538,16.7026538 135.522115,16.3988846 135.016538,16.1188077 C134.256692,15.7063077 133.540423,15.3386538 133.090269,14.9219231 C132.863077,14.7146154 132.700192,14.5068846 132.586385,14.2691154 C132.473846,14.0305 132.401077,13.7525385 132.399808,13.3569615 C132.399808,12.7731154 131.925962,12.2992692 131.342115,12.2992692 C130.757846,12.2992692 130.284418,12.7731154 130.284418,13.3569615 C130.283577,13.9454615 130.388923,14.4903846 130.584808,14.9705769 C130.755308,15.3911154 130.992231,15.7583462 131.260462,16.0701538 C131.731769,16.6167692 132.287269,17.0000769 132.819077,17.3186538 C133.618269,17.7908077 134.388269,18.1453462 134.856192,18.5024231 C135.091846,18.6784231 135.245,18.8413077 135.332577,18.9868462 C135.418885,19.1353462 135.465423,19.2669231 135.468808,19.5072308 C135.468808,20.0915 135.942231,20.5649231 136.5265,20.5649231 C137.110346,20.5649231 137.584209,20.0915 137.584209,19.5072308","id","Fill-61"],["d","M137.584209,7.20753846 C137.585885,6.68630769 137.461923,6.18876923 137.242346,5.76992308 C137.051962,5.40226923 136.798538,5.09807692 136.527346,4.8455 C136.050538,4.40296154 135.522115,4.09919231 135.016538,3.81953846 C134.256692,3.40661538 133.540423,3.03938462 133.090269,2.62265385 C132.863077,2.41534615 132.700192,2.20761538 132.586385,1.96984615 C132.473846,1.73080769 132.401077,1.45326923 132.399808,1.05769231 C132.399808,0.473423077 131.925962,0 131.342115,0 C130.757846,0 130.284418,0.473423077 130.284418,1.05769231 C130.283577,1.64576923 130.388923,2.19069231 130.584808,2.67130769 C130.755308,3.09184615 130.992231,3.45865385 131.260462,3.77046154 C131.731769,4.3175 132.287269,4.70038462 132.819077,5.01938462 C133.618269,5.49111538 134.388269,5.84565385 134.856192,6.20315385 C135.092269,6.37873077 135.245,6.54161538 135.332577,6.68715385 C135.419308,6.83565385 135.465423,6.96723077 135.468808,7.20753846 C135.468808,7.79180769 135.942231,8.26523077 136.5265,8.26523077 C137.110346,8.26523077 137.584209,7.79180769 137.584209,7.20753846","id","Fill-62"],["d","M97.7553077,83.8453846 C97.7536154,84.0548077 97.7155385,84.1808846 97.6516538,84.3090769 C97.5941154,84.4195 97.5065385,84.5345769 97.3703077,84.6615 C97.1350769,84.8844615 96.7492308,85.1264615 96.2842692,85.3798846 C95.5887308,85.7678462 94.7222692,86.1735769 93.9539615,86.8653077 C93.5715,87.2122308 93.2161154,87.6425 92.9639615,88.1721923 C92.7105385,88.7010385 92.5696538,89.3195769 92.5713311,89.9952308 C92.5713311,90.5795 93.0447692,91.0529231 93.6290385,91.0529231 C94.2128846,91.0529231 94.6867308,90.5795 94.6867308,89.9952308 C94.6871538,89.6508462 94.7438462,89.3953077 94.8314231,89.1778462 C94.9092692,88.9878846 95.0133462,88.8224615 95.1521154,88.6604231 C95.3928462,88.3782308 95.7516154,88.1104231 96.1903462,87.8498077 C96.8465385,87.4525385 97.6592692,87.0984231 98.4098077,86.5441923 C98.7833846,86.2645385 99.1489231,85.921 99.4273077,85.4645 C99.7065385,85.0109615 99.8740769,84.4440385 99.8707426,83.8453846 C99.8707426,83.2611154 99.3972692,82.7876923 98.813,82.7876923 C98.2291538,82.7876923 97.7553077,83.2611154 97.7553077,83.8453846","id","Fill-63"],["d","M97.7553077,71.5452692 C97.7536154,71.7551154 97.7155385,71.8811923 97.6516538,72.0089615 C97.5941154,72.1198077 97.5065385,72.2344615 97.3703077,72.3618077 C97.1350769,72.5847692 96.7492308,72.8267692 96.2842692,73.0801923 C95.5887308,73.4681538 94.7222692,73.8734615 93.9539615,74.5656154 C93.5715,74.9125385 93.2161154,75.3428077 92.9639615,75.8720769 C92.7105385,76.4009231 92.5696538,77.0194615 92.5713311,77.6951154 C92.5713311,78.2789615 93.0447692,78.7528077 93.6290385,78.7528077 C94.2128846,78.7528077 94.6867308,78.2789615 94.6867308,77.6951154 C94.6871538,77.3507308 94.7438462,77.0951923 94.8314231,76.8777308 C94.9092692,76.6877692 95.0133462,76.5227692 95.1521154,76.3607308 C95.3928462,76.0781154 95.7516154,75.8107308 96.1903462,75.5501154 C96.8465385,75.1528462 97.6592692,74.7983077 98.4098077,74.2445 C98.7833846,73.9644231 99.1489231,73.6213077 99.4273077,73.1648077 C99.7065385,72.7108462 99.8740769,72.1443462 99.8707426,71.5452692 C99.8707426,70.9614231 99.3972692,70.4875769 98.813,70.4875769 C98.2291538,70.4875769 97.7553077,70.9614231 97.7553077,71.5452692","id","Fill-64"],["d","M99.8707189,83.8453846 C99.8728077,83.3241538 99.7484231,82.8261923 99.5292692,82.4077692 C99.3388846,82.0401154 99.0854615,81.7359231 98.8142692,81.4829231 C98.3374615,81.0403846 97.8090385,80.7366154 97.3034615,80.4565385 C96.5436154,80.0440385 95.8273462,79.6768077 95.3771923,79.2600769 C95.15,79.0527692 94.9871154,78.8446154 94.8733077,78.6072692 C94.7607692,78.3682308 94.688,78.0906923 94.6867308,77.6951154 C94.6867308,77.1108462 94.2128846,76.6374231 93.6290385,76.6374231 C93.0447692,76.6374231 92.5713411,77.1108462 92.5713411,77.6951154 C92.5705,78.2831923 92.6758462,78.8281154 92.8717308,79.3083077 C93.0422308,79.7288462 93.2791538,80.0960769 93.5473846,80.4078846 C94.0186923,80.9549231 94.5737692,81.3378077 95.106,81.6568077 C95.9051923,82.1285385 96.6751923,82.4830769 97.1431154,82.8405769 C97.3787692,83.0161538 97.5319231,83.1790385 97.6195,83.3245769 C97.7058077,83.4735 97.7523462,83.6050769 97.7553077,83.8453846 C97.7553077,84.4292308 98.2291538,84.9030769 98.813,84.9030769 C99.3972692,84.9030769 99.8707189,84.4292308 99.8707189,83.8453846","id","Fill-65"],["d","M99.8707189,71.5452692 C99.8728077,71.0240385 99.7484231,70.5265 99.5292692,70.1080769 C99.3388846,69.7404231 99.0850385,69.4362308 98.8142692,69.1832308 C98.3374615,68.7411154 97.8090385,68.4373462 97.3034615,68.1572692 C96.5431923,67.7447692 95.8273462,67.3771154 95.3771923,66.9603846 C95.15,66.7530769 94.9871154,66.5453462 94.8733077,66.3075769 C94.7607692,66.0689615 94.688,65.791 94.6867308,65.3954231 C94.6867308,64.8115769 94.2128846,64.3377308 93.6290385,64.3377308 C93.0447692,64.3377308 92.5713411,64.8115769 92.5713411,65.3954231 C92.5705,65.9839231 92.6758462,66.5288462 92.8717308,67.0090385 C93.0422308,67.4295769 93.2791538,67.7968077 93.5473846,68.1086154 C94.0186923,68.6552308 94.5737692,69.0385385 95.106,69.3571154 C95.9051923,69.8292692 96.6751923,70.1838077 97.1431154,70.5408846 C97.3787692,70.7168846 97.5319231,70.8797692 97.6195,71.0253077 C97.7058077,71.1738077 97.7523462,71.3049615 97.7553077,71.5452692 C97.7553077,72.1295385 98.2291538,72.6029615 98.813,72.6029615 C99.3972692,72.6029615 99.8707189,72.1295385 99.8707189,71.5452692","id","Fill-66"],["d","M199.984654,186.622615 C199.982538,186.832462 199.944885,186.958538 199.880577,187.086308 C199.823038,187.197154 199.735462,187.311808 199.599231,187.439154 C199.364,187.662115 198.978577,187.904115 198.513192,188.157538 C197.817654,188.5455 196.951192,188.951231 196.182885,189.643385 C195.800846,189.990308 195.445462,190.420577 195.192885,190.950269 C194.939462,191.478692 194.799,192.097654 194.800261,192.773308 C194.800261,193.357154 195.273692,193.831 195.857962,193.831 C196.442231,193.831 196.915654,193.357154 196.915654,192.773308 C196.9165,192.4285 196.972769,192.173385 197.060769,191.9555 C197.138192,191.765538 197.242269,191.600115 197.381038,191.438077 C197.621769,191.155885 197.980962,190.888077 198.419269,190.627462 C199.075885,190.230192 199.888192,189.875654 200.639154,189.321846 C201.012308,189.041769 201.377846,188.698654 201.656231,188.242154 C201.935885,187.788192 202.103423,187.221692 202.100089,186.622615 C202.100089,186.038769 201.626192,185.564923 201.042346,185.564923 C200.458077,185.564923 199.984654,186.038769 199.984654,186.622615","id","Fill-67"],["d","M199.984654,174.322923 C199.982538,174.532769 199.944885,174.658846 199.880577,174.786615 C199.823038,174.897462 199.735462,175.012115 199.599231,175.139462 C199.364,175.362423 198.978577,175.604 198.513615,175.857846 C197.818077,176.245385 196.951615,176.651115 196.182885,177.342846 C195.800846,177.689769 195.445462,178.120038 195.193308,178.649731 C194.939462,179.178154 194.799,179.797115 194.800261,180.472346 C194.800261,181.056615 195.273692,181.530038 195.857962,181.530038 C196.442231,181.530038 196.915654,181.056615 196.915654,180.472346 C196.9165,180.128385 196.972769,179.872846 197.060769,179.655385 C197.138192,179.465423 197.242269,179.3 197.381038,179.137962 C197.621769,178.855769 197.980538,178.587962 198.419269,178.327346 C199.075462,177.930077 199.888192,177.575962 200.639154,177.021731 C201.012308,176.742077 201.377846,176.398538 201.656231,175.942038 C201.935885,175.4885 202.103423,174.922 202.100089,174.322923 C202.100089,173.738654 201.626192,173.265231 201.042346,173.265231 C200.458077,173.265231 199.984654,173.738654 199.984654,174.322923","id","Fill-68"],["d","M202.100056,186.622615 C202.101731,186.101385 201.977769,185.603846 201.758192,185.185 C201.567808,184.817769 201.314385,184.513154 201.043192,184.260577 C200.566385,183.818038 200.037962,183.514269 199.532808,183.234192 C198.772538,182.821692 198.056269,182.454462 197.606538,182.037731 C197.379346,181.830423 197.216038,181.622269 197.102231,181.384923 C196.990115,181.145885 196.916923,180.868346 196.915654,180.472346 C196.915654,179.8885 196.442231,179.414654 195.857962,179.414654 C195.273692,179.414654 194.800264,179.8885 194.800264,180.472346 C194.799423,181.060846 194.904769,181.605769 195.100654,182.085962 C195.271154,182.5065 195.508077,182.873731 195.776308,183.185538 C196.248038,183.732577 196.803115,184.115462 197.334923,184.434462 C198.134115,184.906192 198.904115,185.260731 199.372038,185.617808 C199.608115,185.793808 199.760846,185.956692 199.848423,186.102231 C199.935154,186.250731 199.981269,186.382308 199.984654,186.622615 C199.984654,187.206885 200.458077,187.680308 201.042346,187.680308 C201.626192,187.680308 202.100056,187.206885 202.100056,186.622615","id","Fill-69"],["d","M202.100056,174.322923 C202.101731,173.801692 201.977769,173.304154 201.758192,172.885308 C201.567808,172.518077 201.314385,172.213885 201.043192,171.960885 C200.566385,171.518769 200.037962,171.215 199.532808,170.934923 C198.772538,170.522423 198.056269,170.154769 197.606115,169.738462 C197.378923,169.530731 197.216038,169.323 197.102231,169.085654 C196.989692,168.846615 196.916923,168.569077 196.915654,168.1735 C196.915654,167.589231 196.442231,167.115808 195.857962,167.115808 C195.273692,167.115808 194.800264,167.589231 194.800264,168.1735 C194.799423,168.761577 194.904769,169.3065 195.100654,169.786692 C195.271154,170.207231 195.508077,170.574462 195.776308,170.886269 C196.248038,171.433308 196.803115,171.816192 197.334923,172.135192 C198.134115,172.606923 198.904115,172.961462 199.372038,173.318538 C199.608115,173.494538 199.760846,173.657423 199.848423,173.802962 C199.935154,173.951462 199.981269,174.082615 199.984654,174.322923 C199.984654,174.907192 200.458077,175.380615 201.042346,175.380615 C201.626192,175.380615 202.100056,174.907192 202.100056,174.322923","id","Fill-70"],["d","M73.1440769,196.315731 C73.1419615,196.525154 73.1043077,196.651231 73.04,196.779 C72.9824615,196.889846 72.8948846,197.004923 72.7586538,197.131846 C72.5234231,197.354808 72.138,197.596808 71.6726154,197.850231 C70.9770769,198.238192 70.1110385,198.643923 69.3423077,199.335654 C68.9602692,199.682577 68.6048846,200.112846 68.3523077,200.642538 C68.0988846,201.170962 67.958,201.7895 67.9596772,202.465154 C67.9596772,203.049 68.4331154,203.522846 69.0173846,203.522846 C69.6012308,203.522846 70.0750769,203.049 70.0750769,202.465154 C70.0755,202.120769 70.1321923,201.865654 70.2197692,201.647769 C70.2976154,201.457808 70.4016923,201.292808 70.5404615,201.130769 C70.7811923,200.848154 71.1399615,200.580769 71.5786923,200.320154 C72.2348846,199.922885 73.0476154,199.568346 73.7981538,199.014538 C74.1717308,198.734462 74.5372692,198.391346 74.8156538,197.934846 C75.0953077,197.480885 75.2624231,196.914385 75.2595003,196.315731 C75.2595003,195.731462 74.7856154,195.258038 74.2017692,195.258038 C73.6175,195.258038 73.1440769,195.731462 73.1440769,196.315731","id","Fill-71"],["d","M73.1440769,184.015615 C73.1419615,184.225462 73.1043077,184.351538 73.04,184.479308 C72.9824615,184.590154 72.8948846,184.704808 72.7586538,184.832154 C72.5234231,185.055115 72.138,185.297115 71.6726154,185.550538 C70.9770769,185.938077 70.1110385,186.343808 69.3423077,187.035962 C68.9602692,187.382462 68.6048846,187.812731 68.3523077,188.342423 C68.0988846,188.870846 67.958,189.489808 67.9596772,190.165038 C67.9596772,190.749308 68.4331154,191.222731 69.0173846,191.222731 C69.6012308,191.222731 70.0750769,190.749308 70.0750769,190.165038 C70.0755,189.821077 70.1321923,189.565538 70.2197692,189.348077 C70.2976154,189.158115 70.4016923,188.993115 70.5404615,188.830654 C70.7811923,188.548462 71.1399615,188.280654 71.5786923,188.020462 C72.2348846,187.622769 73.0476154,187.268654 73.7981538,186.714846 C74.1717308,186.434769 74.5372692,186.091654 74.8156538,185.634731 C75.0953077,185.181192 75.2624231,184.614692 75.2595003,184.015615 C75.2595003,183.431769 74.7856154,182.957923 74.2017692,182.957923 C73.6175,182.957923 73.1440769,183.431769 73.1440769,184.015615","id","Fill-72"],["d","M75.2594786,196.315731 C75.2611538,195.794077 75.1371923,195.296538 74.9176154,194.878115 C74.7272308,194.510462 74.4738077,194.205846 74.2026154,193.953269 C73.7258077,193.510731 73.1973846,193.206962 72.6918077,192.926885 C71.9319615,192.514385 71.2156923,192.146731 70.7655385,191.73 C70.5383462,191.522692 70.3754615,191.314962 70.2616538,191.077192 C70.1491154,190.838577 70.0763462,190.560615 70.0750769,190.165038 C70.0750769,189.581192 69.6012308,189.107346 69.0173846,189.107346 C68.4331154,189.107346 67.9596873,189.581192 67.9596873,190.165038 C67.9588462,190.753538 68.0641923,191.298462 68.2600769,191.778654 C68.4305769,192.199192 68.6675,192.566423 68.9357308,192.878231 C69.4070385,193.424846 69.9625385,193.807731 70.4943462,194.126731 C71.2935385,194.598462 72.0635385,194.953423 72.5314615,195.3105 C72.7671154,195.4865 72.9202692,195.649385 73.0078462,195.794923 C73.0941538,195.943423 73.1406923,196.075 73.1440769,196.315731 C73.1440769,196.899577 73.6175,197.373423 74.2017692,197.373423 C74.7856154,197.373423 75.2594786,196.899577 75.2594786,196.315731","id","Fill-73"],["d","M75.2594786,184.015615 C75.2611538,183.494385 75.1371923,182.996846 74.9176154,182.578 C74.7272308,182.210346 74.4738077,181.906154 74.2026154,181.653154 C73.7258077,181.211038 73.1973846,180.907269 72.6918077,180.627192 C71.9319615,180.214692 71.2156923,179.847462 70.7655385,179.430731 C70.5383462,179.223423 70.3754615,179.015269 70.2616538,178.7775 C70.1491154,178.538885 70.0763462,178.261346 70.0750769,177.865346 C70.0750769,177.281077 69.6012308,176.807654 69.0173846,176.807654 C68.4331154,176.807654 67.9596873,177.281077 67.9596873,177.865346 C67.9588462,178.453846 68.0641923,178.998769 68.2600769,179.478962 C68.4305769,179.8995 68.6675,180.266731 68.9357308,180.578538 C69.4070385,181.125577 69.9625385,181.508462 70.4943462,181.827462 C71.2935385,182.299192 72.0635385,182.653731 72.5314615,183.010808 C72.7671154,183.186808 72.9202692,183.349692 73.0078462,183.495231 C73.0941538,183.643731 73.1406923,183.775308 73.1440769,184.015615 C73.1440769,184.599885 73.6175,185.073308 74.2017692,185.073308 C74.7856154,185.073308 75.2594786,184.599885 75.2594786,184.015615","id","Fill-74"],["d","M150.245615,152.688038 L165.420962,152.688038 C166.005231,152.688038 166.478654,152.214615 166.478654,151.630346 C166.478654,151.0465 166.005231,150.572654 165.420962,150.572654 L150.245615,150.572654 C149.661769,150.572654 149.187923,151.0465 149.187923,151.630346 C149.187923,152.214615 149.661769,152.688038 150.245615,152.688038","id","Fill-75"],["d","M1.05769231,108.836538 L16.2330385,108.836538 C16.8173077,108.836538 17.2907308,108.363115 17.2907308,107.778846 C17.2907308,107.194577 16.8173077,106.721154 16.2330385,106.721154 L1.05769231,106.721154 C0.473423077,106.721154 0,107.194577 0,107.778846 C0,108.363115 0.473423077,108.836538 1.05769231,108.836538","id","Fill-76"],["d","M151.380308,38.2965 L166.555654,38.2965 C167.139923,38.2965 167.613346,37.8226538 167.613346,37.2388077 C167.613346,36.6545385 167.139923,36.1811154 166.555654,36.1811154 L151.380308,36.1811154 C150.796038,36.1811154 150.322615,36.6545385 150.322615,37.2388077 C150.322615,37.8226538 150.796038,38.2965 151.380308,38.2965","id","Fill-77"],["d","M211.198731,4.048 L226.374077,4.048 C226.957923,4.048 227.431769,3.57457692 227.431769,2.99030769 C227.431769,2.40646154 226.957923,1.93261538 226.374077,1.93261538 L211.198731,1.93261538 C210.614462,1.93261538 210.141038,2.40646154 210.141038,2.99030769 C210.141038,3.57457692 210.614462,4.048 211.198731,4.048","id","Fill-78"],["d","M61.5568462,230.232115 L76.7321923,230.232115 C77.3164615,230.232115 77.7898846,229.758269 77.7898846,229.174423 C77.7898846,228.590154 77.3164615,228.116731 76.7321923,228.116731 L61.5568462,228.116731 C60.9725769,228.116731 60.4991538,228.590154 60.4991538,229.174423 C60.4991538,229.758269 60.9725769,230.232115 61.5568462,230.232115","id","Fill-79"],["d","M101.2715,200.604038 L112.002,189.873538 C112.415346,189.460615 112.415346,188.790885 112.002,188.377962 C111.589077,187.964615 110.919346,187.964615 110.506423,188.377962 L99.7759231,199.108462 C99.3625769,199.521385 99.3625769,200.191115 99.7759231,200.604038 C100.188846,201.017385 100.858577,201.017385 101.2715,200.604038","id","Fill-80"],["d","M12.4435385,14.4688077 L23.1740385,3.73830769 C23.5873846,3.32538462 23.5873846,2.65565385 23.1740385,2.24273077 C22.7611154,1.82938462 22.0913846,1.82938462 21.6784615,2.24273077 L10.9479615,12.9732308 C10.5346154,13.3861538 10.5346154,14.0558846 10.9479615,14.4688077 C11.3608846,14.8821538 12.0306154,14.8821538 12.4435385,14.4688077","id","Fill-81"],["d","M219.533769,124.474308 L230.264269,113.743808 C230.677615,113.330885 230.677615,112.661154 230.264269,112.247808 C229.851346,111.834885 229.181615,111.834885 228.768692,112.247808 L218.037769,122.978731 C217.624846,123.391654 217.624846,124.061385 218.037769,124.474308 C218.451115,124.887231 219.120846,124.887231 219.533769,124.474308","id","Fill-82"],["d","M127.623269,71.2592692 L130.399077,66.4442308 L130.887731,66.4442308 L128.356038,70.8357692 L136.862423,70.8285769 L145.370923,70.8247692 L141.111808,63.4594231 L141.478192,63.2478846 L146.104115,71.2474231 L136.862846,71.2516538 L127.623269,71.2592692 M131.619231,64.3284231 L132.933308,62.0480385 L133.177846,62.4706923 L132.606269,63.4636538 L132.107462,64.328 L131.619231,64.3284231 M141.111808,63.4594231 L136.852269,56.0928077 L134.397577,60.3540385 L134.153038,59.9309615 L136.851423,55.2466538 L141.478192,63.2478846 L141.111808,63.4594231","id","Fill-83"],["d","M130.399077,66.4442308 L131.619231,64.3284231 L132.107462,64.328 L130.887731,66.4442308 L130.399077,66.4442308 M133.177846,62.4706923 L132.933308,62.0480385 L134.153038,59.9309615 L134.397577,60.3540385 L133.177846,62.4706923","id","Fill-84"],["d","M112.934462,165.183192 L115.710269,160.368154 L116.198923,160.368154 L113.666808,164.759692 L122.173615,164.7525 L130.682115,164.748692 L126.423,157.383346 L126.606192,157.277577 L126.789385,157.171808 L131.415308,165.171346 L122.174038,165.175577 L112.934462,165.183192 M116.930423,158.252346 L118.2445,155.971538 L118.489038,156.394615 L117.917038,157.387577 L117.418654,158.251923 L116.930423,158.252346 M126.423,157.383346 L122.163462,150.016731 L119.708769,154.277962 L119.464231,153.854885 L122.162615,149.170577 L126.789385,157.171808 L126.606192,157.277577 L126.423,157.383346","id","Fill-85"],["d","M115.710269,160.368154 L116.930423,158.252346 L117.418654,158.251923 L116.198923,160.368154 L115.710269,160.368154 M118.489038,156.394615 L118.2445,155.971538 L119.464231,153.854885 L119.708769,154.277962 L118.489038,156.394615","id","Fill-86"],["d","M163.850077,194.026038 L166.625885,189.211 L167.114538,189.210577 L164.582846,193.602538 L173.089231,193.595346 L181.597308,193.591115 L177.338615,186.226192 L177.705,186.014654 L182.3305,194.014192 L173.089654,194.018423 L163.850077,194.026038 M167.846038,187.095192 L169.160115,184.814385 L169.404654,185.237462 L168.334269,187.094769 L167.846038,187.095192 M177.338615,186.226192 L173.079077,178.859577 L170.624385,183.120808 L170.379423,182.697731 L173.078231,178.013423 L177.705,186.014654 L177.338615,186.226192","id","Fill-87"],["d","M166.625885,189.211 L167.846038,187.095192 L168.334269,187.094769 L167.114538,189.210577 L166.625885,189.211 M169.404654,185.237462 L169.160115,184.814385 L170.379423,182.697731 L170.624385,183.120808 L169.404654,185.237462","id","Fill-88"],["d","M204.624962,136.113577 L198.087577,129.582115 L196.504846,128.001923 L196.630923,127.529769 L198.386269,129.282577 L204.405385,135.296192 L208.799038,118.855423 L200.584577,121.064731 L198.186154,121.709077 L198.312231,121.237346 L200.475,120.656462 L209.396846,118.256346 L204.624962,136.113577 M194.776154,126.276192 L191.548923,123.053615 L195.953154,121.870692 L195.827077,122.342846 L192.366308,123.271923 L194.902231,125.804038 L194.776154,126.276192","id","Fill-89"],["d","M196.504846,128.001923 L194.776154,126.276192 L194.902231,125.804038 L196.630923,127.529769 L196.504846,128.001923 M195.827077,122.342846 L195.953154,121.870692 L198.312231,121.237346 L198.186154,121.709077 L195.827077,122.342846","id","Fill-90"],["d","M58.6947308,36.5669615 L50.5746154,28.4553077 L50.7006923,27.9835769 L52.4560385,29.7359615 L58.4751538,35.7495769 L62.8683846,19.3088077 L54.6539231,21.5185385 L52.2559231,22.1624615 L52.382,21.6907308 L54.5443462,21.1098462 L63.4661923,18.7101538 L58.6947308,36.5669615 M48.8459231,26.73 L45.6182692,23.5074231 L50.0229231,22.3245 L49.8968462,22.7962308 L46.4356538,23.7261538 L48.972,26.2578462 L48.8459231,26.73","id","Fill-91"],["d","M50.5746154,28.4553077 L48.8459231,26.73 L48.972,26.2578462 L50.7006923,27.9835769 L50.5746154,28.4553077 M49.8968462,22.7962308 L50.0229231,22.3245 L52.382,21.6907308 L52.2559231,22.1624615 L49.8968462,22.7962308","id","Fill-92"],["d","M52.6180769,221.837 L46.0802692,215.305538 L44.4975385,213.725769 L44.6240385,213.253615 L46.3793846,215.006 L52.3985,221.019615 L54.5942692,212.8005 L54.7986154,212.855077 L54.5942692,212.8005 L56.7913077,204.579269 L48.5772692,206.788577 L46.1792692,207.432923 L46.3053462,206.960769 L48.4672692,206.379885 L57.3895385,203.980192 L52.6180769,221.837 M42.7692692,212.000038 L39.5411923,208.777885 L43.9462692,207.594538 L43.8201923,208.066692 L40.359,208.996192 L42.8953462,211.528308 L42.7692692,212.000038","id","Fill-93"],["d","M44.4975385,213.725769 L42.7692692,212.000038 L42.8953462,211.528308 L44.6240385,213.253615 L44.4975385,213.725769 M43.8201923,208.066692 L43.9462692,207.594538 L46.3053462,206.960769 L46.1792692,207.432923 L43.8201923,208.066692","id","Fill-94"],["d","M207.903385,41.9726154 L207.898308,31.7185 L208.320962,31.4739615 L208.322231,32.7309231 L208.326038,41.2394231 L215.690962,36.9798846 L223.058,32.7207692 L215.687154,28.4743462 L214.564731,27.8270385 C214.667538,27.7276154 214.748346,27.6078846 214.803346,27.4767308 L215.898269,28.1079615 L223.904154,32.7199231 L207.903385,41.9726154 M207.896192,29.2760769 L207.892385,24.8697308 L208.315885,25.1134231 L208.318846,29.0315385 L207.896192,29.2760769","id","Fill-95"],["d","M207.898308,31.7185 L207.896192,29.2760769 L208.318846,29.0315385 L208.320962,31.4739615 L207.898308,31.7185 M214.564731,27.8270385 L208.315038,24.2245385 L208.315885,25.1134231 L207.892385,24.8697308 L207.891115,23.4917692 L214.803346,27.4767308 C214.748346,27.6078846 214.667538,27.7276154 214.564731,27.8270385","id","Fill-96"],["d","M46.7089615,130.629231 L46.7034615,120.374269 L47.1265385,120.130154 L47.1316154,129.896038 L61.8627308,121.376538 L54.4923077,117.130538 L53.3698846,116.483231 C53.4726923,116.383385 53.5535,116.264077 53.6085,116.1325 L54.7034231,116.763731 L62.7093077,121.375692 L54.7080769,126.002885 L54.7080769,126.002462 L46.7089615,130.629231 M46.7013462,117.932269 L46.6975385,113.5255 L47.1206154,113.769615 L47.1244231,117.687731 L46.7013462,117.932269","id","Fill-97"],["d","M46.7034615,120.374269 L46.7013462,117.932269 L47.1244231,117.687731 L47.1265385,120.130154 L46.7034615,120.374269 M53.3698846,116.483231 L47.1201923,112.880308 L47.1206154,113.769615 L46.6975385,113.5255 L46.6962692,112.147962 L53.6085,116.1325 C53.5535,116.264077 53.4726923,116.383385 53.3698846,116.483231","id","Fill-98"],["d","M149.559808,118.2335 C146.269538,118.2335 143.513615,115.9455 142.796923,112.873538 C142.930615,112.820231 143.062192,112.763115 143.192077,112.702615 C143.464538,113.936308 144.086038,115.038 144.948692,115.900654 C146.1295,117.081038 147.758346,117.810423 149.559808,117.810423 C151.360846,117.810423 152.989692,117.081038 154.1705,115.900654 C155.350885,114.719846 156.080269,113.091 156.080269,111.289538 C156.080269,109.488077 155.350885,107.859231 154.1705,106.678423 C152.989692,105.498038 151.360846,104.768654 149.559808,104.768654 C148.904038,104.768654 148.271115,104.865115 147.674154,105.045346 C147.663577,104.9015 147.648769,104.7585 147.630154,104.617192 C148.242769,104.440346 148.8905,104.345577 149.559808,104.345577 C153.394577,104.345577 156.503346,107.454346 156.503346,111.289538 C156.503346,115.124731 153.394577,118.2335 149.559808,118.2335 M142.648423,110.607115 C142.850654,108.535308 143.963346,106.730462 145.581192,105.597462 C145.581192,105.611 145.581192,105.624115 145.581192,105.637654 C145.581192,105.806885 145.573577,105.974 145.559192,106.139423 C145.344692,106.306538 145.140769,106.486346 144.948692,106.678423 C143.983654,107.643462 143.319846,108.908462 143.109577,110.322385 C142.961077,110.424346 142.807077,110.519538 142.648423,110.607115","id","Fill-99"],["d","M142.796923,112.873538 C142.678462,112.364577 142.615423,111.834462 142.615423,111.289538 C142.615423,111.058962 142.626846,110.831769 142.648423,110.607115 C142.807077,110.519538 142.961077,110.424346 143.109577,110.322385 C143.063038,110.638 143.0385,110.960808 143.0385,111.289538 C143.0385,111.774808 143.091385,112.247808 143.192077,112.702615 C143.062192,112.763115 142.930615,112.820231 142.796923,112.873538 M145.559192,106.139423 C145.573577,105.974 145.581192,105.806885 145.581192,105.637654 C145.581192,105.624115 145.581192,105.611 145.581192,105.597462 C146.198038,105.1655 146.8885,104.831269 147.630154,104.617192 C147.648769,104.7585 147.663577,104.9015 147.674154,105.045346 C146.898231,105.279308 146.183654,105.653731 145.559192,106.139423","id","Fill-100"],["d","M115.542308,43.1022308 C112.252462,43.1022308 109.496538,40.8142308 108.779846,37.7422692 C108.913115,37.6889615 109.045115,37.6318462 109.174577,37.5713462 C109.447038,38.8050385 110.068962,39.9067308 110.931192,40.7693846 C112.112,41.9497692 113.741269,42.6791538 115.542308,42.6791538 C117.343769,42.6791538 118.972615,41.9497692 120.153423,40.7693846 C121.333808,39.5885769 122.063192,37.9597308 122.063192,36.1582692 C122.063192,34.3568077 121.333808,32.7279615 120.153423,31.5471538 C118.972615,30.3667692 117.343769,29.6373846 115.542308,29.6373846 C114.886962,29.6373846 114.254038,29.7338462 113.657077,29.9140769 C113.6465,29.7702308 113.631692,29.6272308 113.613077,29.4859231 C114.225692,29.3090769 114.873,29.2143077 115.542308,29.2143077 C119.3775,29.2143077 122.486269,32.3226538 122.486269,36.1582692 C122.486269,39.9934615 119.3775,43.1022308 115.542308,43.1022308 M108.631346,35.4758462 C108.833154,33.4036154 109.945846,31.5991923 111.564115,30.4661923 C111.564115,30.4793077 111.564115,30.4928462 111.564115,30.5059615 C111.564115,30.6751923 111.556923,30.8427308 111.542115,31.0077308 C111.327615,31.1748462 111.123692,31.3550769 110.931192,31.5471538 C109.966154,32.5126154 109.302346,33.7771923 109.0925,35.1911154 C108.943577,35.2930769 108.789577,35.3882692 108.631346,35.4758462","id","Fill-101"],["d","M108.779846,37.7422692 C108.660962,37.2337308 108.597923,36.7031923 108.597923,36.1582692 C108.597923,35.9281154 108.609346,35.7005 108.631346,35.4758462 C108.789577,35.3882692 108.943577,35.2930769 109.0925,35.1911154 C109.045538,35.5067308 109.021,35.8295385 109.021,36.1582692 C109.021,36.6435385 109.074308,37.1165385 109.174577,37.5713462 C109.045115,37.6318462 108.913115,37.6889615 108.779846,37.7422692 M111.542115,31.0077308 C111.556923,30.8427308 111.564115,30.6751923 111.564115,30.5059615 C111.564115,30.4928462 111.564115,30.4793077 111.564115,30.4661923 C112.180962,30.0342308 112.871846,29.7 113.613077,29.4859231 C113.631692,29.6272308 113.6465,29.7702308 113.657077,29.9140769 C112.881577,30.1476154 112.166577,30.5220385 111.542115,31.0077308","id","Fill-102"],["d","M119.839077,241.801154 C116.549231,241.801154 113.793308,239.513154 113.076192,236.441192 C113.209885,236.387885 113.341462,236.330769 113.471346,236.270269 C113.743808,237.503962 114.365308,238.605654 115.227962,239.467885 C116.408769,240.648692 118.037615,241.378077 119.839077,241.378077 C121.640538,241.378077 123.269385,240.648692 124.450192,239.467885 C125.630577,238.2875 126.359962,236.658231 126.359962,234.856769 C126.359962,233.055308 125.630577,231.426462 124.450192,230.246077 C123.269385,229.065692 121.640538,228.336308 119.839077,228.336308 C119.183308,228.336308 118.550385,228.433192 117.953846,228.613 C117.942846,228.469154 117.928038,228.326154 117.909846,228.184846 C118.522038,228.008 119.169346,227.913231 119.839077,227.913231 C123.674269,227.913231 126.783038,231.021577 126.783038,234.856769 C126.783038,238.692385 123.674269,241.801154 119.839077,241.801154 M112.927692,234.175192 C113.1295,232.102962 114.242192,230.297692 115.860462,229.165115 C115.860462,229.178231 115.860462,229.191346 115.860462,229.204885 C115.860462,229.374115 115.853269,229.541654 115.838885,229.707077 C115.623962,229.873769 115.420038,230.054 115.227962,230.246077 C114.2625,231.211115 113.598692,232.476115 113.388846,233.890038 C113.239923,233.992 113.085923,234.087192 112.927692,234.175192","id","Fill-103"],["d","M113.076192,236.441192 C112.957308,235.932231 112.894692,235.402115 112.894692,234.856769 C112.894692,234.626615 112.905692,234.399423 112.927692,234.175192 C113.085923,234.087192 113.239923,233.992 113.388846,233.890038 C113.341885,234.205654 113.317769,234.528462 113.317769,234.856769 C113.317769,235.342462 113.370654,235.815462 113.471346,236.270269 C113.341462,236.330769 113.209885,236.387885 113.076192,236.441192 M115.838885,229.707077 C115.853269,229.541654 115.860462,229.374115 115.860462,229.204885 C115.860462,229.191346 115.860462,229.178231 115.860462,229.165115 C116.477308,228.733154 117.168192,228.398923 117.909846,228.184846 C117.928038,228.326154 117.942846,228.469154 117.953846,228.613 C117.177923,228.846538 116.462923,229.221385 115.838885,229.707077","id","Fill-104"],["d","M158.255308,224.794731 L157.832231,224.794731 C157.832231,222.993269 157.102423,221.364423 155.922038,220.184038 C154.741231,219.003654 153.112385,218.274269 151.310923,218.274269 C150.655154,218.274269 150.022654,218.370731 149.426115,218.550538 C149.415115,218.406692 149.400731,218.264538 149.382115,218.122385 C149.994308,217.945962 150.641615,217.851192 151.310923,217.851192 C155.146115,217.851192 158.255308,220.959538 158.255308,224.794731 M144.789615,224.794731 L144.366538,224.794731 C144.366538,222.439462 145.539308,220.358346 147.332731,219.102654 C147.332731,219.116192 147.332731,219.129308 147.332731,219.142846 C147.332731,219.291769 147.363615,219.4335 147.419462,219.562115 C147.164769,219.751654 146.924038,219.959808 146.699808,220.184038 C145.519423,221.364423 144.789615,222.993269 144.789615,224.794731","id","Fill-105"],["d","M147.419462,219.562115 C147.363615,219.4335 147.332731,219.291769 147.332731,219.142846 C147.332731,219.129308 147.332731,219.116192 147.332731,219.102654 C147.95,218.670692 148.640462,218.336462 149.382115,218.122385 C149.400731,218.264538 149.415115,218.406692 149.426115,218.550538 C148.694615,218.770962 148.017692,219.116615 147.419462,219.562115","id","Fill-106"],["d","M104.519462,121.387538 L104.096385,121.387538 C104.095962,119.586077 103.366577,117.957231 102.186192,116.776846 C101.005385,115.596462 99.3765385,114.867077 97.5755,114.867077 C96.9197308,114.867077 96.2868077,114.963538 95.6902692,115.143769 C95.6792692,114.999923 95.6644615,114.856923 95.6462692,114.715615 C96.2584615,114.538769 96.9057692,114.444 97.5755,114.444 C101.410269,114.444 104.519038,117.552346 104.519462,121.387538 M91.0541923,121.387538 L90.6311154,121.387538 C90.6311154,119.032269 91.8034615,116.951154 93.5968846,115.695885 C93.5968846,115.709 93.5968846,115.722538 93.5968846,115.736077 C93.5968846,115.885 93.6277692,116.026731 93.6831923,116.155346 C93.4289231,116.344885 93.1886154,116.552615 92.9643846,116.776846 C91.7835769,117.957231 91.0541923,119.586077 91.0541923,121.387538","id","Fill-107"],["d","M93.6831923,116.155346 C93.6277692,116.026731 93.5968846,115.885 93.5968846,115.736077 C93.5968846,115.722538 93.5968846,115.709 93.5968846,115.695885 C94.2137308,115.263923 94.9046154,114.929269 95.6462692,114.715615 C95.6644615,114.856923 95.6792692,114.999923 95.6902692,115.143769 C94.9587692,115.364192 94.2818462,115.709423 93.6831923,116.155346","id","Fill-108"],["d","M33.6274231,66.7251538 L33.2043462,66.7251538 C33.2043462,64.9232692 32.4779231,63.2944231 31.3030385,62.1136154 C30.1277308,60.9336538 28.5065,60.2042692 26.7139231,60.2042692 C26.0475769,60.2042692 25.4045,60.3049615 24.7995,60.4923846 C24.7889231,60.3485385 24.7741154,60.2055385 24.7559231,60.0638077 C25.377,59.8797692 26.0340385,59.7811923 26.7139231,59.7811923 C30.5326154,59.7811923 33.6274231,62.8903846 33.6274231,66.7251538 M20.2235,66.7251538 L19.8004231,66.7251538 C19.8004231,64.3910385 20.9469615,62.326 22.7052692,61.0669231 C22.7052692,61.0690385 22.7052692,61.0711538 22.7052692,61.0732692 C22.7052692,61.2327692 22.7403846,61.3842308 22.8038462,61.5200385 C22.5639615,61.7019615 22.3371923,61.9003846 22.1248077,62.1136154 C20.9499231,63.2944231 20.2235,64.9232692 20.2235,66.7251538","id","Fill-109"],["d","M22.8038462,61.5200385 C22.7403846,61.3842308 22.7052692,61.2327692 22.7052692,61.0732692 C22.7052692,61.0711538 22.7052692,61.0690385 22.7052692,61.0669231 C23.3212692,60.6260769 24.0125769,60.2838077 24.7559231,60.0638077 C24.7741154,60.2055385 24.7889231,60.3485385 24.7995,60.4923846 C24.0713846,60.7178846 23.3978462,61.0686154 22.8038462,61.5200385","id","Fill-110"],["d","M189.715731,77.9612308 C185.881385,77.9612308 182.771769,74.8664231 182.771346,71.0477308 C182.771769,67.2290385 185.881385,64.1342308 189.715731,64.1342308 L189.715731,64.5573077 C187.913846,64.5573077 186.285,65.2837308 185.104192,66.4586154 C183.923808,67.6339231 183.194423,69.2551538 183.194423,71.0477308 C183.194423,72.8403077 183.923808,74.4611154 185.104192,75.6368462 C186.285,76.8117308 187.914269,77.5381538 189.715731,77.5381538 L189.715731,77.9612308","id","Fill-111"],["d","M27.6019615,235.037846 C23.7671923,235.037846 20.6584231,231.942615 20.658,228.123923 C20.6584231,224.305231 23.7671923,221.210846 27.6019615,221.210846 L27.6019615,221.633923 C25.8000769,221.633923 24.1712308,222.360346 22.9904231,223.535231 C21.8104615,224.710538 21.0810769,226.331346 21.0810769,228.123923 C21.0810769,229.9165 21.8104615,231.537731 22.9904231,232.713038 C24.1712308,233.888346 25.8000769,234.614769 27.6019615,234.614769 L27.6019615,235.037846","id","Fill-112"],["d","M99.8465769,20.9211538 C96.0118077,20.9211538 92.9026154,17.8259231 92.9026154,14.0072308 C92.9026154,10.1885385 96.0118077,7.09415385 99.8465769,7.09415385 L99.8465769,7.51723077 C98.0446923,7.51723077 96.4158462,8.24365385 95.2350385,9.41853846 C94.0546538,10.5938462 93.3256923,12.2150769 93.3256923,14.0072308 C93.3256923,15.7998077 94.0546538,17.4210385 95.2350385,18.5967692 C96.4158462,19.7716538 98.0446923,20.4980769 99.8465769,20.4980769 L99.8465769,20.9211538","id","Fill-113"],["d","M24.2359615,170.959038 C20.9461154,170.959038 18.1901923,168.670615 17.4730769,165.599077 C17.6067692,165.545769 17.7383462,165.488654 17.8682308,165.428154 C18.1406923,166.661423 18.7626154,167.763538 19.6248462,168.625769 C20.8056538,169.806577 22.4349231,170.535962 24.2359615,170.535962 C26.037,170.535962 27.6662692,169.806577 28.8470769,168.625769 C30.0274615,167.444962 30.7568462,165.816115 30.7568462,164.014654 C30.7568462,162.213192 30.0274615,160.584346 28.8470769,159.403962 C27.6662692,158.223577 26.037,157.494192 24.2359615,157.494192 C23.5801923,157.494192 22.9476923,157.590654 22.3507308,157.770462 C22.3401538,157.627038 22.3253462,157.484038 22.3067308,157.342731 C22.9193462,157.165885 23.5666538,157.071115 24.2359615,157.071115 C28.0707308,157.071115 31.1799231,160.179462 31.1799231,164.014654 C31.1799231,167.849846 28.0711538,170.959038 24.2359615,170.959038 M17.3245769,163.332654 C17.5268077,161.260423 18.6395,159.455577 20.2573462,158.323 C20.2577692,158.336115 20.2577692,158.349231 20.2577692,158.362769 C20.2577692,158.532 20.2501538,158.699115 20.2357692,158.864538 C20.0208462,159.031654 19.8169231,159.211885 19.6248462,159.403962 C18.6593846,160.369 17.996,161.634 17.7857308,163.047923 C17.6368077,163.149885 17.4832308,163.245077 17.3245769,163.332654","id","Fill-114"],["d","M17.4730769,165.599077 C17.3541923,165.090115 17.2915769,164.56 17.2915769,164.014654 C17.2915769,163.7845 17.3025769,163.557308 17.3245769,163.332654 C17.4832308,163.245077 17.6368077,163.149885 17.7857308,163.047923 C17.7387692,163.363538 17.7146538,163.685923 17.7146538,164.014654 C17.7146538,164.500346 17.7675385,164.973346 17.8682308,165.428154 C17.7383462,165.488654 17.6067692,165.545769 17.4730769,165.599077 M20.2357692,158.864538 C20.2501538,158.699115 20.2577692,158.532 20.2577692,158.362769 C20.2577692,158.349231 20.2577692,158.336115 20.2573462,158.323 C20.8746154,157.891038 21.5650769,157.556385 22.3067308,157.342731 C22.3253462,157.484038 22.3401538,157.627038 22.3507308,157.770462 C21.5748077,158.004423 20.8602308,158.378846 20.2357692,158.864538","id","Fill-115"],["d","M231.849115,178.648038 C228.558846,178.648038 225.802923,176.360038 225.086231,173.288077 C225.219923,173.234346 225.3515,173.177654 225.481385,173.117154 C225.753846,174.350423 226.375769,175.452115 227.238,176.314769 C228.418808,177.495154 230.047654,178.224538 231.849115,178.224962 C233.650154,178.224538 235.279,177.495154 236.459808,176.314769 C237.640192,175.133962 238.369577,173.505115 238.369577,171.703654 C238.369577,169.902192 237.640192,168.273346 236.459808,167.092538 C235.279,165.912577 233.650154,165.183192 231.849115,165.183192 C231.193346,165.183192 230.560423,165.279654 229.963462,165.459462 C229.952885,165.316038 229.938077,165.173038 229.919462,165.031731 C230.532077,164.854885 231.179808,164.760115 231.849115,164.760115 C235.683462,164.760115 238.792654,167.868038 238.792654,171.703654 C238.792654,175.538846 235.683885,178.647615 231.849115,178.648038 M224.937731,171.021654 C225.139962,168.949423 226.252231,167.144577 227.870077,166.012 C227.8705,166.025115 227.8705,166.038231 227.8705,166.051346 C227.8705,166.221 227.862885,166.388538 227.8485,166.553962 C227.634,166.720654 227.430077,166.900885 227.238,167.092538 C226.272962,168.058 225.609154,169.323 225.398885,170.7365 C225.249962,170.838885 225.096385,170.933654 224.937731,171.021654","id","Fill-116"],["d","M225.086231,173.288077 C224.967769,172.779115 224.904731,172.248577 224.904731,171.703654 C224.904731,171.4735 224.916154,171.245885 224.937731,171.021654 C225.096385,170.933654 225.249962,170.838885 225.398885,170.7365 C225.351923,171.052115 225.327808,171.374923 225.327808,171.703654 C225.327808,172.188923 225.380692,172.661923 225.481385,173.117154 C225.3515,173.177654 225.219923,173.234346 225.086231,173.288077 M227.8485,166.553962 C227.862885,166.388538 227.8705,166.221 227.8705,166.051346 C227.8705,166.038231 227.8705,166.025115 227.870077,166.012 C228.487346,165.579615 229.177808,165.245808 229.919462,165.031731 C229.938077,165.173038 229.952885,165.316038 229.963462,165.459462 C229.187538,165.693423 228.472962,166.068269 227.8485,166.553962","id","Fill-117"],["d","M233.562154,77.9553077 L219.747,77.9553077 L219.747,73.1491538 L220.170077,73.1491538 L220.170077,77.5322308 L233.139077,77.5322308 L233.139077,64.5632308 L224.755385,64.5632308 L224.755385,64.1401538 L233.562154,64.1401538 L233.562154,77.9553077 M220.170077,71.0337692 L219.747,71.0337692 L219.747,64.1401538 L222.64,64.1401538 L222.64,64.5632308 L220.170077,64.5632308 L220.170077,71.0337692","id","Fill-118"],["d","M219.747,73.1491538 L220.170077,73.1491538 L220.170077,71.0337692 L219.747,71.0337692 L219.747,73.1491538 Z M222.64,64.5632308 L224.755385,64.5632308 L224.755385,64.1401538 L222.64,64.1401538 L222.64,64.5632308 Z","id","Fill-119"],["d","M82.1463077,84.6513462 L68.3315769,84.6513462 L68.3315769,79.8456154 L68.7546538,79.8456154 L68.7546538,84.2282692 L81.7232308,84.2282692 L81.7232308,71.2592692 L73.3391154,71.2592692 L73.3391154,70.8361923 L82.1463077,70.8361923 L82.1463077,84.6513462 M68.7546538,77.7302308 L68.3315769,77.7302308 L68.3315769,70.8361923 L71.2237308,70.8361923 L71.2237308,71.2592692 L68.7546538,71.2592692 L68.7546538,77.7302308","id","Fill-120"],["d","M68.3315769,79.8456154 L68.7546538,79.8456154 L68.7546538,77.7302308 L68.3315769,77.7302308 L68.3315769,79.8456154 Z M71.2237308,71.2592692 L73.3391154,71.2592692 L73.3391154,70.8361923 L71.2237308,70.8361923 L71.2237308,71.2592692 Z","id","Fill-121"],["d","M81.4740385,170.149269 L67.6593077,170.149269 L67.6593077,165.343538 L68.0823846,165.343538 L68.0823846,169.726192 L81.0509615,169.726192 L81.0509615,156.757192 L72.6672692,156.757192 L72.6672692,156.334115 L81.4740385,156.334115 L81.4740385,170.149269 M68.0823846,163.228154 L67.6593077,163.228154 L67.6593077,156.334115 L70.5518846,156.334115 L70.5518846,156.757192 L68.0823846,156.757192 L68.0823846,163.228154","id","Fill-122"],["d","M67.6593077,165.343538 L68.0823846,165.343538 L68.0823846,163.228154 L67.6593077,163.228154 L67.6593077,165.343538 Z M70.5518846,156.757192 L72.6672692,156.757192 L72.6672692,156.334115 L70.5518846,156.334115 L70.5518846,156.757192 Z","id","Fill-123"],["d","M233.561308,235.031923 L219.747,235.031923 L219.747,230.226192 L220.170077,230.226192 L220.170077,234.608846 L233.138231,234.608846 L233.138231,221.639846 L224.754538,221.639846 L224.754538,221.216769 L233.561308,221.216769 L233.561308,235.031923 M220.170077,228.110808 L219.747,228.110808 L219.747,221.216769 L222.639154,221.216769 L222.639154,221.639846 L220.170077,221.639846 L220.170077,228.110808","id","Fill-124"],["d","M219.747,230.226192 L220.170077,230.226192 L220.170077,228.110808 L219.747,228.110808 L219.747,230.226192 Z M222.639154,221.639846 L224.754538,221.639846 L224.754538,221.216769 L222.639154,221.216769 L222.639154,221.639846 Z","id","Fill-125"],["d","M178.0075,20.9156538 L164.193192,20.9156538 L164.193192,16.1095 L164.616269,16.1095 L164.616269,20.4925769 L177.584423,20.4925769 L177.584423,7.52315385 L169.200731,7.52315385 L169.200731,7.10007692 L178.0075,7.10007692 L178.0075,20.9156538 M164.616269,13.9941154 L164.193192,13.9941154 L164.193192,7.10007692 L167.085346,7.10007692 L167.085346,7.52315385 L164.616269,7.52315385 L164.616269,13.9941154","id","Fill-126"],["d","M164.193192,16.1095 L164.616269,16.1095 L164.616269,13.9941154 L164.193192,13.9941154 L164.193192,16.1095 Z M167.085346,7.52315385 L169.200731,7.52315385 L169.200731,7.10007692 L167.085346,7.10007692 L167.085346,7.52315385 Z","id","Fill-127"],["d","M145.154308,143.693 C144.562,143.693 144.078846,143.487385 143.693,143.165846 C143.304192,142.843462 143.005923,142.412769 142.732192,141.948231 C142.187692,141.018308 141.730346,139.944962 140.990808,139.262115 C140.4975,138.806885 139.894192,138.510731 139.011231,138.508615 L139.011231,138.085538 C139.0125,138.085538 139.014192,138.085538 139.015885,138.085538 C139.749923,138.085538 140.346038,138.281 140.829615,138.598308 C141.314462,138.916462 141.685923,139.350115 142.001538,139.819308 C142.628538,140.758115 143.052462,141.848385 143.651538,142.5325 C144.052615,142.989 144.496423,143.266538 145.1615,143.269923 L145.1615,143.693 C145.158962,143.693 145.156846,143.693 145.154308,143.693","id","Fill-128"],["d","M157.454423,143.693 C156.861692,143.693 156.378538,143.487385 155.992692,143.165846 C155.604308,142.843462 155.305615,142.412769 155.031885,141.948231 C154.487808,141.018308 154.030462,139.944962 153.290923,139.262115 C152.797615,138.806885 152.194731,138.510731 151.311769,138.508615 L151.311769,138.085538 C151.313462,138.085538 151.314731,138.085538 151.316423,138.085538 C152.050038,138.085538 152.646154,138.281 153.129731,138.598308 C153.615,138.916462 153.986038,139.350115 154.301231,139.819308 C154.928654,140.758115 155.352154,141.848385 155.951231,142.5325 C156.352731,142.989 156.796115,143.266538 157.461192,143.269923 L157.461192,143.693 C157.459077,143.693 157.456538,143.693 157.454423,143.693","id","Fill-129"],["d","M145.172077,143.693 C145.168269,143.693 145.164885,143.693 145.1615,143.693 L145.1615,143.269923 C145.662,143.268231 146.031769,143.109577 146.360077,142.840077 C146.686692,142.570154 146.963385,142.1805 147.226115,141.733731 C147.754538,140.841038 148.214423,139.727077 149.044077,138.952 C149.5945,138.437115 150.324308,138.085538 151.301615,138.085538 C151.305,138.085538 151.308385,138.085538 151.311769,138.085538 L151.311769,138.508615 C150.648808,138.509462 150.144923,138.678269 149.725231,138.952423 C149.305962,139.227 148.969615,139.613269 148.672615,140.055385 C148.075654,140.939192 147.658077,142.036231 146.990885,142.810038 C146.549615,143.323654 145.963654,143.693 145.172077,143.693","id","Fill-130"],["d","M157.471769,143.693 C157.468385,143.693 157.464577,143.693 157.461192,143.693 L157.461192,143.269923 C157.961692,143.268231 158.331462,143.109577 158.659346,142.840077 C158.985962,142.570154 159.263077,142.1805 159.525385,141.733731 C160.054231,140.841038 160.513692,139.727077 161.343346,138.952 C161.893769,138.437115 162.623577,138.085538 163.600462,138.085538 C163.603846,138.085538 163.607231,138.085538 163.610615,138.085538 L163.610615,138.508615 C162.947654,138.509462 162.444192,138.678269 162.0245,138.952423 C161.605231,139.226577 161.268885,139.613269 160.971885,140.055385 C160.375346,140.939192 159.957769,142.036231 159.290154,142.810038 C158.849308,143.323654 158.262923,143.693 157.471769,143.693","id","Fill-131"],["d","M180.193115,240.253538 C179.600385,240.253538 179.117231,240.047923 178.731385,239.726385 C178.343,239.404 178.044308,238.973308 177.770577,238.508769 C177.2265,237.578423 176.769154,236.505077 176.029615,235.821808 C175.535885,235.366577 174.933,235.070846 174.049615,235.068308 L174.049615,234.645231 C174.050885,234.645231 174.052577,234.645231 174.054269,234.645231 C174.788308,234.645231 175.384423,234.840692 175.868,235.158423 C176.353269,235.476577 176.724731,235.910231 177.039923,236.379423 C177.667346,237.318654 178.090846,238.4085 178.689923,239.093038 C179.091423,239.549538 179.535231,239.827077 180.199885,239.830462 L180.199885,240.253538 C180.197769,240.253538 180.195231,240.253538 180.193115,240.253538","id","Fill-132"],["d","M192.492808,240.253538 C191.9005,240.253538 191.416923,240.047923 191.0315,239.726385 C190.642692,239.404 190.344423,238.973308 190.070269,238.508769 C189.526192,237.578846 189.068846,236.505923 188.329731,235.822654 C187.836,235.367423 187.233115,235.071692 186.350154,235.069154 L186.350154,234.646077 C186.351846,234.646077 186.353538,234.646077 186.355231,234.646077 C187.088846,234.646077 187.684962,234.841538 188.168115,235.159269 C188.653385,235.477 189.024846,235.911077 189.340038,236.380269 C189.967038,237.319077 190.390962,238.408923 190.989615,239.093462 C191.391115,239.549538 191.834923,239.827077 192.499577,239.830462 L192.499577,240.253538 C192.497462,240.253538 192.494923,240.253538 192.492808,240.253538","id","Fill-133"],["d","M180.210462,240.253538 C180.207077,240.253538 180.203269,240.253538 180.199885,240.253538 L180.199885,239.830462 C180.700808,239.828769 181.070577,239.670115 181.398462,239.400615 C181.725077,239.130692 182.002192,238.741462 182.2645,238.294269 C182.793346,237.401577 183.252808,236.287615 184.082462,235.512962 C184.633308,234.997654 185.363115,234.646077 186.34,234.646077 C186.343385,234.646077 186.346769,234.646077 186.350154,234.646077 L186.350154,235.069154 C185.687192,235.07 185.183731,235.239231 184.763615,235.512962 C184.344346,235.787538 184.008,236.173808 183.711,236.615923 C183.114462,237.499731 182.696885,238.596769 182.029269,239.370577 C181.588423,239.884192 181.002038,240.253538 180.210462,240.253538","id","Fill-134"],["d","M192.5,240.253538 L192.499577,240.042 L192.499577,239.830462 C193.000077,239.828769 193.369846,239.669692 193.697731,239.400192 C194.024346,239.130692 194.301462,238.741038 194.563769,238.293846 C195.092192,237.401577 195.552077,236.287615 196.381308,235.512538 C196.932154,234.997654 197.661538,234.646077 198.638,234.646077 C198.641385,234.646077 198.644769,234.646077 198.648154,234.646077 L198.648577,234.646077 L198.682846,234.648615 L198.615577,235.066615 L198.648577,234.860577 L198.648577,235.069154 L198.648154,235.069154 C197.985615,235.07 197.482154,235.239231 197.062462,235.512962 C196.643192,235.787115 196.307269,236.173385 196.010269,236.615923 C195.413308,237.499308 194.996154,238.596346 194.328538,239.370154 C193.887692,239.883769 193.301308,240.253538 192.510154,240.253538 C192.506769,240.253538 192.502962,240.253538 192.5,240.253538","id","Fill-135"],["d","M196.964731,101.043462 C196.372423,101.043462 195.889269,100.837846 195.503423,100.516308 C195.114615,100.193923 194.816346,99.7632308 194.542615,99.2986923 C193.998115,98.3687692 193.541192,97.2954231 192.801654,96.6121538 C192.308346,96.1569231 191.705462,95.8611923 190.822077,95.8586538 L190.822077,95.4355769 C190.823769,95.4355769 190.825462,95.4355769 190.827154,95.4355769 C191.560769,95.4355769 192.156885,95.6310385 192.640462,95.9487692 C193.125308,96.2665 193.496769,96.7005769 193.811962,97.1697692 C194.438962,98.1085769 194.862885,99.1988462 195.461962,99.8829615 C195.863038,100.339462 196.306846,100.617 196.971923,100.620385 L196.971923,101.043462 C196.969385,101.043462 196.967269,101.043462 196.964731,101.043462","id","Fill-136"],["d","M209.264423,101.043462 C208.672115,101.043462 208.188962,100.837846 207.803115,100.516308 C207.414731,100.193923 207.116038,99.7632308 206.842308,99.2991154 C206.297808,98.3687692 205.840885,97.2958462 205.101346,96.6125769 C204.608038,96.1573462 204.005154,95.8616154 203.122192,95.8590769 L203.122192,95.436 C203.123885,95.436 203.125154,95.436 203.126846,95.436 C203.860885,95.436 204.456577,95.6314615 204.940154,95.9491923 C205.425,96.2669231 205.796462,96.701 206.111654,97.1701923 C206.739077,98.109 207.162577,99.1988462 207.761654,99.8833846 C208.163154,100.339462 208.606538,100.617 209.271615,100.620385 L209.271615,101.043462 C209.269077,101.043462 209.266962,101.043462 209.264423,101.043462","id","Fill-137"],["d","M196.9825,101.043462 C196.978692,101.043462 196.975308,101.043462 196.971923,101.043462 L196.971923,100.620385 C197.472423,100.618692 197.842192,100.460038 198.1705,100.190538 C198.497115,99.9206154 198.774231,99.5313846 199.036538,99.0841923 C199.565385,98.1915 200.025269,97.0775385 200.8545,96.3028846 C201.405346,95.7875769 202.135154,95.436 203.112038,95.436 C203.115423,95.436 203.118808,95.436 203.122192,95.436 L203.122192,95.8590769 C202.459231,95.8599231 201.955769,96.0291538 201.536077,96.3028846 C201.116385,96.5774615 200.780038,96.9637308 200.483462,97.4058462 C199.8865,98.2896538 199.468923,99.3866923 198.801308,100.1605 C198.360038,100.674115 197.774077,101.043462 196.9825,101.043462","id","Fill-138"],["d","M209.281769,101.043462 C209.278385,101.043462 209.275,101.043462 209.271615,101.043462 L209.271615,100.620385 C209.772115,100.618692 210.141885,100.460038 210.470192,100.190538 C210.796808,99.9206154 211.0735,99.5309615 211.336231,99.0841923 C211.864654,98.1915 212.324538,97.0775385 213.154192,96.3024615 C213.705038,95.7875769 214.434846,95.436 215.411731,95.436 C215.415115,95.436 215.4185,95.436 215.421885,95.436 L215.421885,95.8590769 C214.758923,95.8599231 214.255462,96.0291538 213.835346,96.3028846 C213.416077,96.5774615 213.079731,96.9637308 212.782731,97.4058462 C212.185769,98.2896538 211.768192,99.3866923 211.101,100.1605 C210.659731,100.674115 210.073346,101.043462 209.281769,101.043462","id","Fill-139"],["d","M25.9227692,94.7785385 C25.3300385,94.7785385 24.8468846,94.5729231 24.4610385,94.2513846 C24.0726538,93.9285769 23.7739615,93.4978846 23.5002308,93.0337692 C22.9561538,92.1034231 22.4988077,91.0305 21.7592692,90.3472308 C21.2655385,89.892 20.6626538,89.5958462 19.7796923,89.5937308 L19.7796923,89.1706538 C19.7813846,89.1706538 19.7826538,89.1706538 19.7843462,89.1706538 C20.5183846,89.1706538 21.1145,89.3656923 21.5976538,89.6834231 C22.0829231,90.0015769 22.4543846,90.4356538 22.7695769,90.9044231 C23.397,91.8436538 23.8205,92.9335 24.4195769,93.6180385 C24.8206538,94.0741154 25.2644615,94.3520769 25.9295385,94.3554615 L25.9295385,94.7785385 C25.927,94.7785385 25.9248846,94.7785385 25.9227692,94.7785385","id","Fill-140"],["d","M38.2224615,94.7785385 C37.6297308,94.7785385 37.1465769,94.5729231 36.7607308,94.2513846 C36.3723462,93.9285769 36.0736538,93.4983077 35.7999231,93.0337692 C35.2558462,92.1038462 34.7985,91.0305 34.0589615,90.3476538 C33.5656538,89.8924231 32.9627692,89.5962692 32.0798077,89.5941538 L32.0798077,89.1710769 C32.0815,89.1710769 32.0831923,89.1710769 32.0848846,89.1710769 C32.8185,89.1710769 33.4141923,89.3661154 33.8977692,89.6838462 C34.3830385,90.002 34.7545,90.4356538 35.0696923,90.9048462 C35.6966923,91.8436538 36.1201923,92.9335 36.7192692,93.6180385 C37.1207692,94.0741154 37.5645769,94.3520769 38.2292308,94.3554615 L38.2292308,94.7785385 C38.2271154,94.7785385 38.2245769,94.7785385 38.2224615,94.7785385","id","Fill-141"],["d","M25.9401154,94.7785385 C25.9367308,94.7785385 25.9329231,94.7785385 25.9295385,94.7785385 L25.9295385,94.3554615 C26.4304615,94.3537692 26.7998077,94.1946923 27.1281154,93.9256154 C27.4547308,93.6556923 27.7318462,93.2660385 27.9945769,92.8192692 C28.523,91.9265769 28.9824615,90.8126154 29.8121154,90.0375385 C30.3629615,89.5226538 31.0927692,89.1710769 32.0696538,89.1710769 C32.0730385,89.1710769 32.0764231,89.1710769 32.0798077,89.1710769 L32.0798077,89.5941538 C31.4168462,89.595 30.9133846,89.7638077 30.4932692,90.0379615 C30.074,90.3121154 29.7376538,90.6983846 29.4410769,91.1409231 C28.8441154,92.0247308 28.4265385,93.1217692 27.7589231,93.8955769 C27.3180769,94.4087692 26.7316923,94.7785385 25.9401154,94.7785385","id","Fill-142"],["d","M38.2398077,94.7785385 C38.2364231,94.7785385 38.2326154,94.7785385 38.2292308,94.7785385 L38.2292308,94.3554615 C38.7297308,94.3533462 39.0995,94.1946923 39.4278077,93.9251923 C39.7544231,93.6552692 40.0311154,93.2660385 40.2938462,92.8188462 C40.8222692,91.9265769 41.2817308,90.8126154 42.1113846,90.0375385 C42.6622308,89.5222308 43.3916154,89.1710769 44.3685,89.1710769 C44.3718846,89.1710769 44.3752692,89.1710769 44.3786538,89.1710769 L44.3790769,89.1710769 L44.396,89.1715 L44.3790769,89.386 L44.3790769,89.5941538 L44.3786538,89.5941538 C43.7156923,89.595 43.2126538,89.7638077 42.7925385,90.0379615 C42.3732692,90.3121154 42.0369231,90.6983846 41.7403462,91.1405 C41.1433846,92.0243077 40.7258077,93.1213462 40.0586154,93.8951538 C39.6173462,94.4087692 39.0313846,94.7785385 38.2398077,94.7785385","id","Fill-143"],["d","M141.206577,31.3093846 L140.783497,31.3093846 C140.782654,30.5732308 140.978115,29.9758462 141.296692,29.4914231 C141.614423,29.0061538 142.0485,28.6346923 142.517269,28.3195 C143.4565,27.6920769 144.546346,27.2685769 145.230462,26.6695 C145.686962,26.268 145.9645,25.8241923 145.967885,25.1595385 L146.390972,25.1595385 C146.392654,25.7552308 146.186615,26.2405 145.863808,26.6280385 C145.541423,27.0164231 145.110731,27.3151154 144.646192,27.5888462 C143.716269,28.1329231 142.643346,28.5902692 141.960077,29.3298077 C141.504846,29.8231154 141.209115,30.426 141.206577,31.3093846","id","Fill-144"],["d","M141.206577,19.0092692 L140.783497,19.0092692 C140.782654,18.2731154 140.978115,17.6757308 141.296692,17.1913077 C141.614423,16.7060385 142.0485,16.3345769 142.517269,16.0193846 C143.4565,15.3923846 144.546346,14.9684615 145.230462,14.3698077 C145.686962,13.9683077 145.9645,13.5245 145.967885,12.8598462 L146.390972,12.8598462 C146.392654,13.4551154 146.186615,13.9408077 145.863808,14.3279231 C145.541423,14.7167308 145.110731,15.015 144.646192,15.2891538 C143.716269,15.8332308 142.643346,16.2901538 141.960077,17.0296923 C141.504846,17.5234231 141.209115,18.1263077 141.206577,19.0092692","id","Fill-145"],["d","M146.390985,25.1595385 L145.967885,25.1595385 C145.966192,24.6586154 145.807538,24.2888462 145.538038,23.9609615 C145.268115,23.6339231 144.878462,23.3572308 144.431692,23.0945 C143.539,22.5660769 142.425038,22.1061923 141.650385,21.2769615 C141.133385,20.724 140.780962,19.9912308 140.783486,19.0092692 L141.206577,19.0092692 C141.207423,19.6722308 141.376231,20.1756923 141.650385,20.5953846 C141.924962,21.0150769 142.311231,21.351 142.753346,21.648 C143.637154,22.2449615 144.734192,22.6625385 145.508,23.3301538 C146.023731,23.7731154 146.394346,24.3624615 146.390985,25.1595385","id","Fill-146"],["d","M146.390985,12.8598462 L145.967885,12.8598462 C145.966192,12.3589231 145.807538,11.9891538 145.538038,11.6612692 C145.268115,11.3346538 144.878462,11.0575385 144.431692,10.7952308 C143.539,10.2668077 142.425038,9.80692308 141.650385,8.97726923 C141.133385,8.42473077 140.780962,7.69196154 140.783486,6.70957692 L141.206577,6.70957692 C141.207423,7.37253846 141.376231,7.87642308 141.650385,8.29611538 C141.924962,8.71538462 142.311231,9.05173077 142.753346,9.34873077 C143.637154,9.94569231 144.734192,10.3628462 145.508,11.0304615 C146.023731,11.4734231 146.394346,12.0627692 146.390985,12.8598462","id","Fill-147"],["d","M103.4935,95.6471154 L103.07042,95.6471154 C103.069577,94.9113846 103.265038,94.3135769 103.583192,93.8291538 C103.901346,93.3438846 104.335423,92.9724231 104.804192,92.6572308 C105.743,92.0298077 106.833269,91.6063077 107.517385,91.0072308 C107.973885,90.6057308 108.251423,90.1623462 108.254808,89.4972692 L108.677895,89.4972692 C108.679577,90.0929615 108.473538,90.5786538 108.150731,90.9657692 C107.828346,91.3541538 107.397654,91.6528462 106.933115,91.9265769 C106.003192,92.4710769 104.930269,92.928 104.247,93.6675385 C103.791769,94.1608462 103.496038,94.7641538 103.4935,95.6471154","id","Fill-148"],["d","M103.4935,83.347 L103.07042,83.347 C103.069577,82.6108462 103.265038,82.0134615 103.583192,81.5290385 C103.901346,81.0437692 104.335423,80.6723077 104.804192,80.3571154 C105.743,79.7301154 106.833269,79.3066154 107.517385,78.7075385 C107.973885,78.3060385 108.251423,77.8622308 108.254808,77.1975769 L108.677895,77.1975769 C108.679577,77.7932692 108.473538,78.2785385 108.150731,78.6660769 C107.828346,79.0544615 107.397654,79.3531538 106.933115,79.6268846 C106.003192,80.1709615 104.930269,80.6283077 104.247,81.3678462 C103.791769,81.8611538 103.496038,82.4640385 103.4935,83.347","id","Fill-149"],["d","M108.677908,89.4972692 L108.254808,89.4972692 C108.253115,88.9967692 108.094462,88.627 107.824962,88.2986923 C107.555038,87.9720769 107.165385,87.6949615 106.718615,87.4326538 C105.825923,86.9038077 104.711962,86.4439231 103.936885,85.6146923 C103.420308,85.0621538 103.067885,84.3289615 103.070409,83.347 L103.4935,83.347 C103.494346,84.0099615 103.663154,84.5134231 103.937308,84.9335385 C104.211885,85.3528077 104.598154,85.6891538 105.040269,85.9857308 C105.924077,86.5826923 107.021115,87.0002692 107.794923,87.6678846 C108.310654,88.1108462 108.681269,88.7006154 108.677908,89.4972692","id","Fill-150"],["d","M108.677908,77.1975769 L108.254808,77.1975769 C108.253115,76.6970769 108.094462,76.3273077 107.824962,75.999 C107.555038,75.6723846 107.165385,75.3956923 106.718615,75.1329615 C105.825923,74.6045385 104.711962,74.1446538 103.936885,73.3154231 C103.420308,72.7624615 103.067885,72.0296923 103.070409,71.0477308 L103.4935,71.0477308 C103.494346,71.7106923 103.663154,72.2141538 103.937308,72.6338462 C104.211885,73.0531154 104.598154,73.3894615 105.040269,73.6864615 C105.924077,74.2834231 107.021115,74.701 107.794923,75.3681923 C108.310654,75.8111538 108.681269,76.4009231 108.677908,77.1975769","id","Fill-151"],["d","M205.722423,198.425192 L205.299343,198.425192 C205.2985,197.689038 205.493962,197.091231 205.812538,196.606808 C206.130269,196.121538 206.564346,195.750077 207.033538,195.434885 C207.972346,194.807462 209.062192,194.383962 209.746731,193.784885 C210.202808,193.383385 210.480346,192.939577 210.483731,192.274923 L210.906818,192.274923 C210.9085,192.870615 210.702885,193.355885 210.379654,193.743423 C210.057269,194.131808 209.626577,194.4305 209.162462,194.704231 C208.232115,195.248308 207.159192,195.705654 206.475923,196.445192 C206.020692,196.938923 205.724962,197.541808 205.722423,198.425192","id","Fill-152"],["d","M205.722423,186.124654 L205.299343,186.124654 C205.2985,185.3885 205.493962,184.791115 205.812538,184.306692 C206.130269,183.821423 206.564346,183.449962 207.033538,183.134769 C207.972346,182.507769 209.062192,182.083846 209.746731,181.485192 C210.202808,181.083692 210.480346,180.639885 210.483731,179.975231 L210.906818,179.975231 C210.9085,180.5705 210.702885,181.056192 210.379654,181.443308 C210.057269,181.832115 209.626577,182.130385 209.162462,182.404538 C208.232115,182.948615 207.159192,183.405538 206.475923,184.145077 C206.020692,184.638385 205.724962,185.241692 205.722423,186.124654","id","Fill-153"],["d","M210.906831,192.274923 L210.483731,192.274923 C210.482038,191.774 210.323385,191.404231 210.053885,191.076346 C209.783962,190.749308 209.394731,190.472615 208.947538,190.210308 C208.054846,189.681462 206.940885,189.222 206.166231,188.392346 C205.649231,187.839808 205.296808,187.106615 205.299333,186.124654 L205.722423,186.124654 C205.723269,186.787615 205.8925,187.291077 206.166231,187.711192 C206.440808,188.130462 206.827077,188.466808 207.269192,188.763385 C208.153,189.360346 209.250038,189.777923 210.023846,190.445538 C210.539577,190.8885 210.910192,191.477846 210.906831,192.274923","id","Fill-154"],["d","M210.906831,179.975231 L210.483731,179.975231 C210.482038,179.474308 210.323385,179.104962 210.053885,178.776654 C209.783962,178.450038 209.394731,178.173346 208.947538,177.910615 C208.054846,177.382192 206.940885,176.922308 206.166231,176.093077 C205.649231,175.540538 205.296808,174.807346 205.299333,173.825385 L205.722423,173.825385 C205.723269,174.488346 205.8925,174.991808 206.166231,175.411923 C206.440808,175.831192 206.827077,176.167538 207.269192,176.464115 C208.153,177.061077 209.250038,177.478654 210.023846,178.145846 C210.539577,178.588808 210.910192,179.178154 210.906831,179.975231","id","Fill-155"],["d","M78.8818462,208.117038 L78.4587665,208.117038 C78.4579231,207.381308 78.6533846,206.7835 78.9719615,206.299077 C79.2896923,205.813808 79.7237692,205.442346 80.1925385,205.127577 C81.1317692,204.500154 82.2216154,204.076654 82.9057308,203.477577 C83.3622308,203.076077 83.6397692,202.632692 83.6431538,201.967615 L84.0662411,201.967615 C84.0679231,202.563308 83.8618846,203.048577 83.5390769,203.436115 C83.2166923,203.8245 82.786,204.123192 82.3214615,204.396923 C81.3915385,204.941 80.3186154,205.398346 79.6353462,206.137885 C79.1801154,206.631192 78.8843846,207.234077 78.8818462,208.117038","id","Fill-156"],["d","M78.8818462,195.817346 L78.4587665,195.817346 C78.4579231,195.081192 78.6533846,194.483808 78.9719615,193.999385 C79.2896923,193.514115 79.7237692,193.142654 80.1925385,192.827462 C81.1317692,192.200462 82.2216154,191.776962 82.9057308,191.177885 C83.3622308,190.776385 83.6397692,190.332577 83.6431538,189.667923 L84.0662411,189.667923 C84.0679231,190.263192 83.8618846,190.748885 83.5390769,191.136 C83.2166923,191.524808 82.786,191.8235 82.3214615,192.097231 C81.3915385,192.641308 80.3186154,193.098231 79.6353462,193.837769 C79.1801154,194.3315 78.8843846,194.934385 78.8818462,195.817346","id","Fill-157"],["d","M84.0662538,201.967615 L83.6431538,201.967615 C83.6414615,201.466692 83.4828077,201.096923 83.2133077,200.769038 C82.9433846,200.442 82.5541538,200.165308 82.1069615,199.902577 C81.2142692,199.374154 80.1003077,198.914269 79.3256538,198.084615 C78.8086538,197.532077 78.4562308,196.799308 78.4587556,195.817346 L78.8818462,195.817346 C78.8826923,196.480308 79.0519231,196.983769 79.3256538,197.403462 C79.6002308,197.822731 79.9865,198.159077 80.4286154,198.456077 C81.3124231,199.053038 82.4094615,199.470615 83.1832692,200.138231 C83.699,200.581192 84.0696154,201.170538 84.0662538,201.967615","id","Fill-158"],["d","M84.0662538,189.667923 L83.6431538,189.667923 C83.6414615,189.167 83.4828077,188.797231 83.2133077,188.469346 C82.9433846,188.142308 82.5541538,187.865615 82.1069615,187.602885 C81.2142692,187.074462 80.1003077,186.615 79.3256538,185.785346 C78.8086538,185.232808 78.4562308,184.499615 78.4587556,183.517654 L78.8818462,183.517654 C78.8826923,184.180615 79.0519231,184.684077 79.3256538,185.104192 C79.6002308,185.523462 79.9865,185.859808 80.4286154,186.156385 C81.3124231,186.753346 82.4094615,187.170923 83.1832692,187.838538 C83.699,188.2815 84.0696154,188.870846 84.0662538,189.667923","id","Fill-159"],["id","Fill-160","points","159.898962 157.494192 175.074308 157.494192 175.074308 157.071115 159.898962 157.071115"],["id","Fill-161","points","10.7106154 113.642269 25.8859615 113.642269 25.8859615 113.219192 10.7106154 113.219192"],["id","Fill-162","points","161.033231 43.1022308 176.208577 43.1022308 176.208577 42.6791538 161.033231 42.6791538"],["id","Fill-163","points","220.851654 8.85415385 236.027 8.85415385 236.027 8.43107692 220.851654 8.43107692"],["id","Fill-164","points","71.2097692 235.037846 86.3851154 235.037846 86.3851154 234.614769 71.2097692 234.614769"],["id","Fill-165","points","110.326192 205.658115 110.027077 205.359 120.757577 194.628077 121.056692 194.927192 110.326192 205.658115"],["id","Fill-166","points","21.4982308 19.5228846 21.1991154 19.2233462 31.9300385 8.49284615 32.2291538 8.79196154 21.4982308 19.5228846"],["id","Fill-167","points","228.588462 129.527962 228.289346 129.228846 239.019846 118.497923 239.318962 118.797462 228.588462 129.527962"],["d","M139.227423,187.558885 L138.664731,186.663231 C138.397346,186.830769 138.108385,186.908192 137.817731,186.908615 C137.552462,186.908615 137.288462,186.842192 137.055769,186.716115 C136.822654,186.589615 136.620846,186.407269 136.467692,186.164 L136.466846,186.162731 C136.298885,185.894923 136.221885,185.606385 136.221462,185.315731 C136.221038,185.050885 136.287462,184.787308 136.413538,184.554615 C136.540038,184.3215 136.722808,184.119269 136.9665,183.965692 C137.232192,183.799 137.520731,183.722 137.811385,183.721154 C138.076654,183.721154 138.341077,183.788 138.574192,183.913654 C138.807731,184.040154 139.009538,184.222923 139.162269,184.465769 L139.163115,184.467038 C139.330231,184.733154 139.407231,185.021692 139.408077,185.312346 C139.408077,185.577615 139.341654,185.841615 139.215577,186.075154 C139.089077,186.308692 138.906308,186.510923 138.663885,186.664077 L138.664731,186.663231 L139.227423,187.558885 L139.791385,188.454115 C140.348154,188.103385 140.784346,187.622769 141.077115,187.079538 C141.370308,186.535885 141.523038,185.928769 141.523462,185.312346 C141.523885,184.638385 141.337731,183.950038 140.953154,183.339538 L140.953577,183.340808 C140.603692,182.782769 140.122654,182.345308 139.579,182.052538 C139.034923,181.758923 138.427385,181.606192 137.811385,181.605769 C137.137423,181.605346 136.449923,181.791077 135.840269,182.175231 C135.282654,182.525538 134.845615,183.005731 134.552423,183.548962 C134.258808,184.092615 134.106077,184.699731 134.105653,185.315731 C134.105231,185.990538 134.291808,186.678885 134.676808,187.289808 L134.675962,187.288115 C135.025846,187.846154 135.506462,188.284038 136.050115,188.577231 C136.593769,188.870846 137.201308,189.024001 137.817731,189.024001 C138.491692,189.024423 139.179615,188.838692 139.790115,188.454538 L139.791385,188.454115 L139.227423,187.558885","id","Fill-168"],["d","M118.331231,114.613654 L117.768538,113.718 C117.501154,113.885538 117.212192,113.962962 116.921538,113.963385 C116.656269,113.963385 116.392692,113.896962 116.159577,113.770885 C115.926462,113.644385 115.724654,113.462038 115.5715,113.218346 L115.570654,113.2175 C115.403115,112.950115 115.325692,112.661154 115.325269,112.3705 C115.325269,112.106077 115.391692,111.8425 115.517346,111.609385 C115.643846,111.376269 115.826615,111.174462 116.069885,111.020885 C116.336,110.854192 116.624538,110.776769 116.915192,110.776346 C117.180462,110.776346 117.444885,110.842769 117.678,110.968846 C117.911538,111.095346 118.113346,111.278115 118.2665,111.521385 L118.267346,111.522231 C118.434462,111.788346 118.511462,112.076885 118.511885,112.367538 C118.512308,112.632385 118.445462,112.896385 118.319385,113.129923 C118.192885,113.363462 118.010538,113.565692 117.767692,113.718846 L117.768538,113.718 L118.331231,114.613654 L118.894769,115.508885 C119.451962,115.158577 119.888154,114.677962 120.181346,114.134308 C120.474538,113.590654 120.627272,112.983538 120.627272,112.367538 C120.628115,111.693154 120.441962,111.005231 120.057385,110.394731 L120.057808,110.396 C119.7075,109.837962 119.226885,109.4005 118.682808,109.107308 C118.138731,108.813692 117.531615,108.660961 116.915192,108.660961 C116.241231,108.660538 115.553731,108.846269 114.943654,109.230423 C114.386462,109.580308 113.949423,110.0605 113.656654,110.603731 C113.363038,111.147385 113.209884,111.7545 113.209884,112.3705 C113.209462,113.045308 113.395615,113.733654 113.780615,114.344154 L113.779769,114.343308 C114.129654,114.901346 114.610269,115.338808 115.153923,115.632 C115.698,115.925615 116.305115,116.07877 116.921538,116.07877 C117.5955,116.079192 118.283423,115.893462 118.893923,115.509308 L118.894769,115.508885 L118.331231,114.613654","id","Fill-169"],["d","M22.7619615,137.046038 L22.1992692,136.150385 C21.9318846,136.317923 21.6425,136.394923 21.3518462,136.395769 C21.087,136.395769 20.823,136.328923 20.5903077,136.203269 C20.3571923,136.076769 20.1549615,135.894 20.0018077,135.650731 L20.0013846,135.649885 C19.8334231,135.382077 19.756,135.093115 19.7555769,134.802462 C19.7555769,134.538038 19.822,134.274462 19.9480769,134.041346 C20.0745769,133.808231 20.2573462,133.606423 20.5006154,133.452423 L20.5001923,133.452846 C20.7667308,133.285731 21.0548462,133.208731 21.3459231,133.208308 C21.6107692,133.208308 21.8751923,133.274731 22.1087308,133.400808 C22.3422692,133.527308 22.5440769,133.710077 22.6972308,133.952923 L22.6976538,133.953769 C22.8647692,134.220308 22.9421923,134.508423 22.9426154,134.799077 C22.9426154,135.064346 22.8761923,135.328769 22.7501154,135.561885 C22.6236154,135.795423 22.4408462,135.997654 22.198,136.150808 L22.1992692,136.150385 L22.7619615,137.046038 L23.3255,137.940846 C23.8822692,137.590538 24.3188846,137.109923 24.6116538,136.566269 C24.9048462,136.022615 25.0580007,135.4155 25.0580007,134.799077 C25.0584231,134.125115 24.8722692,133.436769 24.4876923,132.826692 L24.4881154,132.827538 C24.1382308,132.2695 23.6571923,131.832462 23.1135385,131.539269 C22.5694615,131.245654 21.9619231,131.092922 21.3459231,131.092922 C20.6719615,131.0925 19.9844615,131.278231 19.3743846,131.661962 L19.3739615,131.661962 C18.8171923,132.012269 18.3801538,132.492462 18.0869615,133.035692 C17.7933462,133.579346 17.6401916,134.186462 17.6401916,134.802462 C17.6397692,135.477269 17.8263462,136.165615 18.2109231,136.776115 L18.2105,136.775269 C18.5603846,137.333308 19.041,137.770769 19.5846538,138.063962 C20.1283077,138.358 20.7358462,138.510731 21.3518462,138.511155 C22.0262308,138.511577 22.7141538,138.325423 23.3242308,137.941692 L23.3255,137.940846 L22.7619615,137.046038","id","Fill-170"],["d","M49.9332308,53.5801538 L49.3705385,52.6845 C49.1031538,52.8520385 48.8141923,52.9290385 48.5235385,52.9294615 C48.2582692,52.9298846 47.9946923,52.8630385 47.7615769,52.7373846 C47.5284615,52.6108846 47.3266538,52.4281154 47.1735,52.1844231 L47.1726538,52.1835769 C47.0051154,51.9161923 46.9276923,51.6272308 46.9272692,51.3365769 C46.9272692,51.0721538 46.9936923,50.8085769 47.1193462,50.5758846 C47.2458462,50.3427692 47.4286154,50.1405385 47.6723077,49.9869615 C47.9384231,49.8202692 48.2265385,49.7432692 48.5171923,49.7424231 C48.7824615,49.7424231 49.0468846,49.8088462 49.28,49.9349231 C49.5135385,50.0618462 49.7153462,50.2441923 49.8685,50.4874615 L49.8693462,50.4883077 C50.0364615,50.7548462 50.1134615,51.0429615 50.1138846,51.3336154 C50.1143077,51.5984615 50.0474615,51.8628846 49.9213846,52.096 C49.7948846,52.3295385 49.6125385,52.5317692 49.3696923,52.6849231 L49.3705385,52.6845 L49.9332308,53.5801538 L50.4967692,54.4749615 C51.0539615,54.1246538 51.4905769,53.6440385 51.7833462,53.1008077 C52.0765385,52.5567308 52.2292721,51.9496154 52.2292721,51.3336154 C52.2301154,50.6596538 52.0439615,49.9713077 51.6593846,49.3612308 L51.6598077,49.3620769 C51.3095,48.8040385 50.8288846,48.367 50.2848077,48.0738077 C49.7411538,47.7801923 49.1336154,47.6274615 48.5171923,47.6270377 C47.8432308,47.6266154 47.1557308,47.8123462 46.5456538,48.1965 C45.9884615,48.5463846 45.5514231,49.0265769 45.2586538,49.5702308 C44.9650385,50.1138846 44.8118839,50.721 44.8118839,51.3365769 C44.8114615,52.0113846 44.9976154,52.6997308 45.3826154,53.3106538 L45.3817692,53.3093846 C45.7320769,53.8674231 46.2122692,54.3048846 46.7559231,54.5980769 C47.3,54.8921154 47.9071154,55.044849 48.5235385,55.044849 C49.1975,55.0456923 49.8854231,54.8595385 50.4959231,54.4758077 L50.4967692,54.4749615 L49.9332308,53.5801538","id","Fill-171"],["d","M195.8,52.261 L195.237308,51.3653462 C194.969923,51.5333077 194.680962,51.6103077 194.390308,51.6107308 C194.125462,51.6107308 193.861462,51.5443077 193.628769,51.4182308 C193.395231,51.2917308 193.193423,51.1093846 193.039846,50.8656923 L193.039846,50.8648462 C192.871885,50.5974615 192.794462,50.3085 192.794038,50.0178462 C192.794038,49.7534231 192.860462,49.4898462 192.986538,49.2567308 C193.112615,49.0236154 193.295385,48.8218077 193.538654,48.6682308 C193.805192,48.5015385 194.093308,48.4241154 194.384385,48.4236923 C194.649231,48.4236923 194.913654,48.4901154 195.146769,48.6161923 C195.380308,48.7426923 195.582538,48.9254615 195.736115,49.1687308 L195.736538,49.1695769 C195.903654,49.4356923 195.980654,49.7242308 195.981077,50.0148846 C195.9815,50.2797308 195.914654,50.5437308 195.788577,50.7772692 C195.662077,51.0108077 195.479308,51.2130385 195.236462,51.3661923 L195.237308,51.3653462 L195.8,52.261 L196.363538,53.1562308 C196.920731,52.8059231 197.357346,52.3253077 197.650115,51.7820769 C197.943731,51.238 198.096464,50.6308846 198.096464,50.0148846 C198.097308,49.3405 197.911154,48.6525769 197.526154,48.0425 L197.526577,48.0429231 C197.176269,47.4853077 196.695654,47.0478462 196.152,46.7550769 C195.607923,46.4614615 195.000385,46.308307 194.384385,46.308307 C193.710423,46.3078846 193.0225,46.4936154 192.412846,46.8777692 C191.855231,47.2276538 191.418192,47.7078462 191.125423,48.2515 C190.831808,48.7951538 190.678653,49.4018462 190.678653,50.0178462 C190.678231,50.6926538 190.864385,51.381 191.248962,51.9915 L191.248962,51.9910769 C191.598846,52.5486923 192.079462,52.9861538 192.622692,53.2793462 C193.166769,53.5729615 193.773885,53.7261161 194.390308,53.7261161 C195.064269,53.7265385 195.752192,53.5408077 196.362692,53.1566538 L196.363538,53.1562308 L195.8,52.261","id","Fill-172"],["d","M233.261346,146.737885 L232.698654,145.842231 C232.431269,146.009769 232.142308,146.087192 231.851654,146.087615 C231.586385,146.087615 231.322808,146.021192 231.089692,145.895115 C230.856577,145.768615 230.654769,145.585846 230.501192,145.342154 C230.333231,145.074346 230.255808,144.785385 230.255385,144.494308 C230.255385,144.229885 230.321808,143.966308 230.447462,143.733192 C230.573962,143.500077 230.756731,143.298269 231.000423,143.144692 C231.266115,142.978 231.554654,142.900577 231.845731,142.900154 C232.110577,142.900154 232.375,142.966577 232.608115,143.092654 C232.841654,143.219154 233.043885,143.401923 233.197038,143.645192 L233.197462,143.646038 C233.365,143.912154 233.442,144.200269 233.442423,144.490923 C233.442423,144.756192 233.376,145.020192 233.249923,145.253731 C233.123423,145.487269 232.940654,145.6895 232.697808,145.842654 L232.698654,145.842231 L233.261346,146.737885 L233.824885,147.633115 C234.382077,147.282808 234.818692,146.802192 235.111462,146.258538 C235.404654,145.714462 235.557808,145.107346 235.557808,144.490923 C235.558231,143.816962 235.3725,143.128615 234.9875,142.518538 L234.987923,142.519385 C234.637615,141.961346 234.157,141.524308 233.612923,141.231115 C233.068846,140.9375 232.461731,140.784769 231.845731,140.784769 C231.171769,140.784346 230.484269,140.970077 229.874192,141.353808 C229.316577,141.704115 228.879538,142.184308 228.586346,142.727962 C228.293154,143.271615 228.139999,143.878731 228.139999,144.494308 C228.139577,145.169115 228.325731,145.857462 228.710308,146.467962 C229.060192,147.025154 229.540385,147.462615 230.084038,147.756231 C230.628115,148.049846 231.235231,148.202577 231.851654,148.203001 C232.525615,148.203423 233.213538,148.017269 233.824038,147.633538 L233.824885,147.633115 L233.261346,146.737885","id","Fill-173"],["id","summary/card1","transform","translate(0.000000, 0.500000)"],["id","Group-3-Copy","transform","translate(0.000000, 31.500000)"],["d","M242.243,146.335 C203.034,140.754 163.526,137.965 124.02,137.965 C84.517,137.965 45.013,140.754 5.802,146.335 C9.204,138.915 12.718,131.514 16.34,124.135 C10.998,117.889 5.55,111.692 4.40536496e-13,105.546 C41.132,99.692 82.575,96.765 124.02,96.765 C165.468,96.765 206.913,99.692 248.049,105.546 C242.495,111.692 237.047,117.889 231.703,124.135 C235.327,131.514 238.839,138.915 242.243,146.335","id","Fill-47","fill","#035429"],["d","M221.022,128.961 C156.569,121.589 91.478,121.589 27.022,128.961 C34.239,133.013 41.355,137.154 48.359,141.384 C98.699,136.826 149.346,136.826 199.687,141.384 C206.691,137.154 213.804,133.013 221.022,128.961","id","Fill-48","fill","#135E41"],["id","Fill-49"],["fill","url(#linearGradient-2)","fill-rule","evenodd",0,"xlink","href","#path-3",1,"badge-img"],["stroke","#E55B28","stroke-width","2","d","M124.02,2 C128.022653,2 131.528214,5.10293248 135.02987,7.95760624 C138.340723,10.6567296 141.645472,13.2561325 145.089895,14.1797264 C148.415186,15.0715974 152.320881,14.6299487 156.265965,14.0272186 L157.295655,13.8671016 C161.693093,13.1744009 166.136786,12.2781684 169.426335,14.1845096 C172.781525,16.1285206 174.236945,20.4874458 175.831984,24.6733586 C177.371482,28.7135135 178.967537,32.6989638 181.561917,35.2933439 C183.94888,37.6798677 187.512993,39.221297 191.213788,40.651052 L192.181629,41.0219806 C196.367671,42.6166562 200.726744,44.0715627 202.670573,47.4278074 C204.403663,50.4183978 203.820311,54.3630785 203.179337,58.3595672 L202.987575,59.5591657 C202.31153,63.849787 201.705365,68.1492743 202.674308,71.763233 C203.598435,75.2078774 206.198132,78.5131022 208.897244,81.8241452 C211.75162,85.3256525 214.854,88.8306466 214.854,92.831 C214.854,96.832985 211.751613,100.338502 208.897136,103.840492 C206.198053,107.151839 203.598389,110.457345 202.674244,113.903006 C201.705459,117.515897 202.311415,121.814933 202.987311,126.105411 C203.680176,130.50361 204.576685,134.948676 202.66949,138.239335 C200.725565,141.594377 196.366857,143.049157 192.181152,144.643626 C188.140809,146.182723 184.155152,147.778421 181.560526,150.373047 C178.967035,152.967494 177.371371,156.952257 175.832191,160.99173 C174.237146,165.17782 172.781641,169.53691 169.426193,171.481573 C166.136359,173.388079 161.691952,172.491384 157.293947,171.798293 C153.003551,171.122161 148.704203,170.515846 145.090015,171.484241 C141.645415,172.407883 138.340605,175.007544 135.029695,177.706948 C131.528095,180.561823 128.022598,183.665 124.02,183.665 C120.021263,183.665 116.517987,180.563494 113.01758,177.709579 C109.70557,175.009266 106.398941,172.408134 102.95193,171.484227 C99.3382679,170.515364 95.0387743,171.121719 90.7479482,171.798003 C86.349975,172.491175 81.9053239,173.387896 78.6152772,171.481845 C75.2605635,169.536523 73.8048191,165.176943 72.2096648,160.990438 C70.6705899,156.951114 69.0751201,152.966605 66.4822136,150.371786 C63.887813,147.777386 59.9020478,146.181298 55.8616562,144.641805 C51.6759515,143.046943 47.317358,141.591742 45.3736068,138.237503 C43.4675217,134.947035 44.3637487,130.502249 45.0564894,126.104197 C45.7322463,121.813971 46.3381248,117.515135 45.3697764,113.902081 C44.4460882,110.456833 41.8463613,107.151411 39.147054,103.840043 C36.2925633,100.338303 33.19,96.8328843 33.19,92.831 C33.19,88.8309097 36.2923113,85.326134 39.1465896,81.8248571 C41.8460499,78.5134916 44.4460193,75.2079505 45.3698548,71.7626262 C46.3381043,68.1489808 45.7322705,63.8496639 45.05665,59.5592552 C44.3640075,55.1607518 43.4678241,50.715808 45.3743973,47.4258586 C47.3187833,44.0708887 51.6771927,42.615999 55.8625437,41.0215503 C59.9028406,39.4823613 63.8883044,37.8866009 66.4823439,35.2920832 C69.0762624,32.6976865 70.6720686,28.7121255 72.2113162,24.6718843 C73.8059598,20.4862389 75.2610199,16.1277098 78.6141553,14.1838046 C81.9057209,12.2779512 86.3498867,13.1741205 90.7474105,13.8669719 C95.0384528,14.5430467 99.3380864,15.1491655 102.951786,14.179812 C106.398885,13.2558815 109.705452,10.6550072 113.017405,7.95497485 C116.517868,5.10126124 120.021208,2 124.02,2 Z","stroke-linejoin","square"],["d","M49.607,92.831 C49.607,51.734 82.928,18.417 124.02,18.417 C165.124,18.417 198.44,51.734 198.44,92.831 C198.44,133.931 165.124,167.247 124.02,167.247 C82.928,167.247 49.607,133.931 49.607,92.831","id","Fill-51","fill","#FFFFFE"],["d","M221.022,128.961 C156.569,121.589 91.478,121.589 27.022,128.961 C25.462,115.317 23.9,101.672 22.342,88.028 C89.911,80.301 158.137,80.301 225.707,88.028 C224.146,101.672 222.584,115.317 221.022,128.961","id","Fill-53","fill","#1D6240"],["id","Group-18-Copy","transform","translate(70.023500, 90.832000)","fill","#FFFFFE","fill-opacity","1"],["id","Group","transform","translate(0.500000, 0.000000)"],["id","387"],["filter","url(#filter-7)",0,"xlink","href","#text-6"],[0,"xlink","href","#text-6"],["id","Pages-read-:"],["filter","url(#filter-9)",0,"xlink","href","#text-8"],[0,"xlink","href","#text-8"],["d","M124.0235,47.417 C126.50975,47.417 128.5235,45.40325 128.5235,42.917 C128.5235,40.43075 126.50975,38.417 124.0235,38.417 C121.53725,38.417 119.5235,40.43075 119.5235,42.917 C119.5235,45.40325 121.53725,47.417 124.0235,47.417 L124.0235,47.417 Z M124.0235,49.667 C121.01975,49.667 115.0235,51.1745 115.0235,54.167 L115.0235,56.417 L133.0235,56.417 L133.0235,54.167 C133.0235,51.1745 127.02725,49.667 124.0235,49.667 L124.0235,49.667 Z","id","Shape-Copy-2","fill","#000"],["text-anchor","middle","x","60","y","60",2,"width","50%","height","1.5rem","font-size","0.75rem"],["xmlns","http://www.w3.org/1999/xhtml",1,"truncate-overflow"],["id","Group-17-Copy-2","transform","translate(95.523500, 128.964250)",4,"ngIf"],[1,"player-endpage__right-panel"],[1,"title-section"],[1,"title","animated","fadeInDown"],[1,"animated","fadeInUp"],[1,"user-options"],["tabindex","0",1,"replay-section",3,"ngClass","click"],["width","36","height","37","xmlns","http://www.w3.org/2000/svg",4,"ngIf"],[1,"title"],["class","exit-section","tabindex","0",3,"click",4,"ngIf"],[4,"ngIf"],["id","text-8","x","55","y","16","text-anchor","middle","fill","#FFFFFE"],["font-size","12","font-weight","400","font-family","Noto Sans, NotoSans-Bold"],["font-size","18","font-family","NotoSans-Bold, Noto Sans"],["id","Group-17-Copy-2","transform","translate(95.523500, 128.964250)"],["id","Icon-24px","transform","translate(0.000000, 0.500000)"],["id","Shape","points","0 0 18 0 18 18 0 18"],["d","M11.25,0.75 L6.75,0.75 L6.75,2.25 L11.25,2.25 L11.25,0.75 L11.25,0.75 Z M8.25,10.5 L9.75,10.5 L9.75,6 L8.25,6 L8.25,10.5 L8.25,10.5 Z M14.2725,5.5425 L15.3375,4.4775 C15.015,4.095 14.6625,3.735 14.28,3.42 L13.215,4.485 C12.0525,3.555 10.59,3 9,3 C5.2725,3 2.25,6.0225 2.25,9.75 C2.25,13.4775 5.265,16.5 9,16.5 C12.735,16.5 15.75,13.4775 15.75,9.75 C15.75,8.16 15.195,6.6975 14.2725,5.5425 L14.2725,5.5425 Z M9,15 C6.0975,15 3.75,12.6525 3.75,9.75 C3.75,6.8475 6.0975,4.5 9,4.5 C11.9025,4.5 14.25,6.8475 14.25,9.75 C14.25,12.6525 11.9025,15 9,15 L9,15 Z","id","Shape","fill","#000"],["id","8:46","font-family","NotoSans-Bold, Noto Sans","font-size","14","font-weight","bold","fill","#000"],["x","22","y","15"],["width","36","height","37","xmlns","http://www.w3.org/2000/svg"],["x1","18%","y1","0%","x2","83.101%","y2","100%","id","a"],["stop-color","#024F9D","offset","0%"],["stop-color","#024F9D","offset","100%"],["fill","none","fill-rule","evenodd"],["d","M0 .853h36v36H0z"],["d","M18 7.5v-6L10.5 9l7.5 7.5v-6c4.965 0 9 4.035 9 9s-4.035 9-9 9-9-4.035-9-9H6c0 6.63 5.37 12 12 12s12-5.37 12-12-5.37-12-12-12z","fill","#ccc","transform","translate(0 .853)"],["d","M18 7.5v-6L10.5 9l7.5 7.5v-6c4.965 0 9 4.035 9 9s-4.035 9-9 9-9-4.035-9-9H6c0 6.63 5.37 12 12 12s12-5.37 12-12-5.37-12-12-12z","fill","url(#a)","transform","translate(0 .853)"],["tabindex","0",1,"exit-section",3,"click"],["xmlns","http://www.w3.org/2000/svg","width","36","height","36"],["x1","0%","y1","0%","x2","101.72%","y2","100%","id","a"],["d","M0 0h36v36H0z"],["d","M15.135 23.385L17.25 25.5l7.5-7.5-7.5-7.5-2.115 2.115 3.87 3.885H4.5v3h14.505l-3.87 3.885zM28.5 4.5h-21a3 3 0 00-3 3v6h3v-6h21v21h-21v-6h-3v6a3 3 0 003 3h21c1.65 0 3-1.35 3-3v-21c0-1.65-1.35-3-3-3z","fill","url(#a)"],[1,"next"],["aria-label","Next content",1,"next-level",3,"click"],["tabindex","0",1,"title-text"],[1,"next-arrow"],["src","assets/next-arrow.svg","alt","next arrow"]],template:function(xt,je){1&xt&&(t.F$t(),t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.TgZ(2,"div",2),t.O4$(),t.TgZ(3,"svg",3),t.TgZ(4,"defs"),t.TgZ(5,"filter",4),t._UZ(6,"feColorMatrix",5),t.qZA(),t.TgZ(7,"linearGradient",6),t._UZ(8,"stop",7),t._UZ(9,"stop",8),t.qZA(),t.TgZ(10,"linearGradient",9),t._UZ(11,"stop",10),t._UZ(12,"stop",11),t.qZA(),t._UZ(13,"path",12),t.TgZ(14,"filter",13),t._UZ(15,"feGaussianBlur",14),t._UZ(16,"feOffset",15),t._UZ(17,"feComposite",16),t._UZ(18,"feColorMatrix",17),t.qZA(),t.TgZ(19,"linearGradient",18),t._UZ(20,"stop",19),t._UZ(21,"stop",20),t.qZA(),t.YNc(22,be,5,2,"text",21),t.qZA(),t.TgZ(23,"g",22),t.TgZ(24,"g",23),t.TgZ(25,"g",24),t.TgZ(26,"g",25),t.TgZ(27,"g",26),t._UZ(28,"path",27),t._UZ(29,"path",28),t._UZ(30,"path",29),t._UZ(31,"path",30),t._UZ(32,"path",31),t._UZ(33,"path",32),t._UZ(34,"path",33),t._UZ(35,"path",34),t._UZ(36,"path",35),t._UZ(37,"path",36),t._UZ(38,"path",37),t._UZ(39,"path",38),t._UZ(40,"path",39),t._UZ(41,"path",40),t._UZ(42,"path",41),t._UZ(43,"path",42),t._UZ(44,"path",43),t._UZ(45,"path",44),t._UZ(46,"path",45),t._UZ(47,"path",46),t._UZ(48,"path",47),t._UZ(49,"path",48),t._UZ(50,"path",49),t._UZ(51,"path",50),t._UZ(52,"path",51),t._UZ(53,"path",52),t._UZ(54,"path",53),t._UZ(55,"path",54),t._UZ(56,"path",55),t._UZ(57,"path",56),t._UZ(58,"path",57),t._UZ(59,"path",58),t._UZ(60,"path",59),t._UZ(61,"path",60),t._UZ(62,"path",61),t._UZ(63,"path",62),t._UZ(64,"path",63),t._UZ(65,"path",64),t._UZ(66,"path",65),t._UZ(67,"path",66),t._UZ(68,"path",67),t._UZ(69,"path",68),t._UZ(70,"path",69),t._UZ(71,"path",70),t._UZ(72,"path",71),t._UZ(73,"path",72),t._UZ(74,"path",73),t._UZ(75,"path",74),t._UZ(76,"path",75),t._UZ(77,"path",76),t._UZ(78,"path",77),t._UZ(79,"path",78),t._UZ(80,"path",79),t._UZ(81,"path",80),t._UZ(82,"path",81),t._UZ(83,"path",82),t._UZ(84,"path",83),t._UZ(85,"path",84),t._UZ(86,"path",85),t._UZ(87,"path",86),t._UZ(88,"path",87),t._UZ(89,"path",88),t._UZ(90,"path",89),t._UZ(91,"path",90),t._UZ(92,"path",91),t._UZ(93,"path",92),t._UZ(94,"path",93),t._UZ(95,"path",94),t._UZ(96,"path",95),t._UZ(97,"path",96),t._UZ(98,"path",97),t._UZ(99,"path",98),t._UZ(100,"path",99),t._UZ(101,"path",100),t._UZ(102,"path",101),t._UZ(103,"path",102),t._UZ(104,"path",103),t._UZ(105,"path",104),t._UZ(106,"path",105),t._UZ(107,"path",106),t._UZ(108,"path",107),t._UZ(109,"path",108),t._UZ(110,"path",109),t._UZ(111,"path",110),t._UZ(112,"path",111),t._UZ(113,"path",112),t._UZ(114,"path",113),t._UZ(115,"path",114),t._UZ(116,"path",115),t._UZ(117,"path",116),t._UZ(118,"path",117),t._UZ(119,"path",118),t._UZ(120,"path",119),t._UZ(121,"path",120),t._UZ(122,"path",121),t._UZ(123,"path",122),t._UZ(124,"path",123),t._UZ(125,"path",124),t._UZ(126,"path",125),t._UZ(127,"path",126),t._UZ(128,"path",127),t._UZ(129,"path",128),t._UZ(130,"path",129),t._UZ(131,"path",130),t._UZ(132,"path",131),t._UZ(133,"path",132),t._UZ(134,"path",133),t._UZ(135,"path",134),t._UZ(136,"path",135),t._UZ(137,"path",136),t._UZ(138,"path",137),t._UZ(139,"path",138),t._UZ(140,"path",139),t._UZ(141,"path",140),t._UZ(142,"path",141),t._UZ(143,"path",142),t._UZ(144,"path",143),t._UZ(145,"path",144),t._UZ(146,"path",145),t._UZ(147,"path",146),t._UZ(148,"path",147),t._UZ(149,"path",148),t._UZ(150,"path",149),t._UZ(151,"path",150),t._UZ(152,"path",151),t._UZ(153,"path",152),t._UZ(154,"path",153),t._UZ(155,"path",154),t._UZ(156,"path",155),t._UZ(157,"path",156),t._UZ(158,"path",157),t._UZ(159,"path",158),t._UZ(160,"path",159),t._UZ(161,"path",160),t._UZ(162,"path",161),t._UZ(163,"path",162),t._UZ(164,"path",163),t._UZ(165,"path",164),t._UZ(166,"path",165),t._UZ(167,"path",166),t._UZ(168,"path",167),t._UZ(169,"path",168),t._UZ(170,"path",169),t._UZ(171,"path",170),t._UZ(172,"path",171),t._UZ(173,"path",172),t._UZ(174,"path",173),t._UZ(175,"path",174),t._UZ(176,"path",175),t._UZ(177,"path",176),t._UZ(178,"path",177),t._UZ(179,"path",178),t._UZ(180,"path",179),t._UZ(181,"path",180),t._UZ(182,"path",181),t._UZ(183,"path",182),t._UZ(184,"path",183),t._UZ(185,"polygon",184),t._UZ(186,"polygon",185),t._UZ(187,"polygon",186),t._UZ(188,"polygon",187),t._UZ(189,"polygon",188),t._UZ(190,"polyline",189),t._UZ(191,"polyline",190),t._UZ(192,"polyline",191),t._UZ(193,"path",192),t._UZ(194,"path",193),t._UZ(195,"path",194),t._UZ(196,"path",195),t._UZ(197,"path",196),t._UZ(198,"path",197),t.qZA(),t.qZA(),t.TgZ(199,"g",198),t.TgZ(200,"g",199),t._UZ(201,"path",200),t._UZ(202,"path",201),t.TgZ(203,"g",202),t._UZ(204,"use",203),t._UZ(205,"path",204),t.qZA(),t._UZ(206,"path",205),t._UZ(207,"path",206),t.TgZ(208,"g",207),t.TgZ(209,"g",208),t.TgZ(210,"g",209),t._UZ(211,"use",210),t._UZ(212,"use",211),t.qZA(),t.TgZ(213,"g",212),t._UZ(214,"use",213),t._UZ(215,"use",214),t.qZA(),t.qZA(),t.qZA(),t._UZ(216,"path",215),t.TgZ(217,"foreignObject",216),t.kcU(),t.TgZ(218,"div",217),t._uU(219),t.qZA(),t.qZA(),t.YNc(220,ue,7,1,"g",218),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.TgZ(221,"div",219),t.TgZ(222,"div",220),t.TgZ(223,"div",221),t._uU(224,"You just completed"),t.qZA(),t.TgZ(225,"span",222),t._uU(226),t.qZA(),t.Hsn(227),t.qZA(),t.TgZ(228,"div",223),t.TgZ(229,"div",224),t.NdJ("click",function(){return je.replay()}),t.TgZ(230,"div"),t.YNc(231,De,8,0,"svg",225),t.YNc(232,de,8,0,"svg",225),t.qZA(),t.TgZ(233,"div",226),t._uU(234,"Replay"),t.qZA(),t.qZA(),t.YNc(235,Le,11,0,"div",227),t.qZA(),t.YNc(236,ce,8,1,"ng-container",228),t.qZA(),t.qZA()),2&xt&&(t.xp6(22),t.Q6J("ngIf",je.outcome),t.xp6(197),t.hij(" ",je.userName," "),t.xp6(1),t.Q6J("ngIf",je.timeSpentLabel),t.xp6(6),t.Oqu(je.contentName),t.xp6(3),t.Q6J("ngClass",je.showReplay?"":"disabled"),t.xp6(2),t.Q6J("ngIf",!je.showReplay),t.xp6(1),t.Q6J("ngIf",je.showReplay),t.xp6(3),t.Q6J("ngIf",je.showExit),t.xp6(1),t.Q6J("ngIf",je.nextContent))},directives:[R.O5,R.mk],styles:[':root{--sdk-end-page-title:#000;--sdk-end-page-replay-icon:#024f9d;--sdk-end-page-replay-section-bg:#fff;--sdk-end-page-title-span:#666666;--sdk-end-page-replay-section-hover:#F2F2F2}[_nghost-%COMP%] .player-endpage[_ngcontent-%COMP%]{padding:1rem;height:100%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;justify-content:space-around;background:var(--sdk-end-page-replay-section-bg)}@media all and (orientation:portrait){[_nghost-%COMP%] .player-endpage[_ngcontent-%COMP%]{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;display:block;overflow-y:auto}}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%]{text-align:center;-webkit-box-flex:50%;flex:50%}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%]{position:relative;padding:1.5rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .badge[_ngcontent-%COMP%]{width:17.625rem;height:13.1rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%]{position:absolute;left:0;right:0;bottom:5rem;color:var(--white);text-shadow:.063 .125 #8b2925;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%] .progress[_ngcontent-%COMP%]{font-size:.85rem;margin-right:.7rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%] .score[_ngcontent-%COMP%]{font-size:1.3rem;font-weight:700}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%]{position:absolute;left:0;right:0;top:2.8rem;width:8.5rem;margin:0 auto}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%] .user[_ngcontent-%COMP%]{width:1.275rem;height:1.275rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%] .user-title[_ngcontent-%COMP%]{color:var(--primary-color);font-size:.85rem;line-height:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%]{position:absolute;bottom:2.75rem;left:0;right:0;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%] .timer[_ngcontent-%COMP%]{width:1.275rem;height:1.275rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{color:var(--primary-color);font-size:1rem;font-weight:700;margin-left:.3rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%]{-webkit-box-flex:50%;flex:50%;text-align:center;padding:1rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .title-section[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:var(--sdk-end-page-title);font-size:1.3125rem;font-weight:700;letter-spacing:0;line-height:1.75rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .title-section[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{color:var(--sdk-end-page-title-span);font-size:.75rem;word-break:break-word}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%]{display:-webkit-box;display:flex;justify-content:space-around;padding:1.7rem 0}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:var(--gray-800);font-size:1rem;line-height:1.188rem;text-align:center}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:2.55rem;height:2.55rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next[_ngcontent-%COMP%]{color:var(--gray-400);font-size:.85rem;line-height:1.063rem;margin-bottom:.7rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%]{margin:0 auto;width:auto;border-radius:.5rem;padding:.75rem;background:linear-gradient(135deg,#ffcd55 0,#ffd955 100%);box-shadow:inset 0 -.063rem .188rem 0 rgba(var(--rc-rgba-black),.5);display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:justify;justify-content:space-between;cursor:pointer}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .title-text[_ngcontent-%COMP%]{color:var(--gray-800);font-size:.85rem;-webkit-box-flex:1;flex:1;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;display:-webkit-box;-webkit-box-orient:vertical;line-height:normal}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .next-arrow[_ngcontent-%COMP%]{height:2.55rem;width:2.55rem;background-color:var(--white);border-radius:50%;text-align:center;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;cursor:pointer}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .next-arrow[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:1.75rem}.exit-section[_ngcontent-%COMP%], .replay-section[_ngcontent-%COMP%]{cursor:pointer;background-color:var(--sdk-end-page-replay-section-bg);padding:.5rem;border-radius:.25rem}.exit-section[_ngcontent-%COMP%]:hover, .replay-section[_ngcontent-%COMP%]:hover{background-color:var(--sdk-end-page-replay-section-hover)}.replay-section[_ngcontent-%COMP%] div[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] g[_ngcontent-%COMP%] path[_ngcontent-%COMP%]{fill:var(--sdk-end-page-replay-icon)}.replay-section[_ngcontent-%COMP%] div[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] g[_ngcontent-%COMP%] path[_ngcontent-%COMP%]:first-child{fill:transparent}.replay-section.disabled[_ngcontent-%COMP%]{cursor:not-allowed}.replay-section.disabled[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:#ccc!important}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-1.25rem);transform:translateY(-1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-1.25rem);transform:translateY(-1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(1.25rem);transform:translateY(1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(1.25rem);transform:translateY(1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeftSide{0%{opacity:0;-webkit-transform:translateX(6.25rem);transform:translateX(6.25rem)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftSide{0%{opacity:0;opacity:0;-webkit-transform:translateX(-6.25rem);transform:translateX(-6.25rem)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInDown[_ngcontent-%COMP%]{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.fadeInUp[_ngcontent-%COMP%]{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.fadeInLeftSide[_ngcontent-%COMP%], .fadeInRightSide[_ngcontent-%COMP%]{-webkit-animation-name:fadeInLeftSide;animation-name:fadeInLeftSide}.animated[_ngcontent-%COMP%]{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.truncate-overflow[_ngcontent-%COMP%]{--lh:1.4rem;line-height:var(--lh);--max-lines:1;position:relative;max-height:calc(var(--lh) * var(--max-lines));overflow:hidden;width:100%;font-size:.65rem;color:var(--black)}.truncate-overflow[_ngcontent-%COMP%]::before{position:absolute;content:"";bottom:0;right:0}.truncate-overflow[_ngcontent-%COMP%]::after{content:"";position:absolute;right:0;width:1rem;height:1rem;background:var(--white)}.particles[_ngcontent-%COMP%] path[_ngcontent-%COMP%]{-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-transform-origin:center;transform-origin:center;-webkit-animation:3s ease-in-out infinite both heartbeat;animation:3s ease-in-out infinite both heartbeat;fill:#e55b28;opacity:.4}.badge-inner-animation[_ngcontent-%COMP%]{-webkit-animation:5s ease-in-out infinite both heartbeat;animation:5s ease-in-out infinite both heartbeat;-webkit-transform-origin:center center;transform-origin:center center}@-webkit-keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}']}),st.propDecorators={showExit:[{type:t.IIB}],showReplay:[{type:t.IIB}],contentName:[{type:t.IIB}],outcome:[{type:t.IIB}],outcomeLabel:[{type:t.IIB}],userName:[{type:t.IIB}],timeSpentLabel:[{type:t.IIB}],nextContent:[{type:t.IIB}],replayContent:[{type:t.r_U}],exitContent:[{type:t.r_U}],playNextContent:[{type:t.r_U}]};var at=function(){function pt(){(0,L.Z)(this,pt),this.sidebarMenuEvent=new t.vpe}return(0,C.Z)(pt,[{key:"toggleMenu",value:function(je){var rn=document.getElementById("overlay-input"),At=document.querySelector(".navBlock"),Je=document.getElementById("playerSideMenu");je instanceof KeyboardEvent&&(rn.checked=!rn.checked),rn.checked?(Je.style.visibility="visible",At.style.width="100%",At.style.marginLeft="0%",this.sidebarMenuEvent.emit({event:je,type:"OPEN_MENU"})):(Je.style.visibility="hidden",At.style.marginLeft="-100%",this.sidebarMenuEvent.emit({event:je,type:"CLOSE_MENU"}))}}]),pt}();at.\u0275fac=function(xt){return new(xt||at)},at.\u0275cmp=t.Xpm({type:at,selectors:[["sb-player-side-menu-icon"]],outputs:{sidebarMenuEvent:"sidebarMenuEvent"},decls:3,vars:0,consts:[["type","checkbox","id","overlay-input",3,"click"],["aria-label","Player Menu","for","overlay-input","id","overlay-button","tabindex","0",3,"keydown.enter"]],template:function(xt,je){1&xt&&(t.TgZ(0,"input",0),t.NdJ("click",function(At){return je.toggleMenu(At)}),t.qZA(),t.TgZ(1,"label",1),t.NdJ("keydown.enter",function(At){return je.toggleMenu(At)}),t._UZ(2,"span"),t.qZA())},styles:[':root{--sdk-overlay-btn-hover:#333332}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]{z-index:10;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin:0;position:absolute;top:.4rem;left:1rem;height:2.25rem;width:2.25rem;border-radius:50%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;-webkit-transition:.3s ease-in-out;transition:.3s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{height:.2rem;width:1.25rem;border-radius:.125rem;background-color:var(--black);position:relative;display:block;-webkit-transition:.2s ease-in-out;transition:.2s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{top:-.45rem;visibility:visible}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after{top:.45rem}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{height:.2rem;width:1.25rem;border-radius:.125rem;background-color:var(--black);position:absolute;content:"";-webkit-transition:.2s ease-in-out;transition:.2s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%], [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]:after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]:before{background:var(--sdk-overlay-btn-hover)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover{background-color:rgba(var(--rc-rgba-black),.75)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]{background-color:var(--white)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]::after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]::before{background-color:var(--white)}input[type=checkbox][_ngcontent-%COMP%]{display:none}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay[_ngcontent-%COMP%]{visibility:visible}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%], input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]{background:0 0}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{-webkit-transform:rotate(45deg) translate(.3125rem,.3125rem);transform:rotate(45deg) translate(.3125rem,.3125rem);opacity:1}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after{-webkit-transform:rotate(-45deg) translate(.3125rem,-.3125rem);transform:rotate(-45deg) translate(.3125rem,-.3125rem)} html[dir=rtl] #overlay-button{left:auto;right:1rem} html[dir=rtl] #overlay-button span:after, html[dir=rtl] #overlay-button span:before{right:0}']}),at.propDecorators={sidebarMenuEvent:[{type:t.r_U}]};var St=function(){function pt(xt){(0,L.Z)(this,pt),this.ref=xt,this.config={showShare:!1,showDownload:!1,showReplay:!1,showExit:!1,showPrint:!1},this.sidebarEvent=new t.vpe,this.toggleMenu=new t.vpe,this.showDownloadPopUp=!1}return(0,C.Z)(pt,[{key:"closeNav",value:function(je){document.getElementById("overlay-input").checked=!1,document.getElementById("playerSideMenu").style.visibility="hidden",document.querySelector(".navBlock").style.marginLeft="-100%",this.sidebarEvent.emit({event:je,type:"CLOSE_MENU"})}},{key:"showDownloadPopup",value:function(je,rn){this.showDownloadPopUp=!0,this.ref.detectChanges(),this.emitSideBarEvent(je,rn)}},{key:"hideDownloadPopUp",value:function(je){this.showDownloadPopUp=!1,this.sidebarEvent.emit(je),this.ref.detectChanges()}},{key:"emitSideBarEvent",value:function(je,rn){this.sidebarEvent.emit({event:je,type:rn})}}]),pt}();St.\u0275fac=function(xt){return new(xt||St)(t.Y36(t.sBO))},St.\u0275cmp=t.Xpm({type:St,selectors:[["sb-player-sidebar"]],inputs:{config:"config",title:"title"},outputs:{sidebarEvent:"sidebarEvent",toggleMenu:"toggleMenu"},decls:12,vars:6,consts:[["id","playerSideMenu","aria-modal","true","aria-labelledby","Menubar",1,"sidenav"],["sidebarMenu",""],[1,"navBlock"],["role","heading","aria-level","2",1,"player-nav-unit","text-left"],["aria-label","player sidebar","id","sidebar-list"],["tabindex","0",3,"click","keydown.enter",4,"ngIf"],["aria-hidden","true","tabindex","-1",1,"transparentBlock",3,"click"],[3,"title","showDownloadPopUp","hideDownloadPopUp","downloadEvent",4,"ngIf"],["tabindex","0",3,"click","keydown.enter"],[1,"player-icon","player-share","mr-16"],[1,"player-icon","player-download","mr-16"],[1,"player-icon","player-print","mr-16"],[1,"player-icon","player-exit","mr-16"],[3,"title","showDownloadPopUp","hideDownloadPopUp","downloadEvent"]],template:function(xt,je){1&xt&&(t.TgZ(0,"div",0,1),t.TgZ(2,"div",2),t.TgZ(3,"div",3),t._uU(4),t.qZA(),t.TgZ(5,"ul",4),t.YNc(6,Ne,3,0,"li",5),t.YNc(7,ge,3,0,"li",5),t.YNc(8,ye,3,0,"li",5),t.YNc(9,te,3,0,"li",5),t.qZA(),t.qZA(),t.TgZ(10,"div",6),t.NdJ("click",function(At){return je.closeNav(At)}),t.qZA(),t.qZA(),t.YNc(11,ve,1,2,"sb-player-download-popup",7)),2&xt&&(t.xp6(4),t.Oqu(je.title),t.xp6(2),t.Q6J("ngIf",je.config.showShare),t.xp6(1),t.Q6J("ngIf",je.config.showDownload),t.xp6(1),t.Q6J("ngIf",je.config.showPrint),t.xp6(1),t.Q6J("ngIf",je.config.showExit),t.xp6(2),t.Q6J("ngIf",je.showDownloadPopUp))},directives:[R.O5,Ye],styles:[":root{--sdk-player-icon:#6D7278}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%]{width:100%;position:absolute;top:0;left:0;overflow-x:hidden;display:-webkit-box;display:flex;z-index:9;height:100%}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{text-decoration:none;font-size:1.5rem;color:var(--black);display:block}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{color:var(--gray-0)}@media screen and (max-height:1024px){[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%]{padding-top:0}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{font-size:1.125rem}}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] .closebtn[_ngcontent-%COMP%]{position:absolute;top:0;right:1.5rem;font-size:2.25rem;margin-left:3.125rem}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%]{width:100%;background:var(--white);max-width:20rem;-webkit-transition:.3s ease-in;transition:.3s ease-in;margin-left:-100%;z-index:10;position:absolute;height:100%}@media (min-width:1600px){.PlayerMediaQueryClass [_nghost-%COMP%] .navBlock[_ngcontent-%COMP%]{max-width:24rem}}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] .player-nav-unit[_ngcontent-%COMP%]{background:var(--primary-theme);padding:3rem 2rem 2rem;min-height:5.625rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;color:var(--gray-800);font-size:1rem;font-weight:700;line-height:normal;word-break:break-word}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{margin:0;padding:0}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{padding:1rem 2rem;background:var(--white);min-height:4rem;cursor:pointer;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;color:rgba(var(--rc-rgba-black),1);font-size:.875rem;line-height:1.375rem;margin:0;line-height:normal}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover{background-color:var(--gray-0)}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .player-icon[_ngcontent-%COMP%]{width:1.5rem;height:1.5rem;background-color:var(--sdk-player-icon)}[_nghost-%COMP%] #playerSideMenu[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .player-replay[_ngcontent-%COMP%]{display:inline;padding:8px}[_nghost-%COMP%] .transparentBlock[_ngcontent-%COMP%]{width:100%;background-color:rgba(var(--rc-rgba-black),.5);height:100%;-webkit-transition:.3s;transition:.3s}[_nghost-%COMP%] .player-share[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik00MDYsMzMyYy0yOS42NDEsMC01NS43NjEsMTQuNTgxLTcyLjE2NywzNi43NTVMMTkxLjk5LDI5Ni4xMjRjMi4zNTUtOC4wMjcsNC4wMS0xNi4zNDYsNC4wMS0yNS4xMjQNCgkJCWMwLTExLjkwNi0yLjQ0MS0yMy4yMjUtNi42NTgtMzMuNjM2bDE0OC40NDUtODkuMzI4QzM1NC4zMDcsMTY3LjQyNCwzNzguNTg5LDE4MCw0MDYsMTgwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJYzAtNDkuNjI5LTQwLjM3MS05MC05MC05MGMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsMTEuNDM3LDIuMzU1LDIyLjI4Niw2LjI2MiwzMi4zNThsLTE0OC44ODcsODkuNTkNCgkJCUMxNTYuODY5LDE5My4xMzYsMTMyLjkzNywxODEsMTA2LDE4MWMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsNDkuNjI5LDQwLjM3MSw5MCw5MCw5MGMzMC4xMywwLDU2LjY5MS0xNS4wMDksNzMuMDM1LTM3LjgwNg0KCQkJbDE0MS4zNzYsNzIuMzk1QzMxNy44MDcsNDAzLjk5NSwzMTYsNDEyLjc1LDMxNiw0MjJjMCw0OS42MjksNDAuMzcxLDkwLDkwLDkwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJQzQ5NiwzNzIuMzcxLDQ1NS42MjksMzMyLDQwNiwzMzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik00MDYsMzMyYy0yOS42NDEsMC01NS43NjEsMTQuNTgxLTcyLjE2NywzNi43NTVMMTkxLjk5LDI5Ni4xMjRjMi4zNTUtOC4wMjcsNC4wMS0xNi4zNDYsNC4wMS0yNS4xMjQNCgkJCWMwLTExLjkwNi0yLjQ0MS0yMy4yMjUtNi42NTgtMzMuNjM2bDE0OC40NDUtODkuMzI4QzM1NC4zMDcsMTY3LjQyNCwzNzguNTg5LDE4MCw0MDYsMTgwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJYzAtNDkuNjI5LTQwLjM3MS05MC05MC05MGMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsMTEuNDM3LDIuMzU1LDIyLjI4Niw2LjI2MiwzMi4zNThsLTE0OC44ODcsODkuNTkNCgkJCUMxNTYuODY5LDE5My4xMzYsMTMyLjkzNywxODEsMTA2LDE4MWMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsNDkuNjI5LDQwLjM3MSw5MCw5MCw5MGMzMC4xMywwLDU2LjY5MS0xNS4wMDksNzMuMDM1LTM3LjgwNg0KCQkJbDE0MS4zNzYsNzIuMzk1QzMxNy44MDcsNDAzLjk5NSwzMTYsNDEyLjc1LDMxNiw0MjJjMCw0OS42MjksNDAuMzcxLDkwLDkwLDkwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJQzQ5NiwzNzIuMzcxLDQ1NS42MjksMzMyLDQwNiwzMzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)}[_nghost-%COMP%] .player-exit[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzg0IDM4NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzg0IDM4NDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxnPg0KCQkJPHBhdGggZD0iTTM0MS4zMzMsMEg0Mi42NjdDMTkuMDkzLDAsMCwxOS4wOTMsMCw0Mi42NjdWMTI4aDQyLjY2N1Y0Mi42NjdoMjk4LjY2N3YyOTguNjY3SDQyLjY2N1YyNTZIMHY4NS4zMzMNCgkJCQlDMCwzNjQuOTA3LDE5LjA5MywzODQsNDIuNjY3LDM4NGgyOTguNjY3QzM2NC45MDcsMzg0LDM4NCwzNjQuOTA3LDM4NCwzNDEuMzMzVjQyLjY2N0MzODQsMTkuMDkzLDM2NC45MDcsMCwzNDEuMzMzLDB6Ii8+DQoJCQk8cG9seWdvbiBwb2ludHM9IjE1MS4xNDcsMjY4LjQ4IDE4MS4zMzMsMjk4LjY2NyAyODgsMTkyIDE4MS4zMzMsODUuMzMzIDE1MS4xNDcsMTE1LjUyIDIwNi4yOTMsMTcwLjY2NyAwLDE3MC42NjcgMCwyMTMuMzMzIA0KCQkJCTIwNi4yOTMsMjEzLjMzMyAJCQkiLz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzg0IDM4NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzg0IDM4NDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxnPg0KCQkJPHBhdGggZD0iTTM0MS4zMzMsMEg0Mi42NjdDMTkuMDkzLDAsMCwxOS4wOTMsMCw0Mi42NjdWMTI4aDQyLjY2N1Y0Mi42NjdoMjk4LjY2N3YyOTguNjY3SDQyLjY2N1YyNTZIMHY4NS4zMzMNCgkJCQlDMCwzNjQuOTA3LDE5LjA5MywzODQsNDIuNjY3LDM4NGgyOTguNjY3QzM2NC45MDcsMzg0LDM4NCwzNjQuOTA3LDM4NCwzNDEuMzMzVjQyLjY2N0MzODQsMTkuMDkzLDM2NC45MDcsMCwzNDEuMzMzLDB6Ii8+DQoJCQk8cG9seWdvbiBwb2ludHM9IjE1MS4xNDcsMjY4LjQ4IDE4MS4zMzMsMjk4LjY2NyAyODgsMTkyIDE4MS4zMzMsODUuMzMzIDE1MS4xNDcsMTE1LjUyIDIwNi4yOTMsMTcwLjY2NyAwLDE3MC42NjcgMCwyMTMuMzMzIA0KCQkJCTIwNi4yOTMsMjEzLjMzMyAJCQkiLz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K)}[_nghost-%COMP%] .player-print[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNfcHJpbnQgY29weTwvdGl0bGU+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iSWNvbi0yNHB4Ij4KICAgICAgICAgICAgPHBhdGggZD0iTTE5LDggTDUsOCBDMy4zNCw4IDIsOS4zNCAyLDExIEwyLDE3IEw2LDE3IEw2LDIxIEwxOCwyMSBMMTgsMTcgTDIyLDE3IEwyMiwxMSBDMjIsOS4zNCAyMC42Niw4IDE5LDggTDE5LDggWiBNMTYsMTkgTDgsMTkgTDgsMTQgTDE2LDE0IEwxNiwxOSBMMTYsMTkgWiBNMTksMTIgQzE4LjQ1LDEyIDE4LDExLjU1IDE4LDExIEMxOCwxMC40NSAxOC40NSwxMCAxOSwxMCBDMTkuNTUsMTAgMjAsMTAuNDUgMjAsMTEgQzIwLDExLjU1IDE5LjU1LDEyIDE5LDEyIEwxOSwxMiBaIE0xOCwzIEw2LDMgTDYsNyBMMTgsNyBMMTgsMyBMMTgsMyBaIiBpZD0iU2hhcGUiIGZpbGw9IiM2RDcyNzgiPjwvcGF0aD4KICAgICAgICAgICAgPHBvbHlnb24gaWQ9IlNoYXBlIiBwb2ludHM9IjAgMCAyNCAwIDI0IDI0IDAgMjQiPjwvcG9seWdvbj4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNfcHJpbnQgY29weTwvdGl0bGU+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iSWNvbi0yNHB4Ij4KICAgICAgICAgICAgPHBhdGggZD0iTTE5LDggTDUsOCBDMy4zNCw4IDIsOS4zNCAyLDExIEwyLDE3IEw2LDE3IEw2LDIxIEwxOCwyMSBMMTgsMTcgTDIyLDE3IEwyMiwxMSBDMjIsOS4zNCAyMC42Niw4IDE5LDggTDE5LDggWiBNMTYsMTkgTDgsMTkgTDgsMTQgTDE2LDE0IEwxNiwxOSBMMTYsMTkgWiBNMTksMTIgQzE4LjQ1LDEyIDE4LDExLjU1IDE4LDExIEMxOCwxMC40NSAxOC40NSwxMCAxOSwxMCBDMTkuNTUsMTAgMjAsMTAuNDUgMjAsMTEgQzIwLDExLjU1IDE5LjU1LDEyIDE5LDEyIEwxOSwxMiBaIE0xOCwzIEw2LDMgTDYsNyBMMTgsNyBMMTgsMyBMMTgsMyBaIiBpZD0iU2hhcGUiIGZpbGw9IiM2RDcyNzgiPjwvcGF0aD4KICAgICAgICAgICAgPHBvbHlnb24gaWQ9IlNoYXBlIiBwb2ludHM9IjAgMCAyNCAwIDI0IDI0IDAgMjQiPjwvcG9seWdvbj4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==)}[_nghost-%COMP%] .player-download[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik0zODIuNTYsMjMzLjM3NkMzNzkuOTY4LDIyNy42NDgsMzc0LjI3MiwyMjQsMzY4LDIyNGgtNjRWMTZjMC04LjgzMi03LjE2OC0xNi0xNi0xNmgtNjRjLTguODMyLDAtMTYsNy4xNjgtMTYsMTZ2MjA4aC02NA0KCQkJYy02LjI3MiwwLTExLjk2OCwzLjY4LTE0LjU2LDkuMzc2Yy0yLjYyNCw1LjcyOC0xLjYsMTIuNDE2LDIuNTI4LDE3LjE1MmwxMTIsMTI4YzMuMDQsMy40ODgsNy40MjQsNS40NzIsMTIuMDMyLDUuNDcyDQoJCQljNC42MDgsMCw4Ljk5Mi0yLjAxNiwxMi4wMzItNS40NzJsMTEyLTEyOEMzODQuMTkyLDI0NS44MjQsMzg1LjE1MiwyMzkuMTA0LDM4Mi41NiwyMzMuMzc2eiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNNDMyLDM1MnY5Nkg4MHYtOTZIMTZ2MTI4YzAsMTcuNjk2LDE0LjMzNiwzMiwzMiwzMmg0MTZjMTcuNjk2LDAsMzItMTQuMzA0LDMyLTMyVjM1Mkg0MzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik0zODIuNTYsMjMzLjM3NkMzNzkuOTY4LDIyNy42NDgsMzc0LjI3MiwyMjQsMzY4LDIyNGgtNjRWMTZjMC04LjgzMi03LjE2OC0xNi0xNi0xNmgtNjRjLTguODMyLDAtMTYsNy4xNjgtMTYsMTZ2MjA4aC02NA0KCQkJYy02LjI3MiwwLTExLjk2OCwzLjY4LTE0LjU2LDkuMzc2Yy0yLjYyNCw1LjcyOC0xLjYsMTIuNDE2LDIuNTI4LDE3LjE1MmwxMTIsMTI4YzMuMDQsMy40ODgsNy40MjQsNS40NzIsMTIuMDMyLDUuNDcyDQoJCQljNC42MDgsMCw4Ljk5Mi0yLjAxNiwxMi4wMzItNS40NzJsMTEyLTEyOEMzODQuMTkyLDI0NS44MjQsMzg1LjE1MiwyMzkuMTA0LDM4Mi41NiwyMzMuMzc2eiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNNDMyLDM1MnY5Nkg4MHYtOTZIMTZ2MTI4YzAsMTcuNjk2LDE0LjMzNiwzMiwzMiwzMmg0MTZjMTcuNjk2LDAsMzItMTQuMzA0LDMyLTMyVjM1Mkg0MzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)}"]}),St.ctorParameters=function(){return[{type:t.sBO}]},St.propDecorators={title:[{type:t.IIB}],config:[{type:t.IIB}],sidebarEvent:[{type:t.r_U}],toggleMenu:[{type:t.r_U}]};var ft=function(){function pt(){(0,L.Z)(this,pt),this.progress=0}return(0,C.Z)(pt,[{key:"ngOnChanges",value:function(je){je.progress&&je.progress.currentValue&&(this.progress=je.progress.currentValue)}}]),pt}();ft.\u0275fac=function(xt){return new(xt||ft)},ft.\u0275cmp=t.Xpm({type:ft,selectors:[["sb-player-start-page"]],inputs:{progress:"progress",title:"title"},features:[t.TTD],decls:10,vars:7,consts:[[1,"sb-player-splash-container",3,"ngClass"],[1,"sb-player-splash-container__header"],[1,"sb-player-splash-container__body","animated","fadeInDown"],[1,""],[1,"sb-player-splash-container__footer"],[1,"loading-text"],[1,"bg"],[1,"el"]],template:function(xt,je){1&xt&&(t.TgZ(0,"div",0),t._UZ(1,"div",1),t.TgZ(2,"div",2),t.TgZ(3,"span",3),t._uU(4),t.qZA(),t.qZA(),t.TgZ(5,"div",4),t.TgZ(6,"div",5),t._uU(7),t.qZA(),t.TgZ(8,"div",6),t._UZ(9,"div",7),t.qZA(),t.qZA(),t.qZA()),2&xt&&(t.Q6J("ngClass",t.VKq(5,Ue,100===je.progress)),t.xp6(4),t.Oqu(je.title),t.xp6(3),t.hij("Loading... ",je.progress,"%"),t.xp6(2),t.Udp("width",je.progress+"%"))},directives:[R.mk],styles:['.sb-player-splash-container[_ngcontent-%COMP%]{box-sizing:border-box;padding:1rem;height:100%;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-align:center;align-items:center;-webkit-box-pack:justify;justify-content:space-between;opacity:1;background:var(--primary-theme);-webkit-transition:.3s ease-in;transition:.3s ease-in}.sb-player-splash-container.animateBg[_ngcontent-%COMP%]{opacity:0}.sb-player-splash-container__body[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;text-align:center;color:var(--gray-800);letter-spacing:0}.sb-player-splash-container__body[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{font-size:1.5rem;font-weight:700;letter-spacing:0;line-height:normal;word-break:break-word}.sb-player-splash-container__footer[_ngcontent-%COMP%]{color:var(--black);font-size:.75rem;line-height:1.25rem;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;width:100%}@-webkit-keyframes loading{0%{width:0}100%{width:100%}}@keyframes loading{0%{width:0}100%{width:100%}}@-webkit-keyframes percentage{1%{content:"1%"}2%{content:"2%"}3%{content:"3%"}4%{content:"4%"}5%{content:"5%"}6%{content:"6%"}7%{content:"7%"}8%{content:"8%"}9%{content:"9%"}10%{content:"10%"}11%{content:"11%"}12%{content:"12%"}13%{content:"13%"}14%{content:"14%"}15%{content:"15%"}16%{content:"16%"}17%{content:"17%"}18%{content:"18%"}19%{content:"19%"}20%{content:"20%"}21%{content:"21%"}22%{content:"22%"}23%{content:"23%"}24%{content:"24%"}25%{content:"25%"}26%{content:"26%"}27%{content:"27%"}28%{content:"28%"}29%{content:"29%"}30%{content:"30%"}31%{content:"31%"}32%{content:"32%"}33%{content:"33%"}34%{content:"34%"}35%{content:"35%"}36%{content:"36%"}37%{content:"37%"}38%{content:"38%"}39%{content:"39%"}40%{content:"40%"}41%{content:"41%"}42%{content:"42%"}43%{content:"43%"}44%{content:"44%"}45%{content:"45%"}46%{content:"46%"}47%{content:"47%"}48%{content:"48%"}49%{content:"49%"}50%{content:"50%"}51%{content:"51%"}52%{content:"52%"}53%{content:"53%"}54%{content:"54%"}55%{content:"55%"}56%{content:"56%"}57%{content:"57%"}58%{content:"58%"}59%{content:"59%"}60%{content:"60%"}61%{content:"61%"}62%{content:"62%"}63%{content:"63%"}64%{content:"64%"}65%{content:"65%"}66%{content:"66%"}67%{content:"67%"}68%{content:"68%"}69%{content:"69%"}70%{content:"70%"}71%{content:"71%"}72%{content:"72%"}73%{content:"73%"}74%{content:"74%"}75%{content:"75%"}76%{content:"76%"}77%{content:"77%"}78%{content:"78%"}79%{content:"79%"}80%{content:"80%"}81%{content:"81%"}82%{content:"82%"}83%{content:"83%"}84%{content:"84%"}85%{content:"85%"}86%{content:"86%"}87%{content:"87%"}88%{content:"88%"}89%{content:"89%"}90%{content:"90%"}91%{content:"91%"}92%{content:"92%"}93%{content:"93%"}94%{content:"94%"}95%{content:"95%"}96%{content:"96%"}97%{content:"97%"}98%{content:"98%"}99%{content:"99%"}100%{content:"100%"}}@keyframes percentage{1%{content:"1%"}2%{content:"2%"}3%{content:"3%"}4%{content:"4%"}5%{content:"5%"}6%{content:"6%"}7%{content:"7%"}8%{content:"8%"}9%{content:"9%"}10%{content:"10%"}11%{content:"11%"}12%{content:"12%"}13%{content:"13%"}14%{content:"14%"}15%{content:"15%"}16%{content:"16%"}17%{content:"17%"}18%{content:"18%"}19%{content:"19%"}20%{content:"20%"}21%{content:"21%"}22%{content:"22%"}23%{content:"23%"}24%{content:"24%"}25%{content:"25%"}26%{content:"26%"}27%{content:"27%"}28%{content:"28%"}29%{content:"29%"}30%{content:"30%"}31%{content:"31%"}32%{content:"32%"}33%{content:"33%"}34%{content:"34%"}35%{content:"35%"}36%{content:"36%"}37%{content:"37%"}38%{content:"38%"}39%{content:"39%"}40%{content:"40%"}41%{content:"41%"}42%{content:"42%"}43%{content:"43%"}44%{content:"44%"}45%{content:"45%"}46%{content:"46%"}47%{content:"47%"}48%{content:"48%"}49%{content:"49%"}50%{content:"50%"}51%{content:"51%"}52%{content:"52%"}53%{content:"53%"}54%{content:"54%"}55%{content:"55%"}56%{content:"56%"}57%{content:"57%"}58%{content:"58%"}59%{content:"59%"}60%{content:"60%"}61%{content:"61%"}62%{content:"62%"}63%{content:"63%"}64%{content:"64%"}65%{content:"65%"}66%{content:"66%"}67%{content:"67%"}68%{content:"68%"}69%{content:"69%"}70%{content:"70%"}71%{content:"71%"}72%{content:"72%"}73%{content:"73%"}74%{content:"74%"}75%{content:"75%"}76%{content:"76%"}77%{content:"77%"}78%{content:"78%"}79%{content:"79%"}80%{content:"80%"}81%{content:"81%"}82%{content:"82%"}83%{content:"83%"}84%{content:"84%"}85%{content:"85%"}86%{content:"86%"}87%{content:"87%"}88%{content:"88%"}89%{content:"89%"}90%{content:"90%"}91%{content:"91%"}92%{content:"92%"}93%{content:"93%"}94%{content:"94%"}95%{content:"95%"}96%{content:"96%"}97%{content:"97%"}98%{content:"98%"}99%{content:"99%"}100%{content:"100%"}}.bg[_ngcontent-%COMP%], .el[_ngcontent-%COMP%]{border-radius:.25rem;height:.5rem}.bg[_ngcontent-%COMP%]{background-color:var(--white)}.el[_ngcontent-%COMP%]{background-color:#f1635d;width:0%;-webkit-transition:.3s;transition:.3s}.loading-text[_ngcontent-%COMP%]{-ms-grid-row-align:center;align-self:center;margin-bottom:.5rem;color:var(--black)}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeftSide{0%{opacity:0;-webkit-transform:translateX(100px);transform:translateX(100px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftSide{0%{opacity:0;opacity:0;-webkit-transform:translateX(-100px);transform:translateX(-100px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInDown[_ngcontent-%COMP%]{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.fadeInUp[_ngcontent-%COMP%]{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.fadeInLeftSide[_ngcontent-%COMP%], .fadeInRightSide[_ngcontent-%COMP%]{-webkit-animation-name:fadeInLeftSide;animation-name:fadeInLeftSide}.animated[_ngcontent-%COMP%]{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}']}),ft.propDecorators={title:[{type:t.IIB}],progress:[{type:t.IIB}]};var ot=function(){function pt(){(0,L.Z)(this,pt)}return(0,C.Z)(pt,[{key:"ngOnInit",value:function(){var je=this;window.addEventListener("offline",function(){je.showOfflineAlert=!0,setTimeout(function(){je.showOfflineAlert=!1},4e3)})}}]),pt}();ot.\u0275fac=function(xt){return new(xt||ot)},ot.\u0275cmp=t.Xpm({type:ot,selectors:[["sb-player-offline-alert"]],decls:1,vars:1,consts:[["class","offline-container",4,"ngIf"],[1,"offline-container"]],template:function(xt,je){1&xt&&t.YNc(0,Ke,2,0,"div",0),2&xt&&t.Q6J("ngIf",je.showOfflineAlert)},directives:[R.O5],styles:[":root{--sdk-offline-container:#fff}.offline-container[_ngcontent-%COMP%]{position:absolute;top:0;left:0;right:0;height:3rem;background:var(--tertiary-color);color:var(--sdk-offline-container);width:100%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;z-index:999;-webkit-box-pack:center;justify-content:center;box-shadow:0 0 2px 2px #666;font-size:14px}"]}),ot.ctorParameters=function(){return[]};var kt=(0,C.Z)(function pt(){(0,L.Z)(this,pt)});kt.\u0275fac=function(xt){return new(xt||kt)},kt.\u0275mod=t.oAB({type:kt}),kt.\u0275inj=t.cJS({imports:[[R.ez,V.u5]]});var _t=(0,C.Z)(function pt(){(0,L.Z)(this,pt),this.nextAction=new t.vpe});_t.\u0275fac=function(xt){return new(xt||_t)},_t.\u0275cmp=t.Xpm({type:_t,selectors:[["sb-player-next-navigation"]],outputs:{nextAction:"nextAction"},decls:3,vars:0,consts:[["aria-label","navigation-arrows-nextIcon","tabindex","0",1,"navigation-arrows","player-nextIcon","paginate","right","ml-4",3,"click"]],template:function(xt,je){1&xt&&(t.TgZ(0,"button",0),t.NdJ("click",function(){return je.nextAction.emit({type:"NEXT"})}),t._UZ(1,"i"),t._UZ(2,"i"),t.qZA())},styles:[Ze]}),_t.propDecorators={nextAction:[{type:t.r_U}]};var Xt=(0,C.Z)(function pt(){(0,L.Z)(this,pt),this.previousAction=new t.vpe});Xt.\u0275fac=function(xt){return new(xt||Xt)},Xt.\u0275cmp=t.Xpm({type:Xt,selectors:[["sb-player-previous-navigation"]],outputs:{previousAction:"previousAction"},decls:3,vars:0,consts:[["aria-label","navigation-arrows-previousIcon","tabindex","0",1,"navigation-arrows","player-previousIcon","paginate","left",3,"click"]],template:function(xt,je){1&xt&&(t.TgZ(0,"button",0),t.NdJ("click",function(){return je.previousAction.emit({type:"PREVIOUS"})}),t._UZ(1,"i"),t._UZ(2,"i"),t.qZA())},styles:[Ze]}),Xt.propDecorators={previousAction:[{type:t.r_U}]};var Jt=function(){function pt(){(0,L.Z)(this,pt),this.actions=new t.vpe,this._config={rotation:!1,goto:!1,navigation:!1,zoom:!1}}return(0,C.Z)(pt,[{key:"config",get:function(){return this._config},set:function(je){this._item=Object.assign(Object.assign({},this._config),je),this._config=this._item}},{key:"ngOnInit",value:function(){this.page=this.pageNumber}},{key:"ngOnChanges",value:function(je){for(var rn in je)if(je.hasOwnProperty(rn))switch(rn){case"pageNumber":this.page=je[rn].currentValue,this.pageNumber=je[rn].currentValue;break;case"totalPages":this.totalPages=je[rn].currentValue}}},{key:"zoomIn",value:function(){this.actions.emit({type:"ZOOM_IN"})}},{key:"zoomOut",value:function(){this.actions.emit({type:"ZOOM_OUT"})}},{key:"rotateCW",value:function(){this.actions.emit({type:"ROTATE_CW"})}},{key:"gotoPage",value:function(){var je=parseInt(this.page,10);je>0&&je<=this.totalPages?(this.actions.emit({type:"NAVIGATE_TO_PAGE",data:je}),this.pageNumber=je):(this.actions.emit({type:"INVALID_PAGE_ERROR",data:je}),this.page=this.pageNumber)}}]),pt}();Jt.\u0275fac=function(xt){return new(xt||Jt)},Jt.\u0275cmp=t.Xpm({type:Jt,selectors:[["sb-player-header"]],inputs:{config:"config",pageNumber:"pageNumber",totalPages:"totalPages"},outputs:{actions:"actions"},features:[t.TTD],decls:7,vars:4,consts:[[1,"sb-player-header"],[1,"sb-player-header__panel","d-flex","flex-ai-center","flex-jc-flex-end"],["class","icon_rotate mr-8",4,"ngIf"],["class","player-zoom-btns d-flex mr-8",4,"ngIf"],["class","player-pagenumber",4,"ngIf"],["class","visible-only-landscape",4,"ngIf"],[1,"icon_rotate","mr-8"],["src","./assets/rotate-icon.svg","alt","rotate icon","tabindex","0","role","button","aria-label","rotate page",1,"rotate-icon",3,"click"],[1,"player-zoom-btns","d-flex","mr-8"],["type","button","tabindex","0","aria-label","zoom out","title","zoom out",1,"player-zoom-btns__zoombtn","zoomOut-btn",3,"click"],["type","button","tabindex","0","aria-label","zoom in","title","zoom in",1,"player-zoom-btns__zoombtn","zoomIn-btn",3,"click"],[1,"player-pagenumber"],["type","number","min","1",1,"page-count",3,"ngModel","max","ngModelChange"],["role","button","aria-label","Go to page","tabindex","0",1,"focus-arrow",3,"click"],["src","./assets/arrow-right.svg","alt","arrow-right","width","100%"],[1,"slash"],[1,"pageNumberFullcount"],[1,"visible-only-landscape"],[1,"d-flex","player-slides","ml-8"],[1,"d-flex","flex-ai-center",3,"previousAction"],[1,"d-flex","flex-ai-center",3,"nextAction"]],template:function(xt,je){1&xt&&(t.TgZ(0,"div"),t.TgZ(1,"div",0),t.TgZ(2,"div",1),t.YNc(3,ut,2,0,"div",2),t.YNc(4,Xe,3,0,"div",3),t.YNc(5,A,8,3,"div",4),t.YNc(6,W,4,0,"div",5),t.qZA(),t.qZA(),t.qZA()),2&xt&&(t.xp6(3),t.Q6J("ngIf",je.config.rotation),t.xp6(1),t.Q6J("ngIf",je.config.zoom),t.xp6(1),t.Q6J("ngIf",je.config.goto&&je.totalPages),t.xp6(1),t.Q6J("ngIf",je.config.navigation))},directives:[R.O5,V.qQ,V.wV,V.Fd,V.Fj,V.JJ,V.On,Xt,_t],styles:[':root{--sdk-sb-player-header:#fff;--sdk-player-zoombtn:#000;--sdk-player-zoombtn-icon:#333;--sdk-player-zoombtn-icon-hover:#F2F2F2;--sdk-player-page-count-bg:#fff;--sdk-player-page-count-txt:#CCCCCC;--sdk-player-page-count-arrow:#333333}[_nghost-%COMP%] .sb-player-header[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:end;justify-content:flex-end;height:3rem;padding:.75em 1rem;background:var(--sdk-sb-player-header)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%]{border-radius:.25rem;overflow:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%]{color:var(--sdk-player-zoombtn);text-align:center;line-height:.8rem;font-size:1.5rem;background-color:rgba(var(--rc-rgba-gray),.11);padding:0;-webkit-transition:.3s ease-in;transition:.3s ease-in;cursor:pointer;width:2rem;height:2rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;border:0}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{-webkit-mask-size:contain;-webkit-mask-repeat:no-repeat;mask-size:contain;mask-repeat:no-repeat;background-color:var(--sdk-player-zoombtn-icon)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%]:hover{background:var(--sdk-player-zoombtn-icon-hover)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomOut-btn[_ngcontent-%COMP%]{border-right:.063em solid rgba(var(--rc-rgba-gray),.1)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomOut-btn[_ngcontent-%COMP%]::after{content:"-"}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomIn-btn[_ngcontent-%COMP%]::after{content:"+"}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%]{font-size:1rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;position:relative}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]{height:2rem;width:3rem;border:.031em solid var(--sdk-player-page-count-txt);border-radius:.25rem;background-color:var(--sdk-player-page-count-bg);text-align:center}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus{border-radius:.25em 0 0 .25rem;outline:0}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%] ~ .focus-arrow[_ngcontent-%COMP%]{opacity:0;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;width:2.2rem;height:2rem;background:var(--sdk-player-page-count-arrow);border-radius:0 .25em .25em 0;position:absolute;left:calc(3rem - 0px);cursor:pointer}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%] ~ .focus-arrow[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:50%}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .focus-arrow[_ngcontent-%COMP%]{opacity:1}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .slash[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .pageNumberFullcount[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .slash[_ngcontent-%COMP%]{margin:0 .5rem}[_nghost-%COMP%] .player-zoom-btns-inline[_ngcontent-%COMP%]{display:inline-block}[_nghost-%COMP%] .player-replay[_ngcontent-%COMP%]{display:inline;padding:.5rem}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%]{background:0 0;height:2rem;text-align:center;width:2rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;border-radius:.25rem;padding:.25rem;cursor:pointer;-webkit-transition:.3s ease-in;transition:.3s ease-in}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%]:hover{background:rgba(var(--rc-rgba-gray),.11)}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%] .rotate-icon[_ngcontent-%COMP%]{width:100%}[_nghost-%COMP%] sb-player-next-navigation[_ngcontent-%COMP%], [_nghost-%COMP%] sb-player-previous-navigation[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count:focus{border-radius:0 .25em .25rem 0!important} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count~.focus-arrow{left:auto;right:calc(3rem - 0px);border-radius:.25em 0 0 .25em!important} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count~.focus-arrow img{-webkit-transform:rotate(180deg);transform:rotate(180deg)}']}),Jt.propDecorators={pageNumber:[{type:t.IIB}],totalPages:[{type:t.IIB}],actions:[{type:t.r_U}],config:[{type:t.IIB}]};var Wt=function(){function pt(){(0,L.Z)(this,pt)}return(0,C.Z)(pt,[{key:"ngOnInit",value:function(){this.errorMsg||(this.errorMsg={messageHeader:Se.contentPlayFailedHeader,messageTitle:Se.contentPlayFailTitle})}}]),pt}();Wt.\u0275fac=function(xt){return new(xt||Wt)},Wt.\u0275cmp=t.Xpm({type:Wt,selectors:[["sb-player-contenterror"]],inputs:{errorMsg:"errorMsg"},decls:6,vars:2,consts:[[1,"playersdk-msg","playersdk-msg--error"],[1,"playersdk-msg__body"],[1,"playersdk-msg__text"],[1,"error-header"]],template:function(xt,je){1&xt&&(t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.TgZ(2,"div",2),t.TgZ(3,"span",3),t._uU(4),t.qZA(),t._uU(5),t.qZA(),t.qZA(),t.qZA()),2&xt&&(t.xp6(4),t.Oqu(je.errorMsg.messageHeader),t.xp6(1),t.hij(" ",je.errorMsg.messageTitle," "))},styles:[':root{--sdk-playersdk-text:#333;--sdk-playersdk-bg:#fbccd1;--sdk-playersdk-border:#ff4558;--sdk-playersdk-closeicon:#ff4558;--sdk-playersdk-error-header:#ff4558}.playersdk-msg[_ngcontent-%COMP%]{position:absolute;top:10%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;max-width:20rem;margin-bottom:8px;padding:1rem;border:1px solid;border-radius:.5rem;border-width:0 0 0 .5rem;z-index:111111}.playersdk-msg--error[_ngcontent-%COMP%]{color:var(--sdk-playersdk-text);background:var(--sdk-playersdk-bg);border-color:var(--sdk-playersdk-border)}.playersdk-msg__body[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center}.playersdk-msg__text[_ngcontent-%COMP%]{font-size:.875rem}@media (max-width:767px){.playersdk-msg__text[_ngcontent-%COMP%]{font-size:.75rem}}.playersdk-msg__close-icon[_ngcontent-%COMP%]{position:absolute;right:0;top:0;width:2rem;height:2rem;cursor:pointer}.playersdk-msg__close-icon[_ngcontent-%COMP%]::after, .playersdk-msg__close-icon[_ngcontent-%COMP%]::before{content:" ";position:absolute;right:1rem;height:1rem;width:.125rem;top:.5rem;background:var(--sdk-playersdk-closeicon)}.playersdk-msg__close-icon[_ngcontent-%COMP%]::before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.playersdk-msg__close-icon[_ngcontent-%COMP%]::after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.error-header[_ngcontent-%COMP%]{font-size:1.25rem;display:block;margin-bottom:.5rem;line-height:normal;color:var(--sdk-playersdk-error-header)}']}),Wt.propDecorators={errorMsg:[{type:t.IIB}]};var Ft=(0,C.Z)(function pt(){(0,L.Z)(this,pt)});Ft.\u0275fac=function(xt){return new(xt||Ft)},Ft.\u0275mod=t.oAB({type:Ft}),Ft.\u0275inj=t.cJS({imports:[[R.ez,V.u5]]});var mn=(0,C.Z)(function pt(){(0,L.Z)(this,pt)});mn.\u0275fac=function(xt){return new(xt||mn)},mn.\u0275mod=t.oAB({type:mn}),mn.\u0275inj=t.cJS({imports:[[kt,Ft],kt,Ft]})},9075:function(It,we,D){"use strict";D.d(we,{wX:function(){return A1},e3:function(){return Z1},RN:function(){return nu}});var L=D(47),C=D(7444),t=D(3587),R=D(1494),V=D(4547);var E=function(b,I){return(0,V.Z)(b,I)},y=D(9508),be=D(787),ue=D(7940),de=function(){try{var b=(0,ue.Z)(Object,"defineProperty");return b({},"",{}),b}catch(I){}}();var ce=function(b,I,m){"__proto__"==I&&de?de(b,I,{configurable:!0,enumerable:!0,value:m,writable:!0}):b[I]=m},pe=D(5595),ge=Object.prototype.hasOwnProperty;var te=function(b,I,m){var x=b[I];(!ge.call(b,I)||!(0,pe.Z)(x,m)||void 0===m&&!(I in b))&&ce(b,I,m)};var Ue=function(b,I,m,x){var Y=!m;m||(m={});for(var Ce=-1,tt=I.length;++CeY?0:Y+I),(m=m>Y?Y:m)<0&&(m+=Y),Y=I>m?0:m-I>>>0,I>>>=0;for(var Ce=Array(Y);++x0){if(++I>=800)return arguments[0]}else I=0;return b.apply(void 0,arguments)}},tl=Ti(oo);var Sa=function(b,I){return tl(Ha(b,I,bi.Z),b+"")},Ts=D(7365);var To=function(b,I,m,x){for(var Y=b.length,Ce=m+(x?1:-1);x?Ce--:++Ce-1};var Hr=function(b,I,m){for(var x=-1,Y=null==b?0:b.length;++x=200&&(Ce=Ro.Z,tt=!1,I=new Ts.Z(I));e:for(;++Y0&&m(zt)?I>1?Vs(zt,I-1,m,x,Y):(0,At.Z)(Y,zt):x||(Y[Y.length]=zt)}return Y},ha=D(663);var Ga=function(){},Ol=D(6771),X=ha.Z&&1/(0,Ol.Z)(new ha.Z([,-0]))[1]==1/0?function(b){return new ha.Z(b)}:Ga;var rt=function(b,I,m){var x=-1,Y=Zn,Ce=b.length,tt=!0,zt=[],Ht=zt;if(m)tt=!1,Y=Hr;else if(Ce>=200){var Ut=I?null:X(b);if(Ut)return(0,Ol.Z)(Ut);tt=!1,Y=Ro.Z,Ht=new Ts.Z}else Ht=I?[]:zt;e:for(;++x=this.length)){for(var x=this.head,Y=0;Y1&&void 0!==arguments[1]?arguments[1]:this.length;if(x<0||x>this.length)throw new Error("Position is out of the list");var Y={value:m,next:void 0,previous:void 0};if(0===this.length)this.head=Y,this.tail=Y,this.current=Y;else if(0===x)Y.next=this.head,this.head.previous=Y,this.head=Y;else if(x===this.length)this.tail.next=Y,Y.previous=this.tail,this.tail=Y;else{var Ce=this.getNode(x-1),tt=Ce.next;Ce.next=Y,tt.previous=Y,Y.previous=Ce,Y.next=tt}this.length++,this.createInternalArrayRepresentation()}},{key:"remove",value:function(){var m=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;if(0===this.length||m<0||m>=this.length)throw new Error("Position is out of the list");if(0===m)this.head=this.head.next,this.head?this.head.previous=void 0:this.tail=void 0;else if(m===this.length-1)this.tail=this.tail.previous,this.tail.next=void 0;else{var x=this.getNode(m);x.next.previous=x.previous,x.previous.next=x.next}this.length--,this.createInternalArrayRepresentation()}},{key:"set",value:function(m,x){if(0===this.length||m<0||m>=this.length)throw new Error("Position is out of the list");this.getNode(m).value=x,this.createInternalArrayRepresentation()}},{key:"toArray",value:function(){return this.asArray}},{key:"findAll",value:function(m){for(var x=this.head,Y=[],Ce=0;Ce=this.length)throw new Error("Position is out of the list");for(var x=this.head,Y=0;Ythis.itemsPerSlide&&this.play()}},{key:"removeSlide",value:function(m){var x=this,Y=this._slides.indexOf(m);if(this._currentActiveSlide===Y){var Ce=void 0;this._slides.length>1&&(Ce=this.isLast(Y)?this.noWrap?Y-1:0:Y),this._slides.remove(Y),setTimeout(function(){x._select(Ce)},0)}else{this._slides.remove(Y);var tt=this.getCurrentSlideIndex();setTimeout(function(){x._currentActiveSlide=tt,x.activeSlideChange.emit(x._currentActiveSlide)},0)}}},{key:"nextSlideFromInterval",value:function(){var m=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.move(ma.NEXT,m)}},{key:"nextSlide",value:function(){var m=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.isPlaying&&this.restartTimer(),this.move(ma.NEXT,m)}},{key:"previousSlide",value:function(){var m=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.isPlaying&&this.restartTimer(),this.move(ma.PREV,m)}},{key:"getFirstVisibleIndex",value:function(){return this.slides.findIndex(this.getActive)}},{key:"getLastVisibleIndex",value:function(){return function(b,I){for(var m=b.length;m--;)if(I(b[m],m,b))return m;return-1}(this.slides,this.getActive)}},{key:"move",value:function(m){var x=arguments.length>1&&void 0!==arguments[1]&&arguments[1],Y=this.getFirstVisibleIndex(),Ce=this.getLastVisibleIndex();this.noWrap&&(m===ma.NEXT&&this.isLast(Ce)||m===ma.PREV&&0===Y)||(this.multilist?this.moveMultilist(m):this.activeSlide=this.findNextSlideIndex(m,x))}},{key:"keydownPress",value:function(m){if(13===m.keyCode||"Enter"===m.key||32===m.keyCode||"Space"===m.key)return this.nextSlide(),void m.preventDefault();37!==m.keyCode&&"LeftArrow"!==m.key?39!==m.keyCode&&"RightArrow"!==m.key||this.nextSlide():this.previousSlide()}},{key:"onMouseLeave",value:function(){this.pauseOnFocus||this.play()}},{key:"onMouseUp",value:function(){this.pauseOnFocus||this.play()}},{key:"pauseFocusIn",value:function(){this.pauseOnFocus&&(this.isPlaying=!1,this.resetTimer())}},{key:"pauseFocusOut",value:function(){this.play()}},{key:"selectSlide",value:function(m){this.isPlaying&&this.restartTimer(),this.multilist?this.selectSlideRange(this.indicatorsByChunk?m*this.itemsPerSlide:m):this.activeSlide=this.indicatorsByChunk?m*this.itemsPerSlide:m}},{key:"play",value:function(){this.isPlaying||(this.isPlaying=!0,this.restartTimer())}},{key:"pause",value:function(){this.noPause||(this.isPlaying=!1,this.resetTimer())}},{key:"getCurrentSlideIndex",value:function(){return this._slides.findIndex(this.getActive)}},{key:"isLast",value:function(m){return m+1>=this._slides.length}},{key:"isFirst",value:function(m){return 0===m}},{key:"indicatorsSlides",value:function(){var m=this;return this.slides.filter(function(x,Y){return!m.indicatorsByChunk||Y%m.itemsPerSlide==0})}},{key:"selectInitialSlides",value:function(){var m=this.startFromIndex<=this._slides.length?this.startFromIndex:0;if(this.hideSlides(),this.singleSlideOffset){if(this._slidesWithIndexes=this.mapSlidesAndIndexes(),this._slides.length-m0?this._currentActiveSlide-1:!x&&this.noWrap?this._currentActiveSlide:this._slides.length-1;break;default:throw new Error("Unknown direction")}return Y}}},{key:"mapSlidesAndIndexes",value:function(){return this.slides.slice().map(function(m,x){return{index:x,item:m}})}},{key:"selectSlideRange",value:function(m){if(!this.isIndexInRange(m)){if(this.hideSlides(),this.singleSlideOffset){var x=this.isIndexOnTheEdges(m)?m:m-this.itemsPerSlide+1,Y=this.isIndexOnTheEdges(m)?m+this.itemsPerSlide:m+1;this._slidesWithIndexes=this.mapSlidesAndIndexes().slice(x,Y),this.makeSlidesConsistent(this._slidesWithIndexes),this._slidesWithIndexes.forEach(function(Ce){return Ce.item.active=!0})}else this.selectRangeByNestedIndex(m);this.slideRangeChange.emit(this.getVisibleIndexes())}}},{key:"selectRangeByNestedIndex",value:function(m){var x=this._chunkedSlides.map(function(Y,Ce){return{index:Ce,list:Y}}).find(function(Y){return void 0!==Y.list.find(function(Ce){return Ce.index===m})});this._currentVisibleSlidesIndex=x.index,this._chunkedSlides[x.index].forEach(function(Y){Y.item.active=!0})}},{key:"isIndexOnTheEdges",value:function(m){return m+1-this.itemsPerSlide<=0||m+this.itemsPerSlide<=this._slides.length}},{key:"isIndexInRange",value:function(m){return this.singleSlideOffset?this._slidesWithIndexes.map(function(Y){return Y.index}).indexOf(m)>=0:m<=this.getLastVisibleIndex()&&m>=this.getFirstVisibleIndex()}},{key:"hideSlides",value:function(){this.slides.forEach(function(m){return m.active=!1})}},{key:"isVisibleSlideListLast",value:function(){return this._currentVisibleSlidesIndex===this._chunkedSlides.length-1}},{key:"isVisibleSlideListFirst",value:function(){return 0===this._currentVisibleSlidesIndex}},{key:"moveSliderByOneItem",value:function(m){var x,Y,Ce,tt;if(this.noWrap){x=this.getFirstVisibleIndex(),Y=this.getLastVisibleIndex(),Ce=m===ma.NEXT?x:Y,tt=m!==ma.NEXT?x-1:this.isLast(Y)?0:Y+1,this._slides.get(Ce).active=!1,this._slides.get(tt).active=!0;var zt=this.mapSlidesAndIndexes().filter(function(Ut){return Ut.item.active});this.makeSlidesConsistent(zt),this.slideRangeChange.emit(this.getVisibleIndexes())}else{var Ht;x=this._slidesWithIndexes[0].index,Y=this._slidesWithIndexes[this._slidesWithIndexes.length-1].index,m===ma.NEXT?(this._slidesWithIndexes.shift(),Ht=this.isLast(Y)?0:Y+1,this._slidesWithIndexes.push({index:Ht,item:this._slides.get(Ht)})):(this._slidesWithIndexes.pop(),Ht=this.isFirst(x)?this._slides.length-1:x-1,this._slidesWithIndexes=[{index:Ht,item:this._slides.get(Ht)}].concat((0,zn.Z)(this._slidesWithIndexes))),this.hideSlides(),this._slidesWithIndexes.forEach(function(Ut){return Ut.item.active=!0}),this.makeSlidesConsistent(this._slidesWithIndexes),this.slideRangeChange.emit(this._slidesWithIndexes.map(function(Ut){return Ut.index}))}}},{key:"moveMultilist",value:function(m){this.singleSlideOffset?this.moveSliderByOneItem(m):(this.hideSlides(),this.noWrap?this._currentVisibleSlidesIndex=m===ma.NEXT?this._currentVisibleSlidesIndex+1:this._currentVisibleSlidesIndex-1:m===ma.NEXT?this._currentVisibleSlidesIndex=this.isVisibleSlideListLast()?0:this._currentVisibleSlidesIndex+1:this._currentVisibleSlidesIndex=this.isVisibleSlideListFirst()?this._chunkedSlides.length-1:this._currentVisibleSlidesIndex-1,this._chunkedSlides[this._currentVisibleSlidesIndex].forEach(function(x){return x.item.active=!0}),this.slideRangeChange.emit(this.getVisibleIndexes()))}},{key:"getVisibleIndexes",value:function(){return this.singleSlideOffset?this._slidesWithIndexes.map(function(m){return m.index}):this._chunkedSlides[this._currentVisibleSlidesIndex].map(function(m){return m.index})}},{key:"_select",value:function(m){if(isNaN(m))this.pause();else{if(!this.multilist){var x=this._slides.get(this._currentActiveSlide);x&&(x.active=!1)}var Y=this._slides.get(m);Y&&(this._currentActiveSlide=m,Y.active=!0,this.activeSlide=m,this.activeSlideChange.emit(m))}}},{key:"restartTimer",value:function(){var m=this;this.resetTimer();var x=+this.interval;!isNaN(x)&&x>0&&(this.currentInterval=this.ngZone.runOutsideAngular(function(){return setInterval(function(){var Y=+m.interval;m.ngZone.run(function(){m.isPlaying&&!isNaN(m.interval)&&Y>0&&m.slides.length?m.nextSlideFromInterval():m.pause()})},x)}))}},{key:"multilist",get:function(){return this.itemsPerSlide>1}},{key:"resetTimer",value:function(){this.currentInterval&&(clearInterval(this.currentInterval),this.currentInterval=void 0)}}]),b}();is.\u0275fac=function(I){return new(I||is)(t.Y36(rs),t.Y36(t.R0b))},is.\u0275cmp=t.Xpm({type:is,selectors:[["carousel"]],inputs:{indicatorsByChunk:"indicatorsByChunk",itemsPerSlide:"itemsPerSlide",singleSlideOffset:"singleSlideOffset",isAnimated:"isAnimated",startFromIndex:"startFromIndex",activeSlide:"activeSlide",interval:"interval",noWrap:"noWrap",noPause:"noPause",showIndicators:"showIndicators",pauseOnFocus:"pauseOnFocus"},outputs:{activeSlideChange:"activeSlideChange",slideRangeChange:"slideRangeChange"},ngContentSelectors:Zl,decls:6,vars:6,consts:[["tabindex","0",1,"carousel","slide",3,"mouseenter","mouseleave","mouseup","keydown","focusin","focusout"],["class","carousel-indicators",4,"ngIf"],[1,"carousel-inner",3,"ngStyle"],["class","left carousel-control carousel-control-prev","tabindex","0","role","button",3,"disabled","click",4,"ngIf"],["class","right carousel-control carousel-control-next","tabindex","0","role","button",3,"disabled","click",4,"ngIf"],[1,"carousel-indicators"],[3,"active","click",4,"ngFor","ngForOf"],[3,"click"],["tabindex","0","role","button",1,"left","carousel-control","carousel-control-prev",3,"click"],["aria-hidden","true",1,"icon-prev","carousel-control-prev-icon"],["class","sr-only",4,"ngIf"],[1,"sr-only"],["tabindex","0","role","button",1,"right","carousel-control","carousel-control-next",3,"click"],["aria-hidden","true",1,"icon-next","carousel-control-next-icon"]],template:function(I,m){1&I&&(t.F$t(),t.TgZ(0,"div",0),t.NdJ("mouseenter",function(){return m.pause()})("mouseleave",function(){return m.onMouseLeave()})("mouseup",function(){return m.onMouseUp()})("keydown",function(Y){return m.keydownPress(Y)})("focusin",function(){return m.pauseFocusIn()})("focusout",function(){return m.pauseFocusOut()}),t.YNc(1,Vi,2,1,"ol",1),t.TgZ(2,"div",2),t.Hsn(3),t.qZA(),t.YNc(4,oi,3,3,"a",3),t.YNc(5,Bl,4,2,"a",4),t.qZA()),2&I&&(t.xp6(1),t.Q6J("ngIf",m.showIndicators&&m.slides.length>1),t.xp6(1),t.Q6J("ngStyle",t.VKq(4,ql,m.multilist?"flex":"block")),t.xp6(2),t.Q6J("ngIf",m.slides.length>1),t.xp6(1),t.Q6J("ngIf",m.slides.length>1))},directives:[ct.O5,ct.PC,ct.sg],encapsulation:2}),is.ctorParameters=function(){return[{type:rs},{type:t.R0b}]},is.propDecorators={noWrap:[{type:t.IIB}],noPause:[{type:t.IIB}],showIndicators:[{type:t.IIB}],pauseOnFocus:[{type:t.IIB}],indicatorsByChunk:[{type:t.IIB}],itemsPerSlide:[{type:t.IIB}],singleSlideOffset:[{type:t.IIB}],isAnimated:[{type:t.IIB}],activeSlideChange:[{type:t.r_U}],slideRangeChange:[{type:t.r_U}],activeSlide:[{type:t.IIB}],startFromIndex:[{type:t.IIB}],interval:[{type:t.IIB}]};var Lo=function(){function b(I){(0,L.Z)(this,b),this.itemWidth="100%",this.order=0,this.addClass=!0,this.carousel=I}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){this.carousel.addSlide(this),this.itemWidth="".concat(100/this.carousel.itemsPerSlide,"%")}},{key:"ngOnDestroy",value:function(){this.carousel.removeSlide(this)}}]),b}();Lo.\u0275fac=function(I){return new(I||Lo)(t.Y36(is))},Lo.\u0275cmp=t.Xpm({type:Lo,selectors:[["slide"]],hostVars:13,hostBindings:function(I,m){2&I&&(t.uIk("aria-hidden",!m.active),t.Udp("width",m.itemWidth)("order",m.order),t.ekj("item",m.addClass)("carousel-item",m.addClass)("active",m.active)("carousel-animation",m.isAnimated))},inputs:{active:"active"},ngContentSelectors:Zl,decls:2,vars:2,consts:[[1,"item"]],template:function(I,m){1&I&&(t.F$t(),t.TgZ(0,"div",0),t.Hsn(1),t.qZA()),2&I&&t.ekj("active",m.active)},styles:[".carousel-animation[_nghost-%COMP%] {\n transition: opacity 0.6s ease, visibility 0.6s ease;\n float: left;\n }\n .carousel-animation.active[_nghost-%COMP%] {\n opacity: 1;\n visibility: visible;\n }\n .carousel-animation[_nghost-%COMP%]:not(.active) {\n display: block;\n position: absolute;\n opacity: 0;\n visibility: hidden;\n }"]}),Lo.ctorParameters=function(){return[{type:is}]},Lo.propDecorators={active:[{type:t.pfw,args:["class.active"]},{type:t.IIB}],itemWidth:[{type:t.pfw,args:["style.width"]}],order:[{type:t.pfw,args:["style.order"]}],isAnimated:[{type:t.pfw,args:["class.carousel-animation"]}],addClass:[{type:t.pfw,args:["class.item"]},{type:t.pfw,args:["class.carousel-item"]}]};var S1=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,null,[{key:"forRoot",value:function(){return{ngModule:b,providers:[]}}}]),b}();S1.\u0275fac=function(I){return new(I||S1)},S1.\u0275mod=t.oAB({type:S1}),S1.\u0275inj=t.cJS({imports:[[ct.ez]]});var Ar=D(2720),al=D(2516),zl=D(9441),ui=D(1507),H2=D(4338),y5=D(8270),G2=D(7272);function Kc(b){return function(I){return I.lift(new W2(b))}}var W2=function(){function b(I){(0,L.Z)(this,b),this.notifier=I}return(0,C.Z)(b,[{key:"call",value:function(m,x){var Y=new Lu(m),Ce=(0,G2.ft)(this.notifier,new G2.IY(Y));return Ce&&!Y.seenValue?(Y.add(Ce),x.subscribe(Y)):Y}}]),b}(),Lu=function(b){(0,H2.Z)(m,b);var I=(0,y5.Z)(m);function m(x){var Y;return(0,L.Z)(this,m),(Y=I.call(this,x)).seenValue=!1,Y}return(0,C.Z)(m,[{key:"notifyNext",value:function(){this.seenValue=!0,this.complete()}},{key:"notifyComplete",value:function(){}}]),m}(G2.Ds),ol=D(8373);function p0(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",6),t.TgZ(1,"div",7),t.TgZ(2,"quml-mcq-question",8),t.NdJ("showPopup",function(){return t.CHM(m),t.oxw().showPopup()}),t.qZA(),t.qZA(),t.TgZ(3,"div",9),t.TgZ(4,"quml-mcq-option",10),t.NdJ("optionSelected",function(Ce){return t.CHM(m),t.oxw().getSelectedOptionAndResult(Ce)})("showPopup",function(){return t.CHM(m),t.oxw().showPopup()}),t.qZA(),t.qZA(),t.qZA()}if(2&b){var x=t.oxw();t.xp6(2),t.Q6J("mcqQuestion",x.mcqQuestion)("layout",x.layout),t.xp6(2),t.Q6J("mcqOptions",x.options)("replayed",x.replayed)("cardinality",x.cardinality)("solutions",x.solutions)("layout",x.layout)("tryAgain",x.tryAgain)}}function Js(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",11),t.TgZ(1,"div",7),t._UZ(2,"quml-mcq-question",12),t.qZA(),t.TgZ(3,"div",9),t.TgZ(4,"quml-mcq-option",13),t.NdJ("optionSelected",function(Ce){return t.CHM(m),t.oxw().getSelectedOptionAndResult(Ce)}),t.qZA(),t.qZA(),t.qZA()}if(2&b){var x=t.oxw();t.xp6(2),t.Q6J("mcqQuestion",x.mcqQuestion)("layout",x.layout),t.xp6(2),t.Q6J("mcqOptions",x.options)("replayed",x.replayed)("cardinality",x.cardinality)("layout",x.layout)("solutions",x.solutions)("tryAgain",x.tryAgain)}}function Jc(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",14),t.TgZ(1,"div",15),t.TgZ(2,"div",7),t._UZ(3,"quml-mcq-question",12),t.qZA(),t.TgZ(4,"div",9),t.TgZ(5,"quml-mcq-option",16),t.NdJ("optionSelected",function(Ce){return t.CHM(m),t.oxw().getSelectedOptionAndResult(Ce)}),t.qZA(),t.qZA(),t.qZA(),t.qZA()}if(2&b){var x=t.oxw();t.xp6(3),t.Q6J("mcqQuestion",x.mcqQuestion)("layout",x.layout),t.xp6(2),t.Q6J("mcqOptions",x.options)("replayed",x.replayed)("cardinality",x.cardinality)("solutions",x.solutions)("layout",x.layout)("tryAgain",x.tryAgain)}}function ra(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",17),t.TgZ(1,"div",18),t.TgZ(2,"div",7),t._UZ(3,"quml-mcq-question",12),t.qZA(),t.TgZ(4,"div",9),t.TgZ(5,"quml-mcq-option",16),t.NdJ("optionSelected",function(Ce){return t.CHM(m),t.oxw().getSelectedOptionAndResult(Ce)}),t.qZA(),t.qZA(),t.qZA(),t.qZA()}if(2&b){var x=t.oxw();t.xp6(3),t.Q6J("mcqQuestion",x.mcqQuestion)("layout",x.layout),t.xp6(2),t.Q6J("mcqOptions",x.options)("replayed",x.replayed)("cardinality",x.cardinality)("solutions",x.solutions)("layout",x.layout)("tryAgain",x.tryAgain)}}function Q2(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",19),t.TgZ(1,"div",20),t._UZ(2,"quml-mcq-question",12),t.qZA(),t.TgZ(3,"div",21),t.TgZ(4,"quml-mcq-option",16),t.NdJ("optionSelected",function(Ce){return t.CHM(m),t.oxw().getSelectedOptionAndResult(Ce)}),t.qZA(),t.qZA(),t.qZA()}if(2&b){var x=t.oxw();t.xp6(2),t.Q6J("mcqQuestion",x.mcqQuestion)("layout",x.layout),t.xp6(2),t.Q6J("mcqOptions",x.options)("replayed",x.replayed)("cardinality",x.cardinality)("solutions",x.solutions)("layout",x.layout)("tryAgain",x.tryAgain)}}function Su(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"quml-quml-popup",22),t.NdJ("popUpClose",function(){return t.CHM(m),t.oxw().closePopUp()}),t.qZA()}}function C5(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",9),t.NdJ("click",function(){return t.CHM(m),t.oxw().showAnswerToUser()})("keydown",function(Y){return t.CHM(m),t.oxw().onEnter(Y)}),t._uU(1,"Show Answer"),t.qZA()}}function Xc(b,I){if(1&b&&(t._UZ(0,"div",15),t.ALo(1,"safeHtml")),2&b){var m=t.oxw().$implicit;t.Q6J("innerHTML",t.lcZ(1,1,m.value),t.oJD)}}function jo(b,I){if(1&b&&(t.TgZ(0,"div"),t.TgZ(1,"video",16),t._UZ(2,"source",17),t._UZ(3,"source",18),t.qZA(),t.qZA()),2&b){var m=t.oxw().$implicit;t.xp6(1),t.Q6J("poster",m.thumbnail,t.LSH),t.xp6(1),t.Q6J("src",m.src,t.LSH),t.xp6(1),t.Q6J("src",m.src,t.LSH)}}function Ds(b,I){if(1&b&&(t.TgZ(0,"div"),t._UZ(1,"img",19),t.qZA()),2&b){var m=t.oxw().$implicit;t.xp6(1),t.Q6J("src",m.src,t.LSH)}}function r2(b,I){if(1&b&&(t.TgZ(0,"div",11),t.ynx(1,12),t.YNc(2,Xc,2,3,"div",13),t.YNc(3,jo,4,3,"div",14),t.YNc(4,Ds,2,1,"div",14),t.BQk(),t.qZA()),2&b){var m=I.$implicit;t.xp6(1),t.Q6J("ngSwitch",m.type),t.xp6(1),t.Q6J("ngSwitchCase","html"),t.xp6(1),t.Q6J("ngSwitchCase","video"),t.xp6(1),t.Q6J("ngSwitchCase","image")}}function P1(b,I){if(1&b&&(t.ynx(0),t.TgZ(1,"div",2),t._uU(2,"Solution"),t.qZA(),t.YNc(3,r2,5,4,"div",10),t.BQk()),2&b){var m=t.oxw();t.uIk("aria-hidden",!m.showAnswer||null),t.xp6(3),t.Q6J("ngForOf",m.solutions)}}var as=".answer[_ngcontent-%COMP%]{border:1px solid;padding:.2em;margin:.5em}.icon[_ngcontent-%COMP%]{width:15%;max-width:70px;min-width:50px;display:inline-block;vertical-align:top}.mcqText[_ngcontent-%COMP%]{display:inline-block;word-break:break-word}.mcq-option[_ngcontent-%COMP%]{background:var(--white);border-radius:5px;margin:8px 16px;padding:8px}.options[_ngcontent-%COMP%]{word-break:break-all;padding:15px 5px}.even[_ngcontent-%COMP%], .odd[_ngcontent-%COMP%]{width:47%;display:inline-block;vertical-align:middle}.column-block[_ngcontent-%COMP%]{display:inline-block;width:48%;vertical-align:middle}.selected[_ngcontent-%COMP%]{background:var(--primary-color);color:var(--white);box-shadow:1px 2px 1px 3px var(--black)}.mathText[_ngcontent-%COMP%]{display:inline!important}.padding-top[_ngcontent-%COMP%]{padding-top:16px}@media only screen and (min-width:100px) and (max-width:481px){.mcqText[_ngcontent-%COMP%]{width:75%}.even[_ngcontent-%COMP%], .odd[_ngcontent-%COMP%]{width:38%;display:inline-block;vertical-align:middle}.column-block[_ngcontent-%COMP%]{display:inline-block;width:42%;vertical-align:middle}}@media only screen and (min-width:481px) and (max-width:800px){.mcqText[_ngcontent-%COMP%]{width:85%}.even[_ngcontent-%COMP%], .odd[_ngcontent-%COMP%]{width:43%;display:inline-block;vertical-align:middle}.column-block[_ngcontent-%COMP%]{display:inline-block;width:45%;vertical-align:middle}}@media only screen and (min-width:801px) and (max-width:1200px){.even[_ngcontent-%COMP%], .odd[_ngcontent-%COMP%]{width:45%}.column-block[_ngcontent-%COMP%]{display:inline-block;width:45%;vertical-align:middle}}";function i2(b,I){if(1&b&&(t.TgZ(0,"div",10),t._uU(1),t.qZA()),2&b){var m=t.oxw();t.xp6(1),t.AsE(" Attempt no ",m.attempts.current,"/",m.attempts.max,"")}}function $c(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"img",11),t.NdJ("click",function(){return t.CHM(m),t.oxw().openProgressIndicatorPopup()}),t.qZA()}}function Y2(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"img",12),t.NdJ("click",function(){return t.CHM(m),t.oxw().toggleScreenRotate.emit()}),t.qZA()}}function K2(b,I){if(1&b&&(t.TgZ(0,"div",14),t._UZ(1,"quml-durationtimer"),t.TgZ(2,"span"),t._uU(3),t.qZA(),t.qZA()),2&b){var m=t.oxw(2);t.hYB("title","",m.minutes,":",m.seconds,""),t.xp6(3),t.AsE("",m.minutes,":",m.seconds,"")}}var b5=function(I){return{blink:I}};function J2(b,I){if(1&b&&(t.TgZ(0,"div",14),t._UZ(1,"quml-durationtimer"),t.TgZ(2,"span",15),t._uU(3),t.qZA(),t.qZA()),2&b){var m=t.oxw(2);t.hYB("title","",m.minutes,":",m.seconds,""),t.xp6(2),t.Q6J("ngClass",t.VKq(4,b5,m.showWarning)),t.xp6(1),t.Oqu(m.time)}}function po(b,I){if(1&b&&(t.ynx(0),t.YNc(1,K2,4,4,"div",13),t.YNc(2,J2,4,6,"div",13),t.BQk()),2&b){var m=t.oxw();t.xp6(1),t.Q6J("ngIf",!m.initializeTimer),t.xp6(1),t.Q6J("ngIf",m.initializeTimer&&m.time)}}function sl(b,I){if(1&b&&(t.ynx(0),t.TgZ(1,"div",14),t._UZ(2,"quml-durationtimer"),t.TgZ(3,"span"),t._uU(4),t.qZA(),t.qZA(),t.BQk()),2&b){var m=t.oxw();t.xp6(1),t.hYB("title","",m.minutes,":",m.seconds,""),t.xp6(3),t.Oqu(m.time)}}function ll(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",20),t.NdJ("click",function(){return t.CHM(m),t.oxw(2).nextSlide()})("keydown.enter",function(Ce){t.CHM(m);var tt=t.oxw(2);return Ce.stopPropagation(),tt.nextSlide()}),t.qZA()}if(2&b){var x=t.oxw(2);t.Q6J("ngClass",x.disableNext?"navigation-icon-disabled":"")}}function h0(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",21),t.NdJ("click",function(){return t.CHM(m),t.oxw(2).nextSlide()})("keydown.enter",function(Ce){t.CHM(m);var tt=t.oxw(2);return Ce.stopPropagation(),tt.nextSlide()}),t.qZA()}if(2&b){var x=t.oxw(2);t.Q6J("ngClass",x.disableNext?"navigation-icon-disabled":"")}}function X2(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",16),t.TgZ(1,"div",17),t.NdJ("click",function(){return t.CHM(m),t.oxw().prevSlide()}),t.qZA(),t.YNc(2,ll,1,1,"div",18),t.YNc(3,h0,1,1,"div",19),t.qZA()}if(2&b){var x=t.oxw();t.xp6(1),t.Q6J("ngClass",x.startPageInstruction&&0===x.currentSlideIndex||!x.showStartPage&&1===x.currentSlideIndex?"navigation-icon-disabled":""),t.uIk("tabindex",x.startPageInstruction&&0===x.currentSlideIndex||!x.showStartPage&&1===x.currentSlideIndex?-1:0),t.xp6(1),t.Q6J("ngIf",!x.active),t.xp6(1),t.Q6J("ngIf",x.active)}}function g0(b,I){if(1&b&&(t.TgZ(0,"div",29),t._uU(1),t.qZA()),2&b){var m=t.oxw(2);t.xp6(1),t.AsE("",m.currentSlideIndex,"/",m.totalNoOfQuestions,"")}}function e3(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",30),t.TgZ(1,"quml-ans",31),t.NdJ("click",function(){return t.CHM(m),t.oxw(2).showSolution.emit()})("keydown",function(Y){return t.CHM(m),t.oxw(2).onAnswerKeyDown(Y)}),t.qZA(),t.qZA()}}function m0(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",32),t.NdJ("click",function(){return t.CHM(m),t.oxw(2).nextSlide()})("keydown.enter",function(){return t.CHM(m),t.oxw(2).nextSlide()}),t.qZA()}}function Ul(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",33),t.NdJ("click",function(){return t.CHM(m),t.oxw(2).nextSlide()})("keydown.enter",function(){return t.CHM(m),t.oxw(2).nextSlide()}),t.qZA()}}function Vo(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",22),t.YNc(1,g0,2,2,"div",23),t.YNc(2,e3,2,0,"div",24),t.TgZ(3,"div",25),t.TgZ(4,"div",26),t.NdJ("click",function(){return t.CHM(m),t.oxw().prevSlide()})("keydown.enter",function(){return t.CHM(m),t.oxw().prevSlide()}),t.qZA(),t.YNc(5,m0,1,0,"div",27),t.YNc(6,Ul,1,0,"div",28),t.qZA(),t.qZA()}if(2&b){var x=t.oxw();t.xp6(1),t.Q6J("ngIf",x.currentSlideIndex),t.xp6(1),t.Q6J("ngIf",x.currentSolutions&&x.showFeedBack),t.xp6(3),t.Q6J("ngIf",!x.active),t.xp6(1),t.Q6J("ngIf",x.active)}}function Ls(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"quml-progress-indicators",34),t.NdJ("close",function(){return t.CHM(m),t.oxw().onProgressPopupClose()}),t.qZA()}}function Na(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",5),t.NdJ("keydown",function(Ce){var tt=t.CHM(m),zt=tt.$implicit,Ht=tt.index;return t.oxw(2).onEnter(Ce,zt,Ht)})("click",function(Ce){var tt=t.CHM(m),zt=tt.$implicit,Ht=tt.index;return t.oxw(2).onOptionSelect(Ce,zt,Ht)}),t.TgZ(1,"div",6),t._UZ(2,"div",7),t.ALo(3,"safeHtml"),t.TgZ(4,"label",8),t._UZ(5,"input",9),t._UZ(6,"span",10),t.qZA(),t.qZA(),t.qZA()}if(2&b){var x=I.$implicit;t.uIk("aria-checked",x.selected),t.xp6(1),t.Q6J("ngClass",x.selected?"quml-option quml-option--selected":"quml-option"),t.xp6(1),t.Q6J("innerHTML",t.lcZ(3,4,x.label),t.oJD),t.xp6(3),t.Q6J("checked",x.selected)}}function a2(b,I){if(1&b&&(t.TgZ(0,"div",3),t.YNc(1,Na,7,6,"div",4),t.qZA()),2&b){var m=t.oxw();t.xp6(1),t.Q6J("ngForOf",m.mcqOptions)}}function Di(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div"),t.TgZ(1,"quml-mcq-image-option",14),t.NdJ("imgOptionSelected",function(Ce){return t.CHM(m),t.oxw(2).onImageOptionSelected(Ce)}),t.qZA(),t.qZA()}if(2&b){var x=I.$implicit;t.xp6(1),t.Q6J("mcqOption",x)}}function ho(b,I){if(1&b&&(t.TgZ(0,"div"),t.TgZ(1,"div",11),t.TgZ(2,"div",12),t.YNc(3,Di,2,1,"div",13),t.qZA(),t.qZA(),t.qZA()),2&b){var m=t.oxw();t.xp6(3),t.Q6J("ngForOf",m.mcqOptions)}}function Pu(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div"),t.TgZ(1,"quml-mcq-image-option",14),t.NdJ("imgOptionSelected",function(Ce){return t.CHM(m),t.oxw(2).onImageOptionSelected(Ce)}),t.qZA(),t.qZA()}if(2&b){var x=I.$implicit;t.xp6(1),t.Q6J("mcqOption",x)}}function Xs(b,I){if(1&b&&(t.TgZ(0,"div"),t.TgZ(1,"div",15),t.TgZ(2,"div",12),t.YNc(3,Pu,2,1,"div",13),t.qZA(),t.qZA(),t.qZA()),2&b){var m=t.oxw();t.xp6(3),t.Q6J("ngForOf",m.mcqOptions)}}function v0(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div"),t.TgZ(1,"quml-mcq-image-option",14),t.NdJ("imgOptionSelected",function(Ce){return t.CHM(m),t.oxw(2).onImageOptionSelected(Ce)}),t.qZA(),t.qZA()}if(2&b){var x=I.$implicit;t.xp6(1),t.Q6J("mcqOption",x)}}function _0(b,I){if(1&b&&(t.TgZ(0,"div",16),t.TgZ(1,"div",11),t.TgZ(2,"div",12),t.YNc(3,v0,2,1,"div",13),t.qZA(),t.qZA(),t.qZA()),2&b){var m=t.oxw();t.xp6(3),t.Q6J("ngForOf",m.mcqOptions)}}function y0(b,I){if(1&b&&t._UZ(0,"img",4),2&b){var m=t.oxw();t.s9C("src",m.image,t.LSH)}}function $2(b,I){if(1&b&&(t._UZ(0,"div",5),t.ALo(1,"safeHtml")),2&b){var m=t.oxw();t.Q6J("innerHtml",t.lcZ(1,1,m.htmlTag),t.oJD)}}function C0(b,I){if(1&b&&(t._UZ(0,"div",5),t.ALo(1,"safeHtml")),2&b){var m=t.oxw();t.Q6J("innerHTML",t.lcZ(1,1,null==m.mcqOption?null:m.mcqOption.label),t.oJD)}}function o2(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",15),t.NdJ("click",function(){var zt=t.CHM(m).index;return t.oxw(2).goToQuestion(zt+1)}),t._uU(1),t.qZA()}if(2&b){var x=I.$implicit,Y=t.oxw(2);t.Q2q("aria-label","question number ",x.index,""),t.Q6J("ngClass",Y.showFeedBack||"skipped"===x.class||"unattempted"===x.class?x.class:"attempted"),t.xp6(1),t.hij(" ",x.index," ")}}function ku(b,I){if(1&b&&(t.TgZ(0,"div",13),t.YNc(1,o2,2,3,"div",14),t.qZA()),2&b){var m=t.oxw();t.xp6(1),t.Q6J("ngForOf",m.scores)}}function s2(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",15),t.NdJ("click",function(){var tt=t.CHM(m).index,zt=t.oxw().$implicit;return t.oxw(2).goToQuestion(tt+1,zt.identifier)}),t._uU(1),t.qZA()}if(2&b){var x=I.$implicit;t.Q2q("aria-label","question number ",x.index,""),t.Q6J("ngClass",x.showFeedback||"skipped"===x.class||"unattempted"===x.class?x.class:"attempted"),t.xp6(1),t.hij(" ",x.index," ")}}function t3(b,I){if(1&b&&(t.TgZ(0,"div",17),t.TgZ(1,"div",18),t._uU(2),t.qZA(),t.TgZ(3,"div",19),t.YNc(4,s2,2,3,"div",14),t.qZA(),t.qZA()),2&b){var m=I.$implicit;t.xp6(2),t.hij("Section ",null==m?null:m.index,""),t.xp6(2),t.Q6J("ngForOf",null==m?null:m.children)}}function Ki(b,I){if(1&b&&(t.TgZ(0,"div"),t.YNc(1,t3,5,2,"div",16),t.qZA()),2&b){var m=t.oxw();t.xp6(1),t.Q6J("ngForOf",m.scores)}}function n3(b,I){if(1&b&&(t.TgZ(0,"div",3),t.TgZ(1,"div",4),t._uU(2,"Minutes"),t.qZA(),t.TgZ(3,"div",5),t._UZ(4,"quml-timer",6),t.TgZ(5,"span",7),t._uU(6),t.qZA(),t.qZA(),t.qZA()),2&b){var m=t.oxw();t.xp6(6),t.AsE("",m.minutes,":",m.seconds,"")}}function M5(b,I){if(1&b&&(t.TgZ(0,"div",3),t.TgZ(1,"div",4),t._uU(2,"Points"),t.qZA(),t.TgZ(3,"div",5),t.TgZ(4,"quml-startpagestaricon",6),t._uU(5,"i"),t.qZA(),t.TgZ(6,"span",7),t._uU(7),t.qZA(),t.qZA(),t.qZA()),2&b){var m=t.oxw();t.xp6(7),t.Oqu(m.points)}}function ul(b,I){if(1&b&&(t.ynx(0),t.TgZ(1,"div",10),t.TgZ(2,"div",11),t._uU(3,"Instructions"),t.qZA(),t._UZ(4,"div",12),t.ALo(5,"safeHtml"),t.qZA(),t.BQk()),2&b){var m=t.oxw();t.xp6(4),t.Q6J("innerHTML",t.lcZ(5,1,m.instructions),t.oJD)}}function os(b,I){1&b&&(t.TgZ(0,"div",9),t.TgZ(1,"div",10),t._UZ(2,"img",11),t.qZA(),t._UZ(3,"div",12),t._UZ(4,"img",13),t.qZA())}function b0(b,I){1&b&&(t.TgZ(0,"div",14),t.TgZ(1,"div",10),t._UZ(2,"img",15),t.qZA(),t._UZ(3,"div",12),t._UZ(4,"img",16),t.qZA())}function l2(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"span",20),t.NdJ("click",function(){return t.CHM(m),t.oxw(2).close("tryAgain")})("keyup.enter",function(){return t.CHM(m),t.oxw(2).close("tryAgain")}),t._uU(1,"Try again"),t.qZA()}}function r3(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"span",21),t.NdJ("click",function(){return t.CHM(m),t.oxw(2).viewSolution()})("keyup.enter",function(){return t.CHM(m),t.oxw(2).viewSolution()}),t._uU(1,"View Solution"),t.qZA()}}function M0(b,I){if(1&b&&(t.TgZ(0,"div",17),t.YNc(1,l2,2,0,"span",18),t.YNc(2,r3,2,0,"span",19),t.qZA()),2&b){var m=t.oxw();t.xp6(1),t.Q6J("ngIf","wrong"===m.alertType),t.xp6(1),t.Q6J("ngIf","correct"===m.alertType&&m.showSolutionButton)}}function k1(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",22),t.TgZ(1,"img",23),t.NdJ("click",function(){return t.CHM(m),t.oxw().viewHint()})("keyup.enter",function(){return t.CHM(m),t.oxw().viewHint()}),t.qZA(),t.qZA()}}var ss=["solutionVideoPlayer"];function $s(b,I){if(1&b&&(t.TgZ(0,"div",10),t._UZ(1,"div",4),t.ALo(2,"safeHtml"),t.qZA()),2&b){var m=I.$implicit;t.xp6(1),t.Q6J("innerHtml",t.lcZ(2,1,m.label),t.oJD)}}function e1(b,I){if(1&b&&(t._UZ(0,"div",4),t.ALo(1,"safeHtml")),2&b){var m=t.oxw().$implicit;t.Q6J("innerHtml",t.lcZ(1,1,m.value),t.oJD)}}function So(b,I){if(1&b&&(t.TgZ(0,"div",16),t.TgZ(1,"video",17,18),t._UZ(3,"source",19),t._UZ(4,"source",20),t.qZA(),t.qZA()),2&b){var m=t.oxw().$implicit;t.xp6(1),t.Q6J("poster",m.thumbnail,t.LSH),t.xp6(2),t.Q6J("src",m.src,t.LSH),t.xp6(1),t.Q6J("src",m.src,t.LSH)}}function ec(b,I){if(1&b&&(t.TgZ(0,"div"),t._UZ(1,"img",21),t.qZA()),2&b){var m=t.oxw().$implicit;t.xp6(1),t.Q6J("src",m.src,t.LSH)}}function tc(b,I){if(1&b&&(t.TgZ(0,"div"),t.ynx(1,12),t.YNc(2,e1,2,3,"div",13),t.YNc(3,So,5,3,"div",14),t.YNc(4,ec,2,1,"div",15),t.BQk(),t.qZA()),2&b){var m=I.$implicit;t.xp6(1),t.Q6J("ngSwitch",m.type),t.xp6(1),t.Q6J("ngSwitchCase","html"),t.xp6(1),t.Q6J("ngSwitchCase","video"),t.xp6(1),t.Q6J("ngSwitchCase","image")}}function jl(b,I){if(1&b&&(t.TgZ(0,"div"),t.YNc(1,tc,5,4,"div",11),t.qZA()),2&b){var m=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",m.solutions)}}function u2(b,I){if(1&b&&(t.ynx(0),t.TgZ(1,"div",3),t._uU(2,"Solution"),t.qZA(),t.YNc(3,jl,2,1,"div",7),t.BQk()),2&b){var m=t.oxw();t.xp6(3),t.Q6J("ngIf",!m.showVideoSolution)}}var w0=["myCarousel"],T0=["imageModal"],Ua=["questionSlide"];function Vl(b,I){if(1&b&&(t.TgZ(0,"div",30),t._uU(1),t.qZA()),2&b){t.oxw();var m=t.MAs(9),x=t.oxw();t.xp6(1),t.AsE(" ",m.getCurrentSlideIndex(),"/",x.noOfQuestions," ")}}function E0(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div"),t.TgZ(1,"quml-ans",31),t.NdJ("click",function(){return t.CHM(m),t.oxw(2).getSolutions()})("keydown",function(Y){return t.CHM(m),t.oxw(2).onAnswerKeyDown(Y)}),t.qZA(),t.qZA()}}function x0(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div"),t.TgZ(1,"quml-mcq",34),t.NdJ("optionSelected",function(tt){return t.CHM(m),t.oxw(3).getOptionSelected(tt)}),t.qZA(),t.qZA()}if(2&b){var x=t.oxw().$implicit,Y=t.oxw(2);t.xp6(1),t.Q6J("question",x)("replayed",null==Y.parentConfig?null:Y.parentConfig.isReplayed)("identifier",x.id)("tryAgain",Y.tryAgainClicked)}}function nc(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div"),t.TgZ(1,"quml-sa",35),t.NdJ("showAnswerClicked",function(tt){t.CHM(m);var zt=t.oxw().$implicit;return t.oxw(2).showAnswerClicked(tt,zt)}),t.qZA(),t.qZA()}if(2&b){var x=t.oxw().$implicit,Y=t.oxw(2);t.xp6(1),t.Q6J("questions",x)("replayed",null==Y.parentConfig?null:Y.parentConfig.isReplayed)("baseUrl",null==Y.parentConfig?null:Y.parentConfig.baseUrl)}}function rc(b,I){if(1&b&&(t.TgZ(0,"slide",null,32),t.TgZ(2,"div",33),t.YNc(3,x0,2,4,"div",2),t.YNc(4,nc,2,3,"div",2),t.qZA(),t.qZA()),2&b){var m=I.$implicit;t.xp6(2),t.Q6J("id",m.identifier),t.xp6(1),t.Q6J("ngIf","multiple choice question"===(null==m?null:m.primaryCategory.toLowerCase())),t.xp6(1),t.Q6J("ngIf","subjective question"===(null==m?null:m.primaryCategory.toLowerCase()))}}function w5(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"li",42),t.NdJ("click",function(zt){var Ut=t.CHM(m).$implicit;return t.oxw(5).goToSlideClicked(zt,null==Ut?null:Ut.index)})("keydown",function(zt){var Ut=t.CHM(m).$implicit;return t.oxw(5).onEnter(zt,null==Ut?null:Ut.index)}),t._uU(1),t.qZA()}if(2&b){var x=I.$implicit,Y=I.index;t.oxw(4);var Ce=t.MAs(9);t.Q2q("aria-label","question number ",null==x?null:x.index,""),t.Q6J("ngClass",Y+1===Ce.getCurrentSlideIndex()?"skipped"===x.class?"progressBar-border":"progressBar-border "+x.class:x.class),t.xp6(1),t.hij(" ",null==x?null:x.index," ")}}function I0(b,I){if(1&b&&(t.TgZ(0,"ul"),t.YNc(1,w5,2,3,"li",41),t.qZA()),2&b){var m=t.oxw(4);t.xp6(1),t.Q6J("ngForOf",m.progressBarClass)}}function Hl(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"li",42),t.NdJ("click",function(zt){var Ut=t.CHM(m).$implicit;return t.oxw(5).goToSlideClicked(zt,null==Ut?null:Ut.index)})("keydown",function(zt){var Ut=t.CHM(m).$implicit;return t.oxw(5).onEnter(zt,null==Ut?null:Ut.index)}),t._uU(1),t.qZA()}if(2&b){var x=I.$implicit,Y=I.index;t.oxw(4);var Ce=t.MAs(9);t.Q2q("aria-label","question number ",null==x?null:x.index,""),t.Q6J("ngClass",Y+1===Ce.getCurrentSlideIndex()?"skipped"===x.class?"progressBar-border":"att-color progressBar-border":"skipped"===x.class?x.class:"unattempted"===x.class?"":"att-color"),t.xp6(1),t.hij(" ",null==x?null:x.index," ")}}function Gl(b,I){if(1&b&&(t.TgZ(0,"ul",43),t.YNc(1,Hl,2,3,"li",41),t.qZA()),2&b){var m=t.oxw(4);t.xp6(1),t.Q6J("ngForOf",m.progressBarClass)}}var Wl=function(I,m){return{attempted:I,partial:m}},Ou=function(I){return{active:I}};function Ql(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"li",38),t.NdJ("click",function(){var Ht=t.CHM(m).$implicit;return t.oxw(3).jumpToSection(null==Ht?null:Ht.identifier)})("keydown",function(zt){var Ut=t.CHM(m).$implicit;return t.oxw(3).onSectionEnter(zt,null==Ut?null:Ut.identifier)}),t.TgZ(1,"label",39),t._uU(2),t.qZA(),t.YNc(3,I0,2,1,"ul",2),t.YNc(4,Gl,2,1,"ul",40),t.qZA()}if(2&b){var x=I.$implicit,Y=I.index,Ce=t.oxw(3);t.Q2q("aria-label","section ",null==x?null:x.index,""),t.Q6J("ngClass",t.WLB(7,Wl,"attempted"===x.class,"partial"===x.class)),t.xp6(1),t.MGl("for","list-item-",Y,""),t.Q6J("ngClass",t.VKq(10,Ou,(null==x?null:x.isActive)&&!Ce.showRootInstruction&&"attempted"!==x.class)),t.xp6(1),t.Oqu(null==x?null:x.index),t.xp6(1),t.Q6J("ngIf",(null==x?null:x.isActive)&&Ce.showFeedBack),t.xp6(1),t.Q6J("ngIf",(null==x?null:x.isActive)&&!Ce.showFeedBack)}}function ic(b,I){if(1&b&&(t.TgZ(0,"ul",36),t.YNc(1,Ql,5,12,"li",37),t.qZA()),2&b){var m=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",m.mainProgressBar)}}function D0(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"li",46),t.NdJ("click",function(zt){var Ut=t.CHM(m).$implicit;return t.oxw(3).goToSlideClicked(zt,null==Ut?null:Ut.index)})("keydown",function(zt){var Ut=t.CHM(m).$implicit;return t.oxw(3).onEnter(zt,null==Ut?null:Ut.index)}),t._uU(1),t.qZA()}if(2&b){var x=I.$implicit,Y=I.index;t.oxw(2);var Ce=t.MAs(9);t.Q2q("aria-label","question number ",null==x?null:x.index,""),t.Q6J("ngClass",Y+1===Ce.getCurrentSlideIndex()?"skipped"===x.class?"progressBar-border":"progressBar-border "+x.class:x.class),t.xp6(1),t.hij(" ",null==x?null:x.index," ")}}function L0(b,I){if(1&b&&(t.TgZ(0,"ul",44),t.YNc(1,D0,2,3,"li",45),t.qZA()),2&b){var m=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",m.progressBarClass)}}function cl(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"li",46),t.NdJ("click",function(zt){var Ut=t.CHM(m).$implicit;return t.oxw(3).goToSlideClicked(zt,null==Ut?null:Ut.index)})("keydown",function(zt){var Ut=t.CHM(m).$implicit;return t.oxw(3).onEnter(zt,null==Ut?null:Ut.index)}),t._uU(1),t.qZA()}if(2&b){var x=I.$implicit,Y=I.index;t.oxw(2);var Ce=t.MAs(9);t.Q2q("aria-label","question number ",null==x?null:x.index,""),t.Q6J("ngClass",Y+1===Ce.getCurrentSlideIndex()?"skipped"===x.class?"progressBar-border":"att-color progressBar-border":"skipped"===x.class?x.class:"unattempted"===x.class?"":"att-color"),t.xp6(1),t.hij(" ",null==x?null:x.index," ")}}function Au(b,I){if(1&b&&(t.TgZ(0,"ul",47),t.YNc(1,cl,2,3,"li",45),t.qZA()),2&b){var m=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",m.progressBarClass)}}function c2(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"li",48),t.NdJ("click",function(){t.CHM(m);var Y=t.oxw(2);return Y.disableNext=!0,Y.onScoreBoardClicked()})("keydown",function(Y){return t.CHM(m),t.oxw(2).onScoreBoardEnter(Y)}),t._UZ(1,"img",49),t.qZA()}}function i3(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"quml-alert",50),t.NdJ("showSolution",function(){return t.CHM(m),t.oxw(2).viewSolution()})("showHint",function(){return t.CHM(m),t.oxw(2).viewHint()})("closeAlert",function(Ce){return t.CHM(m),t.oxw(2).closeAlertBox(Ce)}),t.qZA()}if(2&b){var x=t.oxw(2);t.Q6J("alertType",x.alertType)("isHintAvailable",x.showHints)("showSolutionButton",x.showUserSolution)}}function a3(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"quml-mcq-solutions",51),t.NdJ("close",function(){return t.CHM(m),t.oxw(2).closeSolution()}),t.qZA()}if(2&b){var x=t.oxw(2);t.Q6J("question",x.currentQuestion)("options",x.currentOptions)("solutions",x.currentSolutions)}}function t1(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",11),t.TgZ(1,"div",12),t.TgZ(2,"quml-header",13),t.NdJ("durationEnds",function(){return t.CHM(m),t.oxw().durationEnds()})("nextSlideClicked",function(Ce){return t.CHM(m),t.oxw().nextSlideClicked(Ce)})("prevSlideClicked",function(Ce){return t.CHM(m),t.oxw().previousSlideClicked(Ce)})("showSolution",function(){return t.CHM(m),t.oxw().viewSolution()})("toggleScreenRotate",function(){return t.CHM(m),t.oxw().toggleScreenRotate()}),t.qZA(),t.TgZ(3,"div",14),t.TgZ(4,"div",15),t.YNc(5,Vl,2,2,"div",16),t.YNc(6,E0,2,0,"div",2),t.qZA(),t.TgZ(7,"div",17),t.TgZ(8,"carousel",18,19),t.NdJ("activeSlideChange",function(Ce){return t.CHM(m),t.oxw().activeSlideChange(Ce)}),t.TgZ(10,"slide"),t._UZ(11,"quml-startpage",20),t.qZA(),t.YNc(12,rc,5,3,"slide",21),t.qZA(),t.qZA(),t.TgZ(13,"div",22),t.TgZ(14,"ul"),t.ynx(15),t.TgZ(16,"li",23),t.NdJ("keydown",function(Ce){return t.CHM(m),t.oxw().onEnter(Ce,0)})("click",function(Ce){return t.CHM(m),t.oxw().goToSlideClicked(Ce,0)}),t._uU(17,"i "),t.qZA(),t.TgZ(18,"li"),t.YNc(19,ic,2,1,"ul",24),t.qZA(),t.TgZ(20,"li"),t.YNc(21,L0,2,1,"ul",25),t.qZA(),t.TgZ(22,"li"),t.YNc(23,Au,2,1,"ul",26),t.qZA(),t.YNc(24,c2,2,0,"li",27),t.BQk(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.YNc(25,i3,1,3,"quml-alert",28),t.YNc(26,a3,1,3,"quml-mcq-solutions",29),t.qZA()}if(2&b){var x=t.oxw();t.Q6J("hidden",x.showZoomModal),t.xp6(1),t.Q6J("hidden",x.showSolution),t.xp6(1),t.Q6J("disablePreviousNavigation",x.linearNavigation)("duration",x.timeLimit)("warningTime",x.warningTime)("showTimer",x.showTimer)("showLegend",null==x.parentConfig?null:x.parentConfig.showLegend)("currentSlideIndex",x.currentSlideIndex)("totalNoOfQuestions",x.noOfQuestions)("active",x.active)("showFeedBack",x.showFeedBack)("currentSolutions",x.currentSolutions)("initializeTimer",x.initializeTimer)("replayed",null==x.parentConfig?null:x.parentConfig.isReplayed)("disableNext",x.disableNext)("startPageInstruction",x.startPageInstruction)("attempts",x.attempts)("showStartPage",x.showStartPage)("showDeviceOrientation",null==x.sectionConfig||null==x.sectionConfig.config?null:x.sectionConfig.config.showDeviceOrientation),t.xp6(3),t.Q6J("ngIf",!x.showRootInstruction),t.xp6(1),t.Q6J("ngIf",x.currentSolutions&&x.showUserSolution),t.xp6(2),t.Q6J("interval",0)("showIndicators",!1)("noWrap",!0),t.xp6(3),t.Q6J("instructions",x.showRootInstruction?null==x.parentConfig?null:x.parentConfig.instructions:null==x.sectionConfig.metadata||null==x.sectionConfig.metadata.instructions?null:x.sectionConfig.metadata.instructions.default)("points",x.points)("time",x.showRootInstruction?x.timeLimit:null)("showTimer",x.showTimer)("totalNoOfQuestions",x.showRootInstruction?null==x.parentConfig?null:x.parentConfig.questionCount:x.noOfQuestions)("contentName",x.showRootInstruction?null==x.parentConfig?null:x.parentConfig.contentName:null!=x.parentConfig&&x.parentConfig.isSectionsAvailable?null==x.sectionConfig||null==x.sectionConfig.metadata?null:x.sectionConfig.metadata.name:null==x.parentConfig?null:x.parentConfig.contentName),t.xp6(1),t.Q6J("ngForOf",x.questions),t.xp6(4),t.Q6J("ngClass",0===x.currentSlideIndex?"att-color progressBar-border":"att-color"),t.xp6(3),t.Q6J("ngIf",null==x.parentConfig?null:x.parentConfig.isSectionsAvailable),t.xp6(2),t.Q6J("ngIf",!(null!=x.parentConfig&&x.parentConfig.isSectionsAvailable)&&x.showFeedBack),t.xp6(2),t.Q6J("ngIf",!(null!=x.parentConfig&&x.parentConfig.isSectionsAvailable||x.showFeedBack)),t.xp6(1),t.Q6J("ngIf",x.parentConfig.requiresSubmit&&(null==x.progressBarClass?null:x.progressBarClass.length)),t.xp6(1),t.Q6J("ngIf",x.showAlert&&x.showFeedBack),t.xp6(1),t.Q6J("ngIf",x.showSolution)}}function o3(b,I){1&b&&(t.TgZ(0,"div",52),t._uU(1," Please attempt the question\n"),t.qZA())}function d2(b,I){1&b&&t._UZ(0,"sb-player-contenterror")}var ac=":root{--quml-mcq-title-txt:#131415} .quml-mcq .mcq-title, .quml-sa .mcq-title, .startpage__instr-desc .mcq-title, quml-mcq-solutions .mcq-title, quml-sa .mcq-title{color:var(--quml-mcq-title-txt)} .quml-mcq .fs-10, .quml-mcq .fs-11, .quml-mcq .fs-12, .quml-mcq .fs-13, .quml-mcq .fs-14, .quml-mcq .fs-15, .quml-mcq .fs-16, .quml-mcq .fs-17, .quml-mcq .fs-18, .quml-mcq .fs-19, .quml-mcq .fs-20, .quml-mcq .fs-21, .quml-mcq .fs-22, .quml-mcq .fs-23, .quml-mcq .fs-24, .quml-mcq .fs-25, .quml-mcq .fs-26, .quml-mcq .fs-27, .quml-mcq .fs-28, .quml-mcq .fs-29, .quml-mcq .fs-30, .quml-mcq .fs-36, .quml-mcq .fs-8, .quml-mcq .fs-9, .quml-sa .fs-10, .quml-sa .fs-11, .quml-sa .fs-12, .quml-sa .fs-13, .quml-sa .fs-14, .quml-sa .fs-15, .quml-sa .fs-16, .quml-sa .fs-17, .quml-sa .fs-18, .quml-sa .fs-19, .quml-sa .fs-20, .quml-sa .fs-21, .quml-sa .fs-22, .quml-sa .fs-23, .quml-sa .fs-24, .quml-sa .fs-25, .quml-sa .fs-26, .quml-sa .fs-27, .quml-sa .fs-28, .quml-sa .fs-29, .quml-sa .fs-30, .quml-sa .fs-36, .quml-sa .fs-8, .quml-sa .fs-9, .startpage__instr-desc .fs-10, .startpage__instr-desc .fs-11, .startpage__instr-desc .fs-12, .startpage__instr-desc .fs-13, .startpage__instr-desc .fs-14, .startpage__instr-desc .fs-15, .startpage__instr-desc .fs-16, .startpage__instr-desc .fs-17, .startpage__instr-desc .fs-18, .startpage__instr-desc .fs-19, .startpage__instr-desc .fs-20, .startpage__instr-desc .fs-21, .startpage__instr-desc .fs-22, .startpage__instr-desc .fs-23, .startpage__instr-desc .fs-24, .startpage__instr-desc .fs-25, .startpage__instr-desc .fs-26, .startpage__instr-desc .fs-27, .startpage__instr-desc .fs-28, .startpage__instr-desc .fs-29, .startpage__instr-desc .fs-30, .startpage__instr-desc .fs-36, .startpage__instr-desc .fs-8, .startpage__instr-desc .fs-9, quml-mcq-solutions .fs-10, quml-mcq-solutions .fs-11, quml-mcq-solutions .fs-12, quml-mcq-solutions .fs-13, quml-mcq-solutions .fs-14, quml-mcq-solutions .fs-15, quml-mcq-solutions .fs-16, quml-mcq-solutions .fs-17, quml-mcq-solutions .fs-18, quml-mcq-solutions .fs-19, quml-mcq-solutions .fs-20, quml-mcq-solutions .fs-21, quml-mcq-solutions .fs-22, quml-mcq-solutions .fs-23, quml-mcq-solutions .fs-24, quml-mcq-solutions .fs-25, quml-mcq-solutions .fs-26, quml-mcq-solutions .fs-27, quml-mcq-solutions .fs-28, quml-mcq-solutions .fs-29, quml-mcq-solutions .fs-30, quml-mcq-solutions .fs-36, quml-mcq-solutions .fs-8, quml-mcq-solutions .fs-9, quml-sa .fs-10, quml-sa .fs-11, quml-sa .fs-12, quml-sa .fs-13, quml-sa .fs-14, quml-sa .fs-15, quml-sa .fs-16, quml-sa .fs-17, quml-sa .fs-18, quml-sa .fs-19, quml-sa .fs-20, quml-sa .fs-21, quml-sa .fs-22, quml-sa .fs-23, quml-sa .fs-24, quml-sa .fs-25, quml-sa .fs-26, quml-sa .fs-27, quml-sa .fs-28, quml-sa .fs-29, quml-sa .fs-30, quml-sa .fs-36, quml-sa .fs-8, quml-sa .fs-9{line-height:normal} .quml-mcq .fs-8, .quml-sa .fs-8, .startpage__instr-desc .fs-8, quml-mcq-solutions .fs-8, quml-sa .fs-8{font-size:.5rem} .quml-mcq .fs-9, .quml-sa .fs-9, .startpage__instr-desc .fs-9, quml-mcq-solutions .fs-9, quml-sa .fs-9{font-size:.563rem} .quml-mcq .fs-10, .quml-sa .fs-10, .startpage__instr-desc .fs-10, quml-mcq-solutions .fs-10, quml-sa .fs-10{font-size:.625rem} .quml-mcq .fs-11, .quml-sa .fs-11, .startpage__instr-desc .fs-11, quml-mcq-solutions .fs-11, quml-sa .fs-11{font-size:.688rem} .quml-mcq .fs-12, .quml-sa .fs-12, .startpage__instr-desc .fs-12, quml-mcq-solutions .fs-12, quml-sa .fs-12{font-size:.75rem} .quml-mcq .fs-13, .quml-sa .fs-13, .startpage__instr-desc .fs-13, quml-mcq-solutions .fs-13, quml-sa .fs-13{font-size:.813rem} .quml-mcq .fs-14, .quml-sa .fs-14, .startpage__instr-desc .fs-14, quml-mcq-solutions .fs-14, quml-sa .fs-14{font-size:.875rem} .quml-mcq .fs-15, .quml-sa .fs-15, .startpage__instr-desc .fs-15, quml-mcq-solutions .fs-15, quml-sa .fs-15{font-size:.938rem} .quml-mcq .fs-16, .quml-sa .fs-16, .startpage__instr-desc .fs-16, quml-mcq-solutions .fs-16, quml-sa .fs-16{font-size:1rem} .quml-mcq .fs-17, .quml-sa .fs-17, .startpage__instr-desc .fs-17, quml-mcq-solutions .fs-17, quml-sa .fs-17{font-size:1.063rem} .quml-mcq .fs-18, .quml-sa .fs-18, .startpage__instr-desc .fs-18, quml-mcq-solutions .fs-18, quml-sa .fs-18{font-size:1.125rem} .quml-mcq .fs-19, .quml-sa .fs-19, .startpage__instr-desc .fs-19, quml-mcq-solutions .fs-19, quml-sa .fs-19{font-size:1.188rem} .quml-mcq .fs-20, .quml-sa .fs-20, .startpage__instr-desc .fs-20, quml-mcq-solutions .fs-20, quml-sa .fs-20{font-size:1.25rem} .quml-mcq .fs-21, .quml-sa .fs-21, .startpage__instr-desc .fs-21, quml-mcq-solutions .fs-21, quml-sa .fs-21{font-size:1.313rem} .quml-mcq .fs-22, .quml-sa .fs-22, .startpage__instr-desc .fs-22, quml-mcq-solutions .fs-22, quml-sa .fs-22{font-size:1.375rem} .quml-mcq .fs-23, .quml-sa .fs-23, .startpage__instr-desc .fs-23, quml-mcq-solutions .fs-23, quml-sa .fs-23{font-size:1.438rem} .quml-mcq .fs-24, .quml-sa .fs-24, .startpage__instr-desc .fs-24, quml-mcq-solutions .fs-24, quml-sa .fs-24{font-size:1.5rem} .quml-mcq .fs-25, .quml-sa .fs-25, .startpage__instr-desc .fs-25, quml-mcq-solutions .fs-25, quml-sa .fs-25{font-size:1.563rem} .quml-mcq .fs-26, .quml-sa .fs-26, .startpage__instr-desc .fs-26, quml-mcq-solutions .fs-26, quml-sa .fs-26{font-size:1.625rem} .quml-mcq .fs-27, .quml-sa .fs-27, .startpage__instr-desc .fs-27, quml-mcq-solutions .fs-27, quml-sa .fs-27{font-size:1.688rem} .quml-mcq .fs-28, .quml-sa .fs-28, .startpage__instr-desc .fs-28, quml-mcq-solutions .fs-28, quml-sa .fs-28{font-size:1.75rem} .quml-mcq .fs-29, .quml-sa .fs-29, .startpage__instr-desc .fs-29, quml-mcq-solutions .fs-29, quml-sa .fs-29{font-size:1.813rem} .quml-mcq .fs-30, .quml-sa .fs-30, .startpage__instr-desc .fs-30, quml-mcq-solutions .fs-30, quml-sa .fs-30{font-size:1.875rem} .quml-mcq .fs-36, .quml-sa .fs-36, .startpage__instr-desc .fs-36, quml-mcq-solutions .fs-36, quml-sa .fs-36{font-size:2.25rem} .quml-mcq .text-left, .quml-sa .text-left, .startpage__instr-desc .text-left, quml-mcq-solutions .text-left, quml-sa .text-left{text-align:left} .quml-mcq .text-center, .quml-sa .text-center, .startpage__instr-desc .text-center, quml-mcq-solutions .text-center, quml-sa .text-center{text-align:center} .quml-mcq .text-right, .quml-sa .text-right, .startpage__instr-desc .text-right, quml-mcq-solutions .text-right, quml-sa .text-right{text-align:right} .quml-mcq .image-style-align-right, .quml-sa .image-style-align-right, .startpage__instr-desc .image-style-align-right, quml-mcq-solutions .image-style-align-right, quml-sa .image-style-align-right{float:right;text-align:right;margin-left:.5rem} .quml-mcq .image-style-align-left, .quml-sa .image-style-align-left, .startpage__instr-desc .image-style-align-left, quml-mcq-solutions .image-style-align-left, quml-sa .image-style-align-left{float:left;text-align:left;margin-right:.5rem} .quml-mcq .image, .quml-mcq figure.image, .quml-sa .image, .quml-sa figure.image, .startpage__instr-desc .image, .startpage__instr-desc figure.image, quml-mcq-solutions .image, quml-mcq-solutions figure.image, quml-sa .image, quml-sa figure.image{display:table;clear:both;text-align:center;margin:.5rem auto;position:relative} .quml-mcq figure.image, .quml-mcq figure.image.resize-original, .quml-sa figure.image, .quml-sa figure.image.resize-original, .startpage__instr-desc figure.image, .startpage__instr-desc figure.image.resize-original, quml-mcq-solutions figure.image, quml-mcq-solutions figure.image.resize-original, quml-sa figure.image, quml-sa figure.image.resize-original{width:auto;height:auto;overflow:visible} .quml-mcq figure.image img, .quml-sa figure.image img, .startpage__instr-desc figure.image img, quml-mcq-solutions figure.image img, quml-sa figure.image img{width:100%} .quml-mcq figure.image.resize-original img, .quml-sa figure.image.resize-original img, .startpage__instr-desc figure.image.resize-original img, quml-mcq-solutions figure.image.resize-original img, quml-sa figure.image.resize-original img{width:auto;height:auto} .quml-mcq .image img, .quml-sa .image img, .startpage__instr-desc .image img, quml-mcq-solutions .image img, quml-sa .image img{display:block;margin:0 auto;max-width:100%;min-width:50px} .quml-mcq figure.image.resize-25, .quml-sa figure.image.resize-25, .startpage__instr-desc figure.image.resize-25, quml-mcq-solutions figure.image.resize-25, quml-sa figure.image.resize-25{width:25%;height:auto} .quml-mcq figure.image.resize-50, .quml-sa figure.image.resize-50, .startpage__instr-desc figure.image.resize-50, quml-mcq-solutions figure.image.resize-50, quml-sa figure.image.resize-50{width:50%;height:auto} .quml-mcq figure.image.resize-75, .quml-sa figure.image.resize-75, .startpage__instr-desc figure.image.resize-75, quml-mcq-solutions figure.image.resize-75, quml-sa figure.image.resize-75{width:75%;height:auto} .quml-mcq figure.image.resize-100, .quml-sa figure.image.resize-100, .startpage__instr-desc figure.image.resize-100, quml-mcq-solutions figure.image.resize-100, quml-sa figure.image.resize-100{width:100%;height:auto} .quml-mcq .solution-options figure.image, .quml-sa .solution-options figure.image, .startpage__instr-desc .solution-options figure.image, quml-mcq-solutions .solution-options figure.image, quml-sa .solution-options figure.image{width:7.5rem!important;height:7.5rem!important} .quml-mcq figure.table table, .quml-sa figure.table table, .startpage__instr-desc figure.table table, quml-mcq-solutions figure.table table, quml-sa figure.table table{border-right:.0625rem solid var(--gray-100)} .quml-mcq figure.table table, .quml-mcq figure.table table tr td, .quml-mcq figure.table table tr th, .quml-sa figure.table table, .quml-sa figure.table table tr td, .quml-sa figure.table table tr th, .startpage__instr-desc figure.table table, .startpage__instr-desc figure.table table tr td, .startpage__instr-desc figure.table table tr th, quml-mcq-solutions figure.table table, quml-mcq-solutions figure.table table tr td, quml-mcq-solutions figure.table table tr th, quml-sa figure.table table, quml-sa figure.table table tr td, quml-sa figure.table table tr th{border:.0625rem solid var(--black);border-collapse:collapse} .quml-mcq figure.table table, .quml-sa figure.table table, .startpage__instr-desc figure.table table, quml-mcq-solutions figure.table table, quml-sa figure.table table{width:100%;background:var(--white);border:.0625rem solid var(--gray-100);box-shadow:none;border-radius:.25rem .25rem 0 0;text-align:left;color:var(--gray);border-collapse:separate;border-spacing:0;table-layout:fixed} .quml-mcq figure.table table thead tr th, .quml-sa figure.table table thead tr th, .startpage__instr-desc figure.table table thead tr th, quml-mcq-solutions figure.table table thead tr th, quml-sa figure.table table thead tr th{border-right:.0625rem solid var(--gray-100);font-size:.875rem;padding:1rem;background-color:var(--primary-100);color:var(--gray);position:relative;height:2.5rem;border:0;border-bottom:.0625rem solid var(--gray-100);border-right:.0625rem solid var(--gray-100);font-weight:700;color:var(--primary-color);text-transform:uppercase} .quml-mcq figure.table table thead tr th:first-child, .quml-sa figure.table table thead tr th:first-child, .startpage__instr-desc figure.table table thead tr th:first-child, quml-mcq-solutions figure.table table thead tr th:first-child, quml-sa figure.table table thead tr th:first-child{border-top-left-radius:.25rem} .quml-mcq figure.table table thead tr th:last-child, .quml-sa figure.table table thead tr th:last-child, .startpage__instr-desc figure.table table thead tr th:last-child, quml-mcq-solutions figure.table table thead tr th:last-child, quml-sa figure.table table thead tr th:last-child{border-top-right-radius:.25rem;border-right:0 solid var(--gray-100)} .quml-mcq figure.table table tbody tr:nth-child(2n), .quml-sa figure.table table tbody tr:nth-child(2n), .startpage__instr-desc figure.table table tbody tr:nth-child(2n), quml-mcq-solutions figure.table table tbody tr:nth-child(2n), quml-sa figure.table table tbody tr:nth-child(2n){background-color:var(--gray-0)} .quml-mcq figure.table table tbody tr:hover, .quml-sa figure.table table tbody tr:hover, .startpage__instr-desc figure.table table tbody tr:hover, quml-mcq-solutions figure.table table tbody tr:hover, quml-sa figure.table table tbody tr:hover{background:var(--primary-0);color:rgba(var(--rc-rgba-gray),.95);cursor:pointer} .quml-mcq figure.table table tbody tr td, .quml-sa figure.table table tbody tr td, .startpage__instr-desc figure.table table tbody tr td, quml-mcq-solutions figure.table table tbody tr td, quml-sa figure.table table tbody tr td{font-size:.875rem;padding:1rem;color:var(--gray);height:3.5rem;border:0;border-bottom:.0625rem solid var(--gray-100);border-right:.0625rem solid var(--gray-100);word-break:break-word;line-height:normal} .quml-mcq figure.table table tbody tr td:last-child, .quml-sa figure.table table tbody tr td:last-child, .startpage__instr-desc figure.table table tbody tr td:last-child, quml-mcq-solutions figure.table table tbody tr td:last-child, quml-sa figure.table table tbody tr td:last-child{border-right:0 solid var(--gray-100)} .quml-mcq figure.table table tbody tr td p, .quml-sa figure.table table tbody tr td p, .startpage__instr-desc figure.table table tbody tr td p, quml-mcq-solutions figure.table table tbody tr td p, quml-sa figure.table table tbody tr td p{margin-bottom:0!important} .quml-mcq figure.table table tbody tr:last-child td, .quml-sa figure.table table tbody tr:last-child td, .startpage__instr-desc figure.table table tbody tr:last-child td, quml-mcq-solutions figure.table table tbody tr:last-child td, quml-sa figure.table table tbody tr:last-child td{border-bottom:none} .quml-mcq figure.table table tbody tr:last-child td:first-child, .quml-sa figure.table table tbody tr:last-child td:first-child, .startpage__instr-desc figure.table table tbody tr:last-child td:first-child, quml-mcq-solutions figure.table table tbody tr:last-child td:first-child, quml-sa figure.table table tbody tr:last-child td:first-child{border-bottom-left-radius:.25rem} .quml-mcq figure.table table tbody tr:last-child td:last-child, .quml-sa figure.table table tbody tr:last-child td:last-child, .startpage__instr-desc figure.table table tbody tr:last-child td:last-child, quml-mcq-solutions figure.table table tbody tr:last-child td:last-child, quml-sa figure.table table tbody tr:last-child td:last-child{border-bottom-right-radius:.25rem} .quml-mcq ol, .quml-mcq ul, .quml-sa ol, .quml-sa ul, .startpage__instr-desc ol, .startpage__instr-desc ul, quml-mcq-solutions ol, quml-mcq-solutions ul, quml-sa ol, quml-sa ul{margin-top:.5rem} .quml-mcq ol li, .quml-mcq ul li, .quml-sa ol li, .quml-sa ul li, .startpage__instr-desc ol li, .startpage__instr-desc ul li, quml-mcq-solutions ol li, quml-mcq-solutions ul li, quml-sa ol li, quml-sa ul li{margin:.5rem;font-weight:400;line-height:normal} .quml-mcq ul, .quml-sa ul, .startpage__instr-desc ul, quml-mcq-solutions ul, quml-sa ul{list-style-type:disc} .quml-mcq h1, .quml-mcq h2, .quml-mcq h3, .quml-mcq h4, .quml-mcq h5, .quml-mcq h6, .quml-sa h1, .quml-sa h2, .quml-sa h3, .quml-sa h4, .quml-sa h5, .quml-sa h6, .startpage__instr-desc h1, .startpage__instr-desc h2, .startpage__instr-desc h3, .startpage__instr-desc h4, .startpage__instr-desc h5, .startpage__instr-desc h6, quml-mcq-solutions h1, quml-mcq-solutions h2, quml-mcq-solutions h3, quml-mcq-solutions h4, quml-mcq-solutions h5, quml-mcq-solutions h6, quml-sa h1, quml-sa h2, quml-sa h3, quml-sa h4, quml-sa h5, quml-sa h6{color:var(--primary-color);line-height:normal;margin-bottom:1rem} .quml-mcq p, .quml-mcq span, .quml-sa p, .quml-sa span, .startpage__instr-desc p, .startpage__instr-desc span, quml-mcq-solutions p, quml-mcq-solutions span, quml-sa p, quml-sa span{color:var(--quml-mcq-title-txt)} .quml-mcq p span strong, .quml-mcq p strong, .quml-sa p span strong, .quml-sa p strong, .startpage__instr-desc p span strong, .startpage__instr-desc p strong, quml-mcq-solutions p span strong, quml-mcq-solutions p strong, quml-sa p span strong, quml-sa p strong{font-weight:700} .quml-mcq p span u, .quml-mcq p u, .quml-sa p span u, .quml-sa p u, .startpage__instr-desc p span u, .startpage__instr-desc p u, quml-mcq-solutions p span u, quml-mcq-solutions p u, quml-sa p span u, quml-sa p u{text-decoration:underline} .quml-mcq p i, .quml-mcq p span i, .quml-sa p i, .quml-sa p span i, .startpage__instr-desc p i, .startpage__instr-desc p span i, quml-mcq-solutions p i, quml-mcq-solutions p span i, quml-sa p i, quml-sa p span i{font-style:italic} .quml-mcq p, .quml-sa p, .startpage__instr-desc p, quml-mcq-solutions p, quml-sa p{line-height:normal}";function oc(b,I){if(1&b&&t._UZ(0,"sb-player-start-page",5),2&b){var m=t.oxw();t.Q6J("title",null==m.parentConfig?null:m.parentConfig.contentName)}}function s3(b,I){1&b&&t._UZ(0,"sb-player-side-menu-icon")}function Ss(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"quml-header",6),t.NdJ("toggleScreenRotate",function(){return t.CHM(m),t.oxw().toggleScreenRotate()}),t.qZA()}if(2&b){var x=t.oxw();t.Q6J("showLegend",null==x.parentConfig?null:x.parentConfig.showLegend)("disablePreviousNavigation",!0)("disableNext",!0)("attempts",x.attempts)("loadScoreBoard",!0)("showDeviceOrientation",null==x.playerConfig||null==x.playerConfig.config?null:x.playerConfig.config.showDeviceOrientation)}}function dl(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"quml-scoreboard",12),t.NdJ("scoreBoardLoaded",function(Ce){return t.CHM(m),t.oxw(2).onScoreBoardLoaded(Ce)})("submitClicked",function(){return t.CHM(m),t.oxw(2).onScoreBoardSubmitted()})("emitQuestionNo",function(Ce){return t.CHM(m),t.oxw(2).goToQuestion(Ce)}),t.qZA()}if(2&b){var x=t.oxw(2);t.Q6J("contentName",x.parentConfig.contentName)("scores",x.mainProgressBar)("totalNoOfQuestions",x.totalNoOfQuestions)("showFeedBack",x.showFeedBack)("isSections",null==x.parentConfig?null:x.parentConfig.isSectionsAvailable)("summary",x.summary)}}function l3(b,I){if(1&b&&(t.TgZ(0,"span",18),t._uU(1),t.qZA()),2&b){var m=t.oxw(4);t.xp6(1),t.AsE("Attempt no ",m.attempts.current,"/",m.attempts.max," ")}}function S0(b,I){if(1&b&&(t.TgZ(0,"span",19),t._uU(1),t.qZA()),2&b){var m=t.oxw(4);t.xp6(1),t.AsE("",m.attempts.current,"/",m.attempts.max," attempts completed ")}}function P0(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"sb-player-end-page",15),t.NdJ("replayContent",function(){return t.CHM(m),t.oxw(3).replayContent()})("exitContent",function(Ce){return t.CHM(m),t.oxw(3).exitContent(Ce)})("playNextContent",function(Ce){return t.CHM(m),t.oxw(3).playNextContent(Ce)}),t.YNc(1,l3,2,2,"span",16),t.YNc(2,S0,2,2,"span",17),t.qZA()}if(2&b){var x=t.oxw(3);t.Q6J("contentName",x.parentConfig.contentName)("outcome",x.outcomeLabel)("outcomeLabel","Score: ")("userName",x.userName)("timeSpentLabel",x.durationSpent)("showExit",null==x.parentConfig?null:x.parentConfig.sideMenuConfig.showExit)("showReplay",x.showReplay)("nextContent",x.nextContent),t.xp6(1),t.Q6J("ngIf",(null==x.attempts?null:x.attempts.max)&&(null==x.attempts?null:x.attempts.current)&&x.attempts.max!==x.attempts.current),t.xp6(1),t.Q6J("ngIf",(null==x.attempts?null:x.attempts.max)===(null==x.attempts?null:x.attempts.current))}}function u3(b,I){if(1&b&&(t.TgZ(0,"div",13),t.YNc(1,P0,3,10,"sb-player-end-page",14),t.qZA()),2&b){var m=t.oxw(2);t.Q6J("ngClass",m.endPageReached?"endPage-container-height":""),t.xp6(1),t.Q6J("ngIf",m.endPageReached&&m.showEndPage)}}function f2(b,I){if(1&b&&(t.TgZ(0,"div"),t._UZ(1,"sb-player-contenterror",20),t.qZA()),2&b){var m=t.oxw(2);t.xp6(1),t.Q6J("errorMsg",m.contentError)}}function c3(b,I){if(1&b){var m=t.EpF();t.TgZ(0,"div",7),t.TgZ(1,"div",8),t.TgZ(2,"quml-section-player",9),t.NdJ("sectionEnd",function(Ce){return t.CHM(m),t.oxw().onSectionEnd(Ce)})("showScoreBoard",function(Ce){return t.CHM(m),t.oxw().onShowScoreBoard(Ce)})("playerEvent",function(Ce){return t.CHM(m),t.oxw().onPlayerEvent(Ce)}),t.qZA(),t.qZA(),t.YNc(3,dl,1,6,"quml-scoreboard",10),t.YNc(4,u3,2,2,"div",11),t.YNc(5,f2,2,1,"div",1),t.qZA()}if(2&b){var x=t.oxw();t.xp6(1),t.Q6J("hidden",!x.activeSection||x.loadScoreBoard||x.endPageReached),t.xp6(1),t.Q6J("sectionConfig",x.activeSection)("attempts",x.attempts)("mainProgressBar",x.mainProgressBar)("parentConfig",x.parentConfig)("sectionIndex",x.sectionIndex)("jumpToQuestion",x.jumpToQuestion),t.xp6(1),t.Q6J("ngIf",x.loadScoreBoard&&(null==x.parentConfig?null:x.parentConfig.requiresSubmit)&&!x.endPageReached),t.xp6(1),t.Q6J("ngIf",x.endPageReached),t.xp6(1),t.Q6J("ngIf",x.isMultiLevelSection)}}function d3(b,I){if(1&b&&(t.TgZ(0,"div",11),t._UZ(1,"span",12),t.TgZ(2,"p"),t._uU(3),t.qZA(),t.qZA()),2&b){var m=I.$implicit;t.xp6(1),t.Q6J("ngClass",m.class?m.class:"")("innerHtml",m.iconText,t.oJD),t.xp6(2),t.Oqu(m.title)}}var ia=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"uniqueId",value:function(){for(var m=arguments.length>0&&void 0!==arguments[0]?arguments[0]:32,x="",Y="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",Ce=Y.length,tt=0;tt0&&m[0].remove()}},{key:"initOptions",value:function(){for(var m=0;m-1?this.sectionQuestions[Y].questions=x:this.sectionQuestions.push({id:m,questions:x})}},{key:"getSectionQuestions",value:function(m){var x;return(null===(x=this.sectionQuestions.find(function(Y){return Y.id===m}))||void 0===x?void 0:x.questions)||[]}}]),b}();Ra.\u0275fac=function(I){return new(I||Ra)(t.LFG(ls),t.LFG(ia),t.LFG(A1))},Ra.ctorParameters=function(){return[{type:ls},{type:ia},{type:A1}]},Ra.\u0275prov=(0,t.Yz7)({factory:function(){return new Ra((0,t.LFG)(ls),(0,t.LFG)(ia),(0,t.LFG)(A1))},token:Ra,providedIn:"root"});var ds=function(){function b(I){(0,L.Z)(this,b),this.viewerService=I,this.showDeviceOrientation=!1,this.nextSlideClicked=new t.vpe,this.prevSlideClicked=new t.vpe,this.durationEnds=new t.vpe,this.showSolution=new t.vpe,this.toggleScreenRotate=new t.vpe,this.showWarning=!1,this.isMobilePortrait=!1,this.showProgressIndicatorPopUp=!1}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){this.duration&&this.showTimer&&(this.minutes=Math.floor(this.duration/60),this.seconds=this.duration-60*this.minutes<10?"0".concat(this.duration-60*this.minutes):this.duration-60*this.minutes)}},{key:"ngOnChanges",value:function(){this.duration&&this.showTimer&&this.initializeTimer&&!this.intervalRef?this.timer():0===this.duration&&this.showTimer&&this.initializeTimer&&!this.intervalRef&&this.showCountUp(),this.replayed&&this.duration&&this.showTimer?(this.showWarning=!1,clearInterval(this.intervalRef),this.timer()):this.replayed&&0===this.duration&&this.showTimer&&(clearInterval(this.intervalRef),this.showCountUp())}},{key:"ngAfterViewInit",value:function(){this.isMobilePortrait=window.matchMedia("(max-width: 480px)").matches}},{key:"ngOnDestroy",value:function(){this.intervalRef&&clearInterval(this.intervalRef)}},{key:"nextSlide",value:function(){this.disableNext||this.nextSlideClicked.emit({type:"next"})}},{key:"prevSlide",value:function(){!this.showStartPage&&1===this.currentSlideIndex||this.disablePreviousNavigation||this.prevSlideClicked.emit({event:"previous clicked"})}},{key:"timer",value:function(){var m=this;if(this.duration>0){var x=this.duration;this.intervalRef=setInterval(function(){var Y=~~(x/60),Ce=x%60;if(m.time=Ce<10?Y+":0"+Ce:Y+":"+Ce,0===x)return clearInterval(m.intervalRef),m.durationEnds.emit(!0),!1;parseInt(x)<=parseInt(m.warningTime)&&(m.showWarning=!0),x--},1e3)}}},{key:"showCountUp",value:function(){var m=this,x=0,Y=0;this.intervalRef=setInterval(function(){59===Y&&(Y=0,x+=1),m.time=Y<10?x+":0"+Y++:x+":"+Y++},1e3)}},{key:"onAnswerKeyDown",value:function(m){"Enter"===m.key&&(m.stopPropagation(),this.showSolution.emit())}},{key:"openProgressIndicatorPopup",value:function(){this.showProgressIndicatorPopUp=!0,this.viewerService.raiseHeartBeatEvent(kr_progressIndicatorPopupOpened,Nr_interact,this.currentSlideIndex)}},{key:"onKeydownHandler",value:function(m){this.onProgressPopupClose()}},{key:"onProgressPopupClose",value:function(){this.showProgressIndicatorPopUp=!1,this.viewerService.raiseHeartBeatEvent(kr_progressIndicatorPopupClosed,Nr_interact,this.currentSlideIndex)}}]),b}();ds.\u0275fac=function(I){return new(I||ds)(t.Y36(Ra))},ds.\u0275cmp=t.Xpm({type:ds,selectors:[["quml-header"]],hostBindings:function(I,m){1&I&&t.NdJ("keydown.escape",function(Y){return m.onKeydownHandler(Y)},!1,t.evT)},inputs:{showDeviceOrientation:"showDeviceOrientation",questions:"questions",duration:"duration",warningTime:"warningTime",disablePreviousNavigation:"disablePreviousNavigation",showTimer:"showTimer",totalNoOfQuestions:"totalNoOfQuestions",currentSlideIndex:"currentSlideIndex",active:"active",initializeTimer:"initializeTimer",endPageReached:"endPageReached",loadScoreBoard:"loadScoreBoard",replayed:"replayed",currentSolutions:"currentSolutions",showFeedBack:"showFeedBack",disableNext:"disableNext",startPageInstruction:"startPageInstruction",showStartPage:"showStartPage",attempts:"attempts",showLegend:"showLegend"},outputs:{nextSlideClicked:"nextSlideClicked",prevSlideClicked:"prevSlideClicked",durationEnds:"durationEnds",showSolution:"showSolution",toggleScreenRotate:"toggleScreenRotate"},features:[t.TTD],decls:11,vars:8,consts:[[1,"quml-header__container"],[1,"quml-header__features","pl-64"],["class","attempts sb-color-primary fnormal font-weight-bold",4,"ngIf"],["src","assets/question-mark-round.svg","alt","Progress Indicators","title","Progress Indicators","height","20","width","20",3,"click",4,"ngIf"],[1,"quml-header__metadata"],["src","assets/device-rotate.svg","alt","Change Orientation","title","Change Orientation","height","20","width","20",3,"click",4,"ngIf"],[4,"ngIf"],["class","quml-navigation",4,"ngIf"],["class","quml-header__metadata quml-header__metadata--portrait",4,"ngIf"],[3,"close",4,"ngIf"],[1,"attempts","sb-color-primary","fnormal","font-weight-bold"],["src","assets/question-mark-round.svg","alt","Progress Indicators","title","Progress Indicators","height","20","width","20",3,"click"],["src","assets/device-rotate.svg","alt","Change Orientation","title","Change Orientation","height","20","width","20",3,"click"],["class","duration mr-16",3,"title",4,"ngIf"],[1,"duration","mr-16",3,"title"],[3,"ngClass"],[1,"quml-navigation"],["aria-label","preview slide","title","preview slide","role","navigation",1,"quml-navigation__previous",3,"ngClass","click"],["class","quml-navigation__next ml-8","aria-label","next slide","title","next slide","role","navigation","tabindex","0",3,"ngClass","click","keydown.enter",4,"ngIf"],["class","quml-navigation__next quml-navigation__next--active ml-8","aria-label","next slide","title","next slide","role","navigation","tabindex","0",3,"ngClass","click","keydown.enter",4,"ngIf"],["aria-label","next slide","title","next slide","role","navigation","tabindex","0",1,"quml-navigation__next","ml-8",3,"ngClass","click","keydown.enter"],["aria-label","next slide","title","next slide","role","navigation","tabindex","0",1,"quml-navigation__next","quml-navigation__next--active","ml-8",3,"ngClass","click","keydown.enter"],[1,"quml-header__metadata","quml-header__metadata--portrait"],["class","current-slide fnormal",4,"ngIf"],["class","ml-16",4,"ngIf"],[1,"quml-navigation","ml-auto"],["tabindex","0","aria-label","preview slide",1,"quml-navigation__previous",3,"click","keydown.enter"],["class","quml-navigation__next ml-8","tabindex","0","aria-label","next slide",3,"click","keydown.enter",4,"ngIf"],["class","quml-navigation__next quml-navigation__next--active ml-8","tabindex","0","aria-label","next slide",3,"click","keydown.enter",4,"ngIf"],[1,"current-slide","fnormal"],[1,"ml-16"],[3,"click","keydown"],["tabindex","0","aria-label","next slide",1,"quml-navigation__next","ml-8",3,"click","keydown.enter"],["tabindex","0","aria-label","next slide",1,"quml-navigation__next","quml-navigation__next--active","ml-8",3,"click","keydown.enter"],[3,"close"]],template:function(I,m){1&I&&(t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.YNc(2,i2,2,2,"div",2),t.YNc(3,$c,1,0,"img",3),t.qZA(),t.TgZ(4,"div",4),t.YNc(5,Y2,1,0,"img",5),t.YNc(6,po,3,2,"ng-container",6),t.YNc(7,sl,5,3,"ng-container",6),t.YNc(8,X2,4,4,"div",7),t.qZA(),t.qZA(),t.YNc(9,Vo,7,4,"div",8),t.YNc(10,Ls,1,0,"quml-progress-indicators",9)),2&I&&(t.xp6(2),t.Q6J("ngIf",(null==m.attempts?null:m.attempts.max)&&(null==m.attempts?null:m.attempts.current)),t.xp6(1),t.Q6J("ngIf",m.showLegend),t.xp6(2),t.Q6J("ngIf",m.showDeviceOrientation),t.xp6(1),t.Q6J("ngIf",m.duration&&m.showTimer),t.xp6(1),t.Q6J("ngIf",!m.duration&&m.showTimer&&m.initializeTimer),t.xp6(1),t.Q6J("ngIf",!m.disableNext&&!m.isMobilePortrait),t.xp6(1),t.Q6J("ngIf",!m.loadScoreBoard&&!m.endPageReached),t.xp6(1),t.Q6J("ngIf",m.showProgressIndicatorPopUp))},directives:function(){return[ct.O5,B1,ct.mk,hl,wa]},styles:[':root{--quml-color-primary:#FFD555;--quml-color-primary-contrast:#333;--quml-color-warning:#ff0000;--quml-btn-border:#ccc;--quml-color-gray:#666;--quml-main-bg:#fff;--quml-navigation-btns:#333;--quml-header-metadata:#fff}.quml-header__container[_ngcontent-%COMP%], .quml-header__features[_ngcontent-%COMP%], .quml-header__metadata[_ngcontent-%COMP%]{display:flex;align-items:center}.quml-header__container[_ngcontent-%COMP%]{justify-content:space-between;position:absolute;top:0;background:var(--quml-main-bg);min-height:3.5rem;width:100%;padding:.5rem 1rem .5rem 0;z-index:8}.quml-header__features[_ngcontent-%COMP%]{justify-content:space-between}.quml-header__features[_ngcontent-%COMP%] img[_ngcontent-%COMP%], .quml-header__metadata[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{margin:0 1rem;cursor:pointer}.quml-header__metadata--portrait[_ngcontent-%COMP%]{display:none}.quml-navigation[_ngcontent-%COMP%]{display:flex;align-items:center}@media only screen and (max-width:480px){.quml-header__metadata--portrait[_ngcontent-%COMP%]{display:flex;position:fixed;bottom:0;width:100%;padding:.5rem 1rem;background-color:var(--white);z-index:5;min-height:3rem}.quml-header__metadata--portrait[_ngcontent-%COMP%] .quml-navigation[_ngcontent-%COMP%]{display:flex}.quml-navigation[_ngcontent-%COMP%]{display:none}}.quml-navigation__next[_ngcontent-%COMP%], .quml-navigation__previous[_ngcontent-%COMP%]{position:relative;width:3.75rem;height:2.25rem;background:var(--quml-header-metadata);border:.03125rem solid var(--quml-btn-border);border-radius:1rem;box-shadow:inset 0 -.09375rem .0625rem 0 rgba(0,0,0,.2);cursor:pointer}.quml-navigation__next[_ngcontent-%COMP%]::after, .quml-navigation__previous[_ngcontent-%COMP%]::after{content:"";display:inline-block;padding:.21875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border:solid var(--quml-navigation-btns);border-width:0 .125rem .125rem 0}.quml-navigation__next--active[_ngcontent-%COMP%], .quml-navigation__next[_ngcontent-%COMP%]:focus, .quml-navigation__next[_ngcontent-%COMP%]:hover, .quml-navigation__previous--active[_ngcontent-%COMP%], .quml-navigation__previous[_ngcontent-%COMP%]:focus, .quml-navigation__previous[_ngcontent-%COMP%]:hover{background-color:var(--quml-color-primary)}.quml-navigation__next[_ngcontent-%COMP%]::after{transform:translate(-50%,-50%) rotate(-45deg);-webkit-transform:translate(-50%,-50%) rotate(-45deg)}.quml-navigation__previous[_ngcontent-%COMP%]::after{transform:translate(-50%,-50%) rotate(135deg);-webkit-transform:translate(-50%,-50%) rotate(135deg)}.blink[_ngcontent-%COMP%]{-webkit-animation:1s steps(1,end) infinite blink;animation:1s steps(1,end) infinite blink;color:var(--quml-color-warning)}.duration[_ngcontent-%COMP%], quml-durationtimer[_ngcontent-%COMP%]{display:flex;align-items:center}.duration[_ngcontent-%COMP%]{color:var(--quml-color-primary-contrast);font-weight:700}quml-durationtimer[_ngcontent-%COMP%]{margin-right:.5rem}.current-slide[_ngcontent-%COMP%]{color:var(--quml-color-gray);font-weight:700}.navigation-icon-disabled[_ngcontent-%COMP%]{opacity:.6;cursor:not-allowed}@-webkit-keyframes blink{0%,100%{opacity:1}50%{opacity:0}}@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}']}),ds.ctorParameters=function(){return[{type:Ra}]},ds.propDecorators={questions:[{type:t.IIB}],duration:[{type:t.IIB}],warningTime:[{type:t.IIB}],disablePreviousNavigation:[{type:t.IIB}],showTimer:[{type:t.IIB}],totalNoOfQuestions:[{type:t.IIB}],currentSlideIndex:[{type:t.IIB}],active:[{type:t.IIB}],initializeTimer:[{type:t.IIB}],endPageReached:[{type:t.IIB}],loadScoreBoard:[{type:t.IIB}],replayed:[{type:t.IIB}],currentSolutions:[{type:t.IIB}],showFeedBack:[{type:t.IIB}],disableNext:[{type:t.IIB}],startPageInstruction:[{type:t.IIB}],showStartPage:[{type:t.IIB}],attempts:[{type:t.IIB}],showDeviceOrientation:[{type:t.IIB}],showLegend:[{type:t.IIB}],nextSlideClicked:[{type:t.r_U}],prevSlideClicked:[{type:t.r_U}],durationEnds:[{type:t.r_U}],showSolution:[{type:t.r_U}],toggleScreenRotate:[{type:t.r_U}],onKeydownHandler:[{type:t.L6J,args:["document:keydown.escape",["$event"]]}]};var r1=function(){function b(){(0,L.Z)(this,b),this.showPopup=new t.vpe}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}},{key:"showQumlPopup",value:function(){this.showPopup.emit()}}]),b}();r1.\u0275fac=function(I){return new(I||r1)},r1.\u0275cmp=t.Xpm({type:r1,selectors:[["quml-mcq-question"]],inputs:{mcqQuestion:"mcqQuestion",layout:"layout"},outputs:{showPopup:"showPopup"},decls:4,vars:4,consts:[[3,"ngClass"],[1,"quml-question",3,"innerHTML"],["question",""]],template:function(I,m){1&I&&(t.TgZ(0,"div",0),t._UZ(1,"div",1,2),t.ALo(3,"safeHtml"),t.qZA()),2&I&&(t.Q6J("ngClass",m.mcqQuestion.includes("img")?"quml-mcq-image-questions":"quml-mcq-questions"),t.xp6(1),t.Q6J("innerHTML",t.lcZ(3,2,m.mcqQuestion),t.oJD))},directives:function(){return[ct.mk]},pipes:function(){return[Ho]},styles:[".quml-mcq-questions[_ngcontent-%COMP%]{display:flex;gap:1rem}.quml-mcq-image-questions[_ngcontent-%COMP%]{display:flex;justify-content:start;align-items:flex-start}img[_ngcontent-%COMP%]{width:100%!important}quml-audio[_ngcontent-%COMP%]{padding:4px 8px;margin-top:19px}.quml-question-icon[_ngcontent-%COMP%]{display:inline-block;float:left;padding-right:.5rem;content:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMzZweCIgaGVpZ2h0PSIzNnB4IiB2aWV3Qm94PSIwIDAgMzYgMzYiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogc2tldGNodG9vbCA2MiAoMTAxMDEwKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT40NjI5QzQ3QS1BQzY2LTQwRTEtOEM3OS0xNTIwOENFRUEzQTU8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIHNrZXRjaHRvb2wuPC9kZXNjPgogICAgPGRlZnM+CiAgICAgICAgPHJlY3QgaWQ9InBhdGgtMSIgeD0iMCIgeT0iMCIgd2lkdGg9IjMwIiBoZWlnaHQ9IjMwIiByeD0iMTUiPjwvcmVjdD4KICAgICAgICA8ZmlsdGVyIHg9Ii01LjAlIiB5PSItNS4wJSIgd2lkdGg9IjExMC4wJSIgaGVpZ2h0PSIxMTAuMCUiIGZpbHRlclVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgaWQ9ImZpbHRlci0yIj4KICAgICAgICAgICAgPGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMSIgaW49IlNvdXJjZUFscGhhIiByZXN1bHQ9InNoYWRvd0JsdXJJbm5lcjEiPjwvZmVHYXVzc2lhbkJsdXI+CiAgICAgICAgICAgIDxmZU9mZnNldCBkeD0iMCIgZHk9Ii0xIiBpbj0ic2hhZG93Qmx1cklubmVyMSIgcmVzdWx0PSJzaGFkb3dPZmZzZXRJbm5lcjEiPjwvZmVPZmZzZXQ+CiAgICAgICAgICAgIDxmZUNvbXBvc2l0ZSBpbj0ic2hhZG93T2Zmc2V0SW5uZXIxIiBpbjI9IlNvdXJjZUFscGhhIiBvcGVyYXRvcj0iYXJpdGhtZXRpYyIgazI9Ii0xIiBrMz0iMSIgcmVzdWx0PSJzaGFkb3dJbm5lcklubmVyMSI+PC9mZUNvbXBvc2l0ZT4KICAgICAgICAgICAgPGZlQ29sb3JNYXRyaXggdmFsdWVzPSIwIDAgMCAwIDAgICAwIDAgMCAwIDAgICAwIDAgMCAwIDAgIDAgMCAwIDAuNSAwIiB0eXBlPSJtYXRyaXgiIGluPSJzaGFkb3dJbm5lcklubmVyMSI+PC9mZUNvbG9yTWF0cml4PgogICAgICAgIDwvZmlsdGVyPgogICAgPC9kZWZzPgogICAgPGcgaWQ9ImRldnMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJtY3ExIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTgwLjAwMDAwMCwgLTYwLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0iYXVkaW8tcGxheSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTgwLjAwMDAwMCwgNjAuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iR3JvdXAtOSI+CiAgICAgICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwIj4KICAgICAgICAgICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLUNvcHkiPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS01LUNvcHkiIGZpbGw9IiMwMDAwMDAiIGZpbGwtcnVsZT0ibm9uemVybyIgb3BhY2l0eT0iMC4yNzc1Mjk3NjIiIHg9IjAiIHk9IjAiIHdpZHRoPSIzNiIgaGVpZ2h0PSIzNiIgcng9IjE4Ij48L3JlY3Q+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iR3JvdXAtMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMy4wMDAwMDAsIDMuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGcgaWQ9IlJlY3RhbmdsZS01LUNvcHktMiIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHVzZSBmaWxsPSIjRkZGRkZGIiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHVzZSBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIxIiBmaWx0ZXI9InVybCgjZmlsdGVyLTIpIiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHJlY3Qgc3Ryb2tlLW9wYWNpdHk9IjAuNDg0MTU2NDY5IiBzdHJva2U9IiNDM0M4REIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVqb2luPSJzcXVhcmUiIHg9IjEiIHk9IjEiIHdpZHRoPSIyOCIgaGVpZ2h0PSIyOCIgcng9IjE0Ij48L3JlY3Q+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xNSw5IEwxNSwxNi4wMzMzMzMzIEMxNC42MDY2NjY3LDE1LjgwNjY2NjcgMTQuMTUzMzMzMywxNS42NjY2NjY3IDEzLjY2NjY2NjcsMTUuNjY2NjY2NyBDMTIuMTkzMzMzMywxNS42NjY2NjY3IDExLDE2Ljg2IDExLDE4LjMzMzMzMzMgQzExLDE5LjgwNjY2NjcgMTIuMTkzMzMzMywyMSAxMy42NjY2NjY3LDIxIEMxNS4xNCwyMSAxNi4zMzMzMzMzLDE5LjgwNjY2NjcgMTYuMzMzMzMzMywxOC4zMzMzMzMzIEwxNi4zMzMzMzMzLDExLjY2NjY2NjcgTDE5LDExLjY2NjY2NjcgTDE5LDkgTDE1LDkgTDE1LDkgWiIgaWQ9IlNoYXBlIiBmaWxsPSIjMDhCQzgyIj48L3BhdGg+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgICAgICAgICAgPGcgaWQ9ImljX2NoZXZyb25fbGVmdCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzAuMDAwMDAwLCAxOC4wMDAwMDApIHNjYWxlKC0xLCAxKSB0cmFuc2xhdGUoLTMwLjAwMDAwMCwgLTE4LjAwMDAwMCkgdHJhbnNsYXRlKDI2LjAwMDAwMCwgMTIuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iSWNvbi0yNHB4Ij48L2c+CiAgICAgICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==)}.quml-question[_ngcontent-%COMP%]{font-size:.875rem;color:#131415;padding-top:1rem;width:100%}.question-image[_ngcontent-%COMP%]{position:relative}.icon-zommin[_ngcontent-%COMP%]{position:absolute;bottom:0;right:0;content:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTlweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMTkgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYyICg5MTM5MCkgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+em9vbTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJkZXZzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iem9vbSI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik05LjUsMCBMMTgsMCBDMTguNTUyMjg0NywtMS4wMTQ1MzA2M2UtMTYgMTksMC40NDc3MTUyNSAxOSwxIEwxOSwxMyBDMTksMTYuMzEzNzA4NSAxNi4zMTM3MDg1LDE5IDEzLDE5IEwxLDE5IEMwLjQ0NzcxNTI1LDE5IDYuNzYzNTM3NTFlLTE3LDE4LjU1MjI4NDcgMCwxOCBMMCw5LjUgQy02LjQyNTM2MDY0ZS0xNiw0LjI1MzI5NDg4IDQuMjUzMjk0ODgsOS42MzgwNDA5NWUtMTYgOS41LDAgWiIgaWQ9IlJlY3RhbmdsZSIgZmlsbC1vcGFjaXR5PSIwLjUiIGZpbGw9IiM0MzQzNDMiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9wYXRoPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUuMDAwMDAwLCA0LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTQuNTgzMzMzMzMsMC43NSBDNi45NzY2NjY2NywwLjc1IDguOTE2NjY2NjcsMi42OSA4LjkxNjY2NjY3LDUuMDgzMzMzMzMgQzguOTE2NjY2NjcsNi4xNTY2NjY2NyA4LjUyMzMzMzMzLDcuMTQzMzMzMzMgNy44Nyw3LjkwMzMzMzMzIEw3Ljg3LDcuOTAzMzMzMzMgTDguMDU2NjY2NjcsOC4wODMzMzMzMyBMOC41ODMzMzMzMyw4LjA4MzMzMzMzIEwxMS45MSwxMS40MTY2NjY3IEwxMC45MTY2NjY3LDEyLjQxIEw3LjU4MzMzMzMzLDkuMDgzMzMzMzMgTDcuNTgzMzMzMzMsOC41NTY2NjY2NyBMNy40MDMzMzMzMyw4LjM3IEM2LjY0MzMzMzMzLDkuMDIzMzMzMzMgNS42NTY2NjY2Nyw5LjQxNjY2NjY3IDQuNTgzMzMzMzMsOS40MTY2NjY2NyBDMi4xOSw5LjQxNjY2NjY3IDAuMjUsNy40NzY2NjY2NyAwLjI1LDUuMDgzMzMzMzMgQzAuMjUsMi42OSAyLjE5LDAuNzUgNC41ODMzMzMzMywwLjc1IFogTTQuNTgzMzMzMzMsMi4wODMzMzMzMyBDMi45MjMzMzMzMywyLjA4MzMzMzMzIDEuNTgzMzMzMzMsMy40MjMzMzMzMyAxLjU4MzMzMzMzLDUuMDgzMzMzMzMgQzEuNTgzMzMzMzMsNi43NDMzMzMzMyAyLjkyMzMzMzMzLDguMDgzMzMzMzMgNC41ODMzMzMzMyw4LjA4MzMzMzMzIEM2LjI0MzMzMzMzLDguMDgzMzMzMzMgNy41ODMzMzMzMyw2Ljc0MzMzMzMzIDcuNTgzMzMzMzMsNS4wODMzMzMzMyBDNy41ODMzMzMzMywzLjQyMzMzMzMzIDYuMjQzMzMzMzMsMi4wODMzMzMzMyA0LjU4MzMzMzMzLDIuMDgzMzMzMzMgWiBNNC45MTY2NjY2NywzLjQxNjY2NjY3IEw0LjkxNjY2NjY3LDQuNzUgTDYuMjUsNC43NSBMNi4yNSw1LjQxNjY2NjY3IEw0LjkxNjY2NjY3LDUuNDE2NjY2NjcgTDQuOTE2NjY2NjcsNi43NSBMNC4yNSw2Ljc1IEw0LjI1LDUuNDE2NjY2NjcgTDIuOTE2NjY2NjcsNS40MTY2NjY2NyBMMi45MTY2NjY2Nyw0Ljc1IEw0LjI1LDQuNzUgTDQuMjUsMy40MTY2NjY2NyBMNC45MTY2NjY2NywzLjQxNjY2NjY3IFoiIGlkPSJDb21iaW5lZC1TaGFwZSI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=)}.question-image[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{vertical-align:bottom}"]}),r1.ctorParameters=function(){return[]},r1.propDecorators={mcqQuestion:[{type:t.IIB}],showPopup:[{type:t.r_U}],layout:[{type:t.IIB}]};var i1=function(){function b(I){(0,L.Z)(this,b),this.utilService=I,this.showPopup=new t.vpe,this.optionSelected=new t.vpe,this.selectedOption=[]}return(0,C.Z)(b,[{key:"ngOnChanges",value:function(){this.replayed&&this.mcqOptions.forEach(function(m){m.selected=!1}),this.tryAgain&&this.unselectOption()}},{key:"unselectOption",value:function(){this.mcqOptions.forEach(function(m){m.selected=!1}),this.selectedOption=[],this.optionSelected.emit({name:"optionSelect",option:this.selectedOption,cardinality:this.cardinality,solutions:this.solutions})}},{key:"onOptionSelect",value:function(m,x,Y){var Ce=this;m.hasOwnProperty("stopImmediatePropagation")&&m.stopImmediatePropagation(),this.cardinality===cs_single?void 0!==Y?(this.mcqOptions.forEach(function(tt){return tt.selected=!1}),this.mcqOptions[Y].selected=this.mcqOptions[Y].label===x.label):this.mcqOptions.forEach(function(tt){tt.selected=tt.label===x.label}):this.cardinality===cs_multiple&&this.mcqOptions.forEach(function(tt){tt.label===x.label&&!Ce.utilService.hasDuplicates(Ce.selectedOption,x)&&(tt.selected=!0,Ce.selectedOption.push(x))}),this.optionSelected.emit({name:"optionSelect",option:"single"===this.cardinality?x:this.selectedOption,cardinality:this.cardinality,solutions:this.solutions})}},{key:"onImageOptionSelected",value:function(m){this.onOptionSelect(m,m.option)}},{key:"showQumlPopup",value:function(){this.showPopup.emit()}},{key:"onEnter",value:function(m,x,Y){"Enter"===m.key&&(m.stopPropagation(),this.onOptionSelect(m,x,Y))}}]),b}();i1.\u0275fac=function(I){return new(I||i1)(t.Y36(ia))},i1.\u0275cmp=t.Xpm({type:i1,selectors:[["quml-mcq-option"]],inputs:{mcqOptions:"mcqOptions",solutions:"solutions",layout:"layout",cardinality:"cardinality",replayed:"replayed",tryAgain:"tryAgain"},outputs:{showPopup:"showPopup",optionSelected:"optionSelected"},features:[t.TTD],decls:4,vars:4,consts:[["class","quml-mcq-options","role","radiogroup",4,"ngIf"],[4,"ngIf"],["class","",4,"ngIf"],["role","radiogroup",1,"quml-mcq-options"],["class","quml-option-card","tabindex","0","role","checkbox","aria-labelledby","option-checkbox",3,"keydown","click",4,"ngFor","ngForOf"],["tabindex","0","role","checkbox","aria-labelledby","option-checkbox",1,"quml-option-card",3,"keydown","click"],[1,"quml-option",3,"ngClass"],["tabindex","0",1,"option",3,"innerHTML"],[1,"container"],["type","radio","name","radio","id","option-checkbox","tabindex","-1",3,"checked"],[1,"checkmark"],[1,"qumlImageOption"],[1,"wrapper"],[4,"ngFor","ngForOf"],[3,"mcqOption","imgOptionSelected"],[1,"qumlOption-imageQaGrid"],[1,""]],template:function(I,m){1&I&&(t.YNc(0,a2,2,1,"div",0),t.YNc(1,ho,4,1,"div",1),t.YNc(2,Xs,4,1,"div",1),t.YNc(3,_0,4,1,"div",2)),2&I&&(t.Q6J("ngIf","DEFAULT"==m.layout||"IMAGEQOPTION"==m.layout),t.xp6(1),t.Q6J("ngIf","IMAGEGRID"==m.layout),t.xp6(1),t.Q6J("ngIf","IMAGEQAGRID"==m.layout),t.xp6(1),t.Q6J("ngIf","MULTIIMAGEGRID"==m.layout))},directives:function(){return[ct.O5,ct.sg,ct.mk,o1]},pipes:function(){return[Ho]},styles:[':root{--quml-btn-border:#ccc;--quml-color-gray:#666;--quml-checkmark:#cdcdcd;--quml-color-primary-shade:rgba(0, 0, 0, .1);--quml-color-success:#08BC82;--quml-color-danger:#F1635D;--quml-option-card-bg:#fff;--quml-option-selected-checkmark:#fff;--quml-option-selected-checkmark-icon:#fff}.quml-mcq-options[_ngcontent-%COMP%]{align-items:center;margin-bottom:.5rem}.quml-option-card[_ngcontent-%COMP%] .option[_ngcontent-%COMP%]{color:var(--quml-active-slide);color:var(--quml-color-gray);font-size:.875rem} .quml-option-card .option p{margin-bottom:0}.quml-option[_ngcontent-%COMP%] label.container[_ngcontent-%COMP%]{margin:0 auto}.quml-option-card[_ngcontent-%COMP%]{margin-bottom:1rem}.quml-option[_ngcontent-%COMP%]{position:relative;background-color:var(--quml-option-card-bg);padding:1rem;border-radius:.25rem;border:.0625rem solid var(--quml-btn-border);box-shadow:0 .125rem .75rem 0 var(--quml-color-primary-shade);display:flex;align-items:center;justify-content:space-between;height:100%;gap:.5rem}.quml-option[_ngcontent-%COMP%] .option[_ngcontent-%COMP%]{flex:1}.quml-option--selected[_ngcontent-%COMP%]{border:.125rem solid var(--primary-color)}.selected-option[_ngcontent-%COMP%]{border:.125rem solid var(--primary-color)}.selected-option-text[_ngcontent-%COMP%]{color:var(--primary-color)!important}.container[_ngcontent-%COMP%]{padding-right:0!important}.checkmark[_ngcontent-%COMP%]{display:block;height:1.25rem;width:1.25rem;border-radius:50%;border:.125rem solid var(--quml-checkmark)}.container[_ngcontent-%COMP%] input[_ngcontent-%COMP%]{position:absolute;opacity:0;cursor:pointer}.container[_ngcontent-%COMP%] input[_ngcontent-%COMP%]:checked ~ .checkmark[_ngcontent-%COMP%], .quml-option--selected[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]{position:relative;background-color:var(--quml-option-selected-checkmark);border:.125rem solid var(--primary-color)}.quml-option--selected[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after, input[_ngcontent-%COMP%]:checked ~ .checkmark[_ngcontent-%COMP%]:after{content:"";opacity:1}.container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after, .quml-option--selected[_ngcontent-%COMP%] .container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after{margin:0;width:.75rem;height:.75rem;border-radius:50%;background:var(--primary-color);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);opacity:0}.quml-option--selected[_ngcontent-%COMP%] .container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after{opacity:1}img[_ngcontent-%COMP%]{width:100%!important}.option-img[_ngcontent-%COMP%]{position:relative}.option-img[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:100%}.icon-zommin[_ngcontent-%COMP%]{position:absolute;bottom:0;right:0;content:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTlweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMTkgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYyICg5MTM5MCkgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+em9vbTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJkZXZzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iem9vbSI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik05LjUsMCBMMTgsMCBDMTguNTUyMjg0NywtMS4wMTQ1MzA2M2UtMTYgMTksMC40NDc3MTUyNSAxOSwxIEwxOSwxMyBDMTksMTYuMzEzNzA4NSAxNi4zMTM3MDg1LDE5IDEzLDE5IEwxLDE5IEMwLjQ0NzcxNTI1LDE5IDYuNzYzNTM3NTFlLTE3LDE4LjU1MjI4NDcgMCwxOCBMMCw5LjUgQy02LjQyNTM2MDY0ZS0xNiw0LjI1MzI5NDg4IDQuMjUzMjk0ODgsOS42MzgwNDA5NWUtMTYgOS41LDAgWiIgaWQ9IlJlY3RhbmdsZSIgZmlsbC1vcGFjaXR5PSIwLjUiIGZpbGw9IiM0MzQzNDMiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9wYXRoPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUuMDAwMDAwLCA0LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTQuNTgzMzMzMzMsMC43NSBDNi45NzY2NjY2NywwLjc1IDguOTE2NjY2NjcsMi42OSA4LjkxNjY2NjY3LDUuMDgzMzMzMzMgQzguOTE2NjY2NjcsNi4xNTY2NjY2NyA4LjUyMzMzMzMzLDcuMTQzMzMzMzMgNy44Nyw3LjkwMzMzMzMzIEw3Ljg3LDcuOTAzMzMzMzMgTDguMDU2NjY2NjcsOC4wODMzMzMzMyBMOC41ODMzMzMzMyw4LjA4MzMzMzMzIEwxMS45MSwxMS40MTY2NjY3IEwxMC45MTY2NjY3LDEyLjQxIEw3LjU4MzMzMzMzLDkuMDgzMzMzMzMgTDcuNTgzMzMzMzMsOC41NTY2NjY2NyBMNy40MDMzMzMzMyw4LjM3IEM2LjY0MzMzMzMzLDkuMDIzMzMzMzMgNS42NTY2NjY2Nyw5LjQxNjY2NjY3IDQuNTgzMzMzMzMsOS40MTY2NjY2NyBDMi4xOSw5LjQxNjY2NjY3IDAuMjUsNy40NzY2NjY2NyAwLjI1LDUuMDgzMzMzMzMgQzAuMjUsMi42OSAyLjE5LDAuNzUgNC41ODMzMzMzMywwLjc1IFogTTQuNTgzMzMzMzMsMi4wODMzMzMzMyBDMi45MjMzMzMzMywyLjA4MzMzMzMzIDEuNTgzMzMzMzMsMy40MjMzMzMzMyAxLjU4MzMzMzMzLDUuMDgzMzMzMzMgQzEuNTgzMzMzMzMsNi43NDMzMzMzMyAyLjkyMzMzMzMzLDguMDgzMzMzMzMgNC41ODMzMzMzMyw4LjA4MzMzMzMzIEM2LjI0MzMzMzMzLDguMDgzMzMzMzMgNy41ODMzMzMzMyw2Ljc0MzMzMzMzIDcuNTgzMzMzMzMsNS4wODMzMzMzMyBDNy41ODMzMzMzMywzLjQyMzMzMzMzIDYuMjQzMzMzMzMsMi4wODMzMzMzMyA0LjU4MzMzMzMzLDIuMDgzMzMzMzMgWiBNNC45MTY2NjY2NywzLjQxNjY2NjY3IEw0LjkxNjY2NjY3LDQuNzUgTDYuMjUsNC43NSBMNi4yNSw1LjQxNjY2NjY3IEw0LjkxNjY2NjY3LDUuNDE2NjY2NjcgTDQuOTE2NjY2NjcsNi43NSBMNC4yNSw2Ljc1IEw0LjI1LDUuNDE2NjY2NjcgTDIuOTE2NjY2NjcsNS40MTY2NjY2NyBMMi45MTY2NjY2Nyw0Ljc1IEw0LjI1LDQuNzUgTDQuMjUsMy40MTY2NjY2NyBMNC45MTY2NjY2NywzLjQxNjY2NjY3IFoiIGlkPSJDb21iaW5lZC1TaGFwZSI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=)}.qumlImageOption[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{margin-top:2rem;display:-ms-grid;display:grid;gap:1rem}.qumlOption-imageQaGrid[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr);grid-gap:1rem}@media only screen and (max-width:640px){.qumlOption-imageQaGrid[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{-ms-grid-columns:(1fr)[1];grid-template-columns:repeat(1,1fr)}}@media only screen and (max-width:840px){.qumlImageOption[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr)}}@media only screen and (max-width:640px){.qumlImageOption[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{-ms-grid-columns:(1fr)[1];grid-template-columns:repeat(1,1fr)}}']}),i1.ctorParameters=function(){return[{type:ia}]},i1.propDecorators={mcqOptions:[{type:t.IIB}],solutions:[{type:t.IIB}],layout:[{type:t.IIB}],cardinality:[{type:t.IIB}],showPopup:[{type:t.r_U}],optionSelected:[{type:t.r_U}],replayed:[{type:t.IIB}],tryAgain:[{type:t.IIB}]};var a1=function(){function b(){(0,L.Z)(this,b),this.popUpClose=new t.vpe}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}},{key:"ngAfterViewInit",value:function(){var m=document.getElementById("htmlTag");m&&(m.getElementsByTagName("img")[0].style.width="70%")}},{key:"closePopup",value:function(){this.popUpClose.emit()}}]),b}();a1.\u0275fac=function(I){return new(I||a1)},a1.\u0275cmp=t.Xpm({type:a1,selectors:[["quml-quml-popup"]],inputs:{image:"image",htmlTag:"htmlTag"},outputs:{popUpClose:"popUpClose"},decls:5,vars:2,consts:[[1,"quml-popup"],[1,"quml-popup-icon",3,"click"],[3,"src",4,"ngIf"],["class","htmlTag","id","htmlTag",3,"innerHtml",4,"ngIf"],[3,"src"],["id","htmlTag",1,"htmlTag",3,"innerHtml"]],template:function(I,m){1&I&&(t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.NdJ("click",function(){return m.closePopup()}),t._uU(2,"\u2715"),t.qZA(),t.YNc(3,y0,1,1,"img",2),t.qZA(),t.YNc(4,$2,2,3,"div",3)),2&I&&(t.xp6(3),t.Q6J("ngIf",!m.htmlTag),t.xp6(1),t.Q6J("ngIf",m.htmlTag))},directives:function(){return[ct.O5]},pipes:function(){return[Ho]},styles:[".quml-popup[_ngcontent-%COMP%]{position:absolute;left:0;bottom:0;right:0;background:rgba(0,0,0,.4);top:0;padding:1rem;display:flex;align-items:center;justify-content:center;z-index:2}.quml-popup[_ngcontent-%COMP%] .quml-popup-icon[_ngcontent-%COMP%]{font-size:1.25rem;right:10%;position:absolute;cursor:pointer;z-index:2;color:var(--white);top:8%}.quml-popup[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{box-shadow:0 .25rem .5rem 0 rgba(0,0,0,.2);height:90%;border-radius:.5rem;position:absolute;z-index:2}.htmlTag[_ngcontent-%COMP%]{position:absolute;top:15%;left:27%;z-index:10}@media only screen and (max-width:640px){.htmlTag[_ngcontent-%COMP%]{position:absolute;top:10%;left:27%;z-index:10}}"]}),a1.ctorParameters=function(){return[]},a1.propDecorators={image:[{type:t.IIB}],htmlTag:[{type:t.IIB}],popUpClose:[{type:t.r_U}]};var o1=function(){function b(){(0,L.Z)(this,b),this.showQumlPopup=!1,this.imgOptionSelected=new t.vpe}return(0,C.Z)(b,[{key:"showPopup",value:function(m){this.showQumlPopup=!0,this.qumlPopupImage=m}},{key:"optionClicked",value:function(m,x){m.hasOwnProperty("stopImmediatePropagation")&&m.stopImmediatePropagation(),this.imgOptionSelected.emit({name:"optionSelect",option:x,solutions:this.solutions})}},{key:"onEnter",value:function(m,x){"Enter"===m.key&&(m.stopPropagation(),this.optionClicked(m,x))}},{key:"openPopup",value:function(m){this.showQumlPopup=!0,this.qumlPopupImage=m}},{key:"closePopUp",value:function(){this.showQumlPopup=!1}}]),b}();o1.\u0275fac=function(I){return new(I||o1)},o1.\u0275cmp=t.Xpm({type:o1,selectors:[["quml-mcq-image-option"]],inputs:{mcqQuestion:"mcqQuestion",solutions:"solutions",mcqOption:"mcqOption"},outputs:{imgOptionSelected:"imgOptionSelected"},decls:5,vars:3,consts:[["tabindex","0",1,"quml-mcq-option-card",3,"ngClass","click","keydown"],["class","option",3,"innerHTML",4,"ngIf"],[1,"container"],["type","radio","name","radio","role","radio",3,"checked"],[1,"checkmark"],[1,"option",3,"innerHTML"]],template:function(I,m){1&I&&(t.TgZ(0,"div",0),t.NdJ("click",function(Y){return m.optionClicked(Y,m.mcqOption)})("keydown",function(Y){return m.onEnter(Y,m.mcqOption)}),t.YNc(1,C0,2,3,"div",1),t.TgZ(2,"label",2),t._UZ(3,"input",3),t._UZ(4,"span",4),t.qZA(),t.qZA()),2&I&&(t.Q6J("ngClass",null!=m.mcqOption&&m.mcqOption.selected?"quml-mcq-option-card quml-option--selected":"quml-mcq-option-card"),t.xp6(1),t.Q6J("ngIf",m.mcqOption),t.xp6(2),t.Q6J("checked",null==m.mcqOption?null:m.mcqOption.selected))},directives:function(){return[ct.mk,ct.O5]},pipes:function(){return[Ho]},styles:[':root{--quml-btn-border:#ccc;--quml-color-gray:#666;--quml-checkmark:#cdcdcd;--quml-color-primary-shade:rgba(0, 0, 0, .1);--quml-option-card-bg:#fff;--quml-option-selected-checkmark:#ffff}.quml-mcq-option-card[_ngcontent-%COMP%]{position:relative;background-color:var(--quml-option-card-bg);padding:1rem;border-radius:.25rem;border:.0625rem solid var(--quml-btn-border);box-shadow:0 .125rem .75rem 0 var(--quml-color-primary-shade);display:flex;align-items:center;justify-content:space-between;height:100%;gap:.5rem}.quml-mcq-option-card[_ngcontent-%COMP%] .option-image[_ngcontent-%COMP%]{position:relative}.quml-mcq-option-card[_ngcontent-%COMP%] .option-image[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{min-width:100%;vertical-align:bottom;width:100%!important}.quml-mcq-option-card[_ngcontent-%COMP%] .option[_ngcontent-%COMP%]{color:var(--quml-color-gray);font-size:.75rem;font-weight:700;flex:1}.quml-mcq-option-card[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{margin-bottom:0}.zoom-in-icon[_ngcontent-%COMP%]{position:absolute;right:.5rem;bottom:0} .quml-mcq-option-card .option img{max-width:100%} .quml-mcq-option-card .option label{margin-bottom:0}.selected-option-text[_ngcontent-%COMP%]{color:var(--primary-color)!important}.icon-zommin[_ngcontent-%COMP%]{position:absolute;bottom:2px;right:-1px;content:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTlweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMTkgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYyICg5MTM5MCkgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+em9vbTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJkZXZzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iem9vbSI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik05LjUsMCBMMTgsMCBDMTguNTUyMjg0NywtMS4wMTQ1MzA2M2UtMTYgMTksMC40NDc3MTUyNSAxOSwxIEwxOSwxMyBDMTksMTYuMzEzNzA4NSAxNi4zMTM3MDg1LDE5IDEzLDE5IEwxLDE5IEMwLjQ0NzcxNTI1LDE5IDYuNzYzNTM3NTFlLTE3LDE4LjU1MjI4NDcgMCwxOCBMMCw5LjUgQy02LjQyNTM2MDY0ZS0xNiw0LjI1MzI5NDg4IDQuMjUzMjk0ODgsOS42MzgwNDA5NWUtMTYgOS41LDAgWiIgaWQ9IlJlY3RhbmdsZSIgZmlsbC1vcGFjaXR5PSIwLjUiIGZpbGw9IiM0MzQzNDMiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9wYXRoPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUuMDAwMDAwLCA0LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTQuNTgzMzMzMzMsMC43NSBDNi45NzY2NjY2NywwLjc1IDguOTE2NjY2NjcsMi42OSA4LjkxNjY2NjY3LDUuMDgzMzMzMzMgQzguOTE2NjY2NjcsNi4xNTY2NjY2NyA4LjUyMzMzMzMzLDcuMTQzMzMzMzMgNy44Nyw3LjkwMzMzMzMzIEw3Ljg3LDcuOTAzMzMzMzMgTDguMDU2NjY2NjcsOC4wODMzMzMzMyBMOC41ODMzMzMzMyw4LjA4MzMzMzMzIEwxMS45MSwxMS40MTY2NjY3IEwxMC45MTY2NjY3LDEyLjQxIEw3LjU4MzMzMzMzLDkuMDgzMzMzMzMgTDcuNTgzMzMzMzMsOC41NTY2NjY2NyBMNy40MDMzMzMzMyw4LjM3IEM2LjY0MzMzMzMzLDkuMDIzMzMzMzMgNS42NTY2NjY2Nyw5LjQxNjY2NjY3IDQuNTgzMzMzMzMsOS40MTY2NjY2NyBDMi4xOSw5LjQxNjY2NjY3IDAuMjUsNy40NzY2NjY2NyAwLjI1LDUuMDgzMzMzMzMgQzAuMjUsMi42OSAyLjE5LDAuNzUgNC41ODMzMzMzMywwLjc1IFogTTQuNTgzMzMzMzMsMi4wODMzMzMzMyBDMi45MjMzMzMzMywyLjA4MzMzMzMzIDEuNTgzMzMzMzMsMy40MjMzMzMzMyAxLjU4MzMzMzMzLDUuMDgzMzMzMzMgQzEuNTgzMzMzMzMsNi43NDMzMzMzMyAyLjkyMzMzMzMzLDguMDgzMzMzMzMgNC41ODMzMzMzMyw4LjA4MzMzMzMzIEM2LjI0MzMzMzMzLDguMDgzMzMzMzMgNy41ODMzMzMzMyw2Ljc0MzMzMzMzIDcuNTgzMzMzMzMsNS4wODMzMzMzMyBDNy41ODMzMzMzMywzLjQyMzMzMzMzIDYuMjQzMzMzMzMsMi4wODMzMzMzMyA0LjU4MzMzMzMzLDIuMDgzMzMzMzMgWiBNNC45MTY2NjY2NywzLjQxNjY2NjY3IEw0LjkxNjY2NjY3LDQuNzUgTDYuMjUsNC43NSBMNi4yNSw1LjQxNjY2NjY3IEw0LjkxNjY2NjY3LDUuNDE2NjY2NjcgTDQuOTE2NjY2NjcsNi43NSBMNC4yNSw2Ljc1IEw0LjI1LDUuNDE2NjY2NjcgTDIuOTE2NjY2NjcsNS40MTY2NjY2NyBMMi45MTY2NjY2Nyw0Ljc1IEw0LjI1LDQuNzUgTDQuMjUsMy40MTY2NjY2NyBMNC45MTY2NjY2NywzLjQxNjY2NjY3IFoiIGlkPSJDb21iaW5lZC1TaGFwZSI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=)}.image-option-selected[_ngcontent-%COMP%]{border:.125rem solid var(--primary-color)}.checkmark[_ngcontent-%COMP%]{display:block;height:1.25rem;width:1.25rem;border-radius:50%;border:.125rem solid var(--quml-checkmark)}.container[_ngcontent-%COMP%] input[_ngcontent-%COMP%]{position:absolute;opacity:0;cursor:pointer}.container[_ngcontent-%COMP%] input[_ngcontent-%COMP%]:checked ~ .checkmark[_ngcontent-%COMP%], .quml-option--selected[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]{position:relative;background-color:var(--quml-option-selected-checkmark);border:.125rem solid var(--primary-color)}.quml-option--selected[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after, input[_ngcontent-%COMP%]:checked ~ .checkmark[_ngcontent-%COMP%]:after{content:"";opacity:1}.container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after, .quml-option--selected[_ngcontent-%COMP%] .container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after{margin:0;width:.75rem;height:.75rem;border-radius:50%;background:var(--primary-color);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);opacity:0}.quml-option--selected[_ngcontent-%COMP%] .container[_ngcontent-%COMP%] .checkmark[_ngcontent-%COMP%]:after{opacity:1}.quml-option--selected[_ngcontent-%COMP%]{border:.125rem solid var(--primary-color)}']}),o1.propDecorators={mcqQuestion:[{type:t.IIB}],solutions:[{type:t.IIB}],mcqOption:[{type:t.IIB}],imgOptionSelected:[{type:t.r_U}]};var s1=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();s1.\u0275fac=function(I){return new(I||s1)},s1.\u0275cmp=t.Xpm({type:s1,selectors:[["quml-zoom-in"]],decls:22,vars:0,consts:[["version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink","x","0px","y","0px","width","12px","height","12px","viewBox","0 0 512 512",0,"xml","space","preserve",2,"enable-background","new 0 0 512 512"],["d","M506.141,477.851L361.689,333.399c65.814-80.075,61.336-198.944-13.451-273.73c-79.559-79.559-209.01-79.559-288.569,0\n\t\t\ts-79.559,209.01,0,288.569c74.766,74.766,193.62,79.293,273.73,13.451l144.452,144.452c7.812,7.812,20.477,7.812,28.289,0\n\t\t\tC513.953,498.328,513.953,485.663,506.141,477.851z M319.949,319.948c-63.96,63.96-168.03,63.959-231.99,0\n\t\t\tc-63.96-63.96-63.96-168.03,0-231.99c63.958-63.957,168.028-63.962,231.99,0C383.909,151.918,383.909,255.988,319.949,319.948z"],["d","M301.897,183.949h-77.94v-77.94c0-11.048-8.956-20.004-20.004-20.004c-11.048,0-20.004,8.956-20.004,20.004v77.94h-77.94\n\t\t\tc-11.048,0-20.004,8.956-20.004,20.004c0,11.048,8.956,20.004,20.004,20.004h77.94v77.94c0,11.048,8.956,20.004,20.004,20.004\n\t\t\tc11.048,0,20.004-8.956,20.004-20.004v-77.94h77.94c11.048,0,20.004-8.956,20.004-20.004\n\t\t\tC321.901,192.905,312.945,183.949,301.897,183.949z"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"g"),t.TgZ(2,"g"),t._UZ(3,"path",1),t.qZA(),t.qZA(),t.TgZ(4,"g"),t.TgZ(5,"g"),t._UZ(6,"path",2),t.qZA(),t.qZA(),t._UZ(7,"g"),t._UZ(8,"g"),t._UZ(9,"g"),t._UZ(10,"g"),t._UZ(11,"g"),t._UZ(12,"g"),t._UZ(13,"g"),t._UZ(14,"g"),t._UZ(15,"g"),t._UZ(16,"g"),t._UZ(17,"g"),t._UZ(18,"g"),t._UZ(19,"g"),t._UZ(20,"g"),t._UZ(21,"g"),t.qZA())},styles:[""]}),s1.ctorParameters=function(){return[]};var N1=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();N1.\u0275fac=function(I){return new(I||N1)},N1.\u0275cmp=t.Xpm({type:N1,selectors:[["quml-star"]],decls:9,vars:0,consts:[["width","18px","height","19px","viewBox","0 0 20 19","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["x1","50%","y1","0%","x2","50%","y2","100%","id","linearGradient-1"],["stop-color","#FFE500","offset","0%"],["stop-color","#E6B302","offset","100%"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["d","M9.52906513,1.05447851 C9.88447433,0.933955771 10.2858614,0.949017066 10.6489852,1.12822939 C10.9381809,1.27095597 11.1722611,1.50503624 11.3149877,1.79423187 L11.3149877,1.79423187 L12.3803318,3.95285472 C12.8901488,4.98585688 13.8756284,5.70184969 15.0156139,5.86749929 L15.0156139,5.86749929 L17.3977957,6.21365056 C17.7985266,6.27188017 18.1377182,6.4870255 18.3621696,6.78779616 C18.586621,7.08856682 18.6963323,7.47496281 18.6381027,7.87569375 C18.591728,8.19484007 18.4414393,8.48979843 18.2105028,8.71490584 L18.2105028,8.71490584 L16.4867399,10.3951594 C15.6618386,11.1992394 15.2854189,12.3577401 15.4801517,13.4931194 L15.4801517,13.4931194 L15.8870769,15.8656755 C15.9555299,16.2647872 15.8557305,16.6538611 15.6390399,16.9602703 C15.4223493,17.2666796 15.0887676,17.4904241 14.6896558,17.5588771 C14.3717991,17.6133938 14.0448352,17.5616079 13.7593821,17.4115363 L13.7593821,17.4115363 L11.6286939,16.2913672 C10.6090599,15.7553139 9.39094014,15.7553139 8.37130605,16.2913672 L8.37130605,16.2913672 L6.24061792,17.4115363 C5.88219327,17.5999712 5.48132228,17.6252868 5.12294871,17.5138875 C4.76457514,17.4024881 4.44869898,17.1543739 4.26026399,16.7959492 C4.11019239,16.5104961 4.0584064,16.1835322 4.1129231,15.8656755 L4.1129231,15.8656755 L4.51984832,13.4931194 C4.7145811,12.3577401 4.33816141,11.1992394 3.51326011,10.3951594 L3.51326011,10.3951594 L1.7894972,8.71490584 C1.49952557,8.43225335 1.35157308,8.05882533 1.34677662,7.68356752 C1.34198016,7.3083097 1.48033973,6.93122211 1.76299222,6.64125047 C1.98809962,6.41031402 2.28305798,6.26002523 2.6022043,6.21365056 L2.6022043,6.21365056 L4.98438605,5.86749929 C6.12437162,5.70184969 7.10985117,4.98585688 7.61966822,3.95285472 L7.61966822,3.95285472 L8.68501228,1.79423187 C8.86422461,1.43110804 9.17365593,1.17500126 9.52906513,1.05447851 Z","id","Star","stroke","#EDBA01","fill","url(#linearGradient-1)"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"Star"),t.qZA(),t.TgZ(3,"defs"),t.TgZ(4,"linearGradient",1),t._UZ(5,"stop",2),t._UZ(6,"stop",3),t.qZA(),t.qZA(),t.TgZ(7,"g",4),t._UZ(8,"path",5),t.qZA(),t.qZA())},styles:[""]}),N1.ctorParameters=function(){return[]};var Jl=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();Jl.\u0275fac=function(I){return new(I||Jl)},Jl.\u0275cmp=t.Xpm({type:Jl,selectors:[["quml-previous"]],decls:30,vars:0,consts:[["width","60px","height","36px","viewBox","0 0 60 36","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","path-1","x","0","y","0","width","60","height","36","rx","18"],["x","-5.8%","y","-9.7%","width","111.7%","height","119.4%","filterUnits","objectBoundingBox","id","filter-2"],["stdDeviation","3","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0","type","matrix","in","shadowInnerInner1"],["id","path-3","x","0","y","0","width","54","height","30","rx","15"],["x","-2.8%","y","-5.0%","width","105.6%","height","110.0%","filterUnits","objectBoundingBox","id","filter-4"],["stdDeviation","0.5","in","SourceGraphic"],["x","-5.6%","y","-10.0%","width","111.1%","height","120.0%","filterUnits","objectBoundingBox","id","filter-5"],["stdDeviation","1","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","-1","in","shadowBlurInner1","result","shadowOffsetInner1"],["id","button/previous2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Group-Copy"],["id","Rectangle-5-Copy","opacity","0.1","fill-rule","nonzero"],["fill","#CCCCCC",0,"xlink","href","#path-1"],["fill","black","fill-opacity","1","filter","url(#filter-2)",0,"xlink","href","#path-1"],["id","Group-2","transform","translate(3.000000, 3.000000)"],["id","Rectangle-5-Copy-2","fill-rule","nonzero","filter","url(#filter-4)"],["fill","#FFFFFF",0,"xlink","href","#path-3"],["fill","black","fill-opacity","1","filter","url(#filter-5)",0,"xlink","href","#path-3"],["id","Shape","fill","#6D7278","points","31 10.41 29.59 9 23.59 15 29.59 21 31 19.59 26.42 15"],["id","Icon-24px","transform","translate(30.000000, 18.000000) scale(-1, 1) translate(-30.000000, -18.000000) translate(26.000000, 12.000000)"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"Previous"),t.qZA(),t.TgZ(3,"defs"),t._UZ(4,"rect",1),t.TgZ(5,"filter",2),t._UZ(6,"feGaussianBlur",3),t._UZ(7,"feOffset",4),t._UZ(8,"feComposite",5),t._UZ(9,"feColorMatrix",6),t.qZA(),t._UZ(10,"rect",7),t.TgZ(11,"filter",8),t._UZ(12,"feGaussianBlur",9),t.qZA(),t.TgZ(13,"filter",10),t._UZ(14,"feGaussianBlur",11),t._UZ(15,"feOffset",12),t._UZ(16,"feComposite",5),t._UZ(17,"feColorMatrix",6),t.qZA(),t.qZA(),t.TgZ(18,"g",13),t.TgZ(19,"g",14),t.TgZ(20,"g",15),t.TgZ(21,"g",16),t._UZ(22,"use",17),t._UZ(23,"use",18),t.qZA(),t.TgZ(24,"g",19),t.TgZ(25,"g",20),t._UZ(26,"use",21),t._UZ(27,"use",22),t.qZA(),t._UZ(28,"polygon",23),t.qZA(),t.qZA(),t._UZ(29,"g",24),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),Jl.ctorParameters=function(){return[]};var fl=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();fl.\u0275fac=function(I){return new(I||fl)},fl.\u0275cmp=t.Xpm({type:fl,selectors:[["quml-next"]],decls:30,vars:0,consts:[["width","60px","height","36px","viewBox","0 0 60 36","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","path-1","x","0","y","0","width","60","height","36","rx","18"],["x","-5.8%","y","-9.7%","width","111.7%","height","119.4%","filterUnits","objectBoundingBox","id","filter-2"],["stdDeviation","3","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0","type","matrix","in","shadowInnerInner1"],["id","path-3","x","0","y","0","width","54","height","30","rx","15"],["x","-2.8%","y","-5.0%","width","105.6%","height","110.0%","filterUnits","objectBoundingBox","id","filter-4"],["stdDeviation","0.5","in","SourceGraphic"],["x","-5.6%","y","-10.0%","width","111.1%","height","120.0%","filterUnits","objectBoundingBox","id","filter-5"],["stdDeviation","1","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","-1","in","shadowBlurInner1","result","shadowOffsetInner1"],["id","button/next2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Group-Copy"],["id","Rectangle-5-Copy","opacity","0.1","fill-rule","nonzero"],["fill","#CCCCCC",0,"xlink","href","#path-1"],["fill","black","fill-opacity","1","filter","url(#filter-2)",0,"xlink","href","#path-1"],["id","Group-2","transform","translate(3.000000, 3.000000)"],["id","Rectangle-5-Copy-2","fill-rule","nonzero","filter","url(#filter-4)"],["fill","#FFFFFF",0,"xlink","href","#path-3"],["fill","black","fill-opacity","1","filter","url(#filter-5)",0,"xlink","href","#path-3"],["id","Shape","fill","#6D7278","transform","translate(27.295000, 15.000000) scale(-1, 1) translate(-27.295000, -15.000000) ","points","31 10.41 29.59 9 23.59 15 29.59 21 31 19.59 26.42 15"],["id","Icon-24px","transform","translate(30.000000, 18.000000) scale(-1, 1) translate(-30.000000, -18.000000) translate(26.000000, 12.000000)"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"Next"),t.qZA(),t.TgZ(3,"defs"),t._UZ(4,"rect",1),t.TgZ(5,"filter",2),t._UZ(6,"feGaussianBlur",3),t._UZ(7,"feOffset",4),t._UZ(8,"feComposite",5),t._UZ(9,"feColorMatrix",6),t.qZA(),t._UZ(10,"rect",7),t.TgZ(11,"filter",8),t._UZ(12,"feGaussianBlur",9),t.qZA(),t.TgZ(13,"filter",10),t._UZ(14,"feGaussianBlur",11),t._UZ(15,"feOffset",12),t._UZ(16,"feComposite",5),t._UZ(17,"feColorMatrix",6),t.qZA(),t.qZA(),t.TgZ(18,"g",13),t.TgZ(19,"g",14),t.TgZ(20,"g",15),t.TgZ(21,"g",16),t._UZ(22,"use",17),t._UZ(23,"use",18),t.qZA(),t.TgZ(24,"g",19),t.TgZ(25,"g",20),t._UZ(26,"use",21),t._UZ(27,"use",22),t.qZA(),t._UZ(28,"polygon",23),t.qZA(),t.qZA(),t._UZ(29,"g",24),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),fl.ctorParameters=function(){return[]};var pl=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();pl.\u0275fac=function(I){return new(I||pl)},pl.\u0275cmp=t.Xpm({type:pl,selectors:[["quml-bookmark"]],decls:5,vars:0,consts:[["width","14px","height","18px","viewBox","0 0 14 18","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["d","M12,0 L2,0 C0.9,0 0.01,0.9 0.01,2 L0,18 L7,15 L14,18 L14,2 C14,0.9 13.1,0 12,0 L12,0 Z M12,15 L7,12.82 L2,15 L2,2 L12,2 L12,15 L12,15 Z","id","bookmark","fill","#6D7278"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"bookmark"),t.qZA(),t.TgZ(3,"g",1),t._UZ(4,"path",2),t.qZA(),t.qZA())},styles:[""]}),pl.ctorParameters=function(){return[]};var Xl=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();Xl.\u0275fac=function(I){return new(I||Xl)},Xl.\u0275cmp=t.Xpm({type:Xl,selectors:[["quml-hint"]],decls:5,vars:0,consts:[["width","14px","height","20px","viewBox","0 0 14 20","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["d","M4,19 C4,19.55 4.45,20 5,20 L9,20 C9.55,20 10,19.55 10,19 L10,18 L4,18 L4,19 L4,19 Z M7,0 C3.14,0 0,3.14 0,7 C0,9.38 1.19,11.47 3,12.74 L3,15 C3,15.55 3.45,16 4,16 L10,16 C10.55,16 11,15.55 11,15 L11,12.74 C12.81,11.47 14,9.38 14,7 C14,3.14 10.86,0 7,0 L7,0 Z M9.85,11.1 L9,11.7 L9,14 L5,14 L5,11.7 L4.15,11.1 C2.8,10.16 2,8.63 2,7 C2,4.24 4.24,2 7,2 C9.76,2 12,4.24 12,7 C12,8.63 11.2,10.16 9.85,11.1 L9.85,11.1 Z","id","hint","fill","#6D7278"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"hint"),t.qZA(),t.TgZ(3,"g",1),t._UZ(4,"path",2),t.qZA(),t.qZA())},styles:[""]}),Xl.ctorParameters=function(){return[]};var hl=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();hl.\u0275fac=function(I){return new(I||hl)},hl.\u0275cmp=t.Xpm({type:hl,selectors:[["quml-ans"]],decls:7,vars:0,consts:[["tabindex","0","width","25px","height","25px","viewBox","0 0 25 25","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","ans"],["id","Oval","stroke","#979797","cx","12.0235","cy","12.0235","r","11.5235"],["d","M5.9515,14.5235 L6.3675,13.1635 L8.4475,13.1635 L8.8635,14.5235 L10.1675,14.5235 L8.1435,8.7875 L6.6635,8.7875 L4.6475,14.5235 L5.9515,14.5235 Z M8.1595,12.1475 L6.6715,12.1475 L7.0795,10.8195 C7.10083333,10.7608333 7.1315,10.6608333 7.1715,10.5195 C7.2115,10.3781667 7.25416667,10.2288333 7.2995,10.0715 C7.34483333,9.91416667 7.38083333,9.78216667 7.4075,9.6755 C7.43416667,9.78216667 7.46883333,9.9075 7.5115,10.0515 C7.55416667,10.1955 7.59683333,10.3368333 7.6395,10.4755 C7.68216667,10.6141667 7.71683333,10.7288333 7.7435,10.8195 L7.7435,10.8195 L8.1595,12.1475 Z M11.9835,14.5235 L11.9835,12.4675 C11.9835,12.0035 12.0501667,11.6475 12.1835,11.3995 C12.3168333,11.1515 12.5648333,11.0275 12.9275,11.0275 C13.1728333,11.0275 13.3515,11.1061667 13.4635,11.2635 C13.5755,11.4208333 13.6315,11.6568333 13.6315,11.9715 L13.6315,11.9715 L13.6315,14.5235 L14.8235,14.5235 L14.8235,11.6755 C14.8235,11.1155 14.6821667,10.7088333 14.3995,10.4555 C14.1168333,10.2021667 13.7408333,10.0755 13.2715,10.0755 C12.9995,10.0755 12.7421667,10.1261667 12.4995,10.2275 C12.2568333,10.3288333 12.0661667,10.4915 11.9275,10.7155 L11.9275,10.7155 L11.8635,10.7155 L11.7035,10.1555 L10.7915,10.1555 L10.7915,14.5235 L11.9835,14.5235 Z M17.2315,14.6035 C17.8501667,14.6035 18.3155,14.4848333 18.6275,14.2475 C18.9395,14.0101667 19.0955,13.6701667 19.0955,13.2275 C19.0955,12.9715 19.0461667,12.7608333 18.9475,12.5955 C18.8488333,12.4301667 18.7088333,12.2928333 18.5275,12.1835 C18.3461667,12.0741667 18.1301667,11.9688333 17.8795,11.8675 C17.6235,11.7608333 17.4301667,11.6755 17.2995,11.6115 C17.1688333,11.5475 17.0808333,11.4875 17.0355,11.4315 C16.9901667,11.3755 16.9675,11.3128333 16.9675,11.2435 C16.9675,11.0515 17.1435,10.9555 17.4955,10.9555 C17.6928333,10.9555 17.8875,10.9861667 18.0795,11.0475 C18.2715,11.1088333 18.4741667,11.1848333 18.6875,11.2755 L18.6875,11.2755 L19.0475,10.4195 C18.7861667,10.2968333 18.5328333,10.2088333 18.2875,10.1555 C18.0421667,10.1021667 17.7835,10.0755 17.5115,10.0755 C16.9888333,10.0755 16.5701667,10.1768333 16.2555,10.3795 C15.9408333,10.5821667 15.7835,10.8861667 15.7835,11.2915 C15.7835,11.5368333 15.8261667,11.7408333 15.9115,11.9035 C15.9968333,12.0661667 16.1261667,12.2048333 16.2995,12.3195 C16.4728333,12.4341667 16.6981667,12.5501667 16.9755,12.6675 C17.2581667,12.7848333 17.4661667,12.8808333 17.5995,12.9555 C17.7328333,13.0301667 17.8195,13.0968333 17.8595,13.1555 C17.8995,13.2141667 17.9195,13.2808333 17.9195,13.3555 C17.9195,13.4675 17.8688333,13.5581667 17.7675,13.6275 C17.6661667,13.6968333 17.5008333,13.7315 17.2715,13.7315 C17.0635,13.7315 16.8235,13.6968333 16.5515,13.6275 C16.2795,13.5581667 16.0261667,13.4701667 15.7915,13.3635 L15.7915,13.3635 L15.7915,14.3475 C16.0101667,14.4381667 16.2288333,14.5035 16.4475,14.5435 C16.6661667,14.5835 16.9275,14.6035 17.2315,14.6035 Z","id","Ans","fill","#6D7278","fill-rule","nonzero"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"ans"),t.qZA(),t.TgZ(3,"g",1),t.TgZ(4,"g",2),t._UZ(5,"circle",3),t._UZ(6,"path",4),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),hl.ctorParameters=function(){return[]};var R1=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();R1.\u0275fac=function(I){return new(I||R1)},R1.\u0275cmp=t.Xpm({type:R1,selectors:[["quml-share"]],decls:5,vars:0,consts:[["width","17px","height","18px","viewBox","0 0 17 18","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["d","M13.4613333,12.8088889 C12.7857778,12.8088889 12.1813333,13.0755556 11.7191111,13.4933333 L5.38133333,9.80444444 C5.42577778,9.6 5.46133333,9.39555556 5.46133333,9.18222222 C5.46133333,8.96888889 5.42577778,8.76444444 5.38133333,8.56 L11.648,4.90666667 C12.128,5.35111111 12.7591111,5.62666667 13.4613333,5.62666667 C14.9368889,5.62666667 16.128,4.43555556 16.128,2.96 C16.128,1.48444444 14.9368889,0.293333333 13.4613333,0.293333333 C11.9857778,0.293333333 10.7946667,1.48444444 10.7946667,2.96 C10.7946667,3.17333333 10.8302222,3.37777778 10.8746667,3.58222222 L4.608,7.23555556 C4.128,6.79111111 3.49688889,6.51555556 2.79466667,6.51555556 C1.31911111,6.51555556 0.128,7.70666667 0.128,9.18222222 C0.128,10.6577778 1.31911111,11.8488889 2.79466667,11.8488889 C3.49688889,11.8488889 4.128,11.5733333 4.608,11.1288889 L10.9368889,14.8266667 C10.8924444,15.0133333 10.8657778,15.2088889 10.8657778,15.4044444 C10.8657778,16.8355556 12.0302222,18 13.4613333,18 C14.8924444,18 16.0568889,16.8355556 16.0568889,15.4044444 C16.0568889,13.9733333 14.8924444,12.8088889 13.4613333,12.8088889 L13.4613333,12.8088889 Z","id","share","fill","#6D7278"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"share"),t.qZA(),t.TgZ(3,"g",1),t._UZ(4,"path",2),t.qZA(),t.qZA())},styles:[""]}),R1.ctorParameters=function(){return[]};var $l=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();$l.\u0275fac=function(I){return new(I||$l)},$l.\u0275cmp=t.Xpm({type:$l,selectors:[["quml-correct"]],decls:5,vars:0,consts:[["width","48px","height","48px","viewBox","0 0 21 20","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["d","M10.5,0 C4.98,0 0.5,4.48 0.5,10 C0.5,15.52 4.98,20 10.5,20 C16.02,20 20.5,15.52 20.5,10 C20.5,4.48 16.02,0 10.5,0 L10.5,0 Z M8.5,15 L3.5,10 L4.91,8.59 L8.5,12.17 L16.09,4.58 L17.5,6 L8.5,15 L8.5,15 Z","id","correct-option","fill","#31A679"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"correct option"),t.qZA(),t.TgZ(3,"g",1),t._UZ(4,"path",2),t.qZA(),t.qZA())},styles:[""]}),$l.ctorParameters=function(){return[]};var Ps=function(){function b(I){(0,L.Z)(this,b),this.viewerService=I,this.submitClicked=new t.vpe,this.emitQuestionNo=new t.vpe,this.scoreBoardLoaded=new t.vpe}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){this.scoreBoardLoaded.emit({scoreBoardLoaded:!0}),this.subscription=(0,al.R)(document,"keydown").subscribe(function(m){"Enter"===m.key&&(m.stopPropagation(),document.activeElement.click())})}},{key:"goToQuestion",value:function(m,x){this.emitQuestionNo.emit({questionNo:m,identifier:x})}},{key:"onReviewClicked",value:function(){this.isSections?this.goToQuestion(1,this.scores[0].identifier):this.goToQuestion(1),this.viewerService.raiseHeartBeatEvent(kr_scoreBoardReviewClicked,Nr_interact,Kl_submitPage)}},{key:"ngOnDestroy",value:function(){this.subscription.unsubscribe()}}]),b}();Ps.\u0275fac=function(I){return new(I||Ps)(t.Y36(Ra))},Ps.\u0275cmp=t.Xpm({type:Ps,selectors:[["quml-scoreboard"]],inputs:{scores:"scores",totalNoOfQuestions:"totalNoOfQuestions",contentName:"contentName",showFeedBack:"showFeedBack",isSections:"isSections",summary:"summary"},outputs:{submitClicked:"submitClicked",emitQuestionNo:"emitQuestionNo",scoreBoardLoaded:"scoreBoardLoaded"},decls:24,vars:7,consts:[[1,"scoreboard"],[1,"scoreboard__header"],[1,"scoreboard__title"],[1,"scoreboard__subtitle"],[1,"sections-score-card"],[1,"sections-score-count-info"],[1,"mb-15"],[1,"sections-score-count-sections"],["class","scoreboard__points",4,"ngIf"],[4,"ngIf"],[1,"scoreboard__btn-container"],["type","submit",1,"sb-btn","sb-btn-outline-primary","sb-btn-normal","sb-btn-radius","px-20","mx-8",3,"click"],["type","submit",1,"sb-btn","sb-btn-primary","sb-btn-normal","sb-btn-radius","px-20","mx-8",3,"click"],[1,"scoreboard__points"],["class","scoreboard__index","tabindex","0",3,"ngClass","click",4,"ngFor","ngForOf"],["tabindex","0",1,"scoreboard__index",3,"ngClass","click"],["class","sections-score-counts",4,"ngFor","ngForOf"],[1,"sections-score-counts"],[1,"sections-score-card__title"],[1,"sections-score-card__points"]],template:function(I,m){1&I&&(t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.TgZ(2,"div",2),t._uU(3," Are you ready to submit? "),t.qZA(),t.TgZ(4,"div",3),t._uU(5),t.qZA(),t.qZA(),t.TgZ(6,"div",4),t.TgZ(7,"div",5),t.TgZ(8,"div",6),t._uU(9),t.qZA(),t.TgZ(10,"div",6),t._uU(11),t.qZA(),t.TgZ(12,"div",6),t._uU(13),t.qZA(),t.TgZ(14,"div",6),t._uU(15),t.qZA(),t.qZA(),t.TgZ(16,"div",7),t.YNc(17,ku,2,1,"div",8),t.YNc(18,Ki,2,1,"div",9),t.qZA(),t.qZA(),t.TgZ(19,"div",10),t.TgZ(20,"button",11),t.NdJ("click",function(){return m.onReviewClicked()}),t._uU(21,"Review"),t.qZA(),t.TgZ(22,"button",12),t.NdJ("click",function(){return m.submitClicked.emit({type:"submit-clicked"})}),t._uU(23,"Submit"),t.qZA(),t.qZA(),t.qZA()),2&I&&(t.xp6(5),t.hij(" ",m.contentName," "),t.xp6(4),t.hij("Total Questions: ",m.totalNoOfQuestions,""),t.xp6(2),t.hij("Questions Answered: ",(null==m.summary?null:m.summary.correct)+(null==m.summary?null:m.summary.wrong),""),t.xp6(2),t.hij("Questions Skipped: ",null==m.summary?null:m.summary.skipped,""),t.xp6(2),t.hij("Questions not Viewed: ",m.totalNoOfQuestions-((null==m.summary?null:m.summary.correct)+(null==m.summary?null:m.summary.wrong)+(null==m.summary?null:m.summary.skipped)),""),t.xp6(2),t.Q6J("ngIf",!m.isSections),t.xp6(1),t.Q6J("ngIf",m.isSections))},directives:[ct.O5,ct.sg,ct.mk],styles:[":root{--quml-scoreboard-sub-title:#6d7278;--quml-scoreboard-skipped:#969696;--quml-scoreboard-unattempted:#575757;--quml-color-success:#08bc82;--quml-color-danger:#f1635d;--quml-color-primary-contrast:#333}.scoreboard[_ngcontent-%COMP%]{display:flex;flex-direction:column;align-items:center;width:100%;height:100%;padding:3.5rem 2.5rem 0}@media (max-width:767px){.scoreboard[_ngcontent-%COMP%]{top:0;height:calc(100% - 0px)}}.scoreboard__header[_ngcontent-%COMP%]{font-weight:700;text-align:center;line-height:normal;height:5rem}.scoreboard__title[_ngcontent-%COMP%]{color:var(--primary-color);font-size:1.25rem}.scoreboard__subtitle[_ngcontent-%COMP%]{color:var(--quml-scoreboard-sub-title);font-size:.875rem;margin-top:.5rem}.scoreboard__points[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;margin:0 auto;width:100%;max-height:calc(100vh - 12rem);align-items:center;overflow-y:auto;justify-content:center}.scoreboard__btn-container[_ngcontent-%COMP%]{display:flex;height:5rem;align-items:center}.scoreboard__index[_ngcontent-%COMP%]{font-size:.625rem;font-weight:500;border-radius:50%;width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center;margin:0 1rem 1rem;cursor:pointer}.scoreboard__index.skipped[_ngcontent-%COMP%]{color:var(--white);background:var(--quml-scoreboard-skipped);border:.0625rem solid var(--quml-scoreboard-skipped)}.scoreboard__index.correct[_ngcontent-%COMP%], .scoreboard__index.partial[_ngcontent-%COMP%], .scoreboard__index.wrong[_ngcontent-%COMP%]{color:var(--white);border:0 solid transparent}.scoreboard__index.correct[_ngcontent-%COMP%]{--correct-bg:var(--quml-color-success);background:var(--correct-bg)}.scoreboard__index.wrong[_ngcontent-%COMP%]{--wrong-bg:var(--quml-color-danger);background:var(--wrong-bg)}.scoreboard__index.partial[_ngcontent-%COMP%]{--partial-bg:linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );background:var(--partial-bg)}.scoreboard__index.unattempted[_ngcontent-%COMP%]{color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted)}.scoreboard__index.unattempted[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color);color:var(--primary-color)}.scoreboard__index.attempted[_ngcontent-%COMP%]{color:var(--white)!important;background:var(--primary-color);border:.03125rem solid var(--primary-color)}.sections-score-card[_ngcontent-%COMP%]{width:100%;height:calc(100% - 10rem);overflow-y:auto;display:flex}.sections-score-card__title[_ngcontent-%COMP%]{width:100%;color:var(--quml-color-primary-contrast);font-size:.875rem;font-weight:700;text-align:center;margin-bottom:1rem}.sections-score-card__points[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;margin:.5rem auto 0;width:100%;max-height:100%;align-items:center;overflow-y:auto;justify-content:center}@media screen and (orientation:portrait){.sections-score-card[_ngcontent-%COMP%]{flex-direction:column;text-align:center}}.sections-score-card[_ngcontent-%COMP%] .sections-score-count-info[_ngcontent-%COMP%]{width:100%;display:block;border-right:0;padding-bottom:1.5rem;position:-webkit-sticky;position:sticky;top:0;background:#fff}@media screen and (orientation:landscape){.scoreboard[_ngcontent-%COMP%] .scoreboard__header[_ngcontent-%COMP%]{display:block;width:100%;text-align:left}.sections-score-card[_ngcontent-%COMP%] .sections-score-count-info[_ngcontent-%COMP%]{width:40%;border-right:1px solid #979797}.sections-score-card[_ngcontent-%COMP%] .sections-score-count-sections[_ngcontent-%COMP%]{width:calc(100% - 40%)}}"]}),Ps.ctorParameters=function(){return[{type:Ra}]},Ps.propDecorators={scores:[{type:t.IIB}],totalNoOfQuestions:[{type:t.IIB}],contentName:[{type:t.IIB}],showFeedBack:[{type:t.IIB}],isSections:[{type:t.IIB}],summary:[{type:t.IIB}],submitClicked:[{type:t.r_U}],emitQuestionNo:[{type:t.r_U}],scoreBoardLoaded:[{type:t.r_U}]};var ks=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){this.time;this.minutes=Math.floor(this.time/60),this.seconds=this.time-60*this.minutes<10?"0".concat(this.time-60*this.minutes):this.time-60*this.minutes}}]),b}();ks.\u0275fac=function(I){return new(I||ks)},ks.\u0275cmp=t.Xpm({type:ks,selectors:[["quml-startpage"]],inputs:{instructions:"instructions",totalNoOfQuestions:"totalNoOfQuestions",points:"points",time:"time",contentName:"contentName",showTimer:"showTimer"},decls:14,vars:6,consts:[["tabindex","0",1,"startpage"],[1,"startpage__header"],[1,"startpage__content"],[1,"startpage__metadata"],[1,"startpage__md-heading"],[1,"startpage__md-scores"],[1,"startpage__md-icon"],[1,"startpage__md-desc"],["class","startpage__metadata",4,"ngIf"],[4,"ngIf"],[1,"startpage__instruction"],[1,"startpage__instr-title"],[1,"startpage__instr-desc",3,"innerHTML"]],template:function(I,m){1&I&&(t.TgZ(0,"div",0),t.TgZ(1,"div",1),t._uU(2),t.qZA(),t.TgZ(3,"div",2),t.TgZ(4,"div",3),t.TgZ(5,"div",4),t._uU(6,"Questions"),t.qZA(),t.TgZ(7,"div",5),t._UZ(8,"quml-content",6),t.TgZ(9,"span",7),t._uU(10),t.qZA(),t.qZA(),t.qZA(),t.YNc(11,n3,7,2,"div",8),t.YNc(12,M5,8,1,"div",8),t.qZA(),t.YNc(13,ul,6,3,"ng-container",9),t.qZA()),2&I&&(t.xp6(1),t.uIk("aria-label","question set title "+m.contentName),t.xp6(1),t.hij(" ",m.contentName," "),t.xp6(8),t.Oqu(m.totalNoOfQuestions),t.xp6(1),t.Q6J("ngIf",m.showTimer&&m.time>0),t.xp6(1),t.Q6J("ngIf",m.points),t.xp6(1),t.Q6J("ngIf",m.instructions))},directives:function(){return[l1,ct.O5,F1,gl]},pipes:function(){return[Ho]},styles:[":root{--quml-scoreboard-sub-title:#6D7278;--quml-color-primary-contrast:#333;--quml-zoom-btn-txt:#eee;--quml-zoom-btn-hover:#f2f2f2}.startpage__header[_ngcontent-%COMP%]{color:var(--primary-color);font-size:1.125rem;font-weight:700;margin:1rem 0;line-height:normal}.startpage__content[_ngcontent-%COMP%]{display:flex;border-bottom:.0625rem solid var(--quml-zoom-btn-txt);align-items:center;line-height:normal;margin-bottom:1rem;padding-bottom:1.5rem}.startpage__metadata[_ngcontent-%COMP%]{margin:0 4rem .5rem 0}.startpage__md-heading[_ngcontent-%COMP%]{color:var(--quml-scoreboard-sub-title);font-size:.75rem;line-height:normal;margin-bottom:.5rem}.startpage__md-icon[_ngcontent-%COMP%], .startpage__md-scores[_ngcontent-%COMP%]{display:flex;align-items:center}.startpage__md-desc[_ngcontent-%COMP%]{color:var(--primary-color);font-size:1.125rem;font-weight:700;margin-left:.5rem}.startpage__instr-title[_ngcontent-%COMP%]{color:var(--quml-scoreboard-sub-title);font-size:.75rem;font-weight:700;letter-spacing:0;line-height:18px}.startpage__instr-desc[_ngcontent-%COMP%]{padding:1rem 0;color:var(--quml-color-primary-contrast);font-size:.75rem;letter-spacing:0;line-height:17px} .startpage__instr-desc ul{list-style-type:disc} .startpage__instr-desc li{margin-bottom:.5rem;margin-left:.5rem} .startpage__instr-desc table{width:100%} .startpage__instr-desc td, .startpage__instr-desc th{border:.0625rem solid #ddd;padding:.5rem} .startpage__instr-desc tr:nth-child(even){background-color:var(--quml-zoom-btn-hover)}@media only screen and (max-width:480px){.startpage__header[_ngcontent-%COMP%]{margin-top:1.5rem}}",ac]}),ks.propDecorators={instructions:[{type:t.IIB}],totalNoOfQuestions:[{type:t.IIB}],points:[{type:t.IIB}],time:[{type:t.IIB}],contentName:[{type:t.IIB}],showTimer:[{type:t.IIB}]};var F1=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();F1.\u0275fac=function(I){return new(I||F1)},F1.\u0275cmp=t.Xpm({type:F1,selectors:[["quml-timer"]],decls:12,vars:0,consts:[["width","18px","height","19px","viewBox","0 0 18 19","version","1.1","tabindex","-1","aria-hidden","true","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["x1","13.2653061%","y1","0%","x2","87.9981222%","y2","100%","id","linearGradient-1"],["stop-color","#F1635D","offset","0%"],["stop-color","#F97A74","offset","100%"],["id","Content-player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","player-intro-page","transform","translate(-446.000000, -159.000000)"],["id","Icon-24px","transform","translate(446.000000, 159.495625)"],["id","Shape","points","0 0 18 0 18 18 0 18"],["d","M11.25,0.75 L6.75,0.75 L6.75,2.25 L11.25,2.25 L11.25,0.75 L11.25,0.75 Z M8.25,10.5 L9.75,10.5 L9.75,6 L8.25,6 L8.25,10.5 L8.25,10.5 Z M14.2725,5.5425 L15.3375,4.4775 C15.015,4.095 14.6625,3.735 14.28,3.42 L13.215,4.485 C12.0525,3.555 10.59,3 9,3 C5.2725,3 2.25,6.0225 2.25,9.75 C2.25,13.4775 5.265,16.5 9,16.5 C12.735,16.5 15.75,13.4775 15.75,9.75 C15.75,8.16 15.195,6.6975 14.2725,5.5425 L14.2725,5.5425 Z M9,15 C6.0975,15 3.75,12.6525 3.75,9.75 C3.75,6.8475 6.0975,4.5 9,4.5 C11.9025,4.5 14.25,6.8475 14.25,9.75 C14.25,12.6525 11.9025,15 9,15 L9,15 Z","id","Shape","fill","#f8756f"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"ic_timer"),t.qZA(),t.TgZ(3,"defs"),t.TgZ(4,"linearGradient",1),t._UZ(5,"stop",2),t._UZ(6,"stop",3),t.qZA(),t.qZA(),t.TgZ(7,"g",4),t.TgZ(8,"g",5),t.TgZ(9,"g",6),t._UZ(10,"polygon",7),t._UZ(11,"path",8),t.qZA(),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),F1.ctorParameters=function(){return[]};var l1=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();l1.\u0275fac=function(I){return new(I||l1)},l1.\u0275cmp=t.Xpm({type:l1,selectors:[["quml-content"]],decls:12,vars:0,consts:[["width","18px","height","19px","viewBox","0 0 18 19","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink","tabindex","-1","aria-hidden","true"],["x1","16.5289256%","y1","0%","x2","84.622256%","y2","100%","id","linearGradient-1"],["stop-color","#F1635D","offset","0%"],["stop-color","#F97A74","offset","100%"],["id","Content-player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","player-intro-page","transform","translate(-447.000000, -95.000000)"],["id","Icon-24px","transform","translate(447.000000, 95.495625)"],["id","Shape","points","0 0 18 0 18 18 0 18"],["d","M14.25,1.5 L11.115,1.5 C10.8,0.63 9.975,0 9,0 C8.025,0 7.2,0.63 6.885,1.5 L3.75,1.5 C2.925,1.5 2.25,2.175 2.25,3 L2.25,15 C2.25,15.825 2.925,16.5 3.75,16.5 L14.25,16.5 C15.075,16.5 15.75,15.825 15.75,15 L15.75,3 C15.75,2.175 15.075,1.5 14.25,1.5 L14.25,1.5 Z M9,1.5 C9.4125,1.5 9.75,1.8375 9.75,2.25 C9.75,2.6625 9.4125,3 9,3 C8.5875,3 8.25,2.6625 8.25,2.25 C8.25,1.8375 8.5875,1.5 9,1.5 L9,1.5 Z M14.25,15 L3.75,15 L3.75,3 L5.25,3 L5.25,5.25 L12.75,5.25 L12.75,3 L14.25,3 L14.25,15 L14.25,15 Z","id","Shape","fill","#f8756f"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"ic_content_paste"),t.qZA(),t.TgZ(3,"defs"),t.TgZ(4,"linearGradient",1),t._UZ(5,"stop",2),t._UZ(6,"stop",3),t.qZA(),t.qZA(),t.TgZ(7,"g",4),t.TgZ(8,"g",5),t.TgZ(9,"g",6),t._UZ(10,"polygon",7),t._UZ(11,"path",8),t.qZA(),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),l1.ctorParameters=function(){return[]};var gl=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();gl.\u0275fac=function(I){return new(I||gl)},gl.\u0275cmp=t.Xpm({type:gl,selectors:[["quml-startpagestaricon"]],decls:10,vars:0,consts:[["width","14px","height","13px","viewBox","0 0 14 13","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["x1","0%","y1","0%","x2","101.719666%","y2","100%","id","linearGradient-1"],["stop-color","#F1635D","offset","0%"],["stop-color","#F97A74","offset","100%"],["id","Content-player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","player-intro-page","transform","translate(-448.000000, -226.000000)","fill","#f8756f"],["d","M454.069318,237.484914 L452.648859,238.231693 C452.008011,238.568607 451.215379,238.322219 450.878466,237.681372 C450.744305,237.426183 450.698009,237.133884 450.746746,236.849727 L451.018029,235.268023 C451.129305,234.619235 450.914208,233.957235 450.442836,233.49776 L449.293661,232.377591 C448.775204,231.872221 448.764596,231.042245 449.269966,230.523788 C449.471207,230.317336 449.734894,230.182981 450.020203,230.141523 L451.608325,229.910756 C452.259745,229.816099 452.822876,229.40696 453.1142,228.816673 L453.824429,227.377591 C454.144853,226.728342 454.930929,226.461776 455.580179,226.782199 C455.838713,226.909794 456.047976,227.119057 456.175571,227.377591 L456.8858,228.816673 C457.177124,229.40696 457.740255,229.816099 458.391675,229.910756 L459.979797,230.141523 C460.696286,230.245635 461.192716,230.910864 461.088604,231.627354 C461.047146,231.912664 460.912791,232.17635 460.706339,232.377591 L459.557164,233.49776 C459.085792,233.957235 458.870695,234.619235 458.981971,235.268023 L459.253254,236.849727 C459.375645,237.563322 458.89638,238.241022 458.182786,238.363413 C457.898629,238.412149 457.60633,238.365854 457.351141,238.231693 L455.930682,237.484914 C455.348034,237.178598 454.651966,237.178598 454.069318,237.484914 Z","id","Star"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"Star"),t.qZA(),t.TgZ(3,"defs"),t.TgZ(4,"linearGradient",1),t._UZ(5,"stop",2),t._UZ(6,"stop",3),t.qZA(),t.qZA(),t.TgZ(7,"g",4),t.TgZ(8,"g",5),t._UZ(9,"path",6),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),gl.ctorParameters=function(){return[]};var go=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();go.\u0275fac=function(I){return new(I||go)},go.\u0275cmp=t.Xpm({type:go,selectors:[["quml-previous-active"]],decls:20,vars:0,consts:[["width","60px","height","36px","viewBox","0 0 60 36","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","path-1","x","0","y","0","width","56","height","32","rx","16"],["x","-2.7%","y","-4.7%","width","105.4%","height","109.4%","filterUnits","objectBoundingBox","id","filter-2"],["stdDeviation","0.5","in","SourceGraphic"],["x","-5.4%","y","-9.4%","width","110.7%","height","118.8%","filterUnits","objectBoundingBox","id","filter-3"],["stdDeviation","1","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","-1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0","type","matrix","in","shadowInnerInner1"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group","transform","translate(30.000000, 18.000000) scale(-1, 1) translate(-30.000000, -18.000000) translate(2.000000, 2.000000)"],["id","Group-2"],["id","Rectangle-5-Copy-2","fill-rule","nonzero","filter","url(#filter-2)"],["fill","#FFFFFF",0,"xlink","href","#path-1"],["fill","black","fill-opacity","1","filter","url(#filter-3)",0,"xlink","href","#path-1"],["id","Shape","fill","#6D7278","transform","translate(28.000000, 16.000000) scale(-1, 1) translate(-28.000000, -16.000000) ","points","31.705 11.41 30.295 10 24.295 16 30.295 22 31.705 20.59 27.125 16"],["id","Icon-24px","transform","translate(27.000000, 15.000000) scale(-1, 1) translate(-27.000000, -15.000000) translate(23.000000, 9.000000)"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"Previous"),t.qZA(),t.TgZ(3,"defs"),t._UZ(4,"rect",1),t.TgZ(5,"filter",2),t._UZ(6,"feGaussianBlur",3),t.qZA(),t.TgZ(7,"filter",4),t._UZ(8,"feGaussianBlur",5),t._UZ(9,"feOffset",6),t._UZ(10,"feComposite",7),t._UZ(11,"feColorMatrix",8),t.qZA(),t.qZA(),t.TgZ(12,"g",9),t.TgZ(13,"g",10),t.TgZ(14,"g",11),t.TgZ(15,"g",12),t._UZ(16,"use",13),t._UZ(17,"use",14),t.qZA(),t._UZ(18,"polygon",15),t.qZA(),t._UZ(19,"g",16),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),go.ctorParameters=function(){return[]};var ml=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();ml.\u0275fac=function(I){return new(I||ml)},ml.\u0275cmp=t.Xpm({type:ml,selectors:[["quml-next-active"]],decls:30,vars:0,consts:[["width","60px","height","36px","viewBox","0 0 60 36","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","path-1","x","0","y","0","width","60","height","36","rx","18"],["x","-5.8%","y","-9.7%","width","111.7%","height","119.4%","filterUnits","objectBoundingBox","id","filter-2"],["stdDeviation","3","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0","type","matrix","in","shadowInnerInner1"],["id","path-3","x","0","y","0","width","54","height","30","rx","15"],["x","-2.8%","y","-5.0%","width","105.6%","height","110.0%","filterUnits","objectBoundingBox","id","filter-4"],["stdDeviation","0.5","in","SourceGraphic"],["x","-5.6%","y","-10.0%","width","111.1%","height","120.0%","filterUnits","objectBoundingBox","id","filter-5"],["stdDeviation","1","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","-1","in","shadowBlurInner1","result","shadowOffsetInner1"],["id","button/next2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Group-Copy"],["id","Rectangle-5-Copy","opacity","0.1","fill-rule","nonzero"],["fill","#CCCCCC",0,"xlink","href","#path-1"],["fill","black","fill-opacity","1","filter","url(#filter-2)",0,"xlink","href","#path-1"],["id","Group-2","transform","translate(3.000000, 3.000000)"],["id","Rectangle-5-Copy-2","fill-rule","nonzero","filter","url(#filter-4)"],["fill","#FFD655",0,"xlink","href","#path-3"],["fill","black","fill-opacity","1","filter","url(#filter-5)",0,"xlink","href","#path-3"],["id","Shape","fill","#666","transform","translate(27.295000, 15.000000) scale(-1, 1) translate(-27.295000, -15.000000) ","points","31 10.41 29.59 9 23.59 15 29.59 21 31 19.59 26.42 15"],["id","Icon-24px","transform","translate(30.000000, 18.000000) scale(-1, 1) translate(-30.000000, -18.000000) translate(26.000000, 12.000000)"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"Next"),t.qZA(),t.TgZ(3,"defs"),t._UZ(4,"rect",1),t.TgZ(5,"filter",2),t._UZ(6,"feGaussianBlur",3),t._UZ(7,"feOffset",4),t._UZ(8,"feComposite",5),t._UZ(9,"feColorMatrix",6),t.qZA(),t._UZ(10,"rect",7),t.TgZ(11,"filter",8),t._UZ(12,"feGaussianBlur",9),t.qZA(),t.TgZ(13,"filter",10),t._UZ(14,"feGaussianBlur",11),t._UZ(15,"feOffset",12),t._UZ(16,"feComposite",5),t._UZ(17,"feColorMatrix",6),t.qZA(),t.qZA(),t.TgZ(18,"g",13),t.TgZ(19,"g",14),t.TgZ(20,"g",15),t.TgZ(21,"g",16),t._UZ(22,"use",17),t._UZ(23,"use",18),t.qZA(),t.TgZ(24,"g",19),t.TgZ(25,"g",20),t._UZ(26,"use",21),t._UZ(27,"use",22),t.qZA(),t._UZ(28,"polygon",23),t.qZA(),t.qZA(),t._UZ(29,"g",24),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),ml.ctorParameters=function(){return[]};var vl=function(){function b(){(0,L.Z)(this,b),this.closeAlert=new t.vpe,this.showSolution=new t.vpe,this.showHint=new t.vpe,this.isFocusSet=!1}return(0,C.Z)(b,[{key:"onKeydownHandler",value:function(m){this.close("close")}},{key:"ngOnInit",value:function(){var m=this;this.isFocusSet=!1,this.previousActiveElement=document.activeElement,this.subscription=(0,al.R)(document,"keydown").subscribe(function(x){if("Tab"===x.key){var Y=document.querySelector(".quml-navigation__previous");Y&&(m.close("close"),Y.focus(),m.isFocusSet=!0,x.stopPropagation())}})}},{key:"ngAfterViewInit",value:function(){var m=this;document.querySelector(".quml-alert__body");setTimeout(function(){var Y=document.querySelector("#wrongButton"),Ce=document.querySelector("#correctButton");document.querySelector("#hintButton");"wrong"===m.alertType&&Y?Y.focus():"correct"===m.alertType&&m.showSolutionButton&&Ce&&Ce.focus()},200)}},{key:"viewHint",value:function(){this.showHint.emit({hint:!0})}},{key:"viewSolution",value:function(){this.showSolution.emit({solution:!0})}},{key:"close",value:function(m){this.closeAlert.emit({type:m})}},{key:"ngOnDestroy",value:function(){this.previousActiveElement&&!this.isFocusSet&&this.previousActiveElement.focus(),this.subscription&&this.subscription.unsubscribe()}}]),b}();vl.\u0275fac=function(I){return new(I||vl)},vl.\u0275cmp=t.Xpm({type:vl,selectors:[["quml-alert"]],hostBindings:function(I,m){1&I&&t.NdJ("keydown.escape",function(Y){return m.onKeydownHandler(Y)},!1,t.evT)},inputs:{alertType:"alertType",isHintAvailable:"isHintAvailable",showSolutionButton:"showSolutionButton"},outputs:{closeAlert:"closeAlert",showSolution:"showSolution",showHint:"showHint"},decls:9,vars:4,consts:[[1,"quml-alert"],[1,"quml-alert__overlay",3,"click","keyup.enter"],[1,"quml-alert__container"],[1,"quml-alert__body"],["class","quml-alert__image quml-alert__image--correct",4,"ngIf"],["class","quml-alert__image quml-alert__image--wrong",4,"ngIf"],[1,"quml-alert__solution-container"],["class","quml-alert__try-again",4,"ngIf"],["class","quml-alert__view-hint quml-alert__view-hint--disabled",4,"ngIf"],[1,"quml-alert__image","quml-alert__image--correct"],[1,"quml-alert__icon-container"],["src","assets/quml-correct.svg","alt","Correct Answer",1,"quml-alert__icon"],[1,"quml-alert__icon-empty"],["src","assets/banner-correct.svg","alt","",1,"quml-alert__banner"],[1,"quml-alert__image","quml-alert__image--wrong"],["src","assets/quml-wrong.svg","alt","Wrong Answer",1,"quml-alert__icon"],["src","assets/banner-wrong.svg","alt","",1,"quml-alert__banner"],[1,"quml-alert__try-again"],["tabindex","0","id","wrongButton","aria-label","Try again",3,"click","keyup.enter",4,"ngIf"],["tabindex","0","id","correctButton","aria-label","View Solution",3,"click","keyup.enter",4,"ngIf"],["tabindex","0","id","wrongButton","aria-label","Try again",3,"click","keyup.enter"],["tabindex","0","id","correctButton","aria-label","View Solution",3,"click","keyup.enter"],[1,"quml-alert__view-hint","quml-alert__view-hint--disabled"],["tabindex","0","id","hintButton","src","assets/view-hint.svg","alt","View Hint logo",1,"view-hint-icon",3,"click","keyup.enter"]],template:function(I,m){1&I&&(t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.NdJ("click",function(){return m.close("close")})("keyup.enter",function(){return m.close("close")}),t.qZA(),t.TgZ(2,"div",2),t.TgZ(3,"div",3),t.YNc(4,os,5,0,"div",4),t.YNc(5,b0,5,0,"div",5),t.TgZ(6,"div",6),t.YNc(7,M0,3,2,"div",7),t.qZA(),t.YNc(8,k1,2,0,"div",8),t.qZA(),t.qZA(),t.qZA()),2&I&&(t.xp6(4),t.Q6J("ngIf","correct"===m.alertType),t.xp6(1),t.Q6J("ngIf","wrong"===m.alertType),t.xp6(2),t.Q6J("ngIf","wrong"===m.alertType||"correct"===m.alertType&&m.showSolutionButton),t.xp6(1),t.Q6J("ngIf",m.isHintAvailable))},directives:[ct.O5],styles:[":root{--quml-color-primary:#FFD555;--quml-color-primary-rgba:#f6bc42;--quml-color-primary-shade:rgba(0, 0, 0, .1);--quml-color-tertiary:#FA6400;--quml-color-tertiary-rgba:rgba(250, 100, 0, 0.6);--quml-color-rgba:rgba(0, 0, 0, .6)}.quml-alert__overlay[_ngcontent-%COMP%]{position:absolute;width:100%;height:100%;top:0;left:0}.quml-alert__container[_ngcontent-%COMP%]{position:absolute;bottom:.75rem;height:5.625rem;left:0;right:0;border-radius:.5rem;box-shadow:0 .125rem .875rem 0 var(-quml-color-primary-shade);padding:.5rem 1.5rem .5rem .5rem;-webkit-animation-name:example;animation-name:example;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-duration:.3s;animation-duration:.4s;margin:0 auto .5rem;width:23.25rem;background:linear-gradient(145deg,var(--quml-color-primary),var(--quml-color-primary) 60%,var(--quml-color-primary-rgba) 60%);z-index:1}@media only screen and (max-width:480px){.quml-alert__container[_ngcontent-%COMP%]{position:absolute;bottom:3.75rem;border-radius:.5rem;background-color:var(--white);box-shadow:0 .125rem .875rem 0 var(-quml-color-primary-shade);width:21.75rem;padding:.5rem}}.quml-alert__body[_ngcontent-%COMP%]{display:flex;align-items:center;position:relative;height:100%}.quml-alert__image[_ngcontent-%COMP%]{position:relative;height:100%;width:7.625rem;overflow:hidden}.quml-alert__icon-container[_ngcontent-%COMP%]{background:var(--white);border-radius:.5rem;position:absolute;width:4.5rem;z-index:1;height:4rem;left:0;right:0;margin:0 auto;bottom:-54px;-webkit-animation:.2s ease-out .3s forwards sign-board-animation;animation:.2s ease-out .3s forwards sign-board-animation}.quml-alert__icon-empty[_ngcontent-%COMP%]{position:absolute;background:var(--quml-color-primary);width:7.625rem;z-index:2;height:1.25rem;margin:0 auto;bottom:0}.quml-alert__icon[_ngcontent-%COMP%]{position:absolute;top:15%;left:0;width:1.75rem;height:1.75rem;right:0;margin:0 auto;-webkit-animation:.1s ease-out .7s forwards correct-button-anim;animation:.1s ease-out .7s forwards correct-button-anim}.quml-alert__banner[_ngcontent-%COMP%]{position:absolute;bottom:0;z-index:3;height:2.1875rem}.quml-alert__solution-container[_ngcontent-%COMP%]{display:flex;align-items:center;justify-content:center;width:calc(100% - 122px)}.quml-alert__try-again[_ngcontent-%COMP%], .quml-alert__view-solution[_ngcontent-%COMP%]{line-height:normal;cursor:pointer;background:var(--white);padding:.5rem 1rem;border-radius:1rem;font-size:.75rem;color:var(--quml-color-tertiary);box-shadow:0 .125rem .875rem 0 var(--quml-color-tertiary-rgba);margin-left:.5rem}.quml-alert__view-hint[_ngcontent-%COMP%]{width:2rem;height:2rem;margin-left:auto;background:var(--white);border-radius:50%;box-shadow:0 .375rem 1rem -.4375rem var(--quml-color-rgba);position:relative}.quml-alert__view-hint--disabled[_ngcontent-%COMP%]{opacity:.6}.quml-alert__try-again[_ngcontent-%COMP%], .quml-alert__view-hint[_ngcontent-%COMP%]{cursor:pointer;text-transform:capitalize}@-webkit-keyframes sign-board-animation{from{visibility:hidden;transform:translateY(0)}to{visibility:visible;transform:translateY(-80%)}}@keyframes sign-board-animation{from{visibility:hidden;transform:translateY(0)}to{visibility:visible;transform:translateY(-100%)}}@-webkit-keyframes correct-button-anim{from{visibility:hidden;transform:scale(.2)}to{visibility:visible;-khtml-transform:scale(1.1);transform:scale(1.1)}}@keyframes correct-button-anim{from{visibility:hidden;transform:scale(.2)}to{visibility:visible;-khtml-transform:scale(1.1);transform:scale(1.1)}}@-webkit-keyframes example{from{margin-bottom:-50px}to{margin-bottom:8px}}@keyframes example{from{margin-bottom:-50px}to{margin-bottom:8px}}"]}),vl.propDecorators={alertType:[{type:t.IIB}],isHintAvailable:[{type:t.IIB}],showSolutionButton:[{type:t.IIB}],closeAlert:[{type:t.r_U}],showSolution:[{type:t.r_U}],showHint:[{type:t.r_U}],onKeydownHandler:[{type:t.L6J,args:["document:keydown.escape",["$event"]]}]};var u1=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();u1.\u0275fac=function(I){return new(I||u1)},u1.\u0275cmp=t.Xpm({type:u1,selectors:[["quml-close"]],decls:9,vars:0,consts:[["width","100%","height","100%","viewBox","0 0 24 24","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","PDF-Player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","pdf-portrait-pop","transform","translate(-320.000000, -397.000000)"],["id","Group-18-Copy","transform","translate(0.000000, 381.000000)"],["id","Icon-24px","transform","translate(320.000000, 16.000000)"],["id","Shape","fill","#000000","points","19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12"],["id","Shape","points","0 0 24 0 24 24 0 24"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"Icon 24px"),t.qZA(),t.TgZ(3,"g",1),t.TgZ(4,"g",2),t.TgZ(5,"g",3),t.TgZ(6,"g",4),t._UZ(7,"polygon",5),t._UZ(8,"polygon",6),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),u1.ctorParameters=function(){return[]};var c1=function(){function b(){(0,L.Z)(this,b),this.close=new t.vpe}return(0,C.Z)(b,[{key:"closeSolution",value:function(){this.solutionVideoPlayer&&this.solutionVideoPlayer.nativeElement.pause(),this.close.emit({close:!0})}}]),b}();c1.\u0275fac=function(I){return new(I||c1)},c1.\u0275cmp=t.Xpm({type:c1,selectors:[["quml-mcq-solutions"]],viewQuery:function(I,m){var x;(1&I&&t.Gf(ss,7),2&I)&&(t.iGM(x=t.CRH())&&(m.solutionVideoPlayer=x.first))},inputs:{question:"question",options:"options",solutions:"solutions"},outputs:{close:"close"},decls:15,vars:5,consts:[[1,"solutions"],["role","button","tabindex","0","aria-label","Close",1,"close-icon",3,"click","keydown.enter"],["tabindex","-1"],[1,"solution-header"],[3,"innerHtml"],[1,"solution-options-container"],["class","solution-options",4,"ngFor","ngForOf"],[4,"ngIf"],[1,"scoreboard-button-container"],["type","submit",1,"sb-btn","sb-btn-primary","sb-btn-normal","sb-btn-radius",3,"click"],[1,"solution-options"],[4,"ngFor","ngForOf"],[3,"ngSwitch"],[3,"innerHtml",4,"ngSwitchCase"],["class","video-container",4,"ngSwitchCase"],[4,"ngSwitchCase"],[1,"video-container"],["width","400","controls","",3,"poster"],["solutionVideoPlayer",""],["type","video/mp4",3,"src"],["type","video/webm",3,"src"],["alt","mcq option with image",3,"src"]],template:function(I,m){1&I&&(t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.NdJ("click",function(){return m.closeSolution()})("keydown.enter",function(){return m.closeSolution()}),t._UZ(2,"quml-close",2),t.qZA(),t.TgZ(3,"div",3),t._uU(4,"Question"),t.qZA(),t._UZ(5,"div",4),t.ALo(6,"safeHtml"),t.TgZ(7,"div",3),t._uU(8,"Options"),t.qZA(),t.TgZ(9,"div",5),t.YNc(10,$s,3,3,"div",6),t.qZA(),t.YNc(11,u2,4,1,"ng-container",7),t.TgZ(12,"div",8),t.TgZ(13,"button",9),t.NdJ("click",function(){return m.closeSolution()}),t._uU(14,"Done"),t.qZA(),t.qZA(),t.qZA()),2&I&&(t.xp6(5),t.Q6J("innerHtml",t.lcZ(6,3,m.question),t.oJD),t.xp6(5),t.Q6J("ngForOf",m.options),t.xp6(1),t.Q6J("ngIf",m.solutions&&m.solutions.length))},directives:function(){return[u1,ct.sg,ct.O5,ct.RF,ct.n9]},pipes:function(){return[Ho]},styles:[":root{--quml-close-icon:#000}.solutions[_ngcontent-%COMP%]{top:0;left:0;width:100%;height:100%;padding:1rem;overflow:auto}.solution-header[_ngcontent-%COMP%]{color:var(--gray-800);font-size:.875rem;font-weight:700;margin:1rem 0;clear:both}.close-icon[_ngcontent-%COMP%]{float:right;cursor:pointer;width:3rem;height:3rem;border-radius:50%;padding:.25rem}.close-icon[_ngcontent-%COMP%]:hover{background:rgba(0,0,0,.15)}.close-icon[_ngcontent-%COMP%]:hover quml-close[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] polygon#Shape[_ngcontent-%COMP%]{fill:var(--white)}.close-icon[_ngcontent-%COMP%] quml-close[_ngcontent-%COMP%]{display:flex;align-items:center;justify-content:center}.close-icon[_ngcontent-%COMP%] quml-close[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] g[_ngcontent-%COMP%] polygon[_ngcontent-%COMP%]:first-child{fill:var(--quml-close-icon)}.video-container[_ngcontent-%COMP%]{text-align:center;margin:.5rem auto}.scoreboard-button-container[_ngcontent-%COMP%]{text-align:center;clear:both;margin:1rem 0}.solution-options-container[_ngcontent-%COMP%]{display:flex;align-items:flex-start;flex-direction:column}.solution-options-container[_ngcontent-%COMP%] .solution-options[_ngcontent-%COMP%]{margin-bottom:.5rem}"]}),c1.propDecorators={question:[{type:t.IIB}],options:[{type:t.IIB}],solutions:[{type:t.IIB}],close:[{type:t.r_U}],solutionVideoPlayer:[{type:t.i9L,args:["solutionVideoPlayer",{static:!0}]}]};var B1=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();B1.\u0275fac=function(I){return new(I||B1)},B1.\u0275cmp=t.Xpm({type:B1,selectors:[["quml-durationtimer"]],decls:6,vars:0,consts:[["width","10px","height","16px","viewBox","0 0 10 16","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","timer/active","transform","translate(-8.000000, -2.000000)","fill","#6D7278"],["d","M8,2 L8,6.8 L8.008,6.8 L8,6.808 L11.2,10 L8,13.2 L8.008,13.208 L8,13.208 L8,18 L17.6,18 L17.6,13.208 L17.592,13.208 L17.6,13.2 L14.4,10 L17.6,6.808 L17.592,6.8 L17.6,6.8 L17.6,2 L8,2 L8,2 Z M16,13.6 L16,16.4 L9.6,16.4 L9.6,13.6 L12.8,10.4 L16,13.6 L16,13.6 Z M12.8,9.6 L9.6,6.4 L9.6,3.6 L16,3.6 L16,6.4 L12.8,9.6 L12.8,9.6 Z","id","Shape"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"Shape"),t.qZA(),t.TgZ(3,"g",1),t.TgZ(4,"g",2),t._UZ(5,"path",3),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),B1.ctorParameters=function(){return[]};var eu=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();eu.\u0275fac=function(I){return new(I||eu)},eu.\u0275cmp=t.Xpm({type:eu,selectors:[["quml-audio"]],decls:16,vars:0,consts:[["width","36px","height","36px","viewBox","0 0 36 36","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","path-1","x","0","y","0","width","36","height","36","rx","18"],["x","-4.2%","y","-4.2%","width","108.3%","height","108.3%","filterUnits","objectBoundingBox","id","filter-2"],["stdDeviation","1","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","-1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0","type","matrix","in","shadowInnerInner1"],["id","audio-play","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Rectangle-5-Copy-2","fill-rule","nonzero"],["fill","#FFFFFF",0,"xlink","href","#path-1"],["fill-opacity","1","filter","url(#filter-2)",0,"xlink","href","#path-1"],["stroke-opacity","0.484156469","stroke","#C3C8DB","stroke-width","2","stroke-linejoin","square","x","1","y","1","width","34","height","34","rx","17"],["d","M19.483871,8.64533333 C23.6232258,9.616 26.7096774,13.4346667 26.7096774,18 C26.7096774,22.5653333 23.6232258,26.384 19.483871,27.3546667 L19.483871,27.3546667 L19.483871,25.1573333 C22.4670968,24.24 24.6451613,21.3813333 24.6451613,18 C24.6451613,14.6186667 22.4670968,11.76 19.483871,10.8426667 L19.483871,10.8426667 Z M17.4193548,9.46666667 L17.4193548,26.5333333 L12.2580645,21.2 L8.12903226,21.2 L8.12903226,14.8 L12.2580645,14.8 L17.4193548,9.46666667 Z M19.483871,13.7013333 C21.0116129,14.4906667 22.0645161,16.112 22.0645161,18 C22.0645161,19.888 21.0116129,21.5093333 19.483871,22.288 L19.483871,22.288 Z","id","Combined-Shape","fill","#6D7278"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"audio play"),t.qZA(),t.TgZ(3,"defs"),t._UZ(4,"rect",1),t.TgZ(5,"filter",2),t._UZ(6,"feGaussianBlur",3),t._UZ(7,"feOffset",4),t._UZ(8,"feComposite",5),t._UZ(9,"feColorMatrix",6),t.qZA(),t.qZA(),t.TgZ(10,"g",7),t.TgZ(11,"g",8),t._UZ(12,"use",9),t._UZ(13,"use",10),t._UZ(14,"rect",11),t.qZA(),t._UZ(15,"path",12),t.qZA(),t.qZA())},styles:[""]}),eu.ctorParameters=function(){return[]};var fs=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();fs.\u0275fac=function(I){return new(I||fs)},fs.\u0275cmp=t.Xpm({type:fs,selectors:[["quml-wrong"]],decls:11,vars:0,consts:[["width","48px","height","48px","viewBox","0 0 48 48","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["x1","0%","y1","0%","x2","101.719666%","y2","100%","id","linearGradient-1"],["stop-color","#F1635D","offset","0%"],["stop-color","#F97A74","offset","100%"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","wrong"],["id","Oval","fill","#f77f79","fill-rule","nonzero","opacity","0.900000036","cx","24","cy","24","r","24"],["id","Shape","fill","#fff","points","36.0349854 14.4171429 33.6107955 12 24 21.5828571 14.3892045 12 11.9650146 14.4171429 21.5758101 24 11.9650146 33.5828571 14.3892045 36 24 26.4171429 33.6107955 36 36.0349854 33.5828571 26.4241899 24"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"wrong"),t.qZA(),t.TgZ(3,"defs"),t.TgZ(4,"linearGradient",1),t._UZ(5,"stop",2),t._UZ(6,"stop",3),t.qZA(),t.qZA(),t.TgZ(7,"g",4),t.TgZ(8,"g",5),t._UZ(9,"circle",6),t._UZ(10,"polygon",7),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),fs.ctorParameters=function(){return[]};var tu=function(){function b(){(0,L.Z)(this,b)}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();tu.\u0275fac=function(I){return new(I||tu)},tu.\u0275cmp=t.Xpm({type:tu,selectors:[["quml-menu"]],decls:6,vars:0,consts:[["width","18px","height","12px","viewBox","0 0 18 12","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Symbols","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","icon/menu","fill","#333333"],["d","M0,12 L18,12 L18,10 L0,10 L0,12 L0,12 Z M0,7 L18,7 L18,5 L0,5 L0,7 L0,7 Z M0,0 L0,2 L18,2 L18,0 L0,0 L0,0 Z","id","Shape"]],template:function(I,m){1&I&&(t.O4$(),t.TgZ(0,"svg",0),t.TgZ(1,"title"),t._uU(2,"Shape"),t.qZA(),t.TgZ(3,"g",1),t.TgZ(4,"g",2),t._UZ(5,"path",3),t.qZA(),t.qZA(),t.qZA())},styles:[""]}),tu.ctorParameters=function(){return[]};var Ho=function(){function b(I){(0,L.Z)(this,b),this.sanitized=I}return(0,C.Z)(b,[{key:"transform",value:function(m){return this.sanitized.bypassSecurityTrustHtml(m)}}]),b}();Ho.\u0275fac=function(I){return new(I||Ho)(t.Y36(sn.H7,16))},Ho.\u0275pipe=t.Yjl({name:"safeHtml",type:Ho,pure:!0}),Ho.ctorParameters=function(){return[{type:sn.H7}]};var q1=function(){function b(I,m,x,Y,Ce){(0,L.Z)(this,b),this.viewerService=I,this.utilService=m,this.questionCursor=x,this.cdRef=Y,this.errorService=Ce,this.sectionIndex=0,this.playerEvent=new t.vpe,this.sectionEnd=new t.vpe,this.showScoreBoard=new t.vpe,this.destroy$=new zl.xQ,this.loadView=!1,this.showContentError=!1,this.noOfTimesApiCalled=0,this.currentSlideIndex=0,this.showStartPage=!0,this.questions=[],this.progressBarClass=[],this.tryAgainClicked=!1,this.carouselConfig={NEXT:1,PREV:2},this.active=!1,this.showQuestions=!1,this.showZoomModal=!1,this.imageZoomCount=100,this.showRootInstruction=!0,this.slideDuration=0,this.isAssessEventRaised=!1}return(0,C.Z)(b,[{key:"ngOnChanges",value:function(m){m&&Object.values(m)[0].firstChange&&this.subscribeToEvents(),this.setConfig()}},{key:"ngAfterViewInit",value:function(){this.viewerService.raiseStartEvent(0),this.viewerService.raiseHeartBeatEvent(kr_startPageLoaded,"impression",0)}},{key:"subscribeToEvents",value:function(){var m=this;this.viewerService.qumlPlayerEvent.asObservable().pipe(Kc(this.destroy$)).subscribe(function(x){m.playerEvent.emit(x)}),this.viewerService.qumlQuestionEvent.pipe(Kc(this.destroy$)).subscribe(function(x){var Y,Ce,tt,zt;if(null===(Y=x)||void 0===Y?void 0:Y.error){var Ut=(null===(Ce=m.sectionConfig)||void 0===Ce?void 0:Ce.config).traceId;return navigator.onLine&&m.viewerService.isAvailableLocally?m.viewerService.raiseExceptionLog(ui.uY.contentLoadFails,ui.N3.contentLoadFails,new Error(ui.N3.contentLoadFails),Ut):m.viewerService.raiseExceptionLog(ui.uY.internetConnectivity,ui.N3.internetConnectivity,new Error(ui.N3.internetConnectivity),Ut),void(m.showContentError=!0)}if(null===(tt=x)||void 0===tt?void 0:tt.questions){var Mn=li(m.questions,x.questions,"identifier");m.questions=xo(m.questions.concat(Mn),"identifier"),m.sortQuestions(),m.viewerService.updateSectionQuestions(m.sectionConfig.metadata.identifier,m.questions),m.cdRef.detectChanges(),m.noOfTimesApiCalled++,m.loadView=!0,m.currentSlideIndex>0&&m.myCarousel&&(m.myCarousel.selectSlide(m.currentSlideIndex),m.questions[m.currentSlideIndex-1]&&(m.currentQuestionsMedia=null===(zt=m.questions[m.currentSlideIndex-1])||void 0===zt?void 0:zt.media,m.setImageZoom(),m.highlightQuestion())),0===m.currentSlideIndex&&(m.showStartPage?m.active=0===m.sectionIndex:setTimeout(function(){m.nextSlide()})),m.removeAttribute()}})}},{key:"setConfig",value:function(){var x,Y,Ce,tt,zt,Ht,Ut,Mn,xr,Yr,Ir,aa,Ji,cr,Ai,Ni,Ka,Ja,Xa,Po,d1,da,ko,ps,m=this;this.noOfTimesApiCalled=0,this.currentSlideIndex=0,this.active=0===this.currentSlideIndex&&0===this.sectionIndex&&this.showStartPage,this.myCarousel&&this.myCarousel.selectSlide(this.currentSlideIndex),this.threshold=(null===(x=this.sectionConfig.context)||void 0===x?void 0:x.threshold)||3,this.questionIds=la(this.sectionConfig.metadata.childNodes),this.parentConfig.isReplayed&&(this.initializeTimer=!0,this.viewerService.raiseStartEvent(0),this.viewerService.raiseHeartBeatEvent(kr_startPageLoaded,"impression",0),this.disableNext=!1,this.currentSlideIndex=0,this.myCarousel.selectSlide(0),this.showRootInstruction=!0,this.currentQuestionsMedia=(0,Be.Z)(this.questions[0],"media"),this.setImageZoom(),this.loadView=!0,this.removeAttribute(),setTimeout(function(){var ru=document.querySelector("#overlay-button");ru&&ru.focus()},200));var Fa=this.sectionConfig.metadata.maxQuestions;Fa&&(this.questionIds=this.questionIds.slice(0,Fa)),this.noOfQuestions=this.questionIds.length,this.viewerService.initialize(this.sectionConfig,this.threshold,this.questionIds,this.parentConfig),this.checkCompatibilityLevel(this.sectionConfig.metadata.compatibilityLevel),this.timeLimit=(null===(Ce=null===(Y=this.sectionConfig.metadata)||void 0===Y?void 0:Y.timeLimits)||void 0===Ce?void 0:Ce.maxTime)||0,this.warningTime=(null===(zt=null===(tt=this.sectionConfig.metadata)||void 0===tt?void 0:tt.timeLimits)||void 0===zt?void 0:zt.warningTime)||0,this.showTimer="no"!==(null===(Ut=null===(Ht=this.sectionConfig.metadata)||void 0===Ht?void 0:Ht.showTimer)||void 0===Ut?void 0:Ut.toLowerCase()),(null===(Mn=this.sectionConfig.metadata)||void 0===Mn?void 0:Mn.showFeedback)?this.showFeedBack="no"!==(null===(Yr=null===(xr=this.sectionConfig.metadata)||void 0===xr?void 0:xr.showFeedback)||void 0===Yr?void 0:Yr.toLowerCase()):this.showFeedBack=this.parentConfig.showFeedback,this.showUserSolution="no"!==(null===(aa=null===(Ir=this.sectionConfig.metadata)||void 0===Ir?void 0:Ir.showSolutions)||void 0===aa?void 0:aa.toLowerCase()),this.startPageInstruction=(null===(cr=null===(Ji=this.sectionConfig.metadata)||void 0===Ji?void 0:Ji.instructions)||void 0===cr?void 0:cr.default)||this.parentConfig.instructions,this.linearNavigation="non-linear"!==this.sectionConfig.metadata.navigationMode,this.showHints="no"!==(null===(Ni=null===(Ai=this.sectionConfig.metadata)||void 0===Ai?void 0:Ai.showHints)||void 0===Ni?void 0:Ni.toLowerCase()),this.points=null===(Ka=this.sectionConfig.metadata)||void 0===Ka?void 0:Ka.points,this.allowSkip="no"!==(null===(Xa=null===(Ja=this.sectionConfig.metadata)||void 0===Ja?void 0:Ja.allowSkip)||void 0===Xa?void 0:Xa.toLowerCase()),this.showStartPage="no"!==(null===(d1=null===(Po=this.sectionConfig.metadata)||void 0===Po?void 0:Po.showStartPage)||void 0===d1?void 0:d1.toLowerCase()),this.progressBarClass=this.parentConfig.isSectionsAvailable?null===(da=this.mainProgressBar.find(function(ru){return ru.isActive}))||void 0===da?void 0:da.children:this.mainProgressBar,this.progressBarClass&&this.progressBarClass.forEach(function(ru){return ru.showFeedback=m.showFeedBack}),this.questions=this.viewerService.getSectionQuestions(this.sectionConfig.metadata.identifier),this.sortQuestions(),this.viewerService.updateSectionQuestions(this.sectionConfig.metadata.identifier,this.questions),this.resetQuestionState(),this.jumpToQuestion?this.goToQuestion(this.jumpToQuestion):1===this.threshold?this.viewerService.getQuestion():this.threshold>1&&this.viewerService.getQuestions(),(null===(ps=null===(ko=this.sectionConfig.metadata)||void 0===ko?void 0:ko.children)||void 0===ps?void 0:ps.length)||(this.loadView=!0,this.disableNext=!0),this.initializeTimer||(this.initializeTimer=!0),this.initialTime=this.initialSlideDuration=(new Date).getTime()}},{key:"removeAttribute",value:function(){setTimeout(function(){var m=document.querySelector(".carousel.slide");m&&m.removeAttribute("tabindex")},100)}},{key:"sortQuestions",value:function(){var m=this;if(this.questions.length&&this.questionIds.length){var x=[];this.questionIds.forEach(function(Y){var Ce=m.questions.find(function(tt){return tt.identifier===Y});Ce&&x.push(Ce)}),this.questions=x}}},{key:"createSummaryObj",value:function(){var m,x,Y,Ce,tt,zt,Ht,Ut,Mn=Tu(this.progressBarClass,"class");return{skipped:(null===(x=null===(m=Mn)||void 0===m?void 0:m.skipped)||void 0===x?void 0:x.length)||0,correct:(null===(Ce=null===(Y=Mn)||void 0===Y?void 0:Y.correct)||void 0===Ce?void 0:Ce.length)||0,wrong:(null===(zt=null===(tt=Mn)||void 0===tt?void 0:tt.wrong)||void 0===zt?void 0:zt.length)||0,partial:(null===(Ut=null===(Ht=Mn)||void 0===Ht?void 0:Ht.partial)||void 0===Ut?void 0:Ut.length)||0}}},{key:"nextSlide",value:function(){if(this.currentQuestionsMedia=(0,Be.Z)(this.questions[this.currentSlideIndex],"media"),this.getQuestion(),this.viewerService.raiseHeartBeatEvent(kr_nextClicked,Nr_interact,this.myCarousel.getCurrentSlideIndex()+1),this.viewerService.raiseHeartBeatEvent(kr_nextClicked,Nr_impression,this.myCarousel.getCurrentSlideIndex()+1),this.currentSlideIndex!==this.questions.length&&(this.currentSlideIndex=this.currentSlideIndex+1),(this.myCarousel.isLast(this.myCarousel.getCurrentSlideIndex())||this.noOfQuestions===this.myCarousel.getCurrentSlideIndex())&&this.calculateScore(),this.myCarousel.getCurrentSlideIndex()>0&&"MCQ"===this.questions[this.myCarousel.getCurrentSlideIndex()-1].qType&&this.currentOptionSelected){var m=this.currentOptionSelected&&this.currentOptionSelected.option?this.currentOptionSelected.option:void 0,x=this.questions[this.myCarousel.getCurrentSlideIndex()-1].identifier,Y=this.questions[this.myCarousel.getCurrentSlideIndex()-1].qType;this.viewerService.raiseResponseEvent(x,Y,m)}if(this.questions[this.myCarousel.getCurrentSlideIndex()]&&this.setSkippedClass(this.myCarousel.getCurrentSlideIndex()),this.myCarousel.getCurrentSlideIndex()===this.noOfQuestions)return this.clearTimeInterval(),void this.emitSectionEnd();this.myCarousel.move(this.carouselConfig.NEXT),this.setImageZoom(),this.resetQuestionState(),this.clearTimeInterval()}},{key:"prevSlide",value:function(){this.disableNext=!1,this.currentSolutions=void 0,this.viewerService.raiseHeartBeatEvent(kr_prevClicked,Nr_interact,this.myCarousel.getCurrentSlideIndex()-1),this.showAlert=!1,this.currentSlideIndex!==this.questions.length&&(this.currentSlideIndex=this.currentSlideIndex+1),this.myCarousel.getCurrentSlideIndex()+1===this.noOfQuestions&&this.endPageReached?this.endPageReached=!1:this.myCarousel.move(this.carouselConfig.PREV),this.currentSlideIndex=this.myCarousel.getCurrentSlideIndex(),this.active=0===this.currentSlideIndex&&0===this.sectionIndex&&this.showStartPage,this.currentQuestionsMedia=(0,Be.Z)(this.questions[this.myCarousel.getCurrentSlideIndex()-1],"media"),this.setImageZoom(),this.setSkippedClass(this.myCarousel.getCurrentSlideIndex()-1)}},{key:"getQuestion",value:function(){this.myCarousel.getCurrentSlideIndex()>0&&this.threshold*this.noOfTimesApiCalled-1===this.myCarousel.getCurrentSlideIndex()&&this.threshold*this.noOfTimesApiCalled>=this.questions.length&&this.threshold>1&&this.viewerService.getQuestions(),this.myCarousel.getCurrentSlideIndex()>0&&void 0===this.questions[this.myCarousel.getCurrentSlideIndex()]&&this.threshold>1&&this.viewerService.getQuestions(),1===this.threshold&&this.myCarousel.getCurrentSlideIndex()>=0&&this.viewerService.getQuestion()}},{key:"resetQuestionState",value:function(){this.active=!1,this.showAlert=!1,this.optionSelectedObj=void 0,this.currentOptionSelected=void 0,this.currentQuestion=void 0,this.currentOptions=void 0,this.currentSolutions=void 0}},{key:"activeSlideChange",value:function(m){this.initialSlideDuration=(new Date).getTime(),this.isAssessEventRaised=!1;var x=document.querySelector("li.progressBar-border"),Y=document.querySelector(".lanscape-mode-right");Y&&x&&!this.parentConfig.isReplayed&&this.utilService.scrollParentToChild(Y,x)}},{key:"nextSlideClicked",value:function(m){var x;if(!this.showRootInstruction||!this.parentConfig.isSectionsAvailable)return 0===this.myCarousel.getCurrentSlideIndex()?this.nextSlide():void("next"===(null===(x=m)||void 0===x?void 0:x.type)&&this.validateSelectedOption(this.optionSelectedObj,"next"));this.showRootInstruction=!1}},{key:"previousSlideClicked",value:function(m){if("previous clicked"===m.event)if(this.optionSelectedObj&&this.showFeedBack)this.stopAutoNavigation=!1,this.validateSelectedOption(this.optionSelectedObj,"previous");else{if(this.stopAutoNavigation=!0,0===this.currentSlideIndex&&this.parentConfig.isSectionsAvailable&&this.getCurrentSectionIndex()>0){var x=this.mainProgressBar[this.getCurrentSectionIndex()-1].identifier;return void this.jumpToSection(x)}this.prevSlide()}}},{key:"getCurrentSectionIndex",value:function(){var m=this.sectionConfig.metadata.identifier;return this.mainProgressBar.findIndex(function(x){return x.identifier===m})}},{key:"goToSlideClicked",value:function(m,x){var Y;(null===(Y=this.progressBarClass)||void 0===Y?void 0:Y.length)?(m.stopPropagation(),this.active=!1,this.jumpSlideIndex=x,this.optionSelectedObj&&this.showFeedBack?(this.stopAutoNavigation=!1,this.validateSelectedOption(this.optionSelectedObj,"jump")):(this.stopAutoNavigation=!0,this.goToSlide(this.jumpSlideIndex))):0===x&&(this.jumpSlideIndex=0,this.goToSlide(this.jumpSlideIndex))}},{key:"onEnter",value:function(m,x){13===m.keyCode&&(m.stopPropagation(),this.goToSlideClicked(m,x))}},{key:"jumpToSection",value:function(m){this.showRootInstruction=!1,this.emitSectionEnd(!1,m)}},{key:"onSectionEnter",value:function(m,x){13===m.keyCode&&(m.stopPropagation(),this.optionSelectedObj&&this.validateSelectedOption(this.optionSelectedObj,"jump"),this.jumpToSection(x))}},{key:"onScoreBoardClicked",value:function(){this.viewerService.updateSectionQuestions(this.sectionConfig.metadata.identifier,this.questions),this.showScoreBoard.emit()}},{key:"onScoreBoardEnter",value:function(m){m.stopPropagation(),"Enter"===m.key&&this.onScoreBoardClicked()}},{key:"focusOnNextButton",value:function(){setTimeout(function(){var m=document.querySelector(".quml-navigation__next");m&&m.focus()},100)}},{key:"getOptionSelected",value:function(m){var Y,x=this;if(JSON.stringify(this.currentOptionSelected)!==JSON.stringify(m)){this.focusOnNextButton(),this.active=!0,this.currentOptionSelected=m;var Ce=this.myCarousel.getCurrentSlideIndex()-1;this.viewerService.raiseHeartBeatEvent(kr_optionClicked,Nr_interact,this.myCarousel.getCurrentSlideIndex()),(0,re.Z)(null===(Y=m)||void 0===Y?void 0:Y.option)?(this.optionSelectedObj=void 0,this.currentSolutions=void 0,this.updateScoreBoard(Ce,"skipped")):(this.optionSelectedObj=m,this.isAssessEventRaised=!1,this.currentSolutions=(0,re.Z)(m.solutions)?void 0:m.solutions),this.media=this.questions[this.myCarousel.getCurrentSlideIndex()-1].media,this.currentSolutions&&this.currentSolutions.forEach(function(tt,zt){"video"===tt.type&&x.media.forEach(function(Ht){Ht.id===x.currentSolutions[zt].value&&(x.currentSolutions[zt].type="video",x.currentSolutions[zt].src=Ht.src,x.currentSolutions[zt].thumbnail=Ht.thumbnail)})}),this.showFeedBack||this.validateSelectedOption(this.optionSelectedObj)}}},{key:"durationEnds",value:function(){this.showSolution=!1,this.showAlert=!1,this.emitSectionEnd(!0)}},{key:"checkCompatibilityLevel",value:function(m){var x,Y;if(m){var Ce=this.errorService.checkContentCompatibility(m);Ce.isCompitable||this.viewerService.raiseExceptionLog(ui.uY.contentCompatibility,ui.N3.contentCompatibility,Ce.error,null===(Y=null===(x=this.sectionConfig)||void 0===x?void 0:x.config)||void 0===Y?void 0:Y.traceId)}}},{key:"emitSectionEnd",value:function(){var m=arguments.length>0&&void 0!==arguments[0]&&arguments[0],x=arguments.length>1?arguments[1]:void 0,Y={summary:this.createSummaryObj(),score:this.calculateScore(),durationSpent:this.utilService.getTimeSpentText(this.initialTime),slideIndex:this.myCarousel.getCurrentSlideIndex(),isDurationEnded:m};x&&(Y.jumpToSection=x),this.viewerService.updateSectionQuestions(this.sectionConfig.metadata.identifier,this.questions),this.sectionEnd.emit(Y)}},{key:"closeAlertBox",value:function(m){var Y,Ce,x=this;"close"===(null===(Y=m)||void 0===Y?void 0:Y.type)?this.viewerService.raiseHeartBeatEvent(kr_closedFeedBack,Nr_interact,this.myCarousel.getCurrentSlideIndex()):"tryAgain"===(null===(Ce=m)||void 0===Ce?void 0:Ce.type)&&(this.tryAgainClicked=!0,setTimeout(function(){x.tryAgainClicked=!1},2e3),this.viewerService.raiseHeartBeatEvent(kr_tryAgain,Nr_interact,this.myCarousel.getCurrentSlideIndex())),this.showAlert=!1}},{key:"setSkippedClass",value:function(m){this.progressBarClass&&"unattempted"===(0,Be.Z)(this.progressBarClass[m],"class")&&(this.progressBarClass[m].class="skipped")}},{key:"toggleScreenRotate",value:function(m){this.viewerService.raiseHeartBeatEvent(kr_deviceRotationClicked,Nr_interact,this.myCarousel.getCurrentSlideIndex()+1)}},{key:"validateSelectedOption",value:function(m,x){var Y,Ce,tt,zt=null===(Ce=null===(Y=m)||void 0===Y?void 0:Y.option)||void 0===Ce?void 0:Ce.value,Ht=this.myCarousel.getCurrentSlideIndex()-1,Ut=!this.optionSelectedObj&&this.allowSkip&&"MCQ"===this.utilService.getQuestionType(this.questions,Ht),Mn="SA"===this.utilService.getQuestionType(this.questions,Ht),xr=this.startPageInstruction&&0===this.myCarousel.getCurrentSlideIndex(),Yr=!this.optionSelectedObj&&this.active,Ir=this.questions[Ht],aa=Ir.responseDeclaration?this.utilService.getKeyValue(Object.keys(Ir.responseDeclaration)):"";this.slideDuration=Math.round(((new Date).getTime()-this.initialSlideDuration)/1e3);var da,ko,ps,Fa,cr={id:Ir.identifier,title:Ir.name,desc:Ir.description,type:Ir.qType.toLowerCase(),maxscore:0===aa.length?0:Ir.responseDeclaration[aa].maxScore||0,params:"MCQ"===Ir.qType.toUpperCase()&&(null===(ko=null===(da=Ir)||void 0===da?void 0:da.editorState)||void 0===ko?void 0:ko.options)?Ir.editorState.options:"MCQ"!==Ir.qType.toUpperCase()||(0,re.Z)(null===(ps=Ir)||void 0===ps?void 0:ps.editorState)?[]:[null===(Fa=Ir)||void 0===Fa?void 0:Fa.editorState]};if(cr&&this.parentConfig.isSectionsAvailable&&(cr.sectionId=this.sectionConfig.metadata.identifier),!this.optionSelectedObj&&!this.isAssessEventRaised&&"SA"!==Ir.qType.toUpperCase()&&(this.isAssessEventRaised=!0,this.viewerService.raiseAssesEvent(cr,Ht+1,"No",0,[],this.slideDuration)),this.optionSelectedObj){if(this.currentQuestion=Ir.body,this.currentOptions=Ir.interactions[aa].options,"single"===m.cardinality){var Ai=Number(Ir.responseDeclaration[aa].correctResponse.value);if(this.showAlert=!0,(null===(tt=m.option)||void 0===tt?void 0:tt.value)===Ai){var Ni=this.getScore(Ht,aa,!0);this.isAssessEventRaised||(this.isAssessEventRaised=!0,this.viewerService.raiseAssesEvent(cr,Ht+1,"Yes",Ni,[m.option],this.slideDuration)),this.alertType="correct",this.showFeedBack&&this.correctFeedBackTimeOut(x),this.updateScoreBoard(Ht,"correct",void 0,Ni)}else{var Ka=this.getScore(Ht,aa,!1,m);this.alertType="wrong";var Ja="partial"===this.progressBarClass[Ht].class?"partial":"wrong";this.updateScoreBoard(Ht,Ja,zt,Ka),this.isAssessEventRaised||(this.isAssessEventRaised=!0,this.viewerService.raiseAssesEvent(cr,Ht+1,"No",0,[m.option],this.slideDuration))}}if("multiple"===m.cardinality){var Xa=this.questions[Ht].responseDeclaration,Po=this.utilService.getMultiselectScore(m.option,Xa);this.showAlert=!0,0===Po?(this.alertType="wrong",this.updateScoreBoard(Ht+1,"wrong")):(this.updateScoreBoard(Ht+1,"correct",void 0,Po),this.showFeedBack&&this.correctFeedBackTimeOut(x),this.alertType="correct")}this.optionSelectedObj=void 0}else Ut||Mn||xr||Yr?this.nextSlide():(this.startPageInstruction&&!this.optionSelectedObj&&!this.active&&!this.allowSkip&&this.myCarousel.getCurrentSlideIndex()>0&&"MCQ"===this.utilService.getQuestionType(this.questions,Ht)&&this.utilService.canGo(this.progressBarClass[this.myCarousel.getCurrentSlideIndex()])||!this.optionSelectedObj&&!this.active&&!this.allowSkip&&this.myCarousel.getCurrentSlideIndex()>=0&&"MCQ"===this.utilService.getQuestionType(this.questions,Ht)&&this.utilService.canGo(this.progressBarClass[this.myCarousel.getCurrentSlideIndex()]))&&this.infoPopupTimeOut()}},{key:"infoPopupTimeOut",value:function(){var m=this;this.infoPopup=!0,setTimeout(function(){m.infoPopup=!1},2e3)}},{key:"correctFeedBackTimeOut",value:function(m){var x=this;this.intervalRef=setTimeout(function(){x.showAlert&&(x.showAlert=!1,x.myCarousel.isLast(x.myCarousel.getCurrentSlideIndex())||"next"!==m?"previous"!==m||x.stopAutoNavigation?"jump"!==m||x.stopAutoNavigation?x.myCarousel.isLast(x.myCarousel.getCurrentSlideIndex())&&(x.endPageReached=!0,x.emitSectionEnd()):x.goToSlide(x.jumpSlideIndex):x.prevSlide():x.nextSlide())},4e3)}},{key:"goToSlide",value:function(m){var x,Y;if(this.viewerService.raiseHeartBeatEvent(kr_goToQuestion,Nr_interact,this.myCarousel.getCurrentSlideIndex()),this.disableNext=!1,this.currentSlideIndex=m,this.showRootInstruction=!1,0===m)return this.optionSelectedObj=void 0,this.myCarousel.selectSlide(0),this.active=0===this.currentSlideIndex&&0===this.sectionIndex&&this.showStartPage,this.showRootInstruction=!0,void((null===(Y=null===(x=this.sectionConfig.metadata)||void 0===x?void 0:x.children)||void 0===Y?void 0:Y.length)||(this.disableNext=!0));this.currentQuestionsMedia=(0,Be.Z)(this.questions[this.currentSlideIndex-1],"media"),this.setSkippedClass(this.currentSlideIndex-1),this.initializeTimer||(this.initializeTimer=!0),void 0===this.questions[m-1]?(this.showQuestions=!1,this.viewerService.getQuestions(0,m),this.currentSlideIndex=m):void 0!==this.questions[m-1]&&this.myCarousel.selectSlide(m),this.setImageZoom(),this.currentSolutions=void 0,this.highlightQuestion()}},{key:"goToQuestion",value:function(m){this.active=!1,this.showRootInstruction=!1,this.disableNext=!1,this.initializeTimer=!0;var x=m.questionNo;this.viewerService.getQuestions(0,x),this.currentSlideIndex=x,this.myCarousel.selectSlide(x),this.highlightQuestion()}},{key:"highlightQuestion",value:function(){var m,x,Y,Ce=this.questions[this.currentSlideIndex-1],tt=null===(x=null===(m=Ce)||void 0===m?void 0:m.qType)||void 0===x?void 0:x.toUpperCase(),zt=document.getElementById(null===(Y=Ce)||void 0===Y?void 0:Y.identifier);if(zt&&tt){var Ht;if("MCQ"===tt)Ht=zt.querySelector(".mcq-title");else Ht=zt.querySelector(".question-container");Ht&&setTimeout(function(){Ht.focus()},0)}}},{key:"getSolutions",value:function(){var m=this;this.showAlert=!1,this.viewerService.raiseHeartBeatEvent(kr_showAnswer,Nr_interact,this.myCarousel.getCurrentSlideIndex()),this.viewerService.raiseHeartBeatEvent(kr_showAnswer,Nr_impression,this.myCarousel.getCurrentSlideIndex());var x=this.myCarousel.getCurrentSlideIndex()-1;this.currentQuestion=this.questions[x].body,this.currentOptions=this.questions[x].interactions.response1.options,this.currentQuestionsMedia=(0,Be.Z)(this.questions[x],"media"),setTimeout(function(){m.setImageZoom()}),setTimeout(function(){m.setImageHeightWidthClass()},100),this.currentSolutions&&(this.showSolution=!0),this.clearTimeInterval()}},{key:"viewSolution",value:function(){var m=this;this.viewerService.raiseHeartBeatEvent(kr_viewSolutionClicked,Nr_interact,this.myCarousel.getCurrentSlideIndex()),this.showSolution=!0,this.showAlert=!1,this.currentQuestionsMedia=(0,Be.Z)(this.questions[this.myCarousel.getCurrentSlideIndex()-1],"media"),setTimeout(function(){m.setImageZoom(),m.setImageHeightWidthClass()}),clearTimeout(this.intervalRef)}},{key:"closeSolution",value:function(){this.setImageZoom(),this.viewerService.raiseHeartBeatEvent(kr_solutionClosed,Nr_interact,this.myCarousel.getCurrentSlideIndex()),this.showSolution=!1,this.myCarousel.selectSlide(this.currentSlideIndex),this.focusOnNextButton()}},{key:"viewHint",value:function(){this.viewerService.raiseHeartBeatEvent(kr_viewHint,Nr_interact,this.myCarousel.getCurrentSlideIndex())}},{key:"onAnswerKeyDown",value:function(m){"Enter"===m.key&&(m.stopPropagation(),this.getSolutions())}},{key:"showAnswerClicked",value:function(m,x){var Y;if(null===(Y=m)||void 0===Y?void 0:Y.showAnswer){if(this.focusOnNextButton(),this.active=!0,this.progressBarClass[this.myCarousel.getCurrentSlideIndex()-1].class="correct",x){var Ce=this.questions.findIndex(function(tt){return tt.identifier===x.identifier});Ce>-1&&(this.questions[Ce].isAnswerShown=!0,this.viewerService.updateSectionQuestions(this.sectionConfig.metadata.identifier,this.questions))}this.viewerService.raiseHeartBeatEvent(kr_showAnswer,Nr_interact,Kl_shortAnswer),this.viewerService.raiseHeartBeatEvent(kr_pageScrolled,Nr_impression,this.myCarousel.getCurrentSlideIndex()-1)}}},{key:"getScore",value:function(m,x,Y,Ce){var tt=this;if(Y)return this.questions[m].responseDeclaration[x].correctResponse.outcomes.SCORE?this.questions[m].responseDeclaration[x].correctResponse.outcomes.SCORE:this.questions[m].responseDeclaration[x].maxScore||1;var zt=Ce.option.value,Ht=this.questions[m].responseDeclaration.mapping,Ut=0;return Ht&&Ht.forEach(function(Mn){zt===Mn.response&&(Ut=Mn.outcomes.SCORE||0,Mn.outcomes.SCORE&&(tt.progressBarClass[m].class="partial"))}),Ut}},{key:"calculateScore",value:function(){return this.progressBarClass.reduce(function(m,x){return m+x.score},0)}},{key:"updateScoreBoard",value:function(m,x,Y,Ce){var tt=this;this.progressBarClass.forEach(function(zt){zt.index-1===m&&(zt.class=x,zt.score=Ce||0,tt.showFeedBack||(zt.value=Y))})}},{key:"setImageHeightWidthClass",value:function(){document.querySelectorAll("[data-asset-variable]").forEach(function(m){m.removeAttribute("class"),m.clientHeight>m.clientWidth?m.setAttribute("class","portrait"):m.clientHeighttt.clientWidth?Mn.setAttribute("class","portrait"):tt.clientHeight100&&(this.imageZoomCount=this.imageZoomCount-10,this.setImageModalHeightWidth())}},{key:"setImageModalHeightWidth",value:function(){this.imageModal.nativeElement.style.width="".concat(this.imageZoomCount,"%"),this.imageModal.nativeElement.style.height="".concat(this.imageZoomCount,"%")}},{key:"closeZoom",value:function(){this.viewerService.raiseHeartBeatEvent(kr_zoomCloseClicked,Nr_interact,this.myCarousel.getCurrentSlideIndex()),document.getElementById("imageModal").removeAttribute("style"),this.showZoomModal=!1}},{key:"clearTimeInterval",value:function(){this.intervalRef&&clearTimeout(this.intervalRef)}},{key:"ngOnDestroy",value:function(){this.destroy$.next(!0),this.destroy$.unsubscribe(),this.errorService.getInternetConnectivityError.unsubscribe(),this.subscription&&this.subscription.unsubscribe()}}]),b}();q1.\u0275fac=function(I){return new(I||q1)(t.Y36(Ra),t.Y36(ia),t.Y36(A1),t.Y36(t.sBO),t.Y36(ui.T_))},q1.\u0275cmp=t.Xpm({type:q1,selectors:[["quml-section-player"]],viewQuery:function(I,m){var x;(1&I&&(t.Gf(w0,5),t.Gf(T0,7),t.Gf(Ua,5)),2&I)&&(t.iGM(x=t.CRH())&&(m.myCarousel=x.first),t.iGM(x=t.CRH())&&(m.imageModal=x.first),t.iGM(x=t.CRH())&&(m.questionSlide=x.first))},hostBindings:function(I,m){1&I&&t.NdJ("beforeunload",function(){return m.ngOnDestroy()},!1,t.Jf7)},inputs:{sectionIndex:"sectionIndex",sectionConfig:"sectionConfig",attempts:"attempts",jumpToQuestion:"jumpToQuestion",mainProgressBar:"mainProgressBar",parentConfig:"parentConfig"},outputs:{playerEvent:"playerEvent",sectionEnd:"sectionEnd",showScoreBoard:"showScoreBoard"},features:[t.TTD],decls:11,vars:5,consts:[["class","quml-container",3,"hidden",4,"ngIf"],["class","info-popup",4,"ngIf"],[4,"ngIf"],[1,"image-viewer__overlay",3,"hidden"],[1,"image-viewer__close",3,"click"],[1,"image-viewer__container"],["id","imageModal","alt","Zoomed image",1,"image-viewer__img",3,"src"],["imageModal",""],[1,"image-viewer__zoom"],[1,"image-viewer__zoomin",3,"click"],[1,"image-viewer__zoomout",3,"click"],[1,"quml-container",3,"hidden"],[1,"quml-landscape",3,"hidden"],[1,"main-header",3,"disablePreviousNavigation","duration","warningTime","showTimer","showLegend","currentSlideIndex","totalNoOfQuestions","active","showFeedBack","currentSolutions","initializeTimer","replayed","disableNext","startPageInstruction","attempts","showStartPage","showDeviceOrientation","durationEnds","nextSlideClicked","prevSlideClicked","showSolution","toggleScreenRotate"],[1,"landscape-mode"],[1,"lanscape-mode-left"],["class","current-slide",4,"ngIf"],[1,"landscape-content"],[1,"landscape-center",3,"interval","showIndicators","noWrap","activeSlideChange"],["myCarousel",""],[3,"instructions","points","time","showTimer","totalNoOfQuestions","contentName"],[4,"ngFor","ngForOf"],[1,"lanscape-mode-right"],["tabindex","0",1,"showFeedBack-progressBar","info-page","hover-effect",3,"ngClass","keydown","click"],["class","scoreboard-sections",4,"ngIf"],["class","singleContent",4,"ngIf"],["class","singleContent nonFeedback",4,"ngIf"],["class","requiresSubmit cursor-pointer showFeedBack-progressBar hover-effect","tabindex","0","aria-label","scoreboard",3,"click","keydown",4,"ngIf"],[3,"alertType","isHintAvailable","showSolutionButton","showSolution","showHint","closeAlert",4,"ngIf"],[3,"question","options","solutions","close",4,"ngIf"],[1,"current-slide"],[3,"click","keydown"],["questionSlide",""],[3,"id"],[3,"question","replayed","identifier","tryAgain","optionSelected"],[3,"questions","replayed","baseUrl","showAnswerClicked"],[1,"scoreboard-sections"],["class","section relative",3,"ngClass","click","keydown",4,"ngFor","ngForOf"],[1,"section","relative",3,"ngClass","click","keydown"],["tabindex","0",1,"progressBar-border",3,"for","ngClass"],["class","nonFeedback",4,"ngIf"],["tabindex","0","class","showFeedBack-progressBar",3,"ngClass","click","keydown",4,"ngFor","ngForOf"],["tabindex","0",1,"showFeedBack-progressBar",3,"ngClass","click","keydown"],[1,"nonFeedback"],[1,"singleContent"],["tabindex","0","class","showFeedBack-progressBar hover-effect",3,"ngClass","click","keydown",4,"ngFor","ngForOf"],["tabindex","0",1,"showFeedBack-progressBar","hover-effect",3,"ngClass","click","keydown"],[1,"singleContent","nonFeedback"],["tabindex","0","aria-label","scoreboard",1,"requiresSubmit","cursor-pointer","showFeedBack-progressBar","hover-effect",3,"click","keydown"],["src","./assets/flag_inactive.svg","alt","Flag logo: Show scoreboard"],[3,"alertType","isHintAvailable","showSolutionButton","showSolution","showHint","closeAlert"],[3,"question","options","solutions","close"],[1,"info-popup"]],template:function(I,m){1&I&&(t.YNc(0,t1,27,38,"div",0),t.YNc(1,o3,2,0,"div",1),t.YNc(2,d2,1,0,"sb-player-contenterror",2),t.TgZ(3,"div",3),t.TgZ(4,"div",4),t.NdJ("click",function(){return m.closeZoom()}),t.qZA(),t.TgZ(5,"div",5),t._UZ(6,"img",6,7),t.qZA(),t.TgZ(8,"div",8),t.TgZ(9,"div",9),t.NdJ("click",function(){return m.zoomIn()}),t.qZA(),t.TgZ(10,"div",10),t.NdJ("click",function(){return m.zoomOut()}),t.qZA(),t.qZA(),t.qZA()),2&I&&(t.Q6J("ngIf",m.loadView),t.xp6(1),t.Q6J("ngIf",m.infoPopup),t.xp6(1),t.Q6J("ngIf",m.showContentError),t.xp6(1),t.Q6J("hidden",!m.showZoomModal),t.xp6(3),t.Q6J("src",m.zoomImgSrc,t.LSH))},directives:[ct.O5,ds,is,Lo,ks,ct.sg,ct.mk,hl,n1,O1,vl,c1,ui.vM],styles:["@charset \"UTF-8\"; :root{--quml-scoreboard-sub-title:#6D7278;--quml-scoreboard-skipped:#969696;--quml-scoreboard-unattempted:#575757;--quml-color-success:#08BC82;--quml-color-danger:#F1635D;--quml-color-primary-contrast:#333;--quml-btn-border:#ccc;--quml-heder-text-color:#6250f5;--quml-header-bg-color:#c2c2c2;--quml-mcq-title-txt:#131415;--quml-zoom-btn-txt:#eee;--quml-zoom-btn-hover:#f2f2f2;--quml-main-bg:#fff;--quml-btn-color:#fff;--quml-question-bg:#fff}.quml-header[_ngcontent-%COMP%]{background:var(--quml-header-bg-color);display:flow-root;height:2.25rem;position:fixed}.quml-container[_ngcontent-%COMP%]{overflow:hidden;width:100%;height:100%;position:relative}.quml-landscape[_ngcontent-%COMP%]{width:100%;height:100%} .carousel{outline:0}.col[_ngcontent-%COMP%]{padding-left:0;padding-right:0}.quml-button[_ngcontent-%COMP%]{background-color:var(--primary-color);border:none;color:var(--quml-btn-color);padding:.25rem;text-align:center;text-decoration:none;font-size:1rem;margin:.125rem .5rem .125rem .125rem;cursor:pointer;width:3rem;height:2.5rem;border-radius:10%}.landscape-mode[_ngcontent-%COMP%]{height:100%;width:100%;position:relative;background-color:var(--quml-main-bg)}.landscape-content[_ngcontent-%COMP%]{padding:2.5rem 4rem 0;overflow:auto;height:100%;width:100%}@media only screen and (max-width:480px){.landscape-content[_ngcontent-%COMP%]{padding:5rem 1rem 0;height:calc(100% - 3rem)}}.lanscape-mode-left[_ngcontent-%COMP%]{position:absolute;left:0;top:3.5rem;text-align:center;z-index:1;width:4rem}.lanscape-mode-left[_ngcontent-%COMP%] div[_ngcontent-%COMP%]{padding-bottom:1.5rem}.landscape-center[_ngcontent-%COMP%]{width:100%}.lanscape-mode-right[_ngcontent-%COMP%]{-ms-overflow-style:none;scrollbar-width:none;position:absolute;padding:0 1rem;right:.5rem;color:var(--quml-scoreboard-unattempted);font-size:.75rem;height:calc(100% - 4rem);overflow-y:auto;top:3.5rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style:none;margin-top:.5rem;padding:0;text-align:center;position:relative}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before{content:\"\";width:.0625rem;height:100%;position:absolute;left:0;right:0;background-color:rgba(204,204,204,.5);z-index:1;margin:0 auto}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{position:relative;z-index:2}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%]{color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted);border-radius:50%;width:1.25rem;height:1.25rem;background:var(--white)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover{border:1px solid var(--primary-color);color:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%]{color:var(--white);background:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover{border:1px solid var(--primary-color);color:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%]{color:var(--white);background:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.progressBar-border[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:focus::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover::after{border:1px solid var(--primary-color);content:\"\";width:1.65rem;height:1.65rem;border-radius:50%;padding:.25rem;position:absolute}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after{content:\"\";display:inline-block;transform:rotate(45deg);height:.6rem;width:.3rem;border-bottom:.12rem solid var(--primary-color);border-right:.12rem solid var(--primary-color);position:absolute;top:.25rem;right:-.7rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after{content:\"\";position:absolute;top:.525rem;right:-.7rem;height:.375rem;width:.375rem;border-radius:.375rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after{--correct-bg:var(--quml-color-success);background:var(--correct-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after{--wrong-bg:var(--quml-color-danger);background:var(--wrong-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after{--partial-bg:linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );background:var(--partial-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%] label[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{color:var(--white)!important;background:var(--primary-color);border:.03125rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{background-color:var(--quml-question-bg);border-radius:.25rem;width:1.25rem;padding:.25rem;height:1.25rem;display:flex;align-items:center;justify-content:center;color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted);margin-bottom:2.25rem;cursor:pointer}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%]{color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted);border-radius:50%;background:var(--white)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover{color:var(--primary-color);border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover::after{border:1px solid var(--primary-color);content:\"\";height:1.65rem;border-radius:.25rem;position:absolute;width:1.65rem;background:var(--quml-question-bg);z-index:-1}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.skipped[_ngcontent-%COMP%]{color:var(--white);background:var(--quml-scoreboard-skipped);border:.0625rem solid var(--quml-scoreboard-skipped)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%]{color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color);color:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]{display:none}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%]{height:0;transform:scaleY(0)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%]{height:100%;transform-origin:top;transition:transform .2s ease-out;transform:scaleY(1)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ label[_ngcontent-%COMP%]{border:.0625rem solid var(--primary-color);color:var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]{background-color:var(--quml-question-bg);border-radius:50%;width:1.25rem;padding:.25rem;height:1.25rem;display:flex;align-items:center;justify-content:center;border:.0625rem solid #ccc;margin-bottom:2.25rem;cursor:pointer}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.requiresSubmit[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] .active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.att-color[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.progressBar-border[_ngcontent-%COMP%]{color:var(--primary-color);border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.info-page[_ngcontent-%COMP%]{color:var(--white);background:var(--primary-color);border:.0625rem solid var(--primary-color)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%]{color:var(--white);background:var(--quml-scoreboard-skipped);border:.0625rem solid var(--quml-scoreboard-skipped)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%]:hover{color:var(--white)!important}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%]{color:var(--white);border:0 solid transparent}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%]{--correct-bg:var(--quml-color-success);background:var(--correct-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%]{--wrong-bg:var(--quml-color-danger);background:var(--wrong-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%]{--partial-bg:linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );background:var(--partial-bg)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%]{color:var(--quml-scoreboard-unattempted);border:.03125rem solid var(--quml-scoreboard-unattempted)}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%]:hover{border:.0625rem solid var(--primary-color);color:var(--primary-color)}.current-slide[_ngcontent-%COMP%]{color:var(--quml-scoreboard-sub-title);font-size:.875rem;font-weight:900;letter-spacing:0}@media only screen and (max-width:480px){.lanscape-mode-right[_ngcontent-%COMP%]{background:var(--white);display:flex;align-items:center;overflow-x:auto;overflow-y:hidden;width:90%;height:2.5rem;padding:1rem 0 0;margin:auto;left:0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style:none;padding:0;text-align:center;position:relative;display:flex;height:1.5rem;margin-top:0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]{margin-right:2.25rem;z-index:1}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child{margin-right:0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%]{display:flex}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child{margin-right:2.25rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{top:-1.75rem;position:inherit;margin:.5rem 2.25rem;padding-left:1.25rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before{background:0 0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after{content:\"\";top:-.8125rem;right:auto;left:.625rem}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after{content:\"\";top:-.525rem;left:.5rem;right:auto}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{margin-right:2.25rem;margin-bottom:0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before{content:\"\";width:100%;height:.0625rem;position:absolute;left:0;top:50%;transform:translate(0,-50%);right:0;background-color:rgba(204,204,204,.5);z-index:0;margin:0 auto}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%]{width:0;transform:scaleX(0);margin:0}.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%]{width:calc(100% - 4rem);transform-origin:left;transition:transform .2s ease-out;transform:scaleX(1);margin:-1.25rem 3rem 0 4rem}.landscape-center[_ngcontent-%COMP%]{margin-top:2rem}.lanscape-mode-left[_ngcontent-%COMP%]{display:none}.landscape-mode[_ngcontent-%COMP%]{grid-template-areas:\"right right right\" \"center center center\" \"left left left\"} .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-mcq-solutions .mcq-title, quml-sa .mcq-title{margin-top:1rem}}.quml-timer[_ngcontent-%COMP%]{padding:.5rem}.quml-header-text[_ngcontent-%COMP%]{margin:.5rem;text-align:center;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.quml-arrow-button[_ngcontent-%COMP%]{border-radius:28%;font-size:0;outline:0;background-color:var(--primary-color);padding:.5rem}.info-popup[_ngcontent-%COMP%]{position:absolute;top:18%;right:10%;font-size:.875rem;font-family:noto-sans;box-shadow:0 .125rem .875rem 0 rgba(0,0,0,.1);padding:.75rem}.quml-menu[_ngcontent-%COMP%]{width:1.5rem;height:1.5rem}.quml-card[_ngcontent-%COMP%]{background-color:var(--white);padding:1.25rem;box-shadow:0 .25rem .5rem 0 rgba(0,0,0,.2);width:25%;position:absolute;left:37%;text-align:center;top:25%;z-index:2}.quml-card-title[_ngcontent-%COMP%]{font-size:1.25rem;text-align:center}.quml-card-body[_ngcontent-%COMP%] .wrong[_ngcontent-%COMP%]{color:red}.quml-card-body[_ngcontent-%COMP%] .right[_ngcontent-%COMP%]{color:green}.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%] button[_ngcontent-%COMP%]{color:var(--white);background-color:var(--primary-color);border-color:var(--primary-color);outline:0;font-size:.875rem;padding:.25rem 1.5rem}.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%]{width:40%;display:inline;padding-right:.75rem} .carousel.slide .carousel-control.carousel-control-next, .carousel.slide a.left.carousel-control.carousel-control-prev{display:none} .carousel-item{perspective:unset}.potrait-header-top[_ngcontent-%COMP%]{visibility:hidden;margin-top:-2.5rem}.potrait-header-top[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%]{display:-ms-grid;display:grid;-ms-grid-columns:1fr 15fr;grid-template-columns:1fr 15fr}.potrait-header-top[_ngcontent-%COMP%] .quml-menu[_ngcontent-%COMP%]{color:var(--quml-heder-text-color);font-size:1.5rem;padding-left:1.25rem;margin-top:.25rem}.potrait-header-top[_ngcontent-%COMP%] .quml-header-text[_ngcontent-%COMP%]{font-size:.875rem;color:var(--quml-heder-text-color)}.row[_ngcontent-%COMP%]{margin-right:0;margin-left:0}.portrait-header[_ngcontent-%COMP%]{visibility:hidden}.image-viewer__close[_ngcontent-%COMP%], .image-viewer__container[_ngcontent-%COMP%], .image-viewer__overlay[_ngcontent-%COMP%], .image-viewer__zoom[_ngcontent-%COMP%]{position:absolute}.image-viewer__overlay[_ngcontent-%COMP%]{width:100%;height:100%;background:var(--quml-color-primary-contrast);z-index:11111}.image-viewer__container[_ngcontent-%COMP%]{background-color:var(--quml-color-primary-contrast);top:50%;left:50%;transform:translate(-50%,-50%);z-index:11111;width:80%;height:80%}.image-viewer__img[_ngcontent-%COMP%]{width:100%;height:100%}.image-viewer__close[_ngcontent-%COMP%]{top:1rem;right:1rem;text-align:center;cursor:pointer;z-index:999999;background:rgba(0,0,0,.5);border-radius:100%;width:3rem;height:3rem;position:fixed}.image-viewer__close[_ngcontent-%COMP%]::after{content:\"\u2715\";color:var(--white);font-size:2rem}.image-viewer__close[_ngcontent-%COMP%]:hover{background:#000}.image-viewer__zoom[_ngcontent-%COMP%]{bottom:1rem;right:1rem;width:2.5rem;height:auto;border-radius:.5rem;background:var(--white);display:flex;flex-direction:column;align-items:center;overflow:hidden;z-index:99999;position:fixed;border:.0625rem solid var(--quml-zoom-btn-txt)}.image-viewer__zoomin[_ngcontent-%COMP%], .image-viewer__zoomout[_ngcontent-%COMP%]{text-align:center;height:2.5rem;position:relative;width:2.5rem;cursor:pointer}.image-viewer__zoomin[_ngcontent-%COMP%]:hover, .image-viewer__zoomout[_ngcontent-%COMP%]:hover{background-color:var(--quml-zoom-btn-hover)}.image-viewer__zoomin[_ngcontent-%COMP%]::after, .image-viewer__zoomout[_ngcontent-%COMP%]::after{font-size:1.5rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.image-viewer__zoomin[_ngcontent-%COMP%]{border-bottom:.0625rem solid var(--quml-btn-border)}.image-viewer__zoomin[_ngcontent-%COMP%]::after{content:\"+\"}.image-viewer__zoomout[_ngcontent-%COMP%]::after{content:\"\u2212\"} quml-ans{cursor:pointer} quml-ans svg circle{fill:var(--quml-zoom-btn-txt)} .magnify-icon{position:absolute;right:0;width:1.5rem;height:1.5rem;border-top-left-radius:.5rem;cursor:pointer;background-color:var(--quml-color-primary-contrast)} .magnify-icon::after{content:\"\";position:absolute;bottom:.125rem;right:.125rem;z-index:1;width:1rem;height:1rem;background-image:url(\"data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='512' height='512' x='0' y='0' viewBox='0 0 37.166 37.166' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35.829,32.045l-6.833-6.833c-0.513-0.513-1.167-0.788-1.836-0.853c2.06-2.567,3.298-5.819,3.298-9.359 c0-8.271-6.729-15-15-15c-8.271,0-15,6.729-15,15c0,8.271,6.729,15,15,15c3.121,0,6.021-0.96,8.424-2.598 c0.018,0.744,0.305,1.482,0.872,2.052l6.833,6.833c0.585,0.586,1.354,0.879,2.121,0.879s1.536-0.293,2.121-0.879 C37.001,35.116,37.001,33.217,35.829,32.045z M15.458,25c-5.514,0-10-4.484-10-10c0-5.514,4.486-10,10-10c5.514,0,10,4.486,10,10 C25.458,20.516,20.972,25,15.458,25z M22.334,15c0,1.104-0.896,2-2,2h-2.75v2.75c0,1.104-0.896,2-2,2s-2-0.896-2-2V17h-2.75 c-1.104,0-2-0.896-2-2s0.896-2,2-2h2.75v-2.75c0-1.104,0.896-2,2-2s2,0.896,2,2V13h2.75C21.438,13,22.334,13.895,22.334,15z' fill='%23ffffff' data-original='%23000000' style='' class=''/%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A\");background-size:cover;background-repeat:no-repeat;background-position:center} .solution-options figure.image{border:.0625rem solid var(--quml-btn-border);overflow:hidden;border-radius:.25rem;position:relative;width:7.5rem;height:7.5rem} .image-viewer__overlay .image-viewer__container, .solutions .solution-options figure.image{display:flex;align-items:center;justify-content:center} .image-viewer__overlay .image-viewer__container .portrait, .solutions .solution-options figure.image .portrait{width:auto;height:100%} .image-viewer__overlay .image-viewer__container .neutral, .solutions .solution-options figure.image .neutral{width:auto;height:auto}@media only screen and (max-width:768px){ .image-viewer__overlay .image-viewer__container .neutral, .solutions .solution-options figure.image .neutral{width:100%}}@media only screen and (min-width:768px){ .image-viewer__overlay .image-viewer__container .neutral, .solutions .solution-options figure.image .neutral{height:100%}} .image-viewer__overlay .image-viewer__container .landscape, .solutions .solution-options figure.image .landscape{width:100%;height:auto} .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-mcq-solutions .mcq-title, quml-sa .mcq-title{color:var(--quml-mcq-title-txt)} .quml-mcq .quml-mcq--question p, .quml-sa .quml-mcq--question p, quml-mcq-solutions .quml-mcq--question p, quml-sa .quml-mcq--question p{line-height:normal} .quml-mcq .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-mcq .quml-mcq--option .quml-mcq-option-card p:last-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:first-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:last-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child{margin-bottom:0} quml-mcq-solutions .mcq-title p, quml-mcq-solutions .text-center, quml-mcq-solutions .text-left, quml-mcq-solutions .text-right, quml-mcq-solutions h1, quml-mcq-solutions h2, quml-mcq-solutions h3, quml-mcq-solutions h4, quml-mcq-solutions h5, quml-mcq-solutions h6, quml-mcq-solutions p{text-align:center!important} quml-mcq-solutions .solutions .solution-options-container{align-items:center} quml-mcq-solutions .image-style-align-left, quml-mcq-solutions .image-style-align-right{float:none!important;text-align:center!important;margin:0 auto!important} quml-mcq-solutions figure.image, quml-mcq-solutions figure.image.resize-100, quml-mcq-solutions figure.image.resize-25, quml-mcq-solutions figure.image.resize-50, quml-mcq-solutions figure.image.resize-75, quml-mcq-solutions figure.image.resize-original{width:25%;height:auto} quml-mcq-solutions .solution-options p{margin-bottom:1rem}.endPage-container-height[_ngcontent-%COMP%]{height:100%}.scoreboard-sections[_ngcontent-%COMP%]{display:contents}.scoreboard-sections[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{position:relative;z-index:2}.hover-effect.progressBar-border[_ngcontent-%COMP%]::after, .hover-effect[_ngcontent-%COMP%]:focus::after, .hover-effect[_ngcontent-%COMP%]:hover::after{border:1px solid var(--primary-color);content:\"\";width:1.65rem;height:1.65rem;border-radius:50%;padding:.25rem;position:absolute}",ac]}),q1.ctorParameters=function(){return[{type:Ra},{type:ia},{type:A1},{type:t.sBO},{type:ui.T_}]},q1.propDecorators={sectionConfig:[{type:t.IIB}],attempts:[{type:t.IIB}],jumpToQuestion:[{type:t.IIB}],mainProgressBar:[{type:t.IIB}],sectionIndex:[{type:t.IIB}],parentConfig:[{type:t.IIB}],playerEvent:[{type:t.r_U}],sectionEnd:[{type:t.r_U}],showScoreBoard:[{type:t.r_U}],myCarousel:[{type:t.i9L,args:["myCarousel",{static:!1}]}],imageModal:[{type:t.i9L,args:["imageModal",{static:!0}]}],questionSlide:[{type:t.i9L,args:["questionSlide",{static:!1}]}],ngOnDestroy:[{type:t.L6J,args:["window:beforeunload"]}]};var nu=function(){function b(I,m){(0,L.Z)(this,b),this.viewerService=I,this.utilService=m,this.playerEvent=new t.vpe,this.telemetryEvent=new t.vpe,this.isLoading=!1,this.isSectionsAvailable=!1,this.isMultiLevelSection=!1,this.sections=[],this.sectionIndex=0,this.parentConfig={loadScoreBoard:!1,requiresSubmit:!1,isSectionsAvailable:!1,isReplayed:!1,identifier:"",contentName:"",baseUrl:"",isAvailableLocally:!1,instructions:{},questionCount:0,sideMenuConfig:{enable:!0,showShare:!0,showDownload:!1,showExit:!1},showFeedback:!1,showLegend:!0},this.endPageReached=!1,this.isEndEventRaised=!1,this.isSummaryEventRaised=!1,this.showReplay=!0,this.mainProgressBar=[],this.loadScoreBoard=!1,this.summary={correct:0,partial:0,skipped:0,wrong:0},this.isDurationExpired=!1,this.finalScore=0,this.totalNoOfQuestions=0,this.totalVisitedQuestion=0}return(0,C.Z)(b,[{key:"onTelemetryEvent",value:function(m){this.telemetryEvent.emit(m.detail)}},{key:"ngOnInit",value:function(){if("string"==typeof this.playerConfig)try{this.playerConfig=JSON.parse(this.playerConfig)}catch(m){console.error("Invalid playerConfig: ",m)}this.isLoading=!0,this.setConfig(),this.initializeSections()}},{key:"initializeSections",value:function(){var x,Y,Ce,tt,zt,Ht,Ut,Mn,xr,Yr,m=this,Ir=Bo(this.playerConfig.metadata.children,"mimeType");if(this.parentConfig.isSectionsAvailable=this.isSectionsAvailable=Ir[0]===us_questionSet,this.viewerService.sectionQuestions=[],this.isSectionsAvailable)if(this.isMultiLevelSection=this.getMultilevelSection(this.playerConfig.metadata),this.isMultiLevelSection)this.contentError={messageHeader:"Unable to load content",messageTitle:"Multi level sections are not supported as of now"};else{var aa=this.playerConfig.metadata.children;this.sections=Bo(aa,function(Ni){var Ka,Ja,Xa,Po,d1,da,ko=(null===(Ja=null===(Ka=Ni)||void 0===Ka?void 0:Ka.children)||void 0===Ja?void 0:Ja.map(function(Fa){return Fa.identifier}))||[],ps=null===(Xa=Ni)||void 0===Xa?void 0:Xa.maxQuestions;return(null===(Po=Ni)||void 0===Po?void 0:Po.shuffle)&&!(null===(da=null===(d1=m.playerConfig.config)||void 0===d1?void 0:d1.progressBar)||void 0===da?void 0:da.length)&&(ko=Qs(ko)),ps&&(ko=ko.slice(0,ps)),m.playerConfig.metadata.timeLimits&&(Ni=Object.assign(Object.assign({},Ni),{timeLimits:m.playerConfig.metadata.timeLimits,showTimer:m.playerConfig.metadata.showTimer})),Object.assign(Object.assign({},m.playerConfig),{metadata:Object.assign(Object.assign({},Ni),{childNodes:ko})})}),this.setInitialScores(),this.activeSection=la(this.sections[0]),this.isLoading=!1}else{var Ji=[];Ji=(null===(Y=null===(x=this.playerConfig.metadata)||void 0===x?void 0:x.children)||void 0===Y?void 0:Y.length)?this.playerConfig.metadata.children.map(function(Ni){return Ni.identifier}):this.playerConfig.metadata.childNodes;var cr=this.playerConfig.metadata.maxQuestions;if(cr&&(Ji=Ji.slice(0,cr)),(null===(Ce=this.playerConfig.metadata)||void 0===Ce?void 0:Ce.shuffle)&&!(null===(zt=null===(tt=this.playerConfig.config)||void 0===tt?void 0:tt.progressBar)||void 0===zt?void 0:zt.length)&&(Ji=Qs(Ji)),Ji.forEach(function(Ni,Ka){m.totalNoOfQuestions++,m.mainProgressBar.push({index:Ka+1,class:"unattempted",value:void 0,score:0})}),this.playerConfig.metadata.childNodes=Ji,(null===(Ut=null===(Ht=this.playerConfig.config)||void 0===Ht?void 0:Ht.progressBar)||void 0===Ut?void 0:Ut.length)&&(this.mainProgressBar=la(this.playerConfig.config.progressBar)),null===(xr=null===(Mn=this.playerConfig.config)||void 0===Mn?void 0:Mn.questions)||void 0===xr?void 0:xr.length){var Ai=this.playerConfig.config.questions.find(function(Ni){return Ni.id===m.playerConfig.metadata.identifier});(null===(Yr=Ai)||void 0===Yr?void 0:Yr.questions)&&this.viewerService.updateSectionQuestions(this.playerConfig.metadata.identifier,Ai.questions)}this.activeSection=la(this.playerConfig),this.isLoading=!1,this.parentConfig.questionCount=this.totalNoOfQuestions}}},{key:"setConfig",value:function(){var m,x,Y,Ce,tt,zt,Ht,Ut,Mn,xr,Yr,Ir,aa,Ji,cr,Ai,Ni;this.parentConfig.contentName=null===(m=this.playerConfig.metadata)||void 0===m?void 0:m.name,this.parentConfig.identifier=null===(x=this.playerConfig.metadata)||void 0===x?void 0:x.identifier,this.parentConfig.requiresSubmit="no"!==(null===(Ce=null===(Y=this.playerConfig.metadata)||void 0===Y?void 0:Y.requiresSubmit)||void 0===Ce?void 0:Ce.toLowerCase()),this.parentConfig.instructions=null===(zt=null===(tt=this.playerConfig.metadata)||void 0===tt?void 0:tt.instructions)||void 0===zt?void 0:zt.default,this.parentConfig.showLegend=void 0===(null===(Ht=this.playerConfig.config)||void 0===Ht?void 0:Ht.showLegend)||this.playerConfig.config.showLegend,this.nextContent=null===(Ut=this.playerConfig.config)||void 0===Ut?void 0:Ut.nextContent,this.showEndPage="no"!==(null===(xr=null===(Mn=this.playerConfig.metadata)||void 0===Mn?void 0:Mn.showEndPage)||void 0===xr?void 0:xr.toLowerCase()),this.parentConfig.showFeedback=this.showFeedBack="yes"===(null===(Ir=null===(Yr=this.playerConfig.metadata)||void 0===Yr?void 0:Yr.showFeedback)||void 0===Ir?void 0:Ir.toLowerCase()),this.parentConfig.sideMenuConfig=Object.assign(Object.assign({},this.parentConfig.sideMenuConfig),this.playerConfig.config.sideMenu),this.userName=this.playerConfig.context.userData.firstName+" "+this.playerConfig.context.userData.lastName,this.playerConfig.metadata.isAvailableLocally&&this.playerConfig.metadata.basePath&&(this.parentConfig.baseUrl=this.playerConfig.metadata.basePath,this.parentConfig.isAvailableLocally=!0),this.attempts={max:null===(aa=this.playerConfig.metadata)||void 0===aa?void 0:aa.maxAttempts,current:(null===(Ji=this.playerConfig.metadata)||void 0===Ji?void 0:Ji.currentAttempt)?this.playerConfig.metadata.currentAttempt+1:1},this.totalScore=this.playerConfig.metadata.maxScore,this.showReplay=!((null===(cr=this.attempts)||void 0===cr?void 0:cr.max)&&(null===(Ai=this.attempts)||void 0===Ai?void 0:Ai.current)>=this.attempts.max),"string"==typeof(null===(Ni=this.playerConfig.metadata)||void 0===Ni?void 0:Ni.timeLimits)&&(this.playerConfig.metadata.timeLimits=JSON.parse(this.playerConfig.metadata.timeLimits)),this.initialTime=(new Date).getTime(),this.emitMaxAttemptEvents()}},{key:"getMultilevelSection",value:function(m){var Y,x=this;return m.children.forEach(function(Ce){Ce.children&&!Y&&(Y=x.hasChildren(Ce.children))}),Y}},{key:"hasChildren",value:function(m){return m.some(function(x){return x.children})}},{key:"emitMaxAttemptEvents",value:function(){var m,x,Y,Ce,tt,zt;(null===(m=this.playerConfig.metadata)||void 0===m?void 0:m.maxAttempts)-1===(null===(x=this.playerConfig.metadata)||void 0===x?void 0:x.currentAttempt)?this.playerEvent.emit(this.viewerService.generateMaxAttemptEvents(null===(Y=this.attempts)||void 0===Y?void 0:Y.current,!1,!0)):(null===(Ce=this.playerConfig.metadata)||void 0===Ce?void 0:Ce.currentAttempt)>=(null===(tt=this.playerConfig.metadata)||void 0===tt?void 0:tt.maxAttempts)&&this.playerEvent.emit(this.viewerService.generateMaxAttemptEvents(null===(zt=this.attempts)||void 0===zt?void 0:zt.current,!0,!1))}},{key:"getActiveSectionIndex",value:function(){var m=this;return this.sections.findIndex(function(x){var Y,Ce;return(null===(Y=x.metadata)||void 0===Y?void 0:Y.identifier)===(null===(Ce=m.activeSection.metadata)||void 0===Ce?void 0:Ce.identifier)})}},{key:"onShowScoreBoard",value:function(m){if(this.parentConfig.isSectionsAvailable){var x=this.getActiveSectionIndex();this.updateSectionScore(x)}this.getSummaryObject(),this.loadScoreBoard=!0}},{key:"onSectionEnd",value:function(m){if(this.parentConfig.isSectionsAvailable){var x=this.getActiveSectionIndex();this.updateSectionScore(x),this.setNextSection(m,x)}else this.prepareEnd(m)}},{key:"onPlayerEvent",value:function(m){this.playerEvent.emit(m)}},{key:"getSummaryObject",value:function(){var m=this.isSectionsAvailable?j(this.mainProgressBar.map(function(Y){return Y.children})):this.mainProgressBar,x=Tu(m,"class");this.summary={skipped:(0,Be.Z)(x,"skipped.length")||0,correct:(0,Be.Z)(x,"correct.length")||0,wrong:(0,Be.Z)(x,"wrong.length")||0,partial:(0,Be.Z)(x,"partial.length")||0},this.totalVisitedQuestion=this.summary.correct+this.summary.wrong+this.summary.partial+this.summary.skipped,this.viewerService.totalNumberOfQuestions=this.totalNoOfQuestions}},{key:"updateSectionScore",value:function(m){this.mainProgressBar[m].score=this.mainProgressBar[m].children.reduce(function(x,Y){return x+Y.score},0)}},{key:"setNextSection",value:function(m,x){var Y,Ce,tt,zt;this.summary=this.utilService.sumObjectsByKey(this.summary,m.summary);var Ht=0===m.summary.skipped&&(null===(Y=m.summary)||void 0===Y?void 0:Y.correct)+(null===(Ce=m.summary)||void 0===Ce?void 0:Ce.wrong)===(null===(zt=null===(tt=this.mainProgressBar[x])||void 0===tt?void 0:tt.children)||void 0===zt?void 0:zt.length),Ut=m.summary.skipped>0;if(m.isDurationEnded)return this.isDurationExpired=!0,void this.prepareEnd(m);var Mn=x+1;if(m.jumpToSection){var xr=this.sections.findIndex(function(Yr){var Ir;return(null===(Ir=Yr.metadata)||void 0===Ir?void 0:Ir.identifier)===m.jumpToSection});Mn=xr>-1?xr:Mn}this.sectionIndex=la(Mn),this.mainProgressBar.forEach(function(Yr,Ir){Yr.isActive=Ir===Mn,Ir===x&&(Ht?Yr.class="attempted":Ut&&(Yr.class="partial"))}),Mn=this.attempts.max),this.totalNoOfQuestions=0,this.totalVisitedQuestion=0,this.mainProgressBar=[],this.jumpToQuestion=void 0,this.summary={correct:0,partial:0,skipped:0,wrong:0},this.sections=[],this.initialTime=(new Date).getTime(),this.initializeSections(),this.endPageReached=!1,this.loadScoreBoard=!1,this.activeSection=this.isSectionsAvailable?la(this.sections[0]):this.playerConfig,(null===(Ce=this.attempts)||void 0===Ce?void 0:Ce.max)===(null===(tt=this.attempts)||void 0===tt?void 0:tt.current)&&this.playerEvent.emit(this.viewerService.generateMaxAttemptEvents((0,Be.Z)(this.attempts,"current"),!1,!0)),this.viewerService.raiseHeartBeatEvent(kr_replayClicked,Nr_interact,Kl_endPage),setTimeout(function(){m.parentConfig.isReplayed=!1;var zt=document.querySelector("li.info-page");zt&&zt.scrollIntoView({behavior:"smooth"})},1e3)}},{key:"setInitialScores",value:function(){var m=this,x=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,Y="abcdefghijklmnopqrstuvwxyz".split("");this.sections.forEach(function(Ce,tt){var zt;m.mainProgressBar.push({index:Y[tt].toLocaleUpperCase(),class:"unattempted",value:void 0,score:0,isActive:tt===x,identifier:null===(zt=Ce.metadata)||void 0===zt?void 0:zt.identifier});var Ht=[];Ce.metadata.childNodes.forEach(function(Ut,Mn){Ht.push({index:Mn+1,class:"unattempted",value:void 0,score:0}),m.totalNoOfQuestions++}),m.mainProgressBar[m.mainProgressBar.length-1]=Object.assign(Object.assign({},(0,gr.Z)(m.mainProgressBar)),{children:Ht})}),this.parentConfig.questionCount=this.totalNoOfQuestions}},{key:"calculateScore",value:function(){return this.finalScore=this.mainProgressBar.reduce(function(m,x){return m+x.score},0),this.generateOutComeLabel(),this.finalScore}},{key:"exitContent",value:function(m){var x;this.calculateScore(),"EXIT"===(null===(x=m)||void 0===x?void 0:x.type)&&(this.viewerService.raiseHeartBeatEvent(kr_endPageExitClicked,Nr_interact,Kl_endPage),this.getSummaryObject(),this.viewerService.raiseSummaryEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore,this.summary),this.isSummaryEventRaised=!0,this.raiseEndEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore))}},{key:"raiseEndEvent",value:function(m,x,Y){this.isEndEventRaised||(this.isEndEventRaised=!0,this.viewerService.metaData.progressBar=this.mainProgressBar,this.viewerService.raiseEndEvent(m,x,Y),(0,Be.Z)(this.attempts,"current")>=(0,Be.Z)(this.attempts,"max")&&this.playerEvent.emit(this.viewerService.generateMaxAttemptEvents((0,Be.Z)(this.attempts,"current"),!0,!1)))}},{key:"setDurationSpent",value:function(){var m;"Score"!==(null===(m=this.playerConfig.metadata)||void 0===m?void 0:m.summaryType)&&(this.viewerService.metaData.duration=(new Date).getTime()-this.initialTime,this.durationSpent=this.utilService.getTimeSpentText(this.initialTime))}},{key:"onScoreBoardLoaded",value:function(m){var x;(null===(x=m)||void 0===x?void 0:x.scoreBoardLoaded)&&this.calculateScore()}},{key:"onScoreBoardSubmitted",value:function(){this.endPageReached=!0,this.getSummaryObject(),this.setDurationSpent(),this.viewerService.raiseHeartBeatEvent(kr_scoreBoardSubmitClicked,Nr_interact,Kl_submitPage),this.viewerService.raiseSummaryEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore,this.summary),this.raiseEndEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore),this.loadScoreBoard=!1,this.isSummaryEventRaised=!0}},{key:"generateOutComeLabel",value:function(){switch(this.outcomeLabel=this.finalScore.toString(),(0,Be.Z)(this.playerConfig,"metadata.summaryType")){case"Complete":this.outcomeLabel=this.totalScore?"".concat(this.finalScore," / ").concat(this.totalScore):this.outcomeLabel;break;case"Duration":this.outcomeLabel=""}}},{key:"goToQuestion",value:function(m){if(this.parentConfig.isSectionsAvailable&&m.identifier){var x=this.sections.findIndex(function(Y){var Ce;return(null===(Ce=Y.metadata)||void 0===Ce?void 0:Ce.identifier)===m.identifier});this.activeSection=la(this.sections[x]),this.mainProgressBar.forEach(function(Y,Ce){Y.isActive=Ce===x})}this.jumpToQuestion=m,this.loadScoreBoard=!1}},{key:"playNextContent",value:function(m){var x,Y;this.viewerService.raiseHeartBeatEvent(null===(x=m)||void 0===x?void 0:x.type,Nr_interact,Kl_endPage,null===(Y=m)||void 0===Y?void 0:Y.identifier)}},{key:"toggleScreenRotate",value:function(m){this.viewerService.raiseHeartBeatEvent(kr_deviceRotationClicked,Nr_interact,this.sectionPlayer.myCarousel.getCurrentSlideIndex()+1)}},{key:"sideBarEvents",value:function(m){("OPEN_MENU"===m.type||"CLOSE_MENU"===m.type)&&this.handleSideBarAccessibility(m),this.viewerService.raiseHeartBeatEvent(m.type,Nr_interact,this.sectionPlayer.myCarousel.getCurrentSlideIndex()+1)}},{key:"handleSideBarAccessibility",value:function(m){var Y,Ce,x=this,tt=document.querySelector(".navBlock"),zt=document.querySelector("#overlay-input"),Ht=document.querySelector("#overlay-button"),Ut=document.querySelector("#sidebar-list");if("OPEN_MENU"===m.type){var Mn=null===(Ce=null===(Y=this.playerConfig.config)||void 0===Y?void 0:Y.sideMenu)||void 0===Ce?void 0:Ce.showExit;this.disabledHandle=Mn?ol.Z.hidden({filter:[Ut,Ht,zt]}):ol.Z.tabFocus({context:tt}),this.subscription=(0,al.R)(document,"keydown").subscribe(function(xr){"Escape"===xr.key&&(document.getElementById("overlay-input").checked=!1,document.getElementById("playerSideMenu").style.visibility="hidden",document.querySelector(".navBlock").style.marginLeft="-100%",x.viewerService.raiseHeartBeatEvent("CLOSE_MENU",Nr_interact,x.sectionPlayer.myCarousel.getCurrentSlideIndex()+1),x.disabledHandle.disengage(),x.subscription.unsubscribe(),x.disabledHandle=null,x.subscription=null)})}else"CLOSE_MENU"===m.type&&this.disabledHandle&&(this.disabledHandle.disengage(),this.disabledHandle=null,this.subscription&&(this.subscription.unsubscribe(),this.subscription=null))}},{key:"ngOnDestroy",value:function(){this.calculateScore(),this.getSummaryObject(),!1===this.isSummaryEventRaised&&this.viewerService.raiseSummaryEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore,this.summary),this.raiseEndEvent(this.totalVisitedQuestion,this.endPageReached,this.finalScore)}}]),b}();nu.\u0275fac=function(I){return new(I||nu)(t.Y36(Ra),t.Y36(ia))},nu.\u0275cmp=t.Xpm({type:nu,selectors:[["quml-main-player"]],viewQuery:function(I,m){var x;(1&I&&t.Gf(q1,5),2&I)&&(t.iGM(x=t.CRH())&&(m.sectionPlayer=x.first))},hostBindings:function(I,m){1&I&&t.NdJ("TelemetryEvent",function(Y){return m.onTelemetryEvent(Y)},!1,t.evT)("beforeunload",function(){return m.ngOnDestroy()},!1,t.Jf7)},inputs:{playerConfig:"playerConfig"},outputs:{playerEvent:"playerEvent",telemetryEvent:"telemetryEvent"},decls:5,vars:6,consts:[[3,"title",4,"ngIf"],[4,"ngIf"],[3,"showLegend","disablePreviousNavigation","disableNext","attempts","loadScoreBoard","showDeviceOrientation","toggleScreenRotate",4,"ngIf"],[3,"title","config"],["class","main-container",4,"ngIf"],[3,"title"],[3,"showLegend","disablePreviousNavigation","disableNext","attempts","loadScoreBoard","showDeviceOrientation","toggleScreenRotate"],[1,"main-container"],[1,"main-container",3,"hidden"],[3,"sectionConfig","attempts","mainProgressBar","parentConfig","sectionIndex","jumpToQuestion","sectionEnd","showScoreBoard","playerEvent"],[3,"contentName","scores","totalNoOfQuestions","showFeedBack","isSections","summary","scoreBoardLoaded","submitClicked","emitQuestionNo",4,"ngIf"],["class","endPage-container",3,"ngClass",4,"ngIf"],[3,"contentName","scores","totalNoOfQuestions","showFeedBack","isSections","summary","scoreBoardLoaded","submitClicked","emitQuestionNo"],[1,"endPage-container",3,"ngClass"],[3,"contentName","outcome","outcomeLabel","userName","timeSpentLabel","showExit","showReplay","nextContent","replayContent","exitContent","playNextContent",4,"ngIf"],[3,"contentName","outcome","outcomeLabel","userName","timeSpentLabel","showExit","showReplay","nextContent","replayContent","exitContent","playNextContent"],["class","sb-color-primary mt-8 fnormal font-weight-bold d-block",4,"ngIf"],["class","attempts sb-color-primary mt-8 fnormal font-weight-bold d-block",4,"ngIf"],[1,"sb-color-primary","mt-8","fnormal","font-weight-bold","d-block"],[1,"attempts","sb-color-primary","mt-8","fnormal","font-weight-bold","d-block"],[3,"errorMsg"]],template:function(I,m){1&I&&(t.YNc(0,oc,1,1,"sb-player-start-page",0),t.YNc(1,s3,1,0,"sb-player-side-menu-icon",1),t.YNc(2,Ss,1,6,"quml-header",2),t._UZ(3,"sb-player-sidebar",3),t.YNc(4,c3,6,10,"div",4)),2&I&&(t.Q6J("ngIf",m.isLoading),t.xp6(1),t.Q6J("ngIf",(null==m.parentConfig||null==m.parentConfig.sideMenuConfig?null:m.parentConfig.sideMenuConfig.enable)&&!m.endPageReached),t.xp6(1),t.Q6J("ngIf",m.loadScoreBoard&&(null==m.parentConfig?null:m.parentConfig.requiresSubmit)&&!m.endPageReached),t.xp6(1),t.Q6J("title",null==m.parentConfig?null:m.parentConfig.contentName)("config",null==m.parentConfig?null:m.parentConfig.sideMenuConfig),t.xp6(1),t.Q6J("ngIf",!m.isLoading))},directives:[ct.O5,ui.bf,ui.u_,ui.Z2,ds,q1,Ps,ct.mk,ui.ye,ui.vM],styles:[":root{--quml-main-bg:#fff} #overlay-button{top:.6rem!important}.main-container[_ngcontent-%COMP%]{width:100%;height:100%;background:var(--quml-main-bg)}.endPage-container-height[_ngcontent-%COMP%]{height:100%}"]}),nu.ctorParameters=function(){return[{type:Ra},{type:ia}]},nu.propDecorators={playerConfig:[{type:t.IIB}],playerEvent:[{type:t.r_U}],telemetryEvent:[{type:t.r_U}],sectionPlayer:[{type:t.i9L,args:[q1]}],onTelemetryEvent:[{type:t.L6J,args:["document:TelemetryEvent",["$event"]]}],ngOnDestroy:[{type:t.L6J,args:["window:beforeunload"]}]};var wa=function(){function b(){(0,L.Z)(this,b),this.close=new t.vpe,this.indicators=[{iconText:"1",title:"Correct",class:"correct"},{iconText:"1",title:"Incorrect",class:"incorrect"},{iconText:"1",title:"Attempted",class:"attempted"},{iconText:"1",title:"Not viewed",class:""},{iconText:"1",title:"Skipped",class:"skipped"},{iconText:"1",title:"Current",class:"current"},{iconText:"i",title:"Info page",class:""},{iconText:'Flag logo: Show scoreboard',title:"Summary page",class:""}]}return(0,C.Z)(b,[{key:"ngOnInit",value:function(){}}]),b}();wa.\u0275fac=function(I){return new(I||wa)},wa.\u0275cmp=t.Xpm({type:wa,selectors:[["quml-progress-indicators"]],outputs:{close:"close"},decls:13,vars:1,consts:[[1,"progress-indicators"],[1,"progress-indicators__overlay"],["aria-modal","true",1,"progress-indicators__popup"],[1,"close-btn",3,"click"],["type","button","id","close","data-animation","showShadow","aria-label","player-close-btn",1,"close-icon"],[1,"progress-indicators__metadata"],[1,"progress-indicators__title","text-left"],[1,"progress-indicators__content"],["class","progress-indicators__item",4,"ngFor","ngForOf"],[1,"progress-indicators__action-btns"],["type","button",1,"sb-btn","sb-btn-normal","sb-btn-primary","sb-btn-radius","submit-btn",3,"click"],[1,"progress-indicators__item"],[1,"default",3,"ngClass","innerHtml"]],template:function(I,m){1&I&&(t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.TgZ(2,"div",2),t.TgZ(3,"div",3),t.NdJ("click",function(){return m.close.emit(!0)}),t._UZ(4,"button",4),t.qZA(),t.TgZ(5,"div",5),t.TgZ(6,"h5",6),t._uU(7,"Progress bar indicators"),t.qZA(),t.TgZ(8,"div",7),t.YNc(9,d3,4,3,"div",8),t.qZA(),t.TgZ(10,"div",9),t.TgZ(11,"button",10),t.NdJ("click",function(){return m.close.emit(!0)}),t._uU(12,"Close"),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA()),2&I&&(t.xp6(9),t.Q6J("ngForOf",m.indicators))},directives:[ct.sg,ct.mk],styles:['[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%]{width:100%;height:100%;position:absolute;top:0;left:0;z-index:99;transition:.3s;opacity:1}[_nghost-%COMP%] .progress-indicators__overlay[_ngcontent-%COMP%]{width:100%;height:100%;background:rgba(var(--rc-rgba-black),.5);display:flex;align-items:center;justify-content:center;transition:.3s}[_nghost-%COMP%] .progress-indicators__popup[_ngcontent-%COMP%]{width:90%;max-width:22.5rem;min-height:13.125rem;background:var(--white);border-radius:1rem;box-shadow:0 0 1.5em 0 rgba(var(--rc-rgba-black),.22);padding:1.5rem;position:relative;transition:.3s ease-in;transform:scale(1)}[_nghost-%COMP%] .progress-indicators__close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem;width:1.5rem;height:1.5rem;cursor:pointer}[_nghost-%COMP%] .progress-indicators__close-btn[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{max-width:100%}[_nghost-%COMP%] .progress-indicators__metadata[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%}[_nghost-%COMP%] .progress-indicators__title[_ngcontent-%COMP%]{font-size:1rem;font-weight:700;line-height:1.375rem;word-break:break-word}[_nghost-%COMP%] .progress-indicators__content[_ngcontent-%COMP%]{display:flex;flex-direction:row;align-items:center;justify-content:space-between;flex-wrap:wrap}[_nghost-%COMP%] .progress-indicators__content[_ngcontent-%COMP%] div[_ngcontent-%COMP%]{width:50%}[_nghost-%COMP%] .progress-indicators__item[_ngcontent-%COMP%]{display:flex;align-items:center;justify-content:flex-start;margin-bottom:1rem}[_nghost-%COMP%] .progress-indicators__item[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{padding-left:8px;margin:0}[_nghost-%COMP%] .progress-indicators__text[_ngcontent-%COMP%]{color:var(--gray-400);word-break:break-word}[_nghost-%COMP%] .progress-indicators__size[_ngcontent-%COMP%]{color:var(--black)}[_nghost-%COMP%] .progress-indicators__size[_ngcontent-%COMP%], [_nghost-%COMP%] .progress-indicators__text[_ngcontent-%COMP%]{font-size:.875rem;line-height:1.25rem}[_nghost-%COMP%] .progress-indicators__size[_ngcontent-%COMP%], [_nghost-%COMP%] .progress-indicators__text[_ngcontent-%COMP%], [_nghost-%COMP%] .progress-indicators__title[_ngcontent-%COMP%]{margin:0 0 1.5em}[_nghost-%COMP%] .progress-indicators__action-btns[_ngcontent-%COMP%]{display:flex;align-items:center;justify-content:flex-end}[_nghost-%COMP%] .progress-indicators__action-btns[_ngcontent-%COMP%] .cancel-btn[_ngcontent-%COMP%], [_nghost-%COMP%] .progress-indicators__action-btns[_ngcontent-%COMP%] .submit-btn[_ngcontent-%COMP%]{outline:0;border:none;font-size:.75rem;text-transform:uppercase;cursor:pointer;line-height:normal}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]{width:1.875rem;height:1.875rem;background:0 0;border-radius:50%;cursor:pointer;display:flex;justify-content:center;align-items:center;padding:0}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::after{content:"";transform:rotate(-45deg)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::before{content:"";transform:rotate(45deg)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:after, [_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:before{content:"";width:1.25rem;height:.125rem;position:absolute;background-color:var(--black)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]{box-shadow:0 0 0 0 var(--red) inset;transition:.2s cubic-bezier(.175,.885,.52,1.775);border:0 solid var(--white)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:before{transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:after{transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover{box-shadow:0 0 0 .25rem var(--red) inset}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:before{transform:scale(.7) rotate(45deg);transition-delay:.1s;background-color:var(--red)}[_nghost-%COMP%] .progress-indicators[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:after{transform:scale(.7) rotate(-45deg);transition-delay:.1s;background-color:var(--red)}[_nghost-%COMP%] .default[_ngcontent-%COMP%]{background-color:var(--quml-question-bg);border-radius:50%;width:1.25rem;padding:.25rem;height:1.25rem;display:flex;align-items:center;justify-content:center;border:.0625rem solid #ccc;font-size:.8rem;font-weight:700;line-height:1.6rem}[_nghost-%COMP%] .correct[_ngcontent-%COMP%]{--correct-bg:var(--quml-color-success);background:var(--correct-bg);color:var(--white);border:0 solid transparent}[_nghost-%COMP%] .incorrect[_ngcontent-%COMP%]{--wrong-bg:var(--quml-color-danger);background:var(--wrong-bg);color:var(--white);border:0 solid transparent}[_nghost-%COMP%] .skipped[_ngcontent-%COMP%]{color:var(--white);background:var(--quml-scoreboard-skipped);border:.0625rem solid var(--quml-scoreboard-skipped)}[_nghost-%COMP%] .current[_ngcontent-%COMP%]{color:var(--primary-color);border:.0625rem solid var(--primary-color)}[_nghost-%COMP%] .current[_ngcontent-%COMP%]::after{border:1px solid var(--primary-color);content:"";width:1.65rem;height:1.65rem;border-radius:50%;padding:.25rem;position:absolute}[_nghost-%COMP%] .attempted[_ngcontent-%COMP%]{color:var(--white);background:var(--primary-color)} html[dir=rtl] .close-btn{left:.75rem;right:auto}']}),wa.ctorParameters=function(){return[]},wa.propDecorators={close:[{type:t.r_U}]};var Z1=(0,C.Z)(function b(){(0,L.Z)(this,b)});Z1.\u0275fac=function(I){return new(I||Z1)},Z1.\u0275mod=t.oAB({type:Z1}),Z1.\u0275inj=t.cJS({providers:[ls],imports:[[ct.ez,S1,ui.gQ]]})},9341:function(It,we,D){"use strict";var L=D(8341);It.exports=function(V,F){return void 0===F&&(F=!1),function(E,y,be){if(E)V(E);else if(y.statusCode>=400&&y.statusCode<=599){var ue=be;if(F)if(L.TextDecoder){var De=(void 0===(R=y.headers&&y.headers["content-type"])&&(R=""),R.toLowerCase().split(";").reduce(function(V,F){var E=F.split("="),y=E[0],be=E[1];return"charset"===y.trim()?be.trim():V},"utf-8"));try{ue=new TextDecoder(De).decode(be)}catch(de){}}else ue=String.fromCharCode.apply(null,new Uint8Array(be));V({cause:ue})}else{var R;V(null,be)}}}},3945:function(It,we,D){"use strict";var L=D(8341),C=D(830),t=D(4366);y.httpHandler=D(9341);function E(de,Le,ce){var pe=de;return t(Le)?(ce=Le,"string"==typeof de&&(pe={uri:de})):pe=C({},Le,{uri:de}),pe.callback=ce,pe}function y(de,Le,ce){return be(Le=E(de,Le,ce))}function be(de){if(void 0===de.callback)throw new Error("callback argument missing");var Le=!1,ce=function(Ye,st,at){Le||(Le=!0,de.callback(Ye,st,at))};function Ne(){var ze=void 0;if(ze=te.response?te.response:te.responseText||function(de){try{if("document"===de.responseType)return de.responseXML;var Le=de.responseXML&&"parsererror"===de.responseXML.documentElement.nodeName;if(""===de.responseType&&!Le)return de.responseXML}catch(ce){}return null}(te),W)try{ze=JSON.parse(ze)}catch(Ye){}return ze}function ge(ze){return clearTimeout(U),ze instanceof Error||(ze=new Error(""+(ze||"Unknown XMLHttpRequest Error"))),ze.statusCode=0,ce(ze,Se)}function ye(){if(!Ue){var ze;clearTimeout(U),ze=de.useXDR&&void 0===te.status?200:1223===te.status?204:te.status;var Ye=Se,st=null;return 0!==ze?(Ye={body:Ne(),statusCode:ze,method:Ze,headers:{},url:Ke,rawRequest:te},te.getAllResponseHeaders&&(Ye.headers=function(Le){var ce={};return Le&&Le.trim().split("\n").forEach(function(pe){var Ne=pe.indexOf(":"),ge=pe.slice(0,Ne).trim().toLowerCase(),ye=pe.slice(Ne+1).trim();void 0===ce[ge]?ce[ge]=ye:Array.isArray(ce[ge])?ce[ge].push(ye):ce[ge]=[ce[ge],ye]}),ce}(te.getAllResponseHeaders()))):st=new Error("Internal XMLHttpRequest Error"),ce(st,Ye,Ye.body)}}var te=de.xhr||null;te||(te=de.cors||de.useXDR?new y.XDomainRequest:new y.XMLHttpRequest);var ve,Ue,U,Ke=te.url=de.uri||de.url,Ze=te.method=de.method||"GET",ut=de.body||de.data,Xe=te.headers=de.headers||{},A=!!de.sync,W=!1,Se={body:void 0,headers:{},statusCode:0,method:Ze,url:Ke,rawRequest:te};if("json"in de&&!1!==de.json&&(W=!0,Xe.accept||Xe.Accept||(Xe.Accept="application/json"),"GET"!==Ze&&"HEAD"!==Ze&&(Xe["content-type"]||Xe["Content-Type"]||(Xe["Content-Type"]="application/json"),ut=JSON.stringify(!0===de.json?ut:de.json))),te.onreadystatechange=function(){4===te.readyState&&setTimeout(ye,0)},te.onload=ye,te.onerror=ge,te.onprogress=function(){},te.onabort=function(){Ue=!0},te.ontimeout=ge,te.open(Ze,Ke,!A,de.username,de.password),A||(te.withCredentials=!!de.withCredentials),!A&&de.timeout>0&&(U=setTimeout(function(){if(!Ue){Ue=!0,te.abort("timeout");var ze=new Error("XMLHttpRequest timeout");ze.code="ETIMEDOUT",ge(ze)}},de.timeout)),te.setRequestHeader)for(ve in Xe)Xe.hasOwnProperty(ve)&&te.setRequestHeader(ve,Xe[ve]);else if(de.headers&&!function(de){for(var Le in de)if(de.hasOwnProperty(Le))return!1;return!0}(de.headers))throw new Error("Headers cannot be set on an XDomainRequest object");return"responseType"in de&&(te.responseType=de.responseType),"beforeSend"in de&&"function"==typeof de.beforeSend&&de.beforeSend(te),te.send(ut||null),te}It.exports=y,It.exports.default=y,y.XMLHttpRequest=L.XMLHttpRequest||function(){},y.XDomainRequest="withCredentials"in new y.XMLHttpRequest?y.XMLHttpRequest:L.XDomainRequest,function(de,Le){for(var ce=0;ce=ye+te||ye?new java.lang.String(ge,ye,te)+"":ge}function Ne(ge,ye){ge.currentElement?ge.currentElement.appendChild(ye):ge.doc.appendChild(ye)}ue.prototype.parseFromString=function(ge,ye){var te=this.options,ve=new be,Ue=te.domBuilder||new de,Ke=te.errorHandler,Ze=te.locator,ut=te.xmlns||{},Xe=/\/x?html?$/.test(ye),A=Xe?R.HTML_ENTITIES:R.XML_ENTITIES;return Ze&&Ue.setDocumentLocator(Ze),ve.errorHandler=function(ge,ye,te){if(!ge){if(ye instanceof de)return ye;ge=ye}var ve={},Ue=ge instanceof Function;function Ke(Ze){var ut=ge[Ze];!ut&&Ue&&(ut=2==ge.length?function(Xe){ge(Ze,Xe)}:ge),ve[Ze]=ut&&function(Xe){ut("[xmldom "+Ze+"]\t"+Xe+ce(te))}||function(){}}return te=te||{},Ke("warning"),Ke("error"),Ke("fatalError"),ve}(Ke,Ue,Ze),ve.domBuilder=te.domBuilder||Ue,Xe&&(ut[""]=E.HTML),ut.xml=ut.xml||E.XML,ge&&"string"==typeof ge?ve.parse(ge,ut,A):ve.errorHandler.error("invalid doc source"),Ue.doc},de.prototype={startDocument:function(){this.doc=(new F).createDocument(null,null,null),this.locator&&(this.doc.documentURI=this.locator.systemId)},startElement:function(ye,te,ve,Ue){var Ke=this.doc,Ze=Ke.createElementNS(ye,ve||te),ut=Ue.length;Ne(this,Ze),this.currentElement=Ze,this.locator&&Le(this.locator,Ze);for(var Xe=0;Xe=0))throw new Wt(at,new Error(We.tagName+"@"+Qe));for(var Qt=Pe.length-1;yt"==We&&">")||"&"==We&&"&"||'"'==We&&"""||"&#"+We.charCodeAt()+";"}function At(We,Pe){if(Pe(We))return!0;if(We=We.firstChild)do{if(At(We,Pe))return!0}while(We=We.nextSibling)}function Je(){this.ownerDocument=this}function pn(We,Pe,Qe,yt){We&&We._inc++,Qe.namespaceURI===t.XMLNS&&delete Pe._nsMap[Qe.prefix?Qe.localName:""]}function Ct(We,Pe,Qe){if(We&&We._inc){We._inc++;var yt=Pe.childNodes;if(Qe)yt[yt.length++]=Qe;else{for(var Qt=Pe.firstChild,yn=0;Qt;)yt[yn++]=Qt,Qt=Qt.nextSibling;yt.length=yn,delete yt[yt.length]}}}function Jn(We,Pe){var Qe=Pe.previousSibling,yt=Pe.nextSibling;return Qe?Qe.nextSibling=yt:We.firstChild=yt,yt?yt.previousSibling=Qe:We.lastChild=Qe,Pe.parentNode=null,Pe.previousSibling=null,Pe.nextSibling=null,Ct(We.ownerDocument,We),Pe}function Bt(We){return We&&We.nodeType===je.DOCUMENT_TYPE_NODE}function Ot(We){return We&&We.nodeType===je.ELEMENT_NODE}function ln(We){return We&&We.nodeType===je.TEXT_NODE}function vn(We,Pe){var Qe=We.childNodes||[];if(C(Qe,Ot)||Bt(Pe))return!1;var yt=C(Qe,Bt);return!(Pe&&yt&&Qe.indexOf(yt)>Qe.indexOf(Pe))}function Dt(We,Pe){var Qe=We.childNodes||[];if(C(Qe,function(yn){return Ot(yn)&&yn!==Pe}))return!1;var Qt=C(Qe,Bt);return!(Pe&&Qt&&Qe.indexOf(Qt)>Qe.indexOf(Pe))}function mt(We,Pe,Qe){if(!function(We){return We&&(We.nodeType===je.DOCUMENT_NODE||We.nodeType===je.DOCUMENT_FRAGMENT_NODE||We.nodeType===je.ELEMENT_NODE)}(We))throw new Wt(U,"Unexpected parent node type "+We.nodeType);if(Qe&&Qe.parentNode!==We)throw new Wt(at,"child not in parent");if(!function(We){return We&&(Ot(We)||ln(We)||Bt(We)||We.nodeType===je.DOCUMENT_FRAGMENT_NODE||We.nodeType===je.COMMENT_NODE||We.nodeType===je.PROCESSING_INSTRUCTION_NODE)}(Pe)||Bt(Pe)&&We.nodeType!==je.DOCUMENT_NODE)throw new Wt(U,"Unexpected node type "+Pe.nodeType+" for parent node type "+We.nodeType)}function se(We,Pe,Qe){var yt=We.childNodes||[],Qt=Pe.childNodes||[];if(Pe.nodeType===je.DOCUMENT_FRAGMENT_NODE){var yn=Qt.filter(Ot);if(yn.length>1||C(Qt,ln))throw new Wt(U,"More than one element or text in fragment");if(1===yn.length&&!vn(We,Qe))throw new Wt(U,"Element in fragment can not be inserted before doctype")}if(Ot(Pe)&&!vn(We,Qe))throw new Wt(U,"Only one element can be added and only after doctype");if(Bt(Pe)){if(C(yt,Bt))throw new Wt(U,"Only one doctype is allowed");var sr=C(yt,Ot);if(Qe&&yt.indexOf(sr)1||C(Qt,ln))throw new Wt(U,"More than one element or text in fragment");if(1===yn.length&&!Dt(We,Qe))throw new Wt(U,"Element in fragment can not be inserted before doctype")}if(Ot(Pe)&&!Dt(We,Qe))throw new Wt(U,"Only one element can be added and only after doctype");if(Bt(Pe)){if(C(yt,function(Vr){return Bt(Vr)&&Vr!==Qe}))throw new Wt(U,"Only one doctype is allowed");var tr=C(yt,Ot);if(Qe&&yt.indexOf(tr)=0;$n--){if(""===(Xr=Qt[$n]).prefix&&Xr.namespace===We.namespaceURI){Kn=Xr.namespace;break}}if(Kn!==We.namespaceURI)for($n=Qt.length-1;$n>=0;$n--){var Xr;if((Xr=Qt[$n]).namespace===We.namespaceURI){Xr.prefix&&(Vr=Xr.prefix+":"+nr);break}}}Pe.push("<",Vr);for(var yi=0;yi"),Qe&&/^script$/i.test(nr))for(;tr;)tr.data?Pe.push(tr.data):Or(tr,Pe,Qe,yt,Qt.slice()),tr=tr.nextSibling;else for(;tr;)Or(tr,Pe,Qe,yt,Qt.slice()),tr=tr.nextSibling;Pe.push("")}else Pe.push("/>");return;case ve:case Ke:for(tr=We.firstChild;tr;)Or(tr,Pe,Qe,yt,Qt.slice()),tr=tr.nextSibling;return;case Le:return Dr(Pe,We.name,We.value);case ce:return Pe.push(We.data.replace(/[<&]/g,rn).replace(/]]>/g,"]]>"));case pe:return Pe.push("");case te:return Pe.push("\x3c!--",We.data,"--\x3e");case Ue:var Fr=We.publicId,Ci=We.systemId;if(Pe.push("");else if(Ci&&"."!=Ci)Pe.push(" SYSTEM ",Ci,">");else{var Ri=We.internalSubset;Ri&&Pe.push(" [",Ri,"]"),Pe.push(">")}return;case ye:return Pe.push("");case Ne:return Pe.push("&",We.nodeName,";");default:Pe.push("??",We.nodeName)}}function Lr(We,Pe,Qe){var yt;switch(Pe.nodeType){case de:(yt=Pe.cloneNode(!1)).ownerDocument=We;case Ke:break;case Le:Qe=!0}if(yt||(yt=Pe.cloneNode(!1)),yt.ownerDocument=We,yt.parentNode=null,Qe)for(var Qt=Pe.firstChild;Qt;)yt.appendChild(Lr(We,Qt,Qe)),Qt=Qt.nextSibling;return yt}function vi(We,Pe,Qe){var yt=new Pe.constructor;for(var Qt in Pe)if(Object.prototype.hasOwnProperty.call(Pe,Qt)){var yn=Pe[Qt];"object"!=typeof yn&&yn!=yt[Qt]&&(yt[Qt]=yn)}switch(Pe.childNodes&&(yt.childNodes=new Ft),yt.ownerDocument=We,yt.nodeType){case de:var sr=Pe.attributes,tr=yt.attributes=new he,nr=sr.length;tr._ownerElement=yt;for(var Vr=0;Vr0},lookupPrefix:function(Pe){for(var Qe=this;Qe;){var yt=Qe._nsMap;if(yt)for(var Qt in yt)if(Object.prototype.hasOwnProperty.call(yt,Qt)&&yt[Qt]===Pe)return Qt;Qe=Qe.nodeType==Le?Qe.ownerDocument:Qe.parentNode}return null},lookupNamespaceURI:function(Pe){for(var Qe=this;Qe;){var yt=Qe._nsMap;if(yt&&Pe in yt&&Object.prototype.hasOwnProperty.call(yt,Pe))return yt[Pe];Qe=Qe.nodeType==Le?Qe.ownerDocument:Qe.parentNode}return null},isDefaultNamespace:function(Pe){return null==this.lookupPrefix(Pe)}},be(De,je),be(De,je.prototype),Je.prototype={nodeName:"#document",nodeType:ve,doctype:null,documentElement:null,_inc:1,insertBefore:function(Pe,Qe){if(Pe.nodeType==Ke){for(var yt=Pe.firstChild;yt;){var Qt=yt.nextSibling;this.insertBefore(yt,Qe),yt=Qt}return Pe}return $(this,Pe,Qe),Pe.ownerDocument=this,null===this.documentElement&&Pe.nodeType===de&&(this.documentElement=Pe),Pe},removeChild:function(Pe){return this.documentElement==Pe&&(this.documentElement=null),Jn(this,Pe)},replaceChild:function(Pe,Qe){$(this,Pe,Qe,me),Pe.ownerDocument=this,Qe&&this.removeChild(Qe),Ot(Pe)&&(this.documentElement=Pe)},importNode:function(Pe,Qe){return Lr(this,Pe,Qe)},getElementById:function(Pe){var Qe=null;return At(this.documentElement,function(yt){if(yt.nodeType==de&&yt.getAttribute("id")==Pe)return Qe=yt,!0}),Qe},getElementsByClassName:function(Pe){var Qe=E(Pe);return new mn(this,function(yt){var Qt=[];return Qe.length>0&&At(yt.documentElement,function(yn){if(yn!==yt&&yn.nodeType===de){var sr=yn.getAttribute("class");if(sr){var tr=Pe===sr;if(!tr){var nr=E(sr);tr=Qe.every((We=nr,function(Pe){return We&&-1!==We.indexOf(Pe)}))}tr&&Qt.push(yn)}}var We}),Qt})},createElement:function(Pe){var Qe=new fe;return Qe.ownerDocument=this,Qe.nodeName=Pe,Qe.tagName=Pe,Qe.localName=Pe,Qe.childNodes=new Ft,(Qe.attributes=new he)._ownerElement=Qe,Qe},createDocumentFragment:function(){var Pe=new Fn;return Pe.ownerDocument=this,Pe.childNodes=new Ft,Pe},createTextNode:function(Pe){var Qe=new wt;return Qe.ownerDocument=this,Qe.appendData(Pe),Qe},createComment:function(Pe){var Qe=new Gt;return Qe.ownerDocument=this,Qe.appendData(Pe),Qe},createCDATASection:function(Pe){var Qe=new un;return Qe.ownerDocument=this,Qe.appendData(Pe),Qe},createProcessingInstruction:function(Pe,Qe){var yt=new di;return yt.ownerDocument=this,yt.tagName=yt.target=Pe,yt.nodeValue=yt.data=Qe,yt},createAttribute:function(Pe){var Qe=new $e;return Qe.ownerDocument=this,Qe.name=Pe,Qe.nodeName=Pe,Qe.localName=Pe,Qe.specified=!0,Qe},createEntityReference:function(Pe){var Qe=new ir;return Qe.ownerDocument=this,Qe.nodeName=Pe,Qe},createElementNS:function(Pe,Qe){var yt=new fe,Qt=Qe.split(":"),yn=yt.attributes=new he;return yt.childNodes=new Ft,yt.ownerDocument=this,yt.nodeName=Qe,yt.tagName=Qe,yt.namespaceURI=Pe,2==Qt.length?(yt.prefix=Qt[0],yt.localName=Qt[1]):yt.localName=Qe,yn._ownerElement=yt,yt},createAttributeNS:function(Pe,Qe){var yt=new $e,Qt=Qe.split(":");return yt.ownerDocument=this,yt.nodeName=Qe,yt.name=Qe,yt.namespaceURI=Pe,yt.specified=!0,2==Qt.length?(yt.prefix=Qt[0],yt.localName=Qt[1]):yt.localName=Qe,yt}},ue(Je,je),fe.prototype={nodeType:de,hasAttribute:function(Pe){return null!=this.getAttributeNode(Pe)},getAttribute:function(Pe){var Qe=this.getAttributeNode(Pe);return Qe&&Qe.value||""},getAttributeNode:function(Pe){return this.attributes.getNamedItem(Pe)},setAttribute:function(Pe,Qe){var yt=this.ownerDocument.createAttribute(Pe);yt.value=yt.nodeValue=""+Qe,this.setAttributeNode(yt)},removeAttribute:function(Pe){var Qe=this.getAttributeNode(Pe);Qe&&this.removeAttributeNode(Qe)},appendChild:function(Pe){return Pe.nodeType===Ke?this.insertBefore(Pe,null):function(We,Pe){return Pe.parentNode&&Pe.parentNode.removeChild(Pe),Pe.parentNode=We,Pe.previousSibling=We.lastChild,Pe.nextSibling=null,Pe.previousSibling?Pe.previousSibling.nextSibling=Pe:We.firstChild=Pe,We.lastChild=Pe,Ct(We.ownerDocument,We,Pe),Pe}(this,Pe)},setAttributeNode:function(Pe){return this.attributes.setNamedItem(Pe)},setAttributeNodeNS:function(Pe){return this.attributes.setNamedItemNS(Pe)},removeAttributeNode:function(Pe){return this.attributes.removeNamedItem(Pe.nodeName)},removeAttributeNS:function(Pe,Qe){var yt=this.getAttributeNodeNS(Pe,Qe);yt&&this.removeAttributeNode(yt)},hasAttributeNS:function(Pe,Qe){return null!=this.getAttributeNodeNS(Pe,Qe)},getAttributeNS:function(Pe,Qe){var yt=this.getAttributeNodeNS(Pe,Qe);return yt&&yt.value||""},setAttributeNS:function(Pe,Qe,yt){var Qt=this.ownerDocument.createAttributeNS(Pe,Qe);Qt.value=Qt.nodeValue=""+yt,this.setAttributeNode(Qt)},getAttributeNodeNS:function(Pe,Qe){return this.attributes.getNamedItemNS(Pe,Qe)},getElementsByTagName:function(Pe){return new mn(this,function(Qe){var yt=[];return At(Qe,function(Qt){Qt!==Qe&&Qt.nodeType==de&&("*"===Pe||Qt.tagName==Pe)&&yt.push(Qt)}),yt})},getElementsByTagNameNS:function(Pe,Qe){return new mn(this,function(yt){var Qt=[];return At(yt,function(yn){yn!==yt&&yn.nodeType===de&&("*"===Pe||yn.namespaceURI===Pe)&&("*"===Qe||yn.localName==Qe)&&Qt.push(yn)}),Qt})}},Je.prototype.getElementsByTagName=fe.prototype.getElementsByTagName,Je.prototype.getElementsByTagNameNS=fe.prototype.getElementsByTagNameNS,ue(fe,je),$e.prototype.nodeType=Le,ue($e,je),ht.prototype={data:"",substringData:function(Pe,Qe){return this.data.substring(Pe,Pe+Qe)},appendData:function(Pe){Pe=this.data+Pe,this.nodeValue=this.data=Pe,this.length=Pe.length},insertData:function(Pe,Qe){this.replaceData(Pe,0,Qe)},appendChild:function(Pe){throw new Error(Xe[U])},deleteData:function(Pe,Qe){this.replaceData(Pe,Qe,"")},replaceData:function(Pe,Qe,yt){yt=this.data.substring(0,Pe)+yt+this.data.substring(Pe+Qe),this.nodeValue=this.data=yt,this.length=yt.length}},ue(ht,je),wt.prototype={nodeName:"#text",nodeType:ce,splitText:function(Pe){var Qe=this.data,yt=Qe.substring(Pe);Qe=Qe.substring(0,Pe),this.data=this.nodeValue=Qe,this.length=Qe.length;var Qt=this.ownerDocument.createTextNode(yt);return this.parentNode&&this.parentNode.insertBefore(Qt,this.nextSibling),Qt}},ue(wt,ht),Gt.prototype={nodeName:"#comment",nodeType:te},ue(Gt,ht),un.prototype={nodeName:"#cdata-section",nodeType:pe},ue(un,ht),bn.prototype.nodeType=Ue,ue(bn,je),Xn.prototype.nodeType=Ze,ue(Xn,je),Rn.prototype.nodeType=ge,ue(Rn,je),ir.prototype.nodeType=Ne,ue(ir,je),Fn.prototype.nodeName="#document-fragment",Fn.prototype.nodeType=Ke,ue(Fn,je),di.prototype.nodeType=ye,ue(di,je),Mr.prototype.serializeToString=function(We,Pe,Qe){return Gi.call(We,Pe,Qe)},je.prototype.toString=Gi;try{if(Object.defineProperty){var wr=function We(Pe){switch(Pe.nodeType){case de:case Ke:var Qe=[];for(Pe=Pe.firstChild;Pe;)7!==Pe.nodeType&&8!==Pe.nodeType&&Qe.push(We(Pe)),Pe=Pe.nextSibling;return Qe.join("");default:return Pe.nodeValue}};Object.defineProperty(mn.prototype,"length",{get:function(){return Pn(this),this.$$length}}),Object.defineProperty(je.prototype,"textContent",{get:function(){return wr(this)},set:function(Pe){switch(this.nodeType){case de:case Ke:for(;this.firstChild;)this.removeChild(this.firstChild);(Pe||String(Pe))&&this.appendChild(this.ownerDocument.createTextNode(Pe));break;default:this.data=Pe,this.value=Pe,this.nodeValue=Pe}}}),oa=function(Pe,Qe,yt){Pe["$$"+Qe]=yt}}}catch(We){}we.DocumentType=bn,we.DOMException=Wt,we.DOMImplementation=xt,we.Element=fe,we.Node=je,we.NodeList=Ft,we.XMLSerializer=Mr},4262:function(It,we,D){var L=D(5780).freeze;we.XML_ENTITIES=L({amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}),we.HTML_ENTITIES=L({lt:"<",gt:">",amp:"&",quot:'"',apos:"'",Agrave:"\xc0",Aacute:"\xc1",Acirc:"\xc2",Atilde:"\xc3",Auml:"\xc4",Aring:"\xc5",AElig:"\xc6",Ccedil:"\xc7",Egrave:"\xc8",Eacute:"\xc9",Ecirc:"\xca",Euml:"\xcb",Igrave:"\xcc",Iacute:"\xcd",Icirc:"\xce",Iuml:"\xcf",ETH:"\xd0",Ntilde:"\xd1",Ograve:"\xd2",Oacute:"\xd3",Ocirc:"\xd4",Otilde:"\xd5",Ouml:"\xd6",Oslash:"\xd8",Ugrave:"\xd9",Uacute:"\xda",Ucirc:"\xdb",Uuml:"\xdc",Yacute:"\xdd",THORN:"\xde",szlig:"\xdf",agrave:"\xe0",aacute:"\xe1",acirc:"\xe2",atilde:"\xe3",auml:"\xe4",aring:"\xe5",aelig:"\xe6",ccedil:"\xe7",egrave:"\xe8",eacute:"\xe9",ecirc:"\xea",euml:"\xeb",igrave:"\xec",iacute:"\xed",icirc:"\xee",iuml:"\xef",eth:"\xf0",ntilde:"\xf1",ograve:"\xf2",oacute:"\xf3",ocirc:"\xf4",otilde:"\xf5",ouml:"\xf6",oslash:"\xf8",ugrave:"\xf9",uacute:"\xfa",ucirc:"\xfb",uuml:"\xfc",yacute:"\xfd",thorn:"\xfe",yuml:"\xff",nbsp:"\xa0",iexcl:"\xa1",cent:"\xa2",pound:"\xa3",curren:"\xa4",yen:"\xa5",brvbar:"\xa6",sect:"\xa7",uml:"\xa8",copy:"\xa9",ordf:"\xaa",laquo:"\xab",not:"\xac",shy:"\xad\xad",reg:"\xae",macr:"\xaf",deg:"\xb0",plusmn:"\xb1",sup2:"\xb2",sup3:"\xb3",acute:"\xb4",micro:"\xb5",para:"\xb6",middot:"\xb7",cedil:"\xb8",sup1:"\xb9",ordm:"\xba",raquo:"\xbb",frac14:"\xbc",frac12:"\xbd",frac34:"\xbe",iquest:"\xbf",times:"\xd7",divide:"\xf7",forall:"\u2200",part:"\u2202",exist:"\u2203",empty:"\u2205",nabla:"\u2207",isin:"\u2208",notin:"\u2209",ni:"\u220b",prod:"\u220f",sum:"\u2211",minus:"\u2212",lowast:"\u2217",radic:"\u221a",prop:"\u221d",infin:"\u221e",ang:"\u2220",and:"\u2227",or:"\u2228",cap:"\u2229",cup:"\u222a",int:"\u222b",there4:"\u2234",sim:"\u223c",cong:"\u2245",asymp:"\u2248",ne:"\u2260",equiv:"\u2261",le:"\u2264",ge:"\u2265",sub:"\u2282",sup:"\u2283",nsub:"\u2284",sube:"\u2286",supe:"\u2287",oplus:"\u2295",otimes:"\u2297",perp:"\u22a5",sdot:"\u22c5",Alpha:"\u0391",Beta:"\u0392",Gamma:"\u0393",Delta:"\u0394",Epsilon:"\u0395",Zeta:"\u0396",Eta:"\u0397",Theta:"\u0398",Iota:"\u0399",Kappa:"\u039a",Lambda:"\u039b",Mu:"\u039c",Nu:"\u039d",Xi:"\u039e",Omicron:"\u039f",Pi:"\u03a0",Rho:"\u03a1",Sigma:"\u03a3",Tau:"\u03a4",Upsilon:"\u03a5",Phi:"\u03a6",Chi:"\u03a7",Psi:"\u03a8",Omega:"\u03a9",alpha:"\u03b1",beta:"\u03b2",gamma:"\u03b3",delta:"\u03b4",epsilon:"\u03b5",zeta:"\u03b6",eta:"\u03b7",theta:"\u03b8",iota:"\u03b9",kappa:"\u03ba",lambda:"\u03bb",mu:"\u03bc",nu:"\u03bd",xi:"\u03be",omicron:"\u03bf",pi:"\u03c0",rho:"\u03c1",sigmaf:"\u03c2",sigma:"\u03c3",tau:"\u03c4",upsilon:"\u03c5",phi:"\u03c6",chi:"\u03c7",psi:"\u03c8",omega:"\u03c9",thetasym:"\u03d1",upsih:"\u03d2",piv:"\u03d6",OElig:"\u0152",oelig:"\u0153",Scaron:"\u0160",scaron:"\u0161",Yuml:"\u0178",fnof:"\u0192",circ:"\u02c6",tilde:"\u02dc",ensp:"\u2002",emsp:"\u2003",thinsp:"\u2009",zwnj:"\u200c",zwj:"\u200d",lrm:"\u200e",rlm:"\u200f",ndash:"\u2013",mdash:"\u2014",lsquo:"\u2018",rsquo:"\u2019",sbquo:"\u201a",ldquo:"\u201c",rdquo:"\u201d",bdquo:"\u201e",dagger:"\u2020",Dagger:"\u2021",bull:"\u2022",hellip:"\u2026",permil:"\u2030",prime:"\u2032",Prime:"\u2033",lsaquo:"\u2039",rsaquo:"\u203a",oline:"\u203e",euro:"\u20ac",trade:"\u2122",larr:"\u2190",uarr:"\u2191",rarr:"\u2192",darr:"\u2193",harr:"\u2194",crarr:"\u21b5",lceil:"\u2308",rceil:"\u2309",lfloor:"\u230a",rfloor:"\u230b",loz:"\u25ca",spades:"\u2660",clubs:"\u2663",hearts:"\u2665",diams:"\u2666"}),we.entityMap=we.HTML_ENTITIES},6686:function(It,we,D){var C=D(4775);C.DOMImplementation,C.XMLSerializer,we.DOMParser=D(770).DOMParser},2648:function(It,we,D){var L=D(5780).NAMESPACE,C=/[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,t=new RegExp("[\\-\\.0-9"+C.source.slice(1,-1)+"\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"),R=new RegExp("^"+C.source+t.source+"*(?::"+C.source+t.source+"*)?$");function Le(A,W){this.message=A,this.locator=W,Error.captureStackTrace&&Error.captureStackTrace(this,Le)}function ce(){}function Ne(A,W){return W.lineNumber=A.lineNumber,W.columnNumber=A.columnNumber,W}function ge(A,W,U,Se,ze,Ye){function st(Xt,Jt,Wt){U.attributeNames.hasOwnProperty(Xt)&&Ye.fatalError("Attribute "+Xt+" redefined"),U.addValue(Xt,Jt,Wt)}for(var at,ft=++W,ot=0;;){var kt=A.charAt(ft);switch(kt){case"=":if(1===ot)at=A.slice(W,ft),ot=3;else{if(2!==ot)throw new Error("attribute equal must after attrName");ot=3}break;case"'":case'"':if(3===ot||1===ot){if(1===ot&&(Ye.warning('attribute value must after "="'),at=A.slice(W,ft)),W=ft+1,!((ft=A.indexOf(kt,W))>0))throw new Error("attribute value no end '"+kt+"' match");st(at,St=A.slice(W,ft).replace(/&#?\w+;/g,ze),W-1),ot=5}else{if(4!=ot)throw new Error('attribute value must after "="');st(at,St=A.slice(W,ft).replace(/&#?\w+;/g,ze),W),Ye.warning('attribute "'+at+'" missed start quot('+kt+")!!"),W=ft+1,ot=5}break;case"/":switch(ot){case 0:U.setTagName(A.slice(W,ft));case 5:case 6:case 7:ot=7,U.closed=!0;case 4:case 1:case 2:break;default:throw new Error("attribute invalid close char('/')")}break;case"":return Ye.error("unexpected end of input"),0==ot&&U.setTagName(A.slice(W,ft)),ft;case">":switch(ot){case 0:U.setTagName(A.slice(W,ft));case 5:case 6:case 7:break;case 4:case 1:"/"===(St=A.slice(W,ft)).slice(-1)&&(U.closed=!0,St=St.slice(0,-1));case 2:2===ot&&(St=at),4==ot?(Ye.warning('attribute "'+St+'" missed quot(")!'),st(at,St.replace(/&#?\w+;/g,ze),W)):((!L.isHTML(Se[""])||!St.match(/^(?:disabled|checked|selected)$/i))&&Ye.warning('attribute "'+St+'" missed value!! "'+St+'" instead!!'),st(St,St,W));break;case 3:throw new Error("attribute value missed!!")}return ft;case"\x80":kt=" ";default:if(kt<=" ")switch(ot){case 0:U.setTagName(A.slice(W,ft)),ot=6;break;case 1:at=A.slice(W,ft),ot=2;break;case 4:var St=A.slice(W,ft).replace(/&#?\w+;/g,ze);Ye.warning('attribute "'+St+'" missed quot(")!!'),st(at,St,W);case 5:ot=6}else switch(ot){case 2:U.tagName;(!L.isHTML(Se[""])||!at.match(/^(?:disabled|checked|selected)$/i))&&Ye.warning('attribute "'+at+'" missed value!! "'+at+'" instead2!!'),st(at,at,W),W=ft,ot=1;break;case 5:Ye.warning('attribute space is required"'+at+'"!!');case 6:ot=1,W=ft;break;case 3:ot=4,W=ft;break;case 7:throw new Error("elements closed character '/' and '>' must be connected to")}}ft++}}function ye(A,W,U){for(var Se=A.tagName,ze=null,Ye=A.length;Ye--;){var st=A[Ye],at=st.qName,St=st.value;if((_t=at.indexOf(":"))>0)var ft=st.prefix=at.slice(0,_t),ot=at.slice(_t+1),kt="xmlns"===ft&&ot;else ot=at,ft=null,kt="xmlns"===at&&"";st.localName=ot,!1!==kt&&(null==ze&&(ze={},Ue(U,U={})),U[kt]=ze[kt]=St,st.uri=L.XMLNS,W.startPrefixMapping(kt,St))}for(Ye=A.length;Ye--;){(ft=(st=A[Ye]).prefix)&&("xml"===ft&&(st.uri=L.XML),"xmlns"!==ft&&(st.uri=U[ft||""]))}var _t;(_t=Se.indexOf(":"))>0?(ft=A.prefix=Se.slice(0,_t),ot=A.localName=Se.slice(_t+1)):(ft=null,ot=A.localName=Se);var Xt=A.uri=U[ft||""];if(W.startElement(Xt,ot,Se,A),!A.closed)return A.currentNSMap=U,A.localNSMap=ze,!0;if(W.endElement(Xt,ot,Se),ze)for(ft in ze)Object.prototype.hasOwnProperty.call(ze,ft)&&W.endPrefixMapping(ft)}function te(A,W,U,Se,ze){if(/^(?:script|textarea)$/i.test(U)){var Ye=A.indexOf("",W),st=A.substring(W+1,Ye);if(/[&<]/.test(st))return/^script$/i.test(U)?(ze.characters(st,0,st.length),Ye):(st=st.replace(/&#?\w+;/g,Se),ze.characters(st,0,st.length),Ye)}return W+1}function ve(A,W,U,Se){var ze=Se[U];return null==ze&&((ze=A.lastIndexOf(""))W?(U.comment(A,W+4,Ye-W-4),Ye+3):(Se.error("Unclosed comment"),-1):-1;if("CDATA["==A.substr(W+3,6)){var Ye=A.indexOf("]]>",W+9);return U.startCDATA(),U.characters(A,W+9,Ye-W-9),U.endCDATA(),Ye+3}var st=function(A,W){var U,Se=[],ze=/'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;for(ze.lastIndex=W,ze.exec(A);U=ze.exec(A);)if(Se.push(U),U[1])return Se}(A,W),at=st.length;if(at>1&&/!doctype/i.test(st[0][0])){var St=st[1][0],ft=!1,ot=!1;at>3&&(/^public$/i.test(st[2][0])?(ft=st[3][0],ot=at>4&&st[4][0]):/^system$/i.test(st[2][0])&&(ot=st[3][0]));var kt=st[at-1];return U.startDTD(St,ft,ot),U.endDTD(),kt.index+kt[0].length}return-1}function Ze(A,W,U){var Se=A.indexOf("?>",W);if(Se){var ze=A.substring(W,Se).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);if(ze){ze[0].length;return U.processingInstruction(ze[1],ze[2]),Se+2}return-1}return-1}function ut(){this.attributeNames={}}Le.prototype=new Error,Le.prototype.name=Le.name,ce.prototype={parse:function(W,U,Se){var ze=this.domBuilder;ze.startDocument(),Ue(U,U={}),function(A,W,U,Se,ze){function Ye(_n){if(_n>65535){var gt=55296+((_n-=65536)>>10),Bt=56320+(1023&_n);return String.fromCharCode(gt,Bt)}return String.fromCharCode(_n)}function st(_n){var gt=_n.slice(1,-1);return gt in U?U[gt]:"#"===gt.charAt(0)?Ye(parseInt(gt.substr(1).replace("x","0x"))):(ze.error("entity not found:"+_n),_n)}function at(_n){if(_n>Wt){var gt=A.substring(Wt,_n).replace(/&#?\w+;/g,st);_t&&St(Wt),Se.characters(gt,0,_n-Wt),Wt=_n}}function St(_n,gt){for(;_n>=ot&&(gt=kt.exec(A));)ft=gt.index,ot=ft+gt[0].length,_t.lineNumber++;_t.columnNumber=_n-ft+1}for(var ft=0,ot=0,kt=/.*(?:\r\n?|\n)|.*$/g,_t=Se.locator,Xt=[{currentNSMap:W}],Jt={},Wt=0;;){try{var Ft=A.indexOf("<",Wt);if(Ft<0){if(!A.substr(Wt).match(/^\s*$/)){var mn=Se.doc,Pn=mn.createTextNode(A.substr(Wt));mn.appendChild(Pn),Se.currentElement=Pn}return}switch(Ft>Wt&&at(Ft),A.charAt(Ft+1)){case"/":var he=A.indexOf(">",Ft+3),hn=A.substring(Ft+2,he).replace(/[ \t\n\r]+$/g,""),on=Xt.pop();he<0?(hn=A.substring(Ft+2).replace(/[\s<].*/,""),ze.error("end tag name: "+hn+" is not complete:"+on.tagName),he=Ft+1+hn.length):hn.match(/\sWt?Wt=he:at(Math.max(Ft,Wt)+1)}}(W,U,Se,ze,this.errorHandler),ze.endDocument()}},ut.prototype={setTagName:function(W){if(!R.test(W))throw new Error("invalid tagName:"+W);this.tagName=W},addValue:function(W,U,Se){if(!R.test(W))throw new Error("invalid attribute:"+W);this.attributeNames[W]=this.length,this[this.length++]={qName:W,value:U,offset:Se}},length:0,getLocalName:function(W){return this[W].localName},getLocator:function(W){return this[W].locator},getQName:function(W){return this[W].qName},getURI:function(W){return this[W].uri},getValue:function(W){return this[W].value}},we.XMLReader=ce,we.ParseError=Le},8373:function(It,we,D){"use strict";function L(ae){if(!ae)return[];if(Array.isArray(ae))return ae;if(void 0!==ae.nodeType)return[ae];if("string"==typeof ae&&(ae=document.querySelectorAll(ae)),void 0!==ae.length)return[].slice.call(ae,0);throw new TypeError("unexpected input "+String(ae))}function C(ae){var X=ae.context,ke=ae.label,Fe=void 0===ke?"context-to-element":ke,rt=ae.resolveDocument,jt=ae.defaultToDocument,gn=L(X)[0];if(rt&&gn&&gn.nodeType===Node.DOCUMENT_NODE&&(gn=gn.documentElement),!gn&&jt)return document.documentElement;if(!gn)throw new TypeError(Fe+" requires valid options.context");if(gn.nodeType!==Node.ELEMENT_NODE&&gn.nodeType!==Node.DOCUMENT_FRAGMENT_NODE)throw new TypeError(Fe+" requires options.context to be an Element");return gn}function t(){for(var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=[],Fe=C({label:"get/parents",context:X});Fe;)ke.push(Fe),(Fe=Fe.parentNode)&&Fe.nodeType!==Node.ELEMENT_NODE&&(Fe=null);return ke}D.d(we,{Z:function(){return Hs}});var R=["matches","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector"],V=null;function E(ae,X){return V||function(ae){R.some(function(X){return!!ae[X]&&(V=X,!0)})}(ae),ae[V](X)}var y=D(8348),be=D.n(y),ue=JSON.parse(JSON.stringify(be())),De=ue.os.family||"",de="Android"===De,Le="Windows"===De.slice(0,7),ce="OS X"===De,pe="iOS"===De,Ne="Blink"===ue.layout,ge="Gecko"===ue.layout,ye="Trident"===ue.layout,te="EdgeHTML"===ue.layout,ve="WebKit"===ue.layout,Ue=parseFloat(ue.version),Ke=Math.floor(Ue);ue.majorVersion=Ke,ue.is={ANDROID:de,WINDOWS:Le,OSX:ce,IOS:pe,BLINK:Ne,GECKO:ge,TRIDENT:ye,EDGE:te,WEBKIT:ve,IE9:ye&&9===Ke,IE10:ye&&10===Ke,IE11:ye&&11===Ke};var Ze=ue;function W(ae){var X=function(){var ae={activeElement:document.activeElement,windowScrollTop:window.scrollTop,windowScrollLeft:window.scrollLeft,bodyScrollTop:document.body.scrollTop,bodyScrollLeft:document.body.scrollLeft},X=document.createElement("iframe");X.setAttribute("style","position:absolute; position:fixed; top:0; left:-2px; width:1px; height:1px; overflow:hidden;"),X.setAttribute("aria-live","off"),X.setAttribute("aria-busy","true"),X.setAttribute("aria-hidden","true"),document.body.appendChild(X);var ke=X.contentWindow,Fe=ke.document;Fe.open(),Fe.close();var rt=Fe.createElement("div");return Fe.body.appendChild(rt),ae.iframe=X,ae.wrapper=rt,ae.window=ke,ae.document=Fe,ae}(),ke={};return Object.keys(ae).map(function(Fe){ke[Fe]=function(ae,X){ae.wrapper.innerHTML="";var ke="string"==typeof X.element?ae.document.createElement(X.element):X.element(ae.wrapper,ae.document),Fe=X.mutate&&X.mutate(ke,ae.wrapper,ae.document);return!Fe&&!1!==Fe&&(Fe=ke),!ke.parentNode&&ae.wrapper.appendChild(ke),Fe&&Fe.focus&&Fe.focus(),X.validate?X.validate(ke,Fe,ae.document):ae.document.activeElement===Fe}(X,ae[Fe])}),function(ae){ae.activeElement===document.body?(document.activeElement&&document.activeElement.blur&&document.activeElement.blur(),Ze.is.IE10&&document.body.focus()):ae.activeElement&&ae.activeElement.focus&&ae.activeElement.focus(),document.body.removeChild(ae.iframe),window.scrollTop=ae.windowScrollTop,window.scrollLeft=ae.windowScrollLeft,document.body.scrollTop=ae.bodyScrollTop,document.body.scrollLeft=ae.bodyScrollLeft}(X),ke}var st="undefined"!=typeof window&&window.navigator.userAgent||"",at="ally-supports-cache",St=function(ae){var X=void 0;try{X=(X=window.localStorage&&window.localStorage.getItem(ae))?JSON.parse(X):{}}catch(ke){X={}}return X}(at);(St.userAgent!==st||"1.4.1"!==St.version)&&(St={}),St.userAgent=st,St.version="1.4.1";var ft_get=function(){return St},ft_set=function(X){Object.keys(X).forEach(function(ke){St[ke]=X[ke]}),St.time=(new Date).toISOString(),function(ae,X){if(document.hasFocus())try{window.localStorage&&window.localStorage.setItem(ae,JSON.stringify(X))}catch(ke){}else try{window.localStorage&&window.localStorage.removeItem(ae)}catch(ke){}}(at,St)};function ot(){var ae=void 0;try{document.querySelector("html >>> :first-child"),ae=">>>"}catch(X){try{document.querySelector("html /deep/ :first-child"),ae="/deep/"}catch(ke){ae=""}}return ae}var kt="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",_t={element:"div",mutate:function(X){return X.innerHTML='',X.querySelector("area")}},Xt={element:"div",mutate:function(X){return X.innerHTML='',!1},validate:function(X,ke,Fe){if(Ze.is.GECKO)return!0;var rt=X.querySelector("area");return rt.focus(),Fe.activeElement===rt}},Jt={element:"div",mutate:function(X){return X.innerHTML='',X.querySelector("area")},validate:function(X,ke,Fe){return!!Ze.is.GECKO||Fe.activeElement===ke}},Ft={name:"can-focus-audio-without-controls",element:"audio",mutate:function(X){try{X.setAttribute("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}catch(ke){}}},Pn={element:"div",mutate:function(X){return X.innerHTML='',X.querySelector("area")}},je={element:"a",mutate:function(X){return X.href="#void",X.innerHTML='',X.querySelector("img")}},rn={element:"div",mutate:function(X){return X.innerHTML='',X.querySelector("img")}},Je=!Ze.is.WEBKIT;var Jn="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBpZD0ic3ZnIj48dGV4dCB4PSIxMCIgeT0iMjAiIGlkPSJzdmctbGluay10ZXh0Ij50ZXh0PC90ZXh0Pjwvc3ZnPg==",_n={element:"object",mutate:function(X){X.setAttribute("type","image/svg+xml"),X.setAttribute("data",Jn),X.setAttribute("width","200"),X.setAttribute("height","50"),X.style.visibility="hidden"}},gt={name:"can-focus-object-svg",element:"object",mutate:function(X){X.setAttribute("type","image/svg+xml"),X.setAttribute("data",Jn),X.setAttribute("width","200"),X.setAttribute("height","50")},validate:function(X,ke,Fe){return!!Ze.is.GECKO||Fe.activeElement===X}},Bt=!Ze.is.IE9;var ln={element:"div",mutate:function(X){return X.innerHTML='',X.querySelector("img")},validate:function(X,ke,Fe){var rt=X.querySelector("area");return Fe.activeElement===rt}};function xe(ae){if(!(ae.ownerSVGElement||"svg"===ae.nodeName.toLowerCase()))return!1;var ke=function(){var ae=document.createElement("div");return ae.innerHTML='\n \n ',ae.firstChild.firstChild}();ae.appendChild(ke);var Fe=ke.querySelector("input");return Fe.focus(),Fe.disabled=!0,ae.removeChild(ke),!0}function fe(ae){return''+ae+""}function ht(ae,X,ke){return function(ae){if(!ae.focus)try{HTMLElement.prototype.focus.call(ae)}catch(X){xe(ae)}}(X),ke.activeElement===X}var wt={element:"div",mutate:function(X){return X.innerHTML=fe('a'),X.querySelector("text")},validate:ht},Gt={element:"div",mutate:function(X){return X.innerHTML=fe('a'),X.querySelector("text")},validate:ht},un={element:"div",mutate:function(X){return X.innerHTML=fe('a'),X.querySelector("text")},validate:ht},bn={element:"div",mutate:function(X){return X.innerHTML=fe(['link',''].join("")),X.querySelector("use")},validate:ht},Xn={element:"div",mutate:function(X){return X.innerHTML=fe(''),X.querySelector("foreignObject")||X.getElementsByTagName("foreignObject")[0]},validate:ht},Rn=Boolean(Ze.is.GECKO&&"undefined"!=typeof SVGElement&&SVGElement.prototype.focus);var Fn={element:"div",mutate:function(X){return X.innerHTML=fe(""),X.firstChild},validate:ht},jn={element:"video",mutate:function(X){try{X.setAttribute("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}catch(ke){}}},Dr=Ze.is.GECKO||Ze.is.TRIDENT||Ze.is.EDGE;var Lr={cssShadowPiercingDeepCombinator:ot,focusInZeroDimensionObject:function(){return Je},focusObjectSwf:function(){return Bt},focusSvgInIframe:function(){return Rn},tabsequenceAreaAtImgPosition:function(){return Dr}},vi={focusAreaImgTabindex:_t,focusAreaTabindex:Xt,focusAreaWithoutHref:Jt,focusAudioWithoutControls:Ft,focusBrokenImageMap:Pn,focusChildrenOfFocusableFlexbox:{element:"div",mutate:function(X){return X.setAttribute("tabindex","-1"),X.setAttribute("style","display: -webkit-flex; display: -ms-flexbox; display: flex;"),X.innerHTML='hello',X.querySelector("span")}},focusFieldsetDisabled:{element:"fieldset",mutate:function(X){X.setAttribute("tabindex",0),X.setAttribute("disabled","disabled")}},focusFieldset:{element:"fieldset",mutate:function(X){X.innerHTML="legend

content

"}},focusFlexboxContainer:{element:"span",mutate:function(X){X.setAttribute("style","display: -webkit-flex; display: -ms-flexbox; display: flex;"),X.innerHTML='hello'}},focusFormDisabled:{element:"form",mutate:function(X){X.setAttribute("tabindex",0),X.setAttribute("disabled","disabled")}},focusImgIsmap:je,focusImgUsemapTabindex:rn,focusInHiddenIframe:{element:function(X,ke){var Fe=ke.createElement("iframe");X.appendChild(Fe);var rt=Fe.contentWindow.document;return rt.open(),rt.close(),Fe},mutate:function(X){X.style.visibility="hidden";var ke=X.contentWindow.document,Fe=ke.createElement("input");return ke.body.appendChild(Fe),Fe},validate:function(X){var ke=X.contentWindow.document,Fe=ke.querySelector("input");return ke.activeElement===Fe}},focusInvalidTabindex:{element:"div",mutate:function(X){X.setAttribute("tabindex","invalid-value")}},focusLabelTabindex:{element:"label",mutate:function(X){X.setAttribute("tabindex","-1")},validate:function(X,ke,Fe){X.offsetHeight;return X.focus(),Fe.activeElement===X}},focusObjectSvg:gt,focusObjectSvgHidden:_n,focusRedirectImgUsemap:ln,focusRedirectLegend:{element:"fieldset",mutate:function(X){return X.innerHTML='legend',!1},validate:function(X,ke,Fe){var rt=X.querySelector('input[tabindex="-1"]'),jt=X.querySelector('input[tabindex="0"]');return X.focus(),X.querySelector("legend").focus(),(Fe.activeElement===rt?"focusable":Fe.activeElement===jt&&"tabbable")||""}},focusScrollBody:{element:"div",mutate:function(X){return X.setAttribute("style","width: 100px; height: 50px; overflow: auto;"),X.innerHTML='
scrollable content
',X.querySelector("div")}},focusScrollContainerWithoutOverflow:{element:"div",mutate:function(X){X.setAttribute("style","width: 100px; height: 50px;"),X.innerHTML='
scrollable content
'}},focusScrollContainer:{element:"div",mutate:function(X){X.setAttribute("style","width: 100px; height: 50px; overflow: auto;"),X.innerHTML='
scrollable content
'}},focusSummary:{element:"details",mutate:function(X){return X.innerHTML="foo

content

",X.firstElementChild}},focusSvgFocusableAttribute:wt,focusSvgTabindexAttribute:Gt,focusSvgNegativeTabindexAttribute:un,focusSvgUseTabindex:bn,focusSvgForeignobjectTabindex:Xn,focusSvg:Fn,focusTabindexTrailingCharacters:{element:"div",mutate:function(X){X.setAttribute("tabindex","3x")}},focusTable:{element:"table",mutate:function(X,ke,Fe){var rt=Fe.createDocumentFragment();rt.innerHTML="cell",X.appendChild(rt)}},focusVideoWithoutControls:jn};var wr=null;function We(){return wr||((wr=ft_get()).time||(ft_set((ae=W(vi),Object.keys(Lr).forEach(function(X){ae[X]=Lr[X]()}),ae)),wr=ft_get()),wr);var ae}var Pe=void 0,Qe=/^\s*(-|\+)?[0-9]+\s*$/,yt=/^\s*(-|\+)?[0-9]+.*$/;function Qt(ae){Pe||(Pe=We());var X=Pe.focusTabindexTrailingCharacters?yt:Qe,ke=C({label:"is/valid-tabindex",resolveDocument:!0,context:ae}),Fe=ke.hasAttribute("tabindex"),rt=ke.hasAttribute("tabIndex");if(!Fe&&!rt)return!1;if((ke.ownerSVGElement||"svg"===ke.nodeName.toLowerCase())&&!Pe.focusSvgTabindexAttribute)return!1;if(Pe.focusInvalidTabindex)return!0;var gn=ke.getAttribute(Fe?"tabindex":"tabIndex");return"-32768"!==gn&&Boolean(gn&&X.test(gn))}function yn(ae){if(!Qt(ae))return null;var ke=ae.hasAttribute("tabindex")?"tabindex":"tabIndex",Fe=parseInt(ae.getAttribute(ke),10);return isNaN(Fe)?-1:Fe}function sr(ae){var X=ae.webkitUserModify||"";return Boolean(X&&-1!==X.indexOf("write"))}function tr(ae){return[ae.getPropertyValue("overflow"),ae.getPropertyValue("overflow-x"),ae.getPropertyValue("overflow-y")].some(function(X){return"auto"===X||"scroll"===X})}function nr(ae){return ae.display.indexOf("flex")>-1}function Vr(ae,X,ke,Fe){return!("div"!==X&&"span"!==X||ke&&"div"!==ke&&"span"!==ke&&!tr(Fe))&&(ae.offsetHeight0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.except,Fe=void 0===ke?{flexbox:!1,scrollable:!1,shadow:!1}:ke;Kn||(Kn=We());var rt=C({label:"is/focus-relevant",resolveDocument:!0,context:X});if(!Fe.shadow&&rt.shadowRoot)return!0;var jt=rt.nodeName.toLowerCase();if("input"===jt&&"hidden"===rt.type)return!1;if("input"===jt||"select"===jt||"button"===jt||"textarea"===jt||"legend"===jt&&Kn.focusRedirectLegend||"label"===jt||"area"===jt||"a"===jt&&rt.hasAttribute("href"))return!0;if("object"===jt&&rt.hasAttribute("usemap"))return!1;if("object"===jt){var gn=rt.getAttribute("type");if(!Kn.focusObjectSvg&&"image/svg+xml"===gn)return!1;if(!Kn.focusObjectSwf&&"application/x-shockwave-flash"===gn)return!1}if("iframe"===jt||"object"===jt||"embed"===jt||"keygen"===jt||rt.hasAttribute("contenteditable")||"audio"===jt&&(Kn.focusAudioWithoutControls||rt.hasAttribute("controls"))||"video"===jt&&(Kn.focusVideoWithoutControls||rt.hasAttribute("controls"))||Kn.focusSummary&&"summary"===jt)return!0;var er=Qt(rt);if("img"===jt&&rt.hasAttribute("usemap"))return er&&Kn.focusImgUsemapTabindex||Kn.focusRedirectImgUsemap;if(Kn.focusTable&&("table"===jt||"td"===jt)||Kn.focusFieldset&&"fieldset"===jt)return!0;var or="svg"===jt,gr=rt.ownerSVGElement,xi=rt.getAttribute("focusable"),li=yn(rt);if("use"===jt&&null!==li&&!Kn.focusSvgUseTabindex)return!1;if("foreignobject"===jt)return null!==li&&Kn.focusSvgForeignobjectTabindex;if(E(rt,"svg a")&&rt.hasAttribute("xlink:href"))return!0;if((or||gr)&&rt.focus&&!Kn.focusSvgNegativeTabindexAttribute&&li<0)return!1;if(or)return er||Kn.focusSvg||Kn.focusSvgInIframe||Boolean(Kn.focusSvgFocusableAttribute&&xi&&"true"===xi);if(gr){if(Kn.focusSvgTabindexAttribute&&er)return!0;if(Kn.focusSvgFocusableAttribute)return"true"===xi}if(er)return!0;var Zi=window.getComputedStyle(rt,null);if(sr(Zi))return!0;if(Kn.focusImgIsmap&&"img"===jt&&rt.hasAttribute("ismap")){var xo=t({context:rt}).some(function(so){return"a"===so.nodeName.toLowerCase()&&so.hasAttribute("href")});if(xo)return!0}if(!Fe.scrollable&&Kn.focusScrollContainer)if(Kn.focusScrollContainerWithoutOverflow){if(Vr(rt,jt))return!0}else if(tr(Zi))return!0;if(!Fe.flexbox&&Kn.focusFlexboxContainer&&nr(Zi))return!0;var Wa=rt.parentElement;if(!Fe.scrollable&&Wa){var Tr=Wa.nodeName.toLowerCase(),Oa=window.getComputedStyle(Wa,null);if(Kn.focusScrollBody&&Vr(Wa,jt,Tr,Oa)||Kn.focusChildrenOfFocusableFlexbox&&nr(Oa))return!0}return!1}_i.except=function(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=function(Fe){return _i({context:Fe,except:ae})};return X.rules=_i,X};var Xr=_i.except({});function yi(ae,X){if(ae.findIndex)return ae.findIndex(X);var ke=ae.length;if(0===ke)return-1;for(var Fe=0;Fe0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.except,Fe=void 0===ke?{notRendered:!1,cssDisplay:!1,cssVisibility:!1,detailsElement:!1,browsingContext:!1}:ke,rt=C({label:"is/visible",resolveDocument:!0,context:X}),jt=rt.nodeName.toLowerCase();if(!Fe.notRendered&&sa.test(jt))return!0;var gn=t({context:rt}),er="audio"===jt&&!rt.hasAttribute("controls");if(!Fe.cssDisplay&&Mt(er?gn.slice(1):gn)||!Fe.cssVisibility&&nt(gn)||!Fe.detailsElement&<(gn))return!1;if(!Fe.browsingContext){var or=Er(rt),gr=bt.except(Fe);if(or&&!gr(or))return!1}return!0}bt.except=function(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=function(Fe){return bt({context:Fe,except:ae})};return X.rules=bt,X};var En=bt.except({}),kn=D(5932),Qn=D.n(kn);function pr(ae,X){return X.querySelector('map[name="'+Qn()(ae)+'"]')||null}function Cr(ae){var X=ae.parentElement;return X.name&&"map"===X.nodeName.toLowerCase()&&qr(ae).querySelector('img[usemap="#'+Qn()(X.name)+'"]')||null}var si=void 0;var qn=void 0,lr=void 0,Sr={input:!0,select:!0,textarea:!0,button:!0,fieldset:!0,form:!0};function fi(ae){qn||((qn=We()).focusFieldsetDisabled&&delete Sr.fieldset,qn.focusFormDisabled&&delete Sr.form,lr=new RegExp("^("+Object.keys(Sr).join("|")+")$"));var ke=C({label:"is/native-disabled-supported",context:ae}).nodeName.toLowerCase();return Boolean(lr.test(ke))}var Ur=void 0;function ei(ae){return"fieldset"===ae.nodeName.toLowerCase()&&ae.disabled}function Br(ae){return"form"===ae.nodeName.toLowerCase()&&ae.disabled}function ti(ae){Ur||(Ur=We());var X=C({label:"is/disabled",context:ae});if(X.hasAttribute("data-ally-disabled"))return!0;if(!fi(X))return!1;if(X.disabled)return!0;var ke=t({context:X});return!!(ke.some(ei)||!Ur.focusFormDisabled&&ke.some(Br))}function Pi(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.except,Fe=void 0===ke?{onlyFocusableBrowsingContext:!1,visible:!1}:ke,rt=C({label:"is/only-tabbable",resolveDocument:!0,context:X});if(!Fe.visible&&!En(rt))return!1;if(!Fe.onlyFocusableBrowsingContext&&(Ze.is.GECKO||Ze.is.TRIDENT||Ze.is.EDGE)){var jt=Er(rt);if(jt&&yn(jt)<0)return!1}var gn=rt.nodeName.toLowerCase(),er=yn(rt);return"label"===gn&&Ze.is.GECKO?null!==er&&er>=0:!!(Ze.is.GECKO&&rt.ownerSVGElement&&!rt.focus&&"a"===gn&&rt.hasAttribute("xlink:href")&&Ze.is.GECKO)}Pi.except=function(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=function(Fe){return Pi({context:Fe,except:ae})};return X.rules=Pi,X};var Ui=Pi.except({}),ni=void 0;function No(ae){var X=ae.nodeName.toLowerCase();if("embed"===X||"keygen"===X)return!0;var ke=yn(ae);if(ae.shadowRoot&&null===ke)return!0;if("label"===X)return!ni.focusLabelTabindex||null===ke;if("legend"===X)return null===ke;if(ni.focusSvgFocusableAttribute&&(ae.ownerSVGElement||"svg"===X)){var Fe=ae.getAttribute("focusable");return Fe&&"false"===Fe}return"img"===X&&ae.hasAttribute("usemap")?null===ke||!ni.focusImgUsemapTabindex:"area"===X&&!function(ae){si||(si=We());var X=C({label:"is/valid-area",context:ae});if("area"!==X.nodeName.toLowerCase())return!1;var Fe=X.hasAttribute("tabindex");if(!si.focusAreaTabindex&&Fe)return!1;var rt=Cr(X);return!(!rt||!En(rt)||!si.focusBrokenImageMap&&(!rt.complete||!rt.naturalHeight||rt.offsetWidth<=0||rt.offsetHeight<=0))&&(si.focusAreaWithoutHref||X.href?!t({context:rt}).slice(1).some(function(gn){var er=gn.nodeName.toLowerCase();return"button"===er||"a"===er}):si.focusAreaTabindex&&Fe||si.focusAreaImgTabindex&&rt.hasAttribute("tabindex"))}(ae)}function In(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.except,Fe=void 0===ke?{disabled:!1,visible:!1,onlyTabbable:!1}:ke;ni||(ni=We());var rt=Ui.rules.except({onlyFocusableBrowsingContext:!0,visible:Fe.visible}),jt=C({label:"is/focusable",resolveDocument:!0,context:X}),gn=Xr.rules({context:jt,except:Fe});if(!gn||No(jt)||!Fe.disabled&&ti(jt)||!Fe.onlyTabbable&&rt(jt))return!1;if(!Fe.visible){var er={context:jt,except:{}};if(ni.focusInHiddenIframe&&(er.except.browsingContext=!0),ni.focusObjectSvgHidden){var or=jt.nodeName.toLowerCase();"object"===or&&(er.except.cssVisibility=!0)}if(!En.rules(er))return!1}var gr=Er(jt);if(gr){var xi=gr.nodeName.toLowerCase();if(!("object"!==xi||ni.focusInZeroDimensionObject||gr.offsetWidth&&gr.offsetHeight))return!1}var li=jt.nodeName.toLowerCase();return!("svg"===li&&ni.focusSvgInIframe&&!gr&&null===jt.getAttribute("tabindex"))}In.except=function(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=function(Fe){return In({context:Fe,except:ae})};return X.rules=In,X};var Ca=In.except({});function rr(ae){var X=function(Fe){return Fe.shadowRoot||ae(Fe)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP};return X.acceptNode=X,X}var ea=rr(Xr);function hr(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.includeContext,Fe=ae.includeOnlyTabbable,rt=ae.strategy;X||(X=document.documentElement);for(var jt=Ca.rules.except({onlyTabbable:Fe}),gn=qr(X),er=gn.createTreeWalker(X,NodeFilter.SHOW_ELEMENT,"all"===rt?ea:rr(jt),!1),or=[];er.nextNode();)er.currentNode.shadowRoot?(jt(er.currentNode)&&or.push(er.currentNode),or=or.concat(hr({context:er.currentNode.shadowRoot,includeOnlyTabbable:Fe,strategy:rt}))):or.push(er.currentNode);return ke&&("all"===rt?Xr(X)&&or.unshift(X):jt(X)&&or.unshift(X)),or}var ba=void 0,pi=void 0;function pa(){return ba||(ba=We()),"string"==typeof pi||(pi=Ci(pi=(ba.focusTable?"table, td,":"")+(ba.focusFieldset?"fieldset,":"")+"svg a,a[href],area[href],input, select, textarea, button,iframe, object, embed,keygen,"+(ba.focusAudioWithoutControls?"audio,":"audio[controls],")+(ba.focusVideoWithoutControls?"video,":"video[controls],")+(ba.focusSummary?"summary,":"")+"[tabindex],[contenteditable]")),pi}function qa(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.includeContext,Fe=ae.includeOnlyTabbable,rt=pa(),jt=X.querySelectorAll(rt),gn=Ca.rules.except({onlyTabbable:Fe}),er=[].filter.call(jt,gn);return ke&&gn(X)&&er.unshift(X),er}function ta(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.includeContext,Fe=ae.includeOnlyTabbable,rt=ae.strategy,jt=void 0===rt?"quick":rt,gn=C({label:"query/focusable",resolveDocument:!0,defaultToDocument:!0,context:X}),er={context:gn,includeContext:ke,includeOnlyTabbable:Fe,strategy:jt};if("quick"===jt)return qa(er);if("strict"===jt||"all"===jt)return hr(er);throw new TypeError('query/focusable requires option.strategy to be one of ["quick", "strict", "all"]')}function Fi(ae){var X=ae.element,ke=ae.attribute,Fe="data-cached-"+ke;if(null===X.getAttribute(Fe)){var jt=X.getAttribute(ke);if(null===jt)return;X.setAttribute(Fe,jt||""),X.removeAttribute(ke)}else{var gn=X.getAttribute(Fe);X.removeAttribute(Fe),X.setAttribute(ke,gn)}}function Bi(ae){var X=ae.element,ke=ae.attribute,Fe=ae.temporaryValue,rt=ae.saveValue,jt="data-cached-"+ke;if(void 0!==Fe){var gn=rt||X.getAttribute(ke);X.setAttribute(jt,gn||""),X.setAttribute(ke,Fe)}else{var er=X.getAttribute(jt);X.removeAttribute(jt),""===er?X.removeAttribute(ke):X.setAttribute(ke,er)}}var Bn=function(){},ki="undefined"!=typeof console?console:{log:Bn,debug:Bn,info:Bn,warn:Bn,error:Bn},Hn=void 0;function qi(){ki.warn("trying to focus inert element",this)}function bs(ae,X){(function(ae,X){Bi({element:ae,attribute:"aria-disabled",temporaryValue:X?"true":void 0})})(ae,X),function(ae,X){if(X){var ke=yn(ae);Bi({element:ae,attribute:"tabindex",temporaryValue:"-1",saveValue:null!==ke?ke:""})}else Bi({element:ae,attribute:"tabindex"})}(ae,X),function(ae,X){X?ae.focus=qi:delete ae.focus}(ae,X),function(ae,X){if(X){var ke=ae.style.pointerEvents||"";ae.setAttribute("data-inert-pointer-events",ke),ae.style.pointerEvents="none"}else{var Fe=ae.getAttribute("data-inert-pointer-events");ae.removeAttribute("data-inert-pointer-events"),ae.style.pointerEvents=Fe}}(ae,X);var ke=ae.nodeName.toLowerCase();("video"===ke||"audio"===ke)&&function(ae,X){Fi({element:ae,attribute:"controls",remove:X})}(ae,X),("svg"===ke||ae.ownerSVGElement)&&(Hn.focusSvgFocusableAttribute?function(ae,X){Bi({element:ae,attribute:"focusable",temporaryValue:X?"false":void 0})}(ae,X):!Hn.focusSvgTabindexAttribute&&"a"===ke&&function(ae,X){Fi({element:ae,attribute:"xlink:href",remove:X})}(ae,X)),X?ae.setAttribute("data-ally-disabled","true"):ae.removeAttribute("data-ally-disabled")}function za(ae,X){Hn||(Hn=We());var ke=C({label:"element/disabled",context:ae});X=Boolean(X);var Fe=ke.hasAttribute("data-ally-disabled"),rt=1===arguments.length;return fi(ke)?rt?ke.disabled:(ke.disabled=X,ke):rt?Fe:(Fe===X||bs(ke,X),ke)}var Ko=function(X){return X.shadowRoot?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP};function Ia(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=C({label:"query/shadow-hosts",resolveDocument:!0,defaultToDocument:!0,context:X}),Fe=qr(X),rt=Fe.createTreeWalker(ke,NodeFilter.SHOW_ELEMENT,Ko,!1),jt=[];for(ke.shadowRoot&&(jt.push(ke),jt=jt.concat(Ia({context:ke.shadowRoot})));rt.nextNode();)jt.push(rt.currentNode),jt=jt.concat(Ia({context:rt.currentNode.shadowRoot}));return jt}Ko.acceptNode=Ko;var ua="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(ae){return typeof ae}:function(ae){return ae&&"function"==typeof Symbol&&ae.constructor===Symbol&&ae!==Symbol.prototype?"symbol":typeof ae},Ma=function(){function ae(X,ke){for(var Fe=0;Fe0&&void 0!==arguments[0]?arguments[0]:{},Fe=ke.context,rt=ke.callback,jt=ke.config;yo(this,ae),this.config=jt,this.disengage=this.disengage.bind(this),this.clientObserver=new MutationObserver(rt),this.hostObserver=new MutationObserver(function(gn){return gn.forEach(X.handleHostMutation,X)}),this.observeContext(Fe),this.observeShadowHosts(Fe)}return Ma(ae,[{key:"disengage",value:function(){this.clientObserver&&this.clientObserver.disconnect(),this.clientObserver=null,this.hostObserver&&this.hostObserver.disconnect(),this.hostObserver=null}},{key:"observeShadowHosts",value:function(ke){var Fe=this;Ia({context:ke}).forEach(function(jt){return Fe.observeContext(jt.shadowRoot)})}},{key:"observeContext",value:function(ke){this.clientObserver.observe(ke,this.config),this.hostObserver.observe(ke,Da)}},{key:"handleHostMutation",value:function(ke){"childList"===ke.type&&L(ke.addedNodes).filter(function(rt){return rt.nodeType===Node.ELEMENT_NODE}).forEach(this.observeShadowHosts,this)}}]),ae}();function el(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.callback,Fe=ae.config;if("function"!=typeof ke)throw new TypeError("observe/shadow-mutations requires options.callback to be a function");if("object"!==(void 0===Fe?"undefined":ua(Fe)))throw new TypeError("observe/shadow-mutations requires options.config to be an object");if(!window.MutationObserver)return{disengage:function(){}};var rt=C({label:"observe/shadow-mutations",resolveDocument:!0,defaultToDocument:!0,context:X}),jt=new Ms({context:rt,callback:ke,config:Fe});return{disengage:jt.disengage}}function ws(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.parent,ke=ae.element,Fe=ae.includeSelf;if(X)return function(jt){return Boolean(Fe&&jt===X||X.compareDocumentPosition(jt)&Node.DOCUMENT_POSITION_CONTAINED_BY)};if(ke)return function(jt){return Boolean(Fe&&ke===jt||jt.compareDocumentPosition(ke)&Node.DOCUMENT_POSITION_CONTAINED_BY)};throw new TypeError("util/compare-position#getParentComparator required either options.parent or options.element")}var Pr=function(){function ae(X,ke){for(var Fe=0;Fe0&&void 0!==arguments[0]?arguments[0]:{},Fe=ke.context,rt=ke.filter;Va(this,ae),this._context=L(Fe||document.documentElement)[0],this._filter=L(rt),this._inertElementCache=[],this.disengage=this.disengage.bind(this),this.handleMutation=this.handleMutation.bind(this),this.renderInert=this.renderInert.bind(this),this.filterElements=this.filterElements.bind(this),this.filterParentElements=this.filterParentElements.bind(this);var jt=ta({context:this._context,includeContext:!0,strategy:"all"});this.renderInert(jt),this.shadowObserver=el({context:this._context,config:le,callback:function(er){return er.forEach(X.handleMutation)}})}return Pr(ae,[{key:"disengage",value:function(){!this._context||(J(this._context),this._inertElementCache.forEach(function(ke){return J(ke)}),this._inertElementCache=null,this._filter=null,this._context=null,this.shadowObserver&&this.shadowObserver.disengage(),this.shadowObserver=null)}},{key:"listQueryFocusable",value:function(ke){return ke.map(function(Fe){return ta({context:Fe,includeContext:!0,strategy:"all"})}).reduce(function(Fe,rt){return Fe.concat(rt)},[])}},{key:"renderInert",value:function(ke){var Fe=this;ke.filter(this.filterElements).filter(this.filterParentElements).filter(function(jt){return!za(jt)}).forEach(function(gn){Fe._inertElementCache.push(gn),function(ae){za(ae,!0)}(gn)})}},{key:"filterElements",value:function(ke){var Fe=ws({element:ke,includeSelf:!0});return!this._filter.some(Fe)}},{key:"filterParentElements",value:function(ke){var Fe=ws({parent:ke});return!this._filter.some(Fe)}},{key:"handleMutation",value:function(ke){if("childList"===ke.type){var Fe=L(ke.addedNodes).filter(function(jt){return jt.nodeType===Node.ELEMENT_NODE});if(!Fe.length)return;var rt=this.listQueryFocusable(Fe);this.renderInert(rt)}else"attributes"===ke.type&&this.renderInert([ke.target])}}]),ae}();function B(ae){var X=ae.context,ke=ae.filter,rt=[],jt=function(gr){return ke.some(function(xi){return gr===xi})?NodeFilter.FILTER_REJECT:function(gr){var xi=ws({parent:gr});return ke.some(xi)}(gr)?NodeFilter.FILTER_ACCEPT:(rt.push(gr),NodeFilter.FILTER_REJECT)};jt.acceptNode=jt;for(var er=qr(X).createTreeWalker(X,NodeFilter.SHOW_ELEMENT,jt,!1);er.nextNode(););return rt}function N(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.filter;if(X=C({label:"get/insignificant-branches",defaultToDocument:!0,context:X}),!(ke=L(ke)).length)throw new TypeError("get/insignificant-branches requires valid options.filter");return B({context:X,filter:ke})}var ie=function(){function ae(X,ke){for(var Fe=0;Fe0&&void 0!==arguments[0]?arguments[0]:{},ke=X.context,Fe=X.filter;oe(this,ae),this._context=L(ke||document.documentElement)[0],this._filter=L(Fe),this.disengage=this.disengage.bind(this),this.handleMutation=this.handleMutation.bind(this),this.isInsignificantBranch=this.isInsignificantBranch.bind(this);var rt=N({context:this._context,filter:this._filter});rt.forEach(Ve),this.startObserver()}return ie(ae,[{key:"disengage",value:function(){!this._context||([].forEach.call(this._context.querySelectorAll("[data-cached-aria-hidden]"),Tt),this._context=null,this._filter=null,this._observer&&this._observer.disconnect(),this._observer=null)}},{key:"startObserver",value:function(){var ke=this;!window.MutationObserver||(this._observer=new MutationObserver(function(Fe){return Fe.forEach(ke.handleMutation)}),this._observer.observe(this._context,tn))}},{key:"handleMutation",value:function(ke){"childList"===ke.type&&L(ke.addedNodes).filter(function(Fe){return Fe.nodeType===Node.ELEMENT_NODE}).filter(this.isInsignificantBranch).forEach(Ve)}},{key:"isInsignificantBranch",value:function(ke){if(t({context:ke}).some(function(jt){return"true"===jt.getAttribute("aria-hidden")}))return!1;var rt=ws({element:ke});return!this._filter.some(rt)}}]),ae}();function bi(){for(var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=C({label:"get/shadow-host",context:X}),Fe=null;ke;)Fe=ke,ke=ke.parentNode;return Fe.nodeType===Fe.DOCUMENT_FRAGMENT_NODE&&Fe.host?Fe.host:null}function hi(ae){var X=C({label:"is/active-element",resolveDocument:!0,context:ae});if(qr(X).activeElement===X)return!0;var Fe=bi({context:X});return!(!Fe||Fe.shadowRoot.activeElement!==X)}var ji=void 0,Gn=/^(fieldset|table|td|body)$/;function Oi(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.except,Fe=void 0===ke?{flexbox:!1,scrollable:!1,shadow:!1,visible:!1,onlyTabbable:!1}:ke;ji||(ji=We());var rt=C({label:"is/tabbable",resolveDocument:!0,context:X});if(Ze.is.BLINK&&Ze.is.ANDROID&&Ze.majorVersion>42)return!1;var jt=Er(rt);if(jt){if(Ze.is.WEBKIT&&Ze.is.IOS||yn(jt)<0||!Fe.visible&&(Ze.is.BLINK||Ze.is.WEBKIT)&&!En(jt))return!1;var gn=jt.nodeName.toLowerCase();if("object"===gn){var er="Chrome"===Ze.name&&Ze.majorVersion>=54||"Opera"===Ze.name&&Ze.majorVersion>=41;if(Ze.is.WEBKIT||Ze.is.BLINK&&!er)return!1}}var or=rt.nodeName.toLowerCase(),gr=yn(rt),xi=null===gr?null:gr>=0;if(Ze.is.EDGE&&Ze.majorVersion>=14&&jt&&rt.ownerSVGElement&&gr<0)return!0;var li=!1!==xi,Zi=null!==gr&&gr>=0;if(rt.hasAttribute("contenteditable"))return li;if(Gn.test(or)&&!0!==xi)return!1;if(Ze.is.WEBKIT&&Ze.is.IOS){var xo="input"===or&&"text"===rt.type||"password"===rt.type||"select"===or||"textarea"===or||rt.hasAttribute("contenteditable");if(!xo){var Wa=window.getComputedStyle(rt,null);xo=sr(Wa)}if(!xo)return!1}if("use"===or&&null!==gr&&(Ze.is.BLINK||Ze.is.WEBKIT&&9===Ze.majorVersion)||E(rt,"svg a")&&rt.hasAttribute("xlink:href")&&(li||rt.focus&&!ji.focusSvgNegativeTabindexAttribute)||"svg"===or&&ji.focusSvgInIframe&&li)return!0;if(Ze.is.TRIDENT||Ze.is.EDGE){if("svg"===or)return!!ji.focusSvg||(rt.hasAttribute("focusable")||Zi);if(rt.ownerSVGElement)return!(!ji.focusSvgTabindexAttribute||!Zi)||rt.hasAttribute("focusable")}if(void 0===rt.tabIndex)return Boolean(Fe.onlyTabbable);if("audio"===or){if(!rt.hasAttribute("controls"))return!1;if(Ze.is.BLINK)return!0}if("video"===or)if(rt.hasAttribute("controls")){if(Ze.is.BLINK||Ze.is.GECKO)return!0}else if(Ze.is.TRIDENT||Ze.is.EDGE)return!1;if("object"===or&&(Ze.is.BLINK||Ze.is.WEBKIT)||"iframe"===or)return!1;if(!Fe.scrollable&&Ze.is.GECKO){var Tr=window.getComputedStyle(rt,null);if(tr(Tr))return li}if(Ze.is.TRIDENT||Ze.is.EDGE){if("area"===or){var Oa=Cr(rt);if(Oa&&yn(Oa)<0)return!1}var so=window.getComputedStyle(rt,null);if(sr(so))return rt.tabIndex>=0;if(!Fe.flexbox&&nr(so))return null!==gr?Zi:Ha(rt)&&Co(rt);if(Vr(rt,or))return!1;var Qa=rt.parentElement;if(Qa){var lo=Qa.nodeName.toLowerCase(),es=window.getComputedStyle(Qa,null);if(Vr(Qa,or,lo,es))return!1;if(nr(es))return Zi}}return rt.tabIndex>=0}Oi.except=function(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=function(Fe){return Oi({context:Fe,except:ae})};return X.rules=Oi,X};var Ha=Xr.rules.except({flexbox:!0}),Co=Oi.except({flexbox:!0}),zs=Oi.except({});function oo(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.includeContext,Fe=ae.includeOnlyTabbable,rt=ae.strategy,jt=zs.rules.except({onlyTabbable:Fe});return ta({context:X,includeContext:ke,includeOnlyTabbable:Fe,strategy:rt}).filter(jt)}function Mi(ae,X){return ae.compareDocumentPosition(X)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1}function bo(ae){return ae.sort(Mi)}function wu(ae,X,ke){var Fe=[];return X.forEach(function(rt){var jt=!0,gn=ae.indexOf(rt);-1===gn&&(gn=function(ae,X){return yi(ae,function(ke){return X.compareDocumentPosition(ke)&Node.DOCUMENT_POSITION_FOLLOWING})}(ae,rt),jt=!1),-1===gn&&(gn=ae.length);var er=L(ke?ke(rt):rt);!er.length||Fe.push({offset:gn,replace:jt,elements:er})}),Fe}function Ti(ae,X){var ke=0;X.sort(function(Fe,rt){return Fe.offset-rt.offset}),X.forEach(function(Fe){var rt=Fe.replace?1:0,jt=[Fe.offset+ke,rt].concat(Fe.elements);ae.splice.apply(ae,jt),ke+=Fe.elements.length-rt})}function T1(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.list,ke=ae.elements,Fe=ae.resolveElement,rt=X.slice(0),jt=L(ke).slice(0);bo(jt);var gn=wu(rt,jt,Fe);return Ti(rt,gn),rt}var tl=function(){function ae(X,ke){for(var Fe=0;Fe-1?[ke].concat(Fe):Fe}},{key:"_cleanup",value:function(){Object.keys(this.hosts).forEach(function(ke){delete this.hosts[ke]._sortingId},this)}}]),ae}();function kl(ae,X,ke){var Fe=new ai(X,ke),rt=Fe.extractElements(ae);return rt.length===ae.length?ke(ae):Fe.sort(rt)}var dr=void 0;function Eo(ae,X){var ke=ae.indexOf(X);return ke>0?ae.splice(ke,1).concat(ae):ae}function nl(ae,X){return dr.tabsequenceAreaAtImgPosition&&(ae=function(ae,X){var ke=X.querySelectorAll("img[usemap]"),Fe=new Sa(X),rt=Fe.extractAreasFromList(ae);return ke.length?T1({list:rt,elements:ke,resolveElement:function(gn){var er=gn.getAttribute("usemap").slice(1);return Fe.getAreasFor(er)}}):rt}(ae,X)),ae=function(ae){var X={},ke=[],Fe=ae.filter(function(jt){var gn=jt.tabIndex;return void 0===gn&&(gn=yn(jt)),gn<=0||null==gn||(X[gn]||(X[gn]=[],ke.push(gn)),X[gn].push(jt),!1)});return ke.sort().map(function(jt){return X[jt]}).reduceRight(function(jt,gn){return gn.concat(jt)},Fe)}(ae),ae}function Us(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.includeContext,Fe=ae.includeOnlyTabbable,rt=ae.strategy;dr||(dr=We());var jt=L(X)[0]||document.documentElement,gn=oo({context:jt,includeContext:ke,includeOnlyTabbable:Fe,strategy:rt});return gn=document.body.createShadowRoot&&Ze.is.BLINK?kl(gn,jt,nl):nl(gn,jt),ke&&(gn=Eo(gn,jt)),gn}for(var Zn={tab:9,left:37,up:38,right:39,down:40,pageUp:33,"page-up":33,pageDown:34,"page-down":34,end:35,home:36,enter:13,escape:27,space:32,shift:16,capsLock:20,"caps-lock":20,ctrl:17,alt:18,meta:91,pause:19,insert:45,delete:46,backspace:8,_alias:{91:[92,93,224]}},js=1;js<26;js++)Zn["f"+js]=js+111;for(var Hr=0;Hr<10;Hr++){var Pa=Hr+48,Ro=Hr+96;Zn[Hr]=Pa,Zn["num-"+Hr]=Ro,Zn._alias[Pa]=[Ro]}for(var ka=0;ka<26;ka++){var Ei=ka+65;Zn[String.fromCharCode(Ei).toLowerCase()]=Ei}var dn=Zn,mr={alt:"altKey",ctrl:"ctrlKey",meta:"metaKey",shift:"shiftKey"},x1=Object.keys(mr).map(function(ae){return mr[ae]});function ha(ae,X){return!x1.some(function(ke){return"boolean"==typeof ae[ke]&&Boolean(X[ke])!==ae[ke]})}function $o(ae){return ae.split(/\s+/).map(function(X){var ke=X.split("+"),Fe=function(ae){var ke=function(ae){var X=!!ae&&null;return{altKey:X,ctrlKey:X,metaKey:X,shiftKey:X}}(-1!==ae.indexOf("*"));return ae.forEach(function(Fe){if("*"!==Fe){var rt=!0,jt=Fe.slice(0,1);"?"===jt?rt=null:"!"===jt&&(rt=!1),!0!==rt&&(Fe=Fe.slice(1));var gn=mr[Fe];if(!gn)throw new TypeError('Unknown modifier "'+Fe+'"');ke[gn]=rt}}),ke}(ke.slice(0,-1)),rt=function(ae){var X=dn[ae]||parseInt(ae,10);if(!X||"number"!=typeof X||isNaN(X))throw new TypeError('Unknown key "'+ae+'"');return[X].concat(dn._alias[X]||[])}(ke.slice(-1));return{keyCodes:rt,modifiers:Fe,matchModifiers:ha.bind(null,Fe)}})}function Ga(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X={},ke=L(ae.context)[0]||document.documentElement;delete ae.context;var Fe=L(ae.filter);delete ae.filter;var rt=Object.keys(ae);if(!rt.length)throw new TypeError("when/key requires at least one option key");var jt=function(gr){gr.keyCodes.forEach(function(xi){X[xi]||(X[xi]=[]),X[xi].push(gr)})};rt.forEach(function(or){if("function"!=typeof ae[or])throw new TypeError('when/key requires option["'+or+'"] to be a function');$o(or).map(function(li){return li.callback=ae[or],li}).forEach(jt)});var gn=function(gr){if(!gr.defaultPrevented){if(Fe.length){var xi=ws({element:gr.target,includeSelf:!0});if(Fe.some(xi))return}var li=gr.keyCode||gr.which;!X[li]||X[li].forEach(function(Zi){!Zi.matchModifiers(gr)||Zi.callback.call(ke,gr,er)})}};ke.addEventListener("keydown",gn,!1);var er=function(){ke.removeEventListener("keydown",gn,!1)};return{disengage:er}}var Hs={disabled:function(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.filter,Fe=new Re({context:X,filter:ke});return{disengage:Fe.disengage}},hidden:function(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context,ke=ae.filter,Fe=new Un({context:X,filter:ke});return{disengage:Fe.disengage}},tabFocus:function(){var ae=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X=ae.context;return X||(X=document.documentElement),Us(),Ga({"?alt+?shift+tab":function(Fe){Fe.preventDefault();var rt=Us({context:X}),jt=Fe.shiftKey,gn=rt[0],er=rt[rt.length-1],gr=jt?er:gn;if(hi(jt?gn:er))gr.focus();else{var xi=void 0;if(rt.some(function(xo,Wa){return!!hi(xo)&&(xi=Wa,!0)}))rt[xi+(jt?-1:1)].focus();else gn.focus()}}})}}},5932:function(It){ -/*! https://mths.be/cssescape v1.5.1 by @mathias | MIT license */ -var we;we="undefined"!=typeof global?global:this,It.exports=function(we){if(we.CSS&&we.CSS.escape)return we.CSS.escape;var D=function(C){if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");for(var F,t=String(C),R=t.length,V=-1,E="",y=t.charCodeAt(0);++V=1&&F<=31||127==F||0==V&&F>=48&&F<=57||1==V&&F>=48&&F<=57&&45==y?"\\"+F.toString(16)+" ":0==V&&1==R&&45==F||!(F>=128||45==F||95==F||F>=48&&F<=57||F>=65&&F<=90||F>=97&&F<=122)?"\\"+t.charAt(V):t.charAt(V):E+="\ufffd";return E};return we.CSS||(we.CSS={}),we.CSS.escape=D,D}(we)},179:function(It,we,D){var t,L="undefined"!=typeof global?global:"undefined"!=typeof window?window:{},C=D(5893);"undefined"!=typeof document?t=document:(t=L["__GLOBAL_DOCUMENT_CACHE@4"])||(t=L["__GLOBAL_DOCUMENT_CACHE@4"]=C),It.exports=t},8341:function(It){var we;we="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},It.exports=we},4366:function(It){It.exports=function(L){if(!L)return!1;var C=we.call(L);return"[object Function]"===C||"function"==typeof L&&"[object RegExp]"!==C||"undefined"!=typeof window&&(L===window.setTimeout||L===window.alert||L===window.confirm||L===window.prompt)};var we=Object.prototype.toString},8002:function(It,we){function D(F){if(F&&"object"==typeof F){var E=F.which||F.keyCode||F.charCode;E&&(F=E)}if("number"==typeof F)return R[F];var be,y=String(F);return(be=L[y.toLowerCase()])?be:(be=C[y.toLowerCase()])||(1===y.length?y.charCodeAt(0):void 0)}D.isEventKey=function(E,y){if(E&&"object"==typeof E){var be=E.which||E.keyCode||E.charCode;if(null==be)return!1;if("string"==typeof y){var ue;if(ue=L[y.toLowerCase()])return ue===be;if(ue=C[y.toLowerCase()])return ue===be}else if("number"==typeof y)return y===be;return!1}};var L=(we=It.exports=D).code=we.codes={backspace:8,tab:9,enter:13,shift:16,ctrl:17,alt:18,"pause/break":19,"caps lock":20,esc:27,space:32,"page up":33,"page down":34,end:35,home:36,left:37,up:38,right:39,down:40,insert:45,delete:46,command:91,"left command":91,"right command":93,"numpad *":106,"numpad +":107,"numpad -":109,"numpad .":110,"numpad /":111,"num lock":144,"scroll lock":145,"my computer":182,"my calculator":183,";":186,"=":187,",":188,"-":189,".":190,"/":191,"`":192,"[":219,"\\":220,"]":221,"'":222},C=we.aliases={windows:91,"\u21e7":16,"\u2325":18,"\u2303":17,"\u2318":91,ctl:17,control:17,option:18,pause:19,break:19,caps:20,return:13,escape:27,spc:32,spacebar:32,pgup:33,pgdn:34,ins:45,del:46,cmd:91}; -/*! - * Programatically add the following - */for(t=97;t<123;t++)L[String.fromCharCode(t)]=t-32;for(var t=48;t<58;t++)L[t-48]=t;for(t=1;t<13;t++)L["f"+t]=t+111;for(t=0;t<10;t++)L["numpad "+t]=t+96;var R=we.names=we.title={};for(t in L)R[L[t]]=t;for(var V in C)L[V]=C[V]},2416:function(It,we,D){var L=D(2762).getUint64;It.exports=function(R){var V=new DataView(R.buffer,R.byteOffset,R.byteLength),F={version:R[0],flags:new Uint8Array(R.subarray(1,4)),references:[],referenceId:V.getUint32(4),timescale:V.getUint32(8)},E=12;0===F.version?(F.earliestPresentationTime=V.getUint32(E),F.firstOffset=V.getUint32(E+4),E+=8):(F.earliestPresentationTime=L(R.subarray(E)),F.firstOffset=L(R.subarray(E+8)),E+=16),E+=2;var y=V.getUint16(E);for(E+=2;y>0;E+=12,y--)F.references.push({referenceType:(128&R[E])>>>7,referencedSize:2147483647&V.getUint32(E),subsegmentDuration:V.getUint32(E+4),startsWithSap:!!(128&R[E+8]),sapType:(112&R[E+8])>>>4,sapDeltaTime:268435455&V.getUint32(E+8)});return F}},9321:function(It){var D,L,C,t,R,V,F;D=function(y){return 9e4*y},L=function(y,be){return y*be},C=function(y){return y/9e4},t=function(y,be){return y/be},R=function(y,be){return D(t(y,be))},V=function(y,be){return L(C(y),be)},F=function(y,be,ue){return C(ue?y:y-be)},It.exports={ONE_SECOND_IN_TS:9e4,secondsToVideoTs:D,secondsToAudioTs:L,videoTsToSeconds:C,audioTsToSeconds:t,audioTsToVideoTs:R,videoTsToAudioTs:V,metadataTsToSeconds:F}},2762:function(It){var we=Math.pow(2,32);It.exports={getUint64:function(C){var R,t=new DataView(C.buffer,C.byteOffset,C.byteLength);return t.getBigUint64?(R=t.getBigUint64(0)) - * Copyright 2014-2016 Benjamin Tan - * Copyright 2011-2013 John-David Dalton - * Available under MIT license - */It=D.nmd(It),function(){"use strict";var C={function:!0,object:!0},t=C[typeof window]&&window||this,R=t,V=C[typeof we]&&we,F=C.object&&It&&!It.nodeType&&It,E=V&&F&&"object"==typeof global&&global;E&&(E.global===E||E.window===E||E.self===E)&&(t=E);var y=Math.pow(2,53)-1,be=/\bOpera/,ue=this,De=Object.prototype,de=De.hasOwnProperty,Le=De.toString;function ce(A){return(A=String(A)).charAt(0).toUpperCase()+A.slice(1)}function ge(A){return A=Ze(A),/^(?:webOS|i(?:OS|P))/.test(A)?A:ce(A)}function ye(A,W){for(var U in A)de.call(A,U)&&W(A[U],U,A)}function te(A){return null==A?ce(A):Le.call(A).slice(8,-1)}function ve(A,W){var U=null!=A?typeof A[W]:"number";return!(/^(?:boolean|number|string|undefined)$/.test(U)||"object"==U&&!A[W])}function Ue(A){return String(A).replace(/([ -])(?!$)/g,"$1?")}function Ke(A,W){var U=null;return function(A,W){var U=-1,Se=A?A.length:0;if("number"==typeof Se&&Se>-1&&Se<=y)for(;++U3?"WebKit":/\bOpera\b/.test(Je)&&(/\bOPR\b/.test(A)?"Blink":"Presto"))||/\b(?:Midori|Nook|Safari)\b/i.test(A)&&!/^(?:Trident|EdgeHTML)$/.test(At)&&"WebKit"||!At&&/\bMSIE\b/i.test(A)&&("Mac OS"==Ct?"Tasman":"Trident")||"WebKit"==At&&/\bPlayStation\b(?! Vita\b)/i.test(Je)&&"NetFront")&&(At=[he]),"IE"==Je&&(he=(/; *(?:XBLWP|ZuneWP)(\d+)/i.exec(A)||0)[1])?(Je+=" Mobile",Ct="Windows Phone "+(/\+$/.test(he)?he:he+".x"),on.unshift("desktop mode")):/\bWPDesktop\b/i.test(A)?(Je="IE Mobile",Ct="Windows Phone 8.x",on.unshift("desktop mode"),je||(je=(/\brv:([\d.]+)/.exec(A)||0)[1])):"IE"!=Je&&"Trident"==At&&(he=/\brv:([\d.]+)/.exec(A))&&(Je&&on.push("identifying as "+Je+(je?" "+je:"")),Je="IE",je=he[1]),xt){if(ve(W,"global"))if(_t&&(hn=(he=_t.lang.System).getProperty("os.arch"),Ct=Ct||he.getProperty("os.name")+" "+he.getProperty("os.version")),Ye&&ve(W,"system")&&(he=[W.system])[0]){Ct||(Ct=he[0].os||null);try{he[1]=W.require("ringo/engine").version,je=he[1].join("."),Je="RingoJS"}catch(mt){he[0].global.system==W.system&&(Je="Narwhal")}}else"object"==typeof W.process&&!W.process.browser&&(he=W.process)?(Je="Node.js",hn=he.arch,Ct=he.platform,je=/[\d.]+/.exec(he.version)[0]):Xt&&(Je="Rhino");else te(he=W.runtime)==St?(Je="Adobe AIR",Ct=he.flash.system.Capabilities.os):te(he=W.phantom)==kt?(Je="PhantomJS",je=(he=he.version||null)&&he.major+"."+he.minor+"."+he.patch):"number"==typeof Ft.documentMode&&(he=/\bTrident\/(\d+)/i.exec(A))&&(je=[je,Ft.documentMode],(he=+he[1]+4)!=je[1]&&(on.push("IE "+je[1]+" mode"),At&&(At[1]=""),je[1]=he),je="IE"==Je?String(je[1].toFixed(1)):je[0]);Ct=Ct&&ge(Ct)}je&&(he=/(?:[ab]|dp|pre|[ab]\d+pre)(?:\d+\+?)?$/i.exec(je)||/(?:alpha|beta)(?: ?\d)?/i.exec(A+";"+(xt&&Se.appMinorVersion))||/\bMinefield\b/i.test(A)&&"a")&&(pt=/b/i.test(he)?"beta":"alpha",je=je.replace(RegExp(he+"\\+?$"),"")+("beta"==pt?Wt:Jt)+(/\d+\+?/.exec(he)||"")),"Fennec"==Je||"Firefox"==Je&&/\b(?:Android|Firefox OS)\b/.test(Ct)?Je="Firefox Mobile":"Maxthon"==Je&&je?je=je.replace(/\.[\d.]+/,".x"):/\bXbox\b/i.test(qt)?(Ct=null,"Xbox 360"==qt&&/\bIEMobile\b/.test(A)&&on.unshift("mobile mode")):!/^(?:Chrome|IE|Opera)$/.test(Je)&&(!Je||qt||/Browser|Mobi/.test(Je))||"Windows CE"!=Ct&&!/Mobi/i.test(A)?"IE"==Je&&xt&&null===W.external?on.unshift("platform preview"):(/\bBlackBerry\b/.test(qt)||/\bBB10\b/.test(A))&&(he=(RegExp(qt.replace(/ +/g," *")+"/([.\\d]+)","i").exec(A)||0)[1]||je)?(Ct=((he=[he,/BB10/.test(A)])[1]?(qt=null,pn="BlackBerry"):"Device Software")+" "+he[0],je=null):this!=ye&&"Wii"!=qt&&(xt&&mn||/Opera/.test(Je)&&/\b(?:MSIE|Firefox)\b/i.test(A)||"Firefox"==Je&&/\bOS X (?:\d+\.){2,}/.test(Ct)||"IE"==Je&&(Ct&&!/^Win/.test(Ct)&&je>5.5||/\bWindows XP\b/.test(Ct)&&je>8||8==je&&!/\bTrident\b/.test(A)))&&!be.test(he=ut.call(ye,A.replace(be,"")+";"))&&he.name&&(he="ing as "+he.name+((he=he.version)?" "+he:""),be.test(Je)?(/\bIE\b/.test(he)&&"Mac OS"==Ct&&(Ct=null),he="identify"+he):(he="mask"+he,Je=Pn?ge(Pn.replace(/([a-z])([A-Z])/g,"$1 $2")):"Opera",/\bIE\b/.test(he)&&(Ct=null),xt||(je=null)),At=["Presto"],on.push(he)):Je+=" Mobile",(he=(/\bAppleWebKit\/([\d.]+\+?)/i.exec(A)||0)[1])&&(he=[parseFloat(he.replace(/\.(\d)$/,".0$1")),he],"Safari"==Je&&"+"==he[1].slice(-1)?(Je="WebKit Nightly",pt="alpha",je=he[1].slice(0,-1)):(je==he[1]||je==(he[2]=(/\bSafari\/([\d.]+\+?)/i.exec(A)||0)[1]))&&(je=null),he[1]=(/\bChrome\/([\d.]+)/i.exec(A)||0)[1],537.36==he[0]&&537.36==he[2]&&parseFloat(he[1])>=28&&"WebKit"==At&&(At=["Blink"]),xt&&(st||he[1])?(At&&(At[1]="like Chrome"),he=he[1]||((he=he[0])<530?1:he<532?2:he<532.05?3:he<533?4:he<534.03?5:he<534.07?6:he<534.1?7:he<534.13?8:he<534.16?9:he<534.24?10:he<534.3?11:he<535.01?12:he<535.02?"13+":he<535.07?15:he<535.11?16:he<535.19?17:he<536.05?18:he<536.1?19:he<537.01?20:he<537.11?"21+":he<537.13?23:he<537.18?24:he<537.24?25:he<537.36?26:"Blink"!=At?"27":"28")):(At&&(At[1]="like Safari"),he=(he=he[0])<400?1:he<500?2:he<526?3:he<533?4:he<534?"4+":he<535?5:he<537?6:he<538?7:he<601?8:"8"),At&&(At[1]+=" "+(he+="number"==typeof he?".x":/[.+]/.test(he)?"":"+")),"Safari"==Je&&(!je||parseInt(je)>45)&&(je=he)),"Opera"==Je&&(he=/\bzbov|zvav$/.exec(Ct))?(Je+=" ",on.unshift("desktop mode"),"zvav"==he?(Je+="Mini",je=null):Je+="Mobile",Ct=Ct.replace(RegExp(" *"+he+"$"),"")):"Safari"==Je&&/\bChrome\b/.exec(At&&At[1])&&(on.unshift("desktop mode"),Je="Chrome Mobile",je=null,/\bOS X\b/.test(Ct)?(pn="Apple",Ct="iOS 4.3+"):Ct=null),je&&0==je.indexOf(he=/[\d.]+$/.exec(Ct))&&A.indexOf("/"+he+"-")>-1&&(Ct=Ze(Ct.replace(he,""))),At&&!/\b(?:Avant|Nook)\b/.test(Je)&&(/Browser|Lunascape|Maxthon/.test(Je)||"Safari"!=Je&&/^iOS/.test(Ct)&&/\bSafari\b/.test(At[1])||/^(?:Adobe|Arora|Breach|Midori|Opera|Phantom|Rekonq|Rock|Sleipnir|Web)/.test(Je)&&At[1])&&(he=At[At.length-1])&&on.push(he),on.length&&(on=["("+on.join("; ")+")"]),pn&&qt&&qt.indexOf(pn)<0&&on.push("on "+pn),qt&&on.push((/^on /.test(on[on.length-1])?"":"on ")+qt),Ct&&(he=/ ([\d.+]+)$/.exec(Ct),rn=he&&"/"==Ct.charAt(Ct.length-he[0].length-1),Ct={architecture:32,family:he&&!rn?Ct.replace(he[0],""):Ct,version:he?he[1]:null,toString:function(){var se=this.version;return this.family+(se&&!rn?" "+se:"")+(64==this.architecture?" 64-bit":"")}}),(he=/\b(?:AMD|IA|Win|WOW|x86_|x)64\b/i.exec(hn))&&!/\bi686\b/i.test(hn)?(Ct&&(Ct.architecture=64,Ct.family=Ct.family.replace(RegExp(" *"+he),"")),Je&&(/\bWOW64\b/i.test(A)||xt&&/\w(?:86|32)$/.test(Se.cpuClass||Se.platform)&&!/\bWin64; x64\b/i.test(A))&&on.unshift("32-bit")):Ct&&/^OS X/.test(Ct.family)&&"Chrome"==Je&&parseFloat(je)>=39&&(Ct.architecture=64),A||(A=null);var Dt={};return Dt.description=A,Dt.layout=At&&At[0],Dt.manufacturer=pn,Dt.name=Je,Dt.prerelease=pt,Dt.product=qt,Dt.ua=A,Dt.version=Je&&je,Dt.os=Ct||{architecture:null,family:null,version:null,toString:function(){return"null"}},Dt.parse=ut,Dt.toString=function(){return this.description||""},Dt.version&&on.unshift(je),Dt.name&&on.unshift(Je),Ct&&Je&&!(Ct==String(Ct).split(" ")[0]&&(Ct==Je.split(" ")[0]||qt))&&on.push(qt?"("+Ct+")":"on "+Ct),on.length&&(Dt.description=on.join(" ")),Dt}();t.platform=Xe,void 0!==(L=function(){return Xe}.call(we,D,we,It))&&(It.exports=L)}.call(this)},3887:function(){ -/*! ***************************************************************************** - Copyright (C) Microsoft. All rights reserved. - Licensed under the Apache License, Version 2.0 (the "License"); you may not use - this file except in compliance with the License. You may obtain a copy of the - License at http://www.apache.org/licenses/LICENSE-2.0 - - THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED - WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, - MERCHANTABLITY OR NON-INFRINGEMENT. - - See the Apache Version 2.0 License for specific language governing permissions - and limitations under the License. - ***************************************************************************** */ -var It,we;we=It||(It={}),function(D){var L="object"==typeof global?global:"object"==typeof self?self:"object"==typeof this?this:Function("return this;")(),C=t(we);function t(R,V){return function(F,E){"function"!=typeof R[F]&&Object.defineProperty(R,F,{configurable:!0,writable:!0,value:E}),V&&V(F,E)}}void 0===L.Reflect?L.Reflect=we:C=t(L.Reflect,C),function(D){var L=Object.prototype.hasOwnProperty,C="function"==typeof Symbol,t=C&&void 0!==Symbol.toPrimitive?Symbol.toPrimitive:"@@toPrimitive",R=C&&void 0!==Symbol.iterator?Symbol.iterator:"@@iterator",V="function"==typeof Object.create,F={__proto__:[]}instanceof Array,E=!V&&!F,y={create:V?function(){return _n(Object.create(null))}:F?function(){return _n({__proto__:null})}:function(){return _n({})},has:E?function(gt,Bt){return L.call(gt,Bt)}:function(gt,Bt){return Bt in gt},get:E?function(gt,Bt){return L.call(gt,Bt)?gt[Bt]:void 0}:function(gt,Bt){return gt[Bt]}},be=Object.getPrototypeOf(Function),ue="object"==typeof process&&process.env&&"true"===process.env.REFLECT_METADATA_USE_MAP_POLYFILL,De=ue||"function"!=typeof Map||"function"!=typeof Map.prototype.entries?pn():Map,de=ue||"function"!=typeof Set||"function"!=typeof Set.prototype.entries?Ct():Set,ce=new(ue||"function"!=typeof WeakMap?Jn():WeakMap);function pe(gt,Bt,Ot,ln){if(ot(Ot)){if(!he(gt))throw new TypeError;if(!on(Bt))throw new TypeError;return Xe(gt,Bt)}if(!he(gt))throw new TypeError;if(!Xt(Bt))throw new TypeError;if(!Xt(ln)&&!ot(ln)&&!kt(ln))throw new TypeError;return kt(ln)&&(ln=void 0),A(gt,Bt,Ot=Pn(Ot),ln)}function Ne(gt,Bt){function Ot(ln,vn){if(!Xt(ln))throw new TypeError;if(!ot(vn)&&!pt(vn))throw new TypeError;st(gt,Bt,ln,vn)}return Ot}function ge(gt,Bt,Ot,ln){if(!Xt(Ot))throw new TypeError;return ot(ln)||(ln=Pn(ln)),st(gt,Bt,Ot,ln)}function ye(gt,Bt,Ot){if(!Xt(Bt))throw new TypeError;return ot(Ot)||(Ot=Pn(Ot)),U(gt,Bt,Ot)}function te(gt,Bt,Ot){if(!Xt(Bt))throw new TypeError;return ot(Ot)||(Ot=Pn(Ot)),Se(gt,Bt,Ot)}function ve(gt,Bt,Ot){if(!Xt(Bt))throw new TypeError;return ot(Ot)||(Ot=Pn(Ot)),ze(gt,Bt,Ot)}function Ue(gt,Bt,Ot){if(!Xt(Bt))throw new TypeError;return ot(Ot)||(Ot=Pn(Ot)),Ye(gt,Bt,Ot)}function Ke(gt,Bt){if(!Xt(gt))throw new TypeError;return ot(Bt)||(Bt=Pn(Bt)),at(gt,Bt)}function Ze(gt,Bt){if(!Xt(gt))throw new TypeError;return ot(Bt)||(Bt=Pn(Bt)),St(gt,Bt)}function ut(gt,Bt,Ot){if(!Xt(Bt))throw new TypeError;ot(Ot)||(Ot=Pn(Ot));var ln=W(Bt,Ot,!1);if(ot(ln)||!ln.delete(gt))return!1;if(ln.size>0)return!0;var vn=ce.get(Bt);return vn.delete(Ot),vn.size>0||ce.delete(Bt),!0}function Xe(gt,Bt){for(var Ot=gt.length-1;Ot>=0;--Ot){var vn=(0,gt[Ot])(Bt);if(!ot(vn)&&!kt(vn)){if(!on(vn))throw new TypeError;Bt=vn}}return Bt}function A(gt,Bt,Ot,ln){for(var vn=gt.length-1;vn>=0;--vn){var mt=(0,gt[vn])(Bt,Ot,ln);if(!ot(mt)&&!kt(mt)){if(!Xt(mt))throw new TypeError;ln=mt}}return ln}function W(gt,Bt,Ot){var ln=ce.get(gt);if(ot(ln)){if(!Ot)return;ln=new De,ce.set(gt,ln)}var vn=ln.get(Bt);if(ot(vn)){if(!Ot)return;vn=new De,ln.set(Bt,vn)}return vn}function U(gt,Bt,Ot){if(Se(gt,Bt,Ot))return!0;var vn=qt(Bt);return!kt(vn)&&U(gt,vn,Ot)}function Se(gt,Bt,Ot){var ln=W(Bt,Ot,!1);return!ot(ln)&&Ft(ln.has(gt))}function ze(gt,Bt,Ot){if(Se(gt,Bt,Ot))return Ye(gt,Bt,Ot);var vn=qt(Bt);return kt(vn)?void 0:ze(gt,vn,Ot)}function Ye(gt,Bt,Ot){var ln=W(Bt,Ot,!1);if(!ot(ln))return ln.get(gt)}function st(gt,Bt,Ot,ln){W(Ot,ln,!0).set(gt,Bt)}function at(gt,Bt){var Ot=St(gt,Bt),ln=qt(gt);if(null===ln)return Ot;var vn=at(ln,Bt);if(vn.length<=0)return Ot;if(Ot.length<=0)return vn;for(var Dt=new de,mt=[],se=0,me=Ot;se=0&&se=this._keys.length?(this._index=-1,this._keys=Bt,this._values=Bt):this._index++,{value:me,done:!1}}return{value:void 0,done:!0}},mt.prototype.throw=function(se){throw this._index>=0&&(this._index=-1,this._keys=Bt,this._values=Bt),se},mt.prototype.return=function(se){return this._index>=0&&(this._index=-1,this._keys=Bt,this._values=Bt),{value:se,done:!0}},mt}();return function(){function mt(){this._keys=[],this._values=[],this._cacheKey=gt,this._cacheIndex=-2}return Object.defineProperty(mt.prototype,"size",{get:function(){return this._keys.length},enumerable:!0,configurable:!0}),mt.prototype.has=function(se){return this._find(se,!1)>=0},mt.prototype.get=function(se){var me=this._find(se,!1);return me>=0?this._values[me]:void 0},mt.prototype.set=function(se,me){var $=this._find(se,!0);return this._values[$]=me,this},mt.prototype.delete=function(se){var me=this._find(se,!1);if(me>=0){for(var $=this._keys.length,xe=me+1;xe<$;xe++)this._keys[xe-1]=this._keys[xe],this._values[xe-1]=this._values[xe];return this._keys.length--,this._values.length--,se===this._cacheKey&&(this._cacheKey=gt,this._cacheIndex=-2),!0}return!1},mt.prototype.clear=function(){this._keys.length=0,this._values.length=0,this._cacheKey=gt,this._cacheIndex=-2},mt.prototype.keys=function(){return new Ot(this._keys,this._values,ln)},mt.prototype.values=function(){return new Ot(this._keys,this._values,vn)},mt.prototype.entries=function(){return new Ot(this._keys,this._values,Dt)},mt.prototype["@@iterator"]=function(){return this.entries()},mt.prototype[R]=function(){return this.entries()},mt.prototype._find=function(se,me){return this._cacheKey!==se&&(this._cacheIndex=this._keys.indexOf(this._cacheKey=se)),this._cacheIndex<0&&me&&(this._cacheIndex=this._keys.length,this._keys.push(se),this._values.push(void 0)),this._cacheIndex},mt}();function ln(mt,se){return mt}function vn(mt,se){return se}function Dt(mt,se){return[mt,se]}}function Ct(){return function(){function gt(){this._map=new De}return Object.defineProperty(gt.prototype,"size",{get:function(){return this._map.size},enumerable:!0,configurable:!0}),gt.prototype.has=function(Bt){return this._map.has(Bt)},gt.prototype.add=function(Bt){return this._map.set(Bt,Bt),this},gt.prototype.delete=function(Bt){return this._map.delete(Bt)},gt.prototype.clear=function(){this._map.clear()},gt.prototype.keys=function(){return this._map.keys()},gt.prototype.values=function(){return this._map.values()},gt.prototype.entries=function(){return this._map.entries()},gt.prototype["@@iterator"]=function(){return this.keys()},gt.prototype[R]=function(){return this.keys()},gt}()}function Jn(){var gt=16,Bt=y.create(),Ot=ln();return function(){function me(){this._key=ln()}return me.prototype.has=function($){var xe=vn($,!1);return void 0!==xe&&y.has(xe,this._key)},me.prototype.get=function($){var xe=vn($,!1);return void 0!==xe?y.get(xe,this._key):void 0},me.prototype.set=function($,xe){return vn($,!0)[this._key]=xe,this},me.prototype.delete=function($){var xe=vn($,!1);return void 0!==xe&&delete xe[this._key]},me.prototype.clear=function(){this._key=ln()},me}();function ln(){var me;do{me="@@WeakMap@@"+se()}while(y.has(Bt,me));return Bt[me]=!0,me}function vn(me,$){if(!L.call(me,Ot)){if(!$)return;Object.defineProperty(me,Ot,{value:y.create()})}return me[Ot]}function Dt(me,$){for(var xe=0;xe<$;++xe)me[xe]=255*Math.random()|0;return me}function mt(me){return"function"==typeof Uint8Array?"undefined"!=typeof crypto?crypto.getRandomValues(new Uint8Array(me)):"undefined"!=typeof msCrypto?msCrypto.getRandomValues(new Uint8Array(me)):Dt(new Uint8Array(me),me):Dt(new Array(me),me)}function se(){var me=mt(gt);me[6]=79&me[6]|64,me[8]=191&me[8]|128;for(var $="",xe=0;xe1?Ne.next(Array.prototype.slice.call(arguments)):Ne.next(ye)},Ne,ce)})}function y(de,Le,ce,pe,Ne){var ge;if(function(de){return de&&"function"==typeof de.addEventListener&&"function"==typeof de.removeEventListener}(de)){var ye=de;de.addEventListener(Le,ce,Ne),ge=function(){return ye.removeEventListener(Le,ce,Ne)}}else if(function(de){return de&&"function"==typeof de.on&&"function"==typeof de.off}(de)){var te=de;de.on(Le,ce),ge=function(){return te.off(Le,ce)}}else if(function(de){return de&&"function"==typeof de.addListener&&"function"==typeof de.removeListener}(de)){var ve=de;de.addListener(Le,ce),ge=function(){return ve.removeListener(Le,ce)}}else{if(!de||!de.length)throw new TypeError("Invalid event target");for(var Ue=0,Ke=de.length;Ue0&&void 0!==arguments[0]?arguments[0]:Number.POSITIVE_INFINITY;return(0,t.zg)(R.y,y)}var F=D(3446);function E(){for(var y=Number.POSITIVE_INFINITY,be=null,ue=arguments.length,De=new Array(ue),de=0;de1&&"number"==typeof De[De.length-1]&&(y=De.pop())):"number"==typeof Le&&(y=De.pop()),null===be&&1===De.length&&De[0]instanceof L.y?De[0]:V(y)((0,F.n)(De,be))}},1134:function(It,we,D){"use strict";D.d(we,{of:function(){return R}});var L=D(6770),C=D(3446),t=D(4049);function R(){for(var V=arguments.length,F=new Array(V),E=0;E2&&void 0!==arguments[2]?arguments[2]:Number.POSITIVE_INFINITY;return"function"==typeof Le?function(pe){return pe.pipe(y(function(Ne,ge){return(0,F.D)(de(Ne,ge)).pipe((0,V.U)(function(ye,te){return Le(Ne,ye,ge,te)}))},ce))}:("number"==typeof Le&&(ce=Le),function(pe){return pe.lift(new be(de,ce))})}var be=function(){function de(Le){var ce=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.POSITIVE_INFINITY;(0,t.Z)(this,de),this.project=Le,this.concurrent=ce}return(0,R.Z)(de,[{key:"call",value:function(ce,pe){return pe.subscribe(new ue(ce,this.project,this.concurrent))}}]),de}(),ue=function(de){(0,L.Z)(ce,de);var Le=(0,C.Z)(ce);function ce(pe,Ne){var ge,ye=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Number.POSITIVE_INFINITY;return(0,t.Z)(this,ce),(ge=Le.call(this,pe)).project=Ne,ge.concurrent=ye,ge.hasCompleted=!1,ge.buffer=[],ge.active=0,ge.index=0,ge}return(0,R.Z)(ce,[{key:"_next",value:function(Ne){this.active0?this._next(Ne.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()}}]),ce}(E.Ds)},4049:function(It,we,D){"use strict";D.d(we,{r:function(){return t}});var L=D(9544),C=D(1318);function t(R,V){return new L.y(function(F){var E=new C.w,y=0;return E.add(V.schedule(function(){y!==R.length?(F.next(R[y++]),F.closed||E.add(this.schedule())):F.complete()})),E})}},2611:function(It,we,D){"use strict";D.d(we,{hZ:function(){return C}});var C="function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"},6165:function(It,we,D){"use strict";D.d(we,{L:function(){return L}});var L="function"==typeof Symbol&&Symbol.observable||"@@observable"},9975:function(It,we,D){"use strict";D.d(we,{b:function(){return L}});var L="function"==typeof Symbol?Symbol("rxSubscriber"):"@@rxSubscriber_"+Math.random()},6874:function(It,we,D){"use strict";D.d(we,{N:function(){return C}});var C=function(){function t(){return Error.call(this),this.message="object unsubscribed",this.name="ObjectUnsubscribedError",this}return t.prototype=Object.create(Error.prototype),t}()},6901:function(It,we,D){"use strict";function L(C){setTimeout(function(){throw C},0)}D.d(we,{z:function(){return L}})},7206:function(It,we,D){"use strict";function L(C){return C}D.d(we,{y:function(){return L}})},9861:function(It,we,D){"use strict";D.d(we,{k:function(){return L}});var L=Array.isArray||function(C){return C&&"number"==typeof C.length}},984:function(It,we,D){"use strict";D.d(we,{z:function(){return L}});var L=function(t){return t&&"number"==typeof t.length&&"function"!=typeof t}},18:function(It,we,D){"use strict";function L(C){return"function"==typeof C}D.d(we,{m:function(){return L}})},1533:function(It,we,D){"use strict";function L(C){return null!==C&&"object"==typeof C}D.d(we,{K:function(){return L}})},5751:function(It,we,D){"use strict";function L(C){return!!C&&"function"!=typeof C.subscribe&&"function"==typeof C.then}D.d(we,{t:function(){return L}})},6770:function(It,we,D){"use strict";function L(C){return C&&"function"==typeof C.schedule}D.d(we,{K:function(){return L}})},7888:function(It,we,D){"use strict";D.d(we,{s:function(){return De}});var L=D(76),C=D(6901),R=D(2611),F=D(6165),y=D(984),be=D(5751),ue=D(1533),De=function(Le){if(Le&&"function"==typeof Le[F.L])return function(Le){return function(ce){var pe=Le[F.L]();if("function"!=typeof pe.subscribe)throw new TypeError("Provided object does not correctly implement Symbol.observable");return pe.subscribe(ce)}}(Le);if((0,y.z)(Le))return(0,L.V)(Le);if((0,be.t)(Le))return function(Le){return function(ce){return Le.then(function(pe){ce.closed||(ce.next(pe),ce.complete())},function(pe){return ce.error(pe)}).then(null,C.z),ce}}(Le);if(Le&&"function"==typeof Le[R.hZ])return function(Le){return function(ce){for(var pe=Le[R.hZ]();;){var Ne=void 0;try{Ne=pe.next()}catch(ge){return ce.error(ge),ce}if(Ne.done){ce.complete();break}if(ce.next(Ne.value),ce.closed)break}return"function"==typeof pe.return&&ce.add(function(){pe.return&&pe.return()}),ce}}(Le);var ce=(0,ue.K)(Le)?"an invalid object":"'".concat(Le,"'"),pe="You provided ".concat(ce," where a stream was expected.")+" You can provide an Observable, Promise, Array, or Iterable.";throw new TypeError(pe)}},76:function(It,we,D){"use strict";D.d(we,{V:function(){return L}});var L=function(t){return function(R){for(var V=0,F=t.length;V-1},o.trigger=function(s){var n=this.listeners[s];if(n)if(2===arguments.length)for(var a=n.length,c=0;c-1;a=this.buffer.indexOf("\n"))this.trigger("data",this.buffer.substring(0,a)),this.buffer=this.buffer.substring(a+1)},o}(Xe),Se=String.fromCharCode(9),ze=function(o){var l=/([0-9.]*)?@?([0-9.]*)?/.exec(o||""),s={};return l[1]&&(s.length=parseInt(l[1],10)),l[2]&&(s.offset=parseInt(l[2],10)),s},st=function(o){for(var a,l=o.split(new RegExp('(?:^|,)((?:[^=]*)=(?:"[^"]*"|[^,]*))')),s={},n=l.length;n--;)""!==l[n]&&((a=/([^=]*)=(.*)/.exec(l[n]).slice(1))[0]=a[0].replace(/^\s+|\s+$/g,""),a[1]=a[1].replace(/^\s+|\s+$/g,""),a[1]=a[1].replace(/^['"](.*)['"]$/g,"$1"),s[a[0]]=a[1]);return s},at=function(p){function o(){var s;return(s=p.call(this)||this).customParsers=[],s.tagMappers=[],s}ue(o,p);var l=o.prototype;return l.push=function(n){var c,h,a=this;if(0!==(n=n.trim()).length){if("#"!==n[0])return void this.trigger("data",{type:"uri",uri:n});this.tagMappers.reduce(function(M,P){var Q=P(n);return Q===n?M:M.concat([Q])},[n]).forEach(function(M){for(var P=0;P0&&(c.duration=Ae.duration),0===Ae.duration&&(c.duration=.01,this.trigger("info",{message:"updating zero segment duration to a small value"})),this.manifest.segments=a},key:function(){if(Ae.attributes)if("NONE"!==Ae.attributes.METHOD)if(Ae.attributes.URI){if("com.apple.streamingkeydelivery"===Ae.attributes.KEYFORMAT)return this.manifest.contentProtection=this.manifest.contentProtection||{},void(this.manifest.contentProtection["com.apple.fps.1_0"]={attributes:Ae.attributes});if("urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed"===Ae.attributes.KEYFORMAT){return-1===["SAMPLE-AES","SAMPLE-AES-CTR","SAMPLE-AES-CENC"].indexOf(Ae.attributes.METHOD)?void this.trigger("warn",{message:"invalid key method provided for Widevine"}):("SAMPLE-AES-CENC"===Ae.attributes.METHOD&&this.trigger("warn",{message:"SAMPLE-AES-CENC is deprecated, please use SAMPLE-AES-CTR instead"}),"data:text/plain;base64,"!==Ae.attributes.URI.substring(0,23)?void this.trigger("warn",{message:"invalid key URI provided for Widevine"}):Ae.attributes.KEYID&&"0x"===Ae.attributes.KEYID.substring(0,2)?(this.manifest.contentProtection=this.manifest.contentProtection||{},void(this.manifest.contentProtection["com.widevine.alpha"]={attributes:{schemeIdUri:Ae.attributes.KEYFORMAT,keyId:Ae.attributes.KEYID.substring(2)},pssh:W(Ae.attributes.URI.split(",")[1])})):void this.trigger("warn",{message:"invalid key ID provided for Widevine"}))}Ae.attributes.METHOD||this.trigger("warn",{message:"defaulting key method to AES-128"}),_={method:Ae.attributes.METHOD||"AES-128",uri:Ae.attributes.URI},void 0!==Ae.attributes.IV&&(_.iv=Ae.attributes.IV)}else this.trigger("warn",{message:"ignoring key declaration without URI"});else _=null;else this.trigger("warn",{message:"ignoring key declaration without attribute list"})},"media-sequence":function(){isFinite(Ae.number)?this.manifest.mediaSequence=Ae.number:this.trigger("warn",{message:"ignoring invalid media sequence: "+Ae.number})},"discontinuity-sequence":function(){isFinite(Ae.number)?(this.manifest.discontinuitySequence=Ae.number,Te=Ae.number):this.trigger("warn",{message:"ignoring invalid discontinuity sequence: "+Ae.number})},"playlist-type":function(){/VOD|EVENT/.test(Ae.playlistType)?this.manifest.playlistType=Ae.playlistType:this.trigger("warn",{message:"ignoring unknown playlist type: "+Ae.playlist})},map:function(){h={},Ae.uri&&(h.uri=Ae.uri),Ae.byterange&&(h.byterange=Ae.byterange),_&&(h.key=_)},"stream-inf":function(){this.manifest.playlists=a,this.manifest.mediaGroups=this.manifest.mediaGroups||Q,Ae.attributes?(c.attributes||(c.attributes={}),V(c.attributes,Ae.attributes)):this.trigger("warn",{message:"ignoring empty stream-inf attributes"})},media:function(){if(this.manifest.mediaGroups=this.manifest.mediaGroups||Q,Ae.attributes&&Ae.attributes.TYPE&&Ae.attributes["GROUP-ID"]&&Ae.attributes.NAME){var en=this.manifest.mediaGroups[Ae.attributes.TYPE];en[Ae.attributes["GROUP-ID"]]=en[Ae.attributes["GROUP-ID"]]||{},Rt=en[Ae.attributes["GROUP-ID"]],(Zt={default:/yes/i.test(Ae.attributes.DEFAULT)}).default?Zt.autoselect=!0:Zt.autoselect=/yes/i.test(Ae.attributes.AUTOSELECT),Ae.attributes.LANGUAGE&&(Zt.language=Ae.attributes.LANGUAGE),Ae.attributes.URI&&(Zt.uri=Ae.attributes.URI),Ae.attributes["INSTREAM-ID"]&&(Zt.instreamId=Ae.attributes["INSTREAM-ID"]),Ae.attributes.CHARACTERISTICS&&(Zt.characteristics=Ae.attributes.CHARACTERISTICS),Ae.attributes.FORCED&&(Zt.forced=/yes/i.test(Ae.attributes.FORCED)),Rt[Ae.attributes.NAME]=Zt}else this.trigger("warn",{message:"ignoring incomplete or missing media group"})},discontinuity:function(){Te+=1,c.discontinuity=!0,this.manifest.discontinuityStarts.push(a.length)},"program-date-time":function(){void 0===this.manifest.dateTimeString&&(this.manifest.dateTimeString=Ae.dateTimeString,this.manifest.dateTimeObject=Ae.dateTimeObject),c.dateTimeString=Ae.dateTimeString,c.dateTimeObject=Ae.dateTimeObject},targetduration:function(){!isFinite(Ae.duration)||Ae.duration<0?this.trigger("warn",{message:"ignoring invalid target duration: "+Ae.duration}):(this.manifest.targetDuration=Ae.duration,ot.call(this,this.manifest))},start:function(){Ae.attributes&&!isNaN(Ae.attributes["TIME-OFFSET"])?this.manifest.start={timeOffset:Ae.attributes["TIME-OFFSET"],precise:Ae.attributes.PRECISE}:this.trigger("warn",{message:"ignoring start declaration without appropriate attribute list"})},"cue-out":function(){c.cueOut=Ae.data},"cue-out-cont":function(){c.cueOutCont=Ae.data},"cue-in":function(){c.cueIn=Ae.data},skip:function(){this.manifest.skip=ft(Ae.attributes),this.warnOnMissingAttributes_("#EXT-X-SKIP",Ae.attributes,["SKIPPED-SEGMENTS"])},part:function(){var en=this;M=!0;var wn=this.manifest.segments.length,Dn=ft(Ae.attributes);c.parts=c.parts||[],c.parts.push(Dn),Dn.byterange&&(Dn.byterange.hasOwnProperty("offset")||(Dn.byterange.offset=Oe),Oe=Dn.byterange.offset+Dn.byterange.length);var cn=c.parts.length-1;this.warnOnMissingAttributes_("#EXT-X-PART #"+cn+" for segment #"+wn,Ae.attributes,["URI","DURATION"]),this.manifest.renditionReports&&this.manifest.renditionReports.forEach(function(On,xn){On.hasOwnProperty("lastPart")||en.trigger("warn",{message:"#EXT-X-RENDITION-REPORT #"+xn+" lacks required attribute(s): LAST-PART"})})},"server-control":function(){var en=this.manifest.serverControl=ft(Ae.attributes);en.hasOwnProperty("canBlockReload")||(en.canBlockReload=!1,this.trigger("info",{message:"#EXT-X-SERVER-CONTROL defaulting CAN-BLOCK-RELOAD to false"})),ot.call(this,this.manifest),en.canSkipDateranges&&!en.hasOwnProperty("canSkipUntil")&&this.trigger("warn",{message:"#EXT-X-SERVER-CONTROL lacks required attribute CAN-SKIP-UNTIL which is required when CAN-SKIP-DATERANGES is set"})},"preload-hint":function(){var en=this.manifest.segments.length,wn=ft(Ae.attributes),Dn=wn.type&&"PART"===wn.type;c.preloadHints=c.preloadHints||[],c.preloadHints.push(wn),wn.byterange&&(wn.byterange.hasOwnProperty("offset")||(wn.byterange.offset=Dn?Oe:0,Dn&&(Oe=wn.byterange.offset+wn.byterange.length)));var cn=c.preloadHints.length-1;if(this.warnOnMissingAttributes_("#EXT-X-PRELOAD-HINT #"+cn+" for segment #"+en,Ae.attributes,["TYPE","URI"]),wn.type)for(var On=0;Ons.timeline?1:-1})},Mr=function(o){var l=[];return function(o,l,s){l.forEach(function(n){for(var a in o.mediaGroups[n])for(var c in o.mediaGroups[n][a]){var h=o.mediaGroups[n][a][c];s(h,n,a,c)}})}(o,Rn,function(s,n,a,c){l=l.concat(s.playlists||[])}),l},Gi=function(o){var l=o.playlist,s=o.mediaSequence;l.mediaSequence=s,l.segments.forEach(function(n,a){n.number=l.mediaSequence+a})},Dr=function(o){var l=o.oldManifest,s=o.newManifest,n=l.playlists.concat(Mr(l)),a=s.playlists.concat(Mr(s));return s.timelineStarts=Fn([l.timelineStarts,s.timelineStarts]),function(o){var l=o.oldPlaylists,s=o.newPlaylists,n=o.timelineStarts;s.forEach(function(a){a.discontinuitySequence=me(n,function(P){return P.timeline===a.timeline});var c=function(o,l){for(var s=0;sc.timeline||c.segments.length&&a.timeline>c.segments[c.segments.length-1].timeline)&&a.discontinuitySequence--);c.segments[_].discontinuity&&!h.discontinuity&&(h.discontinuity=!0,a.discontinuityStarts.unshift(0),a.discontinuitySequence--),Gi({playlist:a,mediaSequence:c.segments[_].number})}})}({oldPlaylists:n,newPlaylists:a,timelineStarts:s.timelineStarts}),s},Or=function(o){return o&&o.uri+"-"+function(o){var l;return l="bigint"==typeof o.offset||"bigint"==typeof o.length?C().BigInt(o.offset)+C().BigInt(o.length)-C().BigInt(1):o.offset+o.length-1,o.offset+"-"+l}(o.byterange)},Lr=function(o){return ln(o.reduce(function(s,n){var a=n.attributes.id+(n.attributes.lang||"");if(s[a]){var c;if(n.segments)n.segments[0]&&(n.segments[0].discontinuity=!0),(c=s[a].segments).push.apply(c,n.segments);n.attributes.contentProtection&&(s[a].attributes.contentProtection=n.attributes.contentProtection)}else s[a]=n,s[a].attributes.timelineStarts=[];return s[a].attributes.timelineStarts.push({start:n.attributes.periodStart,timeline:n.attributes.periodStart}),s},{})).map(function(s){return s.discontinuityStarts=function(o,l){return o.reduce(function(s,n,a){return n[l]&&s.push(a),s},[])}(s.segments||[],"discontinuity"),s})},vi=function(o,l){var s=Or(o.sidx),n=s&&l[s]&&l[s].sidx;return n&&Xn(o,n,o.sidx.resolvedUri),o},oa=function(o,l){if(void 0===l&&(l={}),!Object.keys(l).length)return o;for(var s in o)o[s]=vi(o[s],l);return o},Qt=function(o){var l,s=o.attributes,n=o.segments,a=o.sidx,c=o.discontinuityStarts,h={attributes:(l={NAME:s.id,AUDIO:"audio",SUBTITLES:"subs",RESOLUTION:{width:s.width,height:s.height},CODECS:s.codecs,BANDWIDTH:s.bandwidth},l["PROGRAM-ID"]=1,l),uri:"",endList:"static"===s.type,timeline:s.periodStart,resolvedUri:"",targetDuration:s.duration,discontinuityStarts:c,timelineStarts:s.timelineStarts,segments:n};return s.contentProtection&&(h.contentProtection=s.contentProtection),a&&(h.sidx=a),h},yn=function(o){var l=o.attributes;return"video/mp4"===l.mimeType||"video/webm"===l.mimeType||"video"===l.contentType},sr=function(o){var l=o.attributes;return"audio/mp4"===l.mimeType||"audio/webm"===l.mimeType||"audio"===l.contentType},tr=function(o){var l=o.attributes;return"text/vtt"===l.mimeType||"text"===l.contentType},Vr=function(o){return o?Object.keys(o).reduce(function(l,s){var n=o[s];return l.concat(n.playlists)},[]):[]},Kn=function(o){var l,s=o.dashPlaylists,n=o.locations,a=o.sidxMapping,c=void 0===a?{}:a,h=o.previousManifest;if(!s.length)return{};var _=s[0].attributes,M=_.sourceDuration,P=_.type,Q=_.suggestedPresentationDelay,G=_.minimumUpdatePeriod,Te=Lr(s.filter(yn)).map(Qt),qe=Lr(s.filter(sr)),Oe=Lr(s.filter(tr)),Ae=s.map(function(Dn){return Dn.attributes.captionServices}).filter(Boolean),Rt={allowCache:!0,discontinuityStarts:[],segments:[],endList:!0,mediaGroups:(l={AUDIO:{},VIDEO:{}},l["CLOSED-CAPTIONS"]={},l.SUBTITLES={},l),uri:"",duration:M,playlists:oa(Te,c)};G>=0&&(Rt.minimumUpdatePeriod=1e3*G),n&&(Rt.locations=n),"dynamic"===P&&(Rt.suggestedPresentationDelay=Q);var Zt=0===Rt.playlists.length,Kt=qe.length?function(o,l,s){void 0===l&&(l={}),void 0===s&&(s=!1);var n,a=o.reduce(function(h,_){var M=_.attributes.role&&_.attributes.role.value||"",P=_.attributes.lang||"",Q=_.attributes.label||"main";if(P&&!_.attributes.label){var G=M?" ("+M+")":"";Q=""+_.attributes.lang+G}h[Q]||(h[Q]={language:P,autoselect:!0,default:"main"===M,playlists:[],uri:""});var Te=vi(function(o,l){var s,n=o.attributes,a=o.segments,c=o.sidx,h=o.mediaSequence,_=o.discontinuitySequence,M=o.discontinuityStarts,P={attributes:(s={NAME:n.id,BANDWIDTH:n.bandwidth,CODECS:n.codecs},s["PROGRAM-ID"]=1,s),uri:"",endList:"static"===n.type,timeline:n.periodStart,resolvedUri:"",targetDuration:n.duration,discontinuitySequence:_,discontinuityStarts:M,timelineStarts:n.timelineStarts,mediaSequence:h,segments:a};return n.contentProtection&&(P.contentProtection=n.contentProtection),c&&(P.sidx=c),l&&(P.attributes.AUDIO="audio",P.attributes.SUBTITLES="subs"),P}(_,s),l);return h[Q].playlists.push(Te),void 0===n&&"main"===M&&((n=_).default=!0),h},{});return n||(a[Object.keys(a)[0]].default=!0),a}(qe,c,Zt):null,nn=Oe.length?function(o,l){return void 0===l&&(l={}),o.reduce(function(s,n){var a=n.attributes.lang||"text";return s[a]||(s[a]={language:a,default:!1,autoselect:!1,playlists:[],uri:""}),s[a].playlists.push(vi(function(o){var l,s=o.attributes,n=o.segments,a=o.mediaSequence,c=o.discontinuityStarts,h=o.discontinuitySequence;void 0===n&&(n=[{uri:s.baseUrl,timeline:s.periodStart,resolvedUri:s.baseUrl||"",duration:s.sourceDuration,number:0}],s.duration=s.sourceDuration);var _=((l={NAME:s.id,BANDWIDTH:s.bandwidth})["PROGRAM-ID"]=1,l);return s.codecs&&(_.CODECS=s.codecs),{attributes:_,uri:"",endList:"static"===s.type,timeline:s.periodStart,resolvedUri:s.baseUrl||"",targetDuration:s.duration,timelineStarts:s.timelineStarts,discontinuityStarts:c,discontinuitySequence:h,mediaSequence:a,segments:n}}(n),l)),s},{})}(Oe,c):null,en=Te.concat(Vr(Kt),Vr(nn)),wn=en.map(function(Dn){return Dn.timelineStarts});return Rt.timelineStarts=Fn(wn),function(o,l){o.forEach(function(s){s.mediaSequence=0,s.discontinuitySequence=me(l,function(n){return n.timeline===s.timeline}),s.segments&&s.segments.forEach(function(n,a){n.number=a})})}(en,Rt.timelineStarts),Kt&&(Rt.mediaGroups.AUDIO.audio=Kt),nn&&(Rt.mediaGroups.SUBTITLES.subs=nn),Ae.length&&(Rt.mediaGroups["CLOSED-CAPTIONS"].cc=function(o){return o.reduce(function(l,s){return s&&s.forEach(function(n){var a=n.channel,c=n.language;l[c]={autoselect:!1,default:!1,instreamId:a,language:c},n.hasOwnProperty("aspectRatio")&&(l[c].aspectRatio=n.aspectRatio),n.hasOwnProperty("easyReader")&&(l[c].easyReader=n.easyReader),n.hasOwnProperty("3D")&&(l[c]["3D"]=n["3D"])}),l},{})}(Ae)),h?Dr({oldManifest:h,newManifest:Rt}):Rt},_i=function(o,l,s){var n=o.NOW,a=o.clientOffset,c=o.availabilityStartTime,h=o.timescale,_=void 0===h?1:h,M=o.periodStart,P=void 0===M?0:M,Q=o.minimumUpdatePeriod,Ae=(n+a)/1e3+(void 0===Q?0:Q)-(c+P);return Math.ceil((Ae*_-l)/s)},$n=function(o,l){for(var s=o.type,n=o.minimumUpdatePeriod,a=void 0===n?0:n,c=o.media,h=void 0===c?"":c,_=o.sourceDuration,M=o.timescale,P=void 0===M?1:M,Q=o.startNumber,G=void 0===Q?1:Q,Te=o.periodStart,qe=[],Oe=-1,Ae=0;AeOe&&(Oe=nn);var en=void 0;if(Kt<0){var wn=Ae+1;en=wn===l.length?"dynamic"===s&&a>0&&h.indexOf("$Number$")>0?_i(o,Oe,Zt):(_*P-Oe)/Zt:(l[wn].t-Oe)/Zt}else en=Kt+1;for(var Dn=G+qe.length+en,cn=G+qe.length;cn=a)?c:""+new Array(a-c.length+1).join("0")+c}}(l))},ya=function(o,l){var s={RepresentationID:o.id,Bandwidth:o.bandwidth||0},n=o.initialization,a=void 0===n?{sourceURL:"",range:""}:n,c=fe({baseUrl:o.baseUrl,source:Yn(a.sourceURL,s),range:a.range}),h=function(o,l){return o.duration||l?o.duration?un(o):$n(o,l):[{number:o.startNumber||1,duration:o.sourceDuration,time:0,timeline:o.periodStart}]}(o,l);return h.map(function(_){s.Number=_.number,s.Time=_.time;var M=Yn(o.media||"",s),P=o.timescale||1,Q=o.presentationTimeOffset||0,G=o.periodStart+(_.time-Q)/P;return{uri:M,timeline:_.timeline,duration:_.duration,resolvedUri:ut(o.baseUrl||"",M),map:c,number:_.number,presentationTime:G}})},Ci=function(o,l){var s=o.duration,n=o.segmentUrls,a=void 0===n?[]:n,c=o.periodStart;if(!s&&!l||s&&l)throw new Error(xe_SEGMENT_TIME_UNSPECIFIED);var _,h=a.map(function(P){return function(o,l){var s=o.baseUrl,n=o.initialization,a=void 0===n?{}:n,c=fe({baseUrl:s,source:a.sourceURL,range:a.range}),h=fe({baseUrl:s,source:l.media,range:l.mediaRange});return h.map=c,h}(o,P)});return s&&(_=un(o)),l&&(_=$n(o,l)),_.map(function(P,Q){if(h[Q]){var G=h[Q],Te=o.timescale||1,qe=o.presentationTimeOffset||0;return G.timeline=P.timeline,G.duration=P.duration,G.number=P.number,G.presentationTime=c+(P.time-qe)/Te,G}}).filter(function(P){return P})},Ri=function(o){var n,a,l=o.attributes,s=o.segmentInfo;s.template?(a=ya,n=Ot(l,s.template)):s.base?(a=bn,n=Ot(l,s.base)):s.list&&(a=Ci,n=Ot(l,s.list));var c={attributes:l};if(!a)return c;var h=a(n,s.segmentTimeline);if(n.duration){var _=n,M=_.duration,P=_.timescale,Q=void 0===P?1:P;n.duration=M/Q}else h.length?n.duration=h.reduce(function(G,Te){return Math.max(G,Math.ceil(Te.duration))},0):n.duration=0;return c.attributes=n,c.segments=h,s.base&&n.indexRange&&(c.sidx=h[0],c.segments=[]),c},Er=function(o,l){return mt(o.childNodes).filter(function(s){return s.tagName===l})},sa=function(o){return o.textContent.trim()},Nt=function(o){var _=/P(?:(\d*)Y)?(?:(\d*)M)?(?:(\d*)D)?(?:T(?:(\d*)H)?(?:(\d*)M)?(?:([\d.]*)S)?)?/.exec(o);if(!_)return 0;var M=_.slice(1),P=M[0],Q=M[1],G=M[2],Te=M[3],qe=M[4],Oe=M[5];return 31536e3*parseFloat(P||0)+2592e3*parseFloat(Q||0)+86400*parseFloat(G||0)+3600*parseFloat(Te||0)+60*parseFloat(qe||0)+parseFloat(Oe||0)},nt={mediaPresentationDuration:function(o){return Nt(o)},availabilityStartTime:function(o){return function(o){return/^\d+-\d+-\d+T\d+:\d+:\d+(\.\d+)?$/.test(o)&&(o+="Z"),Date.parse(o)}(o)/1e3},minimumUpdatePeriod:function(o){return Nt(o)},suggestedPresentationDelay:function(o){return Nt(o)},type:function(o){return o},timeShiftBufferDepth:function(o){return Nt(o)},start:function(o){return Nt(o)},width:function(o){return parseInt(o,10)},height:function(o){return parseInt(o,10)},bandwidth:function(o){return parseInt(o,10)},startNumber:function(o){return parseInt(o,10)},timescale:function(o){return parseInt(o,10)},presentationTimeOffset:function(o){return parseInt(o,10)},duration:function(o){var l=parseInt(o,10);return isNaN(l)?Nt(o):l},d:function(o){return parseInt(o,10)},t:function(o){return parseInt(o,10)},r:function(o){return parseInt(o,10)},DEFAULT:function(o){return o}},lt=function(o){return o&&o.attributes?mt(o.attributes).reduce(function(l,s){var n=nt[s.name]||nt.DEFAULT;return l[s.name]=n(s.value),l},{}):{}},bt={"urn:uuid:1077efec-c0b2-4d02-ace3-3c1e52e2fb4b":"org.w3.clearkey","urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed":"com.widevine.alpha","urn:uuid:9a04f079-9840-4286-ab92-e65be0885f95":"com.microsoft.playready","urn:uuid:f239e769-efa3-4850-9c16-a903c6932efb":"com.adobe.primetime"},Vt=function(o,l){return l.length?Dt(o.map(function(s){return l.map(function(n){return ut(s,sa(n))})})):o},En=function(o){var l=Er(o,"SegmentTemplate")[0],s=Er(o,"SegmentList")[0],n=s&&Er(s,"SegmentURL").map(function(G){return Ot({tag:"SegmentURL"},lt(G))}),a=Er(o,"SegmentBase")[0],c=s||l,h=c&&Er(c,"SegmentTimeline")[0],_=s||a||l,M=_&&Er(_,"Initialization")[0],P=l&<(l);P&&M?P.initialization=M&<(M):P&&P.initialization&&(P.initialization={sourceURL:P.initialization});var Q={template:P,segmentTimeline:h&&Er(h,"S").map(function(G){return lt(G)}),list:s&&Ot(lt(s),{segmentUrls:n,initialization:lt(M)}),base:a&&Ot(lt(a),{initialization:lt(M)})};return Object.keys(Q).forEach(function(G){Q[G]||delete Q[G]}),Q},zr=function(o,l,s){return function(n){var a=lt(n),c=Vt(l,Er(n,"BaseURL")),h=Er(n,"Role")[0],_={role:lt(h)},M=Ot(o,a,_),P=Er(n,"Accessibility")[0],Q=function(o){return"urn:scte:dash:cc:cea-608:2015"===o.schemeIdUri?("string"!=typeof o.value?[]:o.value.split(";")).map(function(n){var a,c;if(c=n,/^CC\d=/.test(n)){var h=n.split("=");a=h[0],c=h[1]}else/^CC\d$/.test(n)&&(a=n);return{channel:a,language:c}}):"urn:scte:dash:cc:cea-708:2015"===o.schemeIdUri?("string"!=typeof o.value?[]:o.value.split(";")).map(function(n){var a={channel:void 0,language:void 0,aspectRatio:1,easyReader:0,"3D":0};if(/=/.test(n)){var c=n.split("="),h=c[0],_=c[1],M=void 0===_?"":_;a.channel=h,a.language=n,M.split(",").forEach(function(P){var Q=P.split(":"),G=Q[0],Te=Q[1];"lang"===G?a.language=Te:"er"===G?a.easyReader=Number(Te):"war"===G?a.aspectRatio=Number(Te):"3D"===G&&(a["3D"]=Number(Te))})}else a.language=n;return a.channel&&(a.channel="SERVICE"+a.channel),a}):void 0}(lt(P));Q&&(M=Ot(M,{captionServices:Q}));var G=Er(n,"Label")[0];if(G&&G.childNodes.length){var Te=G.childNodes[0].nodeValue.trim();M=Ot(M,{label:Te})}var qe=function(o){return o.reduce(function(l,s){var n=lt(s),a=bt[n.schemeIdUri];if(a){l[a]={attributes:n};var c=Er(s,"cenc:pssh")[0];if(c){var h=sa(c),_=h&&W(h);l[a].pssh=_}}return l},{})}(Er(n,"ContentProtection"));Object.keys(qe).length&&(M=Ot(M,{contentProtection:qe}));var Oe=En(n),Ae=Er(n,"Representation"),Rt=Ot(s,Oe);return Dt(Ae.map(function(o,l,s){return function(n){var a=Er(n,"BaseURL"),c=Vt(l,a),h=Ot(o,lt(n)),_=En(n);return c.map(function(M){return{segmentInfo:Ot(s,_),attributes:Ot(h,{baseUrl:M})}})}}(M,c,Rt)))}},Cr=function(o,l){return function(s,n){var a=Vt(l,Er(s.node,"BaseURL")),c=Ot(o,{periodStart:s.attributes.start});"number"==typeof s.attributes.duration&&(c.periodDuration=s.attributes.duration);var h=Er(s.node,"AdaptationSet"),_=En(s.node);return Dt(h.map(zr(c,a,_)))}},qn=function(o){if(""===o)throw new Error(xe_DASH_EMPTY_MANIFEST);var s,n,l=new _n.DOMParser;try{n=(s=l.parseFromString(o,"application/xml"))&&"MPD"===s.documentElement.tagName?s.documentElement:null}catch(a){}if(!n||n&&n.getElementsByTagName("parsererror").length>0)throw new Error(xe_DASH_INVALID_XML);return n},fi=function(o,l){void 0===l&&(l={});var s=function(o,l){void 0===l&&(l={});var s=l,n=s.manifestUri,a=void 0===n?"":n,c=s.NOW,h=void 0===c?Date.now():c,_=s.clientOffset,M=void 0===_?0:_,P=Er(o,"Period");if(!P.length)throw new Error(xe_INVALID_NUMBER_OF_PERIOD);var Q=Er(o,"Location"),G=lt(o),Te=Vt([a],Er(o,"BaseURL"));G.type=G.type||"static",G.sourceDuration=G.mediaPresentationDuration||0,G.NOW=h,G.clientOffset=M,Q.length&&(G.locations=Q.map(sa));var qe=[];return P.forEach(function(Oe,Ae){var Rt=lt(Oe),Zt=qe[Ae-1];Rt.start=function(o){var l=o.attributes,s=o.priorPeriodAttributes,n=o.mpdType;return"number"==typeof l.start?l.start:s&&"number"==typeof s.start&&"number"==typeof s.duration?s.start+s.duration:s||"static"!==n?null:0}({attributes:Rt,priorPeriodAttributes:Zt?Zt.attributes:null,mpdType:G.type}),qe.push({node:Oe,attributes:Rt})}),{locations:G.locations,representationInfo:Dt(qe.map(Cr(G,Te)))}}(qn(o),l),n=function(o){return o.map(Ri)}(s.representationInfo);return Kn({dashPlaylists:n,locations:s.locations,sidxMapping:l.sidxMapping,previousManifest:l.previousManifest})},Ur=function(o){return function(o){var l=Er(o,"UTCTiming")[0];if(!l)return null;var s=lt(l);switch(s.schemeIdUri){case"urn:mpeg:dash:utc:http-head:2014":case"urn:mpeg:dash:utc:http-head:2012":s.method="HEAD";break;case"urn:mpeg:dash:utc:http-xsdate:2014":case"urn:mpeg:dash:utc:http-iso:2014":case"urn:mpeg:dash:utc:http-xsdate:2012":case"urn:mpeg:dash:utc:http-iso:2012":s.method="GET";break;case"urn:mpeg:dash:utc:direct:2014":case"urn:mpeg:dash:utc:direct:2012":s.method="DIRECT",s.value=Date.parse(s.value);break;default:throw new Error(xe_UNSUPPORTED_UTC_TIMING_SCHEME)}return s}(qn(o))},ei=D(2416),Br=D.n(ei),No=function(o){return function(o){return"function"===ArrayBuffer.isView?ArrayBuffer.isView(o):o&&o.buffer instanceof ArrayBuffer}(o)},In=function(o){return o instanceof Uint8Array?o:(!Array.isArray(o)&&!No(o)&&!(o instanceof ArrayBuffer)&&(o="number"!=typeof o||"number"==typeof o&&o!=o?0:[o]),new Uint8Array(o&&o.buffer||o,o&&o.byteOffset||0,o&&o.byteLength||0))},rr=C().BigInt||Number,ea=[rr("0x1"),rr("0x100"),rr("0x10000"),rr("0x1000000"),rr("0x100000000"),rr("0x10000000000"),rr("0x1000000000000"),rr("0x100000000000000"),rr("0x10000000000000000")],pa=(p=new Uint16Array([65484]),255===(o=new Uint8Array(p.buffer,p.byteOffset,p.byteLength))[0]||o[0],function(o,l){var s=void 0===l?{}:l,n=s.signed,a=void 0!==n&&n,c=s.le,h=void 0!==c&&c;o=In(o);var _=h?"reduce":"reduceRight",P=(o[_]?o[_]:Array.prototype[_]).call(o,function(G,Te,qe){var Oe=h?qe:Math.abs(qe+1-o.length);return G+rr(Te)*ea[Oe]},rr(0));if(a){var Q=ea[o.length]/rr(2)-rr(1);(P=rr(P))>Q&&(P-=Q,P-=Q,P-=rr(2))}return Number(P)}),qa=function(o,l){var n=(void 0===l?{}:l).le,a=void 0!==n&&n;("bigint"!=typeof o&&"number"!=typeof o||"number"==typeof o&&o!=o)&&(o=0);for(var c=function(o){return Math.ceil(function(o){return o.toString(2).length}(o)/8)}(o=rr(o)),h=new Uint8Array(new ArrayBuffer(c)),_=0;_=l.length&&M.call(l,function(P,Q){return P===(_[Q]?_[Q]&o[c+Q]:o[c+Q])})},Hn=In([73,68,51]),ri=function p(o,l){return void 0===l&&(l=0),(o=In(o)).length-l<10||!Bn(o,Hn,{offset:l})?l:(l+=function(o,l){void 0===l&&(l=0);var s=(o=In(o))[l+5],n=o[l+6]<<21|o[l+7]<<14|o[l+8]<<7|o[l+9];return(16&s)>>4?n+20:n+10}(o,l),p(o,l))},bs=(new Uint8Array([79,112,117,115,72,101,97,100]),function(o){return"string"==typeof o?Fi(o):o}),Ia=function(o){o=In(o);for(var l=[],s=0;o.length>s;){var n=o[s],a=0,c=0,h=o[++c];for(c++;128&h;)a=(127&h)<<7,h=o[c],c++;a+=127&h;for(var _=0;_>>0,h=o.subarray(a+4,a+8);if(0===c)break;var _=a+c;if(_>o.length){if(s)break;_=o.length}var M=o.subarray(a+8,_);Bn(h,l[0])&&(1===l.length?n.push(M):n.push.apply(n,p(M,l.slice(1),s))),a=_}return n},Pr={EBML:In([26,69,223,163]),DocType:In([66,130]),Segment:In([24,83,128,103]),SegmentInfo:In([21,73,169,102]),Tracks:In([22,84,174,107]),Track:In([174]),TrackNumber:In([215]),DefaultDuration:In([35,227,131]),TrackEntry:In([174]),TrackType:In([131]),FlagDefault:In([136]),CodecID:In([134]),CodecPrivate:In([99,162]),VideoTrack:In([224]),AudioTrack:In([225]),Cluster:In([31,67,182,117]),Timestamp:In([231]),TimestampScale:In([42,215,177]),BlockGroup:In([160]),BlockDuration:In([155]),Block:In([161]),SimpleBlock:In([163])},Va=[128,64,32,16,8,4,2,1],J=function(o,l,s,n){void 0===s&&(s=!0),void 0===n&&(n=!1);var a=function(o){for(var l=1,s=0;s=l.length)return l.length;var n=J(l,s,!1);if(Bn(o.bytes,n.bytes))return s;var a=J(l,s+n.length);return p(o,l,s+a.length+a.value+n.length)},B=function p(o,l){l=function(o){return Array.isArray(o)?o.map(function(l){return le(l)}):[le(o)]}(l),o=In(o);var s=[];if(!l.length)return s;for(var n=0;no.length?o.length:h+c.value,M=o.subarray(h,_);Bn(l[0],a.bytes)&&(1===l.length?s.push(M):s=s.concat(p(M,l.slice(1)))),n+=a.length+c.length+M.length}return s},Tt=In([0,0,0,1]),tn=In([0,0,1]),Un=In([0,0,3]),jr=function(o){for(var l=[],s=1;s>1&63),-1!==s.indexOf(M)&&(c=a+_),a+=_+("h264"===l?1:2)}else a++}return o.subarray(0,0)},Gn={webm:In([119,101,98,109]),matroska:In([109,97,116,114,111,115,107,97]),flac:In([102,76,97,67]),ogg:In([79,103,103,83]),ac3:In([11,119]),riff:In([82,73,70,70]),avi:In([65,86,73]),wav:In([87,65,86,69]),"3gp":In([102,116,121,112,51,103]),mp4:In([102,116,121,112]),fmp4:In([115,116,121,112]),mov:In([102,116,121,112,113,116]),moov:In([109,111,111,118]),moof:In([109,111,111,102])},Oi={aac:function(o){var l=ri(o);return Bn(o,[255,16],{offset:l,mask:[255,22]})},mp3:function(o){var l=ri(o);return Bn(o,[255,2],{offset:l,mask:[255,6]})},webm:function(o){var l=B(o,[Pr.EBML,Pr.DocType])[0];return Bn(l,Gn.webm)},mkv:function(o){var l=B(o,[Pr.EBML,Pr.DocType])[0];return Bn(l,Gn.matroska)},mp4:function(o){return!Oi["3gp"](o)&&!Oi.mov(o)&&(!!(Bn(o,Gn.mp4,{offset:4})||Bn(o,Gn.fmp4,{offset:4})||Bn(o,Gn.moof,{offset:4})||Bn(o,Gn.moov,{offset:4}))||void 0)},mov:function(o){return Bn(o,Gn.mov,{offset:4})},"3gp":function(o){return Bn(o,Gn["3gp"],{offset:4})},ac3:function(o){var l=ri(o);return Bn(o,Gn.ac3,{offset:l})},ts:function(o){if(o.length<189&&o.length>=1)return 71===o[0];for(var l=0;l+188 - * Copyright Brightcove, Inc. - * Available under Apache License Version 2.0 - * + * Copyright Google LLC All Rights Reserved. * - * Includes vtt.js - * Available under Apache License Version 2.0 - * - */ -for(var Ts,Co=Oi,La=function(o){o=In(o);for(var l=0;l0?_:0)}if(C().console){var M=C().console[s];!M&&"debug"===s&&(M=C().console.info||C().console.log),M&&c&&h.test(s)&&M[Array.isArray(a)?"apply":"call"](C().console,a)}}}(p,s),s.createLogger=function(n){return E1(p+": "+n)},s.levels={all:"debug|log|warn|error",off:"",debug:"debug|log|warn|error",info:"log|warn|error",warn:"warn|error",error:"error",DEFAULT:o},s.level=function(n){if("string"==typeof n){if(!s.levels.hasOwnProperty(n))throw new Error('"'+n+'" in not a valid log level');o=n}return o},s.history=function(){return ai?[].concat(ai):[]},s.history.filter=function(n){return(ai||[]).filter(function(a){return new RegExp(".*"+n+".*").test(a[0])})},s.history.clear=function(){ai&&(ai.length=0)},s.history.disable=function(){null!==ai&&(ai.length=0,ai=null)},s.history.enable=function(){null===ai&&(ai=[])},s.error=function(){for(var n=arguments.length,a=new Array(n),c=0;c1?o-1:0),s=1;s=0)throw new Error("class has illegal whitespace characters")}function li(){return R()===C().document}function Zi(p){return Pa(p)&&1===p.nodeType}function xo(){try{return C().parent!==C().self}catch(p){return!0}}function Wa(p){return function(o,l){if(!or(o))return R()[p](null);or(l)&&(l=R().querySelector(l));var s=Zi(l)?l:R();return s[p]&&s[p](o)}}function Tr(p,o,l,s){void 0===p&&(p="div"),void 0===o&&(o={}),void 0===l&&(l={});var n=R().createElement(p);return Object.getOwnPropertyNames(o).forEach(function(a){var c=o[a];-1!==a.indexOf("aria-")||"role"===a||"type"===a?(dr.warn("Setting attributes in the second argument of createEl()\nhas been deprecated. Use the third argument instead.\ncreateEl(type, properties, attributes). Attempting to set "+a+" to "+c+"."),n.setAttribute(a,c)):"textContent"===a?Oa(n,c):(n[a]!==c||"tabIndex"===a)&&(n[a]=c)}),Object.getOwnPropertyNames(l).forEach(function(a){n.setAttribute(a,l[a])}),s&&co(n,s),n}function Oa(p,o){return void 0===p.textContent?p.innerText=o:p.textContent=o,p}function so(p,o){o.firstChild?o.insertBefore(p,o.firstChild):o.appendChild(p)}function Qa(p,o){return gr(o),p.classList?p.classList.contains(o):function(p){return new RegExp("(^|\\s)"+p+"($|\\s)")}(o).test(p.className)}function lo(p,o){return p.classList?p.classList.add(o):Qa(p,o)||(p.className=(p.className+" "+o).trim()),p}function es(p,o){return p?(p.classList?p.classList.remove(o):(gr(o),p.className=p.className.split(/\s+/).filter(function(l){return l!==o}).join(" ")),p):(dr.warn("removeClass was called with an element that doesn't exist"),null)}function Al(p,o,l){var s=Qa(p,o);if("function"==typeof l&&(l=l(p,o)),"boolean"!=typeof l&&(l=!s),l!==s)return l?lo(p,o):es(p,o),p}function rl(p,o){Object.getOwnPropertyNames(o).forEach(function(l){var s=o[l];null==s||!1===s?p.removeAttribute(l):p.setAttribute(l,!0===s?"":s)})}function ts(p){var o={};if(p&&p.attributes&&p.attributes.length>0)for(var s=p.attributes,n=s.length-1;n>=0;n--){var a=s[n].name,c=s[n].value;("boolean"==typeof p[a]||-1!==",autoplay,controls,playsinline,loop,muted,default,defaultMuted,".indexOf(","+a+","))&&(c=null!==c),o[a]=c}return o}function Tu(p,o){return p.getAttribute(o)}function Qi(p,o,l){p.setAttribute(o,l)}function uo(p,o){p.removeAttribute(o)}function gi(){R().body.focus(),R().onselectstart=function(){return!1}}function Bo(){R().onselectstart=function(){return!0}}function Io(p){if(p&&p.getBoundingClientRect&&p.parentNode){var o=p.getBoundingClientRect(),l={};return["bottom","height","left","right","top","width"].forEach(function(s){void 0!==o[s]&&(l[s]=o[s])}),l.height||(l.height=parseFloat(ka(p,"height"))),l.width||(l.width=parseFloat(ka(p,"width"))),l}}function Do(p){if(!p||p&&!p.offsetParent)return{left:0,top:0,width:0,height:0};for(var o=p.offsetWidth,l=p.offsetHeight,s=0,n=0;p.offsetParent&&p!==R()[tl.fullscreenElement];)s+=p.offsetLeft,n+=p.offsetTop,p=p.offsetParent;return{left:s,top:n,width:o,height:l}}function ns(p,o){var l={x:0,y:0};if(jt)for(var s=p;s&&"html"!==s.nodeName.toLowerCase();){var n=ka(s,"transform");if(/^matrix/.test(n)){var a=n.slice(7,-1).split(/,\s/).map(Number);l.x+=a[4],l.y+=a[5]}else if(/^matrix3d/.test(n)){var c=n.slice(9,-1).split(/,\s/).map(Number);l.x+=c[12],l.y+=c[13]}s=s.parentNode}var h={},_=Do(o.target),M=Do(p),P=M.width,Q=M.height,G=o.offsetY-(M.top-_.top),Te=o.offsetX-(M.left-_.left);return o.changedTouches&&(Te=o.changedTouches[0].pageX-M.left,G=o.changedTouches[0].pageY+M.top,jt&&(Te-=l.x,G-=l.y)),h.y=1-Math.max(0,Math.min(1,G/Q)),h.x=Math.max(0,Math.min(1,Te/P)),h}function Es(p){return Pa(p)&&3===p.nodeType}function Gs(p){for(;p.firstChild;)p.removeChild(p.firstChild);return p}function qo(p){return"function"==typeof p&&(p=p()),(Array.isArray(p)?p:[p]).map(function(o){return"function"==typeof o&&(o=o()),Zi(o)||Es(o)?o:"string"==typeof o&&/\S/.test(o)?R().createTextNode(o):void 0}).filter(function(o){return o})}function co(p,o){return qo(o).forEach(function(l){return p.appendChild(l)}),p}function Zo(p,o){return co(Gs(p),o)}function fo(p){return void 0===p.button&&void 0===p.buttons||0===p.button&&void 0===p.buttons||"mouseup"===p.type&&0===p.button&&0===p.buttons||!(0!==p.button||1!==p.buttons)}var n2,Ya=Wa("querySelector"),Ws=Wa("querySelectorAll"),Aa=Object.freeze({__proto__:null,isReal:li,isEl:Zi,isInFrame:xo,createEl:Tr,textContent:Oa,prependTo:so,hasClass:Qa,addClass:lo,removeClass:es,toggleClass:Al,setAttributes:rl,getAttributes:ts,getAttribute:Tu,setAttribute:Qi,removeAttribute:uo,blockTextSelection:gi,unblockTextSelection:Bo,getBoundingClientRect:Io,findPosition:Do,getPointerPosition:ns,isTextNode:Es,emptyEl:Gs,normalizeContent:qo,appendContent:co,insertContent:Zo,isSingleLeftClick:fo,$:Ya,$$:Ws}),zo=!1,Gc=function(){if(!1!==n2.options.autoSetup){var o=Array.prototype.slice.call(R().getElementsByTagName("video")),l=Array.prototype.slice.call(R().getElementsByTagName("audio")),s=Array.prototype.slice.call(R().getElementsByTagName("video-js")),n=o.concat(l,s);if(n&&n.length>0)for(var a=0,c=n.length;a-1&&(n={passive:!0}),p.addEventListener(o,s.dispatcher,n)}else p.attachEvent&&p.attachEvent("on"+o,s.dispatcher)}function wi(p,o,l){if(sn.has(p)){var s=sn.get(p);if(s.handlers){if(Array.isArray(o))return ur(wi,p,o,l);var n=function(M,P){s.handlers[P]=[],zn(M,P)};if(void 0===o){for(var a in s.handlers)Object.prototype.hasOwnProperty.call(s.handlers||{},a)&&n(p,a);return}var c=s.handlers[o];if(c){if(!l)return void n(p,o);if(l.guid)for(var h=0;h=l&&(o.apply(void 0,arguments),s=c)}},ca=function(){};ca.prototype.allowedEvents_={},ca.prototype.on=function(p,o){var l=this.addEventListener;this.addEventListener=function(){},Yi(this,p,o),this.addEventListener=l},ca.prototype.addEventListener=ca.prototype.on,ca.prototype.off=function(p,o){wi(this,p,o)},ca.prototype.removeEventListener=ca.prototype.off,ca.prototype.one=function(p,o){var l=this.addEventListener;this.addEventListener=function(){},Ii(this,p,o),this.addEventListener=l},ca.prototype.any=function(p,o){var l=this.addEventListener;this.addEventListener=function(){},I1(this,p,o),this.addEventListener=l},ca.prototype.trigger=function(p){var o=p.type||p;"string"==typeof p&&(p={type:o}),p=vr(p),this.allowedEvents_[o]&&this["on"+o]&&this["on"+o](p),Ys(this,p)},ca.prototype.dispatchEvent=ca.prototype.trigger,ca.prototype.queueTrigger=function(p){var o=this;il||(il=new Map);var l=p.type||p,s=il.get(this);s||(s=new Map,il.set(this,s));var n=s.get(l);s.delete(l),C().clearTimeout(n);var a=C().setTimeout(function(){0===s.size&&(s=null,il.delete(o)),o.trigger(p)},0);s.set(l,a)};var j2=function(o){return"function"==typeof o.name?o.name():"string"==typeof o.name?o.name:o.name_?o.name_:o.constructor&&o.constructor.name?o.constructor.name:typeof o},Ks=function(o){return o instanceof ca||!!o.eventBusEl_&&["on","one","off","trigger"].every(function(l){return"function"==typeof o[l]})},D1=function(o){return"string"==typeof o&&/\S/.test(o)||Array.isArray(o)&&!!o.length},xu=function(o,l,s){if(!o||!o.nodeName&&!Ks(o))throw new Error("Invalid target for "+j2(l)+"#"+s+"; must be a DOM node or evented object.")},f0=function(o,l,s){if(!D1(o))throw new Error("Invalid event type for "+j2(l)+"#"+s+"; must be a non-empty string or array.")},Qc=function(o,l,s){if("function"!=typeof o)throw new Error("Invalid listener for "+j2(l)+"#"+s+"; must be a function.")},Rl=function(o,l,s){var a,c,h,n=l.length<3||l[0]===o||l[0]===o.eventBusEl_;return n?(a=o.eventBusEl_,l.length>=3&&l.shift(),c=l[0],h=l[1]):(a=l[0],c=l[1],h=l[2]),xu(a,o,s),f0(c,o,s),Qc(h,o,s),{isTargetingSelf:n,target:a,type:c,listener:h=Qr(o,h)}},Is=function(o,l,s,n){xu(o,o,l),o.nodeName?Eu[l](o,s,n):o[l](s,n)},_5={on:function(){for(var o=this,l=arguments.length,s=new Array(l),n=0;n=0;s--)this.children_[s].dispose&&this.children_[s].dispose();this.children_=null,this.childIndex_=null,this.childNameIndex_=null,this.parentComponent_=null,this.el_&&(this.el_.parentNode&&this.el_.parentNode.removeChild(this.el_),this.el_=null),this.player_=null}},o.isDisposed=function(){return Boolean(this.isDisposed_)},o.player=function(){return this.player_},o.options=function(s){return s?(this.options_=oi(this.options_,s),this.options_):this.options_},o.el=function(){return this.el_},o.createEl=function(s,n,a){return Tr(s,n,a)},o.localize=function(s,n,a){void 0===a&&(a=s);var c=this.player_.language&&this.player_.language(),h=this.player_.languages&&this.player_.languages(),_=h&&h[c],M=c&&c.split("-")[0],P=h&&h[M],Q=a;return _&&_[s]?Q=_[s]:P&&P[s]&&(Q=P[s]),n&&(Q=Q.replace(/\{(\d+)\}/g,function(G,Te){var qe=n[Te-1],Oe=qe;return void 0===qe&&(Oe=G),Oe})),Q},o.handleLanguagechange=function(){},o.contentEl=function(){return this.contentEl_||this.el_},o.id=function(){return this.id_},o.name=function(){return this.name_},o.children=function(){return this.children_},o.getChildById=function(s){return this.childIndex_[s]},o.getChild=function(s){if(s)return this.childNameIndex_[s]},o.getDescendant=function(){for(var s=arguments.length,n=new Array(s),a=0;a=0;a--)if(this.children_[a]===s){n=!0,this.children_.splice(a,1);break}if(n){s.parentComponent_=null,this.childIndex_[s.id()]=null,this.childNameIndex_[Vi(s.name())]=null,this.childNameIndex_[Du(s.name())]=null;var c=s.el();c&&c.parentNode===this.contentEl()&&this.contentEl().removeChild(s.el())}}},o.initChildren=function(){var s=this,n=this.options_.children;if(n){var h,a=this.options_,_=p.getComponent("Tech");(h=Array.isArray(n)?n:Object.keys(n)).concat(Object.keys(this.options_).filter(function(M){return!h.some(function(P){return"string"==typeof P?M===P:M===P.name})})).map(function(M){var P,Q;return"string"==typeof M?Q=n[P=M]||s.options_[P]||{}:(P=M.name,Q=M),{name:P,opts:Q}}).filter(function(M){var P=p.getComponent(M.opts.componentClass||Vi(M.name));return P&&!_.isTech(P)}).forEach(function(P){var Q=P.name,G=P.opts;if(void 0!==a[Q]&&(G=a[Q]),!1!==G){!0===G&&(G={}),G.playerOptions=s.options_.playerOptions;var Te=s.addChild(Q,G);Te&&(s[Q]=Te)}})}},o.buildCSSClass=function(){return""},o.ready=function(s,n){if(void 0===n&&(n=!1),s){if(!this.isReady_)return this.readyQueue_=this.readyQueue_||[],void this.readyQueue_.push(s);n?s.call(this):this.setTimeout(s,1)}},o.triggerReady=function(){this.isReady_=!0,this.setTimeout(function(){var s=this.readyQueue_;this.readyQueue_=[],s&&s.length>0&&s.forEach(function(n){n.call(this)},this),this.trigger("ready")},1)},o.$=function(s,n){return Ya(s,n||this.contentEl())},o.$$=function(s,n){return Ws(s,n||this.contentEl())},o.hasClass=function(s){return Qa(this.el_,s)},o.addClass=function(s){lo(this.el_,s)},o.removeClass=function(s){es(this.el_,s)},o.toggleClass=function(s,n){Al(this.el_,s,n)},o.show=function(){this.removeClass("vjs-hidden")},o.hide=function(){this.addClass("vjs-hidden")},o.lockShowing=function(){this.addClass("vjs-lock-showing")},o.unlockShowing=function(){this.removeClass("vjs-lock-showing")},o.getAttribute=function(s){return Tu(this.el_,s)},o.setAttribute=function(s,n){Qi(this.el_,s,n)},o.removeAttribute=function(s){uo(this.el_,s)},o.width=function(s,n){return this.dimension("width",s,n)},o.height=function(s,n){return this.dimension("height",s,n)},o.dimensions=function(s,n){this.width(s,!0),this.height(n)},o.dimension=function(s,n,a){if(void 0!==n)return(null===n||n!=n)&&(n=0),-1!==(""+n).indexOf("%")||-1!==(""+n).indexOf("px")?this.el_.style[s]=n:this.el_.style[s]="auto"===n?"":n+"px",void(a||this.trigger("componentresize"));if(!this.el_)return 0;var c=this.el_.style[s],h=c.indexOf("px");return parseInt(-1!==h?c.slice(0,h):this.el_["offset"+Vi(s)],10)},o.currentDimension=function(s){var n=0;if("width"!==s&&"height"!==s)throw new Error("currentDimension only accepts width or height value");if(n=ka(this.el_,s),0===(n=parseFloat(n))||isNaN(n)){var a="offset"+Vi(s);n=this.el_[a]}return n},o.currentDimensions=function(){return{width:this.currentDimension("width"),height:this.currentDimension("height")}},o.currentWidth=function(){return this.currentDimension("width")},o.currentHeight=function(){return this.currentDimension("height")},o.focus=function(){this.el_.focus()},o.blur=function(){this.el_.blur()},o.handleKeyDown=function(s){this.player_&&(E().isEventKey(s,"Tab")||s.stopPropagation(),this.player_.handleKeyDown(s))},o.handleKeyPress=function(s){this.handleKeyDown(s)},o.emitTapEvents=function(){var h,s=0,n=null;this.on("touchstart",function(M){1===M.touches.length&&(n={pageX:M.touches[0].pageX,pageY:M.touches[0].pageY},s=C().performance.now(),h=!0)}),this.on("touchmove",function(M){if(M.touches.length>1)h=!1;else if(n){var P=M.touches[0].pageX-n.pageX,Q=M.touches[0].pageY-n.pageY;Math.sqrt(P*P+Q*Q)>10&&(h=!1)}});var _=function(){h=!1};this.on("touchleave",_),this.on("touchcancel",_),this.on("touchend",function(M){(n=null,!0===h)&&(C().performance.now()-s<200&&(M.preventDefault(),this.trigger("tap")))})},o.enableTouchActivity=function(){if(this.player()&&this.player().reportUserActivity){var n,s=Qr(this.player(),this.player().reportUserActivity);this.on("touchstart",function(){s(),this.clearInterval(n),n=this.setInterval(s,250)});var a=function(h){s(),this.clearInterval(n)};this.on("touchmove",s),this.on("touchend",a),this.on("touchcancel",a)}},o.setTimeout=function(s,n){var c,a=this;return s=Qr(this,s),this.clearTimersOnDispose_(),c=C().setTimeout(function(){a.setTimeoutIds_.has(c)&&a.setTimeoutIds_.delete(c),s()},n),this.setTimeoutIds_.add(c),c},o.clearTimeout=function(s){return this.setTimeoutIds_.has(s)&&(this.setTimeoutIds_.delete(s),C().clearTimeout(s)),s},o.setInterval=function(s,n){s=Qr(this,s),this.clearTimersOnDispose_();var a=C().setInterval(s,n);return this.setIntervalIds_.add(a),a},o.clearInterval=function(s){return this.setIntervalIds_.has(s)&&(this.setIntervalIds_.delete(s),C().clearInterval(s)),s},o.requestAnimationFrame=function(s){var a,n=this;return this.supportsRaf_?(this.clearTimersOnDispose_(),s=Qr(this,s),a=C().requestAnimationFrame(function(){n.rafIds_.has(a)&&n.rafIds_.delete(a),s()}),this.rafIds_.add(a),a):this.setTimeout(s,1e3/60)},o.requestNamedAnimationFrame=function(s,n){var a=this;if(!this.namedRafs_.has(s)){this.clearTimersOnDispose_(),n=Qr(this,n);var c=this.requestAnimationFrame(function(){n(),a.namedRafs_.has(s)&&a.namedRafs_.delete(s)});return this.namedRafs_.set(s,c),s}},o.cancelNamedAnimationFrame=function(s){!this.namedRafs_.has(s)||(this.cancelAnimationFrame(this.namedRafs_.get(s)),this.namedRafs_.delete(s))},o.cancelAnimationFrame=function(s){return this.supportsRaf_?(this.rafIds_.has(s)&&(this.rafIds_.delete(s),C().cancelAnimationFrame(s)),s):this.clearTimeout(s)},o.clearTimersOnDispose_=function(){var s=this;this.clearingTimersOnDispose_||(this.clearingTimersOnDispose_=!0,this.one("dispose",function(){[["namedRafs_","cancelNamedAnimationFrame"],["rafIds_","cancelAnimationFrame"],["setTimeoutIds_","clearTimeout"],["setIntervalIds_","clearInterval"]].forEach(function(n){var a=n[0],c=n[1];s[a].forEach(function(h,_){return s[c](_)})}),s.clearingTimersOnDispose_=!1}))},p.registerComponent=function(s,n){if("string"!=typeof s||!s)throw new Error('Illegal component name, "'+s+'"; must be a non-empty string.');var _,a=p.getComponent("Tech"),c=a&&a.isTech(n),h=p===n||p.prototype.isPrototypeOf(n.prototype);if(c||!h)throw _=c?"techs must be registered using Tech.registerTech()":"must be a Component subclass",new Error('Illegal component, "'+s+'"; '+_+".");s=Vi(s),p.components_||(p.components_={});var M=p.getComponent("Player");if("Player"===s&&M&&M.players){var P=M.players,Q=Object.keys(P);if(P&&Q.length>0&&Q.map(function(G){return P[G]}).every(Boolean))throw new Error("Can not register Player component after player has been created.")}return p.components_[s]=n,p.components_[Du(s)]=n,n},p.getComponent=function(s){if(s&&p.components_)return p.components_[s]},p}();function ma(p,o,l,s){return function(p,o,l){if("number"!=typeof o||o<0||o>l)throw new Error("Failed to execute '"+p+"' on 'TimeRanges': The index provided ("+o+") is non-numeric or out of bounds (0-"+l+").")}(p,s,l.length-1),l[s][o]}function is(p){var o;return o=void 0===p||0===p.length?{length:0,start:function(){throw new Error("This TimeRanges object is empty")},end:function(){throw new Error("This TimeRanges object is empty")}}:{length:p.length,start:ma.bind(null,"start",0,p),end:ma.bind(null,"end",1,p)},C().Symbol&&C().Symbol.iterator&&(o[C().Symbol.iterator]=function(){return(p||[]).values()}),o}function Lo(p,o){return Array.isArray(p)?is(p):void 0===p||void 0===o?is():is([[p,o]])}function S1(p,o){var s,n,l=0;if(!o)return 0;(!p||!p.length)&&(p=Lo(0,0));for(var a=0;ao&&(n=o),l+=n-s;return l/o}function Ar(p){if(p instanceof Ar)return p;"number"==typeof p?this.code=p:"string"==typeof p?this.message=p:Pa(p)&&("number"==typeof p.code&&(this.code=p.code),Hr(this,p)),this.message||(this.message=Ar.defaultMessages[this.code]||"")}fn.prototype.supportsRaf_="function"==typeof C().requestAnimationFrame&&"function"==typeof C().cancelAnimationFrame,fn.registerComponent("Component",fn),Ar.prototype.code=0,Ar.prototype.message="",Ar.prototype.status=null,Ar.errorTypes=["MEDIA_ERR_CUSTOM","MEDIA_ERR_ABORTED","MEDIA_ERR_NETWORK","MEDIA_ERR_DECODE","MEDIA_ERR_SRC_NOT_SUPPORTED","MEDIA_ERR_ENCRYPTED"],Ar.defaultMessages={1:"You aborted the media playback",2:"A network error caused the media download to fail part-way.",3:"The media playback was aborted due to a corruption problem or because the media used features your browser did not support.",4:"The media could not be loaded, either because the server or network failed or because the format is not supported.",5:"The media is encrypted and we do not have the keys to decrypt it."};for(var al=0;al=0;a--)if(s[a].enabled){Js(s,s[a]);break}return(n=p.call(this,s)||this).changing_=!1,n}ue(o,p);var l=o.prototype;return l.addTrack=function(n){var a=this;n.enabled&&Js(this,n),p.prototype.addTrack.call(this,n),n.addEventListener&&(n.enabledChange_=function(){a.changing_||(a.changing_=!0,Js(a,n),a.changing_=!1,a.trigger("change"))},n.addEventListener("enabledchange",n.enabledChange_))},l.removeTrack=function(n){p.prototype.removeTrack.call(this,n),n.removeEventListener&&n.enabledChange_&&(n.removeEventListener("enabledchange",n.enabledChange_),n.enabledChange_=null)},o}(ol),ra=function(o,l){for(var s=0;s=0;a--)if(s[a].selected){ra(s,s[a]);break}return(n=p.call(this,s)||this).changing_=!1,Object.defineProperty(y(n),"selectedIndex",{get:function(){for(var h=0;h0&&(C().console&&C().console.groupCollapsed&&C().console.groupCollapsed("Text Track parsing errors for "+l.src),n.forEach(function(a){return dr.error(a)}),C().console&&C().console.groupEnd&&C().console.groupEnd()),s.flush()},po=function(o,l){var s={uri:o},n=K2(o);n&&(s.cors=n);var a="use-credentials"===l.tech_.crossOrigin();a&&(s.withCredentials=a),ce()(s,Qr(this,function(c,h,_){if(c)return dr.error(c,h);l.loaded_=!0,"function"!=typeof C().WebVTT?l.tech_&&l.tech_.any(["vttjsloaded","vttjserror"],function(M){if("vttjserror"!==M.type)return J2(_,l);dr.error("vttjs failed to load, stopping trying to process "+l.src)}):J2(_,l)}))},sl=function(p){function o(s){var n;if(void 0===s&&(s={}),!s.tech)throw new Error("A tech was not provided.");var a=oi(s,{kind:r2[s.kind]||"subtitles",language:s.language||s.srclang||""}),c=P1[a.mode]||"disabled",h=a.default;("metadata"===a.kind||"chapters"===a.kind)&&(c="hidden"),(n=p.call(this,a)||this).tech_=a.tech,n.cues_=[],n.activeCues_=[],n.preload_=!1!==n.tech_.preloadTextTracks;var _=new Xc(n.cues_),M=new Xc(n.activeCues_),P=!1,Q=Qr(y(n),function(){!this.tech_.isReady_||this.tech_.isDisposed()||(this.activeCues=this.activeCues,P&&(this.trigger("cuechange"),P=!1))});return n.tech_.one("dispose",function(){n.tech_.off("timeupdate",Q)}),"disabled"!==c&&n.tech_.on("timeupdate",Q),Object.defineProperties(y(n),{default:{get:function(){return h},set:function(){}},mode:{get:function(){return c},set:function(qe){!P1[qe]||c!==qe&&(c=qe,!this.preload_&&"disabled"!==c&&0===this.cues.length&&po(this.src,this),this.tech_.off("timeupdate",Q),"disabled"!==c&&this.tech_.on("timeupdate",Q),this.trigger("modechange"))}},cues:{get:function(){return this.loaded_?_:null},set:function(){}},activeCues:{get:function(){if(!this.loaded_)return null;if(0===this.cues.length)return M;for(var qe=this.tech_.currentTime(),Oe=[],Ae=0,Rt=this.cues.length;Ae=qe||Zt.startTime===Zt.endTime&&Zt.startTime<=qe&&Zt.startTime+.5>=qe)&&Oe.push(Zt)}if(P=!1,Oe.length!==this.activeCues_.length)P=!0;else for(var Kt=0;Kt0)return void this.trigger("vttjsloaded");var a=R().createElement("script");a.src=this.options_["vtt.js"]||"https://vjs.zencdn.net/vttjs/0.14.1/vtt.min.js",a.onload=function(){n.trigger("vttjsloaded")},a.onerror=function(){n.trigger("vttjserror")},this.on("dispose",function(){a.onload=null,a.onerror=null}),C().WebVTT=!0,this.el().parentNode.appendChild(a)}else this.ready(this.addWebVttScript_)},l.emulateTextTracks=function(){var n=this,a=this.textTracks(),c=this.remoteTextTracks(),h=function(G){return a.addTrack(G.track)},_=function(G){return a.removeTrack(G.track)};c.on("addtrack",h),c.on("removetrack",_),this.addWebVttScript_();var M=function(){return n.trigger("texttrackchange")},P=function(){M();for(var G=0;G=0;n--){var a=p[n];a[o]&&a[o](s,l)}}(p,l,h,c),h}var ku={buffered:1,currentTime:1,duration:1,muted:1,played:1,paused:1,seekable:1,volume:1,ended:1},s2={setCurrentTime:1,setMuted:1,setVolume:1},t3={play:1,pause:1};function Ki(p){return function(o,l){return o===Xs?Xs:l[p]?l[p](o):o}}function os(p,o,l,s,n,a){void 0===p&&(p={}),void 0===o&&(o=[]),void 0===n&&(n=[]),void 0===a&&(a=!1);var c=o,h=c[0],_=c.slice(1);if("string"==typeof h)os(p,ho[h],l,s,n,a);else if(h){var M=function(p,o){var l=Pu[p.id()],s=null;if(null==l)return s=o(p),Pu[p.id()]=[[o,s]],s;for(var n=0;n0;this.player_.tech(!0)&&!((Hs||$o)&&a)&&this.player_.tech(!0).focus(),this.player_.paused()?ui(this.player_.play()):this.player_.pause()}},o}($s);fn.registerComponent("PosterImage",e1);var So="#222",tc={monospace:"monospace",sansSerif:"sans-serif",serif:"serif",monospaceSansSerif:'"Andale Mono", "Lucida Console", monospace',monospaceSerif:'"Courier New", monospace',proportionalSansSerif:"sans-serif",proportionalSerif:"serif",casual:'"Comic Sans MS", Impact, fantasy',script:'"Monotype Corsiva", cursive',smallcaps:'"Andale Mono", "Lucida Console", monospace, sans-serif'};function jl(p,o){var l;if(4===p.length)l=p[1]+p[1]+p[2]+p[2]+p[3]+p[3];else{if(7!==p.length)throw new Error("Invalid color code provided, "+p+"; must be formatted as e.g. #f0e or #f604e2.");l=p.slice(1)}return"rgba("+parseInt(l.slice(0,2),16)+","+parseInt(l.slice(2,4),16)+","+parseInt(l.slice(4,6),16)+","+o+")"}function u2(p,o,l){try{p.style[o]=l}catch(s){return}}var w0=function(p){function o(s,n,a){var c;c=p.call(this,s,n,a)||this;var h=function(M){return c.updateDisplay(M)};return s.on("loadstart",function(_){return c.toggleDisplay(_)}),s.on("texttrackchange",h),s.on("loadedmetadata",function(_){return c.preselectTrack(_)}),s.ready(Qr(y(c),function(){if(s.tech_&&s.tech_.featuresNativeTextTracks)this.hide();else{s.on("fullscreenchange",h),s.on("playerresize",h),C().addEventListener("orientationchange",h),s.on("dispose",function(){return C().removeEventListener("orientationchange",h)});for(var _=this.options_.playerOptions.tracks||[],M=0;M<_.length;M++)this.player_.addRemoteTextTrack(_[M],!0);this.preselectTrack()}})),c}ue(o,p);var l=o.prototype;return l.preselectTrack=function(){for(var h,_,M,n={captions:1,subtitles:1},a=this.player_.textTracks(),c=this.player_.cache_.selectedLanguage,P=0;P0;return ui(a),void(this.player_.tech(!0)&&(!Hs&&!$o||!c)&&this.player_.tech(!0).focus())}var h=this.player_.getChild("controlBar"),_=h&&h.getChild("playToggle");if(_){var M=function(){return _.focus()};zl(a)?a.then(M,function(){}):this.setTimeout(M,1)}else this.player_.tech(!0).focus()},l.handleKeyDown=function(n){this.mouseused_=!1,p.prototype.handleKeyDown.call(this,n)},l.handleMouseDown=function(n){this.mouseused_=!0},o}(Ua);Vl.prototype.controlText_="Play Video",fn.registerComponent("BigPlayButton",Vl);var E0=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).controlText(n&&n.controlText||a.localize("Close")),a}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-close-button "+p.prototype.buildCSSClass.call(this)},l.handleClick=function(n){this.trigger({type:"close",bubbles:!1})},l.handleKeyDown=function(n){E().isEventKey(n,"Esc")?(n.preventDefault(),n.stopPropagation(),this.trigger("click")):p.prototype.handleKeyDown.call(this,n)},o}(Ua);fn.registerComponent("CloseButton",E0);var x0=function(p){function o(s,n){var a;return void 0===n&&(n={}),a=p.call(this,s,n)||this,n.replay=void 0===n.replay||n.replay,a.on(s,"play",function(c){return a.handlePlay(c)}),a.on(s,"pause",function(c){return a.handlePause(c)}),n.replay&&a.on(s,"ended",function(c){return a.handleEnded(c)}),a}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-play-control "+p.prototype.buildCSSClass.call(this)},l.handleClick=function(n){this.player_.paused()?ui(this.player_.play()):this.player_.pause()},l.handleSeeked=function(n){this.removeClass("vjs-ended"),this.player_.paused()?this.handlePause(n):this.handlePlay(n)},l.handlePlay=function(n){this.removeClass("vjs-ended"),this.removeClass("vjs-paused"),this.addClass("vjs-playing"),this.controlText("Pause")},l.handlePause=function(n){this.removeClass("vjs-playing"),this.addClass("vjs-paused"),this.controlText("Play")},l.handleEnded=function(n){var a=this;this.removeClass("vjs-playing"),this.addClass("vjs-ended"),this.controlText("Replay"),this.one(this.player_,"seeked",function(c){return a.handleSeeked(c)})},o}(Ua);x0.prototype.controlText_="Play",fn.registerComponent("PlayToggle",x0);var nc=function(o,l){o=o<0?0:o;var s=Math.floor(o%60),n=Math.floor(o/60%60),a=Math.floor(o/3600),c=Math.floor(l/60%60),h=Math.floor(l/3600);return(isNaN(o)||o===1/0)&&(a=n=s="-"),(a=a>0||h>0?a+":":"")+(n=((a||c>=10)&&n<10?"0"+n:n)+":")+(s=s<10?"0"+s:s)},rc=nc;function Hl(p,o){return void 0===o&&(o=p),rc(p,o)}var Gl=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).on(s,["timeupdate","ended"],function(c){return a.updateContent(c)}),a.updateTextNode_(),a}ue(o,p);var l=o.prototype;return l.createEl=function(){var n=this.buildCSSClass(),a=p.prototype.createEl.call(this,"div",{className:n+" vjs-time-control vjs-control"}),c=Tr("span",{className:"vjs-control-text",textContent:this.localize(this.labelText_)+"\xa0"},{role:"presentation"});return a.appendChild(c),this.contentEl_=Tr("span",{className:n+"-display"},{"aria-live":"off",role:"presentation"}),a.appendChild(this.contentEl_),a},l.dispose=function(){this.contentEl_=null,this.textNode_=null,p.prototype.dispose.call(this)},l.updateTextNode_=function(n){var a=this;void 0===n&&(n=0),n=Hl(n),this.formattedTime_!==n&&(this.formattedTime_=n,this.requestNamedAnimationFrame("TimeDisplay#updateTextNode_",function(){if(a.contentEl_){var c=a.textNode_;c&&a.contentEl_.firstChild!==c&&(c=null,dr.warn("TimeDisplay#updateTextnode_: Prevented replacement of text node element since it was no longer a child of this node. Appending a new node instead.")),a.textNode_=R().createTextNode(a.formattedTime_),a.textNode_&&(c?a.contentEl_.replaceChild(a.textNode_,c):a.contentEl_.appendChild(a.textNode_))}}))},l.updateContent=function(n){},o}(fn);Gl.prototype.labelText_="Time",Gl.prototype.controlText_="Time",fn.registerComponent("TimeDisplay",Gl);var Wl=function(p){function o(){return p.apply(this,arguments)||this}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-current-time"},l.updateContent=function(n){var a;a=this.player_.ended()?this.player_.duration():this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime(),this.updateTextNode_(a)},o}(Gl);Wl.prototype.labelText_="Current Time",Wl.prototype.controlText_="Current Time",fn.registerComponent("CurrentTimeDisplay",Wl);var Ou=function(p){function o(s,n){var a,c=function(_){return a.updateContent(_)};return(a=p.call(this,s,n)||this).on(s,"durationchange",c),a.on(s,"loadstart",c),a.on(s,"loadedmetadata",c),a}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-duration"},l.updateContent=function(n){var a=this.player_.duration();this.updateTextNode_(a)},o}(Gl);Ou.prototype.labelText_="Duration",Ou.prototype.controlText_="Duration",fn.registerComponent("DurationDisplay",Ou);var Ql=function(p){function o(){return p.apply(this,arguments)||this}return ue(o,p),o.prototype.createEl=function(){var n=p.prototype.createEl.call(this,"div",{className:"vjs-time-control vjs-time-divider"},{"aria-hidden":!0}),a=p.prototype.createEl.call(this,"div"),c=p.prototype.createEl.call(this,"span",{textContent:"/"});return a.appendChild(c),n.appendChild(a),n},o}(fn);fn.registerComponent("TimeDivider",Ql);var ic=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).on(s,"durationchange",function(c){return a.updateContent(c)}),a}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-remaining-time"},l.createEl=function(){var n=p.prototype.createEl.call(this);return!1!==this.options_.displayNegative&&n.insertBefore(Tr("span",{},{"aria-hidden":!0},"-"),this.contentEl_),n},l.updateContent=function(n){var a;"number"==typeof this.player_.duration()&&(a=this.player_.ended()?0:this.player_.remainingTimeDisplay?this.player_.remainingTimeDisplay():this.player_.remainingTime(),this.updateTextNode_(a))},o}(Gl);ic.prototype.labelText_="Remaining Time",ic.prototype.controlText_="Remaining Time",fn.registerComponent("RemainingTimeDisplay",ic);var D0=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).updateShowing(),a.on(a.player(),"durationchange",function(c){return a.updateShowing(c)}),a}ue(o,p);var l=o.prototype;return l.createEl=function(){var n=p.prototype.createEl.call(this,"div",{className:"vjs-live-control vjs-control"});return this.contentEl_=Tr("div",{className:"vjs-live-display"},{"aria-live":"off"}),this.contentEl_.appendChild(Tr("span",{className:"vjs-control-text",textContent:this.localize("Stream Type")+"\xa0"})),this.contentEl_.appendChild(R().createTextNode(this.localize("LIVE"))),n.appendChild(this.contentEl_),n},l.dispose=function(){this.contentEl_=null,p.prototype.dispose.call(this)},l.updateShowing=function(n){this.player().duration()===1/0?this.show():this.hide()},o}(fn);fn.registerComponent("LiveDisplay",D0);var L0=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).updateLiveEdgeStatus(),a.player_.liveTracker&&(a.updateLiveEdgeStatusHandler_=function(c){return a.updateLiveEdgeStatus(c)},a.on(a.player_.liveTracker,"liveedgechange",a.updateLiveEdgeStatusHandler_)),a}ue(o,p);var l=o.prototype;return l.createEl=function(){var n=p.prototype.createEl.call(this,"button",{className:"vjs-seek-to-live-control vjs-control"});return this.textEl_=Tr("span",{className:"vjs-seek-to-live-text",textContent:this.localize("LIVE")},{"aria-hidden":"true"}),n.appendChild(this.textEl_),n},l.updateLiveEdgeStatus=function(){!this.player_.liveTracker||this.player_.liveTracker.atLiveEdge()?(this.setAttribute("aria-disabled",!0),this.addClass("vjs-at-live-edge"),this.controlText("Seek to live, currently playing live")):(this.setAttribute("aria-disabled",!1),this.removeClass("vjs-at-live-edge"),this.controlText("Seek to live, currently behind live"))},l.handleClick=function(){this.player_.liveTracker.seekToLiveEdge()},l.dispose=function(){this.player_.liveTracker&&this.off(this.player_.liveTracker,"liveedgechange",this.updateLiveEdgeStatusHandler_),this.textEl_=null,p.prototype.dispose.call(this)},o}(Ua);L0.prototype.controlText_="Seek to live, currently playing live",fn.registerComponent("SeekToLive",L0);var cl=function(o,l,s){return o=Number(o),Math.min(s,Math.max(l,isNaN(o)?l:o))},Au=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).handleMouseDown_=function(c){return a.handleMouseDown(c)},a.handleMouseUp_=function(c){return a.handleMouseUp(c)},a.handleKeyDown_=function(c){return a.handleKeyDown(c)},a.handleClick_=function(c){return a.handleClick(c)},a.handleMouseMove_=function(c){return a.handleMouseMove(c)},a.update_=function(c){return a.update(c)},a.bar=a.getChild(a.options_.barName),a.vertical(!!a.options_.vertical),a.enable(),a}ue(o,p);var l=o.prototype;return l.enabled=function(){return this.enabled_},l.enable=function(){this.enabled()||(this.on("mousedown",this.handleMouseDown_),this.on("touchstart",this.handleMouseDown_),this.on("keydown",this.handleKeyDown_),this.on("click",this.handleClick_),this.on(this.player_,"controlsvisible",this.update),this.playerEvent&&this.on(this.player_,this.playerEvent,this.update),this.removeClass("disabled"),this.setAttribute("tabindex",0),this.enabled_=!0)},l.disable=function(){if(this.enabled()){var n=this.bar.el_.ownerDocument;this.off("mousedown",this.handleMouseDown_),this.off("touchstart",this.handleMouseDown_),this.off("keydown",this.handleKeyDown_),this.off("click",this.handleClick_),this.off(this.player_,"controlsvisible",this.update_),this.off(n,"mousemove",this.handleMouseMove_),this.off(n,"mouseup",this.handleMouseUp_),this.off(n,"touchmove",this.handleMouseMove_),this.off(n,"touchend",this.handleMouseUp_),this.removeAttribute("tabindex"),this.addClass("disabled"),this.playerEvent&&this.off(this.player_,this.playerEvent,this.update),this.enabled_=!1}},l.createEl=function(n,a,c){return void 0===a&&(a={}),void 0===c&&(c={}),a.className=a.className+" vjs-slider",a=Hr({tabIndex:0},a),c=Hr({role:"slider","aria-valuenow":0,"aria-valuemin":0,"aria-valuemax":100,tabIndex:0},c),p.prototype.createEl.call(this,n,a,c)},l.handleMouseDown=function(n){var a=this.bar.el_.ownerDocument;"mousedown"===n.type&&n.preventDefault(),"touchstart"===n.type&&!Ga&&n.preventDefault(),gi(),this.addClass("vjs-sliding"),this.trigger("slideractive"),this.on(a,"mousemove",this.handleMouseMove_),this.on(a,"mouseup",this.handleMouseUp_),this.on(a,"touchmove",this.handleMouseMove_),this.on(a,"touchend",this.handleMouseUp_),this.handleMouseMove(n,!0)},l.handleMouseMove=function(n){},l.handleMouseUp=function(){var n=this.bar.el_.ownerDocument;Bo(),this.removeClass("vjs-sliding"),this.trigger("sliderinactive"),this.off(n,"mousemove",this.handleMouseMove_),this.off(n,"mouseup",this.handleMouseUp_),this.off(n,"touchmove",this.handleMouseMove_),this.off(n,"touchend",this.handleMouseUp_),this.update()},l.update=function(){var n=this;if(this.el_&&this.bar){var a=this.getProgress();return a===this.progress_||(this.progress_=a,this.requestNamedAnimationFrame("Slider#update",function(){var c=n.vertical()?"height":"width";n.bar.el().style[c]=(100*a).toFixed(2)+"%"})),a}},l.getProgress=function(){return Number(cl(this.getPercent(),0,1).toFixed(4))},l.calculateDistance=function(n){var a=ns(this.el_,n);return this.vertical()?a.y:a.x},l.handleKeyDown=function(n){E().isEventKey(n,"Left")||E().isEventKey(n,"Down")?(n.preventDefault(),n.stopPropagation(),this.stepBack()):E().isEventKey(n,"Right")||E().isEventKey(n,"Up")?(n.preventDefault(),n.stopPropagation(),this.stepForward()):p.prototype.handleKeyDown.call(this,n)},l.handleClick=function(n){n.stopPropagation(),n.preventDefault()},l.vertical=function(n){if(void 0===n)return this.vertical_||!1;this.vertical_=!!n,this.vertical_?this.addClass("vjs-slider-vertical"):this.addClass("vjs-slider-horizontal")},o}(fn);fn.registerComponent("Slider",Au);var c2=function(o,l){return cl(o/l*100,0,100).toFixed(2)+"%"},i3=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).partEls_=[],a.on(s,"progress",function(c){return a.update(c)}),a}ue(o,p);var l=o.prototype;return l.createEl=function(){var n=p.prototype.createEl.call(this,"div",{className:"vjs-load-progress"}),a=Tr("span",{className:"vjs-control-text"}),c=Tr("span",{textContent:this.localize("Loaded")}),h=R().createTextNode(": ");return this.percentageEl_=Tr("span",{className:"vjs-control-text-loaded-percentage",textContent:"0%"}),n.appendChild(a),a.appendChild(c),a.appendChild(h),a.appendChild(this.percentageEl_),n},l.dispose=function(){this.partEls_=null,this.percentageEl_=null,p.prototype.dispose.call(this)},l.update=function(n){var a=this;this.requestNamedAnimationFrame("LoadProgressBar#update",function(){var c=a.player_.liveTracker,h=a.player_.buffered(),_=c&&c.isLive()?c.seekableEnd():a.player_.duration(),M=a.player_.bufferedEnd(),P=a.partEls_,Q=c2(M,_);a.percent_!==Q&&(a.el_.style.width=Q,Oa(a.percentageEl_,Q),a.percent_=Q);for(var G=0;Gh.length;Ae--)a.el_.removeChild(P[Ae-1]);P.length=h.length})},o}(fn);fn.registerComponent("LoadProgressBar",i3);var a3=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).update=xs(Qr(y(a),a.update),30),a}ue(o,p);var l=o.prototype;return l.createEl=function(){return p.prototype.createEl.call(this,"div",{className:"vjs-time-tooltip"},{"aria-hidden":"true"})},l.update=function(n,a,c){var h=Do(this.el_),_=Io(this.player_.el()),M=n.width*a;if(_&&h){var P=n.left-_.left+M,Q=n.width-M+(_.right-n.right),G=h.width/2;Ph.width&&(G=h.width),G=Math.round(G),this.el_.style.right="-"+G+"px",this.write(c)}},l.write=function(n){Oa(this.el_,n)},l.updateTime=function(n,a,c,h){var _=this;this.requestNamedAnimationFrame("TimeTooltip#updateTime",function(){var M,P=_.player_.duration();if(_.player_.liveTracker&&_.player_.liveTracker.isLive()){var Q=_.player_.liveTracker.liveWindow(),G=Q-a*Q;M=(G<1?"":"-")+Hl(G,Q)}else M=Hl(c,P);_.update(n,a,M),h&&h()})},o}(fn);fn.registerComponent("TimeTooltip",a3);var t1=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).update=xs(Qr(y(a),a.update),30),a}ue(o,p);var l=o.prototype;return l.createEl=function(){return p.prototype.createEl.call(this,"div",{className:"vjs-play-progress vjs-slider-bar"},{"aria-hidden":"true"})},l.update=function(n,a){var c=this.getChild("timeTooltip");if(c){var h=this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime();c.updateTime(n,a,h)}},o}(fn);t1.prototype.options_={children:[]},!jt&&!Gr&&t1.prototype.options_.children.push("timeTooltip"),fn.registerComponent("PlayProgressBar",t1);var o3=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).update=xs(Qr(y(a),a.update),30),a}ue(o,p);var l=o.prototype;return l.createEl=function(){return p.prototype.createEl.call(this,"div",{className:"vjs-mouse-display"})},l.update=function(n,a){var c=this,h=a*this.player_.duration();this.getChild("timeTooltip").updateTime(n,a,h,function(){c.el_.style.left=n.width*a+"px"})},o}(fn);o3.prototype.options_={children:["timeTooltip"]},fn.registerComponent("MouseTimeDisplay",o3);var oc=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).setEventHandlers_(),a}ue(o,p);var l=o.prototype;return l.setEventHandlers_=function(){var n=this;this.update_=Qr(this,this.update),this.update=xs(this.update_,30),this.on(this.player_,["ended","durationchange","timeupdate"],this.update),this.player_.liveTracker&&this.on(this.player_.liveTracker,"liveedgechange",this.update),this.updateInterval=null,this.enableIntervalHandler_=function(a){return n.enableInterval_(a)},this.disableIntervalHandler_=function(a){return n.disableInterval_(a)},this.on(this.player_,["playing"],this.enableIntervalHandler_),this.on(this.player_,["ended","pause","waiting"],this.disableIntervalHandler_),"hidden"in R()&&"visibilityState"in R()&&this.on(R(),"visibilitychange",this.toggleVisibility_)},l.toggleVisibility_=function(n){"hidden"===R().visibilityState?(this.cancelNamedAnimationFrame("SeekBar#update"),this.cancelNamedAnimationFrame("Slider#update"),this.disableInterval_(n)):(!this.player_.ended()&&!this.player_.paused()&&this.enableInterval_(),this.update())},l.enableInterval_=function(){this.updateInterval||(this.updateInterval=this.setInterval(this.update,30))},l.disableInterval_=function(n){this.player_.liveTracker&&this.player_.liveTracker.isLive()&&n&&"ended"!==n.type||!this.updateInterval||(this.clearInterval(this.updateInterval),this.updateInterval=null)},l.createEl=function(){return p.prototype.createEl.call(this,"div",{className:"vjs-progress-holder"},{"aria-label":this.localize("Progress Bar")})},l.update=function(n){var a=this;if("hidden"!==R().visibilityState){var c=p.prototype.update.call(this);return this.requestNamedAnimationFrame("SeekBar#update",function(){var h=a.player_.ended()?a.player_.duration():a.getCurrentTime_(),_=a.player_.liveTracker,M=a.player_.duration();_&&_.isLive()&&(M=a.player_.liveTracker.liveCurrentTime()),a.percent_!==c&&(a.el_.setAttribute("aria-valuenow",(100*c).toFixed(2)),a.percent_=c),(a.currentTime_!==h||a.duration_!==M)&&(a.el_.setAttribute("aria-valuetext",a.localize("progress bar timing: currentTime={1} duration={2}",[Hl(h,M),Hl(M,M)],"{1} of {2}")),a.currentTime_=h,a.duration_=M),a.bar&&a.bar.update(Io(a.el()),a.getProgress())}),c}},l.userSeek_=function(n){this.player_.liveTracker&&this.player_.liveTracker.isLive()&&this.player_.liveTracker.nextSeekedFromUser(),this.player_.currentTime(n)},l.getCurrentTime_=function(){return this.player_.scrubbing()?this.player_.getCache().currentTime:this.player_.currentTime()},l.getPercent=function(){var a,n=this.getCurrentTime_(),c=this.player_.liveTracker;return c&&c.isLive()?(a=(n-c.seekableStart())/c.liveWindow(),c.atLiveEdge()&&(a=1)):a=n/this.player_.duration(),a},l.handleMouseDown=function(n){!fo(n)||(n.stopPropagation(),this.videoWasPlaying=!this.player_.paused(),this.player_.pause(),p.prototype.handleMouseDown.call(this,n))},l.handleMouseMove=function(n,a){if(void 0===a&&(a=!1),fo(n)){!a&&!this.player_.scrubbing()&&this.player_.scrubbing(!0);var c,h=this.calculateDistance(n),_=this.player_.liveTracker;if(_&&_.isLive()){if(h>=.99)return void _.seekToLiveEdge();var M=_.seekableStart(),P=_.liveCurrentTime();if((c=M+h*_.liveWindow())>=P&&(c=P),c<=M&&(c=M+.1),c===1/0)return}else(c=h*this.player_.duration())===this.player_.duration()&&(c-=.1);this.userSeek_(c)}},l.enable=function(){p.prototype.enable.call(this);var n=this.getChild("mouseTimeDisplay");!n||n.show()},l.disable=function(){p.prototype.disable.call(this);var n=this.getChild("mouseTimeDisplay");!n||n.hide()},l.handleMouseUp=function(n){p.prototype.handleMouseUp.call(this,n),n&&n.stopPropagation(),this.player_.scrubbing(!1),this.player_.trigger({type:"timeupdate",target:this,manuallyTriggered:!0}),this.videoWasPlaying?ui(this.player_.play()):this.update_()},l.stepForward=function(){this.userSeek_(this.player_.currentTime()+5)},l.stepBack=function(){this.userSeek_(this.player_.currentTime()-5)},l.handleAction=function(n){this.player_.paused()?this.player_.play():this.player_.pause()},l.handleKeyDown=function(n){var a=this.player_.liveTracker;if(E().isEventKey(n,"Space")||E().isEventKey(n,"Enter"))n.preventDefault(),n.stopPropagation(),this.handleAction(n);else if(E().isEventKey(n,"Home"))n.preventDefault(),n.stopPropagation(),this.userSeek_(0);else if(E().isEventKey(n,"End"))n.preventDefault(),n.stopPropagation(),a&&a.isLive()?this.userSeek_(a.liveCurrentTime()):this.userSeek_(this.player_.duration());else if(/^[0-9]$/.test(E()(n))){n.preventDefault(),n.stopPropagation();var c=10*(E().codes[E()(n)]-E().codes[0])/100;a&&a.isLive()?this.userSeek_(a.seekableStart()+a.liveWindow()*c):this.userSeek_(this.player_.duration()*c)}else E().isEventKey(n,"PgDn")?(n.preventDefault(),n.stopPropagation(),this.userSeek_(this.player_.currentTime()-60)):E().isEventKey(n,"PgUp")?(n.preventDefault(),n.stopPropagation(),this.userSeek_(this.player_.currentTime()+60)):p.prototype.handleKeyDown.call(this,n)},l.dispose=function(){this.disableInterval_(),this.off(this.player_,["ended","durationchange","timeupdate"],this.update),this.player_.liveTracker&&this.off(this.player_.liveTracker,"liveedgechange",this.update),this.off(this.player_,["playing"],this.enableIntervalHandler_),this.off(this.player_,["ended","pause","waiting"],this.disableIntervalHandler_),"hidden"in R()&&"visibilityState"in R()&&this.off(R(),"visibilitychange",this.toggleVisibility_),p.prototype.dispose.call(this)},o}(Au);oc.prototype.options_={children:["loadProgressBar","playProgressBar"],barName:"playProgressBar"},!jt&&!Gr&&oc.prototype.options_.children.splice(1,0,"mouseTimeDisplay"),fn.registerComponent("SeekBar",oc);var s3=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).handleMouseMove=xs(Qr(y(a),a.handleMouseMove),30),a.throttledHandleMouseSeek=xs(Qr(y(a),a.handleMouseSeek),30),a.handleMouseUpHandler_=function(c){return a.handleMouseUp(c)},a.handleMouseDownHandler_=function(c){return a.handleMouseDown(c)},a.enable(),a}ue(o,p);var l=o.prototype;return l.createEl=function(){return p.prototype.createEl.call(this,"div",{className:"vjs-progress-control vjs-control"})},l.handleMouseMove=function(n){var a=this.getChild("seekBar");if(a){var c=a.getChild("playProgressBar"),h=a.getChild("mouseTimeDisplay");if(c||h){var _=a.el(),M=Do(_),P=ns(_,n).x;P=cl(P,0,1),h&&h.update(M,P),c&&c.update(M,a.getProgress())}}},l.handleMouseSeek=function(n){var a=this.getChild("seekBar");a&&a.handleMouseMove(n)},l.enabled=function(){return this.enabled_},l.disable=function(){if(this.children().forEach(function(a){return a.disable&&a.disable()}),this.enabled()&&(this.off(["mousedown","touchstart"],this.handleMouseDownHandler_),this.off(this.el_,"mousemove",this.handleMouseMove),this.removeListenersAddedOnMousedownAndTouchstart(),this.addClass("disabled"),this.enabled_=!1,this.player_.scrubbing())){var n=this.getChild("seekBar");this.player_.scrubbing(!1),n.videoWasPlaying&&ui(this.player_.play())}},l.enable=function(){this.children().forEach(function(n){return n.enable&&n.enable()}),!this.enabled()&&(this.on(["mousedown","touchstart"],this.handleMouseDownHandler_),this.on(this.el_,"mousemove",this.handleMouseMove),this.removeClass("disabled"),this.enabled_=!0)},l.removeListenersAddedOnMousedownAndTouchstart=function(){var n=this.el_.ownerDocument;this.off(n,"mousemove",this.throttledHandleMouseSeek),this.off(n,"touchmove",this.throttledHandleMouseSeek),this.off(n,"mouseup",this.handleMouseUpHandler_),this.off(n,"touchend",this.handleMouseUpHandler_)},l.handleMouseDown=function(n){var a=this.el_.ownerDocument,c=this.getChild("seekBar");c&&c.handleMouseDown(n),this.on(a,"mousemove",this.throttledHandleMouseSeek),this.on(a,"touchmove",this.throttledHandleMouseSeek),this.on(a,"mouseup",this.handleMouseUpHandler_),this.on(a,"touchend",this.handleMouseUpHandler_)},l.handleMouseUp=function(n){var a=this.getChild("seekBar");a&&a.handleMouseUp(n),this.removeListenersAddedOnMousedownAndTouchstart()},o}(fn);s3.prototype.options_={children:["seekBar"]},fn.registerComponent("ProgressControl",s3);var Ss=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).on(s,["enterpictureinpicture","leavepictureinpicture"],function(c){return a.handlePictureInPictureChange(c)}),a.on(s,["disablepictureinpicturechanged","loadedmetadata"],function(c){return a.handlePictureInPictureEnabledChange(c)}),a.disable(),a}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-picture-in-picture-control "+p.prototype.buildCSSClass.call(this)},l.handlePictureInPictureEnabledChange=function(){R().pictureInPictureEnabled&&!1===this.player_.disablePictureInPicture()?this.enable():this.disable()},l.handlePictureInPictureChange=function(n){this.player_.isInPictureInPicture()?this.controlText("Exit Picture-in-Picture"):this.controlText("Picture-in-Picture"),this.handlePictureInPictureEnabledChange()},l.handleClick=function(n){this.player_.isInPictureInPicture()?this.player_.exitPictureInPicture():this.player_.requestPictureInPicture()},o}(Ua);Ss.prototype.controlText_="Picture-in-Picture",fn.registerComponent("PictureInPictureToggle",Ss);var dl=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).on(s,"fullscreenchange",function(c){return a.handleFullscreenChange(c)}),!1===R()[s.fsApi_.fullscreenEnabled]&&a.disable(),a}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-fullscreen-control "+p.prototype.buildCSSClass.call(this)},l.handleFullscreenChange=function(n){this.player_.isFullscreen()?this.controlText("Non-Fullscreen"):this.controlText("Fullscreen")},l.handleClick=function(n){this.player_.isFullscreen()?this.player_.exitFullscreen():this.player_.requestFullscreen()},o}(Ua);dl.prototype.controlText_="Fullscreen",fn.registerComponent("FullscreenToggle",dl);var S0=function(p){function o(){return p.apply(this,arguments)||this}return ue(o,p),o.prototype.createEl=function(){var n=p.prototype.createEl.call(this,"div",{className:"vjs-volume-level"});return n.appendChild(p.prototype.createEl.call(this,"span",{className:"vjs-control-text"})),n},o}(fn);fn.registerComponent("VolumeLevel",S0);var P0=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).update=xs(Qr(y(a),a.update),30),a}ue(o,p);var l=o.prototype;return l.createEl=function(){return p.prototype.createEl.call(this,"div",{className:"vjs-volume-tooltip"},{"aria-hidden":"true"})},l.update=function(n,a,c,h){if(!c){var _=Io(this.el_),M=Io(this.player_.el()),P=n.width*a;if(!M||!_)return;var Q=n.left-M.left+P,G=n.width-P+(M.right-n.right),Te=_.width/2;Q_.width&&(Te=_.width),this.el_.style.right="-"+Te+"px"}this.write(h+"%")},l.write=function(n){Oa(this.el_,n)},l.updateVolume=function(n,a,c,h,_){var M=this;this.requestNamedAnimationFrame("VolumeLevelTooltip#updateVolume",function(){M.update(n,a,c,h.toFixed(0)),_&&_()})},o}(fn);fn.registerComponent("VolumeLevelTooltip",P0);var u3=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).update=xs(Qr(y(a),a.update),30),a}ue(o,p);var l=o.prototype;return l.createEl=function(){return p.prototype.createEl.call(this,"div",{className:"vjs-mouse-display"})},l.update=function(n,a,c){var h=this,_=100*a;this.getChild("volumeLevelTooltip").updateVolume(n,a,c,_,function(){c?h.el_.style.bottom=n.height*a+"px":h.el_.style.left=n.width*a+"px"})},o}(fn);u3.prototype.options_={children:["volumeLevelTooltip"]},fn.registerComponent("MouseVolumeLevelDisplay",u3);var f2=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).on("slideractive",function(c){return a.updateLastVolume_(c)}),a.on(s,"volumechange",function(c){return a.updateARIAAttributes(c)}),s.ready(function(){return a.updateARIAAttributes()}),a}ue(o,p);var l=o.prototype;return l.createEl=function(){return p.prototype.createEl.call(this,"div",{className:"vjs-volume-bar vjs-slider-bar"},{"aria-label":this.localize("Volume Level"),"aria-live":"polite"})},l.handleMouseDown=function(n){!fo(n)||p.prototype.handleMouseDown.call(this,n)},l.handleMouseMove=function(n){var a=this.getChild("mouseVolumeLevelDisplay");if(a){var c=this.el(),h=Io(c),_=this.vertical(),M=ns(c,n);M=_?M.y:M.x,M=cl(M,0,1),a.update(h,M,_)}!fo(n)||(this.checkMuted(),this.player_.volume(this.calculateDistance(n)))},l.checkMuted=function(){this.player_.muted()&&this.player_.muted(!1)},l.getPercent=function(){return this.player_.muted()?0:this.player_.volume()},l.stepForward=function(){this.checkMuted(),this.player_.volume(this.player_.volume()+.1)},l.stepBack=function(){this.checkMuted(),this.player_.volume(this.player_.volume()-.1)},l.updateARIAAttributes=function(n){var a=this.player_.muted()?0:this.volumeAsPercentage_();this.el_.setAttribute("aria-valuenow",a),this.el_.setAttribute("aria-valuetext",a+"%")},l.volumeAsPercentage_=function(){return Math.round(100*this.player_.volume())},l.updateLastVolume_=function(){var n=this,a=this.player_.volume();this.one("sliderinactive",function(){0===n.player_.volume()&&n.player_.lastVolume_(a)})},o}(Au);f2.prototype.options_={children:["volumeLevel"],barName:"volumeLevel"},!jt&&!Gr&&f2.prototype.options_.children.splice(0,0,"mouseVolumeLevelDisplay"),f2.prototype.playerEvent="volumechange",fn.registerComponent("VolumeBar",f2);var c3=function(p){function o(s,n){var a;return void 0===n&&(n={}),n.vertical=n.vertical||!1,(void 0===n.volumeBar||Ro(n.volumeBar))&&(n.volumeBar=n.volumeBar||{},n.volumeBar.vertical=n.vertical),function(o,l){l.tech_&&!l.tech_.featuresVolumeControl&&o.addClass("vjs-hidden"),o.on(l,"loadstart",function(){l.tech_.featuresVolumeControl?o.removeClass("vjs-hidden"):o.addClass("vjs-hidden")})}(y(a=p.call(this,s,n)||this),s),a.throttledHandleMouseMove=xs(Qr(y(a),a.handleMouseMove),30),a.handleMouseUpHandler_=function(c){return a.handleMouseUp(c)},a.on("mousedown",function(c){return a.handleMouseDown(c)}),a.on("touchstart",function(c){return a.handleMouseDown(c)}),a.on("mousemove",function(c){return a.handleMouseMove(c)}),a.on(a.volumeBar,["focus","slideractive"],function(){a.volumeBar.addClass("vjs-slider-active"),a.addClass("vjs-slider-active"),a.trigger("slideractive")}),a.on(a.volumeBar,["blur","sliderinactive"],function(){a.volumeBar.removeClass("vjs-slider-active"),a.removeClass("vjs-slider-active"),a.trigger("sliderinactive")}),a}ue(o,p);var l=o.prototype;return l.createEl=function(){var n="vjs-volume-horizontal";return this.options_.vertical&&(n="vjs-volume-vertical"),p.prototype.createEl.call(this,"div",{className:"vjs-volume-control vjs-control "+n})},l.handleMouseDown=function(n){var a=this.el_.ownerDocument;this.on(a,"mousemove",this.throttledHandleMouseMove),this.on(a,"touchmove",this.throttledHandleMouseMove),this.on(a,"mouseup",this.handleMouseUpHandler_),this.on(a,"touchend",this.handleMouseUpHandler_)},l.handleMouseUp=function(n){var a=this.el_.ownerDocument;this.off(a,"mousemove",this.throttledHandleMouseMove),this.off(a,"touchmove",this.throttledHandleMouseMove),this.off(a,"mouseup",this.handleMouseUpHandler_),this.off(a,"touchend",this.handleMouseUpHandler_)},l.handleMouseMove=function(n){this.volumeBar.handleMouseMove(n)},o}(fn);c3.prototype.options_={children:["volumeBar"]},fn.registerComponent("VolumeControl",c3);var ia=function(p){function o(s,n){var a;return function(o,l){l.tech_&&!l.tech_.featuresMuteControl&&o.addClass("vjs-hidden"),o.on(l,"loadstart",function(){l.tech_.featuresMuteControl?o.removeClass("vjs-hidden"):o.addClass("vjs-hidden")})}(y(a=p.call(this,s,n)||this),s),a.on(s,["loadstart","volumechange"],function(c){return a.update(c)}),a}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-mute-control "+p.prototype.buildCSSClass.call(this)},l.handleClick=function(n){var a=this.player_.volume(),c=this.player_.lastVolume_();if(0===a){var h=c<.1?.1:c;this.player_.volume(h),this.player_.muted(!1)}else this.player_.muted(!this.player_.muted())},l.update=function(n){this.updateIcon_(),this.updateControlText_()},l.updateIcon_=function(){var n=this.player_.volume(),a=3;jt&&this.player_.tech_&&this.player_.tech_.el_&&this.player_.muted(this.player_.tech_.el_.muted),0===n||this.player_.muted()?a=0:n<.33?a=1:n<.67&&(a=2);for(var c=0;c<4;c++)es(this.el_,"vjs-vol-"+c);lo(this.el_,"vjs-vol-"+a)},l.updateControlText_=function(){var a=this.player_.muted()||0===this.player_.volume()?"Unmute":"Mute";this.controlText()!==a&&this.controlText(a)},o}(Ua);ia.prototype.controlText_="Mute",fn.registerComponent("MuteToggle",ia);var ls=function(p){function o(s,n){var a;return void 0===n&&(n={}),void 0!==n.inline?n.inline=n.inline:n.inline=!0,(void 0===n.volumeControl||Ro(n.volumeControl))&&(n.volumeControl=n.volumeControl||{},n.volumeControl.vertical=!n.inline),(a=p.call(this,s,n)||this).handleKeyPressHandler_=function(c){return a.handleKeyPress(c)},a.on(s,["loadstart"],function(c){return a.volumePanelState_(c)}),a.on(a.muteToggle,"keyup",function(c){return a.handleKeyPress(c)}),a.on(a.volumeControl,"keyup",function(c){return a.handleVolumeControlKeyUp(c)}),a.on("keydown",function(c){return a.handleKeyPress(c)}),a.on("mouseover",function(c){return a.handleMouseOver(c)}),a.on("mouseout",function(c){return a.handleMouseOut(c)}),a.on(a.volumeControl,["slideractive"],a.sliderActive_),a.on(a.volumeControl,["sliderinactive"],a.sliderInactive_),a}ue(o,p);var l=o.prototype;return l.sliderActive_=function(){this.addClass("vjs-slider-active")},l.sliderInactive_=function(){this.removeClass("vjs-slider-active")},l.volumePanelState_=function(){this.volumeControl.hasClass("vjs-hidden")&&this.muteToggle.hasClass("vjs-hidden")&&this.addClass("vjs-hidden"),this.volumeControl.hasClass("vjs-hidden")&&!this.muteToggle.hasClass("vjs-hidden")&&this.addClass("vjs-mute-toggle-only")},l.createEl=function(){var n="vjs-volume-panel-horizontal";return this.options_.inline||(n="vjs-volume-panel-vertical"),p.prototype.createEl.call(this,"div",{className:"vjs-volume-panel vjs-control "+n})},l.dispose=function(){this.handleMouseOut(),p.prototype.dispose.call(this)},l.handleVolumeControlKeyUp=function(n){E().isEventKey(n,"Esc")&&this.muteToggle.focus()},l.handleMouseOver=function(n){this.addClass("vjs-hover"),Yi(R(),"keyup",this.handleKeyPressHandler_)},l.handleMouseOut=function(n){this.removeClass("vjs-hover"),wi(R(),"keyup",this.handleKeyPressHandler_)},l.handleKeyPress=function(n){E().isEventKey(n,"Esc")&&this.handleMouseOut()},o}(fn);ls.prototype.options_={children:["muteToggle","volumeControl"]},fn.registerComponent("VolumePanel",ls);var Yl=function(p){function o(s,n){var a;return a=p.call(this,s,n)||this,n&&(a.menuButton_=n.menuButton),a.focusedChild_=-1,a.on("keydown",function(c){return a.handleKeyDown(c)}),a.boundHandleBlur_=function(c){return a.handleBlur(c)},a.boundHandleTapClick_=function(c){return a.handleTapClick(c)},a}ue(o,p);var l=o.prototype;return l.addEventListenerForItem=function(n){n instanceof fn&&(this.on(n,"blur",this.boundHandleBlur_),this.on(n,["tap","click"],this.boundHandleTapClick_))},l.removeEventListenerForItem=function(n){n instanceof fn&&(this.off(n,"blur",this.boundHandleBlur_),this.off(n,["tap","click"],this.boundHandleTapClick_))},l.removeChild=function(n){"string"==typeof n&&(n=this.getChild(n)),this.removeEventListenerForItem(n),p.prototype.removeChild.call(this,n)},l.addItem=function(n){var a=this.addChild(n);a&&this.addEventListenerForItem(a)},l.createEl=function(){var n=this.options_.contentElType||"ul";this.contentEl_=Tr(n,{className:"vjs-menu-content"}),this.contentEl_.setAttribute("role","menu");var a=p.prototype.createEl.call(this,"div",{append:this.contentEl_,className:"vjs-menu"});return a.appendChild(this.contentEl_),Yi(a,"click",function(c){c.preventDefault(),c.stopImmediatePropagation()}),a},l.dispose=function(){this.contentEl_=null,this.boundHandleBlur_=null,this.boundHandleTapClick_=null,p.prototype.dispose.call(this)},l.handleBlur=function(n){var a=n.relatedTarget||R().activeElement;if(!this.children().some(function(h){return h.el()===a})){var c=this.menuButton_;c&&c.buttonPressed_&&a!==c.el().firstChild&&c.unpressButton()}},l.handleTapClick=function(n){if(this.menuButton_){this.menuButton_.unpressButton();var a=this.children();if(!Array.isArray(a))return;var c=a.filter(function(h){return h.el()===n.target})[0];if(!c)return;"CaptionSettingsMenuItem"!==c.name()&&this.menuButton_.focus()}},l.handleKeyDown=function(n){E().isEventKey(n,"Left")||E().isEventKey(n,"Down")?(n.preventDefault(),n.stopPropagation(),this.stepForward()):(E().isEventKey(n,"Right")||E().isEventKey(n,"Up"))&&(n.preventDefault(),n.stopPropagation(),this.stepBack())},l.stepForward=function(){var n=0;void 0!==this.focusedChild_&&(n=this.focusedChild_+1),this.focus(n)},l.stepBack=function(){var n=0;void 0!==this.focusedChild_&&(n=this.focusedChild_-1),this.focus(n)},l.focus=function(n){void 0===n&&(n=0);var a=this.children().slice();a.length&&a[0].hasClass("vjs-menu-title")&&a.shift(),a.length>0&&(n<0?n=0:n>=a.length&&(n=a.length-1),this.focusedChild_=n,a[n].el_.focus())},o}(fn);fn.registerComponent("Menu",Yl);var n1=function(p){function o(s,n){var a;void 0===n&&(n={}),(a=p.call(this,s,n)||this).menuButton_=new Ua(s,n),a.menuButton_.controlText(a.controlText_),a.menuButton_.el_.setAttribute("aria-haspopup","true");var c=Ua.prototype.buildCSSClass();a.menuButton_.el_.className=a.buildCSSClass()+" "+c,a.menuButton_.removeClass("vjs-control"),a.addChild(a.menuButton_),a.update(),a.enabled_=!0;var h=function(M){return a.handleClick(M)};return a.handleMenuKeyUp_=function(_){return a.handleMenuKeyUp(_)},a.on(a.menuButton_,"tap",h),a.on(a.menuButton_,"click",h),a.on(a.menuButton_,"keydown",function(_){return a.handleKeyDown(_)}),a.on(a.menuButton_,"mouseenter",function(){a.addClass("vjs-hover"),a.menu.show(),Yi(R(),"keyup",a.handleMenuKeyUp_)}),a.on("mouseleave",function(_){return a.handleMouseLeave(_)}),a.on("keydown",function(_){return a.handleSubmenuKeyDown(_)}),a}ue(o,p);var l=o.prototype;return l.update=function(){var n=this.createMenu();this.menu&&(this.menu.dispose(),this.removeChild(this.menu)),this.menu=n,this.addChild(n),this.buttonPressed_=!1,this.menuButton_.el_.setAttribute("aria-expanded","false"),this.items&&this.items.length<=this.hideThreshold_?this.hide():this.show()},l.createMenu=function(){var n=new Yl(this.player_,{menuButton:this});if(this.hideThreshold_=0,this.options_.title){var a=Tr("li",{className:"vjs-menu-title",textContent:Vi(this.options_.title),tabIndex:-1}),c=new fn(this.player_,{el:a});n.addItem(c)}if(this.items=this.createItems(),this.items)for(var h=0;h-1&&"showing"===M.mode){c=!1;break}}c!==this.isSelected_&&this.selected(c)},l.handleSelectedLanguageChange=function(n){for(var a=this.player().textTracks(),c=!0,h=0,_=a.length;h<_;h++){var M=a[h];if(["captions","descriptions","subtitles"].indexOf(M.kind)>-1&&"showing"===M.mode){c=!1;break}}c&&(this.player_.cache_.selectedLanguage={enabled:!1})},o}(Nr);fn.registerComponent("OffTextTrackMenuItem",us);var cs=function(p){function o(s,n){return void 0===n&&(n={}),n.tracks=s.textTracks(),p.call(this,s,n)||this}return ue(o,p),o.prototype.createItems=function(n,a){var c;void 0===n&&(n=[]),void 0===a&&(a=Nr),this.label_&&(c=this.label_+" off"),n.push(new us(this.player_,{kinds:this.kinds_,kind:this.kind_,label:c})),this.hideThreshold_+=1;var h=this.player_.textTracks();Array.isArray(this.kinds_)||(this.kinds_=[this.kind_]);for(var _=0;_-1){var P=new a(this.player_,{track:M,kinds:this.kinds_,kind:this.kind_,selectable:!0,multiSelectable:!1});P.addClass("vjs-"+M.kind+"-menu-item"),n.push(P)}}return n},o}(O1);fn.registerComponent("TextTrackButton",cs);var A1=function(p){function o(s,n){var a,c=n.track,h=n.cue,_=s.currentTime();return n.selectable=!0,n.multiSelectable=!1,n.label=h.text,n.selected=h.startTime<=_&&_=0;a--){var c=n[a];if(c.kind===this.kind_)return c}},l.getMenuCaption=function(){return this.track_&&this.track_.label?this.track_.label:this.localize(Vi(this.kind_))},l.createMenu=function(){return this.options_.title=this.getMenuCaption(),p.prototype.createMenu.call(this)},l.createItems=function(){var n=[];if(!this.track_)return n;var a=this.track_.cues;if(!a)return n;for(var c=0,h=a.length;c-1&&(a.label_="captions"),a.menuButton_.controlText(Vi(a.label_)),a}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-subs-caps-button "+p.prototype.buildCSSClass.call(this)},l.buildWrapperCSSClass=function(){return"vjs-subs-caps-button "+p.prototype.buildWrapperCSSClass.call(this)},l.createItems=function(){var n=[];return!(this.player().tech_&&this.player().tech_.featuresNativeTextTracks)&&this.player().getChild("textTrackSettings")&&(n.push(new i1(this.player_,{kind:this.label_})),this.hideThreshold_+=1),n=p.prototype.createItems.call(this,n,o1)},o}(cs);s1.prototype.kinds_=["captions","subtitles"],s1.prototype.controlText_="Subtitles",fn.registerComponent("SubsCapsButton",s1);var N1=function(p){function o(s,n){var a,c=n.track,h=s.audioTracks();n.label=c.label||c.language||"Unknown",n.selected=c.enabled,(a=p.call(this,s,n)||this).track=c,a.addClass("vjs-"+c.kind+"-menu-item");var _=function(){for(var P=arguments.length,Q=new Array(P),G=0;G=0;c--)a.push(new fl(this.player(),{rate:n[c]+"x"}));return a},l.updateARIAAttributes=function(){this.el().setAttribute("aria-valuenow",this.player().playbackRate())},l.handleClick=function(n){var a=this.player().playbackRate(),c=this.playbackRates(),_=(c.indexOf(a)+1)%c.length;this.player().playbackRate(c[_])},l.handlePlaybackRateschange=function(n){this.update()},l.playbackRates=function(){var n=this.player();return n.playbackRates&&n.playbackRates()||[]},l.playbackRateSupported=function(){return this.player().tech_&&this.player().tech_.featuresPlaybackRate&&this.playbackRates()&&this.playbackRates().length>0},l.updateVisibility=function(n){this.playbackRateSupported()?this.removeClass("vjs-hidden"):this.addClass("vjs-hidden")},l.updateLabel=function(n){this.playbackRateSupported()&&(this.labelEl_.textContent=this.player().playbackRate()+"x")},o}(n1);pl.prototype.controlText_="Playback Rate",fn.registerComponent("PlaybackRateMenuButton",pl);var Xl=function(p){function o(){return p.apply(this,arguments)||this}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-spacer "+p.prototype.buildCSSClass.call(this)},l.createEl=function(n,a,c){return void 0===n&&(n="div"),void 0===a&&(a={}),void 0===c&&(c={}),a.className||(a.className=this.buildCSSClass()),p.prototype.createEl.call(this,n,a,c)},o}(fn);fn.registerComponent("Spacer",Xl);var hl=function(p){function o(){return p.apply(this,arguments)||this}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-custom-control-spacer "+p.prototype.buildCSSClass.call(this)},l.createEl=function(){return p.prototype.createEl.call(this,"div",{className:this.buildCSSClass(),textContent:"\xa0"})},o}(Xl);fn.registerComponent("CustomControlSpacer",hl);var R1=function(p){function o(){return p.apply(this,arguments)||this}return ue(o,p),o.prototype.createEl=function(){return p.prototype.createEl.call(this,"div",{className:"vjs-control-bar",dir:"ltr"})},o}(fn);R1.prototype.options_={children:["playToggle","volumePanel","currentTimeDisplay","timeDivider","durationDisplay","progressControl","liveDisplay","seekToLive","remainingTimeDisplay","customControlSpacer","playbackRateMenuButton","chaptersButton","descriptionsButton","subsCapsButton","audioTrackButton","fullscreenToggle"]},"exitPictureInPicture"in R()&&R1.prototype.options_.children.splice(R1.prototype.options_.children.length-1,0,"pictureInPictureToggle"),fn.registerComponent("ControlBar",R1);var $l=function(p){function o(s,n){var a;return(a=p.call(this,s,n)||this).on(s,"error",function(c){return a.open(c)}),a}ue(o,p);var l=o.prototype;return l.buildCSSClass=function(){return"vjs-error-display "+p.prototype.buildCSSClass.call(this)},l.content=function(){var n=this.player().error();return n?this.localize(n.message):""},o}(Lu);$l.prototype.options_=V({},Lu.prototype.options_,{pauseOnOpen:!1,fillAlways:!0,temporary:!1,uncloseable:!0}),fn.registerComponent("ErrorDisplay",$l);var Ps="vjs-text-track-settings",ks=["#000","Black"],F1=["#00F","Blue"],l1=["#0FF","Cyan"],gl=["#0F0","Green"],go=["#F0F","Magenta"],ml=["#F00","Red"],vl=["#FFF","White"],u1=["#FF0","Yellow"],c1=["1","Opaque"],B1=["0.5","Semi-Transparent"],eu=["0","Transparent"],fs={backgroundColor:{selector:".vjs-bg-color > select",id:"captions-background-color-%s",label:"Color",options:[ks,vl,ml,gl,F1,u1,go,l1]},backgroundOpacity:{selector:".vjs-bg-opacity > select",id:"captions-background-opacity-%s",label:"Transparency",options:[c1,B1,eu]},color:{selector:".vjs-fg-color > select",id:"captions-foreground-color-%s",label:"Color",options:[vl,ks,ml,gl,F1,u1,go,l1]},edgeStyle:{selector:".vjs-edge-style > select",id:"%s",label:"Text Edge Style",options:[["none","None"],["raised","Raised"],["depressed","Depressed"],["uniform","Uniform"],["dropshadow","Dropshadow"]]},fontFamily:{selector:".vjs-font-family > select",id:"captions-font-family-%s",label:"Font Family",options:[["proportionalSansSerif","Proportional Sans-Serif"],["monospaceSansSerif","Monospace Sans-Serif"],["proportionalSerif","Proportional Serif"],["monospaceSerif","Monospace Serif"],["casual","Casual"],["script","Script"],["small-caps","Small Caps"]]},fontPercent:{selector:".vjs-font-percent > select",id:"captions-font-size-%s",label:"Font Size",options:[["0.50","50%"],["0.75","75%"],["1.00","100%"],["1.25","125%"],["1.50","150%"],["1.75","175%"],["2.00","200%"],["3.00","300%"],["4.00","400%"]],default:2,parser:function(o){return"1.00"===o?null:Number(o)}},textOpacity:{selector:".vjs-text-opacity > select",id:"captions-foreground-opacity-%s",label:"Transparency",options:[c1,B1]},windowColor:{selector:".vjs-window-color > select",id:"captions-window-color-%s",label:"Color"},windowOpacity:{selector:".vjs-window-opacity > select",id:"captions-window-opacity-%s",label:"Transparency",options:[eu,B1,c1]}};function tu(p,o){if(o&&(p=o(p)),p&&"none"!==p)return p}fs.windowColor.options=fs.backgroundColor.options;var nu=function(p){function o(s,n){var a;return n.temporary=!1,(a=p.call(this,s,n)||this).updateDisplay=a.updateDisplay.bind(y(a)),a.fill(),a.hasBeenOpened_=a.hasBeenFilled_=!0,a.endDialog=Tr("p",{className:"vjs-control-text",textContent:a.localize("End of dialog window.")}),a.el().appendChild(a.endDialog),a.setDefaults(),void 0===n.persistTextTrackSettings&&(a.options_.persistTextTrackSettings=a.options_.playerOptions.persistTextTrackSettings),a.on(a.$(".vjs-done-button"),"click",function(){a.saveSettings(),a.close()}),a.on(a.$(".vjs-default-button"),"click",function(){a.setDefaults(),a.updateDisplay()}),Zn(fs,function(c){a.on(a.$(c.selector),"change",a.updateDisplay)}),a.options_.persistTextTrackSettings&&a.restoreSettings(),a}ue(o,p);var l=o.prototype;return l.dispose=function(){this.endDialog=null,p.prototype.dispose.call(this)},l.createElSelect_=function(n,a,c){var h=this;void 0===a&&(a=""),void 0===c&&(c="label");var _=fs[n],M=_.id.replace("%s",this.id_),P=[a,M].join(" ").trim();return["<"+c+' id="'+M+'" class="'+("label"===c?"vjs-label":"")+'">',this.localize(_.label),"",'").join("")},l.createElFgColor_=function(){var n="captions-text-legend-"+this.id_;return['
','',this.localize("Text"),"",this.createElSelect_("color",n),'',this.createElSelect_("textOpacity",n),"","
"].join("")},l.createElBgColor_=function(){var n="captions-background-"+this.id_;return['
','',this.localize("Background"),"",this.createElSelect_("backgroundColor",n),'',this.createElSelect_("backgroundOpacity",n),"","
"].join("")},l.createElWinColor_=function(){var n="captions-window-"+this.id_;return['
','',this.localize("Window"),"",this.createElSelect_("windowColor",n),'',this.createElSelect_("windowOpacity",n),"","
"].join("")},l.createElColors_=function(){return Tr("div",{className:"vjs-track-settings-colors",innerHTML:[this.createElFgColor_(),this.createElBgColor_(),this.createElWinColor_()].join("")})},l.createElFont_=function(){return Tr("div",{className:"vjs-track-settings-font",innerHTML:['
',this.createElSelect_("fontPercent","","legend"),"
",'
',this.createElSelect_("edgeStyle","","legend"),"
",'
',this.createElSelect_("fontFamily","","legend"),"
"].join("")})},l.createElControls_=function(){var n=this.localize("restore all settings to the default values");return Tr("div",{className:"vjs-track-settings-controls",innerHTML:['",'"].join("")})},l.content=function(){return[this.createElColors_(),this.createElFont_(),this.createElControls_()]},l.label=function(){return this.localize("Caption Settings Dialog")},l.description=function(){return this.localize("Beginning of dialog window. Escape will cancel and close the window.")},l.buildCSSClass=function(){return p.prototype.buildCSSClass.call(this)+" vjs-text-track-settings"},l.getValues=function(){var n=this;return function(p,o,l){return void 0===l&&(l=0),Us(p).reduce(function(s,n){return o(s,p[n],n)},l)}(fs,function(a,c,h){var _=function(p,o){return tu(p.options[p.options.selectedIndex].value,o)}(n.$(c.selector),c.parser);return void 0!==_&&(a[h]=_),a},{})},l.setValues=function(n){var a=this;Zn(fs,function(c,h){!function(p,o,l){if(o)for(var s=0;sthis.options_.liveTolerance;(!this.timeupdateSeen_||h===1/0)&&(M=!1),M!==this.behindLiveEdge_&&(this.behindLiveEdge_=M,this.trigger("liveedgechange"))}},l.handleDurationchange=function(){this.toggleTracking()},l.toggleTracking=function(){this.player_.duration()===1/0&&this.liveWindow()>=this.options_.trackingThreshold?(this.player_.options_.liveui&&this.player_.addClass("vjs-liveui"),this.startTracking()):(this.player_.removeClass("vjs-liveui"),this.stopTracking())},l.startTracking=function(){this.isTracking()||(this.timeupdateSeen_||(this.timeupdateSeen_=this.player_.hasStarted()),this.trackingInterval_=this.setInterval(this.trackLiveHandler_,30),this.trackLive_(),this.on(this.player_,["play","pause"],this.trackLiveHandler_),this.timeupdateSeen_?this.on(this.player_,"seeked",this.handleSeeked_):(this.one(this.player_,"play",this.handlePlay_),this.one(this.player_,"timeupdate",this.handleFirstTimeupdate_)))},l.handleFirstTimeupdate=function(){this.timeupdateSeen_=!0,this.on(this.player_,"seeked",this.handleSeeked_)},l.handleSeeked=function(){var n=Math.abs(this.liveCurrentTime()-this.player_.currentTime());this.seekedBehindLive_=this.nextSeekedFromUser_&&n>2,this.nextSeekedFromUser_=!1,this.trackLive_()},l.handlePlay=function(){this.one(this.player_,"timeupdate",this.seekToLiveEdge_)},l.reset_=function(){this.lastTime_=-1,this.pastSeekEnd_=0,this.lastSeekEnd_=-1,this.behindLiveEdge_=!0,this.timeupdateSeen_=!1,this.seekedBehindLive_=!1,this.nextSeekedFromUser_=!1,this.clearInterval(this.trackingInterval_),this.trackingInterval_=null,this.off(this.player_,["play","pause"],this.trackLiveHandler_),this.off(this.player_,"seeked",this.handleSeeked_),this.off(this.player_,"play",this.handlePlay_),this.off(this.player_,"timeupdate",this.handleFirstTimeupdate_),this.off(this.player_,"timeupdate",this.seekToLiveEdge_)},l.nextSeekedFromUser=function(){this.nextSeekedFromUser_=!0},l.stopTracking=function(){!this.isTracking()||(this.reset_(),this.trigger("liveedgechange"))},l.seekableEnd=function(){for(var n=this.player_.seekable(),a=[],c=n?n.length:0;c--;)a.push(n.end(c));return a.length?a.sort()[a.length-1]:1/0},l.seekableStart=function(){for(var n=this.player_.seekable(),a=[],c=n?n.length:0;c--;)a.push(n.start(c));return a.length?a.sort()[0]:0},l.liveWindow=function(){var n=this.liveCurrentTime();return n===1/0?0:n-this.seekableStart()},l.isLive=function(){return this.isTracking()},l.atLiveEdge=function(){return!this.behindLiveEdge()},l.liveCurrentTime=function(){return this.pastSeekEnd()+this.seekableEnd()},l.pastSeekEnd=function(){var n=this.seekableEnd();return-1!==this.lastSeekEnd_&&n!==this.lastSeekEnd_&&(this.pastSeekEnd_=0),this.lastSeekEnd_=n,this.pastSeekEnd_},l.behindLiveEdge=function(){return this.behindLiveEdge_},l.isTracking=function(){return"number"==typeof this.trackingInterval_},l.seekToLiveEdge=function(){this.seekedBehindLive_=!1,!this.atLiveEdge()&&(this.nextSeekedFromUser_=!1,this.player_.currentTime(this.liveCurrentTime()))},l.dispose=function(){this.off(R(),"visibilitychange",this.handleVisibilityChange_),this.stopTracking(),p.prototype.dispose.call(this)},o}(fn);fn.registerComponent("LiveTracker",Z1);var Mn,b=function(o){var l=o.el();if(l.hasAttribute("src"))return o.triggerSourceset(l.src),!0;var s=o.$$("source"),n=[],a="";if(!s.length)return!1;for(var c=0;c=2&&_.push("loadeddata"),n.readyState>=3&&_.push("canplay"),n.readyState>=4&&_.push("canplaythrough"),this.ready(function(){_.forEach(function(M){this.trigger(M)},this)})}},l.setScrubbing=function(n){this.isScrubbing_=n},l.scrubbing=function(){return this.isScrubbing_},l.setCurrentTime=function(n){try{this.isScrubbing_&&this.el_.fastSeek&&gn?this.el_.fastSeek(n):this.el_.currentTime=n}catch(a){dr(a,"Video is not ready. (Video.js)")}},l.duration=function(){var n=this;if(this.el_.duration===1/0&&Gr&&Ga&&0===this.el_.currentTime){return this.on("timeupdate",function c(){n.el_.currentTime>0&&(n.el_.duration===1/0&&n.trigger("durationchange"),n.off("timeupdate",c))}),NaN}return this.el_.duration||NaN},l.width=function(){return this.el_.offsetWidth},l.height=function(){return this.el_.offsetHeight},l.proxyWebkitFullscreen_=function(){var n=this;if("webkitDisplayingFullscreen"in this.el_){var a=function(){this.trigger("fullscreenchange",{isFullscreen:!1}),this.el_.controls&&!this.options_.nativeControlsForTouch&&this.controls()&&(this.el_.controls=!1)},c=function(){"webkitPresentationMode"in this.el_&&"picture-in-picture"!==this.el_.webkitPresentationMode&&(this.one("webkitendfullscreen",a),this.trigger("fullscreenchange",{isFullscreen:!0,nativeIOSFullscreen:!0}))};this.on("webkitbeginfullscreen",c),this.on("dispose",function(){n.off("webkitbeginfullscreen",c),n.off("webkitendfullscreen",a)})}},l.supportsFullScreen=function(){if("function"==typeof this.el_.webkitEnterFullScreen){var n=C().navigator&&C().navigator.userAgent||"";if(/Android/.test(n)||!/Chrome|Mac OS X 10.5/.test(n))return!0}return!1},l.enterFullScreen=function(){var n=this.el_;if(n.paused&&n.networkState<=n.HAVE_METADATA)ui(this.el_.play()),this.setTimeout(function(){n.pause();try{n.webkitEnterFullScreen()}catch(a){this.trigger("fullscreenerror",a)}},0);else try{n.webkitEnterFullScreen()}catch(a){this.trigger("fullscreenerror",a)}},l.exitFullScreen=function(){this.el_.webkitDisplayingFullscreen?this.el_.webkitExitFullScreen():this.trigger("fullscreenerror",new Error("The video is not fullscreen"))},l.requestPictureInPicture=function(){return this.el_.requestPictureInPicture()},l.src=function(n){if(void 0===n)return this.el_.src;this.setSrc(n)},l.reset=function(){o.resetMediaElement(this.el_)},l.currentSrc=function(){return this.currentSource_?this.currentSource_.src:this.el_.currentSrc},l.setControls=function(n){this.el_.controls=!!n},l.addTextTrack=function(n,a,c){return this.featuresNativeTextTracks?this.el_.addTextTrack(n,a,c):p.prototype.addTextTrack.call(this,n,a,c)},l.createRemoteTextTrack=function(n){if(!this.featuresNativeTextTracks)return p.prototype.createRemoteTextTrack.call(this,n);var a=R().createElement("track");return n.kind&&(a.kind=n.kind),n.label&&(a.label=n.label),(n.language||n.srclang)&&(a.srclang=n.language||n.srclang),n.default&&(a.default=n.default),n.id&&(a.id=n.id),n.src&&(a.src=n.src),a},l.addRemoteTextTrack=function(n,a){var c=p.prototype.addRemoteTextTrack.call(this,n,a);return this.featuresNativeTextTracks&&this.el().appendChild(c),c},l.removeRemoteTextTrack=function(n){if(p.prototype.removeRemoteTextTrack.call(this,n),this.featuresNativeTextTracks)for(var a=this.$$("track"),c=a.length;c--;)(n===a[c]||n===a[c].track)&&this.el().removeChild(a[c])},l.getVideoPlaybackQuality=function(){if("function"==typeof this.el().getVideoPlaybackQuality)return this.el().getVideoPlaybackQuality();var n={};return void 0!==this.el().webkitDroppedFrameCount&&void 0!==this.el().webkitDecodedFrameCount&&(n.droppedVideoFrames=this.el().webkitDroppedFrameCount,n.totalVideoFrames=this.el().webkitDecodedFrameCount),C().performance&&"function"==typeof C().performance.now?n.creationTime=C().performance.now():C().performance&&C().performance.timing&&"number"==typeof C().performance.timing.navigationStart&&(n.creationTime=C().Date.now()-C().performance.timing.navigationStart),n},o}(Di);Ht(Ut,"TEST_VID",function(){if(li()){var p=R().createElement("video"),o=R().createElement("track");return o.kind="captions",o.srclang="en",o.label="English",p.appendChild(o),p}}),Ut.isSupported=function(){try{Ut.TEST_VID.volume=.5}catch(p){return!1}return!(!Ut.TEST_VID||!Ut.TEST_VID.canPlayType)},Ut.canPlayType=function(p){return Ut.TEST_VID.canPlayType(p)},Ut.canPlaySource=function(p,o){return Ut.canPlayType(p.type)},Ut.canControlVolume=function(){try{var p=Ut.TEST_VID.volume;Ut.TEST_VID.volume=p/2+.1;var o=p!==Ut.TEST_VID.volume;return o&&jt?(C().setTimeout(function(){Ut&&Ut.prototype&&(Ut.prototype.featuresVolumeControl=p!==Ut.TEST_VID.volume)}),!1):o}catch(l){return!1}},Ut.canMuteVolume=function(){try{var p=Ut.TEST_VID.muted;return Ut.TEST_VID.muted=!p,Ut.TEST_VID.muted?Qi(Ut.TEST_VID,"muted","muted"):uo(Ut.TEST_VID,"muted"),p!==Ut.TEST_VID.muted}catch(o){return!1}},Ut.canControlPlaybackRate=function(){if(Gr&&Ga&&Ol<58)return!1;try{var p=Ut.TEST_VID.playbackRate;return Ut.TEST_VID.playbackRate=p/2+.1,p!==Ut.TEST_VID.playbackRate}catch(o){return!1}},Ut.canOverrideAttributes=function(){try{var p=function(){};Object.defineProperty(R().createElement("video"),"src",{get:p,set:p}),Object.defineProperty(R().createElement("audio"),"src",{get:p,set:p}),Object.defineProperty(R().createElement("video"),"innerHTML",{get:p,set:p}),Object.defineProperty(R().createElement("audio"),"innerHTML",{get:p,set:p})}catch(o){return!1}return!0},Ut.supportsNativeTextTracks=function(){return gn||jt&&Ga},Ut.supportsNativeVideoTracks=function(){return!(!Ut.TEST_VID||!Ut.TEST_VID.videoTracks)},Ut.supportsNativeAudioTracks=function(){return!(!Ut.TEST_VID||!Ut.TEST_VID.audioTracks)},Ut.Events=["loadstart","suspend","abort","error","emptied","stalled","loadedmetadata","loadeddata","canplay","canplaythrough","playing","waiting","seeking","seeked","ended","durationchange","timeupdate","progress","play","pause","ratechange","resize","volumechange"],[["featuresMuteControl","canMuteVolume"],["featuresPlaybackRate","canControlPlaybackRate"],["featuresSourceset","canOverrideAttributes"],["featuresNativeTextTracks","supportsNativeTextTracks"],["featuresNativeVideoTracks","supportsNativeVideoTracks"],["featuresNativeAudioTracks","supportsNativeAudioTracks"]].forEach(function(p){var o=p[0],l=p[1];Ht(Ut.prototype,o,function(){return Ut[l]()},!0)}),Ut.prototype.featuresVolumeControl=Ut.canControlVolume(),Ut.prototype.movingMediaElementInDOM=!jt,Ut.prototype.featuresFullscreenResize=!0,Ut.prototype.featuresProgressEvents=!0,Ut.prototype.featuresTimeupdateEvents=!0,Ut.patchCanPlayType=function(){Vs>=4&&!ha&&!Ga&&(Mn=Ut.TEST_VID&&Ut.TEST_VID.constructor.prototype.canPlayType,Ut.TEST_VID.constructor.prototype.canPlayType=function(p){return p&&/^application\/(?:x-|vnd\.apple\.)mpegurl/i.test(p)?"maybe":Mn.call(this,p)})},Ut.unpatchCanPlayType=function(){var p=Ut.TEST_VID.constructor.prototype.canPlayType;return Mn&&(Ut.TEST_VID.constructor.prototype.canPlayType=Mn),p},Ut.patchCanPlayType(),Ut.disposeMediaElement=function(p){if(p){for(p.parentNode&&p.parentNode.removeChild(p);p.hasChildNodes();)p.removeChild(p.firstChild);p.removeAttribute("src"),"function"==typeof p.load&&function(){try{p.load()}catch(o){}}()}},Ut.resetMediaElement=function(p){if(p){for(var o=p.querySelectorAll("source"),l=o.length;l--;)p.removeChild(o[l]);p.removeAttribute("src"),"function"==typeof p.load&&function(){try{p.load()}catch(s){}}()}},["muted","defaultMuted","autoplay","controls","loop","playsinline"].forEach(function(p){Ut.prototype[p]=function(){return this.el_[p]||this.el_.hasAttribute(p)}}),["muted","defaultMuted","autoplay","loop","playsinline"].forEach(function(p){Ut.prototype["set"+Vi(p)]=function(o){this.el_[p]=o,o?this.el_.setAttribute(p,p):this.el_.removeAttribute(p)}}),["paused","currentTime","buffered","volume","poster","preload","error","seeking","seekable","ended","playbackRate","defaultPlaybackRate","disablePictureInPicture","played","networkState","readyState","videoWidth","videoHeight","crossOrigin"].forEach(function(p){Ut.prototype[p]=function(){return this.el_[p]}}),["volume","src","poster","preload","playbackRate","defaultPlaybackRate","disablePictureInPicture","crossOrigin"].forEach(function(p){Ut.prototype["set"+Vi(p)]=function(o){this.el_[p]=o}}),["pause","load","play"].forEach(function(p){Ut.prototype[p]=function(){return this.el_[p]()}}),Di.withSourceHandlers(Ut),Ut.nativeSourceHandler={},Ut.nativeSourceHandler.canPlayType=function(p){try{return Ut.TEST_VID.canPlayType(p)}catch(o){return""}},Ut.nativeSourceHandler.canHandleSource=function(p,o){if(p.type)return Ut.nativeSourceHandler.canPlayType(p.type);if(p.src){var l=Y2(p.src);return Ut.nativeSourceHandler.canPlayType("video/"+l)}return""},Ut.nativeSourceHandler.handleSource=function(p,o,l){o.setSrc(p.src)},Ut.nativeSourceHandler.dispose=function(){},Ut.registerSourceHandler(Ut.nativeSourceHandler),Di.registerTech("Html5",Ut);var xr=["progress","abort","suspend","emptied","stalled","loadedmetadata","loadeddata","timeupdate","resize","volumechange","texttrackchange"],Yr={canplay:"CanPlay",canplaythrough:"CanPlayThrough",playing:"Playing",seeked:"Seeked"},Ir=["tiny","xsmall","small","medium","large","xlarge","huge"],aa={};Ir.forEach(function(p){var o="x"===p.charAt(0)?"x-"+p.substring(1):p;aa[p]="vjs-layout-"+o});var Ji={tiny:210,xsmall:320,small:425,medium:768,large:1440,xlarge:2560,huge:1/0},cr=function(p){function o(s,n,a){var c;if(s.id=s.id||n.id||"vjs_video_"+Be(),(n=Hr(o.getTagSettings(s),n)).initChildren=!1,n.createEl=!1,n.evented=!1,n.reportTouchActivity=!1,!n.language)if("function"==typeof s.closest){var h=s.closest("[lang]");h&&h.getAttribute&&(n.language=h.getAttribute("lang"))}else for(var _=s;_&&1===_.nodeType;){if(ts(_).hasOwnProperty("lang")){n.language=_.getAttribute("lang");break}_=_.parentNode}if((c=p.call(this,null,n,a)||this).boundDocumentFullscreenChange_=function(G){return c.documentFullscreenChange_(G)},c.boundFullWindowOnEscKey_=function(G){return c.fullWindowOnEscKey(G)},c.boundUpdateStyleEl_=function(G){return c.updateStyleEl_(G)},c.boundApplyInitTime_=function(G){return c.applyInitTime_(G)},c.boundUpdateCurrentBreakpoint_=function(G){return c.updateCurrentBreakpoint_(G)},c.boundHandleTechClick_=function(G){return c.handleTechClick_(G)},c.boundHandleTechDoubleClick_=function(G){return c.handleTechDoubleClick_(G)},c.boundHandleTechTouchStart_=function(G){return c.handleTechTouchStart_(G)},c.boundHandleTechTouchMove_=function(G){return c.handleTechTouchMove_(G)},c.boundHandleTechTouchEnd_=function(G){return c.handleTechTouchEnd_(G)},c.boundHandleTechTap_=function(G){return c.handleTechTap_(G)},c.isFullscreen_=!1,c.log=Eo(c.id_),c.fsApi_=tl,c.isPosterFromTech_=!1,c.queuedCallbacks_=[],c.isReady_=!1,c.hasStarted_=!1,c.userActive_=!1,c.debugEnabled_=!1,!c.options_||!c.options_.techOrder||!c.options_.techOrder.length)throw new Error("No techOrder specified. Did you overwrite videojs.options instead of just changing the properties you want to override?");if(c.tag=s,c.tagAttributes=s&&ts(s),c.language(c.options_.language),n.languages){var M={};Object.getOwnPropertyNames(n.languages).forEach(function(G){M[G.toLowerCase()]=n.languages[G]}),c.languages_=M}else c.languages_=o.prototype.options_.languages;c.resetCache_(),c.poster_=n.poster||"",c.controls_=!!n.controls,s.controls=!1,s.removeAttribute("controls"),c.changingSrc_=!1,c.playCallbacks_=[],c.playTerminatedQueue_=[],s.hasAttribute("autoplay")?c.autoplay(!0):c.autoplay(c.options_.autoplay),n.plugins&&Object.keys(n.plugins).forEach(function(G){if("function"!=typeof c[G])throw new Error('plugin "'+G+'" does not exist')}),c.scrubbing_=!1,c.el_=c.createEl(),Iu(y(c),{eventBusKey:"el_"}),c.fsApi_.requestFullscreen&&(Yi(R(),c.fsApi_.fullscreenchange,c.boundDocumentFullscreenChange_),c.on(c.fsApi_.fullscreenchange,c.boundDocumentFullscreenChange_)),c.fluid_&&c.on(["playerreset","resize"],c.boundUpdateStyleEl_);var P=oi(c.options_);n.plugins&&Object.keys(n.plugins).forEach(function(G){c[G](n.plugins[G])}),n.debug&&c.debug(!0),c.options_.playerOptions=P,c.middleware_=[],c.playbackRates(n.playbackRates),c.initChildren(),c.isAudio("audio"===s.nodeName.toLowerCase()),c.controls()?c.addClass("vjs-controls-enabled"):c.addClass("vjs-controls-disabled"),c.el_.setAttribute("role","region"),c.isAudio()?c.el_.setAttribute("aria-label",c.localize("Audio Player")):c.el_.setAttribute("aria-label",c.localize("Video Player")),c.isAudio()&&c.addClass("vjs-audio"),c.flexNotSupported_()&&c.addClass("vjs-no-flex"),ke&&c.addClass("vjs-touch-enabled"),jt||c.addClass("vjs-workinghover"),o.players[c.id_]=y(c);var Q="7.18.1".split(".")[0];return c.addClass("vjs-v"+Q),c.userActive(!0),c.reportUserActivity(),c.one("play",function(G){return c.listenForUserActivity_(G)}),c.on("stageclick",function(G){return c.handleStageClick_(G)}),c.on("keydown",function(G){return c.handleKeyDown(G)}),c.on("languagechange",function(G){return c.handleLanguagechange(G)}),c.breakpoints(c.options_.breakpoints),c.responsive(c.options_.responsive),c}ue(o,p);var l=o.prototype;return l.dispose=function(){var n=this;this.trigger("dispose"),this.off("dispose"),wi(R(),this.fsApi_.fullscreenchange,this.boundDocumentFullscreenChange_),wi(R(),"keydown",this.boundFullWindowOnEscKey_),this.styleEl_&&this.styleEl_.parentNode&&(this.styleEl_.parentNode.removeChild(this.styleEl_),this.styleEl_=null),o.players[this.id_]=null,this.tag&&this.tag.player&&(this.tag.player=null),this.el_&&this.el_.player&&(this.el_.player=null),this.tech_&&(this.tech_.dispose(),this.isPosterFromTech_=!1,this.poster_=""),this.playerElIngest_&&(this.playerElIngest_=null),this.tag&&(this.tag=null),function(p){Pu[p.id()]=null}(this),Na.names.forEach(function(a){var c=Na[a],h=n[c.getterName]();h&&h.off&&h.off()}),p.prototype.dispose.call(this)},l.createEl=function(){var a,n=this.tag,c=this.playerElIngest_=n.parentNode&&n.parentNode.hasAttribute&&n.parentNode.hasAttribute("data-vjs-player"),h="video-js"===this.tag.tagName.toLowerCase();c?a=this.el_=n.parentNode:h||(a=this.el_=p.prototype.createEl.call(this,"div"));var _=ts(n);if(h){for(a=this.el_=n,n=this.tag=R().createElement("video");a.children.length;)n.appendChild(a.firstChild);Qa(a,"video-js")||lo(a,"video-js"),a.appendChild(n),c=this.playerElIngest_=a,Object.keys(a).forEach(function(qe){try{n[qe]=a[qe]}catch(Oe){}})}if(n.setAttribute("tabindex","-1"),_.tabindex="-1",(Hs||Ga&&X)&&(n.setAttribute("role","application"),_.role="application"),n.removeAttribute("width"),n.removeAttribute("height"),"width"in _&&delete _.width,"height"in _&&delete _.height,Object.getOwnPropertyNames(_).forEach(function(qe){h&&"class"===qe||a.setAttribute(qe,_[qe]),h&&n.setAttribute(qe,_[qe])}),n.playerId=n.id,n.id+="_html5_api",n.className="vjs-tech",n.player=a.player=this,this.addClass("vjs-paused"),!0!==C().VIDEOJS_NO_DYNAMIC_STYLE){this.styleEl_=H("vjs-styles-dimensions");var M=Ya(".vjs-styles-defaults"),P=Ya("head");P.insertBefore(this.styleEl_,M?M.nextSibling:P.firstChild)}this.fill_=!1,this.fluid_=!1,this.width(this.options_.width),this.height(this.options_.height),this.fill(this.options_.fill),this.fluid(this.options_.fluid),this.aspectRatio(this.options_.aspectRatio),this.crossOrigin(this.options_.crossOrigin||this.options_.crossorigin);for(var Q=n.getElementsByTagName("a"),G=0;G0?this.videoWidth()+":"+this.videoHeight():"16:9").split(":"),G=Q[1]/Q[0];h=void 0!==this.width_?this.width_:void 0!==this.height_?this.height_/G:this.videoWidth()||300,_=void 0!==this.height_?this.height_:h*G,P=/^[^a-zA-Z]/.test(this.id())?"dimensions-"+this.id():this.id()+"-dimensions",this.addClass(P),j(this.styleEl_,"\n ."+P+" {\n width: "+h+"px;\n height: "+_+"px;\n }\n\n ."+P+".vjs-fluid {\n padding-top: "+100*G+"%;\n }\n ")}else{var n="number"==typeof this.width_?this.width_:this.options_.width,a="number"==typeof this.height_?this.height_:this.options_.height,c=this.tech_&&this.tech_.el();c&&(n>=0&&(c.width=n),a>=0&&(c.height=a))}},l.loadTech_=function(n,a){var c=this;this.tech_&&this.unloadTech_();var h=Vi(n),_=n.charAt(0).toLowerCase()+n.slice(1);"Html5"!==h&&this.tag&&(Di.getTech("Html5").disposeMediaElement(this.tag),this.tag.player=null,this.tag=null),this.techName_=h,this.isReady_=!1;var M=this.autoplay();("string"==typeof this.autoplay()||!0===this.autoplay()&&this.options_.normalizeAutoplay)&&(M=!1);var P={source:a,autoplay:M,nativeControlsForTouch:this.options_.nativeControlsForTouch,playerId:this.id(),techId:this.id()+"_"+_+"_api",playsinline:this.options_.playsinline,preload:this.options_.preload,loop:this.options_.loop,disablePictureInPicture:this.options_.disablePictureInPicture,muted:this.options_.muted,poster:this.poster(),language:this.language(),playerElIngest:this.playerElIngest_||!1,"vtt.js":this.options_["vtt.js"],canOverridePoster:!!this.options_.techCanOverridePoster,enableSourceset:this.options_.enableSourceset,Promise:this.options_.Promise};Na.names.forEach(function(G){var Te=Na[G];P[Te.getterName]=c[Te.privateName]}),Hr(P,this.options_[h]),Hr(P,this.options_[_]),Hr(P,this.options_[n.toLowerCase()]),this.tag&&(P.tag=this.tag),a&&a.src===this.cache_.src&&this.cache_.currentTime>0&&(P.startTime=this.cache_.currentTime);var Q=Di.getTech(n);if(!Q)throw new Error("No Tech named '"+h+"' exists! '"+h+"' should be registered using videojs.registerTech()'");this.tech_=new Q(P),this.tech_.ready(Qr(this,this.handleTechReady_),!0),Kc_jsonToTextTracks(this.textTracksJson_||[],this.tech_),xr.forEach(function(G){c.on(c.tech_,G,function(Te){return c["handleTech"+Vi(G)+"_"](Te)})}),Object.keys(Yr).forEach(function(G){c.on(c.tech_,G,function(Te){0===c.tech_.playbackRate()&&c.tech_.seeking()?c.queuedCallbacks_.push({callback:c["handleTech"+Yr[G]+"_"].bind(c),event:Te}):c["handleTech"+Yr[G]+"_"](Te)})}),this.on(this.tech_,"loadstart",function(G){return c.handleTechLoadStart_(G)}),this.on(this.tech_,"sourceset",function(G){return c.handleTechSourceset_(G)}),this.on(this.tech_,"waiting",function(G){return c.handleTechWaiting_(G)}),this.on(this.tech_,"ended",function(G){return c.handleTechEnded_(G)}),this.on(this.tech_,"seeking",function(G){return c.handleTechSeeking_(G)}),this.on(this.tech_,"play",function(G){return c.handleTechPlay_(G)}),this.on(this.tech_,"firstplay",function(G){return c.handleTechFirstPlay_(G)}),this.on(this.tech_,"pause",function(G){return c.handleTechPause_(G)}),this.on(this.tech_,"durationchange",function(G){return c.handleTechDurationChange_(G)}),this.on(this.tech_,"fullscreenchange",function(G,Te){return c.handleTechFullscreenChange_(G,Te)}),this.on(this.tech_,"fullscreenerror",function(G,Te){return c.handleTechFullscreenError_(G,Te)}),this.on(this.tech_,"enterpictureinpicture",function(G){return c.handleTechEnterPictureInPicture_(G)}),this.on(this.tech_,"leavepictureinpicture",function(G){return c.handleTechLeavePictureInPicture_(G)}),this.on(this.tech_,"error",function(G){return c.handleTechError_(G)}),this.on(this.tech_,"posterchange",function(G){return c.handleTechPosterChange_(G)}),this.on(this.tech_,"textdata",function(G){return c.handleTechTextData_(G)}),this.on(this.tech_,"ratechange",function(G){return c.handleTechRateChange_(G)}),this.on(this.tech_,"loadedmetadata",this.boundUpdateStyleEl_),this.usingNativeControls(this.techGet_("controls")),this.controls()&&!this.usingNativeControls()&&this.addTechControlsListeners_(),this.tech_.el().parentNode!==this.el()&&("Html5"!==h||!this.tag)&&so(this.tech_.el(),this.el()),this.tag&&(this.tag.player=null,this.tag=null)},l.unloadTech_=function(){var n=this;Na.names.forEach(function(a){var c=Na[a];n[c.privateName]=n[c.getterName]()}),this.textTracksJson_=Kc_textTracksToJson(this.tech_),this.isReady_=!1,this.tech_.dispose(),this.tech_=!1,this.isPosterFromTech_&&(this.poster_="",this.trigger("posterchange")),this.isPosterFromTech_=!1},l.tech=function(n){return void 0===n&&dr.warn("Using the tech directly can be dangerous. I hope you know what you're doing.\nSee https://github.com/videojs/video.js/issues/2617 for more info.\n"),this.tech_},l.addTechControlsListeners_=function(){this.removeTechControlsListeners_(),this.on(this.tech_,"click",this.boundHandleTechClick_),this.on(this.tech_,"dblclick",this.boundHandleTechDoubleClick_),this.on(this.tech_,"touchstart",this.boundHandleTechTouchStart_),this.on(this.tech_,"touchmove",this.boundHandleTechTouchMove_),this.on(this.tech_,"touchend",this.boundHandleTechTouchEnd_),this.on(this.tech_,"tap",this.boundHandleTechTap_)},l.removeTechControlsListeners_=function(){this.off(this.tech_,"tap",this.boundHandleTechTap_),this.off(this.tech_,"touchstart",this.boundHandleTechTouchStart_),this.off(this.tech_,"touchmove",this.boundHandleTechTouchMove_),this.off(this.tech_,"touchend",this.boundHandleTechTouchEnd_),this.off(this.tech_,"click",this.boundHandleTechClick_),this.off(this.tech_,"dblclick",this.boundHandleTechDoubleClick_)},l.handleTechReady_=function(){this.triggerReady(),this.cache_.volume&&this.techCall_("setVolume",this.cache_.volume),this.handleTechPosterChange_(),this.handleTechDurationChange_()},l.handleTechLoadStart_=function(){this.removeClass("vjs-ended"),this.removeClass("vjs-seeking"),this.error(null),this.handleTechDurationChange_(),this.paused()?(this.hasStarted(!1),this.trigger("loadstart")):(this.trigger("loadstart"),this.trigger("firstplay")),this.manualAutoplay_(!0===this.autoplay()&&this.options_.normalizeAutoplay?"play":this.autoplay())},l.manualAutoplay_=function(n){var a=this;if(this.tech_&&"string"==typeof n){var h,c=function(){var M=a.muted();a.muted(!0);var P=function(){a.muted(M)};a.playTerminatedQueue_.push(P);var Q=a.play();if(zl(Q))return Q.catch(function(G){throw P(),new Error("Rejection at manualAutoplay. Restoring muted value. "+(G||""))})};if("any"!==n||this.muted()?h="muted"!==n||this.muted()?this.play():c():zl(h=this.play())&&(h=h.catch(c)),zl(h))return h.then(function(){a.trigger({type:"autoplay-success",autoplay:n})}).catch(function(){a.trigger({type:"autoplay-failure",autoplay:n})})}},l.updateSourceCaches_=function(n){void 0===n&&(n="");var a=n,c="";"string"!=typeof a&&(a=n.src,c=n.type),this.cache_.source=this.cache_.source||{},this.cache_.sources=this.cache_.sources||[],a&&!c&&(c=function(o,l){if(!l)return"";if(o.cache_.source.src===l&&o.cache_.source.type)return o.cache_.source.type;var s=o.cache_.sources.filter(function(h){return h.src===l});if(s.length)return s[0].type;for(var n=o.$$("source"),a=0;a0&&0===this.cache_.lastPlaybackRate&&(this.queuedCallbacks_.forEach(function(n){return n.callback(n.event)}),this.queuedCallbacks_=[]),this.cache_.lastPlaybackRate=this.tech_.playbackRate(),this.trigger("ratechange")},l.handleTechWaiting_=function(){var n=this;this.addClass("vjs-waiting"),this.trigger("waiting");var a=this.currentTime();this.on("timeupdate",function h(){a!==n.currentTime()&&(n.removeClass("vjs-waiting"),n.off("timeupdate",h))})},l.handleTechCanPlay_=function(){this.removeClass("vjs-waiting"),this.trigger("canplay")},l.handleTechCanPlayThrough_=function(){this.removeClass("vjs-waiting"),this.trigger("canplaythrough")},l.handleTechPlaying_=function(){this.removeClass("vjs-waiting"),this.trigger("playing")},l.handleTechSeeking_=function(){this.addClass("vjs-seeking"),this.trigger("seeking")},l.handleTechSeeked_=function(){this.removeClass("vjs-seeking"),this.removeClass("vjs-ended"),this.trigger("seeked")},l.handleTechFirstPlay_=function(){this.options_.starttime&&(dr.warn("Passing the `starttime` option to the player will be deprecated in 6.0"),this.currentTime(this.options_.starttime)),this.addClass("vjs-has-started"),this.trigger("firstplay")},l.handleTechPause_=function(){this.removeClass("vjs-playing"),this.addClass("vjs-paused"),this.trigger("pause")},l.handleTechEnded_=function(){this.addClass("vjs-ended"),this.removeClass("vjs-waiting"),this.options_.loop?(this.currentTime(0),this.play()):this.paused()||this.pause(),this.trigger("ended")},l.handleTechDurationChange_=function(){this.duration(this.techGet_("duration"))},l.handleTechClick_=function(n){!this.controls_||(void 0===this.options_||void 0===this.options_.userActions||void 0===this.options_.userActions.click||!1!==this.options_.userActions.click)&&(void 0!==this.options_&&void 0!==this.options_.userActions&&"function"==typeof this.options_.userActions.click?this.options_.userActions.click.call(this,n):this.paused()?ui(this.play()):this.pause())},l.handleTechDoubleClick_=function(n){this.controls_&&(Array.prototype.some.call(this.$$(".vjs-control-bar, .vjs-modal-dialog"),function(c){return c.contains(n.target)})||(void 0===this.options_||void 0===this.options_.userActions||void 0===this.options_.userActions.doubleClick||!1!==this.options_.userActions.doubleClick)&&(void 0!==this.options_&&void 0!==this.options_.userActions&&"function"==typeof this.options_.userActions.doubleClick?this.options_.userActions.doubleClick.call(this,n):this.isFullscreen()?this.exitFullscreen():this.requestFullscreen()))},l.handleTechTap_=function(){this.userActive(!this.userActive())},l.handleTechTouchStart_=function(){this.userWasActive=this.userActive()},l.handleTechTouchMove_=function(){this.userWasActive&&this.reportUserActivity()},l.handleTechTouchEnd_=function(n){n.cancelable&&n.preventDefault()},l.handleStageClick_=function(){this.reportUserActivity()},l.toggleFullscreenClass_=function(){this.isFullscreen()?this.addClass("vjs-fullscreen"):this.removeClass("vjs-fullscreen")},l.documentFullscreenChange_=function(n){var a=n.target.player;if(!a||a===this){var c=this.el(),h=R()[this.fsApi_.fullscreenElement]===c;!h&&c.matches?h=c.matches(":"+this.fsApi_.fullscreen):!h&&c.msMatchesSelector&&(h=c.msMatchesSelector(":"+this.fsApi_.fullscreen)),this.isFullscreen(h)}},l.handleTechFullscreenChange_=function(n,a){var c=this;a&&(a.nativeIOSFullscreen&&(this.addClass("vjs-ios-native-fs"),this.tech_.one("webkitendfullscreen",function(){c.removeClass("vjs-ios-native-fs")})),this.isFullscreen(a.isFullscreen))},l.handleTechFullscreenError_=function(n,a){this.trigger("fullscreenerror",a)},l.togglePictureInPictureClass_=function(){this.isInPictureInPicture()?this.addClass("vjs-picture-in-picture"):this.removeClass("vjs-picture-in-picture")},l.handleTechEnterPictureInPicture_=function(n){this.isInPictureInPicture(!0)},l.handleTechLeavePictureInPicture_=function(n){this.isInPictureInPicture(!1)},l.handleTechError_=function(){var n=this.tech_.error();this.error(n)},l.handleTechTextData_=function(){var n=null;arguments.length>1&&(n=arguments[1]),this.trigger("textdata",n)},l.getCache=function(){return this.cache_},l.resetCache_=function(){this.cache_={currentTime:0,initTime:0,inactivityTimeout:this.options_.inactivityTimeout,duration:NaN,lastVolume:1,lastPlaybackRate:this.defaultPlaybackRate(),media:null,src:"",source:{},sources:[],playbackRates:[],volume:1}},l.techCall_=function(n,a){this.ready(function(){if(n in s2)return function(p,o,l,s){return o[l](p.reduce(Ki(l),s))}(this.middleware_,this.tech_,n,a);if(n in t3)return o2(this.middleware_,this.tech_,n,a);try{this.tech_&&this.tech_[n](a)}catch(c){throw dr(c),c}},!0)},l.techGet_=function(n){if(this.tech_&&this.tech_.isReady_){if(n in ku)return function(p,o,l){return p.reduceRight(Ki(l),o[l]())}(this.middleware_,this.tech_,n);if(n in t3)return o2(this.middleware_,this.tech_,n);try{return this.tech_[n]()}catch(a){throw void 0===this.tech_[n]?(dr("Video.js: "+n+" method not defined for "+this.techName_+" playback technology.",a),a):"TypeError"===a.name?(dr("Video.js: "+n+" unavailable on "+this.techName_+" playback technology element.",a),this.tech_.isReady_=!1,a):(dr(a),a)}}},l.play=function(){var n=this,a=this.options_.Promise||C().Promise;return a?new a(function(c){n.play_(c)}):this.play_()},l.play_=function(n){var a=this;void 0===n&&(n=ui),this.playCallbacks_.push(n);var c=Boolean(!this.changingSrc_&&(this.src()||this.currentSrc()));if(this.waitToPlay_&&(this.off(["ready","loadstart"],this.waitToPlay_),this.waitToPlay_=null),!this.isReady_||!c)return this.waitToPlay_=function(_){a.play_()},this.one(["ready","loadstart"],this.waitToPlay_),void(!c&&(gn||jt)&&this.load());var h=this.techGet_("play");null===h?this.runPlayTerminatedQueue_():this.runPlayCallbacks_(h)},l.runPlayTerminatedQueue_=function(){var n=this.playTerminatedQueue_.slice(0);this.playTerminatedQueue_=[],n.forEach(function(a){a()})},l.runPlayCallbacks_=function(n){var a=this.playCallbacks_.slice(0);this.playCallbacks_=[],this.playTerminatedQueue_=[],a.forEach(function(c){c(n)})},l.pause=function(){this.techCall_("pause")},l.paused=function(){return!1!==this.techGet_("paused")},l.played=function(){return this.techGet_("played")||Lo(0,0)},l.scrubbing=function(n){if(void 0===n)return this.scrubbing_;this.scrubbing_=!!n,this.techCall_("setScrubbing",this.scrubbing_),n?this.addClass("vjs-scrubbing"):this.removeClass("vjs-scrubbing")},l.currentTime=function(n){return void 0!==n?(n<0&&(n=0),this.isReady_&&!this.changingSrc_&&this.tech_&&this.tech_.isReady_?(this.techCall_("setCurrentTime",n),void(this.cache_.initTime=0)):(this.cache_.initTime=n,this.off("canplay",this.boundApplyInitTime_),void this.one("canplay",this.boundApplyInitTime_))):(this.cache_.currentTime=this.techGet_("currentTime")||0,this.cache_.currentTime)},l.applyInitTime_=function(){this.currentTime(this.cache_.initTime)},l.duration=function(n){if(void 0===n)return void 0!==this.cache_.duration?this.cache_.duration:NaN;(n=parseFloat(n))<0&&(n=1/0),n!==this.cache_.duration&&(this.cache_.duration=n,n===1/0?this.addClass("vjs-live"):this.removeClass("vjs-live"),isNaN(n)||this.trigger("durationchange"))},l.remainingTime=function(){return this.duration()-this.currentTime()},l.remainingTimeDisplay=function(){return Math.floor(this.duration())-Math.floor(this.currentTime())},l.buffered=function(){var n=this.techGet_("buffered");return(!n||!n.length)&&(n=Lo(0,0)),n},l.bufferedPercent=function(){return S1(this.buffered(),this.duration())},l.bufferedEnd=function(){var n=this.buffered(),a=this.duration(),c=n.end(n.length-1);return c>a&&(c=a),c},l.volume=function(n){var a;return void 0!==n?(a=Math.max(0,Math.min(1,parseFloat(n))),this.cache_.volume=a,this.techCall_("setVolume",a),void(a>0&&this.lastVolume_(a))):(a=parseFloat(this.techGet_("volume")),isNaN(a)?1:a)},l.muted=function(n){if(void 0===n)return this.techGet_("muted")||!1;this.techCall_("setMuted",n)},l.defaultMuted=function(n){return void 0!==n?this.techCall_("setDefaultMuted",n):this.techGet_("defaultMuted")||!1},l.lastVolume_=function(n){if(void 0===n||0===n)return this.cache_.lastVolume;this.cache_.lastVolume=n},l.supportsFullScreen=function(){return this.techGet_("supportsFullScreen")||!1},l.isFullscreen=function(n){if(void 0!==n){var a=this.isFullscreen_;return this.isFullscreen_=Boolean(n),this.isFullscreen_!==a&&this.fsApi_.prefixed&&this.trigger("fullscreenchange"),void this.toggleFullscreenClass_()}return this.isFullscreen_},l.requestFullscreen=function(n){var a=this.options_.Promise||C().Promise;if(a){var c=this;return new a(function(h,_){function M(){c.off("fullscreenerror",Q),c.off("fullscreenchange",P)}function P(){M(),h()}function Q(Te,qe){M(),_(qe)}c.one("fullscreenchange",P),c.one("fullscreenerror",Q);var G=c.requestFullscreenHelper_(n);G&&(G.then(M,M),G.then(h,_))})}return this.requestFullscreenHelper_()},l.requestFullscreenHelper_=function(n){var c,a=this;if(this.fsApi_.prefixed||(c=this.options_.fullscreen&&this.options_.fullscreen.options||{},void 0!==n&&(c=n)),this.fsApi_.requestFullscreen){var h=this.el_[this.fsApi_.requestFullscreen](c);return h&&h.then(function(){return a.isFullscreen(!0)},function(){return a.isFullscreen(!1)}),h}this.tech_.supportsFullScreen()&&!this.options_.preferFullWindow?this.techCall_("enterFullScreen"):this.enterFullWindow()},l.exitFullscreen=function(){var n=this.options_.Promise||C().Promise;if(n){var a=this;return new n(function(c,h){function _(){a.off("fullscreenerror",P),a.off("fullscreenchange",M)}function M(){_(),c()}function P(G,Te){_(),h(Te)}a.one("fullscreenchange",M),a.one("fullscreenerror",P);var Q=a.exitFullscreenHelper_();Q&&(Q.then(_,_),Q.then(c,h))})}return this.exitFullscreenHelper_()},l.exitFullscreenHelper_=function(){var n=this;if(this.fsApi_.requestFullscreen){var a=R()[this.fsApi_.exitFullscreen]();return a&&ui(a.then(function(){return n.isFullscreen(!1)})),a}this.tech_.supportsFullScreen()&&!this.options_.preferFullWindow?this.techCall_("exitFullScreen"):this.exitFullWindow()},l.enterFullWindow=function(){this.isFullscreen(!0),this.isFullWindow=!0,this.docOrigOverflow=R().documentElement.style.overflow,Yi(R(),"keydown",this.boundFullWindowOnEscKey_),R().documentElement.style.overflow="hidden",lo(R().body,"vjs-full-window"),this.trigger("enterFullWindow")},l.fullWindowOnEscKey=function(n){E().isEventKey(n,"Esc")&&!0===this.isFullscreen()&&(this.isFullWindow?this.exitFullWindow():this.exitFullscreen())},l.exitFullWindow=function(){this.isFullscreen(!1),this.isFullWindow=!1,wi(R(),"keydown",this.boundFullWindowOnEscKey_),R().documentElement.style.overflow=this.docOrigOverflow,es(R().body,"vjs-full-window"),this.trigger("exitFullWindow")},l.disablePictureInPicture=function(n){if(void 0===n)return this.techGet_("disablePictureInPicture");this.techCall_("setDisablePictureInPicture",n),this.options_.disablePictureInPicture=n,this.trigger("disablepictureinpicturechanged")},l.isInPictureInPicture=function(n){return void 0!==n?(this.isInPictureInPicture_=!!n,void this.togglePictureInPictureClass_()):!!this.isInPictureInPicture_},l.requestPictureInPicture=function(){if("pictureInPictureEnabled"in R()&&!1===this.disablePictureInPicture())return this.techGet_("requestPictureInPicture")},l.exitPictureInPicture=function(){if("pictureInPictureEnabled"in R())return R().exitPictureInPicture()},l.handleKeyDown=function(n){var a=this.options_.userActions;if(a&&a.hotkeys){(function(_){var M=_.tagName.toLowerCase();if(_.isContentEditable)return!0;if("input"===M)return-1===["button","checkbox","hidden","radio","reset","submit"].indexOf(_.type);return-1!==["textarea"].indexOf(M)})(this.el_.ownerDocument.activeElement)||("function"==typeof a.hotkeys?a.hotkeys.call(this,n):this.handleHotkeys(n))}},l.handleHotkeys=function(n){var a=this.options_.userActions?this.options_.userActions.hotkeys:{},c=a.fullscreenKey,h=void 0===c?function(Oe){return E().isEventKey(Oe,"f")}:c,_=a.muteKey,M=void 0===_?function(Oe){return E().isEventKey(Oe,"m")}:_,P=a.playPauseKey,Q=void 0===P?function(Oe){return E().isEventKey(Oe,"k")||E().isEventKey(Oe,"Space")}:P;if(h.call(this,n)){n.preventDefault(),n.stopPropagation();var G=fn.getComponent("FullscreenToggle");!1!==R()[this.fsApi_.fullscreenEnabled]&&G.prototype.handleClick.call(this,n)}else if(M.call(this,n)){n.preventDefault(),n.stopPropagation(),fn.getComponent("MuteToggle").prototype.handleClick.call(this,n)}else if(Q.call(this,n)){n.preventDefault(),n.stopPropagation(),fn.getComponent("PlayToggle").prototype.handleClick.call(this,n)}},l.canPlayType=function(n){for(var a,c=0,h=this.options_.techOrder;c1?c.handleSrc_(h.slice(1)):(c.changingSrc_=!1,c.setTimeout(function(){this.error({code:4,message:this.localize(this.options_.notSupportedMessage)})},0),void c.triggerReady());!function(p,o){p.forEach(function(l){return l.setTech&&l.setTech(o)})}(Q,c.tech_)}),this.options_.retryOnError&&h.length>1){var _=function(){c.error(null),c.handleSrc_(h.slice(1),!0)},M=function(){c.off("error",_)};this.one("error",_),this.one("playing",M),this.resetRetryOnError_=function(){c.off("error",_),c.off("playing",M)}}}else this.setTimeout(function(){this.error({code:4,message:this.localize(this.options_.notSupportedMessage)})},0)},l.src=function(n){return this.handleSrc_(n,!1)},l.src_=function(n){var a=this,c=this.selectSource([n]);return!c||(function(o,l){return Vi(o)===Vi(l)}(c.tech,this.techName_)?(this.ready(function(){this.tech_.constructor.prototype.hasOwnProperty("setSource")?this.techCall_("setSource",n):this.techCall_("src",n.src),this.changingSrc_=!1},!0),!1):(this.changingSrc_=!0,this.loadTech_(c.tech,c.source),this.tech_.ready(function(){a.changingSrc_=!1}),!1))},l.load=function(){this.techCall_("load")},l.reset=function(){var n=this,a=this.options_.Promise||C().Promise;this.paused()||!a?this.doReset_():ui(this.play().then(function(){return n.doReset_()}))},l.doReset_=function(){this.tech_&&this.tech_.clearTracks("text"),this.resetCache_(),this.poster(""),this.loadTech_(this.options_.techOrder[0],null),this.techCall_("reset"),this.resetControlBarUI_(),Ks(this)&&this.trigger("playerreset")},l.resetControlBarUI_=function(){this.resetProgressBar_(),this.resetPlaybackRate_(),this.resetVolumeBar_()},l.resetProgressBar_=function(){this.currentTime(0);var n=this.controlBar,a=n.durationDisplay,c=n.remainingTimeDisplay;a&&a.updateContent(),c&&c.updateContent()},l.resetPlaybackRate_=function(){this.playbackRate(this.defaultPlaybackRate()),this.handleTechRateChange_()},l.resetVolumeBar_=function(){this.volume(1),this.trigger("volumechange")},l.currentSources=function(){var n=this.currentSource(),a=[];return 0!==Object.keys(n).length&&a.push(n),this.cache_.sources||a},l.currentSource=function(){return this.cache_.source||{}},l.currentSrc=function(){return this.currentSource()&&this.currentSource().src||""},l.currentType=function(){return this.currentSource()&&this.currentSource().type||""},l.preload=function(n){return void 0!==n?(this.techCall_("setPreload",n),void(this.options_.preload=n)):this.techGet_("preload")},l.autoplay=function(n){if(void 0===n)return this.options_.autoplay||!1;var a;"string"==typeof n&&/(any|play|muted)/.test(n)||!0===n&&this.options_.normalizeAutoplay?(this.options_.autoplay=n,this.manualAutoplay_("string"==typeof n?n:"play"),a=!1):this.options_.autoplay=!!n,a=void 0===a?this.options_.autoplay:a,this.tech_&&this.techCall_("setAutoplay",a)},l.playsinline=function(n){return void 0!==n?(this.techCall_("setPlaysinline",n),this.options_.playsinline=n,this):this.techGet_("playsinline")},l.loop=function(n){return void 0!==n?(this.techCall_("setLoop",n),void(this.options_.loop=n)):this.techGet_("loop")},l.poster=function(n){if(void 0===n)return this.poster_;n||(n=""),n!==this.poster_&&(this.poster_=n,this.techCall_("setPoster",n),this.isPosterFromTech_=!1,this.trigger("posterchange"))},l.handleTechPosterChange_=function(){if((!this.poster_||this.options_.techCanOverridePoster)&&this.tech_&&this.tech_.poster){var n=this.tech_.poster()||"";n!==this.poster_&&(this.poster_=n,this.isPosterFromTech_=!0,this.trigger("posterchange"))}},l.controls=function(n){if(void 0===n)return!!this.controls_;n=!!n,this.controls_!==n&&(this.controls_=n,this.usingNativeControls()&&this.techCall_("setControls",n),this.controls_?(this.removeClass("vjs-controls-disabled"),this.addClass("vjs-controls-enabled"),this.trigger("controlsenabled"),this.usingNativeControls()||this.addTechControlsListeners_()):(this.removeClass("vjs-controls-enabled"),this.addClass("vjs-controls-disabled"),this.trigger("controlsdisabled"),this.usingNativeControls()||this.removeTechControlsListeners_()))},l.usingNativeControls=function(n){if(void 0===n)return!!this.usingNativeControls_;n=!!n,this.usingNativeControls_!==n&&(this.usingNativeControls_=n,this.usingNativeControls_?(this.addClass("vjs-using-native-controls"),this.trigger("usingnativecontrols")):(this.removeClass("vjs-using-native-controls"),this.trigger("usingcustomcontrols")))},l.error=function(n){var a=this;if(void 0===n)return this.error_||null;if(Mo("beforeerror").forEach(function(h){var _=h(a,n);Pa(_)&&!Array.isArray(_)||"string"==typeof _||"number"==typeof _||null===_?n=_:a.log.error("please return a value that MediaError expects in beforeerror hooks")}),this.options_.suppressNotSupportedError&&n&&4===n.code){var c=function(){this.error(n)};return this.options_.suppressNotSupportedError=!1,this.any(["click","touchstart"],c),void this.one("loadstart",function(){this.off(["click","touchstart"],c)})}if(null===n)return this.error_=n,this.removeClass("vjs-error"),void(this.errorDisplay&&this.errorDisplay.close());this.error_=new Ar(n),this.addClass("vjs-error"),dr.error("(CODE:"+this.error_.code+" "+Ar.errorTypes[this.error_.code]+")",this.error_.message,this.error_),this.trigger("error"),Mo("error").forEach(function(h){return h(a,a.error_)})},l.reportUserActivity=function(n){this.userActivity_=!0},l.userActive=function(n){if(void 0===n)return this.userActive_;if((n=!!n)!==this.userActive_){if(this.userActive_=n,this.userActive_)return this.userActivity_=!0,this.removeClass("vjs-user-inactive"),this.addClass("vjs-user-active"),void this.trigger("useractive");this.tech_&&this.tech_.one("mousemove",function(a){a.stopPropagation(),a.preventDefault()}),this.userActivity_=!1,this.removeClass("vjs-user-active"),this.addClass("vjs-user-inactive"),this.trigger("userinactive")}},l.listenForUserActivity_=function(){var n,a,c,h=Qr(this,this.reportUserActivity),P=function(qe){h(),this.clearInterval(n)};this.on("mousedown",function(){h(),this.clearInterval(n),n=this.setInterval(h,250)}),this.on("mousemove",function(qe){(qe.screenX!==a||qe.screenY!==c)&&(a=qe.screenX,c=qe.screenY,h())}),this.on("mouseup",P),this.on("mouseleave",P);var G,Q=this.getChild("controlBar");Q&&!jt&&!Gr&&(Q.on("mouseenter",function(Te){0!==this.player().options_.inactivityTimeout&&(this.player().cache_.inactivityTimeout=this.player().options_.inactivityTimeout),this.player().options_.inactivityTimeout=0}),Q.on("mouseleave",function(Te){this.player().options_.inactivityTimeout=this.player().cache_.inactivityTimeout})),this.on("keydown",h),this.on("keyup",h),this.setInterval(function(){if(this.userActivity_){this.userActivity_=!1,this.userActive(!0),this.clearTimeout(G);var Te=this.options_.inactivityTimeout;Te<=0||(G=this.setTimeout(function(){this.userActivity_||this.userActive(!1)},Te))}},250)},l.playbackRate=function(n){if(void 0===n)return this.tech_&&this.tech_.featuresPlaybackRate?this.cache_.lastPlaybackRate||this.techGet_("playbackRate"):1;this.techCall_("setPlaybackRate",n)},l.defaultPlaybackRate=function(n){return void 0!==n?this.techCall_("setDefaultPlaybackRate",n):this.tech_&&this.tech_.featuresPlaybackRate?this.techGet_("defaultPlaybackRate"):1},l.isAudio=function(n){if(void 0===n)return!!this.isAudio_;this.isAudio_=!!n},l.addTextTrack=function(n,a,c){if(this.tech_)return this.tech_.addTextTrack(n,a,c)},l.addRemoteTextTrack=function(n,a){if(this.tech_)return this.tech_.addRemoteTextTrack(n,a)},l.removeRemoteTextTrack=function(n){void 0===n&&(n={});var c=n.track;if(c||(c=n),this.tech_)return this.tech_.removeRemoteTextTrack(c)},l.getVideoPlaybackQuality=function(){return this.techGet_("getVideoPlaybackQuality")},l.videoWidth=function(){return this.tech_&&this.tech_.videoWidth&&this.tech_.videoWidth()||0},l.videoHeight=function(){return this.tech_&&this.tech_.videoHeight&&this.tech_.videoHeight()||0},l.language=function(n){if(void 0===n)return this.language_;this.language_!==String(n).toLowerCase()&&(this.language_=String(n).toLowerCase(),Ks(this)&&this.trigger("languagechange"))},l.languages=function(){return oi(o.prototype.options_.languages,this.languages_)},l.toJSON=function(){var n=oi(this.options_),a=n.tracks;n.tracks=[];for(var c=0;c"):function(){}},iu=1/30,p1=.1,k0=function(o,l){var n,s=[];if(o&&o.length)for(n=0;n=l})},h3=function(o,l){return k0(o,function(s){return s-iu>=l})},X6=function(o){var l=[];if(!o||!o.length)return"";for(var s=0;s "+o.end(s));return l.join(", ")},au=function(o){for(var l=[],s=0;sc)){if(l>a&&l<=c){s+=c-l;continue}s+=c-a}}return s},g3=Pt.createTimeRange,O0=function(o,l){if(!l.preload)return l.duration;var s=0;return(l.parts||[]).forEach(function(n){s+=n.duration}),(l.preloadHints||[]).forEach(function(n){"PART"===n.type&&(s+=o.partTargetDuration)}),s},m3=function(o){return(o.segments||[]).reduce(function(l,s,n){return s.parts?s.parts.forEach(function(a,c){l.push({duration:a.duration,segmentIndex:n,partIndex:c,part:a,segment:s})}):l.push({duration:s.duration,segmentIndex:n,partIndex:null,segment:s,part:null}),l},[])},m2=function(o){var l=o.segments&&o.segments.length&&o.segments[o.segments.length-1];return l&&l.parts||[]},A0=function(o){var l=o.preloadSegment;if(l){var s=l.parts,a=(l.preloadHints||[]).reduce(function(c,h){return c+("PART"===h.type?1:0)},0);return a+=s&&s.length?s.length:0}},N0=function(o,l){if(l.endList)return 0;if(o&&o.suggestedPresentationDelay)return o.suggestedPresentationDelay;var s=m2(l).length>0;return s&&l.serverControl&&l.serverControl.partHoldBack?l.serverControl.partHoldBack:s&&l.partTargetDuration?3*l.partTargetDuration:l.serverControl&&l.serverControl.holdBack?l.serverControl.holdBack:l.targetDuration?3*l.targetDuration:0},B0=function(o,l,s){if(void 0===l&&(l=o.mediaSequence+o.segments.length),la){var h=[a,n];n=h[0],a=h[1]}if(n<0){for(var _=n;_Date.now()},q0=function(o){return o.excludeUntil&&o.excludeUntil===1/0},y3=function(o){var l=_3(o);return!o.disabled&&!l},x5=function(o,l){return l.attributes&&l.attributes[o]},C3=function(o,l){if(1===o.playlists.length)return!0;var s=l.attributes.BANDWIDTH||Number.MAX_VALUE;return 0===o.playlists.filter(function(n){return!!y3(n)&&(n.attributes.BANDWIDTH||0)0)for(var Te=P-1;Te>=0;Te--){var qe=M[Te];if(_+=qe.duration,h){if(_<0)continue}else if(_+iu<=0)continue;return{partIndex:qe.partIndex,segmentIndex:qe.segmentIndex,startTime:c-U1({defaultDuration:l.targetDuration,durationList:M,startIndex:P,endIndex:Te})}}return{partIndex:M[0]&&M[0].partIndex||null,segmentIndex:M[0]&&M[0].segmentIndex||0,startTime:s}}if(P<0){for(var Oe=P;Oe<0;Oe++)if((_-=l.targetDuration)<0)return{partIndex:M[0]&&M[0].partIndex||null,segmentIndex:M[0]&&M[0].segmentIndex||0,startTime:s};P=0}for(var Ae=P;Ae0)continue}else if(_-iu>=0)continue;return{partIndex:Rt.partIndex,segmentIndex:Rt.segmentIndex,startTime:c+U1({defaultDuration:l.targetDuration,durationList:M,startIndex:P,endIndex:Ae})}}return{segmentIndex:M[M.length-1].segmentIndex,partIndex:M[M.length-1].partIndex,startTime:s}},isEnabled:y3,isDisabled:function(o){return o.disabled},isBlacklisted:_3,isIncompatible:q0,playlistEnd:v3,isAes:function(o){for(var l=0;l-1&&h!==c.length-1&&(s._HLS_part=h),(h>-1||c.length)&&a--}s._HLS_msn=a}if(l.serverControl&&l.serverControl.canSkipUntil&&(s._HLS_skip=l.serverControl.canSkipDateranges?"v2":"YES"),Object.keys(s).length){var _=new(C().URL)(o);["_HLS_skip","_HLS_msn","_HLS_part"].forEach(function(M){!s.hasOwnProperty(M)||_.searchParams.set(M,s[M])}),o=_.toString()}return o}(c,a)),this.state="HAVE_CURRENT_METADATA",this.request=this.vhs_.xhr({uri:c,withCredentials:this.withCredentials},function(h,_){if(n.request){if(h)return n.playlistRequestError(n.request,n.media(),"HAVE_METADATA");n.haveMetadata({playlistString:n.request.responseText,url:n.media().uri,id:n.media().id})}})}},l.playlistRequestError=function(n,a,c){var h=a.uri,_=a.id;this.request=null,c&&(this.state=c),this.error={playlist:this.master.playlists[_],status:n.status,message:"HLS playlist request error at URL: "+h+".",responseText:n.responseText,code:n.status>=500?4:2},this.trigger("error")},l.parseManifest_=function(n){var a=this,c=n.url;return function(o){var l=o.onwarn,s=o.oninfo,n=o.manifestString,a=o.customTagParsers,c=void 0===a?[]:a,h=o.customTagMappers,_=void 0===h?[]:h,M=o.experimentalLLHLS,P=new kt;l&&P.on("warn",l),s&&P.on("info",s),c.forEach(function(Oe){return P.addParser(Oe)}),_.forEach(function(Oe){return P.addTagMapper(Oe)}),P.push(n),P.end();var Q=P.manifest;if(M||(["preloadSegment","skip","serverControl","renditionReports","partInf","partTargetDuration"].forEach(function(Oe){Q.hasOwnProperty(Oe)&&delete Q[Oe]}),Q.segments&&Q.segments.forEach(function(Oe){["parts","preloadHints"].forEach(function(Ae){Oe.hasOwnProperty(Ae)&&delete Oe[Ae]})})),!Q.targetDuration){var G=10;Q.segments&&Q.segments.length&&(G=Q.segments.reduce(function(Oe,Ae){return Math.max(Oe,Ae.duration)},0)),l&&l("manifest has no targetDuration defaulting to "+G),Q.targetDuration=G}var Te=m2(Q);if(Te.length&&!Q.partTargetDuration){var qe=Te.reduce(function(Oe,Ae){return Math.max(Oe,Ae.duration)},0);l&&(l("manifest has no partTargetDuration defaulting to "+qe),I5.error("LL-HLS manifest has parts but lacks required #EXT-X-PART-INF:PART-TARGET value. See https://datatracker.ietf.org/doc/html/draft-pantos-hls-rfc8216bis-09#section-4.4.3.7. Playback is not guaranteed.")),Q.partTargetDuration=qe}return Q}({onwarn:function(M){var P=M.message;return a.logger_("m3u8-parser warn for "+c+": "+P)},oninfo:function(M){var P=M.message;return a.logger_("m3u8-parser info for "+c+": "+P)},manifestString:n.manifestString,customTagParsers:this.customTagParsers,customTagMappers:this.customTagMappers,experimentalLLHLS:this.experimentalLLHLS})},l.haveMetadata=function(n){var a=n.playlistString,c=n.playlistObject,h=n.url,_=n.id;this.request=null,this.state="HAVE_METADATA";var M=c||this.parseManifest_({url:h,manifestString:a});M.lastRequest=Date.now(),z0({playlist:M,uri:h,id:_});var P=fc(this.master,M);this.targetDuration=M.partTargetDuration||M.targetDuration,this.pendingMedia_=null,P?(this.master=P,this.media_=this.master.playlists[_]):this.trigger("playlistunchanged"),this.updateMediaUpdateTimeout_(w3(this.media(),!!P)),this.trigger("loadedplaylist")},l.dispose=function(){this.trigger("dispose"),this.stopRequest(),C().clearTimeout(this.mediaUpdateTimeout),C().clearTimeout(this.finalRenditionTimeout),this.off()},l.stopRequest=function(){if(this.request){var n=this.request;this.request=null,n.onreadystatechange=null,n.abort()}},l.media=function(n,a){var c=this;if(!n)return this.media_;if("HAVE_NOTHING"===this.state)throw new Error("Cannot switch media playlist from "+this.state);if("string"==typeof n){if(!this.master.playlists[n])throw new Error("Unknown playlist URI: "+n);n=this.master.playlists[n]}if(C().clearTimeout(this.finalRenditionTimeout),a){var h=(n.partTargetDuration||n.targetDuration)/2*1e3||5e3;this.finalRenditionTimeout=C().setTimeout(this.media.bind(this,n,!1),h)}else{var _=this.state,M=!this.media_||n.id!==this.media_.id,P=this.master.playlists[n.id];if(P&&P.endList||n.endList&&n.segments.length)return this.request&&(this.request.onreadystatechange=null,this.request.abort(),this.request=null),this.state="HAVE_METADATA",this.media_=n,void(M&&(this.trigger("mediachanging"),"HAVE_MASTER"===_?this.trigger("loadedmetadata"):this.trigger("mediachange")));if(this.updateMediaUpdateTimeout_(w3(n,!0)),M){if(this.state="SWITCHING_MEDIA",this.request){if(n.resolvedUri===this.request.url)return;this.request.onreadystatechange=null,this.request.abort(),this.request=null}this.media_&&this.trigger("mediachanging"),this.pendingMedia_=n,this.request=this.vhs_.xhr({uri:n.resolvedUri,withCredentials:this.withCredentials},function(Q,G){if(c.request){if(n.lastRequest=Date.now(),n.resolvedUri=p3(c.handleManifestRedirects,n.resolvedUri,G),Q)return c.playlistRequestError(c.request,n,_);c.haveMetadata({playlistString:G.responseText,url:n.uri,id:n.id}),"HAVE_MASTER"===_?c.trigger("loadedmetadata"):c.trigger("mediachange")}})}}},l.pause=function(){this.mediaUpdateTimeout&&(C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null),this.stopRequest(),"HAVE_NOTHING"===this.state&&(this.started=!1),"SWITCHING_MEDIA"===this.state?this.media_?this.state="HAVE_METADATA":this.state="HAVE_MASTER":"HAVE_CURRENT_METADATA"===this.state&&(this.state="HAVE_METADATA")},l.load=function(n){var a=this;this.mediaUpdateTimeout&&(C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null);var c=this.media();if(n){var h=c?(c.partTargetDuration||c.targetDuration)/2*1e3:5e3;this.mediaUpdateTimeout=C().setTimeout(function(){a.mediaUpdateTimeout=null,a.load()},h)}else this.started?c&&!c.endList?this.trigger("mediaupdatetimeout"):this.trigger("loadedplaylist"):this.start()},l.updateMediaUpdateTimeout_=function(n){var a=this;this.mediaUpdateTimeout&&(C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null),this.media()&&!this.media().endList&&(this.mediaUpdateTimeout=C().setTimeout(function(){a.mediaUpdateTimeout=null,a.trigger("mediaupdatetimeout"),a.updateMediaUpdateTimeout_(n)},n))},l.start=function(){var n=this;if(this.started=!0,"object"==typeof this.src)return this.src.uri||(this.src.uri=C().location.href),this.src.resolvedUri=this.src.uri,void setTimeout(function(){n.setupInitialPlaylist(n.src)},0);this.request=this.vhs_.xhr({uri:this.src,withCredentials:this.withCredentials},function(a,c){if(n.request){if(n.request=null,a)return n.error={status:c.status,message:"HLS playlist request error at URL: "+n.src+".",responseText:c.responseText,code:2},"HAVE_NOTHING"===n.state&&(n.started=!1),n.trigger("error");n.src=p3(n.handleManifestRedirects,n.src,c);var h=n.parseManifest_({manifestString:c.responseText,url:n.src});n.setupInitialPlaylist(h)}})},l.srcUri=function(){return"string"==typeof this.src?this.src:this.src.uri},l.setupInitialPlaylist=function(n){if(this.state="HAVE_MASTER",n.playlists)return this.master=n,S5(this.master,this.srcUri()),n.playlists.forEach(function(c){c.segments=dc(c),c.segments.forEach(function(h){cc(h,c.resolvedUri)})}),this.trigger("loadedplaylist"),void(this.request||this.media(this.master.playlists[0]));var a=this.srcUri()||C().location.href;this.master=function(o,l){var s=b3(0,l),n={mediaGroups:{AUDIO:{},VIDEO:{},"CLOSED-CAPTIONS":{},SUBTITLES:{}},uri:C().location.href,resolvedUri:C().location.href,playlists:[{uri:l,id:s,resolvedUri:l,attributes:{}}]};return n.playlists[s]=n.playlists[0],n.playlists[l]=n.playlists[0],n}(0,a),this.haveMetadata({playlistObject:n,url:a,id:this.master.playlists[0].id}),this.trigger("loadedmetadata")},o}(P5),pc=Pt.xhr,a4=Pt.mergeOptions,T3=function(o,l,s,n){var a="arraybuffer"===o.responseType?o.response:o.responseText;!l&&a&&(o.responseTime=Date.now(),o.roundTripTime=o.responseTime-o.requestTime,o.bytesReceived=a.byteLength||a.length,o.bandwidth||(o.bandwidth=Math.floor(o.bytesReceived/o.roundTripTime*8*1e3))),s.headers&&(o.responseHeaders=s.headers),l&&"ETIMEDOUT"===l.code&&(o.timedout=!0),!l&&!o.aborted&&200!==s.statusCode&&206!==s.statusCode&&0!==s.statusCode&&(l=new Error("XHR Failed with a response of: "+(o&&(a||o.responseText)))),n(l,o)},A5=function(){var o=function l(s,n){s=a4({timeout:45e3},s);var a=l.beforeRequest||Pt.Vhs.xhr.beforeRequest;if(a&&"function"==typeof a){var c=a(s);c&&(s=c)}var _=(!0===Pt.Vhs.xhr.original?pc:Pt.Vhs.xhr)(s,function(P,Q){return T3(_,P,Q,n)}),M=_.abort;return _.abort=function(){return _.aborted=!0,M.apply(_,arguments)},_.uri=s.uri,_.requestTime=Date.now(),_};return o.original=!0,o},E3=function(o){var l={};return o.byterange&&(l.Range=function(o){return"bytes="+o.offset+"-"+("bigint"==typeof o.offset||"bigint"==typeof o.length?C().BigInt(o.offset)+C().BigInt(o.length)-C().BigInt(1):o.offset+o.length-1)}(o.byterange)),l},V0=function(o,l){return o.start(l)+"-"+o.end(l)},N5=function(o,l){var s=o.toString(16);return"00".substring(0,2-s.length)+s+(l%2?" ":"")},D9=function(o){return o>=32&&o<126?String.fromCharCode(o):"."},H0=function(o){var l={};return Object.keys(o).forEach(function(s){var n=o[s];ArrayBuffer.isView(n)?l[s]={bytes:n.buffer,byteOffset:n.byteOffset,byteLength:n.byteLength}:l[s]=n}),l},x3=function(o){var l=o.byterange||{length:1/0,offset:0};return[l.length,l.offset,o.resolvedUri].join(",")},G0=function(o){return o.resolvedUri},R5=function(o){for(var l=Array.prototype.slice.call(o),s=16,n="",h=0;hs){if(o>s+.25*c.duration)return null;n=c}return{segment:n,estimatedStart:n.videoTimingInfo?n.videoTimingInfo.transmuxedPresentationStart:s-n.duration,type:n.videoTimingInfo?"accurate":"estimate"}}(n,l);if(!c)return a({message:"valid programTime was not found"});if("estimate"===c.type)return a({message:"Accurate programTime could not be determined. Please seek to e.seekTime and try again",seekTime:c.estimatedStart});var h={mediaSeconds:n},_=function(o,l){if(!l.dateTimeObject)return null;var s=l.videoTimingInfo.transmuxerPrependedSeconds,c=o-(l.videoTimingInfo.transmuxedPresentationStart+s);return new Date(l.dateTimeObject.getTime()+1e3*c)}(n,c.segment);return _&&(h.programDateTime=_.toISOString()),a(null,h)},g4=function p(o){var l=o.programTime,s=o.playlist,n=o.retryCount,a=void 0===n?2:n,c=o.seekTo,h=o.pauseAfterSeek,_=void 0===h||h,M=o.tech,P=o.callback;if(!P)throw new Error("seekToProgramTime: callback must be provided");if(void 0===l||!s||!c)return P({message:"seekToProgramTime: programTime, seekTo and playlist must be provided"});if(!s.endList&&!M.hasStarted_)return P({message:"player must be playing a live stream to start buffering"});if(!function(o){if(!o.segments||0===o.segments.length)return!1;for(var l=0;lnew Date(_.getTime()+1e3*M)?null:(s>_&&(n=h),{segment:n,estimatedStart:n.videoTimingInfo?n.videoTimingInfo.transmuxedPresentationStart:Go.duration(l,l.mediaSequence+l.segments.indexOf(n)),type:n.videoTimingInfo?"accurate":"estimate"})}(l,s);if(!Q)return P({message:l+" was not found in the stream"});var G=Q.segment,Te=function(o,l){var s,n;try{s=new Date(o),n=new Date(l)}catch(h){}var a=s.getTime();return(n.getTime()-a)/1e3}(G.dateTimeObject,l);if("estimate"===Q.type)return 0===a?P({message:l+" is not buffered yet. Try again"}):(c(Q.estimatedStart+Te),void M.one("seeked",function(){p({programTime:l,playlist:s,retryCount:a-1,seekTo:c,pauseAfterSeek:_,tech:M,callback:P})}));var qe=G.start+Te;M.one("seeked",function(){return P(null,M.currentTime())}),_&&M.pause(),c(qe)},fr=function(o,l){if(4===o.readyState)return l()},B5=function(o,l,s){var a,n=[],c=!1,h=function(G,Te,qe,Oe){return Te.abort(),c=!0,s(G,Te,qe,Oe)},_=function(G,Te){if(!c){if(G)return h(G,Te,"",n);var qe=Te.responseText.substring(n&&n.byteLength||0,Te.responseText.length);if(n=function(){for(var o=arguments.length,l=new Array(o),s=0;s=Rt+Ae)return P(Q,{response:qe.subarray(Ae,Ae+Rt),status:G.status,uri:G.uri});h.request=h.vhs_.xhr({uri:M,responseType:"arraybuffer",headers:E3({byterange:n.sidx.byterange})},P)})}else this.mediaRequest_=C().setTimeout(function(){return c(!1)},0)},l.dispose=function(){this.trigger("dispose"),this.stopRequest(),this.loadedPlaylists_={},C().clearTimeout(this.minimumUpdatePeriodTimeout_),C().clearTimeout(this.mediaRequest_),C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null,this.mediaRequest_=null,this.minimumUpdatePeriodTimeout_=null,this.masterPlaylistLoader_.createMupOnMedia_&&(this.off("loadedmetadata",this.masterPlaylistLoader_.createMupOnMedia_),this.masterPlaylistLoader_.createMupOnMedia_=null),this.off()},l.hasPendingRequest=function(){return this.request||this.mediaRequest_},l.stopRequest=function(){if(this.request){var n=this.request;this.request=null,n.onreadystatechange=null,n.abort()}},l.media=function(n){var a=this;if(!n)return this.media_;if("HAVE_NOTHING"===this.state)throw new Error("Cannot switch media playlist from "+this.state);var c=this.state;if("string"==typeof n){if(!this.masterPlaylistLoader_.master.playlists[n])throw new Error("Unknown playlist URI: "+n);n=this.masterPlaylistLoader_.master.playlists[n]}var h=!this.media_||n.id!==this.media_.id;if(h&&this.loadedPlaylists_[n.id]&&this.loadedPlaylists_[n.id].endList)return this.state="HAVE_METADATA",this.media_=n,void(h&&(this.trigger("mediachanging"),this.trigger("mediachange")));!h||(this.media_&&this.trigger("mediachanging"),this.addSidxSegments_(n,c,function(_){a.haveMetadata({startingState:c,playlist:n})}))},l.haveMetadata=function(n){var a=n.startingState,c=n.playlist;this.state="HAVE_METADATA",this.loadedPlaylists_[c.id]=c,this.mediaRequest_=null,this.refreshMedia_(c.id),"HAVE_MASTER"===a?this.trigger("loadedmetadata"):this.trigger("mediachange")},l.pause=function(){this.masterPlaylistLoader_.createMupOnMedia_&&(this.off("loadedmetadata",this.masterPlaylistLoader_.createMupOnMedia_),this.masterPlaylistLoader_.createMupOnMedia_=null),this.stopRequest(),C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null,this.isMaster_&&(C().clearTimeout(this.masterPlaylistLoader_.minimumUpdatePeriodTimeout_),this.masterPlaylistLoader_.minimumUpdatePeriodTimeout_=null),"HAVE_NOTHING"===this.state&&(this.started=!1)},l.load=function(n){var a=this;C().clearTimeout(this.mediaUpdateTimeout),this.mediaUpdateTimeout=null;var c=this.media();if(n){var h=c?c.targetDuration/2*1e3:5e3;this.mediaUpdateTimeout=C().setTimeout(function(){return a.load()},h)}else this.started?c&&!c.endList?(this.isMaster_&&!this.minimumUpdatePeriodTimeout_&&(this.trigger("minimumUpdatePeriod"),this.updateMinimumUpdatePeriodTimeout_()),this.trigger("mediaupdatetimeout")):this.trigger("loadedplaylist"):this.start()},l.start=function(){var n=this;this.started=!0,this.isMaster_?this.requestMaster_(function(a,c){n.haveMaster_(),!n.hasPendingRequest()&&!n.media_&&n.media(n.masterPlaylistLoader_.master.playlists[0])}):this.mediaRequest_=C().setTimeout(function(){return n.haveMaster_()},0)},l.requestMaster_=function(n){var a=this;this.request=this.vhs_.xhr({uri:this.masterPlaylistLoader_.srcUrl,withCredentials:this.withCredentials},function(c,h){if(!a.requestErrored_(c,h)){var _=h.responseText!==a.masterPlaylistLoader_.masterXml_;return a.masterPlaylistLoader_.masterXml_=h.responseText,h.responseHeaders&&h.responseHeaders.date?a.masterLoaded_=Date.parse(h.responseHeaders.date):a.masterLoaded_=Date.now(),a.masterPlaylistLoader_.srcUrl=p3(a.handleManifestRedirects,a.masterPlaylistLoader_.srcUrl,h),_?(a.handleMaster_(),void a.syncClientServerClock_(function(){return n(h,_)})):n(h,_)}"HAVE_NOTHING"===a.state&&(a.started=!1)})},l.syncClientServerClock_=function(n){var a=this,c=Ur(this.masterPlaylistLoader_.masterXml_);return null===c?(this.masterPlaylistLoader_.clientOffset_=this.masterLoaded_-Date.now(),n()):"DIRECT"===c.method?(this.masterPlaylistLoader_.clientOffset_=c.value-Date.now(),n()):void(this.request=this.vhs_.xhr({uri:f1(this.masterPlaylistLoader_.srcUrl,c.value),method:c.method,withCredentials:this.withCredentials},function(h,_){if(a.request){if(h)return a.masterPlaylistLoader_.clientOffset_=a.masterLoaded_-Date.now(),n();var M;M="HEAD"===c.method?_.responseHeaders&&_.responseHeaders.date?Date.parse(_.responseHeaders.date):a.masterLoaded_:Date.parse(_.responseText),a.masterPlaylistLoader_.clientOffset_=M-Date.now(),n()}}))},l.haveMaster_=function(){this.state="HAVE_MASTER",this.isMaster_?this.trigger("loadedplaylist"):this.media_||this.media(this.childPlaylist_)},l.handleMaster_=function(){this.mediaRequest_=null;var n=this.masterPlaylistLoader_.master,a=function(o){var l=o.masterXml,s=o.srcUrl,n=o.clientOffset,a=o.sidxMapping,c=o.previousManifest,h=fi(l,{manifestUri:s,clientOffset:n,sidxMapping:a,previousManifest:c});return S5(h,s),h}({masterXml:this.masterPlaylistLoader_.masterXml_,srcUrl:this.masterPlaylistLoader_.srcUrl,clientOffset:this.masterPlaylistLoader_.clientOffset_,sidxMapping:this.masterPlaylistLoader_.sidxMapping_,previousManifest:n});n&&(a=function(o,l,s){for(var n=!0,a=hc(o,{duration:l.duration,minimumUpdatePeriod:l.minimumUpdatePeriod,timelineStarts:l.timelineStarts}),c=0;c-1)},this.trigger=function(k){var S,q,K,ne;if(S=w[k])if(2===arguments.length)for(K=S.length,q=0;q>>1,w.samplingfrequencyindex<<7|w.channelcount<<3,6,1,2]))},M=function(){return c(Wn.ftyp,Hi,eo,Hi,mi)},en=function(w){return c(Wn.hdlr,v1[w])},P=function(w){return c(Wn.mdat,w)},nn=function(w){var k=new Uint8Array([0,0,0,0,0,0,0,2,0,0,0,3,0,1,95,144,w.duration>>>24&255,w.duration>>>16&255,w.duration>>>8&255,255&w.duration,85,196,0,0]);return w.samplerate&&(k[12]=w.samplerate>>>24&255,k[13]=w.samplerate>>>16&255,k[14]=w.samplerate>>>8&255,k[15]=255&w.samplerate),c(Wn.mdhd,k)},Kt=function(w){return c(Wn.mdia,nn(w),en(w.type),G(w))},Q=function(w){return c(Wn.mfhd,new Uint8Array([0,0,0,0,(4278190080&w)>>24,(16711680&w)>>16,(65280&w)>>8,255&w]))},G=function(w){return c(Wn.minf,"video"===w.type?c(Wn.vmhd,_1):c(Wn.smhd,y1),h(),Dn(w))},Te=function(w,k){for(var S=[],q=k.length;q--;)S[q]=On(k[q]);return c.apply(null,[Wn.moof,Q(w)].concat(S))},qe=function(w){for(var k=w.length,S=[];k--;)S[k]=Rt(w[k]);return c.apply(null,[Wn.moov,Ae(4294967295)].concat(S).concat(Oe(w)))},Oe=function(w){for(var k=w.length,S=[];k--;)S[k]=xn(w[k]);return c.apply(null,[Wn.mvex].concat(S))},Ae=function(w){var k=new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,2,0,1,95,144,(4278190080&w)>>24,(16711680&w)>>16,(65280&w)>>8,255&w,0,1,0,0,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,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,255,255,255]);return c(Wn.mvhd,k)},wn=function(w){var q,K,k=w.samples||[],S=new Uint8Array(4+k.length);for(K=0;K>>8),ne.push(255&q[et].byteLength),ne=ne.concat(Array.prototype.slice.call(q[et]));for(et=0;et>>8),He.push(255&K[et].byteLength),He=He.concat(Array.prototype.slice.call(K[et]));if(vt=[Wn.avc1,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,(65280&S.width)>>8,255&S.width,(65280&S.height)>>8,255&S.height,0,72,0,0,0,72,0,0,0,0,0,0,0,1,19,118,105,100,101,111,106,115,45,99,111,110,116,114,105,98,45,104,108,115,0,0,0,0,0,0,0,0,0,0,0,0,0,24,17,17]),c(Wn.avcC,new Uint8Array([1,S.profileIdc,S.profileCompatibility,S.levelIdc,255].concat([q.length],ne,[K.length],He))),c(Wn.btrt,new Uint8Array([0,28,156,128,0,45,198,192,0,45,198,192]))],S.sarRatio){var dt=S.sarRatio[0],Lt=S.sarRatio[1];vt.push(c(Wn.pasp,new Uint8Array([(4278190080&dt)>>24,(16711680&dt)>>16,(65280&dt)>>8,255&dt,(4278190080&Lt)>>24,(16711680&Lt)>>16,(65280&Lt)>>8,255&Lt])))}return c.apply(null,vt)},w=function(S){return c(Wn.mp4a,new Uint8Array([0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,(65280&S.channelcount)>>8,255&S.channelcount,(65280&S.samplesize)>>8,255&S.samplesize,0,0,0,0,(65280&S.samplerate)>>8,255&S.samplerate,0,0]),_(S))},Zt=function(w){var k=new Uint8Array([0,0,0,7,0,0,0,0,0,0,0,0,(4278190080&w.id)>>24,(16711680&w.id)>>16,(65280&w.id)>>8,255&w.id,0,0,0,0,(4278190080&w.duration)>>24,(16711680&w.duration)>>16,(65280&w.duration)>>8,255&w.duration,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,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,64,0,0,0,(65280&w.width)>>8,255&w.width,0,0,(65280&w.height)>>8,255&w.height,0,0]);return c(Wn.tkhd,k)},On=function(w){var k,S,q,K,He,et;return k=c(Wn.tfhd,new Uint8Array([0,0,0,58,(4278190080&w.id)>>24,(16711680&w.id)>>16,(65280&w.id)>>8,255&w.id,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0])),He=Math.floor(w.baseMediaDecodeTime/a),et=Math.floor(w.baseMediaDecodeTime%a),S=c(Wn.tfdt,new Uint8Array([1,0,0,0,He>>>24&255,He>>>16&255,He>>>8&255,255&He,et>>>24&255,et>>>16&255,et>>>8&255,255&et])),92,"audio"===w.type?(q=Kr(w,92),c(Wn.traf,k,S,q)):(K=wn(w),q=Kr(w,K.length+92),c(Wn.traf,k,S,q,K))},Rt=function(w){return w.duration=w.duration||4294967295,c(Wn.trak,Zt(w),Kt(w))},xn=function(w){var k=new Uint8Array([0,0,0,0,(4278190080&w.id)>>24,(16711680&w.id)>>16,(65280&w.id)>>8,255&w.id,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1]);return"video"!==w.type&&(k[k.length-1]=0),c(Wn.trex,k)},function(){var Me,w,k;k=function(q,K){var ne=0,He=0,et=0,vt=0;return q.length&&(void 0!==q[0].duration&&(ne=1),void 0!==q[0].size&&(He=2),void 0!==q[0].flags&&(et=4),void 0!==q[0].compositionTimeOffset&&(vt=8)),[0,0,ne|He|et|vt,1,(4278190080&q.length)>>>24,(16711680&q.length)>>>16,(65280&q.length)>>>8,255&q.length,(4278190080&K)>>>24,(16711680&K)>>>16,(65280&K)>>>8,255&K]},w=function(q,K){var ne,He,et,vt,dt,Lt;for(K+=20+16*(vt=q.samples||[]).length,et=k(vt,K),(He=new Uint8Array(et.length+16*vt.length)).set(et),ne=et.length,Lt=0;Lt>>24,He[ne++]=(16711680&dt.duration)>>>16,He[ne++]=(65280&dt.duration)>>>8,He[ne++]=255&dt.duration,He[ne++]=(4278190080&dt.size)>>>24,He[ne++]=(16711680&dt.size)>>>16,He[ne++]=(65280&dt.size)>>>8,He[ne++]=255&dt.size,He[ne++]=dt.flags.isLeading<<2|dt.flags.dependsOn,He[ne++]=dt.flags.isDependedOn<<6|dt.flags.hasRedundancy<<4|dt.flags.paddingValue<<1|dt.flags.isNonSyncSample,He[ne++]=61440&dt.flags.degradationPriority,He[ne++]=15&dt.flags.degradationPriority,He[ne++]=(4278190080&dt.compositionTimeOffset)>>>24,He[ne++]=(16711680&dt.compositionTimeOffset)>>>16,He[ne++]=(65280&dt.compositionTimeOffset)>>>8,He[ne++]=255&dt.compositionTimeOffset;return c(Wn.trun,He)},Me=function(q,K){var ne,He,et,vt,dt,Lt;for(K+=20+8*(vt=q.samples||[]).length,et=k(vt,K),(ne=new Uint8Array(et.length+8*vt.length)).set(et),He=et.length,Lt=0;Lt>>24,ne[He++]=(16711680&dt.duration)>>>16,ne[He++]=(65280&dt.duration)>>>8,ne[He++]=255&dt.duration,ne[He++]=(4278190080&dt.size)>>>24,ne[He++]=(16711680&dt.size)>>>16,ne[He++]=(65280&dt.size)>>>8,ne[He++]=255&dt.size;return c(Wn.trun,ne)},Kr=function(q,K){return"audio"===q.type?Me(q,K):w(q,K)}}();var x2,du,fu,bl,pu,Wu,Qu,Yu,Mc_mdat=P,Mc_moof=Te,Mc_initSegment=function(w){var q,k=M(),S=qe(w);return(q=new Uint8Array(k.byteLength+S.byteLength)).set(k),q.set(S,k.byteLength),q},Md=function(w,k){var S={size:0,flags:{isLeading:0,dependsOn:1,isDependedOn:0,hasRedundancy:0,degradationPriority:0,isNonSyncSample:1}};return S.dataOffset=k,S.compositionTimeOffset=w.pts-w.dts,S.duration=w.duration,S.size=4*w.length,S.size+=w.byteLength,w.keyFrame&&(S.flags.dependsOn=2,S.flags.isNonSyncSample=0),S},Vu_groupNalsIntoFrames=function(w){var k,S,q=[],K=[];for(K.byteLength=0,K.nalCount=0,K.duration=0,q.byteLength=0,k=0;k1&&(k=w.shift(),w.byteLength-=k.byteLength,w.nalCount-=k.nalCount,w[0][0].dts=k.dts,w[0][0].pts=k.pts,w[0][0].duration+=k.duration),w},Vu_generateSampleTable=function(w,k){var S,q,K,ne,He,et=k||0,vt=[];for(S=0;SZr_ONE_SECOND_IN_TS/2))){for((dt=Fs()[w.samplerate])||(dt=k[0].data),Lt=0;Lt=S?w:(k.minSegmentDts=1/0,w.filter(function(q){return q.dts>=S&&(k.minSegmentDts=Math.min(k.minSegmentDts,q.dts),k.minSegmentPts=k.minSegmentDts,!0)}))},Ec_generateSampleTable=function(w){var k,S,q=[];for(k=0;k=this.virtualRowCount&&"function"==typeof this.beforeRowOverflow&&this.beforeRowOverflow(Me),this.rows.length>0&&(this.rows.push(""),this.rowIdx++);this.rows.length>this.virtualRowCount;)this.rows.shift(),this.rowIdx--},Ml.prototype.isEmpty=function(){return 0===this.rows.length||1===this.rows.length&&""===this.rows[0]},Ml.prototype.addText=function(Me){this.rows[this.rowIdx]+=Me},Ml.prototype.backspace=function(){if(!this.isEmpty()){var Me=this.rows[this.rowIdx];this.rows[this.rowIdx]=Me.substr(0,Me.length-1)}};var q3=function(w,k,S){this.serviceNum=w,this.text="",this.currentWindow=new Ml(-1),this.windows=[],this.stream=S,"string"==typeof k&&this.createTextDecoder(k)};q3.prototype.init=function(Me,w){this.startPts=Me;for(var k=0;k<8;k++)this.windows[k]=new Ml(k),"function"==typeof w&&(this.windows[k].beforeRowOverflow=w)},q3.prototype.setCurrentWindow=function(Me){this.currentWindow=this.windows[Me]},q3.prototype.createTextDecoder=function(Me){if("undefined"==typeof TextDecoder)this.stream.trigger("log",{level:"warn",message:"The `encoding` option is unsupported without TextDecoder support"});else try{this.textDecoder_=new TextDecoder(Me)}catch(w){this.stream.trigger("log",{level:"warn",message:"TextDecoder could not be created with "+Me+" encoding. "+w})}};var zi=function Me(w){w=w||{},Me.prototype.init.call(this);var K,k=this,S=w.captionServices||{},q={};Object.keys(S).forEach(function(ne){K=S[ne],/^SERVICE/.test(ne)&&(q[ne]=K.encoding)}),this.serviceEncodings=q,this.current708Packet=null,this.services={},this.push=function(ne){3===ne.type?(k.new708Packet(),k.add708Bytes(ne)):(null===k.current708Packet&&k.new708Packet(),k.add708Bytes(ne))}};zi.prototype=new o,zi.prototype.new708Packet=function(){null!==this.current708Packet&&this.push708Packet(),this.current708Packet={data:[],ptsVals:[]}},zi.prototype.add708Bytes=function(Me){var w=Me.ccData,k=w>>>8,S=255&w;this.current708Packet.ptsVals.push(Me.pts),this.current708Packet.data.push(k),this.current708Packet.data.push(S)},zi.prototype.push708Packet=function(){var Me=this.current708Packet,w=Me.data,k=null,S=null,q=0,K=w[q++];for(Me.seq=K>>6,Me.sizeCode=63&K;q>5)&&S>0&&(k=K=w[q++]),this.pushServiceBlock(k,q,S),S>0&&(q+=S-1)},zi.prototype.pushServiceBlock=function(Me,w,k){var S,q=w,K=this.current708Packet.data,ne=this.services[Me];for(ne||(ne=this.initService(Me,q));q>5,K.rowLock=(16&S)>>4,K.columnLock=(8&S)>>3,K.priority=7&S,S=k[++Me],K.relativePositioning=(128&S)>>7,K.anchorVertical=127&S,S=k[++Me],K.anchorHorizontal=S,S=k[++Me],K.anchorPoint=(240&S)>>4,K.rowCount=15&S,S=k[++Me],K.columnCount=63&S,S=k[++Me],K.windowStyle=(56&S)>>3,K.penStyle=7&S,K.virtualRowCount=K.rowCount+1,Me},zi.prototype.setWindowAttributes=function(Me,w){var k=this.current708Packet.data,S=k[Me],q=w.currentWindow.winAttr;return S=k[++Me],q.fillOpacity=(192&S)>>6,q.fillRed=(48&S)>>4,q.fillGreen=(12&S)>>2,q.fillBlue=3&S,S=k[++Me],q.borderType=(192&S)>>6,q.borderRed=(48&S)>>4,q.borderGreen=(12&S)>>2,q.borderBlue=3&S,S=k[++Me],q.borderType+=(128&S)>>5,q.wordWrap=(64&S)>>6,q.printDirection=(48&S)>>4,q.scrollDirection=(12&S)>>2,q.justify=3&S,S=k[++Me],q.effectSpeed=(240&S)>>4,q.effectDirection=(12&S)>>2,q.displayEffect=3&S,Me},zi.prototype.flushDisplayed=function(Me,w){for(var k=[],S=0;S<8;S++)w.windows[S].visible&&!w.windows[S].isEmpty()&&k.push(w.windows[S].getText());w.endPts=Me,w.text=k.join("\n\n"),this.pushCaption(w),w.startPts=Me},zi.prototype.pushCaption=function(Me){""!==Me.text&&(this.trigger("data",{startPts:Me.startPts,endPts:Me.endPts,text:Me.text,stream:"cc708_"+Me.serviceNum}),Me.text="",Me.startPts=Me.endPts)},zi.prototype.displayWindows=function(Me,w){var S=this.current708Packet.data[++Me],q=this.getPts(Me);this.flushDisplayed(q,w);for(var K=0;K<8;K++)S&1<>4,q.offset=(12&S)>>2,q.penSize=3&S,S=k[++Me],q.italics=(128&S)>>7,q.underline=(64&S)>>6,q.edgeType=(56&S)>>3,q.fontStyle=7&S,Me},zi.prototype.setPenColor=function(Me,w){var k=this.current708Packet.data,S=k[Me],q=w.currentWindow.penColor;return S=k[++Me],q.fgOpacity=(192&S)>>6,q.fgRed=(48&S)>>4,q.fgGreen=(12&S)>>2,q.fgBlue=3&S,S=k[++Me],q.bgOpacity=(192&S)>>6,q.bgRed=(48&S)>>4,q.bgGreen=(12&S)>>2,q.bgBlue=3&S,S=k[++Me],q.edgeRed=(48&S)>>4,q.edgeGreen=(12&S)>>2,q.edgeBlue=3&S,Me},zi.prototype.setPenLocation=function(Me,w){var k=this.current708Packet.data,S=k[Me],q=w.currentWindow.penLoc;return w.currentWindow.pendingNewLine=!0,S=k[++Me],q.row=15&S,S=k[++Me],q.column=63&S,Me},zi.prototype.reset=function(Me,w){var k=this.getPts(Me);return this.flushDisplayed(k,w),this.initService(w.serviceNum,Me)};var B8={42:225,92:233,94:237,95:243,96:250,123:231,124:247,125:209,126:241,127:9608,304:174,305:176,306:189,307:191,308:8482,309:162,310:163,311:9834,312:224,313:160,314:232,315:226,316:234,317:238,318:244,319:251,544:193,545:201,546:211,547:218,548:220,549:252,550:8216,551:161,552:42,553:39,554:8212,555:169,556:8480,557:8226,558:8220,559:8221,560:192,561:194,562:199,563:200,564:202,565:203,566:235,567:206,568:207,569:239,570:212,571:217,572:249,573:219,574:171,575:187,800:195,801:227,802:205,803:204,804:236,805:210,806:242,807:213,808:245,809:123,810:125,811:92,812:94,813:95,814:124,815:126,816:196,817:228,818:214,819:246,820:223,821:165,822:164,823:9474,824:197,825:229,826:216,827:248,828:9484,829:9488,830:9492,831:9496},Z3=function(w){return null===w?"":(w=B8[w]||w,String.fromCharCode(w))},Z9=[4352,4384,4608,4640,5376,5408,5632,5664,5888,5920,4096,4864,4896,5120,5152],Ku=function(){for(var w=[],k=15;k--;)w.push("");return w},fa=function Me(w,k){Me.prototype.init.call(this),this.field_=w||0,this.dataChannel_=k||0,this.name_="CC"+(1+(this.field_<<1|this.dataChannel_)),this.setConstants(),this.reset(),this.push=function(S){var q,K,ne,He,et;if((q=32639&S.ccData)!==this.lastControlCode_){if(4096==(61440&q)?this.lastControlCode_=q:q!==this.PADDING_&&(this.lastControlCode_=null),ne=q>>>8,He=255&q,q!==this.PADDING_)if(q===this.RESUME_CAPTION_LOADING_)this.mode_="popOn";else if(q===this.END_OF_CAPTION_)this.mode_="popOn",this.clearFormatting(S.pts),this.flushDisplayed(S.pts),K=this.displayed_,this.displayed_=this.nonDisplayed_,this.nonDisplayed_=K,this.startPts_=S.pts;else if(q===this.ROLL_UP_2_ROWS_)this.rollUpRows_=2,this.setRollUp(S.pts);else if(q===this.ROLL_UP_3_ROWS_)this.rollUpRows_=3,this.setRollUp(S.pts);else if(q===this.ROLL_UP_4_ROWS_)this.rollUpRows_=4,this.setRollUp(S.pts);else if(q===this.CARRIAGE_RETURN_)this.clearFormatting(S.pts),this.flushDisplayed(S.pts),this.shiftRowsUp_(),this.startPts_=S.pts;else if(q===this.BACKSPACE_)"popOn"===this.mode_?this.nonDisplayed_[this.row_]=this.nonDisplayed_[this.row_].slice(0,-1):this.displayed_[this.row_]=this.displayed_[this.row_].slice(0,-1);else if(q===this.ERASE_DISPLAYED_MEMORY_)this.flushDisplayed(S.pts),this.displayed_=Ku();else if(q===this.ERASE_NON_DISPLAYED_MEMORY_)this.nonDisplayed_=Ku();else if(q===this.RESUME_DIRECT_CAPTIONING_)"paintOn"!==this.mode_&&(this.flushDisplayed(S.pts),this.displayed_=Ku()),this.mode_="paintOn",this.startPts_=S.pts;else if(this.isSpecialCharacter(ne,He))et=Z3((ne=(3&ne)<<8)|He),this[this.mode_](S.pts,et),this.column_++;else if(this.isExtCharacter(ne,He))"popOn"===this.mode_?this.nonDisplayed_[this.row_]=this.nonDisplayed_[this.row_].slice(0,-1):this.displayed_[this.row_]=this.displayed_[this.row_].slice(0,-1),et=Z3((ne=(3&ne)<<8)|He),this[this.mode_](S.pts,et),this.column_++;else if(this.isMidRowCode(ne,He))this.clearFormatting(S.pts),this[this.mode_](S.pts," "),this.column_++,14==(14&He)&&this.addFormatting(S.pts,["i"]),1==(1&He)&&this.addFormatting(S.pts,["u"]);else if(this.isOffsetControlCode(ne,He))this.column_+=3&He;else if(this.isPAC(ne,He)){var vt=Z9.indexOf(7968&q);"rollUp"===this.mode_&&(vt-this.rollUpRows_+1<0&&(vt=this.rollUpRows_-1),this.setRollUp(S.pts,vt)),vt!==this.row_&&(this.clearFormatting(S.pts),this.row_=vt),1&He&&-1===this.formatting_.indexOf("u")&&this.addFormatting(S.pts,["u"]),16==(16&q)&&(this.column_=4*((14&q)>>1)),this.isColorPAC(He)&&14==(14&He)&&this.addFormatting(S.pts,["i"])}else this.isNormalChar(ne)&&(0===He&&(He=null),et=Z3(ne),et+=Z3(He),this[this.mode_](S.pts,et),this.column_+=et.length)}else this.lastControlCode_=null}};fa.prototype=new o,fa.prototype.flushDisplayed=function(Me){var w=this.displayed_.map(function(k,S){try{return k.trim()}catch(q){return this.trigger("log",{level:"warn",message:"Skipping a malformed 608 caption at index "+S+"."}),""}},this).join("\n").replace(/^\n+|\n+$/g,"");w.length&&this.trigger("data",{startPts:this.startPts_,endPts:Me,text:w,stream:this.name_})},fa.prototype.reset=function(){this.mode_="popOn",this.topRow_=0,this.startPts_=0,this.displayed_=Ku(),this.nonDisplayed_=Ku(),this.lastControlCode_=null,this.column_=0,this.row_=14,this.rollUpRows_=2,this.formatting_=[]},fa.prototype.setConstants=function(){0===this.dataChannel_?(this.BASE_=16,this.EXT_=17,this.CONTROL_=(20|this.field_)<<8,this.OFFSET_=23):1===this.dataChannel_&&(this.BASE_=24,this.EXT_=25,this.CONTROL_=(28|this.field_)<<8,this.OFFSET_=31),this.PADDING_=0,this.RESUME_CAPTION_LOADING_=32|this.CONTROL_,this.END_OF_CAPTION_=47|this.CONTROL_,this.ROLL_UP_2_ROWS_=37|this.CONTROL_,this.ROLL_UP_3_ROWS_=38|this.CONTROL_,this.ROLL_UP_4_ROWS_=39|this.CONTROL_,this.CARRIAGE_RETURN_=45|this.CONTROL_,this.RESUME_DIRECT_CAPTIONING_=41|this.CONTROL_,this.BACKSPACE_=33|this.CONTROL_,this.ERASE_DISPLAYED_MEMORY_=44|this.CONTROL_,this.ERASE_NON_DISPLAYED_MEMORY_=46|this.CONTROL_},fa.prototype.isSpecialCharacter=function(Me,w){return Me===this.EXT_&&w>=48&&w<=63},fa.prototype.isExtCharacter=function(Me,w){return(Me===this.EXT_+1||Me===this.EXT_+2)&&w>=32&&w<=63},fa.prototype.isMidRowCode=function(Me,w){return Me===this.EXT_&&w>=32&&w<=47},fa.prototype.isOffsetControlCode=function(Me,w){return Me===this.OFFSET_&&w>=33&&w<=35},fa.prototype.isPAC=function(Me,w){return Me>=this.BASE_&&Me=64&&w<=127},fa.prototype.isColorPAC=function(Me){return Me>=64&&Me<=79||Me>=96&&Me<=127},fa.prototype.isNormalChar=function(Me){return Me>=32&&Me<=127},fa.prototype.setRollUp=function(Me,w){if("rollUp"!==this.mode_&&(this.row_=14,this.mode_="rollUp",this.flushDisplayed(Me),this.nonDisplayed_=Ku(),this.displayed_=Ku()),void 0!==w&&w!==this.row_)for(var k=0;k"},"");this[this.mode_](Me,k)},fa.prototype.clearFormatting=function(Me){if(this.formatting_.length){var w=this.formatting_.reverse().reduce(function(k,S){return k+""},"");this.formatting_=[],this[this.mode_](Me,w)}},fa.prototype.popOn=function(Me,w){var k=this.nonDisplayed_[this.row_];k+=w,this.nonDisplayed_[this.row_]=k},fa.prototype.rollUp=function(Me,w){var k=this.displayed_[this.row_];k+=w,this.displayed_[this.row_]=k},fa.prototype.shiftRowsUp_=function(){var Me;for(Me=0;Mek&&(S=-1);Math.abs(k-w)>4294967296;)w+=8589934592*S;return w},Z8=function Me(w){var k,S;Me.prototype.init.call(this),this.type_=w||"shared",this.push=function(q){"shared"!==this.type_&&q.type!==this.type_||(void 0===S&&(S=q.dts),q.dts=Id(q.dts,S),q.pts=Id(q.pts,S),k=q.dts,this.trigger("data",q))},this.flush=function(){S=k,this.trigger("done")},this.endTimeline=function(){this.flush(),this.trigger("endedtimeline")},this.discontinuity=function(){S=void 0,k=void 0},this.reset=function(){this.discontinuity(),this.trigger("reset")}};Z8.prototype=new o;var V3,z8_TimestampRolloverStream=Z8,z8_handleRollover=Id,U8=function(w,k,S){var q,K="";for(q=k;q>>2;Cn*=4,Cn+=3&Nn[7],Lt.timeStamp=Cn,void 0===et.pts&&void 0===et.dts&&(et.pts=Lt.timeStamp,et.dts=Lt.timeStamp),this.trigger("timestamp",Lt)}et.frames.push(Lt),vt+=10,vt+=dt}while(vt>>4>1&&(He+=K[He]+1),0===ne.pid)ne.type="pat",w(K.subarray(He),ne),this.trigger("data",ne);else if(ne.pid===this.pmtPid)for(ne.type="pmt",w(K.subarray(He),ne),this.trigger("data",ne);this.packetsWaitingForPmt.length;)this.processPes_.apply(this,this.packetsWaitingForPmt.shift());else void 0===this.programMapTable?this.packetsWaitingForPmt.push([K,He,ne]):this.processPes_(K,He,ne)},this.processPes_=function(K,ne,He){He.pid===this.programMapTable.video?He.streamType=no.H264_STREAM_TYPE:He.pid===this.programMapTable.audio?He.streamType=no.ADTS_STREAM_TYPE:He.streamType=this.programMapTable["timed-metadata"][He.pid],He.type="pes",He.data=K.subarray(ne),this.trigger("data",He)}},D2.prototype=new o,D2.STREAM_TYPES={h264:27,adts:15},H3=function(){var ne,w=this,k=!1,S={data:[],size:0},q={data:[],size:0},K={data:[],size:0},et=function(dt,Lt,an){var mo,Ln=new Uint8Array(dt.size),Nn={type:Lt},Cn=0,ar=0,Ea=!1;if(dt.data.length&&!(dt.size<9)){for(Nn.trackId=dt.data[0].pid,Cn=0;Cn>>3,Lt.pts*=4,Lt.pts+=(6&dt[13])>>>1,Lt.dts=Lt.pts,64&an&&(Lt.dts=(14&dt[14])<<27|(255&dt[15])<<20|(254&dt[16])<<12|(255&dt[17])<<5|(254&dt[18])>>>3,Lt.dts*=4,Lt.dts+=(6&dt[18])>>>1)),Lt.data=dt.subarray(9+dt[8]))})(Ln,Nn),Ea="video"===Lt||Nn.packetLength<=dt.size,(an||Ea)&&(dt.size=0,dt.data.length=0),Ea&&w.trigger("data",Nn)}};H3.prototype.init.call(this),this.push=function(vt){({pat:function(){},pes:function(){var Lt,an;switch(vt.streamType){case no.H264_STREAM_TYPE:Lt=S,an="video";break;case no.ADTS_STREAM_TYPE:Lt=q,an="audio";break;case no.METADATA_STREAM_TYPE:Lt=K,an="timed-metadata";break;default:return}vt.payloadUnitStartIndicator&&et(Lt,an,!0),Lt.data.push(vt),Lt.size+=vt.data.byteLength},pmt:function(){var Lt={type:"metadata",tracks:[]};null!==(ne=vt.programMapTable).video&&Lt.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+ne.video,codec:"avc",type:"video"}),null!==ne.audio&&Lt.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+ne.audio,codec:"adts",type:"audio"}),k=!0,w.trigger("data",Lt)}})[vt.type]()},this.reset=function(){S.size=0,S.data.length=0,q.size=0,q.data.length=0,this.trigger("reset")},this.flushStreams_=function(){et(S,"video"),et(q,"audio"),et(K,"timed-metadata")},this.flush=function(){if(!k&&ne){var vt={type:"metadata",tracks:[]};null!==ne.video&&vt.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+ne.video,codec:"avc",type:"video"}),null!==ne.audio&&vt.tracks.push({timelineStartInfo:{baseMediaDecodeTime:0},id:+ne.audio,codec:"adts",type:"audio"}),w.trigger("data",vt)}k=!1,this.flushStreams_(),this.trigger("done")}},H3.prototype=new o;var V8={PAT_PID:0,MP2T_PACKET_LENGTH:188,TransportPacketStream:Dc,TransportParseStream:D2,ElementaryStream:H3,TimestampRolloverStream:df,CaptionStream:U3.CaptionStream,Cea608Stream:U3.Cea608Stream,Cea708Stream:U3.Cea708Stream,MetadataStream:j8};for(var Ld in no)no.hasOwnProperty(Ld)&&(V8[Ld]=no[Ld]);var Lc,Tl=V8,ff=Zr_ONE_SECOND_IN_TS,H8=[96e3,88200,64e3,48e3,44100,32e3,24e3,22050,16e3,12e3,11025,8e3,7350];Lc=function(w){var k,S=0;Lc.prototype.init.call(this),this.skipWarn_=function(q,K){this.trigger("log",{level:"warn",message:"adts skiping bytes "+q+" to "+K+" in frame "+S+" outside syncword"})},this.push=function(q){var ne,He,et,vt,dt,K=0;if(w||(S=0),"audio"===q.type){k&&k.length?(et=k,(k=new Uint8Array(et.byteLength+q.data.byteLength)).set(et),k.set(q.data,et.byteLength)):k=q.data;for(var Lt;K+7>5,dt=(vt=1024*(1+(3&k[K+6])))*ff/H8[(60&k[K+2])>>>2],k.byteLength-K>>6&3),channelcount:(1&k[K+2])<<2|(192&k[K+3])>>>6,samplerate:H8[(60&k[K+2])>>>2],samplingfrequencyindex:(60&k[K+2])>>>2,samplesize:16,data:k.subarray(K+7+He,K+ne)}),S++,K+=ne}else"number"!=typeof Lt&&(Lt=K),K++;"number"==typeof Lt&&(this.skipWarn_(Lt,K),Lt=null),k=k.subarray(K)}},this.flush=function(){S=0,this.trigger("done")},this.reset=function(){k=void 0,this.trigger("reset")},this.endTimeline=function(){k=void 0,this.trigger("endedtimeline")}},Lc.prototype=new o;var Pd,Sd=Lc;Pd=function(w){var k=w.byteLength,S=0,q=0;this.length=function(){return 8*k},this.bitsAvailable=function(){return 8*k+q},this.loadWord=function(){var K=w.byteLength-k,ne=new Uint8Array(4),He=Math.min(4,k);if(0===He)throw new Error("no bytes available");ne.set(w.subarray(K,K+He)),S=new DataView(ne.buffer).getUint32(0),q=8*He,k-=He},this.skipBits=function(K){var ne;q>K?(S<<=K,q-=K):(K-=q,K-=8*(ne=Math.floor(K/8)),k-=ne,this.loadWord(),S<<=K,q-=K)},this.readBits=function(K){var ne=Math.min(q,K),He=S>>>32-ne;return(q-=ne)>0?S<<=ne:k>0&&this.loadWord(),(ne=K-ne)>0?He<>>K))return S<<=K,q-=K,K;return this.loadWord(),K+this.skipLeadingZeros()},this.skipUnsignedExpGolomb=function(){this.skipBits(1+this.skipLeadingZeros())},this.skipExpGolomb=function(){this.skipBits(1+this.skipLeadingZeros())},this.readUnsignedExpGolomb=function(){var K=this.skipLeadingZeros();return this.readBits(K+1)-1},this.readExpGolomb=function(){var K=this.readUnsignedExpGolomb();return 1&K?1+K>>>1:-1*(K>>>1)},this.readBoolean=function(){return 1===this.readBits(1)},this.readUnsignedByte=function(){return this.readBits(8)},this.loadWord()};var hu,L2,Od,kd=Pd;L2=function(){var k,S,w=0;L2.prototype.init.call(this),this.push=function(q){var K;S?((K=new Uint8Array(S.byteLength+q.data.byteLength)).set(S),K.set(q.data,S.byteLength),S=K):S=q.data;for(var ne=S.byteLength;w3&&this.trigger("data",S.subarray(w+3)),S=null,w=0,this.trigger("done")},this.endTimeline=function(){this.flush(),this.trigger("endedtimeline")}},L2.prototype=new o,Od={100:!0,110:!0,122:!0,244:!0,44:!0,83:!0,86:!0,118:!0,128:!0,138:!0,139:!0,134:!0},hu=function(){var k,S,q,K,ne,He,et,w=new L2;hu.prototype.init.call(this),k=this,this.push=function(vt){"video"===vt.type&&(S=vt.trackId,q=vt.pts,K=vt.dts,w.push(vt))},w.on("data",function(vt){var dt={trackId:S,pts:q,dts:K,data:vt,nalUnitTypeCode:31&vt[0]};switch(dt.nalUnitTypeCode){case 5:dt.nalUnitType="slice_layer_without_partitioning_rbsp_idr";break;case 6:dt.nalUnitType="sei_rbsp",dt.escapedRBSP=ne(vt.subarray(1));break;case 7:dt.nalUnitType="seq_parameter_set_rbsp",dt.escapedRBSP=ne(vt.subarray(1)),dt.config=He(dt.escapedRBSP);break;case 8:dt.nalUnitType="pic_parameter_set_rbsp";break;case 9:dt.nalUnitType="access_unit_delimiter_rbsp"}k.trigger("data",dt)}),w.on("done",function(){k.trigger("done")}),w.on("partialdone",function(){k.trigger("partialdone")}),w.on("reset",function(){k.trigger("reset")}),w.on("endedtimeline",function(){k.trigger("endedtimeline")}),this.flush=function(){w.flush()},this.partialFlush=function(){w.partialFlush()},this.reset=function(){w.reset()},this.endTimeline=function(){w.endTimeline()},et=function(dt,Lt){var Nn,an=8,Ln=8;for(Nn=0;Nn=0?S:0,(16&w[k+5])>>4?S+20:S+10},Ad=function Me(w,k){return w.length-k<10||w[k]!=="I".charCodeAt(0)||w[k+1]!=="D".charCodeAt(0)||w[k+2]!=="3".charCodeAt(0)?k:Me(w,k+=G8(w,k))},W8=function(w){return w[0]<<21|w[1]<<14|w[2]<<7|w[3]},Fd=function(w,k,S){return unescape(function(w,k,S){var q,K="";for(q=k;q=k+2&&255==(255&w[k])&&240==(240&w[k+1])&&16==(22&w[k+1])},parseId3TagSize:G8,parseAdtsSize:function(w,k){var S=(224&w[k+5])>>5,q=w[k+4]<<3;return 6144&w[k+3]|q|S},parseType:function(w,k){return w[k]==="I".charCodeAt(0)&&w[k+1]==="D".charCodeAt(0)&&w[k+2]==="3".charCodeAt(0)?"timed-metadata":!0&w[k]&&240==(240&w[k+1])?"audio":null},parseSampleRate:function(w){for(var k=0;k+5>>2];k++}return null},parseAacTimestamp:function(w){var k,S,q;k=10,64&w[5]&&(k+=4,k+=W8(w.subarray(10,14)));do{if((S=W8(w.subarray(k+4,k+8)))<1)return null;if("PRIV"===String.fromCharCode(w[k],w[k+1],w[k+2],w[k+3])){q=w.subarray(k+10,k+S+10);for(var ne=0;ne>>2;return vt*=4,vt+=3&et[7]}break}}k+=10,k+=S}while(k=3;)if(w[K]!=="I".charCodeAt(0)||w[K+1]!=="D".charCodeAt(0)||w[K+2]!=="3".charCodeAt(0))if(255!=(255&w[K])||240!=(240&w[K+1]))K++;else{if(w.length-K<7||K+(q=S2.parseAdtsSize(w,K))>w.length)break;et={type:"audio",data:w.subarray(K,K+q),pts:k,dts:k},this.trigger("data",et),K+=q}else{if(w.length-K<10||K+(q=S2.parseId3TagSize(w,K))>w.length)break;He={type:"timed-metadata",data:w.subarray(K,K+q)},this.trigger("data",He),K+=q}ne=w.length-K,w=ne>0?w.subarray(K):new Uint8Array},this.reset=function(){w=new Uint8Array,this.trigger("reset")},this.endTimeline=function(){w=new Uint8Array,this.trigger("endedtimeline")}},G3.prototype=new o;var P2,gu,kc,Xu,Y8=G3,W3=["audioobjecttype","channelcount","samplerate","samplingfrequencyindex","samplesize"],Pc=["width","height","profileIdc","levelIdc","profileCompatibility","sarRatio"],K8=pf.H264Stream,gf=S2.isLikelyAacData,J8=Zr_ONE_SECOND_IN_TS,X8=function(w,k){k.stream=w,this.trigger("log",k)},zd=function(w,k){for(var S=Object.keys(k),q=0;q=-1e4&&an<=45e3&&(!Ln||Lt>an)&&(Ln=Cn,Lt=an));return Ln?Ln.gop:null},this.alignGopsAtStart_=function(et){var vt,dt,Lt,an,Ln,Nn,Cn,ar;for(Ln=et.byteLength,Nn=et.nalCount,Cn=et.duration,vt=dt=0;vtLt.pts?vt++:(dt++,Ln-=an.byteLength,Nn-=an.nalCount,Cn-=an.duration);return 0===dt?et:dt===et.length?null:((ar=et.slice(dt)).byteLength=Ln,ar.duration=Cn,ar.nalCount=Nn,ar.pts=ar[0].pts,ar.dts=ar[0].dts,ar)},this.alignGopsAtEnd_=function(et){var vt,dt,Lt,an,Ln,Nn,Cn;for(vt=K.length-1,dt=et.length-1,Ln=null,Nn=!1;vt>=0&&dt>=0;){if(Lt=K[vt],an=et[dt],Lt.pts===an.pts){Nn=!0;break}Lt.pts>an.pts?vt--:(vt===K.length-1&&(Ln=dt),dt--)}if(!Nn&&null===Ln)return null;if(0===(Cn=Nn?dt:Ln))return et;var ar=et.slice(Cn),Ea=ar.reduce(function(mo,_u){return mo.byteLength+=_u.byteLength,mo.duration+=_u.duration,mo.nalCount+=_u.nalCount,mo},{byteLength:0,duration:0,nalCount:0});return ar.byteLength=Ea.byteLength,ar.duration=Ea.duration,ar.nalCount=Ea.nalCount,ar.pts=ar[0].pts,ar.dts=ar[0].dts,ar},this.alignGopsWith=function(et){K=et}},P2.prototype=new o,Xu=function(w,k){this.numberOfTracks=0,this.metadataStream=k,void 0!==(w=w||{}).remux?this.remuxTracks=!!w.remux:this.remuxTracks=!0,"boolean"==typeof w.keepOriginalTimestamps?this.keepOriginalTimestamps=w.keepOriginalTimestamps:this.keepOriginalTimestamps=!1,this.pendingTracks=[],this.videoTrack=null,this.pendingBoxes=[],this.pendingCaptions=[],this.pendingMetadata=[],this.pendingBytes=0,this.emittedTracks=0,Xu.prototype.init.call(this),this.push=function(S){return S.text?this.pendingCaptions.push(S):S.frames?this.pendingMetadata.push(S):(this.pendingTracks.push(S.track),this.pendingBytes+=S.boxes.byteLength,"video"===S.track.type&&(this.videoTrack=S.track,this.pendingBoxes.push(S.boxes)),void("audio"===S.track.type&&(this.audioTrack=S.track,this.pendingBoxes.unshift(S.boxes))))}},Xu.prototype=new o,Xu.prototype.flush=function(Me){var S,q,K,He,w=0,k={captions:[],captionStreams:{},metadata:[],info:{}},ne=0;if(this.pendingTracks.length=this.numberOfTracks&&(this.trigger("done"),this.emittedTracks=0))}if(this.videoTrack?(ne=this.videoTrack.timelineStartInfo.pts,Pc.forEach(function(et){k.info[et]=this.videoTrack[et]},this)):this.audioTrack&&(ne=this.audioTrack.timelineStartInfo.pts,W3.forEach(function(et){k.info[et]=this.audioTrack[et]},this)),this.videoTrack||this.audioTrack){for(1===this.pendingTracks.length?k.type=this.pendingTracks[0].type:k.type="combined",this.emittedTracks+=this.pendingTracks.length,K=Mc_initSegment(this.pendingTracks),k.initSegment=new Uint8Array(K.byteLength),k.initSegment.set(K),k.data=new Uint8Array(this.pendingBytes),He=0;He=this.numberOfTracks&&(this.trigger("done"),this.emittedTracks=0)},Xu.prototype.setRemux=function(Me){this.remuxTracks=Me},kc=function(w){var q,K,k=this,S=!0;kc.prototype.init.call(this),w=w||{},this.baseMediaDecodeTime=w.baseMediaDecodeTime||0,this.transmuxPipeline_={},this.setupAacPipeline=function(){var ne={};this.transmuxPipeline_=ne,ne.type="aac",ne.metadataStream=new Tl.MetadataStream,ne.aacStream=new Y8,ne.audioTimestampRolloverStream=new Tl.TimestampRolloverStream("audio"),ne.timedMetadataTimestampRolloverStream=new Tl.TimestampRolloverStream("timed-metadata"),ne.adtsStream=new Sd,ne.coalesceStream=new Xu(w,ne.metadataStream),ne.headOfPipeline=ne.aacStream,ne.aacStream.pipe(ne.audioTimestampRolloverStream).pipe(ne.adtsStream),ne.aacStream.pipe(ne.timedMetadataTimestampRolloverStream).pipe(ne.metadataStream).pipe(ne.coalesceStream),ne.metadataStream.on("timestamp",function(He){ne.aacStream.setTimestamp(He.timeStamp)}),ne.aacStream.on("data",function(He){"timed-metadata"!==He.type&&"audio"!==He.type||ne.audioSegmentStream||(K=K||{timelineStartInfo:{baseMediaDecodeTime:k.baseMediaDecodeTime},codec:"adts",type:"audio"},ne.coalesceStream.numberOfTracks++,ne.audioSegmentStream=new gu(K,w),ne.audioSegmentStream.on("log",k.getLogTrigger_("audioSegmentStream")),ne.audioSegmentStream.on("timingInfo",k.trigger.bind(k,"audioTimingInfo")),ne.adtsStream.pipe(ne.audioSegmentStream).pipe(ne.coalesceStream),k.trigger("trackinfo",{hasAudio:!!K,hasVideo:!!q}))}),ne.coalesceStream.on("data",this.trigger.bind(this,"data")),ne.coalesceStream.on("done",this.trigger.bind(this,"done")),zd(this,ne)},this.setupTsPipeline=function(){var ne={};this.transmuxPipeline_=ne,ne.type="ts",ne.metadataStream=new Tl.MetadataStream,ne.packetStream=new Tl.TransportPacketStream,ne.parseStream=new Tl.TransportParseStream,ne.elementaryStream=new Tl.ElementaryStream,ne.timestampRolloverStream=new Tl.TimestampRolloverStream,ne.adtsStream=new Sd,ne.h264Stream=new K8,ne.captionStream=new Tl.CaptionStream(w),ne.coalesceStream=new Xu(w,ne.metadataStream),ne.headOfPipeline=ne.packetStream,ne.packetStream.pipe(ne.parseStream).pipe(ne.elementaryStream).pipe(ne.timestampRolloverStream),ne.timestampRolloverStream.pipe(ne.h264Stream),ne.timestampRolloverStream.pipe(ne.adtsStream),ne.timestampRolloverStream.pipe(ne.metadataStream).pipe(ne.coalesceStream),ne.h264Stream.pipe(ne.captionStream).pipe(ne.coalesceStream),ne.elementaryStream.on("data",function(He){var et;if("metadata"===He.type){for(et=He.tracks.length;et--;)q||"video"!==He.tracks[et].type?!K&&"audio"===He.tracks[et].type&&((K=He.tracks[et]).timelineStartInfo.baseMediaDecodeTime=k.baseMediaDecodeTime):(q=He.tracks[et]).timelineStartInfo.baseMediaDecodeTime=k.baseMediaDecodeTime;q&&!ne.videoSegmentStream&&(ne.coalesceStream.numberOfTracks++,ne.videoSegmentStream=new P2(q,w),ne.videoSegmentStream.on("log",k.getLogTrigger_("videoSegmentStream")),ne.videoSegmentStream.on("timelineStartInfo",function(vt){K&&!w.keepOriginalTimestamps&&(K.timelineStartInfo=vt,ne.audioSegmentStream.setEarliestDts(vt.dts-k.baseMediaDecodeTime))}),ne.videoSegmentStream.on("processedGopsInfo",k.trigger.bind(k,"gopInfo")),ne.videoSegmentStream.on("segmentTimingInfo",k.trigger.bind(k,"videoSegmentTimingInfo")),ne.videoSegmentStream.on("baseMediaDecodeTime",function(vt){K&&ne.audioSegmentStream.setVideoBaseMediaDecodeTime(vt)}),ne.videoSegmentStream.on("timingInfo",k.trigger.bind(k,"videoTimingInfo")),ne.h264Stream.pipe(ne.videoSegmentStream).pipe(ne.coalesceStream)),K&&!ne.audioSegmentStream&&(ne.coalesceStream.numberOfTracks++,ne.audioSegmentStream=new gu(K,w),ne.audioSegmentStream.on("log",k.getLogTrigger_("audioSegmentStream")),ne.audioSegmentStream.on("timingInfo",k.trigger.bind(k,"audioTimingInfo")),ne.audioSegmentStream.on("segmentTimingInfo",k.trigger.bind(k,"audioSegmentTimingInfo")),ne.adtsStream.pipe(ne.audioSegmentStream).pipe(ne.coalesceStream)),k.trigger("trackinfo",{hasAudio:!!K,hasVideo:!!q})}}),ne.coalesceStream.on("data",this.trigger.bind(this,"data")),ne.coalesceStream.on("id3Frame",function(He){He.dispatchType=ne.metadataStream.dispatchType,k.trigger("id3Frame",He)}),ne.coalesceStream.on("caption",this.trigger.bind(this,"caption")),ne.coalesceStream.on("done",this.trigger.bind(this,"done")),zd(this,ne)},this.setBaseMediaDecodeTime=function(ne){var He=this.transmuxPipeline_;w.keepOriginalTimestamps||(this.baseMediaDecodeTime=ne),K&&(K.timelineStartInfo.dts=void 0,K.timelineStartInfo.pts=void 0,b1_clearDtsInfo(K),He.audioTimestampRolloverStream&&He.audioTimestampRolloverStream.discontinuity()),q&&(He.videoSegmentStream&&(He.videoSegmentStream.gopCache_=[]),q.timelineStartInfo.dts=void 0,q.timelineStartInfo.pts=void 0,b1_clearDtsInfo(q),He.captionStream.reset()),He.timestampRolloverStream&&He.timestampRolloverStream.discontinuity()},this.setAudioAppendStart=function(ne){K&&this.transmuxPipeline_.audioSegmentStream.setAudioAppendStart(ne)},this.setRemux=function(ne){var He=this.transmuxPipeline_;w.remux=ne,He&&He.coalesceStream&&He.coalesceStream.setRemux(ne)},this.alignGopsWith=function(ne){q&&this.transmuxPipeline_.videoSegmentStream&&this.transmuxPipeline_.videoSegmentStream.alignGopsWith(ne)},this.getLogTrigger_=function(ne){var He=this;return function(et){et.stream=ne,He.trigger("log",et)}},this.push=function(ne){if(S){var He=gf(ne);He&&"aac"!==this.transmuxPipeline_.type?this.setupAacPipeline():!He&&"ts"!==this.transmuxPipeline_.type&&this.setupTsPipeline(),S=!1}this.transmuxPipeline_.headOfPipeline.push(ne)},this.flush=function(){S=!0,this.transmuxPipeline_.headOfPipeline.flush()},this.endTimeline=function(){this.transmuxPipeline_.headOfPipeline.endTimeline()},this.reset=function(){this.transmuxPipeline_.headOfPipeline&&this.transmuxPipeline_.headOfPipeline.reset()},this.resetCaptions=function(){this.transmuxPipeline_.captionStream&&this.transmuxPipeline_.captionStream.reset()}},kc.prototype=new o;var qs,d6,Yd,Ud={Transmuxer:kc,VideoSegmentStream:P2,AudioSegmentStream:gu,AUDIO_PROPERTIES:W3,VIDEO_PROPERTIES:Pc,generateSegmentTimingInfo:k2},Oc_toUnsigned=function(w){return w>>>0},Oc_toHexString=function(w){return("00"+w.toString(16)).slice(-2)},mu=function(w){var k="";return k+=String.fromCharCode(w[0]),k+=String.fromCharCode(w[1]),k+=String.fromCharCode(w[2]),k+=String.fromCharCode(w[3])},n6=Oc_toUnsigned,Xi=function Me(w,k){var q,K,ne,He,et,S=[];if(!k.length)return null;for(q=0;q1?q+K:w.byteLength,ne===k[0]&&(1===k.length?S.push(w.subarray(q+8,He)):(et=Me(w.subarray(q+8,He),k.slice(1))).length&&(S=S.concat(et))),q=He;return S},mf=Oc_toUnsigned,vf=n.getUint64,a6=function(w){var k={version:w[0],flags:new Uint8Array(w.subarray(1,4))};return 1===k.version?k.baseMediaDecodeTime=vf(w.subarray(4)):k.baseMediaDecodeTime=mf(w[4]<<24|w[5]<<16|w[6]<<8|w[7]),k},jd=function(w){return{isLeading:(12&w[0])>>>2,dependsOn:3&w[0],isDependedOn:(192&w[1])>>>6,hasRedundancy:(48&w[1])>>>4,paddingValue:(14&w[1])>>>1,isNonSyncSample:1&w[1],degradationPriority:w[2]<<8|w[3]}},o6=function(w){var an,k={version:w[0],flags:new Uint8Array(w.subarray(1,4)),samples:[]},S=new DataView(w.buffer,w.byteOffset,w.byteLength),q=1&k.flags[2],K=4&k.flags[2],ne=1&k.flags[1],He=2&k.flags[1],et=4&k.flags[1],vt=8&k.flags[1],dt=S.getUint32(4),Lt=8;for(q&&(k.dataOffset=S.getInt32(Lt),Lt+=4),K&&dt&&(an={flags:jd(w.subarray(Lt,Lt+4))},Lt+=4,ne&&(an.duration=S.getUint32(Lt),Lt+=4),He&&(an.size=S.getUint32(Lt),Lt+=4),vt&&(1===k.version?an.compositionTimeOffset=S.getInt32(Lt):an.compositionTimeOffset=S.getUint32(Lt),Lt+=4),k.samples.push(an),dt--);dt--;)an={},ne&&(an.duration=S.getUint32(Lt),Lt+=4),He&&(an.size=S.getUint32(Lt),Lt+=4),et&&(an.flags=jd(w.subarray(Lt,Lt+4)),Lt+=4),vt&&(1===k.version?an.compositionTimeOffset=S.getInt32(Lt):an.compositionTimeOffset=S.getUint32(Lt),Lt+=4),k.samples.push(an);return k},l6=function(w){var Lt,k=new DataView(w.buffer,w.byteOffset,w.byteLength),S={version:w[0],flags:new Uint8Array(w.subarray(1,4)),trackId:k.getUint32(4)},q=1&S.flags[2],K=2&S.flags[2],ne=8&S.flags[2],He=16&S.flags[2],et=32&S.flags[2],vt=65536&S.flags[0],dt=131072&S.flags[0];return Lt=8,q&&(Lt+=4,S.baseDataOffset=k.getUint32(12),Lt+=4),K&&(S.sampleDescriptionIndex=k.getUint32(Lt),Lt+=4),ne&&(S.defaultSampleDuration=k.getUint32(Lt),Lt+=4),He&&(S.defaultSampleSize=k.getUint32(Lt),Lt+=4),et&&(S.defaultSampleFlags=k.getUint32(Lt)),vt&&(S.durationIsEmpty=!0),!q&&dt&&(S.baseDataOffsetIsMoof=!0),S},Vd="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},W1="undefined"!=typeof window?window:void 0!==Vd?Vd:"undefined"!=typeof self?self:{},yf=xc_discardEmulationPreventionBytes,Cf=U3.CaptionStream,u6=function(w,k){for(var S=w,q=0;q0?a6(Ln[0]).baseMediaDecodeTime:0,Cn=Xi(vt,["trun"]);k===an&&Cn.length>0&&(ar=function(w,k,S){var q=k,K=S.defaultSampleDuration||0,ne=S.defaultSampleSize||0,He=S.trackId,et=[];return w.forEach(function(vt){var Lt=o6(vt).samples;Lt.forEach(function(an){void 0===an.duration&&(an.duration=K),void 0===an.size&&(an.size=ne),an.trackId=He,an.dts=q,void 0===an.compositionTimeOffset&&(an.compositionTimeOffset=0),"bigint"==typeof q?(an.pts=q+W1.BigInt(an.compositionTimeOffset),q+=W1.BigInt(an.duration)):(an.pts=q+an.compositionTimeOffset,q+=an.duration)}),et=et.concat(Lt)}),et}(Cn,Nn,Lt),Ea=function(w,k,S){var ne,He,et,vt,q=new DataView(w.buffer,w.byteOffset,w.byteLength),K={logs:[],seiNals:[]};for(He=0;He+40;){var an=S.shift();this.parse(an,vt,dt)}return Lt=function(w,k,S){if(null===k)return null;var K=U9(w,k)[k]||{};return{seiNals:K.seiNals,logs:K.logs,timescale:S}}(et,q,K),Lt&&Lt.logs&&(ne.logs=ne.logs.concat(Lt.logs)),null!==Lt&&Lt.seiNals?(this.pushNals(Lt.seiNals),this.flushStream(),ne):ne.logs.length?{logs:ne.logs,captions:[],captionStreams:[]}:null},this.pushNals=function(et){if(!this.isInitialized()||!et||0===et.length)return null;et.forEach(function(vt){k.push(vt)})},this.flushStream=function(){if(!this.isInitialized())return null;He?k.partialFlush():k.flush()},this.clearParsedCaptions=function(){ne.captions=[],ne.captionStreams={},ne.logs=[]},this.resetCaptionStream=function(){if(!this.isInitialized())return null;k.reset()},this.clearAllCaptions=function(){this.clearParsedCaptions(),this.resetCaptionStream()},this.reset=function(){S=[],q=null,K=null,ne?this.clearParsedCaptions():ne={captions:[],captionStreams:{},logs:[]},this.resetCaptionStream()},this.reset()},Y3=Oc_toUnsigned,Ac=Oc_toHexString,Y1=n.getUint64;qs=function(w,k){var q=Xi(k,["moof","traf"]).reduce(function(K,ne){var an,Ln,He=Xi(ne,["tfhd"])[0],et=Y3(He[4]<<24|He[5]<<16|He[6]<<8|He[7]),vt=w[et]||9e4,dt=Xi(ne,["tfdt"])[0],Lt=new DataView(dt.buffer,dt.byteOffset,dt.byteLength);return"bigint"==typeof(an=1===dt[0]?Y1(dt.subarray(4,12)):Lt.getUint32(4))?Ln=an/W1.BigInt(vt):"number"==typeof an&&!isNaN(an)&&(Ln=an/vt),Ln11?(K.codec+=".",K.codec+=Ac(Nn[9]),K.codec+=Ac(Nn[10]),K.codec+=Ac(Nn[11])):K.codec="avc1.4d400d"):/^mp4[a,v]$/i.test(K.codec)?(Nn=Ln.subarray(28),"esds"===mu(Nn.subarray(4,8))&&Nn.length>20&&0!==Nn[19]?(K.codec+="."+Ac(Nn[19]),K.codec+="."+Ac(Nn[20]>>>2&63).replace(/^0/,"")):K.codec="mp4a.40.2"):K.codec=K.codec.toLowerCase())}var ar=Xi(q,["mdia","mdhd"])[0];ar&&(K.timescale=Yd(ar)),S.push(K)}),S};var f6_startTime=qs,f6_tracks=d6,p6=function(w){var k=31&w[1];return k<<=8,k|=w[2]},A2=function(w){return!!(64&w[1])},vu=function(w){var k=0;return(48&w[3])>>>4>1&&(k+=w[4]+1),k},N2=function(w){switch(w){case 5:return"slice_layer_without_partitioning_rbsp_idr";case 6:return"sei_rbsp";case 7:return"seq_parameter_set_rbsp";case 8:return"pic_parameter_set_rbsp";case 9:return"access_unit_delimiter_rbsp";default:return null}},v6={parseType:function(w,k){var S=p6(w);return 0===S?"pat":S===k?"pmt":k?"pes":null},parsePat:function(w){var k=A2(w),S=4+vu(w);return k&&(S+=w[S]+1),(31&w[S+10])<<8|w[S+11]},parsePmt:function(w){var k={},S=A2(w),q=4+vu(w);if(S&&(q+=w[q]+1),1&w[q+5]){var ne;ne=3+((15&w[q+1])<<8|w[q+2])-4;for(var et=12+((15&w[q+10])<<8|w[q+11]);et=w.byteLength)return null;var K,q=null;return 192&(K=w[S+7])&&((q={}).pts=(14&w[S+9])<<27|(255&w[S+10])<<20|(254&w[S+11])<<12|(255&w[S+12])<<5|(254&w[S+13])>>>3,q.pts*=4,q.pts+=(6&w[S+13])>>>1,q.dts=q.pts,64&K&&(q.dts=(14&w[S+14])<<27|(255&w[S+15])<<20|(254&w[S+16])<<12|(255&w[S+17])<<5|(254&w[S+18])>>>3,q.dts*=4,q.dts+=(6&w[S+18])>>>1)),q},videoPacketContainsKeyFrame:function(w){for(var k=4+vu(w),S=w.subarray(k),q=0,K=0,ne=!1;K3&&("slice_layer_without_partitioning_rbsp_idr"===N2(31&S[K+3])&&(ne=!0)),ne}},$u=z8_handleRollover,ci={};ci.ts=v6,ci.aac=S2;var K1=Zr_ONE_SECOND_IN_TS,ro=188,Kd=function(w,k,S){for(var ne,et,vt,dt,q=0,K=ro,Lt=!1;K<=w.byteLength;)if(71!==w[q]||71!==w[K]&&K!==w.byteLength)q++,K++;else{if("pes"===(ne=w.subarray(q,K),ci.ts.parseType(ne,k.pid)))et=ci.ts.parsePesType(ne,k.table),vt=ci.ts.parsePayloadUnitStartIndicator(ne),"audio"===et&&vt&&((dt=ci.ts.parsePesTime(ne))&&(dt.type="audio",S.audio.push(dt),Lt=!0));if(Lt)break;q+=ro,K+=ro}for(q=(K=w.byteLength)-ro,Lt=!1;q>=0;)if(71!==w[q]||71!==w[K]&&K!==w.byteLength)q--,K--;else{if("pes"===(ne=w.subarray(q,K),ci.ts.parseType(ne,k.pid)))et=ci.ts.parsePesType(ne,k.table),vt=ci.ts.parsePayloadUnitStartIndicator(ne),"audio"===et&&vt&&((dt=ci.ts.parsePesTime(ne))&&(dt.type="audio",S.audio.push(dt),Lt=!0));if(Lt)break;q-=ro,K-=ro}},y6=function(w,k,S){for(var ne,et,vt,dt,Lt,an,Ln,q=0,K=ro,Nn=!1,Cn={data:[],size:0};K=0;)if(71!==w[q]||71!==w[K])q--,K--;else{if("pes"===(ne=w.subarray(q,K),ci.ts.parseType(ne,k.pid)))et=ci.ts.parsePesType(ne,k.table),vt=ci.ts.parsePayloadUnitStartIndicator(ne),"video"===et&&vt&&((dt=ci.ts.parsePesTime(ne))&&(dt.type="video",S.video.push(dt),Nn=!0));if(Nn)break;q-=ro,K-=ro}},M6=function(w){var k={pid:null,table:null},S={};for(var q in function(w,k){for(var K,S=0,q=ro;q=3;){switch(ci.aac.parseType(w,He)){case"timed-metadata":if(w.length-He<10){k=!0;break}if((ne=ci.aac.parseId3TagSize(w,He))>w.length){k=!0;break}null===K&&(et=w.subarray(He,He+ne),K=ci.aac.parseAacTimestamp(et)),He+=ne;break;case"audio":if(w.length-He<7){k=!0;break}if((ne=ci.aac.parseAdtsSize(w,He))>w.length){k=!0;break}null===q&&(et=w.subarray(He,He+ne),q=ci.aac.parseSampleRate(et)),S++,He+=ne;break;default:He++}if(k)return null}if(null===q||null===K)return null;var dt=K1/q;return{audio:[{type:"audio",dts:K,pts:K},{type:"audio",dts:K+1024*S*dt,pts:K+1024*S*dt}]}}(w):M6(w),q&&(q.audio||q.video)?(function(w,k){if(w.audio&&w.audio.length){var S=k;(void 0===S||isNaN(S))&&(S=w.audio[0].dts),w.audio.forEach(function(ne){ne.dts=$u(ne.dts,S),ne.pts=$u(ne.pts,S),ne.dtsTime=ne.dts/K1,ne.ptsTime=ne.pts/K1})}if(w.video&&w.video.length){var q=k;if((void 0===q||isNaN(q))&&(q=w.video[0].dts),w.video.forEach(function(ne){ne.dts=$u(ne.dts,q),ne.pts=$u(ne.pts,q),ne.dtsTime=ne.dts/K1,ne.ptsTime=ne.pts/K1}),w.firstKeyFrame){var K=w.firstKeyFrame;K.dts=$u(K.dts,q),K.pts=$u(K.pts,q),K.dtsTime=K.dts/K1,K.ptsTime=K.pts/K1}}}(q,k),q):null},w6=function(){function Me(k,S){this.options=S||{},this.self=k,this.init()}var w=Me.prototype;return w.init=function(){this.transmuxer&&this.transmuxer.dispose(),this.transmuxer=new Ud.Transmuxer(this.options),function(w,k){k.on("data",function(S){var q=S.initSegment;S.initSegment={data:q.buffer,byteOffset:q.byteOffset,byteLength:q.byteLength};var K=S.data;S.data=K.buffer,w.postMessage({action:"data",segment:S,byteOffset:K.byteOffset,byteLength:K.byteLength},[S.data])}),k.on("done",function(S){w.postMessage({action:"done"})}),k.on("gopInfo",function(S){w.postMessage({action:"gopInfo",gopInfo:S})}),k.on("videoSegmentTimingInfo",function(S){var q={start:{decode:Zr_videoTsToSeconds(S.start.dts),presentation:Zr_videoTsToSeconds(S.start.pts)},end:{decode:Zr_videoTsToSeconds(S.end.dts),presentation:Zr_videoTsToSeconds(S.end.pts)},baseMediaDecodeTime:Zr_videoTsToSeconds(S.baseMediaDecodeTime)};S.prependedContentDuration&&(q.prependedContentDuration=Zr_videoTsToSeconds(S.prependedContentDuration)),w.postMessage({action:"videoSegmentTimingInfo",videoSegmentTimingInfo:q})}),k.on("audioSegmentTimingInfo",function(S){var q={start:{decode:Zr_videoTsToSeconds(S.start.dts),presentation:Zr_videoTsToSeconds(S.start.pts)},end:{decode:Zr_videoTsToSeconds(S.end.dts),presentation:Zr_videoTsToSeconds(S.end.pts)},baseMediaDecodeTime:Zr_videoTsToSeconds(S.baseMediaDecodeTime)};S.prependedContentDuration&&(q.prependedContentDuration=Zr_videoTsToSeconds(S.prependedContentDuration)),w.postMessage({action:"audioSegmentTimingInfo",audioSegmentTimingInfo:q})}),k.on("id3Frame",function(S){w.postMessage({action:"id3Frame",id3Frame:S})}),k.on("caption",function(S){w.postMessage({action:"caption",caption:S})}),k.on("trackinfo",function(S){w.postMessage({action:"trackinfo",trackInfo:S})}),k.on("audioTimingInfo",function(S){w.postMessage({action:"audioTimingInfo",audioTimingInfo:{start:Zr_videoTsToSeconds(S.start),end:Zr_videoTsToSeconds(S.end)}})}),k.on("videoTimingInfo",function(S){w.postMessage({action:"videoTimingInfo",videoTimingInfo:{start:Zr_videoTsToSeconds(S.start),end:Zr_videoTsToSeconds(S.end)}})}),k.on("log",function(S){w.postMessage({action:"log",log:S})})}(this.self,this.transmuxer)},w.pushMp4Captions=function(S){this.captionParser||(this.captionParser=new Q1,this.captionParser.init());var q=new Uint8Array(S.data,S.byteOffset,S.byteLength),K=this.captionParser.parse(q,S.trackIds,S.timescales);this.self.postMessage({action:"mp4Captions",captions:K&&K.captions||[],logs:K&&K.logs||[],data:q.buffer},[q.buffer])},w.probeMp4StartTime=function(S){var q=S.timescales,K=S.data,ne=f6_startTime(q,K);this.self.postMessage({action:"probeMp4StartTime",startTime:ne,data:K},[K.buffer])},w.probeMp4Tracks=function(S){var q=S.data,K=f6_tracks(q);this.self.postMessage({action:"probeMp4Tracks",tracks:K,data:q},[q.buffer])},w.probeTs=function(S){var q=S.data,K=S.baseStartTime,ne="number"!=typeof K||isNaN(K)?void 0:K*Zr_ONE_SECOND_IN_TS,He=xf_inspect(q,ne),et=null;He&&((et={hasVideo:He.video&&2===He.video.length||!1,hasAudio:He.audio&&2===He.audio.length||!1}).hasVideo&&(et.videoStart=He.video[0].ptsTime),et.hasAudio&&(et.audioStart=He.audio[0].ptsTime)),this.self.postMessage({action:"probeTs",result:et,data:q},[q.buffer])},w.clearAllMp4Captions=function(){this.captionParser&&this.captionParser.clearAllCaptions()},w.clearParsedMp4Captions=function(){this.captionParser&&this.captionParser.clearParsedCaptions()},w.push=function(S){var q=new Uint8Array(S.data,S.byteOffset,S.byteLength);this.transmuxer.push(q)},w.reset=function(){this.transmuxer.reset()},w.setTimestampOffset=function(S){var q=S.timestampOffset||0;this.transmuxer.setBaseMediaDecodeTime(Math.round(Zr_secondsToVideoTs(q)))},w.setAudioAppendStart=function(S){this.transmuxer.setAudioAppendStart(Math.ceil(Zr_secondsToVideoTs(S.appendStart)))},w.setRemux=function(S){this.transmuxer.setRemux(S.remux)},w.flush=function(S){this.transmuxer.flush(),self.postMessage({action:"done",type:"transmuxed"})},w.endTimeline=function(){this.transmuxer.endTimeline(),self.postMessage({action:"endedtimeline",type:"transmuxed"})},w.alignGopsWith=function(S){this.transmuxer.alignGopsWith(S.gopsToAlignWith.slice())},Me}();self.onmessage=function(Me){"init"===Me.data.action&&Me.data.options?this.messageHandlers=new w6(self,Me.data.options):(this.messageHandlers||(this.messageHandlers=new w6(self)),Me.data&&Me.data.action&&"init"!==Me.data.action&&this.messageHandlers[Me.data.action]&&this.messageHandlers[Me.data.action](Me.data))}})),P9=V1(J0),U5=function(o){var l=o.transmuxer,s=o.bytes,n=o.audioAppendStart,a=o.gopsToAlignWith,c=o.remux,h=o.onData,_=o.onTrackInfo,M=o.onAudioTimingInfo,P=o.onVideoTimingInfo,Q=o.onVideoSegmentTimingInfo,G=o.onAudioSegmentTimingInfo,Te=o.onId3,qe=o.onCaptions,Oe=o.onDone,Ae=o.onEndedTimeline,Rt=o.onTransmuxerLog,Zt=o.isEndOfTimeline,Kt={buffer:[]},nn=Zt;if(l.onmessage=function(On){l.currentTransmux===o&&("data"===On.data.action&&function(o,l,s){var n=o.data.segment,a=n.type,c=n.initSegment,h=n.captions,_=n.captionStreams,M=n.metadata,P=n.videoFrameDtsTime,Q=n.videoFramePtsTime;l.buffer.push({captions:h,captionStreams:_,metadata:M});var G=o.data.segment.boxes||{data:o.data.segment.data},Te={type:a,data:new Uint8Array(G.data,G.data.byteOffset,G.data.byteLength),initSegment:new Uint8Array(c.data,c.byteOffset,c.byteLength)};void 0!==P&&(Te.videoFrameDtsTime=P),void 0!==Q&&(Te.videoFramePtsTime=Q),s(Te)}(On,Kt,h),"trackinfo"===On.data.action&&_(On.data.trackInfo),"gopInfo"===On.data.action&&function(o,l){l.gopInfo=o.data.gopInfo}(On,Kt),"audioTimingInfo"===On.data.action&&M(On.data.audioTimingInfo),"videoTimingInfo"===On.data.action&&P(On.data.videoTimingInfo),"videoSegmentTimingInfo"===On.data.action&&Q(On.data.videoSegmentTimingInfo),"audioSegmentTimingInfo"===On.data.action&&G(On.data.audioSegmentTimingInfo),"id3Frame"===On.data.action&&Te([On.data.id3Frame],On.data.id3Frame.dispatchType),"caption"===On.data.action&&qe(On.data.caption),"endedtimeline"===On.data.action&&(nn=!1,Ae()),"log"===On.data.action&&Rt(On.data.log),"transmuxed"===On.data.type&&(nn||(l.onmessage=null,function(o){var l=o.transmuxedData,s=o.callback;l.buffer=[],s(l)}({transmuxedData:Kt,callback:Oe}),_4(l))))},n&&l.postMessage({action:"setAudioAppendStart",appendStart:n}),Array.isArray(a)&&l.postMessage({action:"alignGopsWith",gopsToAlignWith:a}),void 0!==c&&l.postMessage({action:"setRemux",remux:c}),s.byteLength){var wn=s instanceof ArrayBuffer?s:s.buffer,Dn=s instanceof ArrayBuffer?0:s.byteOffset;l.postMessage({action:"push",data:wn,byteOffset:Dn,byteLength:s.byteLength},[wn])}Zt&&l.postMessage({action:"endTimeline"}),l.postMessage({action:"flush"})},_4=function(o){o.currentTransmux=null,o.transmuxQueue.length&&(o.currentTransmux=o.transmuxQueue.shift(),"function"==typeof o.currentTransmux?o.currentTransmux():U5(o.currentTransmux))},X0=function(o,l){o.postMessage({action:l}),_4(o)},$0=function(o,l){if(!l.currentTransmux)return l.currentTransmux=o,void X0(l,o);l.transmuxQueue.push(X0.bind(null,l,o))},C4=function(o){if(!o.transmuxer.currentTransmux)return o.transmuxer.currentTransmux=o,void U5(o);o.transmuxer.transmuxQueue.push(o)},j5_reset=function(o){$0("reset",o)},j5_createTransmuxer=function(o){var l=new P9;l.currentTransmux=null,l.transmuxQueue=[];var s=l.terminate;return l.terminate=function(){return l.currentTransmux=null,l.transmuxQueue.length=0,s.call(l)},l.postMessage({action:"init",options:o}),l},td=function(o){var l=o.transmuxer,s=o.endAction||o.action,n=o.callback,a=V({},o,{endAction:null,transmuxer:null,callback:null});if(l.addEventListener("message",function M(P){P.data.action===s&&(l.removeEventListener("message",M),P.data.data&&(P.data.data=new Uint8Array(P.data.data,o.byteOffset||0,o.byteLength||P.data.data.byteLength),o.data&&(o.data=P.data.data)),n(P.data))}),o.data){var h=o.data instanceof ArrayBuffer;a.byteOffset=h?0:o.data.byteOffset,a.byteLength=o.data.byteLength;var _=[h?o.data:o.data.buffer];l.postMessage(a,_)}else l.postMessage(a)},_l_FAILURE=2,_l_TIMEOUT=-101,_l_ABORTED=-102,V5=function(o){o.forEach(function(l){l.abort()})},H5=function(o,l){return l.timedout?{status:l.status,message:"HLS request timed-out at URL: "+l.uri,code:_l_TIMEOUT,xhr:l}:l.aborted?{status:l.status,message:"HLS request aborted at URL: "+l.uri,code:_l_ABORTED,xhr:l}:o?{status:l.status,message:"HLS request errored at URL: "+l.uri,code:_l_FAILURE,xhr:l}:"arraybuffer"===l.responseType&&0===l.response.byteLength?{status:l.status,message:"Empty HLS response at URL: "+l.uri,code:_l_FAILURE,xhr:l}:null},b4=function(o,l,s){return function(n,a){var c=a.response,h=H5(n,a);if(h)return s(h,o);if(16!==c.byteLength)return s({status:a.status,message:"Invalid HLS key at URL: "+a.uri,code:_l_FAILURE,xhr:a},o);for(var _=new DataView(c),M=new Uint32Array([_.getUint32(0),_.getUint32(4),_.getUint32(8),_.getUint32(12)]),P=0;P0}(Oe)){l.isFmp4=!0;var Ae=l.map.tracks,Rt={isFmp4:!0,hasVideo:!!Ae.video,hasAudio:!!Ae.audio};Ae.audio&&Ae.audio.codec&&"enca"!==Ae.audio.codec&&(Rt.audioCodec=Ae.audio.codec),Ae.video&&Ae.video.codec&&"encv"!==Ae.video.codec&&(Rt.videoCodec=Ae.video.codec),Ae.video&&Ae.audio&&(Rt.isMuxed=!0),n(l,Rt);var Zt=function(nn){G(l,{data:Oe,type:Rt.hasAudio&&!Rt.isMuxed?"audio":"video"}),nn&&nn.length&&M(l,nn),Te(null,l,{})};td({action:"probeMp4StartTime",timescales:l.map.timescales,data:Oe,transmuxer:l.transmuxer,callback:function(nn){var en=nn.data,wn=nn.startTime;s=en.buffer,l.bytes=Oe=en,Rt.hasAudio&&!Rt.isMuxed&&a(l,"audio","start",wn),Rt.hasVideo&&a(l,"video","start",wn),Ae.video&&en.byteLength&&l.transmuxer?td({action:"pushMp4Captions",endAction:"mp4Captions",transmuxer:l.transmuxer,data:Oe,timescales:l.map.timescales,trackIds:[Ae.video.id],callback:function(cn){s=cn.data.buffer,l.bytes=Oe=cn.data,cn.logs.forEach(function(On){qe(Pt.mergeOptions(On,{stream:"mp4CaptionParser"}))}),Zt(cn.captions)}}):Zt()}})}else{if(l.transmuxer)return void 0===l.container&&(l.container=La(Oe)),"ts"!==l.container&&"aac"!==l.container?(n(l,{hasAudio:!1,hasVideo:!1}),void Te(null,l,{})):void w4({segment:l,bytes:s,trackInfoFn:n,timingInfoFn:a,videoSegmentTimingInfoFn:c,audioSegmentTimingInfoFn:h,id3Fn:_,captionsFn:M,isEndOfTimeline:P,endedTimelineFn:Q,dataFn:G,doneFn:Te,onTransmuxerLog:qe});Te(null,l,{})}},D3=function(o,l){var _,s=o.id,n=o.key,a=o.encryptedBytes,c=o.decryptionWorker;c.addEventListener("message",function M(P){if(P.data.source===s){c.removeEventListener("message",M);var Q=P.data.decrypted;l(new Uint8Array(Q.bytes,Q.byteOffset,Q.byteLength))}}),_=n.bytes.slice?n.bytes.slice():new Uint32Array(Array.prototype.slice.call(n.bytes)),c.postMessage(H0({source:s,encrypted:a,key:_,iv:n.iv}),[a.buffer,_.buffer])},id=function(o){var l=o.activeXhrs,s=o.decryptionWorker,n=o.trackInfoFn,a=o.timingInfoFn,c=o.videoSegmentTimingInfoFn,h=o.audioSegmentTimingInfoFn,_=o.id3Fn,M=o.captionsFn,P=o.isEndOfTimeline,Q=o.endedTimelineFn,G=o.dataFn,Te=o.doneFn,qe=o.onTransmuxerLog,Oe=0,Ae=!1;return function(Rt,Zt){if(!Ae){if(Rt)return Ae=!0,V5(l),Te(Rt,Zt);if((Oe+=1)===l.length){var Kt=function(){if(Zt.encryptedBytes)return function(o){var l=o.decryptionWorker,s=o.segment,n=o.trackInfoFn,a=o.timingInfoFn,c=o.videoSegmentTimingInfoFn,h=o.audioSegmentTimingInfoFn,_=o.id3Fn,M=o.captionsFn,P=o.isEndOfTimeline,Q=o.endedTimelineFn,G=o.dataFn,Te=o.doneFn,qe=o.onTransmuxerLog;D3({id:s.requestId,key:s.key,encryptedBytes:s.encryptedBytes,decryptionWorker:l},function(Oe){s.bytes=Oe,rd({segment:s,bytes:s.bytes,trackInfoFn:n,timingInfoFn:a,videoSegmentTimingInfoFn:c,audioSegmentTimingInfoFn:h,id3Fn:_,captionsFn:M,isEndOfTimeline:P,endedTimelineFn:Q,dataFn:G,doneFn:Te,onTransmuxerLog:qe})})}({decryptionWorker:s,segment:Zt,trackInfoFn:n,timingInfoFn:a,videoSegmentTimingInfoFn:c,audioSegmentTimingInfoFn:h,id3Fn:_,captionsFn:M,isEndOfTimeline:P,endedTimelineFn:Q,dataFn:G,doneFn:Te,onTransmuxerLog:qe});rd({segment:Zt,bytes:Zt.bytes,trackInfoFn:n,timingInfoFn:a,videoSegmentTimingInfoFn:c,audioSegmentTimingInfoFn:h,id3Fn:_,captionsFn:M,isEndOfTimeline:P,endedTimelineFn:Q,dataFn:G,doneFn:Te,onTransmuxerLog:qe})};if(Zt.endOfAllRequests=Date.now(),Zt.map&&Zt.map.encryptedBytes&&!Zt.map.bytes)return D3({decryptionWorker:s,id:Zt.requestId+"-init",encryptedBytes:Zt.map.encryptedBytes,key:Zt.map.key},function(nn){Zt.map.bytes=nn,M4(Zt,function(en){if(en)return V5(l),Te(en,Zt);Kt()})});Kt()}}}},lu=function(o){var l=o.segment,s=o.progressFn;return o.trackInfoFn,o.timingInfoFn,o.videoSegmentTimingInfoFn,o.audioSegmentTimingInfoFn,o.id3Fn,o.captionsFn,o.isEndOfTimeline,o.endedTimelineFn,o.dataFn,function(n){if(!n.target.aborted)return l.stats=Pt.mergeOptions(l.stats,function(o){var l=o.target,n={bandwidth:1/0,bytesReceived:0,roundTripTime:Date.now()-l.requestTime||0};return n.bytesReceived=o.loaded,n.bandwidth=Math.floor(n.bytesReceived/n.roundTripTime*8*1e3),n}(n)),!l.stats.firstBytesReceivedAt&&l.stats.bytesReceived&&(l.stats.firstBytesReceivedAt=Date.now()),s(n,l)}},W5=function(o){var l=o.xhr,s=o.xhrOptions,n=o.decryptionWorker,a=o.segment,c=o.abortFn,h=o.progressFn,_=o.trackInfoFn,M=o.timingInfoFn,P=o.videoSegmentTimingInfoFn,Q=o.audioSegmentTimingInfoFn,G=o.id3Fn,Te=o.captionsFn,qe=o.isEndOfTimeline,Oe=o.endedTimelineFn,Ae=o.dataFn,Rt=o.doneFn,Zt=o.onTransmuxerLog,Kt=[],nn=id({activeXhrs:Kt,decryptionWorker:n,trackInfoFn:_,timingInfoFn:M,videoSegmentTimingInfoFn:P,audioSegmentTimingInfoFn:Q,id3Fn:G,captionsFn:Te,isEndOfTimeline:qe,endedTimelineFn:Oe,dataFn:Ae,doneFn:Rt,onTransmuxerLog:Zt});if(a.key&&!a.key.bytes){var en=[a.key];a.map&&!a.map.bytes&&a.map.key&&a.map.key.resolvedUri===a.key.resolvedUri&&en.push(a.map.key);var cn=l(Pt.mergeOptions(s,{uri:a.key.resolvedUri,responseType:"arraybuffer"}),b4(a,en,nn));Kt.push(cn)}if(a.map&&!a.map.bytes){if(a.map.key&&(!a.key||a.key.resolvedUri!==a.map.key.resolvedUri)){var Wn=l(Pt.mergeOptions(s,{uri:a.map.key.resolvedUri,responseType:"arraybuffer"}),b4(a,[a.map.key],nn));Kt.push(Wn)}var Hi=Pt.mergeOptions(s,{uri:a.map.resolvedUri,responseType:"arraybuffer",headers:E3(a.map)}),eo=function(o){var l=o.segment,s=o.finishProcessingFn;return function(n,a){var c=H5(n,a);if(c)return s(c,l);var h=new Uint8Array(a.response);if(l.map.key)return l.map.encryptedBytes=h,s(null,l);l.map.bytes=h,M4(l,function(_){if(_)return _.xhr=a,_.status=a.status,s(_,l);s(null,l)})}}({segment:a,finishProcessingFn:nn}),mi=l(Hi,eo);Kt.push(mi)}var cu=Pt.mergeOptions(s,{uri:a.part&&a.part.resolvedUri||a.resolvedUri,responseType:"arraybuffer",headers:E3(a)}),v1=l(cu,nd({segment:a,finishProcessingFn:nn,responseType:cu.responseType}));v1.addEventListener("progress",lu({segment:a,progressFn:h,trackInfoFn:_,timingInfoFn:M,videoSegmentTimingInfoFn:P,audioSegmentTimingInfoFn:Q,id3Fn:G,captionsFn:Te,isEndOfTimeline:qe,endedTimelineFn:Oe,dataFn:Ae})),Kt.push(v1);var _1={};return Kt.forEach(function(y1){y1.addEventListener("loadend",function(o){var l=o.loadendState,s=o.abortFn;return function(n){n.target.aborted&&s&&!l.calledAbortFn&&(s(),l.calledAbortFn=!0)}}({loadendState:_1,abortFn:c}))}),function(){return V5(Kt)}},E4=Os("CodecUtils"),L3=function(o,l){var s=l.attributes||{};return o&&o.mediaGroups&&o.mediaGroups.AUDIO&&s.AUDIO&&o.mediaGroups.AUDIO[s.AUDIO]},vc=function(o){var l={};return o.forEach(function(s){var n=s.mediaType,a=s.type,c=s.details;l[n]=l[n]||[],l[n].push(Wt(""+a+c))}),Object.keys(l).forEach(function(s){if(l[s].length>1)return E4("multiple "+s+" codecs found as attributes: "+l[s].join(", ")+". Setting playlist codecs to null so that we wait for mux.js to probe segments for real codecs."),void(l[s]=null);l[s]=l[s][0]}),l},Q5=function(o){var l=0;return o.audio&&l++,o.video&&l++,l},_c=function(o,l){var s=l.attributes||{},n=vc(function(o){var l=o.attributes||{};if(l.CODECS)return Pn(l.CODECS)}(l)||[]);if(L3(o,l)&&!n.audio&&!function(o,l){if(!L3(o,l))return!0;var s=l.attributes||{},n=o.mediaGroups.AUDIO[s.AUDIO];for(var a in n)if(!n[a].uri&&!n[a].playlists)return!0;return!1}(o,l)){var a=vc(function(o,l){if(!o.mediaGroups.AUDIO||!l)return null;var s=o.mediaGroups.AUDIO[l];if(!s)return null;for(var n in s){var a=s[n];if(a.default&&a.playlists)return Pn(a.playlists[0].attributes.CODECS)}return null}(o,s.AUDIO)||[]);a.audio&&(n.audio=a.audio)}return n},uu=Os("PlaylistSelector"),Fu=function(o){if(o&&o.playlist){var l=o.playlist;return JSON.stringify({id:l.id,bandwidth:o.bandwidth,width:o.width,height:o.height,codecs:l.attributes&&l.attributes.CODECS||""})}},v2=function(o,l){if(!o)return"";var s=C().getComputedStyle(o);return s?s[l]:""},m1=function(o,l){var s=o.slice();o.sort(function(n,a){var c=l(n,a);return 0===c?s.indexOf(n)-s.indexOf(a):c})},Bu=function(o,l){var s,n;return o.attributes.BANDWIDTH&&(s=o.attributes.BANDWIDTH),s=s||C().Number.MAX_VALUE,l.attributes.BANDWIDTH&&(n=l.attributes.BANDWIDTH),s-(n=n||C().Number.MAX_VALUE)},Y5=function(o,l,s,n,a,c){if(o){var h={bandwidth:l,width:s,height:n,limitRenditionByPlayerDimensions:a},_=o.playlists;Go.isAudioOnly(o)&&(_=c.getAudioTrackPlaylists_(),h.audioOnly=!0);var M=_.map(function(xn){var Wn=xn.attributes&&xn.attributes.RESOLUTION&&xn.attributes.RESOLUTION.width,Hi=xn.attributes&&xn.attributes.RESOLUTION&&xn.attributes.RESOLUTION.height;return{bandwidth:xn.attributes&&xn.attributes.BANDWIDTH||C().Number.MAX_VALUE,width:Wn,height:Hi,playlist:xn}});m1(M,function(xn,Kr){return xn.bandwidth-Kr.bandwidth});var P=(M=M.filter(function(xn){return!Go.isIncompatible(xn.playlist)})).filter(function(xn){return Go.isEnabled(xn.playlist)});P.length||(P=M.filter(function(xn){return!Go.isDisabled(xn.playlist)}));var Q=P.filter(function(xn){return xn.bandwidth*Ta.BANDWIDTH_VARIANCEs||xn.height>n})).filter(function(xn){return xn.width===Kt[0].width&&xn.height===Kt[0].height}),G=nn[nn.length-1],en=nn.filter(function(xn){return xn.bandwidth===G.bandwidth})[0]),c.experimentalLeastPixelDiffSelector){var Dn=Ae.map(function(xn){return xn.pixelDiff=Math.abs(xn.width-s)+Math.abs(xn.height-n),xn});m1(Dn,function(xn,Kr){return xn.pixelDiff===Kr.pixelDiff?Kr.bandwidth-xn.bandwidth:xn.pixelDiff-Kr.pixelDiff}),wn=Dn[0]}var cn=wn||en||Zt||Te||P[0]||M[0];if(cn&&cn.playlist){var On="sortedPlaylistReps";return wn?On="leastPixelDiffRep":en?On="resolutionPlusOneRep":Zt?On="resolutionBestRep":Te?On="bandwidthBestRep":P[0]&&(On="enabledPlaylistReps"),uu("choosing "+Fu(cn)+" using "+On+" with options",h),cn.playlist}return uu("could not choose a playlist with options",h),null}},ad=function(){var o=this.useDevicePixelRatio&&C().devicePixelRatio||1;return Y5(this.playlists.master,this.systemBandwidth,parseInt(v2(this.tech_.el(),"width"),10)*o,parseInt(v2(this.tech_.el(),"height"),10)*o,this.limitRenditionByPlayerDimensions,this.masterPlaylistController_)},R9=function(o){var l=o.inbandTextTracks,s=o.metadataArray,n=o.timestampOffset,a=o.videoDuration;if(s){var c=C().WebKitDataCue||C().VTTCue,h=l.metadataTrack_;if(h&&(s.forEach(function(Te){var qe=Te.cueTime+n;"number"!=typeof qe||C().isNaN(qe)||qe<0||!(qe<1/0)||Te.frames.forEach(function(Oe){var Ae=new c(qe,qe,Oe.value||Oe.url||Oe.data||"");Ae.frame=Oe,Ae.value=Oe,function(o){Object.defineProperties(o.frame,{id:{get:function(){return Pt.log.warn("cue.frame.id is deprecated. Use cue.value.key instead."),o.value.key}},value:{get:function(){return Pt.log.warn("cue.frame.value is deprecated. Use cue.value.data instead."),o.value.data}},privateData:{get:function(){return Pt.log.warn("cue.frame.privateData is deprecated. Use cue.value.data instead."),o.value.data}}})}(Ae),h.addCue(Ae)})}),h.cues&&h.cues.length)){for(var _=h.cues,M=[],P=0;P<_.length;P++)_[P]&&M.push(_[P]);var Q=M.reduce(function(Te,qe){var Oe=Te[qe.startTime]||[];return Oe.push(qe),Te[qe.startTime]=Oe,Te},{}),G=Object.keys(Q).sort(function(Te,qe){return Number(Te)-Number(qe)});G.forEach(function(Te,qe){var Oe=Q[Te],Ae=Number(G[qe+1])||a;Oe.forEach(function(Rt){Rt.endTime=Ae})})}}},y2=function(o,l,s){var n,a;if(s&&s.cues)for(n=s.cues.length;n--;)(a=s.cues[n]).startTime>=o&&a.endTime<=l&&s.removeCue(a)},ld=function(o){return"number"==typeof o&&isFinite(o)},ud=1/60,qu=function(o){var l=o.startOfSegment,s=o.duration,n=o.segment,a=o.part,c=o.playlist,h=c.mediaSequence,_=c.id,M=c.segments,P=void 0===M?[]:M,Q=o.mediaIndex,G=o.partIndex,Te=o.timeline,qe=P.length-1,Oe="mediaIndex/partIndex increment";o.getMediaInfoForTime?Oe="getMediaInfoForTime ("+o.getMediaInfoForTime+")":o.isSyncRequest&&(Oe="getSyncSegmentCandidate (isSyncRequest)"),o.independent&&(Oe+=" with independent "+o.independent);var Ae="number"==typeof G,Rt=o.segment.uri?"segment":"pre-segment",Zt=Ae?A0({preloadSegment:n})-1:0;return Rt+" ["+(h+Q)+"/"+(h+qe)+"]"+(Ae?" part ["+G+"/"+Zt+"]":"")+" segment start/end ["+n.start+" => "+n.end+"]"+(Ae?" part start/end ["+a.start+" => "+a.end+"]":"")+" startOfSegment ["+l+"] duration ["+s+"] timeline ["+Te+"] selected by ["+Oe+"] playlist ["+_+"]"},n8=function(o){return o+"TimingInfo"},r8=function(o){var l=o.timelineChangeController,s=o.currentTimeline,n=o.segmentTimeline,a=o.loaderType,c=o.audioDisabled;if(s===n)return!1;if("audio"===a){var h=l.lastTimelineChange({type:"main"});return!h||h.to!==n}if("main"===a&&c){var _=l.pendingTimelineChange({type:"audio"});return!(_&&_.to===n)}return!1},a8=function(o){var l=o.segmentDuration,s=o.maxDuration;return!!l&&Math.round(l)>s+iu},o8=function(o,l){if("hls"!==l)return null;var s=function(o){var l=0;return["video","audio"].forEach(function(s){var n=o[s+"TimingInfo"];if(n){var h,a=n.start,c=n.end;"bigint"==typeof a||"bigint"==typeof c?h=C().BigInt(c)-C().BigInt(a):"number"==typeof a&&"number"==typeof c&&(h=c-a),void 0!==h&&h>l&&(l=h)}}),"bigint"==typeof l&&l=11,a.appendInitSegment_={audio:!0,video:!0},a.playlistOfLastInitSegment_={audio:null,video:null},a.callQueue_=[],a.loadQueue_=[],a.metadataQueue_={id3:[],caption:[]},a.waitingOnRemove_=!1,a.quotaExceededErrorRetryTimeout_=null,a.activeInitSegmentId_=null,a.initSegments_={},a.cacheEncryptionKeys_=s.cacheEncryptionKeys,a.keyCache_={},a.decrypter_=s.decrypter,a.syncController_=s.syncController,a.syncPoint_={segmentIndex:0,time:0},a.transmuxer_=a.createTransmuxer_(),a.triggerSyncInfoUpdate_=function(){return a.trigger("syncinfoupdate")},a.syncController_.on("syncinfoupdate",a.triggerSyncInfoUpdate_),a.mediaSource_.addEventListener("sourceopen",function(){a.isEndOfStream_()||(a.ended_=!1)}),a.fetchAtBuffer_=!1,a.logger_=Os("SegmentLoader["+a.loaderType_+"]"),Object.defineProperty(y(a),"state",{get:function(){return this.state_},set:function(h){h!==this.state_&&(this.logger_(this.state_+" -> "+h),this.state_=h,this.trigger("statechange"))}}),a.sourceUpdater_.on("ready",function(){a.hasEnoughInfoToAppend_()&&a.processCallQueue_()}),"main"===a.loaderType_&&a.timelineChangeController_.on("pendingtimelinechange",function(){a.hasEnoughInfoToAppend_()&&a.processCallQueue_()}),"audio"===a.loaderType_&&a.timelineChangeController_.on("timelinechange",function(){a.hasEnoughInfoToLoad_()&&a.processLoadQueue_(),a.hasEnoughInfoToAppend_()&&a.processCallQueue_()}),a}ue(o,p);var l=o.prototype;return l.createTransmuxer_=function(){return j5_createTransmuxer({remux:!1,alignGopsAtEnd:this.safeAppend_,keepOriginalTimestamps:!0,parse708captions:this.parse708captions_,captionServices:this.captionServices_})},l.resetStats_=function(){this.mediaBytesTransferred=0,this.mediaRequests=0,this.mediaRequestsAborted=0,this.mediaRequestsTimedout=0,this.mediaRequestsErrored=0,this.mediaTransferDuration=0,this.mediaSecondsLoaded=0,this.mediaAppends=0},l.dispose=function(){this.trigger("dispose"),this.state="DISPOSED",this.pause(),this.abort_(),this.transmuxer_&&this.transmuxer_.terminate(),this.resetStats_(),this.checkBufferTimeout_&&C().clearTimeout(this.checkBufferTimeout_),this.syncController_&&this.triggerSyncInfoUpdate_&&this.syncController_.off("syncinfoupdate",this.triggerSyncInfoUpdate_),this.off()},l.setAudio=function(n){this.audioDisabled_=!n,n?this.appendInitSegment_.audio=!0:this.sourceUpdater_.removeAudio(0,this.duration_())},l.abort=function(){"WAITING"===this.state?(this.abort_(),this.state="READY",this.paused()||this.monitorBuffer_()):this.pendingSegment_&&(this.pendingSegment_=null)},l.abort_=function(){this.pendingSegment_&&this.pendingSegment_.abortRequests&&this.pendingSegment_.abortRequests(),this.pendingSegment_=null,this.callQueue_=[],this.loadQueue_=[],this.metadataQueue_.id3=[],this.metadataQueue_.caption=[],this.timelineChangeController_.clearPendingTimelineChange(this.loaderType_),this.waitingOnRemove_=!1,C().clearTimeout(this.quotaExceededErrorRetryTimeout_),this.quotaExceededErrorRetryTimeout_=null},l.checkForAbort_=function(n){return"APPENDING"!==this.state||this.pendingSegment_?!this.pendingSegment_||this.pendingSegment_.requestId!==n:(this.state="READY",!0)},l.error=function(n){return void 0!==n&&(this.logger_("error occurred:",n),this.error_=n),this.pendingSegment_=null,this.error_},l.endOfStream=function(){this.ended_=!0,this.transmuxer_&&j5_reset(this.transmuxer_),this.gopBuffer_.length=0,this.pause(),this.trigger("ended")},l.buffered_=function(){var n=this.getMediaInfo_();if(!this.sourceUpdater_||!n)return Pt.createTimeRanges();if("main"===this.loaderType_){var a=n.hasAudio,c=n.hasVideo,h=n.isMuxed;if(c&&a&&!this.audioDisabled_&&!h)return this.sourceUpdater_.buffered();if(c)return this.sourceUpdater_.videoBuffered()}return this.sourceUpdater_.audioBuffered()},l.initSegmentForMap=function(n,a){if(void 0===a&&(a=!1),!n)return null;var c=x3(n),h=this.initSegments_[c];return a&&!h&&n.bytes&&(this.initSegments_[c]=h={resolvedUri:n.resolvedUri,byterange:n.byterange,bytes:n.bytes,tracks:n.tracks,timescales:n.timescales}),h||n},l.segmentKey=function(n,a){if(void 0===a&&(a=!1),!n)return null;var c=G0(n),h=this.keyCache_[c];this.cacheEncryptionKeys_&&a&&!h&&n.bytes&&(this.keyCache_[c]=h={resolvedUri:n.resolvedUri,bytes:n.bytes});var _={resolvedUri:(h||n).resolvedUri};return h&&(_.bytes=h.bytes),_},l.couldBeginLoading_=function(){return this.playlist_&&!this.paused()},l.load=function(){if(this.monitorBuffer_(),this.playlist_){if("INIT"===this.state&&this.couldBeginLoading_())return this.init_();!this.couldBeginLoading_()||"READY"!==this.state&&"INIT"!==this.state||(this.state="READY")}},l.init_=function(){return this.state="READY",this.resetEverything(),this.monitorBuffer_()},l.playlist=function(n,a){if(void 0===a&&(a={}),n){var c=this.playlist_,h=this.pendingSegment_;this.playlist_=n,this.xhrOptions_=a,"INIT"===this.state&&(n.syncInfo={mediaSequence:n.mediaSequence,time:0},"main"===this.loaderType_&&this.syncController_.setDateTimeMappingForStart(n));var _=null;if(c&&(c.id?_=c.id:c.uri&&(_=c.uri)),this.logger_("playlist update ["+_+" => "+(n.id||n.uri)+"]"),this.trigger("syncinfoupdate"),"INIT"===this.state&&this.couldBeginLoading_())return this.init_();if(!c||c.uri!==n.uri)return null!==this.mediaIndex&&(n.endList?this.resyncLoader():this.resetLoader()),this.currentMediaInfo_=void 0,void this.trigger("playlistupdate");var M=n.mediaSequence-c.mediaSequence;if(this.logger_("live window shift ["+M+"]"),null!==this.mediaIndex)if(this.mediaIndex-=M,this.mediaIndex<0)this.mediaIndex=null,this.partIndex=null;else{var P=this.playlist_.segments[this.mediaIndex];if(this.partIndex&&(!P.parts||!P.parts.length||!P.parts[this.partIndex])){var Q=this.mediaIndex;this.logger_("currently processing part (index "+this.partIndex+") no longer exists."),this.resetLoader(),this.mediaIndex=Q}}h&&(h.mediaIndex-=M,h.mediaIndex<0?(h.mediaIndex=null,h.partIndex=null):(h.mediaIndex>=0&&(h.segment=n.segments[h.mediaIndex]),h.partIndex>=0&&h.segment.parts&&(h.part=h.segment.parts[h.partIndex]))),this.syncController_.saveExpiredSegmentInfo(c,n)}},l.pause=function(){this.checkBufferTimeout_&&(C().clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=null)},l.paused=function(){return null===this.checkBufferTimeout_},l.resetEverything=function(n){this.ended_=!1,this.appendInitSegment_={audio:!0,video:!0},this.resetLoader(),this.remove(0,1/0,n),this.transmuxer_&&(this.transmuxer_.postMessage({action:"clearAllMp4Captions"}),this.transmuxer_.postMessage({action:"reset"}))},l.resetLoader=function(){this.fetchAtBuffer_=!1,this.resyncLoader()},l.resyncLoader=function(){this.transmuxer_&&j5_reset(this.transmuxer_),this.mediaIndex=null,this.partIndex=null,this.syncPoint_=null,this.isPendingTimestampOffset_=!1,this.callQueue_=[],this.loadQueue_=[],this.metadataQueue_.id3=[],this.metadataQueue_.caption=[],this.abort(),this.transmuxer_&&this.transmuxer_.postMessage({action:"clearParsedMp4Captions"})},l.remove=function(n,a,c,h){if(void 0===c&&(c=function(){}),void 0===h&&(h=!1),a===1/0&&(a=this.duration_()),a<=n)this.logger_("skipping remove because end ${end} is <= start ${start}");else if(this.sourceUpdater_&&this.getMediaInfo_()){var _=1,M=function(){0===--_&&c()};for(var P in(h||!this.audioDisabled_)&&(_++,this.sourceUpdater_.removeAudio(n,a,M)),(h||"main"===this.loaderType_)&&(this.gopBuffer_=function(o,l,s,n){for(var a=Math.ceil((l-n)*oo.ONE_SECOND_IN_TS),c=Math.ceil((s-n)*oo.ONE_SECOND_IN_TS),h=o.slice(),_=o.length;_--&&!(o[_].pts<=c););if(-1===_)return h;for(var M=_+1;M--&&!(o[M].pts<=a););return M=Math.max(M,0),h.splice(M,_-M+1),h}(this.gopBuffer_,n,a,this.timeMapping_),_++,this.sourceUpdater_.removeVideo(n,a,M)),this.inbandTextTracks_)y2(n,a,this.inbandTextTracks_[P]);y2(n,a,this.segmentMetadataTrack_),M()}else this.logger_("skipping remove because no source updater or starting media info")},l.monitorBuffer_=function(){this.checkBufferTimeout_&&C().clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=C().setTimeout(this.monitorBufferTick_.bind(this),1)},l.monitorBufferTick_=function(){"READY"===this.state&&this.fillBuffer_(),this.checkBufferTimeout_&&C().clearTimeout(this.checkBufferTimeout_),this.checkBufferTimeout_=C().setTimeout(this.monitorBufferTick_.bind(this),500)},l.fillBuffer_=function(){if(!this.sourceUpdater_.updating()){var n=this.chooseNextRequest_();!n||("number"==typeof n.timestampOffset&&(this.isPendingTimestampOffset_=!1,this.timelineChangeController_.pendingTimelineChange({type:this.loaderType_,from:this.currentTimeline_,to:n.timeline})),this.loadSegment_(n))}},l.isEndOfStream_=function(n,a,c){if(void 0===n&&(n=this.mediaIndex),void 0===a&&(a=this.playlist_),void 0===c&&(c=this.partIndex),!a||!this.mediaSource_)return!1;var h="number"==typeof n&&a.segments[n],_=n+1===a.segments.length,M=!h||!h.parts||c+1===h.parts.length;return a.endList&&"open"===this.mediaSource_.readyState&&_&&M},l.chooseNextRequest_=function(){var n=this.buffered_(),a=g2(n)||0,c=sc(n,this.currentTime_()),h=!this.hasPlayed_()&&c>=1,_=c>=this.goalBufferLength_(),M=this.playlist_.segments;if(!M.length||h||_)return null;this.syncPoint_=this.syncPoint_||this.syncController_.getSyncPoint(this.playlist_,this.duration_(),this.currentTimeline_,this.currentTime_());var P={partIndex:null,mediaIndex:null,startOfSegment:null,playlist:this.playlist_,isSyncRequest:Boolean(!this.syncPoint_)};if(P.isSyncRequest)P.mediaIndex=function(o,l,s){l=l||[];for(var n=[],a=0,c=0;cs))return c}return 0===n.length?0:n[n.length-1]}(this.currentTimeline_,M,a);else if(null!==this.mediaIndex){var Q=M[this.mediaIndex],G="number"==typeof this.partIndex?this.partIndex:-1;P.startOfSegment=Q.end?Q.end:a,Q.parts&&Q.parts[G+1]?(P.mediaIndex=this.mediaIndex,P.partIndex=G+1):P.mediaIndex=this.mediaIndex+1}else{var Te=Go.getMediaInfoForTime({experimentalExactManifestTimings:this.experimentalExactManifestTimings,playlist:this.playlist_,currentTime:this.fetchAtBuffer_?a:this.currentTime_(),startingPartIndex:this.syncPoint_.partIndex,startingSegmentIndex:this.syncPoint_.segmentIndex,startTime:this.syncPoint_.time}),qe=Te.segmentIndex,Oe=Te.startTime,Ae=Te.partIndex;P.getMediaInfoForTime=this.fetchAtBuffer_?"bufferedEnd "+a:"currentTime "+this.currentTime_(),P.mediaIndex=qe,P.startOfSegment=Oe,P.partIndex=Ae}var Rt=M[P.mediaIndex],Zt=Rt&&"number"==typeof P.partIndex&&Rt.parts&&Rt.parts[P.partIndex];if(!Rt||"number"==typeof P.partIndex&&!Zt)return null;if("number"!=typeof P.partIndex&&Rt.parts&&(P.partIndex=0,Zt=Rt.parts[0]),!c&&Zt&&!Zt.independent)if(0===P.partIndex){var Kt=M[P.mediaIndex-1],nn=Kt.parts&&Kt.parts.length&&Kt.parts[Kt.parts.length-1];nn&&nn.independent&&(P.mediaIndex-=1,P.partIndex=Kt.parts.length-1,P.independent="previous segment")}else Rt.parts[P.partIndex-1].independent&&(P.partIndex-=1,P.independent="previous part");var en=this.mediaSource_&&"ended"===this.mediaSource_.readyState;return P.mediaIndex>=M.length-1&&en&&!this.seeking_()?null:this.generateSegmentInfo_(P)},l.generateSegmentInfo_=function(n){var a=n.independent,c=n.playlist,h=n.mediaIndex,_=n.startOfSegment,M=n.isSyncRequest,P=n.partIndex,Q=n.forceTimestampOffset,G=n.getMediaInfoForTime,Te=c.segments[h],qe="number"==typeof P&&Te.parts[P],Oe={requestId:"segment-loader-"+Math.random(),uri:qe&&qe.resolvedUri||Te.resolvedUri,mediaIndex:h,partIndex:qe?P:null,isSyncRequest:M,startOfSegment:_,playlist:c,bytes:null,encryptedBytes:null,timestampOffset:null,timeline:Te.timeline,duration:qe&&qe.duration||Te.duration,segment:Te,part:qe,byteLength:0,transmuxer:this.transmuxer_,getMediaInfoForTime:G,independent:a},Ae=void 0!==Q?Q:this.isPendingTimestampOffset_;Oe.timestampOffset=this.timestampOffsetForSegment_({segmentTimeline:Te.timeline,currentTimeline:this.currentTimeline_,startOfSegment:_,buffered:this.buffered_(),overrideCheck:Ae});var Rt=g2(this.sourceUpdater_.audioBuffered());return"number"==typeof Rt&&(Oe.audioAppendStart=Rt-this.sourceUpdater_.audioTimestampOffset()),this.sourceUpdater_.videoBuffered().length&&(Oe.gopsToAlignWith=function(o,l,s){if(null==l||!o.length)return[];var a,n=Math.ceil((l-s+3)*oo.ONE_SECOND_IN_TS);for(a=0;an);a++);return o.slice(a)}(this.gopBuffer_,this.currentTime_()-this.sourceUpdater_.videoTimestampOffset(),this.timeMapping_)),Oe},l.timestampOffsetForSegment_=function(n){return function(o){var l=o.segmentTimeline,s=o.currentTimeline,n=o.startOfSegment,a=o.buffered;return o.overrideCheck||l!==s?l "+Te+" for "+P),function(o,l,s){if(!o[s]){l.trigger({type:"usage",name:"vhs-608"}),l.trigger({type:"usage",name:"hls-608"});var n=s;/^cc708_/.test(s)&&(n="SERVICE"+s.split("_")[1]);var a=l.textTracks().getTrackById(n);if(a)o[s]=a;else{var h=s,_=s,M=!1,P=(l.options_.vhs&&l.options_.vhs.captionServices||{})[n];P&&(h=P.label,_=P.language,M=P.default),o[s]=l.addRemoteTextTrack({kind:"captions",id:n,default:M,label:h,language:_},!1).track}}}(Oe,c.vhs_.tech_,P),y2(G,Te,Oe[P]),function(o){var l=o.inbandTextTracks,s=o.captionArray,n=o.timestampOffset;if(s){var a=C().WebKitDataCue||C().VTTCue;s.forEach(function(c){var h=c.stream;l[h].addCue(new a(c.startTime+n,c.endTime+n,c.text))})}}({captionArray:qe,inbandTextTracks:Oe,timestampOffset:_})}),this.transmuxer_&&this.transmuxer_.postMessage({action:"clearParsedMp4Captions"})}},l.handleId3_=function(n,a,c){if(this.earlyAbortWhenNeeded_(n.stats),!this.checkForAbort_(n.requestId)){if(!this.pendingSegment_.hasAppendedData_)return void this.metadataQueue_.id3.push(this.handleId3_.bind(this,n,a,c));var _=null===this.sourceUpdater_.videoTimestampOffset()?this.sourceUpdater_.audioTimestampOffset():this.sourceUpdater_.videoTimestampOffset();(function(o,l,s){o.metadataTrack_||(o.metadataTrack_=s.addRemoteTextTrack({kind:"metadata",label:"Timed Metadata"},!1).track,o.metadataTrack_.inBandMetadataTrackDispatchType=l)})(this.inbandTextTracks_,c,this.vhs_.tech_),R9({inbandTextTracks:this.inbandTextTracks_,metadataArray:a,timestampOffset:_,videoDuration:this.duration_()})}},l.processMetadataQueue_=function(){this.metadataQueue_.id3.forEach(function(n){return n()}),this.metadataQueue_.caption.forEach(function(n){return n()}),this.metadataQueue_.id3=[],this.metadataQueue_.caption=[]},l.processCallQueue_=function(){var n=this.callQueue_;this.callQueue_=[],n.forEach(function(a){return a()})},l.processLoadQueue_=function(){var n=this.loadQueue_;this.loadQueue_=[],n.forEach(function(a){return a()})},l.hasEnoughInfoToLoad_=function(){if("audio"!==this.loaderType_)return!0;var n=this.pendingSegment_;return!!n&&(!this.getCurrentMediaInfo_()||!r8({timelineChangeController:this.timelineChangeController_,currentTimeline:this.currentTimeline_,segmentTimeline:n.timeline,loaderType:this.loaderType_,audioDisabled:this.audioDisabled_}))},l.getCurrentMediaInfo_=function(n){return void 0===n&&(n=this.pendingSegment_),n&&n.trackInfo||this.currentMediaInfo_},l.getMediaInfo_=function(n){return void 0===n&&(n=this.pendingSegment_),this.getCurrentMediaInfo_(n)||this.startingMediaInfo_},l.hasEnoughInfoToAppend_=function(){if(!this.sourceUpdater_.ready()||this.waitingOnRemove_||this.quotaExceededErrorRetryTimeout_)return!1;var n=this.pendingSegment_,a=this.getCurrentMediaInfo_();if(!n||!a)return!1;var c=a.hasAudio,h=a.hasVideo,_=a.isMuxed;return!(h&&!n.videoTimingInfo||c&&!this.audioDisabled_&&!_&&!n.audioTimingInfo||r8({timelineChangeController:this.timelineChangeController_,currentTimeline:this.currentTimeline_,segmentTimeline:n.timeline,loaderType:this.loaderType_,audioDisabled:this.audioDisabled_}))},l.handleData_=function(n,a){if(this.earlyAbortWhenNeeded_(n.stats),!this.checkForAbort_(n.requestId)){if(this.callQueue_.length||!this.hasEnoughInfoToAppend_())return void this.callQueue_.push(this.handleData_.bind(this,n,a));var c=this.pendingSegment_;if(this.setTimeMapping_(c.timeline),this.updateMediaSecondsLoaded_(c.part||c.segment),"closed"!==this.mediaSource_.readyState){if(n.map&&(n.map=this.initSegmentForMap(n.map,!0),c.segment.map=n.map),n.key&&this.segmentKey(n.key,!0),c.isFmp4=n.isFmp4,c.timingInfo=c.timingInfo||{},c.isFmp4)this.trigger("fmp4"),c.timingInfo.start=c[n8(a.type)].start;else{var M,h=this.getCurrentMediaInfo_(),_="main"===this.loaderType_&&h&&h.hasVideo;_&&(M=c.videoTimingInfo.start),c.timingInfo.start=this.trueSegmentStart_({currentStart:c.timingInfo.start,playlist:c.playlist,mediaIndex:c.mediaIndex,currentVideoTimestampOffset:this.sourceUpdater_.videoTimestampOffset(),useVideoTimingInfo:_,firstVideoFrameTimeForData:M,videoTimingInfo:c.videoTimingInfo,audioTimingInfo:c.audioTimingInfo})}if(this.updateAppendInitSegmentStatus(c,a.type),this.updateSourceBufferTimestampOffset_(c),c.isSyncRequest){this.updateTimingInfoEnd_(c),this.syncController_.saveSegmentTimingInfo({segmentInfo:c,shouldSaveTimelineMapping:"main"===this.loaderType_});var P=this.chooseNextRequest_();if(P.mediaIndex!==c.mediaIndex||P.partIndex!==c.partIndex)return void this.logger_("sync segment was incorrect, not appending");this.logger_("sync segment was correct, appending")}c.hasAppendedData_=!0,this.processMetadataQueue_(),this.appendData_(c,a)}}},l.updateAppendInitSegmentStatus=function(n,a){"main"===this.loaderType_&&"number"==typeof n.timestampOffset&&!n.changedTimestampOffset&&(this.appendInitSegment_={audio:!0,video:!0}),this.playlistOfLastInitSegment_[a]!==n.playlist&&(this.appendInitSegment_[a]=!0)},l.getInitSegmentAndUpdateState_=function(n){var a=n.type,c=n.initSegment,h=n.map,_=n.playlist;if(h){var M=x3(h);if(this.activeInitSegmentId_===M)return null;c=this.initSegmentForMap(h,!0).bytes,this.activeInitSegmentId_=M}return c&&this.appendInitSegment_[a]?(this.playlistOfLastInitSegment_[a]=_,this.appendInitSegment_[a]=!1,this.activeInitSegmentId_=null,c):null},l.handleQuotaExceededError_=function(n,a){var c=this,h=n.segmentInfo,_=n.type,M=n.bytes,P=this.sourceUpdater_.audioBuffered(),Q=this.sourceUpdater_.videoBuffered();P.length>1&&this.logger_("On QUOTA_EXCEEDED_ERR, found gaps in the audio buffer: "+au(P).join(", ")),Q.length>1&&this.logger_("On QUOTA_EXCEEDED_ERR, found gaps in the video buffer: "+au(Q).join(", "));var G=P.length?P.start(0):0,Te=P.length?P.end(P.length-1):0,qe=Q.length?Q.start(0):0,Oe=Q.length?Q.end(Q.length-1):0;if(Te-G<=1&&Oe-qe<=1)return this.logger_("On QUOTA_EXCEEDED_ERR, single segment too large to append to buffer, triggering an error. Appended byte length: "+M.byteLength+", audio buffer: "+au(P).join(", ")+", video buffer: "+au(Q).join(", ")+", "),this.error({message:"Quota exceeded error with append of a single segment of content",excludeUntil:1/0}),void this.trigger("error");this.waitingOnRemove_=!0,this.callQueue_.push(this.appendToSourceBuffer_.bind(this,{segmentInfo:h,type:_,bytes:M}));var Rt=this.currentTime_()-1;this.logger_("On QUOTA_EXCEEDED_ERR, removing audio/video from 0 to "+Rt),this.remove(0,Rt,function(){c.logger_("On QUOTA_EXCEEDED_ERR, retrying append in 1s"),c.waitingOnRemove_=!1,c.quotaExceededErrorRetryTimeout_=C().setTimeout(function(){c.logger_("On QUOTA_EXCEEDED_ERR, re-processing call queue"),c.quotaExceededErrorRetryTimeout_=null,c.processCallQueue_()},1e3)},!0)},l.handleAppendError_=function(n,a){var c=n.segmentInfo,h=n.type,_=n.bytes;if(a){if(22===a.code)return void this.handleQuotaExceededError_({segmentInfo:c,type:h,bytes:_});this.logger_("Received non QUOTA_EXCEEDED_ERR on append",a),this.error(h+" append of "+_.length+"b failed for segment #"+c.mediaIndex+" in playlist "+c.playlist.id),this.trigger("appenderror")}},l.appendToSourceBuffer_=function(n){var a=n.segmentInfo,c=n.type,h=n.initSegment,_=n.data,M=n.bytes;if(!M){var P=[_],Q=_.byteLength;h&&(P.unshift(h),Q+=h.byteLength),M=function(o){var s,l=0;return o.bytes&&(s=new Uint8Array(o.bytes),o.segments.forEach(function(n){s.set(n,l),l+=n.byteLength})),s}({bytes:Q,segments:P})}this.sourceUpdater_.appendBuffer({segmentInfo:a,type:c,bytes:M},this.handleAppendError_.bind(this,{segmentInfo:a,type:c,bytes:M}))},l.handleSegmentTimingInfo_=function(n,a,c){if(this.pendingSegment_&&a===this.pendingSegment_.requestId){var h=this.pendingSegment_.segment,_=n+"TimingInfo";h[_]||(h[_]={}),h[_].transmuxerPrependedSeconds=c.prependedContentDuration||0,h[_].transmuxedPresentationStart=c.start.presentation,h[_].transmuxedDecodeStart=c.start.decode,h[_].transmuxedPresentationEnd=c.end.presentation,h[_].transmuxedDecodeEnd=c.end.decode,h[_].baseMediaDecodeTime=c.baseMediaDecodeTime}},l.appendData_=function(n,a){var c=a.type,h=a.data;if(h&&h.byteLength&&("audio"!==c||!this.audioDisabled_)){var _=this.getInitSegmentAndUpdateState_({type:c,initSegment:a.initSegment,playlist:n.playlist,map:n.isFmp4?n.segment.map:null});this.appendToSourceBuffer_({segmentInfo:n,type:c,initSegment:_,data:h})}},l.loadSegment_=function(n){var a=this;this.state="WAITING",this.pendingSegment_=n,this.trimBackBuffer_(n),"number"==typeof n.timestampOffset&&this.transmuxer_&&this.transmuxer_.postMessage({action:"clearAllMp4Captions"}),this.hasEnoughInfoToLoad_()?this.updateTransmuxerAndRequestSegment_(n):this.loadQueue_.push(function(){var c=V({},n,{forceTimestampOffset:!0});V(n,a.generateSegmentInfo_(c)),a.isPendingTimestampOffset_=!1,a.updateTransmuxerAndRequestSegment_(n)})},l.updateTransmuxerAndRequestSegment_=function(n){var a=this;this.shouldUpdateTransmuxerTimestampOffset_(n.timestampOffset)&&(this.gopBuffer_.length=0,n.gopsToAlignWith=[],this.timeMapping_=0,this.transmuxer_.postMessage({action:"reset"}),this.transmuxer_.postMessage({action:"setTimestampOffset",timestampOffset:n.timestampOffset}));var c=this.createSimplifiedSegmentObj_(n),h=this.isEndOfStream_(n.mediaIndex,n.playlist,n.partIndex),_=null!==this.mediaIndex,M=n.timeline!==this.currentTimeline_&&n.timeline>0,P=h||_&&M;this.logger_("Requesting "+qu(n)),c.map&&!c.map.bytes&&(this.logger_("going to request init segment."),this.appendInitSegment_={video:!0,audio:!0}),n.abortRequests=W5({xhr:this.vhs_.xhr,xhrOptions:this.xhrOptions_,decryptionWorker:this.decrypter_,segment:c,abortFn:this.handleAbort_.bind(this,n),progressFn:this.handleProgress_.bind(this),trackInfoFn:this.handleTrackInfo_.bind(this),timingInfoFn:this.handleTimingInfo_.bind(this),videoSegmentTimingInfoFn:this.handleSegmentTimingInfo_.bind(this,"video",n.requestId),audioSegmentTimingInfoFn:this.handleSegmentTimingInfo_.bind(this,"audio",n.requestId),captionsFn:this.handleCaptions_.bind(this),isEndOfTimeline:P,endedTimelineFn:function(){a.logger_("received endedtimeline callback")},id3Fn:this.handleId3_.bind(this),dataFn:this.handleData_.bind(this),doneFn:this.segmentRequestFinished_.bind(this),onTransmuxerLog:function(G){var Te=G.message,qe=G.level,Oe=G.stream;a.logger_(qu(n)+" logged from transmuxer stream "+Oe+" as a "+qe+": "+Te)}})},l.trimBackBuffer_=function(n){var a=function(o,l,s){var n=l-Ta.BACK_BUFFER_LENGTH;o.length&&(n=Math.max(n,o.start(0)));var a=l-s;return Math.min(a,n)}(this.seekable_(),this.currentTime_(),this.playlist_.targetDuration||10);a>0&&this.remove(0,a)},l.createSimplifiedSegmentObj_=function(n){var a=n.segment,c=n.part,h={resolvedUri:c?c.resolvedUri:a.resolvedUri,byterange:c?c.byterange:a.byterange,requestId:n.requestId,transmuxer:n.transmuxer,audioAppendStart:n.audioAppendStart,gopsToAlignWith:n.gopsToAlignWith,part:n.part},_=n.playlist.segments[n.mediaIndex-1];if(_&&_.timeline===a.timeline&&(_.videoTimingInfo?h.baseStartTime=_.videoTimingInfo.transmuxedDecodeEnd:_.audioTimingInfo&&(h.baseStartTime=_.audioTimingInfo.transmuxedDecodeEnd)),a.key){var M=a.key.iv||new Uint32Array([0,0,0,n.mediaIndex+n.playlist.mediaSequence]);h.key=this.segmentKey(a.key),h.key.iv=M}return a.map&&(h.map=this.initSegmentForMap(a.map)),h},l.saveTransferStats_=function(n){this.mediaRequests+=1,n&&(this.mediaBytesTransferred+=n.bytesReceived,this.mediaTransferDuration+=n.roundTripTime)},l.saveBandwidthRelatedStats_=function(n,a){this.pendingSegment_.byteLength=a.bytesReceived,n=n);a++);return o.slice(0,a).concat(l)}(this.gopBuffer_,c.gopInfo,this.safeAppend_)),this.state="APPENDING",this.trigger("appending"),this.waitForAppendsToComplete_(h)}},l.setTimeMapping_=function(n){var a=this.syncController_.mappingForTimeline(n);null!==a&&(this.timeMapping_=a)},l.updateMediaSecondsLoaded_=function(n){"number"==typeof n.start&&"number"==typeof n.end?this.mediaSecondsLoaded+=n.end-n.start:this.mediaSecondsLoaded+=n.duration},l.shouldUpdateTransmuxerTimestampOffset_=function(n){return null!==n&&("main"===this.loaderType_&&n!==this.sourceUpdater_.videoTimestampOffset()||!this.audioDisabled_&&n!==this.sourceUpdater_.audioTimestampOffset())},l.trueSegmentStart_=function(n){var a=n.currentStart,c=n.playlist,h=n.mediaIndex,_=n.firstVideoFrameTimeForData,M=n.currentVideoTimestampOffset,P=n.useVideoTimingInfo,Q=n.videoTimingInfo,G=n.audioTimingInfo;if(void 0!==a)return a;if(!P)return G.start;var Te=c.segments[h-1];return 0!==h&&Te&&void 0!==Te.start&&Te.end===_+M?Q.start:_},l.waitForAppendsToComplete_=function(n){var a=this.getCurrentMediaInfo_(n);if(!a)return this.error({message:"No starting media returned, likely due to an unsupported media format.",blacklistDuration:1/0}),void this.trigger("error");var c=a.hasAudio,h=a.hasVideo,_=a.isMuxed,M="main"===this.loaderType_&&h,P=!this.audioDisabled_&&c&&!_;if(n.waitingOnAppends=0,!n.hasAppendedData_)return!n.timingInfo&&"number"==typeof n.timestampOffset&&(this.isPendingTimestampOffset_=!0),n.timingInfo={start:0},n.waitingOnAppends++,this.isPendingTimestampOffset_||(this.updateSourceBufferTimestampOffset_(n),this.processMetadataQueue_()),void this.checkAppendsDone_(n);M&&n.waitingOnAppends++,P&&n.waitingOnAppends++,M&&this.sourceUpdater_.videoQueueCallback(this.checkAppendsDone_.bind(this,n)),P&&this.sourceUpdater_.audioQueueCallback(this.checkAppendsDone_.bind(this,n))},l.checkAppendsDone_=function(n){this.checkForAbort_(n.requestId)||(n.waitingOnAppends--,0===n.waitingOnAppends&&this.handleAppendsDone_())},l.checkForIllegalMediaSwitch=function(n){var a=function(o,l,s){return"main"===o&&l&&s?s.hasAudio||s.hasVideo?l.hasVideo&&!s.hasVideo?"Only audio found in segment when we expected video. We can't switch to audio only from a stream that had video. To get rid of this message, please add codec information to the manifest.":!l.hasVideo&&s.hasVideo?"Video found in segment when we expected only audio. We can't switch to a stream with video from an audio only stream. To get rid of this message, please add codec information to the manifest.":null:"Neither audio nor video found in segment.":null}(this.loaderType_,this.getCurrentMediaInfo_(),n);return!!a&&(this.error({message:a,blacklistDuration:1/0}),this.trigger("error"),!0)},l.updateSourceBufferTimestampOffset_=function(n){if(null!==n.timestampOffset&&"number"==typeof n.timingInfo.start&&!n.changedTimestampOffset&&"main"===this.loaderType_){var a=!1;n.timestampOffset-=n.timingInfo.start,n.changedTimestampOffset=!0,n.timestampOffset!==this.sourceUpdater_.videoTimestampOffset()&&(this.sourceUpdater_.videoTimestampOffset(n.timestampOffset),a=!0),n.timestampOffset!==this.sourceUpdater_.audioTimestampOffset()&&(this.sourceUpdater_.audioTimestampOffset(n.timestampOffset),a=!0),a&&this.trigger("timestampoffset")}},l.updateTimingInfoEnd_=function(n){n.timingInfo=n.timingInfo||{};var a=this.getMediaInfo_(),h="main"===this.loaderType_&&a&&a.hasVideo&&n.videoTimingInfo?n.videoTimingInfo:n.audioTimingInfo;!h||(n.timingInfo.end="number"==typeof h.end?h.end:h.start+n.duration)},l.handleAppendsDone_=function(){if(this.pendingSegment_&&this.trigger("appendsdone"),!this.pendingSegment_)return this.state="READY",void(this.paused()||this.monitorBuffer_());var n=this.pendingSegment_;this.updateTimingInfoEnd_(n),this.shouldSaveSegmentTimingInfo_&&this.syncController_.saveSegmentTimingInfo({segmentInfo:n,shouldSaveTimelineMapping:"main"===this.loaderType_});var a=o8(n,this.sourceType_);if(a&&("warn"===a.severity?Pt.log.warn(a.message):this.logger_(a.message)),this.recordThroughput_(n),this.pendingSegment_=null,this.state="READY",!n.isSyncRequest||(this.trigger("syncinfoupdate"),n.hasAppendedData_)){this.logger_("Appended "+qu(n)),this.addSegmentMetadataCue_(n),this.fetchAtBuffer_=!0,this.currentTimeline_!==n.timeline&&(this.timelineChangeController_.lastTimelineChange({type:this.loaderType_,from:this.currentTimeline_,to:n.timeline}),"main"===this.loaderType_&&!this.audioDisabled_&&this.timelineChangeController_.lastTimelineChange({type:"audio",from:this.currentTimeline_,to:n.timeline})),this.currentTimeline_=n.timeline,this.trigger("syncinfoupdate");var c=n.segment,h=n.part,_=c.end&&this.currentTime_()-c.end>3*n.playlist.targetDuration,M=h&&h.end&&this.currentTime_()-h.end>3*n.playlist.partTargetDuration;if(_||M)return this.logger_("bad "+(_?"segment":"part")+" "+qu(n)),void this.resetEverything();null!==this.mediaIndex&&this.trigger("bandwidthupdate"),this.trigger("progress"),this.mediaIndex=n.mediaIndex,this.partIndex=n.partIndex,this.isEndOfStream_(n.mediaIndex,n.playlist,n.partIndex)&&this.endOfStream(),this.trigger("appended"),n.hasAppendedData_&&this.mediaAppends++,this.paused()||this.monitorBuffer_()}else this.logger_("Throwing away un-appended sync request "+qu(n))},l.recordThroughput_=function(n){if(n.duration=n.playlist.segments.length){n=null;break}n=this.generateSegmentInfo_({playlist:n.playlist,mediaIndex:n.mediaIndex+1,startOfSegment:n.startOfSegment+n.duration,isSyncRequest:n.isSyncRequest})}return n},l.stopForError=function(n){this.error(n),this.state="READY",this.pause(),this.trigger("error")},l.segmentRequestFinished_=function(n,a,c){var h=this;if(this.subtitlesTrack_){if(this.saveTransferStats_(a.stats),!this.pendingSegment_)return this.state="READY",void(this.mediaRequestsAborted+=1);if(n)return n.code===_l_TIMEOUT&&this.handleTimeout_(),n.code===_l_ABORTED?this.mediaRequestsAborted+=1:this.mediaRequestsErrored+=1,void this.stopForError(n);var _=this.pendingSegment_;this.saveBandwidthRelatedStats_(_.duration,a.stats),this.state="APPENDING",this.trigger("appending");var M=_.segment;if(M.map&&(M.map.bytes=a.map.bytes),_.bytes=a.bytes,"function"!=typeof C().WebVTT&&this.subtitlesTrack_&&this.subtitlesTrack_.tech_){var P,Q=function(){h.subtitlesTrack_.tech_.off("vttjsloaded",P),h.stopForError({message:"Error loading vtt.js"})};return P=function(){h.subtitlesTrack_.tech_.off("vttjserror",Q),h.segmentRequestFinished_(n,a,c)},this.state="WAITING_ON_VTTJS",this.subtitlesTrack_.tech_.one("vttjsloaded",P),void this.subtitlesTrack_.tech_.one("vttjserror",Q)}M.requested=!0;try{this.parseVTTCues_(_)}catch(G){return void this.stopForError({message:G.message})}if(this.updateTimeMapping_(_,this.syncController_.timelines[_.timeline],this.playlist_),_.cues.length?_.timingInfo={start:_.cues[0].startTime,end:_.cues[_.cues.length-1].endTime}:_.timingInfo={start:_.startOfSegment,end:_.startOfSegment+_.duration},_.isSyncRequest)return this.trigger("syncinfoupdate"),this.pendingSegment_=null,void(this.state="READY");_.byteLength=_.bytes.byteLength,this.mediaSecondsLoaded+=M.duration,_.cues.forEach(function(G){h.subtitlesTrack_.addCue(h.featuresNativeTextTracks_?new(C().VTTCue)(G.startTime,G.endTime,G.text):G)}),function(o){var l=o.cues;if(l)for(var s=0;s1&&n.push(l[c]);n.length&&n.forEach(function(h){return o.removeCue(h)})}}(this.subtitlesTrack_),this.handleAppendsDone_()}else this.state="READY"},l.handleData_=function(){},l.updateTimingInfoEnd_=function(){},l.parseVTTCues_=function(n){var a,c=!1;"function"==typeof C().TextDecoder?a=new(C().TextDecoder)("utf8"):(a=C().WebVTT.StringDecoder(),c=!0);var h=new(C().WebVTT.Parser)(C(),C().vttjs,a);if(n.cues=[],n.timestampmap={MPEGTS:0,LOCAL:0},h.oncue=n.cues.push.bind(n.cues),h.ontimestampmap=function(P){n.timestampmap=P},h.onparsingerror=function(P){Pt.log.warn("Error encountered when parsing cues: "+P.message)},n.segment.map){var _=n.segment.map.bytes;c&&(_=d8(_)),h.parse(_)}var M=n.bytes;c&&(M=d8(M)),h.parse(M),h.flush()},l.updateTimeMapping_=function(n,a,c){var h=n.segment;if(a){if(!n.cues.length)return void(h.empty=!0);var _=n.timestampmap,M=_.MPEGTS/oo.ONE_SECOND_IN_TS-_.LOCAL+a.mapping;if(n.cues.forEach(function(G){G.startTime+=M,G.endTime+=M}),!c.syncInfo){var P=n.cues[0].startTime,Q=n.cues[n.cues.length-1].startTime;c.syncInfo={mediaSequence:c.mediaSequence+n.mediaIndex,time:Math.min(P,Q-h.duration)}}}},o}(dd),R4=function(o,l){for(var s=o.cues,n=0;n=a.adStartTime&&l<=a.adEndTime)return a}return null},f8=[{name:"VOD",run:function(o,l,s,n,a){if(s!==1/0){return{time:0,segmentIndex:0,partIndex:null}}return null}},{name:"ProgramDateTime",run:function(o,l,s,n,a){if(!Object.keys(o.timelineToDatetimeMappings).length)return null;var c=null,h=null,_=m3(l);a=a||0;for(var M=0;M<_.length;M++){var Q=_[l.endList||0===a?M:_.length-(M+1)],G=Q.segment,Te=o.timelineToDatetimeMappings[G.timeline];if(Te&&G.dateTimeObject){var Oe=G.dateTimeObject.getTime()/1e3+Te;if(G.parts&&"number"==typeof Q.partIndex)for(var Ae=0;Ae=qe)&&(h=qe,c={time:Te,segmentIndex:Q.segmentIndex,partIndex:Q.partIndex})}}return c}},{name:"Discontinuity",run:function(o,l,s,n,a){var c=null;if(a=a||0,l.discontinuityStarts&&l.discontinuityStarts.length)for(var h=null,_=0;_=G)&&(h=G,c={time:Q.time,segmentIndex:M,partIndex:null})}}return c}},{name:"Playlist",run:function(o,l,s,n,a){return l.syncInfo?{time:l.syncInfo.time,segmentIndex:l.syncInfo.mediaSequence-l.mediaSequence,partIndex:null}:null}}],gd=function(p){function o(s){var n;return(n=p.call(this)||this).timelines=[],n.discontinuities=[],n.timelineToDatetimeMappings={},n.logger_=Os("SyncController"),n}ue(o,p);var l=o.prototype;return l.getSyncPoint=function(n,a,c,h){var _=this.runStrategies_(n,a,c,h);return _.length?this.selectSyncPoint_(_,{key:"time",value:h}):null},l.getExpiredTime=function(n,a){if(!n||!n.segments)return null;var c=this.runStrategies_(n,a,n.discontinuitySequence,0);if(!c.length)return null;var h=this.selectSyncPoint_(c,{key:"segmentIndex",value:0});return h.segmentIndex>0&&(h.time*=-1),Math.abs(h.time+U1({defaultDuration:n.targetDuration,durationList:n.segments,startIndex:h.segmentIndex,endIndex:0}))},l.runStrategies_=function(n,a,c,h){for(var _=[],M=0;M86400)Pt.log.warn("Not saving expired segment info. Media sequence gap "+c+" is too large.");else for(var h=c-1;h>=0;h--){var _=n.segments[h];if(_&&void 0!==_.start){a.syncInfo={mediaSequence:n.mediaSequence+h,time:_.start},this.logger_("playlist refresh sync: [time:"+a.syncInfo.time+", mediaSequence: "+a.syncInfo.mediaSequence+"]"),this.trigger("syncinfoupdate");break}}},l.setDateTimeMappingForStart=function(n){if(this.timelineToDatetimeMappings={},n.segments&&n.segments.length&&n.segments[0].dateTimeObject){var a=n.segments[0],c=a.dateTimeObject.getTime()/1e3;this.timelineToDatetimeMappings[a.timeline]=-c}},l.saveSegmentTimingInfo=function(n){var a=n.segmentInfo,c=n.shouldSaveTimelineMapping,h=this.calculateSegmentTimeMapping_(a,a.timingInfo,c),_=a.segment;h&&(this.saveDiscontinuitySyncInfo_(a),a.playlist.syncInfo||(a.playlist.syncInfo={mediaSequence:a.playlist.mediaSequence+a.mediaIndex,time:_.start}));var M=_.dateTimeObject;_.discontinuity&&c&&M&&(this.timelineToDatetimeMappings[_.timeline]=-M.getTime()/1e3)},l.timestampOffsetForTimeline=function(n){return void 0===this.timelines[n]?null:this.timelines[n].time},l.mappingForTimeline=function(n){return void 0===this.timelines[n]?null:this.timelines[n].mapping},l.calculateSegmentTimeMapping_=function(n,a,c){var P,Q,h=n.segment,_=n.part,M=this.timelines[n.timeline];if("number"==typeof n.timestampOffset)M={time:n.startOfSegment,mapping:n.startOfSegment-a.start},c&&(this.timelines[n.timeline]=M,this.trigger("timestampoffset"),this.logger_("time mapping for timeline "+n.timeline+": [time: "+M.time+"] [mapping: "+M.mapping+"]")),P=n.startOfSegment,Q=a.end+M.mapping;else{if(!M)return!1;P=a.start+M.mapping,Q=a.end+M.mapping}return _&&(_.start=P,_.end=Q),(!h.start||PQ){var G=void 0;G=P<0?c.start-U1({defaultDuration:a.targetDuration,durationList:a.segments,startIndex:n.mediaIndex,endIndex:_}):c.end+U1({defaultDuration:a.targetDuration,durationList:a.segments,startIndex:n.mediaIndex+1,endIndex:_}),this.discontinuities[M]={time:G,accuracy:Q}}}},l.dispose=function(){this.trigger("dispose"),this.off()},o}(Pt.EventTarget),md=function(p){function o(){var s;return(s=p.call(this)||this).pendingTimelineChanges_={},s.lastTimelineChanges_={},s}ue(o,p);var l=o.prototype;return l.clearPendingTimelineChange=function(n){this.pendingTimelineChanges_[n]=null,this.trigger("pendingtimelinechange")},l.pendingTimelineChange=function(n){var a=n.type,c=n.from,h=n.to;return"number"==typeof c&&"number"==typeof h&&(this.pendingTimelineChanges_[a]={type:a,from:c,to:h},this.trigger("pendingtimelinechange")),this.pendingTimelineChanges_[a]},l.lastTimelineChange=function(n){var a=n.type,c=n.from,h=n.to;return"number"==typeof c&&"number"==typeof h&&(this.lastTimelineChanges_[a]={type:a,from:c,to:h},delete this.pendingTimelineChanges_[a],this.trigger("timelinechange")),this.lastTimelineChanges_[a]},l.dispose=function(){this.trigger("dispose"),this.pendingTimelineChanges_={},this.lastTimelineChanges_={},this.off()},o}(Pt.EventTarget),p8=gc(mc(function(){function p(Oe,Ae,Rt){return Oe(Rt={path:Ae,exports:{},require:function(Kt,nn){return function(){throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs")}(null==nn&&Rt.path)}},Rt.exports),Rt.exports}var l=p(function(Oe){function Ae(Zt,Kt){for(var nn=0;nn-1},Ae.trigger=function(Zt){var Kt=this.listeners[Zt];if(Kt)if(2===arguments.length)for(var nn=Kt.length,en=0;en>7))^en]=en;for(wn=Dn=0;!Kt[wn];wn^=xn||1,Dn=On[Dn]||1)for(Hi=(Hi=Dn^Dn<<1^Dn<<2^Dn<<3^Dn<<4)>>8^255&Hi^99,Kt[wn]=Hi,nn[Hi]=wn,mi=16843009*cn[Kr=cn[xn=cn[wn]]]^65537*Kr^257*xn^16843008*wn,eo=257*cn[Hi]^16843008*Hi,en=0;en<4;en++)Rt[en][wn]=eo=eo<<24^eo>>>8,Zt[en][Hi]=mi=mi<<24^mi>>>8;for(en=0;en<5;en++)Rt[en]=Rt[en].slice(0),Zt[en]=Zt[en].slice(0);return Ae}()),this._tables=[[_[0][0].slice(),_[0][1].slice(),_[0][2].slice(),_[0][3].slice(),_[0][4].slice()],[_[1][0].slice(),_[1][1].slice(),_[1][2].slice(),_[1][3].slice(),_[1][4].slice()]];var Zt,Kt,nn,en=this._tables[0][4],wn=this._tables[1],Dn=Rt.length,cn=1;if(4!==Dn&&6!==Dn&&8!==Dn)throw new Error("Invalid aes key size");var On=Rt.slice(0),xn=[];for(this._key=[On,xn],Zt=Dn;Zt<4*Dn+28;Zt++)nn=On[Zt-1],(Zt%Dn==0||8===Dn&&Zt%Dn==4)&&(nn=en[nn>>>24]<<24^en[nn>>16&255]<<16^en[nn>>8&255]<<8^en[255&nn],Zt%Dn==0&&(nn=nn<<8^nn>>>24^cn<<24,cn=cn<<1^283*(cn>>7))),On[Zt]=On[Zt-Dn]^nn;for(Kt=0;Zt;Kt++,Zt--)nn=On[3&Kt?Zt:Zt-4],xn[Kt]=Zt<=4||Kt<4?nn:wn[0][en[nn>>>24]]^wn[1][en[nn>>16&255]]^wn[2][en[nn>>8&255]]^wn[3][en[255&nn]]}return Oe.prototype.decrypt=function(Zt,Kt,nn,en,wn,Dn){var Hi,eo,mi,Rs,cn=this._key[1],On=Zt^cn[0],xn=en^cn[1],Kr=nn^cn[2],Wn=Kt^cn[3],cu=cn.length/4-2,v1=4,_1=this._tables[1],y1=_1[0],Zu=_1[1],C1=_1[2],zu=_1[3],Uu=_1[4];for(Rs=0;Rs>>24]^Zu[xn>>16&255]^C1[Kr>>8&255]^zu[255&Wn]^cn[v1],eo=y1[xn>>>24]^Zu[Kr>>16&255]^C1[Wn>>8&255]^zu[255&On]^cn[v1+1],mi=y1[Kr>>>24]^Zu[Wn>>16&255]^C1[On>>8&255]^zu[255&xn]^cn[v1+2],Wn=y1[Wn>>>24]^Zu[On>>16&255]^C1[xn>>8&255]^zu[255&Kr]^cn[v1+3],v1+=4,On=Hi,xn=eo,Kr=mi;for(Rs=0;Rs<4;Rs++)wn[(3&-Rs)+Dn]=Uu[On>>>24]<<24^Uu[xn>>16&255]<<16^Uu[Kr>>8&255]<<8^Uu[255&Wn]^cn[v1++],Hi=On,On=xn,xn=Kr,Kr=Wn,Wn=Hi},Oe}(),P=function(Oe){function Ae(){var Zt;return(Zt=Oe.call(this,a)||this).jobs=[],Zt.delay=1,Zt.timeout_=null,Zt}n(Ae,Oe);var Rt=Ae.prototype;return Rt.processJob_=function(){this.jobs.shift()(),this.jobs.length?this.timeout_=setTimeout(this.processJob_.bind(this),this.delay):this.timeout_=null},Rt.push=function(Kt){this.jobs.push(Kt),this.timeout_||(this.timeout_=setTimeout(this.processJob_.bind(this),this.delay))},Ae}(a),Q=function(Ae){return Ae<<24|(65280&Ae)<<8|(16711680&Ae)>>8|Ae>>>24},Te=function(){function Oe(Rt,Zt,Kt,nn){var en=Oe.STEP,wn=new Int32Array(Rt.buffer),Dn=new Uint8Array(Rt.byteLength),cn=0;for(this.asyncStream_=new P,this.asyncStream_.push(this.decryptChunk_(wn.subarray(cn,cn+en),Zt,Kt,Dn)),cn=en;cn>2),nn=new M(Array.prototype.slice.call(Rt)),en=new Uint8Array(Ae.byteLength),wn=new Int32Array(en.buffer);for(Dn=Zt[0],cn=Zt[1],On=Zt[2],xn=Zt[3],mi=0;mi=0&&(l="main-desc"),l},C2=function(o,l){o.abort(),o.pause(),l&&l.activePlaylistLoader&&(l.activePlaylistLoader.pause(),l.activePlaylistLoader=null)},h8=function(o,l){l.activePlaylistLoader=o,o.load()},Cc={AUDIO:function(o,l){return function(){var s=l.segmentLoaders[o],n=l.mediaTypes[o],a=l.blacklistCurrentPlaylist;C2(s,n);var c=n.activeTrack(),h=n.activeGroup(),_=(h.filter(function(Q){return Q.default})[0]||h[0]).id,M=n.tracks[_];if(c!==M){for(var P in Pt.log.warn("Problem encountered loading the alternate audio track.Switching back to default."),n.tracks)n.tracks[P].enabled=n.tracks[P]===M;n.onTrackChanged()}else a({message:"Problem encountered loading the default audio track."})}},SUBTITLES:function(o,l){return function(){var s=l.segmentLoaders[o],n=l.mediaTypes[o];Pt.log.warn("Problem encountered loading the subtitle track.Disabling subtitle track."),C2(s,n);var a=n.activeTrack();a&&(a.mode="disabled"),n.onTrackChanged()}}},vd={AUDIO:function(o,l,s){if(l){var n=s.tech,a=s.requestOptions,c=s.segmentLoaders[o];l.on("loadedmetadata",function(){var h=l.media();c.playlist(h,a),(!n.paused()||h.endList&&"none"!==n.preload())&&c.load()}),l.on("loadedplaylist",function(){c.playlist(l.media(),a),n.paused()||c.load()}),l.on("error",Cc[o](o,s))}},SUBTITLES:function(o,l,s){var n=s.tech,a=s.requestOptions,c=s.segmentLoaders[o],h=s.mediaTypes[o];l.on("loadedmetadata",function(){var _=l.media();c.playlist(_,a),c.track(h.activeTrack()),(!n.paused()||_.endList&&"none"!==n.preload())&&c.load()}),l.on("loadedplaylist",function(){c.playlist(l.media(),a),n.paused()||c.load()}),l.on("error",Cc[o](o,s))}},v8={AUDIO:function(o,l){var s=l.vhs,n=l.sourceType,a=l.segmentLoaders[o],c=l.requestOptions,h=l.master.mediaGroups,_=l.mediaTypes[o],M=_.groups,P=_.tracks,Q=_.logger_,G=l.masterPlaylistLoader,Te=Ru(G.master);for(var qe in(!h[o]||0===Object.keys(h[o]).length)&&(h[o]={main:{default:{default:!0}}},Te&&(h[o].main.default.playlists=G.master.playlists)),h[o])for(var Oe in M[qe]||(M[qe]=[]),h[o][qe]){var Ae=h[o][qe][Oe],Rt=void 0;if(Te?(Q("AUDIO group '"+qe+"' label '"+Oe+"' is a master playlist"),Ae.isMasterPlaylist=!0,Rt=null):Rt="vhs-json"===n&&Ae.playlists?new ou(Ae.playlists[0],s,c):Ae.resolvedUri?new ou(Ae.resolvedUri,s,c):Ae.playlists&&"dash"===n?new I3(Ae.playlists[0],s,c,G):null,Ae=Pt.mergeOptions({id:Oe,playlistLoader:Rt},Ae),vd[o](o,Ae.playlistLoader,l),M[qe].push(Ae),void 0===P[Oe]){var Zt=new Pt.AudioTrack({id:Oe,kind:B4(Ae),enabled:!1,language:Ae.language,default:Ae.default,label:Oe});P[Oe]=Zt}}a.on("error",Cc[o](o,l))},SUBTITLES:function(o,l){var s=l.tech,n=l.vhs,a=l.sourceType,c=l.segmentLoaders[o],h=l.requestOptions,_=l.master.mediaGroups,M=l.mediaTypes[o],P=M.groups,Q=M.tracks,G=l.masterPlaylistLoader;for(var Te in _[o])for(var qe in P[Te]||(P[Te]=[]),_[o][Te])if(!_[o][Te][qe].forced){var Oe=_[o][Te][qe],Ae=void 0;if("hls"===a)Ae=new ou(Oe.resolvedUri,n,h);else if("dash"===a){if(!Oe.playlists.filter(function(Kt){return Kt.excludeUntil!==1/0}).length)return;Ae=new I3(Oe.playlists[0],n,h,G)}else"vhs-json"===a&&(Ae=new ou(Oe.playlists?Oe.playlists[0]:Oe.resolvedUri,n,h));if(Oe=Pt.mergeOptions({id:qe,playlistLoader:Ae},Oe),vd[o](o,Oe.playlistLoader,l),P[Te].push(Oe),void 0===Q[qe]){var Zt=s.addRemoteTextTrack({id:qe,kind:"subtitles",default:Oe.default&&Oe.autoselect,language:Oe.language,label:qe},!1).track;Q[qe]=Zt}}c.on("error",Cc[o](o,l))},"CLOSED-CAPTIONS":function(o,l){var s=l.tech,n=l.master.mediaGroups,a=l.mediaTypes[o],c=a.groups,h=a.tracks;for(var _ in n[o])for(var M in c[_]||(c[_]=[]),n[o][_]){var P=n[o][_][M];if(/^(?:CC|SERVICE)/.test(P.instreamId)){var Q=s.options_.vhs&&s.options_.vhs.captionServices||{},G={label:M,language:P.language,instreamId:P.instreamId,default:P.default&&P.autoselect};if(Q[G.instreamId]&&(G=Pt.mergeOptions(G,Q[G.instreamId])),void 0===G.default&&delete G.default,c[_].push(Pt.mergeOptions({id:M},P)),void 0===h[M]){var Te=s.addRemoteTextTrack({id:G.instreamId,kind:"captions",default:G.default,language:G.language,label:G.label},!1).track;h[M]=Te}}}}},Cl=function p(o,l){for(var s=0;s1&&Ru(l.master))for(var M=0;M<_.length;M++){var P=a[_[M]];if(Cl(P,c)){h=P;break}}else a.main?h=a.main:1===_.length&&(h=a[_[0]]);return void 0===s?h:null!==s&&h&&h.filter(function(Q){return Q.id===s.id})[0]||null}}(qe,o),l[qe].activeTrack=Z4[qe](qe,o),l[qe].onGroupChanged=function(o,l){return function(){var s=l.segmentLoaders,n=s[o],a=s.main,c=l.mediaTypes[o],h=c.activeTrack(),_=c.getActiveGroup(),M=c.activePlaylistLoader,P=c.lastGroup_;if((!_||!P||_.id!==P.id)&&(c.lastGroup_=_,c.lastTrack_=h,C2(n,c),_&&!_.isMasterPlaylist)){if(!_.playlistLoader)return void(M&&a.resetEverything());n.resyncLoader(),h8(_.playlistLoader,c)}}}(qe,o),l[qe].onGroupChanging=function(o,l){return function(){var s=l.segmentLoaders[o];l.mediaTypes[o].lastGroup_=null,s.abort(),s.pause()}}(qe,o),l[qe].onTrackChanged=function(o,l){return function(){var s=l.masterPlaylistLoader,n=l.segmentLoaders,a=n[o],c=n.main,h=l.mediaTypes[o],_=h.activeTrack(),M=h.getActiveGroup(),P=h.activePlaylistLoader,Q=h.lastTrack_;if((!Q||!_||Q.id!==_.id)&&(h.lastGroup_=M,h.lastTrack_=_,C2(a,h),M)){if(M.isMasterPlaylist){if(!_||!Q||_.id===Q.id)return;var G=l.vhs.masterPlaylistController_,Te=G.selectPlaylist();if(G.media()===Te)return;return h.logger_("track change. Switching master audio from "+Q.id+" to "+_.id),s.pause(),c.resetEverything(),void G.fastQualityChange_(Te)}if("AUDIO"===o){if(!M.playlistLoader)return c.setAudio(!0),void c.resetEverything();a.setAudio(!0),c.setAudio(!1)}if(P===M.playlistLoader)return void h8(M.playlistLoader,h);a.track&&a.track(_),a.resetEverything(),h8(M.playlistLoader,h)}}}(qe,o),l[qe].getActiveGroup=function(o,l){var s=l.mediaTypes;return function(){var n=s[o].activeTrack();return n?s[o].activeGroup(n):null}}(qe,o)});var M=l.AUDIO.activeGroup();if(M){var P=(M.filter(function(qe){return qe.default})[0]||M[0]).id;l.AUDIO.tracks[P].enabled=!0,l.AUDIO.onGroupChanged(),l.AUDIO.onTrackChanged(),l.AUDIO.getActiveGroup().playlistLoader?(_.setAudio(!1),h.setAudio(!0)):_.setAudio(!0)}s.on("mediachange",function(){["AUDIO","SUBTITLES"].forEach(function(qe){return l[qe].onGroupChanged()})}),s.on("mediachanging",function(){["AUDIO","SUBTITLES"].forEach(function(qe){return l[qe].onGroupChanging()})});var G=function(){l.AUDIO.onTrackChanged(),n.trigger({type:"usage",name:"vhs-audio-change"}),n.trigger({type:"usage",name:"hls-audio-change"})};for(var Te in n.audioTracks().addEventListener("change",G),n.remoteTextTracks().addEventListener("change",l.SUBTITLES.onTrackChanged),a.on("dispose",function(){n.audioTracks().removeEventListener("change",G),n.remoteTextTracks().removeEventListener("change",l.SUBTITLES.onTrackChanged)}),n.clearTracks("audio"),l.AUDIO.tracks)n.audioTracks().addTrack(l.AUDIO.tracks[Te])},bc=["mediaRequests","mediaRequestsAborted","mediaRequestsTimedout","mediaRequestsErrored","mediaTransferDuration","mediaBytesTransferred","mediaAppends"],U4=function(o){return this.audioSegmentLoader_[o]+this.mainSegmentLoader_[o]},y8=function(p){function o(s){var n;n=p.call(this)||this;var a=s.src,c=s.handleManifestRedirects,h=s.withCredentials,_=s.tech,M=s.bandwidth,P=s.externVhs,Q=s.useCueTags,G=s.blacklistDuration,Te=s.enableLowInitialPlaylist,qe=s.sourceType,Oe=s.cacheEncryptionKeys,Ae=s.experimentalBufferBasedABR,Rt=s.experimentalLeastPixelDiffSelector,Zt=s.captionServices;if(!a)throw new Error("A non-empty playlist URL or JSON manifest string is required");var Kt=s.maxPlaylistRetries;null==Kt&&(Kt=1/0),gs=P,n.experimentalBufferBasedABR=Boolean(Ae),n.experimentalLeastPixelDiffSelector=Boolean(Rt),n.withCredentials=h,n.tech_=_,n.vhs_=_.vhs,n.sourceType_=qe,n.useCueTags_=Q,n.blacklistDuration=G,n.maxPlaylistRetries=Kt,n.enableLowInitialPlaylist=Te,n.useCueTags_&&(n.cueTagsTrack_=n.tech_.addTextTrack("metadata","ad-cues"),n.cueTagsTrack_.inBandMetadataTrackDispatchType=""),n.requestOptions_={withCredentials:h,handleManifestRedirects:c,maxPlaylistRetries:Kt,timeout:null},n.on("error",n.pauseLoading),n.mediaTypes_=function(){var o={};return["AUDIO","SUBTITLES","CLOSED-CAPTIONS"].forEach(function(l){o[l]={groups:{},tracks:{},activePlaylistLoader:null,activeGroup:yl,activeTrack:yl,getActiveGroup:yl,onGroupChanged:yl,onTrackChanged:yl,lastTrack_:null,logger_:Os("MediaGroups["+l+"]")}}),o}(),n.mediaSource=new(C().MediaSource),n.handleDurationChange_=n.handleDurationChange_.bind(y(n)),n.handleSourceOpen_=n.handleSourceOpen_.bind(y(n)),n.handleSourceEnded_=n.handleSourceEnded_.bind(y(n)),n.mediaSource.addEventListener("durationchange",n.handleDurationChange_),n.mediaSource.addEventListener("sourceopen",n.handleSourceOpen_),n.mediaSource.addEventListener("sourceended",n.handleSourceEnded_),n.seekable_=Pt.createTimeRanges(),n.hasPlayed_=!1,n.syncController_=new gd(s),n.segmentMetadataTrack_=_.addRemoteTextTrack({kind:"metadata",label:"segment-metadata"},!1).track,n.decrypter_=new F4,n.sourceUpdater_=new c8(n.mediaSource),n.inbandTextTracks_={},n.timelineChangeController_=new md;var nn={vhs:n.vhs_,parse708captions:s.parse708captions,captionServices:Zt,mediaSource:n.mediaSource,currentTime:n.tech_.currentTime.bind(n.tech_),seekable:function(){return n.seekable()},seeking:function(){return n.tech_.seeking()},duration:function(){return n.duration()},hasPlayed:function(){return n.hasPlayed_},goalBufferLength:function(){return n.goalBufferLength()},bandwidth:M,syncController:n.syncController_,decrypter:n.decrypter_,sourceType:n.sourceType_,inbandTextTracks:n.inbandTextTracks_,cacheEncryptionKeys:Oe,sourceUpdater:n.sourceUpdater_,timelineChangeController:n.timelineChangeController_,experimentalExactManifestTimings:s.experimentalExactManifestTimings};n.masterPlaylistLoader_="dash"===n.sourceType_?new I3(a,n.vhs_,n.requestOptions_):new ou(a,n.vhs_,n.requestOptions_),n.setupMasterPlaylistLoaderListeners_(),n.mainSegmentLoader_=new dd(Pt.mergeOptions(nn,{segmentMetadataTrack:n.segmentMetadataTrack_,loaderType:"main"}),s),n.audioSegmentLoader_=new dd(Pt.mergeOptions(nn,{loaderType:"audio"}),s),n.subtitleSegmentLoader_=new N4(Pt.mergeOptions(nn,{loaderType:"vtt",featuresNativeTextTracks:n.tech_.featuresNativeTextTracks}),s),n.setupSegmentLoaderListeners_(),n.experimentalBufferBasedABR&&(n.masterPlaylistLoader_.one("loadedplaylist",function(){return n.startABRTimer_()}),n.tech_.on("pause",function(){return n.stopABRTimer_()}),n.tech_.on("play",function(){return n.startABRTimer_()})),bc.forEach(function(wn){n[wn+"_"]=U4.bind(y(n),wn)}),n.logger_=Os("MPC"),n.triggeredFmp4Usage=!1,"none"===n.tech_.preload()?(n.loadOnPlay_=function(){n.loadOnPlay_=null,n.masterPlaylistLoader_.load()},n.tech_.one("play",n.loadOnPlay_)):n.masterPlaylistLoader_.load(),n.timeToLoadedData__=-1,n.mainAppendsToLoadedData__=-1,n.audioAppendsToLoadedData__=-1;var en="none"===n.tech_.preload()?"play":"loadstart";return n.tech_.one(en,function(){var wn=Date.now();n.tech_.one("loadeddata",function(){n.timeToLoadedData__=Date.now()-wn,n.mainAppendsToLoadedData__=n.mainSegmentLoader_.mediaAppends,n.audioAppendsToLoadedData__=n.audioSegmentLoader_.mediaAppends})}),n}ue(o,p);var l=o.prototype;return l.mainAppendsToLoadedData_=function(){return this.mainAppendsToLoadedData__},l.audioAppendsToLoadedData_=function(){return this.audioAppendsToLoadedData__},l.appendsToLoadedData_=function(){var n=this.mainAppendsToLoadedData_(),a=this.audioAppendsToLoadedData_();return-1===n||-1===a?-1:n+a},l.timeToLoadedData_=function(){return this.timeToLoadedData__},l.checkABR_=function(){var n=this.selectPlaylist();n&&this.shouldSwitchToMedia_(n)&&this.switchMedia_(n,"abr")},l.switchMedia_=function(n,a,c){var h=this.media(),_=h&&(h.id||h.uri),M=n.id||n.uri;_&&_!==M&&(this.logger_("switch media "+_+" -> "+M+" from "+a),this.tech_.trigger({type:"usage",name:"vhs-rendition-change-"+a})),this.masterPlaylistLoader_.media(n,c)},l.startABRTimer_=function(){var n=this;this.stopABRTimer_(),this.abrTimer_=C().setInterval(function(){return n.checkABR_()},250)},l.stopABRTimer_=function(){this.tech_.scrubbing&&this.tech_.scrubbing()||(C().clearInterval(this.abrTimer_),this.abrTimer_=null)},l.getAudioTrackPlaylists_=function(){var n=this.master(),a=n&&n.playlists||[];if(!n||!n.mediaGroups||!n.mediaGroups.AUDIO)return a;var _,c=n.mediaGroups.AUDIO,h=Object.keys(c);if(Object.keys(this.mediaTypes_.AUDIO.groups).length)_=this.mediaTypes_.AUDIO.activeTrack();else{var M=c.main||h.length&&c[h[0]];for(var P in M)if(M[P].default){_={label:P};break}}if(!_)return a;var Q=[];for(var G in c)if(c[G][_.label]){var Te=c[G][_.label];if(Te.playlists&&Te.playlists.length)Q.push.apply(Q,Te.playlists);else if(Te.uri)Q.push(Te);else if(n.playlists.length)for(var qe=0;qe1&&(this.tech_.trigger({type:"usage",name:"vhs-alternate-audio"}),this.tech_.trigger({type:"usage",name:"hls-alternate-audio"})),this.useCueTags_&&(this.tech_.trigger({type:"usage",name:"vhs-playlist-cue-tags"}),this.tech_.trigger({type:"usage",name:"hls-playlist-cue-tags"}))},l.shouldSwitchToMedia_=function(n){var a=this.masterPlaylistLoader_.media()||this.masterPlaylistLoader_.pendingMedia_,c=this.tech_.currentTime(),h=this.bufferLowWaterLine(),_=this.bufferHighWaterLine();return function(o){var l=o.currentPlaylist,s=o.buffered,n=o.currentTime,a=o.nextPlaylist,c=o.bufferLowWaterLine,h=o.bufferHighWaterLine,_=o.duration,M=o.experimentalBufferBasedABR,P=o.log;if(!a)return Pt.log.warn("We received no playlist to switch to. Please check your stream."),!1;var Q="allowing switch "+(l&&l.id||"null")+" -> "+a.id;if(!l)return P(Q+" as current playlist is not set"),!0;if(a.id===l.id)return!1;var G=Boolean(Nu(s,n).length);if(!l.endList)return G||"number"!=typeof l.partTargetDuration?(P(Q+" as current playlist is live"),!0):(P("not "+Q+" as current playlist is live llhls, but currentTime isn't in buffered."),!1);var Te=sc(s,n),qe=M?Ta.EXPERIMENTAL_MAX_BUFFER_LOW_WATER_LINE:Ta.MAX_BUFFER_LOW_WATER_LINE;if(_Ae)&&Te>=c){var Zt=Q+" as forwardBuffer >= bufferLowWaterLine ("+Te+" >= "+c+")";return M&&(Zt+=" and next bandwidth > current bandwidth ("+Oe+" > "+Ae+")"),P(Zt),!0}return P("not "+Q+" as no switching criteria met"),!1}({buffered:this.tech_.buffered(),currentTime:c,currentPlaylist:a,nextPlaylist:n,bufferLowWaterLine:h,bufferHighWaterLine:_,duration:this.duration(),experimentalBufferBasedABR:this.experimentalBufferBasedABR,log:this.logger_})},l.setupSegmentLoaderListeners_=function(){var n=this;this.experimentalBufferBasedABR||(this.mainSegmentLoader_.on("bandwidthupdate",function(){var c=n.selectPlaylist();n.shouldSwitchToMedia_(c)&&n.switchMedia_(c,"bandwidthupdate"),n.tech_.trigger("bandwidthupdate")}),this.mainSegmentLoader_.on("progress",function(){n.trigger("progress")})),this.mainSegmentLoader_.on("error",function(){n.blacklistCurrentPlaylist(n.mainSegmentLoader_.error())}),this.mainSegmentLoader_.on("appenderror",function(){n.error=n.mainSegmentLoader_.error_,n.trigger("error")}),this.mainSegmentLoader_.on("syncinfoupdate",function(){n.onSyncInfoUpdate_()}),this.mainSegmentLoader_.on("timestampoffset",function(){n.tech_.trigger({type:"usage",name:"vhs-timestamp-offset"}),n.tech_.trigger({type:"usage",name:"hls-timestamp-offset"})}),this.audioSegmentLoader_.on("syncinfoupdate",function(){n.onSyncInfoUpdate_()}),this.audioSegmentLoader_.on("appenderror",function(){n.error=n.audioSegmentLoader_.error_,n.trigger("error")}),this.mainSegmentLoader_.on("ended",function(){n.logger_("main segment loader ended"),n.onEndOfStream()}),this.mainSegmentLoader_.on("earlyabort",function(c){n.experimentalBufferBasedABR||(n.delegateLoaders_("all",["abort"]),n.blacklistCurrentPlaylist({message:"Aborted early because there isn't enough bandwidth to complete the request without rebuffering."},120))});var a=function(){if(!n.sourceUpdater_.hasCreatedSourceBuffers())return n.tryToCreateSourceBuffers_();var h=n.getCodecsOrExclude_();!h||n.sourceUpdater_.addOrChangeSourceBuffers(h)};this.mainSegmentLoader_.on("trackinfo",a),this.audioSegmentLoader_.on("trackinfo",a),this.mainSegmentLoader_.on("fmp4",function(){n.triggeredFmp4Usage||(n.tech_.trigger({type:"usage",name:"vhs-fmp4"}),n.tech_.trigger({type:"usage",name:"hls-fmp4"}),n.triggeredFmp4Usage=!0)}),this.audioSegmentLoader_.on("fmp4",function(){n.triggeredFmp4Usage||(n.tech_.trigger({type:"usage",name:"vhs-fmp4"}),n.tech_.trigger({type:"usage",name:"hls-fmp4"}),n.triggeredFmp4Usage=!0)}),this.audioSegmentLoader_.on("ended",function(){n.logger_("audioSegmentLoader ended"),n.onEndOfStream()})},l.mediaSecondsLoaded_=function(){return Math.max(this.audioSegmentLoader_.mediaSecondsLoaded+this.mainSegmentLoader_.mediaSecondsLoaded)},l.load=function(){this.mainSegmentLoader_.load(),this.mediaTypes_.AUDIO.activePlaylistLoader&&this.audioSegmentLoader_.load(),this.mediaTypes_.SUBTITLES.activePlaylistLoader&&this.subtitleSegmentLoader_.load()},l.smoothQualityChange_=function(n){void 0===n&&(n=this.selectPlaylist()),this.fastQualityChange_(n)},l.fastQualityChange_=function(n){var a=this;void 0===n&&(n=this.selectPlaylist()),n!==this.masterPlaylistLoader_.media()?(this.switchMedia_(n,"fast-quality"),this.mainSegmentLoader_.resetEverything(function(){Pt.browser.IE_VERSION||Pt.browser.IS_EDGE?a.tech_.setCurrentTime(a.tech_.currentTime()+.04):a.tech_.setCurrentTime(a.tech_.currentTime())})):this.logger_("skipping fastQualityChange because new media is same as old")},l.play=function(){if(!this.setupFirstPlay()){this.tech_.ended()&&this.tech_.setCurrentTime(0),this.hasPlayed_&&this.load();var n=this.tech_.seekable();if(this.tech_.duration()===1/0&&this.tech_.currentTime()this.maxPlaylistRetries?1/0:Date.now()+1e3*a,c.excludeUntil=Q,n.reason&&(c.lastExcludeReason_=n.reason),this.tech_.trigger("blacklistplaylist"),this.tech_.trigger({type:"usage",name:"vhs-rendition-blacklisted"}),this.tech_.trigger({type:"usage",name:"hls-rendition-blacklisted"});var G=this.selectPlaylist();if(!G)return this.error="Playback cannot continue. No available working or supported playlists.",void this.trigger("error");var Te=n.internal?this.logger_:Pt.log.warn,qe=n.message?" "+n.message:"";Te((n.internal?"Internal problem":"Problem")+" encountered with playlist "+c.id+"."+qe+" Switching to playlist "+G.id+"."),G.attributes.AUDIO!==c.attributes.AUDIO&&this.delegateLoaders_("audio",["abort","pause"]),G.attributes.SUBTITLES!==c.attributes.SUBTITLES&&this.delegateLoaders_("subtitle",["abort","pause"]),this.delegateLoaders_("main",["abort","pause"]);var Oe=G.targetDuration/2*1e3||5e3,Ae="number"==typeof G.lastRequest&&Date.now()-G.lastRequest<=Oe;return this.switchMedia_(G,"exclude",M||Ae)},l.pauseLoading=function(){this.delegateLoaders_("all",["abort","pause"]),this.stopABRTimer_()},l.delegateLoaders_=function(n,a){var c=this,h=[],_="all"===n;(_||"main"===n)&&h.push(this.masterPlaylistLoader_);var M=[];(_||"audio"===n)&&M.push("AUDIO"),(_||"subtitle"===n)&&(M.push("CLOSED-CAPTIONS"),M.push("SUBTITLES")),M.forEach(function(P){var Q=c.mediaTypes_[P]&&c.mediaTypes_[P].activePlaylistLoader;Q&&h.push(Q)}),["main","audio","subtitle"].forEach(function(P){var Q=c[P+"SegmentLoader_"];Q&&(n===P||"all"===n)&&h.push(Q)}),h.forEach(function(P){return a.forEach(function(Q){"function"==typeof P[Q]&&P[Q]()})})},l.setCurrentTime=function(n){var a=Nu(this.tech_.buffered(),n);return this.masterPlaylistLoader_&&this.masterPlaylistLoader_.media()&&this.masterPlaylistLoader_.media().segments?a&&a.length?n:(this.mainSegmentLoader_.resetEverything(),this.mainSegmentLoader_.abort(),this.mediaTypes_.AUDIO.activePlaylistLoader&&(this.audioSegmentLoader_.resetEverything(),this.audioSegmentLoader_.abort()),this.mediaTypes_.SUBTITLES.activePlaylistLoader&&(this.subtitleSegmentLoader_.resetEverything(),this.subtitleSegmentLoader_.abort()),void this.load()):0},l.duration=function(){if(!this.masterPlaylistLoader_)return 0;var n=this.masterPlaylistLoader_.media();return n?n.endList?this.mediaSource?this.mediaSource.duration:gs.Playlist.duration(n):1/0:0},l.seekable=function(){return this.seekable_},l.onSyncInfoUpdate_=function(){var n;if(this.masterPlaylistLoader_){var a=this.masterPlaylistLoader_.media();if(a){var c=this.syncController_.getExpiredTime(a,this.duration());if(null!==c){var M,P,h=this.masterPlaylistLoader_.master,_=gs.Playlist.seekable(a,c,gs.Playlist.liveEdgeDelay(h,a));if(0!==_.length&&(!this.mediaTypes_.AUDIO.activePlaylistLoader||(a=this.mediaTypes_.AUDIO.activePlaylistLoader.media(),null!==(c=this.syncController_.getExpiredTime(a,this.duration()))&&0!==(n=gs.Playlist.seekable(a,c,gs.Playlist.liveEdgeDelay(h,a))).length)))this.seekable_&&this.seekable_.length&&(M=this.seekable_.end(0),P=this.seekable_.start(0)),n?n.start(0)>_.end(0)||_.start(0)>n.end(0)?this.seekable_=_:this.seekable_=Pt.createTimeRanges([[n.start(0)>_.start(0)?n.start(0):_.start(0),n.end(0)<_.end(0)?n.end(0):_.end(0)]]):this.seekable_=_,(!this.seekable_||!this.seekable_.length||this.seekable_.end(0)!==M||this.seekable_.start(0)!==P)&&(this.logger_("seekable updated ["+X6(this.seekable_)+"]"),this.tech_.trigger("seekablechanged"))}}}},l.updateDuration=function(n){if(this.updateDuration_&&(this.mediaSource.removeEventListener("sourceopen",this.updateDuration_),this.updateDuration_=null),"open"!==this.mediaSource.readyState)return this.updateDuration_=this.updateDuration.bind(this,n),void this.mediaSource.addEventListener("sourceopen",this.updateDuration_);if(n){var a=this.seekable();if(!a.length)return;(isNaN(this.mediaSource.duration)||this.mediaSource.duration0&&(h=Math.max(h,c.end(c.length-1))),this.mediaSource.duration!==h&&this.sourceUpdater_.setDuration(h)}},l.dispose=function(){var n=this;this.trigger("dispose"),this.decrypter_.terminate(),this.masterPlaylistLoader_.dispose(),this.mainSegmentLoader_.dispose(),this.loadOnPlay_&&this.tech_.off("play",this.loadOnPlay_),["AUDIO","SUBTITLES"].forEach(function(a){var c=n.mediaTypes_[a].groups;for(var h in c)c[h].forEach(function(_){_.playlistLoader&&_.playlistLoader.dispose()})}),this.audioSegmentLoader_.dispose(),this.subtitleSegmentLoader_.dispose(),this.sourceUpdater_.dispose(),this.timelineChangeController_.dispose(),this.stopABRTimer_(),this.updateDuration_&&this.mediaSource.removeEventListener("sourceopen",this.updateDuration_),this.mediaSource.removeEventListener("durationchange",this.handleDurationChange_),this.mediaSource.removeEventListener("sourceopen",this.handleSourceOpen_),this.mediaSource.removeEventListener("sourceended",this.handleSourceEnded_),this.off()},l.master=function(){return this.masterPlaylistLoader_.master},l.media=function(){return this.masterPlaylistLoader_.media()||this.initialMedia_},l.areMediaTypesKnown_=function(){var n=!!this.mediaTypes_.AUDIO.activePlaylistLoader,a=!!this.mainSegmentLoader_.getCurrentMediaInfo_(),c=!n||!!this.audioSegmentLoader_.getCurrentMediaInfo_();return!(!a||!c)},l.getCodecsOrExclude_=function(){var n=this,a={main:this.mainSegmentLoader_.getCurrentMediaInfo_()||{},audio:this.audioSegmentLoader_.getCurrentMediaInfo_()||{}};a.video=a.main;var c=_c(this.master(),this.media()),h={},_=!!this.mediaTypes_.AUDIO.activePlaylistLoader;if(a.main.hasVideo&&(h.video=c.video||a.main.videoCodec||"avc1.4d400d"),a.main.isMuxed&&(h.video+=","+(c.audio||a.main.audioCodec||At)),(a.main.hasAudio&&!a.main.isMuxed||a.audio.hasAudio||_)&&(h.audio=c.audio||a.main.audioCodec||a.audio.audioCodec||At,a.audio.isFmp4=a.main.hasAudio&&!a.main.isMuxed?a.main.isFmp4:a.audio.isFmp4),h.audio||h.video){var Q,P={};if(["video","audio"].forEach(function(Oe){if(h.hasOwnProperty(Oe)&&!function(Ae,Rt){return Ae?je(Rt):rn(Rt)}(a[Oe].isFmp4,h[Oe])){var Ae=a[Oe].isFmp4?"browser":"muxer";P[Ae]=P[Ae]||[],P[Ae].push(h[Oe]),"audio"===Oe&&(Q=Ae)}}),_&&Q&&this.media().attributes.AUDIO){var G=this.media().attributes.AUDIO;this.master().playlists.forEach(function(Oe){(Oe.attributes&&Oe.attributes.AUDIO)===G&&Oe!==n.media()&&(Oe.excludeUntil=1/0)}),this.logger_("excluding audio group "+G+" as "+Q+' does not support codec(s): "'+h.audio+'"')}if(!Object.keys(P).length){if(this.sourceUpdater_.hasCreatedSourceBuffers()&&!this.sourceUpdater_.canChangeType()){var qe=[];if(["video","audio"].forEach(function(Oe){var Ae=(Pn(n.sourceUpdater_.codecs[Oe]||"")[0]||{}).type,Rt=(Pn(h[Oe]||"")[0]||{}).type;Ae&&Rt&&Ae.toLowerCase()!==Rt.toLowerCase()&&qe.push('"'+n.sourceUpdater_.codecs[Oe]+'" -> "'+h[Oe]+'"')}),qe.length)return void this.blacklistCurrentPlaylist({playlist:this.media(),message:"Codec switching not supported: "+qe.join(", ")+".",blacklistDuration:1/0,internal:!0})}return h}var Te=Object.keys(P).reduce(function(Oe,Ae){return Oe&&(Oe+=", "),Oe+=Ae+' does not support codec(s): "'+P[Ae].join(",")+'"'},"")+".";this.blacklistCurrentPlaylist({playlist:this.media(),internal:!0,message:Te,blacklistDuration:1/0})}else this.blacklistCurrentPlaylist({playlist:this.media(),message:"Could not determine codecs for playlist.",blacklistDuration:1/0})},l.tryToCreateSourceBuffers_=function(){if("open"===this.mediaSource.readyState&&!this.sourceUpdater_.hasCreatedSourceBuffers()&&this.areMediaTypesKnown_()){var n=this.getCodecsOrExclude_();if(n){this.sourceUpdater_.createSourceBuffers(n);var a=[n.video,n.audio].filter(Boolean).join(",");this.excludeIncompatibleVariants_(a)}}},l.excludeUnsupportedVariants_=function(){var n=this,a=this.master().playlists,c=[];Object.keys(a).forEach(function(h){var _=a[h];if(-1===c.indexOf(_.id)){c.push(_.id);var M=_c(n.master,_),P=[];M.audio&&!rn(M.audio)&&!je(M.audio)&&P.push("audio codec "+M.audio),M.video&&!rn(M.video)&&!je(M.video)&&P.push("video codec "+M.video),M.text&&"stpp.ttml.im1t"===M.text&&P.push("text codec "+M.text),P.length&&(_.excludeUntil=1/0,n.logger_("excluding "+_.id+" for unsupported: "+P.join(", ")))}})},l.excludeIncompatibleVariants_=function(n){var a=this,c=[],h=this.master().playlists,_=vc(Pn(n)),M=Q5(_),P=_.video&&Pn(_.video)[0]||null,Q=_.audio&&Pn(_.audio)[0]||null;Object.keys(h).forEach(function(G){var Te=h[G];if(-1===c.indexOf(Te.id)&&Te.excludeUntil!==1/0){c.push(Te.id);var qe=[],Oe=_c(a.masterPlaylistLoader_.master,Te),Ae=Q5(Oe);if(Oe.audio||Oe.video){if(Ae!==M&&qe.push('codec count "'+Ae+'" !== "'+M+'"'),!a.sourceUpdater_.canChangeType()){var Rt=Oe.video&&Pn(Oe.video)[0]||null,Zt=Oe.audio&&Pn(Oe.audio)[0]||null;Rt&&P&&Rt.type.toLowerCase()!==P.type.toLowerCase()&&qe.push('video codec "'+Rt.type+'" !== "'+P.type+'"'),Zt&&Q&&Zt.type.toLowerCase()!==Q.type.toLowerCase()&&qe.push('audio codec "'+Zt.type+'" !== "'+Q.type+'"')}qe.length&&(Te.excludeUntil=1/0,a.logger_("blacklisting "+Te.id+": "+qe.join(" && ")))}}})},l.updateAdCues_=function(n){var a=0,c=this.seekable();c.length&&(a=c.start(0)),function(o,l,s){if(void 0===s&&(s=0),o.segments)for(var a,n=s,c=0;c0&&this.logger_("resetting possible stalled download count for "+s+" loader"),this[s+"StalledDownloads_"]=0,this[s+"Buffered_"]=n.buffered_()},o.checkSegmentDownloads_=function(s){var n=this.masterPlaylistController_,a=n[s+"SegmentLoader_"],c=a.buffered_(),h=function(o,l){if(o===l)return!1;if(!o&&l||!l&&o||o.length!==l.length)return!0;for(var s=0;s=n.end(n.length-1)))return this.techWaiting_();this.consecutiveUpdates>=5&&s===this.lastRecordedTime?(this.consecutiveUpdates++,this.waiting_()):s===this.lastRecordedTime?this.consecutiveUpdates++:(this.consecutiveUpdates=0,this.lastRecordedTime=s)}},o.cancelTimer_=function(){this.consecutiveUpdates=0,this.timer_&&(this.logger_("cancelTimer_"),clearTimeout(this.timer_)),this.timer_=null},o.fixesBadSeeks_=function(){if(!this.tech_.seeking())return!1;var h,n=this.seekable(),a=this.tech_.currentTime();this.afterSeekableWindow_(n,a,this.media(),this.allowSeeksWithinUnsafeLiveWindow)&&(h=n.end(n.length-1));if(this.beforeSeekableWindow_(n,a)){var M=n.start(0);h=M+(M===n.end(0)?0:p1)}if(void 0!==h)return this.logger_("Trying to seek outside of seekable at time "+a+" with seekable range "+X6(n)+". Seeking to "+h+"."),this.tech_.setCurrentTime(h),!0;for(var P=this.masterPlaylistController_.sourceUpdater_,Q=this.tech_.buffered(),G=P.audioBuffer?P.audioBuffered():null,Te=P.videoBuffer?P.videoBuffered():null,qe=this.media(),Oe=qe.partTargetDuration?qe.partTargetDuration:2*(qe.targetDuration-iu),Ae=[G,Te],Rt=0;Rt "+a.end(0)+"]. Attempting to resume playback by seeking to the current time."),this.tech_.trigger({type:"usage",name:"vhs-unknown-waiting"}),void this.tech_.trigger({type:"usage",name:"hls-unknown-waiting"})}},o.techWaiting_=function(){var s=this.seekable(),n=this.tech_.currentTime();if(this.tech_.seeking()||null!==this.timer_)return!0;if(this.beforeSeekableWindow_(s,n)){var a=s.end(s.length-1);return this.logger_("Fell out of live window at time "+n+". Seeking to live point (seekable end) "+a),this.cancelTimer_(),this.tech_.setCurrentTime(a),this.tech_.trigger({type:"usage",name:"vhs-live-resync"}),this.tech_.trigger({type:"usage",name:"hls-live-resync"}),!0}var c=this.tech_.vhs.masterPlaylistController_.sourceUpdater_,h=this.tech_.buffered();if(this.videoUnderflow_({audioBuffered:c.audioBuffered(),videoBuffered:c.videoBuffered(),currentTime:n}))return this.cancelTimer_(),this.tech_.setCurrentTime(n),this.tech_.trigger({type:"usage",name:"vhs-video-underflow"}),this.tech_.trigger({type:"usage",name:"hls-video-underflow"}),!0;var M=h3(h,n);if(M.length>0){var P=M.start(0)-n;return this.logger_("Stopped at "+n+", setting timer for "+P+", seeking to "+M.start(0)),this.cancelTimer_(),this.timer_=setTimeout(this.skipTheGap_.bind(this),1e3*P,n),!0}return!1},o.afterSeekableWindow_=function(s,n,a,c){if(void 0===c&&(c=!1),!s.length)return!1;var h=s.end(s.length-1)+p1;return!a.endList&&c&&(h=s.end(s.length-1)+3*a.targetDuration),n>h},o.beforeSeekableWindow_=function(s,n){return!!(s.length&&s.start(0)>0&&n2)return{start:h,end:_}}return null},p}(),G4={errorInterval:30,getSource:function(o){return o(this.tech({IWillNotUseThisInPlugins:!0}).currentSource_||this.currentSource())}},b8=function p(o,l){var s=0,n=0,a=Pt.mergeOptions(G4,l);o.ready(function(){o.trigger({type:"usage",name:"vhs-error-reload-initialized"}),o.trigger({type:"usage",name:"hls-error-reload-initialized"})});var c=function(){n&&o.currentTime(n)},h=function(G){null!=G&&(n=o.duration()!==1/0&&o.currentTime()||0,o.one("loadedmetadata",c),o.src(G),o.trigger({type:"usage",name:"vhs-error-reload"}),o.trigger({type:"usage",name:"hls-error-reload"}),o.play())},_=function(){return Date.now()-s<1e3*a.errorInterval?(o.trigger({type:"usage",name:"vhs-error-reload-canceled"}),void o.trigger({type:"usage",name:"hls-error-reload-canceled"})):a.getSource&&"function"==typeof a.getSource?(s=Date.now(),a.getSource.call(o,h)):void Pt.log.error("ERROR: reloadSourceOnError - The option getSource must be a function!")},M=function Q(){o.off("loadedmetadata",c),o.off("error",_),o.off("dispose",Q)};o.on("error",_),o.on("dispose",M),o.reloadSourceOnError=function(G){M(),p(o,G)}},$a={PlaylistLoader:ou,Playlist:Go,utils:l4,STANDARD_PLAYLIST_SELECTOR:ad,INITIAL_PLAYLIST_SELECTOR:function(){var o=this,l=this.playlists.master.playlists.filter(Go.isEnabled);return m1(l,function(n,a){return Bu(n,a)}),l.filter(function(n){return!!_c(o.playlists.master,n).video})[0]||null},lastBandwidthSelector:ad,movingAverageBandwidthSelector:function(o){var l=-1,s=-1;if(o<0||o>1)throw new Error("Moving average bandwidth decay must be between 0 and 1.");return function(){var n=this.useDevicePixelRatio&&C().devicePixelRatio||1;return l<0&&(l=this.systemBandwidth,s=this.systemBandwidth),this.systemBandwidth>0&&this.systemBandwidth!==s&&(l=o*this.systemBandwidth+(1-o)*l,s=this.systemBandwidth),Y5(this.playlists.master,l,parseInt(v2(this.tech_.el(),"width"),10)*n,parseInt(v2(this.tech_.el(),"height"),10)*n,this.limitRenditionByPlayerDimensions,this.masterPlaylistController_)}},comparePlaylistBandwidth:Bu,comparePlaylistResolution:function(o,l){var s,n;return o.attributes.RESOLUTION&&o.attributes.RESOLUTION.width&&(s=o.attributes.RESOLUTION.width),s=s||C().Number.MAX_VALUE,l.attributes.RESOLUTION&&l.attributes.RESOLUTION.width&&(n=l.attributes.RESOLUTION.width),s===(n=n||C().Number.MAX_VALUE)&&o.attributes.BANDWIDTH&&l.attributes.BANDWIDTH?o.attributes.BANDWIDTH-l.attributes.BANDWIDTH:s-n},xhr:A5()};Object.keys(Ta).forEach(function(p){Object.defineProperty($a,p,{get:function(){return Pt.log.warn("using Vhs."+p+" is UNSAFE be sure you know what you are doing"),Ta[p]},set:function(l){Pt.log.warn("using Vhs."+p+" is UNSAFE be sure you know what you are doing"),"number"!=typeof l||l<0?Pt.log.warn("value of Vhs."+p+" must be greater than or equal to 0"):Ta[p]=l}})});var M8="videojs-vhs",w8=function(o,l){for(var s=l.media(),n=-1,a=0;a=G&&P>=G?Math.max(P,Te):Te}return P},set:function(P){this.masterPlaylistController_.mainSegmentLoader_.bandwidth=P,this.masterPlaylistController_.mainSegmentLoader_.throughput={rate:0,count:0}}},systemBandwidth:{get:function(){var Q,P=1/(this.bandwidth||1);return Q=this.throughput>0?1/this.throughput:0,Math.floor(1/(P+Q))},set:function(){Pt.log.error('The "systemBandwidth" property is read-only')}}}),this.options_.bandwidth&&(this.bandwidth=this.options_.bandwidth),this.options_.throughput&&(this.throughput=this.options_.throughput),Object.defineProperties(this.stats,{bandwidth:{get:function(){return c.bandwidth||0},enumerable:!0},mediaRequests:{get:function(){return c.masterPlaylistController_.mediaRequests_()||0},enumerable:!0},mediaRequestsAborted:{get:function(){return c.masterPlaylistController_.mediaRequestsAborted_()||0},enumerable:!0},mediaRequestsTimedout:{get:function(){return c.masterPlaylistController_.mediaRequestsTimedout_()||0},enumerable:!0},mediaRequestsErrored:{get:function(){return c.masterPlaylistController_.mediaRequestsErrored_()||0},enumerable:!0},mediaTransferDuration:{get:function(){return c.masterPlaylistController_.mediaTransferDuration_()||0},enumerable:!0},mediaBytesTransferred:{get:function(){return c.masterPlaylistController_.mediaBytesTransferred_()||0},enumerable:!0},mediaSecondsLoaded:{get:function(){return c.masterPlaylistController_.mediaSecondsLoaded_()||0},enumerable:!0},mediaAppends:{get:function(){return c.masterPlaylistController_.mediaAppends_()||0},enumerable:!0},mainAppendsToLoadedData:{get:function(){return c.masterPlaylistController_.mainAppendsToLoadedData_()||0},enumerable:!0},audioAppendsToLoadedData:{get:function(){return c.masterPlaylistController_.audioAppendsToLoadedData_()||0},enumerable:!0},appendsToLoadedData:{get:function(){return c.masterPlaylistController_.appendsToLoadedData_()||0},enumerable:!0},timeToLoadedData:{get:function(){return c.masterPlaylistController_.timeToLoadedData_()||0},enumerable:!0},buffered:{get:function(){return au(c.tech_.buffered())},enumerable:!0},currentTime:{get:function(){return c.tech_.currentTime()},enumerable:!0},currentSource:{get:function(){return c.tech_.currentSource_},enumerable:!0},currentTech:{get:function(){return c.tech_.name_},enumerable:!0},duration:{get:function(){return c.tech_.duration()},enumerable:!0},master:{get:function(){return c.playlists.master},enumerable:!0},playerDimensions:{get:function(){return c.tech_.currentDimensions()},enumerable:!0},seekable:{get:function(){return au(c.tech_.seekable())},enumerable:!0},timestamp:{get:function(){return Date.now()},enumerable:!0},videoPlaybackQuality:{get:function(){return c.tech_.getVideoPlaybackQuality()},enumerable:!0}}),this.tech_.one("canplay",this.masterPlaylistController_.setupFirstPlay.bind(this.masterPlaylistController_)),this.tech_.on("bandwidthupdate",function(){c.options_.useBandwidthFromLocalStorage&&function(o){if(!C().localStorage)return!1;var l=X4();l=l?Pt.mergeOptions(l,o):o;try{C().localStorage.setItem(M8,JSON.stringify(l))}catch(s){return!1}}({bandwidth:c.bandwidth,throughput:Math.round(c.throughput)})}),this.masterPlaylistController_.on("selectedinitialmedia",function(){!function(o){o.representations=function(){var l=o.masterPlaylistController_.master(),s=Ru(l)?o.masterPlaylistController_.getAudioTrackPlaylists_():l.playlists;return s?s.filter(function(n){return!q0(n)}).map(function(n,a){return new C8(o,n,n.id)}):[]}}(c)}),this.masterPlaylistController_.sourceUpdater_.on("createdsourcebuffers",function(){c.setupEme_()}),this.on(this.masterPlaylistController_,"progress",function(){this.tech_.trigger("progress")}),this.on(this.masterPlaylistController_,"firstplay",function(){this.ignoreNextSeekingEvent_=!0}),this.setupQualityLevels_(),this.tech_.el()&&(this.mediaSourceUrl_=C().URL.createObjectURL(this.masterPlaylistController_.mediaSource),this.tech_.src(this.mediaSourceUrl_))}},l.createKeySessions_=function(){var n=this,a=this.masterPlaylistController_.mediaTypes_.AUDIO.activePlaylistLoader;this.logger_("waiting for EME key session creation"),Li({player:this.player_,sourceKeySystems:this.source_.keySystems,audioMedia:a&&a.media(),mainPlaylists:this.playlists.master.playlists}).then(function(){n.logger_("created EME key session"),n.masterPlaylistController_.sourceUpdater_.initializedEme()}).catch(function(c){n.logger_("error while creating EME key session",c),n.player_.error({message:"Failed to initialize media keys for EME",code:3})})},l.handleWaitingForKey_=function(){this.logger_("waitingforkey fired, attempting to create any new key sessions"),this.createKeySessions_()},l.setupEme_=function(){var n=this,a=this.masterPlaylistController_.mediaTypes_.AUDIO.activePlaylistLoader,c=J4({player:this.player_,sourceKeySystems:this.source_.keySystems,media:this.playlists.media(),audioMedia:a&&a.media()});this.player_.tech_.on("keystatuschange",function(h){"output-restricted"===h.status&&n.masterPlaylistController_.blacklistCurrentPlaylist({playlist:n.masterPlaylistController_.media(),message:"DRM keystatus changed to "+h.status+". Playlist will fail to play. Check for HDCP content.",blacklistDuration:1/0})}),this.handleWaitingForKey_=this.handleWaitingForKey_.bind(this),this.player_.tech_.on("waitingforkey",this.handleWaitingForKey_),11!==Pt.browser.IE_VERSION&&c?this.createKeySessions_():this.masterPlaylistController_.sourceUpdater_.initializedEme()},l.setupQualityLevels_=function(){var n=this,a=Pt.players[this.tech_.options_.playerId];!a||!a.qualityLevels||this.qualityLevels_||(this.qualityLevels_=a.qualityLevels(),this.masterPlaylistController_.on("selectedinitialmedia",function(){!function(o,l){l.representations().forEach(function(s){o.addQualityLevel(s)}),w8(o,l.playlists)}(n.qualityLevels_,n)}),this.playlists.on("mediachange",function(){w8(n.qualityLevels_,n.playlists)}))},o.version=function(){return{"@videojs/http-streaming":"2.13.1","mux.js":"6.0.1","mpd-parser":"0.21.0","m3u8-parser":"4.7.0","aes-decrypter":"3.1.2"}},l.version=function(){return this.constructor.version()},l.canChangeType=function(){return c8.canChangeType()},l.play=function(){this.masterPlaylistController_.play()},l.setCurrentTime=function(n){this.masterPlaylistController_.setCurrentTime(n)},l.duration=function(){return this.masterPlaylistController_.duration()},l.seekable=function(){return this.masterPlaylistController_.seekable()},l.dispose=function(){this.playbackWatcher_&&this.playbackWatcher_.dispose(),this.masterPlaylistController_&&this.masterPlaylistController_.dispose(),this.qualityLevels_&&this.qualityLevels_.dispose(),this.player_&&(delete this.player_.vhs,delete this.player_.dash,delete this.player_.hls),this.tech_&&this.tech_.vhs&&delete this.tech_.vhs,this.tech_&&delete this.tech_.hls,this.mediaSourceUrl_&&C().URL.revokeObjectURL&&(C().URL.revokeObjectURL(this.mediaSourceUrl_),this.mediaSourceUrl_=null),this.tech_&&this.tech_.off("waitingforkey",this.handleWaitingForKey_),p.prototype.dispose.call(this)},l.convertToProgramTime=function(n,a){return h4({playlist:this.masterPlaylistController_.media(),time:n,callback:a})},l.seekToProgramTime=function(n,a,c,h){return void 0===c&&(c=!0),void 0===h&&(h=2),g4({programTime:n,playlist:this.masterPlaylistController_.media(),retryCount:h,pauseAfterSeek:c,seekTo:this.options_.seekTo,tech:this.options_.tech,callback:a})},o}(Pt.getComponent("Component")),R3={name:"videojs-http-streaming",VERSION:"2.13.1",canHandleSource:function(o,l){void 0===l&&(l={});var s=Pt.mergeOptions(Pt.options,l);return R3.canPlayType(o.type,s)},handleSource:function(o,l,s){void 0===s&&(s={});var n=Pt.mergeOptions(Pt.options,s);return l.vhs=new E8(o,l,n),Pt.hasOwnProperty("hls")||Object.defineProperty(l,"hls",{get:function(){return Pt.log.warn("player.tech().hls is deprecated. Use player.tech().vhs instead."),l.vhs},configurable:!0}),l.vhs.xhr=A5(),l.vhs.src(o.src,o.type),l.vhs},canPlayType:function(o,l){void 0===l&&(l={});var s=Pt.mergeOptions(Pt.options,l),n=s.vhs,a=(n=void 0===n?{}:n).overrideNative,c=void 0===a?!Pt.browser.IS_ANY_SAFARI:a,h=s.hls,_=(h=void 0===h?{}:h).overrideNative,M=void 0!==_&&_,P=Ct(o);return P&&(!$a.supportsTypeNatively(P)||M||c)?"maybe":""}};(je("avc1.4d400d,mp4a.40.2")&&Pt.getTech("Html5").registerSourceHandler(R3,0),Pt.VhsHandler=E8,Object.defineProperty(Pt,"HlsHandler",{get:function(){return Pt.log.warn("videojs.HlsHandler is deprecated. Use videojs.VhsHandler instead."),E8},configurable:!0}),Pt.VhsSourceHandler=R3,Object.defineProperty(Pt,"HlsSourceHandler",{get:function(){return Pt.log.warn("videojs.HlsSourceHandler is deprecated. Use videojs.VhsSourceHandler instead."),R3},configurable:!0}),Pt.Vhs=$a,Object.defineProperty(Pt,"Hls",{get:function(){return Pt.log.warn("videojs.Hls is deprecated. Use videojs.Vhs instead."),$a},configurable:!0}),Pt.use||(Pt.registerComponent("Hls",$a),Pt.registerComponent("Vhs",$a)),Pt.options.vhs=Pt.options.vhs||{},Pt.options.hls=Pt.options.hls||{},Pt.getPlugin&&Pt.getPlugin("reloadSourceOnError"))||(Pt.registerPlugin||Pt.plugin)("reloadSourceOnError",function(o){b8(this,o)});var x8=Pt},3573:function(It,we,D){"use strict";var L=D(1468),C=D(179),t=D.n(C); -/*! @name videojs-contrib-quality-levels @version 2.1.0 @license Apache-2.0 */function V(ce){if(void 0===ce)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return ce}var F=function ce(pe){var Ne=this;if(L.Z.browser.IS_IE8)for(var ge in Ne=t().createElement("custom"),ce.prototype)"constructor"!==ge&&(Ne[ge]=ce.prototype[ge]);return Ne.id=pe.id,Ne.label=Ne.id,Ne.width=pe.width,Ne.height=pe.height,Ne.bitrate=pe.bandwidth,Ne.enabled_=pe.enabled,Object.defineProperty(Ne,"enabled",{get:function(){return Ne.enabled_()},set:function(te){Ne.enabled_(te)}}),Ne},E=function(ce){function pe(){var ge,ye=V(V(ge=ce.call(this)||this));if(L.Z.browser.IS_IE8)for(var te in ye=t().createElement("custom"),pe.prototype)"constructor"!==te&&(ye[te]=pe.prototype[te]);return ye.levels_=[],ye.selectedIndex_=-1,Object.defineProperty(ye,"selectedIndex",{get:function(){return ye.selectedIndex_}}),Object.defineProperty(ye,"length",{get:function(){return ye.levels_.length}}),ye||V(ge)}!function(ce,pe){ce.prototype=Object.create(pe.prototype),ce.prototype.constructor=ce,ce.__proto__=pe}(pe,ce);var Ne=pe.prototype;return Ne.addQualityLevel=function(ye){var te=this.getQualityLevelById(ye.id);if(te)return te;var ve=this.levels_.length;return te=new F(ye),""+ve in this||Object.defineProperty(this,ve,{get:function(){return this.levels_[ve]}}),this.levels_.push(te),this.trigger({qualityLevel:te,type:"addqualitylevel"}),te},Ne.removeQualityLevel=function(ye){for(var te=null,ve=0,Ue=this.length;veve&&this.selectedIndex_--;break}return te&&this.trigger({qualityLevel:ye,type:"removequalitylevel"}),te},Ne.getQualityLevelById=function(ye){for(var te=0,ve=this.length;te=0)&&(ve.push(ut),ye.push(new E(this.player_,{label:ut,index:Ke,selected:Ze,sortVal:Xe})))}return te.length>1&&ye.push(new E(this.player_,{label:"Auto",index:te.length,selected:!1,sortVal:99999})),ye.sort(function(A,W){return A.options_.sortValW.options_.sortVal?-1:0}),ye},pe}(y),ue={},De=L.Z.registerPlugin||L.Z.plugin,Le=function(pe){var Ne=this;this.ready(function(){!function(pe,Ne){if(pe.addClass("vjs-http-source-selector"),console.log("videojs-http-source-selector initialized!"),console.log("player.techName_:"+pe.techName_),"Html5"!=pe.techName_)return!1;pe.on(["loadedmetadata"],function(ge){if(pe.qualityLevels(),L.Z.log("loadmetadata event"),"undefined"==pe.videojs_http_source_selector_initialized||1==pe.videojs_http_source_selector_initialized)console.log("player.videojs_http_source_selector_initialized == true");else{console.log("player.videojs_http_source_selector_initialized == false"),pe.videojs_http_source_selector_initialized=!0;var te=pe.controlBar,ve=te.getChild("fullscreenToggle").el();te.el().insertBefore(te.addChild("SourceMenuButton").el(),ve)}})}(Ne,L.Z.mergeOptions(ue,pe))}),L.Z.registerComponent("SourceMenuButton",be),L.Z.registerComponent("SourceMenuItem",E)};De("httpSourceSelector",Le),Le.VERSION="1.1.6",we.Z=Le},9405:function(It,we,D){var L=D(8341),C=It.exports={WebVTT:D(2965),VTTCue:D(4617),VTTRegion:D(4736)};L.vttjs=C,L.WebVTT=C.WebVTT;var t=C.VTTCue,R=C.VTTRegion,V=L.VTTCue,F=L.VTTRegion;C.shim=function(){L.VTTCue=t,L.VTTRegion=R},C.restore=function(){L.VTTCue=V,L.VTTRegion=F},L.VTTCue||C.shim()},2965:function(It,we,D){var L=D(179),C=Object.create||function(){function A(){}return function(W){if(1!==arguments.length)throw new Error("Object.create shim only accepts one parameter.");return A.prototype=W,new A}}();function t(A,W){this.name="ParsingError",this.code=A.code,this.message=W||A.message}function R(A){function W(Se,ze,Ye,st){return 3600*(0|Se)+60*(0|ze)+(0|Ye)+(0|st)/1e3}var U=A.match(/^(\d+):(\d{1,2})(:\d{1,2})?\.(\d{3})/);return U?U[3]?W(U[1],U[2],U[3].replace(":",""),U[4]):U[1]>59?W(U[1],U[2],0,U[4]):W(0,U[1],U[2],U[4]):null}function V(){this.values=C(null)}function F(A,W,U,Se){var ze=Se?A.split(Se):[A];for(var Ye in ze)if("string"==typeof ze[Ye]){var st=ze[Ye].split(U);if(2===st.length)W(st[0].trim(),st[1].trim())}}function E(A,W,U){var Se=A;function ze(){var at=R(A);if(null===at)throw new t(t.Errors.BadTimeStamp,"Malformed timestamp: "+Se);return A=A.replace(/^[^\sa-zA-Z-]+/,""),at}function st(){A=A.replace(/^\s+/,"")}if(st(),W.startTime=ze(),st(),"--\x3e"!==A.substr(0,3))throw new t(t.Errors.BadTimeStamp,"Malformed time stamp (time stamps must be separated by '--\x3e'): "+Se);A=A.substr(3),st(),W.endTime=ze(),st(),function(at,St){var ft=new V;F(at,function(ot,kt){switch(ot){case"region":for(var _t=U.length-1;_t>=0;_t--)if(U[_t].id===kt){ft.set(ot,U[_t].region);break}break;case"vertical":ft.alt(ot,kt,["rl","lr"]);break;case"line":var Xt=kt.split(","),Jt=Xt[0];ft.integer(ot,Jt),ft.percent(ot,Jt)&&ft.set("snapToLines",!1),ft.alt(ot,Jt,["auto"]),2===Xt.length&&ft.alt("lineAlign",Xt[1],["start","center","end"]);break;case"position":Xt=kt.split(","),ft.percent(ot,Xt[0]),2===Xt.length&&ft.alt("positionAlign",Xt[1],["start","center","end"]);break;case"size":ft.percent(ot,kt);break;case"align":ft.alt(ot,kt,["start","center","end","left","right"])}},/:/,/\s/),St.region=ft.get("region",null),St.vertical=ft.get("vertical","");try{St.line=ft.get("line","auto")}catch(ot){}St.lineAlign=ft.get("lineAlign","start"),St.snapToLines=ft.get("snapToLines",!0),St.size=ft.get("size",100);try{St.align=ft.get("align","center")}catch(ot){St.align=ft.get("align","middle")}try{St.position=ft.get("position","auto")}catch(ot){St.position=ft.get("position",{start:0,left:0,center:50,middle:50,end:100,right:100},St.align)}St.positionAlign=ft.get("positionAlign",{start:"start",left:"start",center:"center",middle:"center",end:"end",right:"end"},St.align)}(A,W)}t.prototype=C(Error.prototype),t.prototype.constructor=t,t.Errors={BadSignature:{code:0,message:"Malformed WebVTT signature."},BadTimeStamp:{code:1,message:"Malformed time stamp."}},V.prototype={set:function(W,U){!this.get(W)&&""!==U&&(this.values[W]=U)},get:function(W,U,Se){return Se?this.has(W)?this.values[W]:U[Se]:this.has(W)?this.values[W]:U},has:function(W){return W in this.values},alt:function(W,U,Se){for(var ze=0;ze=0&&U<=100))&&(this.set(W,U),!0)}};var y=L.createElement&&L.createElement("textarea"),be={c:"span",i:"i",b:"b",u:"u",ruby:"ruby",rt:"rt",v:"span",lang:"span"},ue={white:"rgba(255,255,255,1)",lime:"rgba(0,255,0,1)",cyan:"rgba(0,255,255,1)",red:"rgba(255,0,0,1)",yellow:"rgba(255,255,0,1)",magenta:"rgba(255,0,255,1)",blue:"rgba(0,0,255,1)",black:"rgba(0,0,0,1)"},De={v:"title",lang:"lang"},de={rt:"ruby"};function Le(A,W){function U(){if(!W)return null;var Ft,Wt=W.match(/^([^<]*)(<[^>]*>?)?/);return Ft=Wt[1]?Wt[1]:Wt[2],W=W.substr(Ft.length),Ft}function Se(Jt){return y.innerHTML=Jt,Jt=y.textContent,y.textContent="",Jt}function Ye(Jt,Wt){var Ft=be[Jt];if(!Ft)return null;var mn=A.document.createElement(Ft),Pn=De[Jt];return Pn&&Wt&&(mn[Pn]=Wt.trim()),mn}for(var St,st=A.document.createElement("div"),at=st,ft=[];null!==(St=U());)if("<"!==St[0])at.appendChild(A.document.createTextNode(Se(St)));else{if("/"===St[1]){ft.length&&ft[ft.length-1]===St.substr(2).replace(">","")&&(ft.pop(),at=at.parentNode);continue}var kt,ot=R(St.substr(1,St.length-2));if(ot){kt=A.document.createProcessingInstruction("timestamp",ot),at.appendChild(kt);continue}var _t=St.match(/^<([^.\s/0-9>]+)(\.[^\s\\>]+)?([^>\\]+)?(\\?)>?$/);if(!_t||!(kt=Ye(_t[1],_t[3]))||(Jt=at,de[(Wt=kt).localName]&&de[Wt.localName]!==Jt.localName))continue;if(_t[2]){var Xt=_t[2].split(".");Xt.forEach(function(Jt){var Wt=/^bg_/.test(Jt),Ft=Wt?Jt.slice(3):Jt;if(ue.hasOwnProperty(Ft)){var mn=Wt?"background-color":"color",Pn=ue[Ft];kt.style[mn]=Pn}}),kt.className=Xt.join(" ")}ft.push(_t[1]),at.appendChild(kt),at=kt}var Jt,Wt;return st}var ce=[[1470,1470],[1472,1472],[1475,1475],[1478,1478],[1488,1514],[1520,1524],[1544,1544],[1547,1547],[1549,1549],[1563,1563],[1566,1610],[1645,1647],[1649,1749],[1765,1766],[1774,1775],[1786,1805],[1807,1808],[1810,1839],[1869,1957],[1969,1969],[1984,2026],[2036,2037],[2042,2042],[2048,2069],[2074,2074],[2084,2084],[2088,2088],[2096,2110],[2112,2136],[2142,2142],[2208,2208],[2210,2220],[8207,8207],[64285,64285],[64287,64296],[64298,64310],[64312,64316],[64318,64318],[64320,64321],[64323,64324],[64326,64449],[64467,64829],[64848,64911],[64914,64967],[65008,65020],[65136,65140],[65142,65276],[67584,67589],[67592,67592],[67594,67637],[67639,67640],[67644,67644],[67647,67669],[67671,67679],[67840,67867],[67872,67897],[67903,67903],[67968,68023],[68030,68031],[68096,68096],[68112,68115],[68117,68119],[68121,68147],[68160,68167],[68176,68184],[68192,68223],[68352,68405],[68416,68437],[68440,68466],[68472,68479],[68608,68680],[126464,126467],[126469,126495],[126497,126498],[126500,126500],[126503,126503],[126505,126514],[126516,126519],[126521,126521],[126523,126523],[126530,126530],[126535,126535],[126537,126537],[126539,126539],[126541,126543],[126545,126546],[126548,126548],[126551,126551],[126553,126553],[126555,126555],[126557,126557],[126559,126559],[126561,126562],[126564,126564],[126567,126570],[126572,126578],[126580,126583],[126585,126588],[126590,126590],[126592,126601],[126603,126619],[126625,126627],[126629,126633],[126635,126651],[1114109,1114109]];function pe(A){for(var W=0;W=U[0]&&A<=U[1])return!0}return!1}function Ne(A){var W=[],U="";if(!A||!A.childNodes)return"ltr";function ze(at,St){for(var ft=St.childNodes.length-1;ft>=0;ft--)at.push(St.childNodes[ft])}function Ye(at){if(!at||!at.length)return null;var St=at.pop(),ft=St.textContent||St.innerText;if(ft){var ot=ft.match(/^.*(\n|\r)/);return ot?(at.length=0,ot[0]):ft}return"ruby"===St.tagName?Ye(at):St.childNodes?(ze(at,St),Ye(at)):void 0}for(ze(W,A);U=Ye(W);)for(var st=0;st=0&&A.line<=100))return A.line;if(!A.track||!A.track.textTrackList||!A.track.textTrackList.mediaElement)return-1;for(var W=A.track,U=W.textTrackList,Se=0,ze=0;ze_t&&(kt=kt<0?-1:1,kt*=Math.ceil(_t/ot)*ot),at<0&&(kt+=""===st.vertical?U.height:U.width,St=St.reverse()),Ye.move(Xt,kt)}else{var Jt=Ye.lineHeight/U.height*100;switch(st.lineAlign){case"center":at-=Jt/2;break;case"end":at-=Jt}switch(st.vertical){case"":W.applyStyles({top:W.formatStyle(at,"%")});break;case"rl":W.applyStyles({left:W.formatStyle(at,"%")});break;case"lr":W.applyStyles({right:W.formatStyle(at,"%")})}St=["+y","-x","+x","-y"],Ye=new ve(W)}var Wt=function(Ft,mn){for(var Pn,he=new ve(Ft),hn=1,on=0;onpt&&(Pn=new ve(Ft),hn=pt),Ft=new ve(he)}return Pn||he}(Ye,St);W.move(Wt.toCSSCompatValues(U))}function Ke(){}ye.prototype.applyStyles=function(A,W){for(var U in W=W||this.div,A)A.hasOwnProperty(U)&&(W.style[U]=A[U])},ye.prototype.formatStyle=function(A,W){return 0===A?0:A+W},te.prototype=C(ye.prototype),te.prototype.constructor=te,ve.prototype.move=function(A,W){switch(W=void 0!==W?W:this.lineHeight,A){case"+x":this.left+=W,this.right+=W;break;case"-x":this.left-=W,this.right-=W;break;case"+y":this.top+=W,this.bottom+=W;break;case"-y":this.top-=W,this.bottom-=W}},ve.prototype.overlaps=function(A){return this.leftA.left&&this.topA.top},ve.prototype.overlapsAny=function(A){for(var W=0;W=A.top&&this.bottom<=A.bottom&&this.left>=A.left&&this.right<=A.right},ve.prototype.overlapsOppositeAxis=function(A,W){switch(W){case"+x":return this.leftA.right;case"+y":return this.topA.bottom}},ve.prototype.intersectPercentage=function(A){return Math.max(0,Math.min(this.right,A.right)-Math.max(this.left,A.left))*Math.max(0,Math.min(this.bottom,A.bottom)-Math.max(this.top,A.top))/(this.height*this.width)},ve.prototype.toCSSCompatValues=function(A){return{top:this.top-A.top,bottom:A.bottom-this.bottom,left:this.left-A.left,right:A.right-this.right,height:this.height,width:this.width}},ve.getSimpleBoxPosition=function(A){var W=A.div?A.div.offsetHeight:A.tagName?A.offsetHeight:0,U=A.div?A.div.offsetWidth:A.tagName?A.offsetWidth:0,Se=A.div?A.div.offsetTop:A.tagName?A.offsetTop:0;return{left:(A=A.div?A.div.getBoundingClientRect():A.tagName?A.getBoundingClientRect():A).left,right:A.right,top:A.top||Se,height:A.height||W,bottom:A.bottom||Se+(A.height||W),width:A.width||U}},Ke.StringDecoder=function(){return{decode:function(W){if(!W)return"";if("string"!=typeof W)throw new Error("Error - expected string data.");return decodeURIComponent(encodeURIComponent(W))}}},Ke.convertCueToDOMTree=function(A,W){return A&&W?Le(A,W):null};Ke.processCues=function(A,W,U){if(!A||!W||!U)return null;for(;U.firstChild;)U.removeChild(U.firstChild);var Se=A.document.createElement("div");if(Se.style.position="absolute",Se.style.left="0",Se.style.right="0",Se.style.top="0",Se.style.bottom="0",Se.style.margin="1.5%",U.appendChild(Se),function(ot){for(var kt=0;kt100)throw new Error("Position must be between 0 and 100.");ye=Ze,this.hasBeenReset=!0}},positionAlign:{enumerable:!0,get:function(){return te},set:function(Ze){var ut=t(Ze);ut?(te=ut,this.hasBeenReset=!0):console.warn("positionAlign: an invalid or illegal string was specified.")}},size:{enumerable:!0,get:function(){return ve},set:function(Ze){if(Ze<0||Ze>100)throw new Error("Size must be between 0 and 100.");ve=Ze,this.hasBeenReset=!0}},align:{enumerable:!0,get:function(){return Ue},set:function(Ze){var ut=t(Ze);if(!ut)throw new SyntaxError("align: an invalid or illegal alignment string was specified.");Ue=ut,this.hasBeenReset=!0}}}),this.displayState=void 0}R.prototype.getCueAsHTML=function(){return WebVTT.convertCueToDOMTree(window,this.text)},It.exports=R},4736:function(It){var we={"":!0,up:!0};function L(t){return"number"==typeof t&&t>=0&&t<=100}It.exports=function(){var t=100,R=3,V=0,F=100,E=0,y=100,be="";Object.defineProperties(this,{width:{enumerable:!0,get:function(){return t},set:function(De){if(!L(De))throw new Error("Width must be between 0 and 100.");t=De}},lines:{enumerable:!0,get:function(){return R},set:function(De){if("number"!=typeof De)throw new TypeError("Lines must be set to a number.");R=De}},regionAnchorY:{enumerable:!0,get:function(){return F},set:function(De){if(!L(De))throw new Error("RegionAnchorX must be between 0 and 100.");F=De}},regionAnchorX:{enumerable:!0,get:function(){return V},set:function(De){if(!L(De))throw new Error("RegionAnchorY must be between 0 and 100.");V=De}},viewportAnchorY:{enumerable:!0,get:function(){return y},set:function(De){if(!L(De))throw new Error("ViewportAnchorY must be between 0 and 100.");y=De}},viewportAnchorX:{enumerable:!0,get:function(){return E},set:function(De){if(!L(De))throw new Error("ViewportAnchorX must be between 0 and 100.");E=De}},scroll:{enumerable:!0,get:function(){return be},set:function(De){var de=function(t){return"string"==typeof t&&!!we[t.toLowerCase()]&&t.toLowerCase()}(De);!1===de?console.warn("Scroll: an invalid or illegal string was specified."):be=de}}})}},759:function(It,we,D){"use strict";D.d(we,{T_:function(){return Bo},uY:function(){return uo},N3:function(){return gi},ye:function(){return Do},bf:function(){return Es},Z2:function(){return ns},vM:function(){return Ws}});var L=D(47),C=D(7444),t=D(3587),R=D(4364),V=D(1707);function F(H){if(!H)return[];if(Array.isArray(H))return H;if(void 0!==H.nodeType)return[H];if("string"==typeof H&&(H=document.querySelectorAll(H)),void 0!==H.length)return[].slice.call(H,0);throw new TypeError("unexpected input "+String(H))}function E(H){var j=H.context,re=H.label,Ie=void 0===re?"context-to-element":re,Be=H.resolveDocument,ct=H.defaultToDocument,sn=F(j)[0];if(Be&&sn&&sn.nodeType===Node.DOCUMENT_NODE&&(sn=sn.documentElement),!sn&&ct)return document.documentElement;if(!sn)throw new TypeError(Ie+" requires valid options.context");if(sn.nodeType!==Node.ELEMENT_NODE&&sn.nodeType!==Node.DOCUMENT_FRAGMENT_NODE)throw new TypeError(Ie+" requires options.context to be an Element");return sn}function y(){for(var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=[],Ie=E({label:"get/parents",context:j});Ie;)re.push(Ie),(Ie=Ie.parentNode)&&Ie.nodeType!==Node.ELEMENT_NODE&&(Ie=null);return re}var be=["matches","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector"],ue=null;function de(H,j){return ue||function(H){be.some(function(j){return!!H[j]&&(ue=j,!0)})}(H),H[ue](j)}var Le=D(950),ce=D.n(Le),pe=JSON.parse(JSON.stringify(ce())),Ne=pe.os.family||"",ge="Android"===Ne,ye="Windows"===Ne.slice(0,7),te="OS X"===Ne,ve="iOS"===Ne,Ue="Blink"===pe.layout,Ke="Gecko"===pe.layout,Ze="Trident"===pe.layout,ut="EdgeHTML"===pe.layout,Xe="WebKit"===pe.layout,A=parseFloat(pe.version),W=Math.floor(A);pe.majorVersion=W,pe.is={ANDROID:ge,WINDOWS:ye,OSX:te,IOS:ve,BLINK:Ue,GECKO:Ke,TRIDENT:Ze,EDGE:ut,WEBKIT:Xe,IE9:Ze&&9===W,IE10:Ze&&10===W,IE11:Ze&&11===W};var U=pe;function st(H){var j=function(){var H={activeElement:document.activeElement,windowScrollTop:window.scrollTop,windowScrollLeft:window.scrollLeft,bodyScrollTop:document.body.scrollTop,bodyScrollLeft:document.body.scrollLeft},j=document.createElement("iframe");j.setAttribute("style","position:absolute; position:fixed; top:0; left:-2px; width:1px; height:1px; overflow:hidden;"),j.setAttribute("aria-live","off"),j.setAttribute("aria-busy","true"),j.setAttribute("aria-hidden","true"),document.body.appendChild(j);var re=j.contentWindow,Ie=re.document;Ie.open(),Ie.close();var Be=Ie.createElement("div");return Ie.body.appendChild(Be),H.iframe=j,H.wrapper=Be,H.window=re,H.document=Ie,H}(),re={};return Object.keys(H).map(function(Ie){re[Ie]=function(H,j){H.wrapper.innerHTML="";var re="string"==typeof j.element?H.document.createElement(j.element):j.element(H.wrapper,H.document),Ie=j.mutate&&j.mutate(re,H.wrapper,H.document);return!Ie&&!1!==Ie&&(Ie=re),!re.parentNode&&H.wrapper.appendChild(re),Ie&&Ie.focus&&Ie.focus(),j.validate?j.validate(re,Ie,H.document):H.document.activeElement===Ie}(j,H[Ie])}),function(H){H.activeElement===document.body?(document.activeElement&&document.activeElement.blur&&document.activeElement.blur(),U.is.IE10&&document.body.focus()):H.activeElement&&H.activeElement.focus&&H.activeElement.focus(),document.body.removeChild(H.iframe),window.scrollTop=H.windowScrollTop,window.scrollLeft=H.windowScrollLeft,document.body.scrollTop=H.bodyScrollTop,document.body.scrollLeft=H.bodyScrollLeft}(j),re}var kt="undefined"!=typeof window&&window.navigator.userAgent||"",_t="ally-supports-cache",Xt=function(H){var j=void 0;try{j=(j=window.localStorage&&window.localStorage.getItem(H))?JSON.parse(j):{}}catch(re){j={}}return j}(_t);(Xt.userAgent!==kt||"1.4.1"!==Xt.version)&&(Xt={}),Xt.userAgent=kt,Xt.version="1.4.1";var Jt_get=function(){return Xt},Jt_set=function(j){Object.keys(j).forEach(function(re){Xt[re]=j[re]}),Xt.time=(new Date).toISOString(),function(H,j){if(document.hasFocus())try{window.localStorage&&window.localStorage.setItem(H,JSON.stringify(j))}catch(re){}else try{window.localStorage&&window.localStorage.removeItem(H)}catch(re){}}(_t,Xt)};function Wt(){var H=void 0;try{document.querySelector("html >>> :first-child"),H=">>>"}catch(j){try{document.querySelector("html /deep/ :first-child"),H="/deep/"}catch(re){H=""}}return H}var Ft="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",mn={element:"div",mutate:function(j){return j.innerHTML='',j.querySelector("area")}},Pn={element:"div",mutate:function(j){return j.innerHTML='',!1},validate:function(j,re,Ie){if(U.is.GECKO)return!0;var Be=j.querySelector("area");return Be.focus(),Ie.activeElement===Be}},he={element:"div",mutate:function(j){return j.innerHTML='',j.querySelector("area")},validate:function(j,re,Ie){return!!U.is.GECKO||Ie.activeElement===re}},on={name:"can-focus-audio-without-controls",element:"audio",mutate:function(j){try{j.setAttribute("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}catch(re){}}},xt={element:"div",mutate:function(j){return j.innerHTML='',j.querySelector("area")}},pn={element:"a",mutate:function(j){return j.href="#void",j.innerHTML='',j.querySelector("img")}},Ct={element:"div",mutate:function(j){return j.innerHTML='',j.querySelector("img")}},_n=!U.is.WEBKIT;var ln="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBpZD0ic3ZnIj48dGV4dCB4PSIxMCIgeT0iMjAiIGlkPSJzdmctbGluay10ZXh0Ij50ZXh0PC90ZXh0Pjwvc3ZnPg==",vn={element:"object",mutate:function(j){j.setAttribute("type","image/svg+xml"),j.setAttribute("data",ln),j.setAttribute("width","200"),j.setAttribute("height","50"),j.style.visibility="hidden"}},Dt={name:"can-focus-object-svg",element:"object",mutate:function(j){j.setAttribute("type","image/svg+xml"),j.setAttribute("data",ln),j.setAttribute("width","200"),j.setAttribute("height","50")},validate:function(j,re,Ie){return!!U.is.GECKO||Ie.activeElement===j}},mt=!U.is.IE9;var me={element:"div",mutate:function(j){return j.innerHTML='',j.querySelector("img")},validate:function(j,re,Ie){var Be=j.querySelector("area");return Ie.activeElement===Be}};function Gt(H){if(!(H.ownerSVGElement||"svg"===H.nodeName.toLowerCase()))return!1;var re=function(){var H=document.createElement("div");return H.innerHTML='\n \n ',H.firstChild.firstChild}();H.appendChild(re);var Ie=re.querySelector("input");return Ie.focus(),Ie.disabled=!0,H.removeChild(re),!0}function un(H){return''+H+""}function Xn(H,j,re){return function(H){if(!H.focus)try{HTMLElement.prototype.focus.call(H)}catch(j){Gt(H)}}(j),re.activeElement===j}var Rn={element:"div",mutate:function(j){return j.innerHTML=un('a'),j.querySelector("text")},validate:Xn},ir={element:"div",mutate:function(j){return j.innerHTML=un('a'),j.querySelector("text")},validate:Xn},Fn={element:"div",mutate:function(j){return j.innerHTML=un('a'),j.querySelector("text")},validate:Xn},di={element:"div",mutate:function(j){return j.innerHTML=un(['link',''].join("")),j.querySelector("use")},validate:Xn},Mr={element:"div",mutate:function(j){return j.innerHTML=un(''),j.querySelector("foreignObject")||j.getElementsByTagName("foreignObject")[0]},validate:Xn},Gi=Boolean(U.is.GECKO&&"undefined"!=typeof SVGElement&&SVGElement.prototype.focus);var Dr={element:"div",mutate:function(j){return j.innerHTML=un(""),j.firstChild},validate:Xn},oa={element:"video",mutate:function(j){try{j.setAttribute("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}catch(re){}}},wr=U.is.GECKO||U.is.TRIDENT||U.is.EDGE;var Pe={cssShadowPiercingDeepCombinator:Wt,focusInZeroDimensionObject:function(){return _n},focusObjectSwf:function(){return mt},focusSvgInIframe:function(){return Gi},tabsequenceAreaAtImgPosition:function(){return wr}},Qe={focusAreaImgTabindex:mn,focusAreaTabindex:Pn,focusAreaWithoutHref:he,focusAudioWithoutControls:on,focusBrokenImageMap:xt,focusChildrenOfFocusableFlexbox:{element:"div",mutate:function(j){return j.setAttribute("tabindex","-1"),j.setAttribute("style","display: -webkit-flex; display: -ms-flexbox; display: flex;"),j.innerHTML='hello',j.querySelector("span")}},focusFieldsetDisabled:{element:"fieldset",mutate:function(j){j.setAttribute("tabindex",0),j.setAttribute("disabled","disabled")}},focusFieldset:{element:"fieldset",mutate:function(j){j.innerHTML="legend

content

"}},focusFlexboxContainer:{element:"span",mutate:function(j){j.setAttribute("style","display: -webkit-flex; display: -ms-flexbox; display: flex;"),j.innerHTML='hello'}},focusFormDisabled:{element:"form",mutate:function(j){j.setAttribute("tabindex",0),j.setAttribute("disabled","disabled")}},focusImgIsmap:pn,focusImgUsemapTabindex:Ct,focusInHiddenIframe:{element:function(j,re){var Ie=re.createElement("iframe");j.appendChild(Ie);var Be=Ie.contentWindow.document;return Be.open(),Be.close(),Ie},mutate:function(j){j.style.visibility="hidden";var re=j.contentWindow.document,Ie=re.createElement("input");return re.body.appendChild(Ie),Ie},validate:function(j){var re=j.contentWindow.document,Ie=re.querySelector("input");return re.activeElement===Ie}},focusInvalidTabindex:{element:"div",mutate:function(j){j.setAttribute("tabindex","invalid-value")}},focusLabelTabindex:{element:"label",mutate:function(j){j.setAttribute("tabindex","-1")},validate:function(j,re,Ie){j.offsetHeight;return j.focus(),Ie.activeElement===j}},focusObjectSvg:Dt,focusObjectSvgHidden:vn,focusRedirectImgUsemap:me,focusRedirectLegend:{element:"fieldset",mutate:function(j){return j.innerHTML='legend',!1},validate:function(j,re,Ie){var Be=j.querySelector('input[tabindex="-1"]'),ct=j.querySelector('input[tabindex="0"]');return j.focus(),j.querySelector("legend").focus(),(Ie.activeElement===Be?"focusable":Ie.activeElement===ct&&"tabbable")||""}},focusScrollBody:{element:"div",mutate:function(j){return j.setAttribute("style","width: 100px; height: 50px; overflow: auto;"),j.innerHTML='
scrollable content
',j.querySelector("div")}},focusScrollContainerWithoutOverflow:{element:"div",mutate:function(j){j.setAttribute("style","width: 100px; height: 50px;"),j.innerHTML='
scrollable content
'}},focusScrollContainer:{element:"div",mutate:function(j){j.setAttribute("style","width: 100px; height: 50px; overflow: auto;"),j.innerHTML='
scrollable content
'}},focusSummary:{element:"details",mutate:function(j){return j.innerHTML="foo

content

",j.firstElementChild}},focusSvgFocusableAttribute:Rn,focusSvgTabindexAttribute:ir,focusSvgNegativeTabindexAttribute:Fn,focusSvgUseTabindex:di,focusSvgForeignobjectTabindex:Mr,focusSvg:Dr,focusTabindexTrailingCharacters:{element:"div",mutate:function(j){j.setAttribute("tabindex","3x")}},focusTable:{element:"table",mutate:function(j,re,Ie){var Be=Ie.createDocumentFragment();Be.innerHTML="cell",j.appendChild(Be)}},focusVideoWithoutControls:oa};var Qt=null;function yn(){return Qt||((Qt=Jt_get()).time||(Jt_set((H=st(Qe),Object.keys(Pe).forEach(function(j){H[j]=Pe[j]()}),H)),Qt=Jt_get()),Qt);var H}var sr=void 0,tr=/^\s*(-|\+)?[0-9]+\s*$/,nr=/^\s*(-|\+)?[0-9]+.*$/;function Vr(H){sr||(sr=yn());var j=sr.focusTabindexTrailingCharacters?nr:tr,re=E({label:"is/valid-tabindex",resolveDocument:!0,context:H}),Ie=re.hasAttribute("tabindex"),Be=re.hasAttribute("tabIndex");if(!Ie&&!Be)return!1;if((re.ownerSVGElement||"svg"===re.nodeName.toLowerCase())&&!sr.focusSvgTabindexAttribute)return!1;if(sr.focusInvalidTabindex)return!0;var sn=re.getAttribute(Ie?"tabindex":"tabIndex");return"-32768"!==sn&&Boolean(sn&&j.test(sn))}function Kn(H){if(!Vr(H))return null;var re=H.hasAttribute("tabindex")?"tabindex":"tabIndex",Ie=parseInt(H.getAttribute(re),10);return isNaN(Ie)?-1:Ie}function _i(H){var j=H.webkitUserModify||"";return Boolean(j&&-1!==j.indexOf("write"))}function $n(H){return[H.getPropertyValue("overflow"),H.getPropertyValue("overflow-x"),H.getPropertyValue("overflow-y")].some(function(j){return"auto"===j||"scroll"===j})}function Xr(H){return H.display.indexOf("flex")>-1}function yi(H,j,re,Ie){return!("div"!==j&&"span"!==j||re&&"div"!==re&&"span"!==re&&!$n(Ie))&&(H.offsetHeight0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.except,Ie=void 0===re?{flexbox:!1,scrollable:!1,shadow:!1}:re;Yn||(Yn=yn());var Be=E({label:"is/focus-relevant",resolveDocument:!0,context:j});if(!Ie.shadow&&Be.shadowRoot)return!0;var ct=Be.nodeName.toLowerCase();if("input"===ct&&"hidden"===Be.type)return!1;if("input"===ct||"select"===ct||"button"===ct||"textarea"===ct||"legend"===ct&&Yn.focusRedirectLegend||"label"===ct||"area"===ct||"a"===ct&&Be.hasAttribute("href"))return!0;if("object"===ct&&Be.hasAttribute("usemap"))return!1;if("object"===ct){var sn=Be.getAttribute("type");if(!Yn.focusObjectSvg&&"image/svg+xml"===sn)return!1;if(!Yn.focusObjectSwf&&"application/x-shockwave-flash"===sn)return!1}if("iframe"===ct||"object"===ct||"embed"===ct||"keygen"===ct||Be.hasAttribute("contenteditable")||"audio"===ct&&(Yn.focusAudioWithoutControls||Be.hasAttribute("controls"))||"video"===ct&&(Yn.focusVideoWithoutControls||Be.hasAttribute("controls"))||Yn.focusSummary&&"summary"===ct)return!0;var zn=Vr(Be);if("img"===ct&&Be.hasAttribute("usemap"))return zn&&Yn.focusImgUsemapTabindex||Yn.focusRedirectImgUsemap;if(Yn.focusTable&&("table"===ct||"td"===ct)||Yn.focusFieldset&&"fieldset"===ct)return!0;var ur="svg"===ct,vr=Be.ownerSVGElement,Wr=Be.getAttribute("focusable"),na=Kn(Be);if("use"===ct&&null!==na&&!Yn.focusSvgUseTabindex)return!1;if("foreignobject"===ct)return null!==na&&Yn.focusSvgForeignobjectTabindex;if(de(Be,"svg a")&&Be.hasAttribute("xlink:href"))return!0;if((ur||vr)&&Be.focus&&!Yn.focusSvgNegativeTabindexAttribute&&na<0)return!1;if(ur)return zn||Yn.focusSvg||Yn.focusSvgInIframe||Boolean(Yn.focusSvgFocusableAttribute&&Wr&&"true"===Wr);if(vr){if(Yn.focusSvgTabindexAttribute&&zn)return!0;if(Yn.focusSvgFocusableAttribute)return"true"===Wr}if(zn)return!0;var ga=window.getComputedStyle(Be,null);if(_i(ga))return!0;if(Yn.focusImgIsmap&&"img"===ct&&Be.hasAttribute("ismap")){var Yi=y({context:Be}).some(function(I1){return"a"===I1.nodeName.toLowerCase()&&I1.hasAttribute("href")});if(Yi)return!0}if(!Ie.scrollable&&Yn.focusScrollContainer)if(Yn.focusScrollContainerWithoutOverflow){if(yi(Be,ct))return!0}else if($n(ga))return!0;if(!Ie.flexbox&&Yn.focusFlexboxContainer&&Xr(ga))return!0;var wi=Be.parentElement;if(!Ie.scrollable&&wi){var Ys=wi.nodeName.toLowerCase(),Ii=window.getComputedStyle(wi,null);if(Yn.focusScrollBody&&yi(wi,ct,Ys,Ii)||Yn.focusChildrenOfFocusableFlexbox&&Xr(Ii))return!0}return!1}qr.except=function(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=function(Ie){return qr({context:Ie,except:H})};return j.rules=qr,j};var Fr=qr.except({});function Ci(H,j){if(H.findIndex)return H.findIndex(j);var re=H.length;if(0===re)return-1;for(var Ie=0;Ie0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.except,Ie=void 0===re?{notRendered:!1,cssDisplay:!1,cssVisibility:!1,detailsElement:!1,browsingContext:!1}:re,Be=E({label:"is/visible",resolveDocument:!0,context:j}),ct=Be.nodeName.toLowerCase();if(!Ie.notRendered&&bt.test(ct))return!0;var sn=y({context:Be}),zn="audio"===ct&&!Be.hasAttribute("controls");if(!Ie.cssDisplay&&En(zn?sn.slice(1):sn)||!Ie.cssVisibility&&kn(sn)||!Ie.detailsElement&&Qn(sn))return!1;if(!Ie.browsingContext){var ur=lt(Be),vr=pr.except(Ie);if(ur&&!vr(ur))return!1}return!0}pr.except=function(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=function(Ie){return pr({context:Ie,except:H})};return j.rules=pr,j};var Cr=pr.except({}),si=D(5390),Sn=D.n(si);function qn(H,j){return j.querySelector('map[name="'+Sn()(H)+'"]')||null}function Sr(H){var j=H.parentElement;return j.name&&"map"===j.nodeName.toLowerCase()&&$r(H).querySelector('img[usemap="#'+Sn()(j.name)+'"]')||null}var fi=void 0;var ei=void 0,Br=void 0,ti={input:!0,select:!0,textarea:!0,button:!0,fieldset:!0,form:!0};function Pi(H){ei||((ei=yn()).focusFieldsetDisabled&&delete ti.fieldset,ei.focusFormDisabled&&delete ti.form,Br=new RegExp("^("+Object.keys(ti).join("|")+")$"));var re=E({label:"is/native-disabled-supported",context:H}).nodeName.toLowerCase();return Boolean(Br.test(re))}var Vn=void 0;function Ui(H){return"fieldset"===H.nodeName.toLowerCase()&&H.disabled}function ni(H){return"form"===H.nodeName.toLowerCase()&&H.disabled}function No(H){Vn||(Vn=yn());var j=E({label:"is/disabled",context:H});if(j.hasAttribute("data-ally-disabled"))return!0;if(!Pi(j))return!1;if(j.disabled)return!0;var re=y({context:j});return!!(re.some(Ui)||!Vn.focusFormDisabled&&re.some(ni))}function In(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.except,Ie=void 0===re?{onlyFocusableBrowsingContext:!1,visible:!1}:re,Be=E({label:"is/only-tabbable",resolveDocument:!0,context:j});if(!Ie.visible&&!Cr(Be))return!1;if(!Ie.onlyFocusableBrowsingContext&&(U.is.GECKO||U.is.TRIDENT||U.is.EDGE)){var ct=lt(Be);if(ct&&Kn(ct)<0)return!1}var sn=Be.nodeName.toLowerCase(),zn=Kn(Be);return"label"===sn&&U.is.GECKO?null!==zn&&zn>=0:!!(U.is.GECKO&&Be.ownerSVGElement&&!Be.focus&&"a"===sn&&Be.hasAttribute("xlink:href")&&U.is.GECKO)}In.except=function(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=function(Ie){return In({context:Ie,except:H})};return j.rules=In,j};var Ca=In.except({}),rr=void 0;function ea(H){var j=H.nodeName.toLowerCase();if("embed"===j||"keygen"===j)return!0;var re=Kn(H);if(H.shadowRoot&&null===re)return!0;if("label"===j)return!rr.focusLabelTabindex||null===re;if("legend"===j)return null===re;if(rr.focusSvgFocusableAttribute&&(H.ownerSVGElement||"svg"===j)){var Ie=H.getAttribute("focusable");return Ie&&"false"===Ie}return"img"===j&&H.hasAttribute("usemap")?null===re||!rr.focusImgUsemapTabindex:"area"===j&&!function(H){fi||(fi=yn());var j=E({label:"is/valid-area",context:H});if("area"!==j.nodeName.toLowerCase())return!1;var Ie=j.hasAttribute("tabindex");if(!fi.focusAreaTabindex&&Ie)return!1;var Be=Sr(j);return!(!Be||!Cr(Be)||!fi.focusBrokenImageMap&&(!Be.complete||!Be.naturalHeight||Be.offsetWidth<=0||Be.offsetHeight<=0))&&(fi.focusAreaWithoutHref||j.href?!y({context:Be}).slice(1).some(function(sn){var zn=sn.nodeName.toLowerCase();return"button"===zn||"a"===zn}):fi.focusAreaTabindex&&Ie||fi.focusAreaImgTabindex&&Be.hasAttribute("tabindex"))}(H)}function hr(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.except,Ie=void 0===re?{disabled:!1,visible:!1,onlyTabbable:!1}:re;rr||(rr=yn());var Be=Ca.rules.except({onlyFocusableBrowsingContext:!0,visible:Ie.visible}),ct=E({label:"is/focusable",resolveDocument:!0,context:j}),sn=Fr.rules({context:ct,except:Ie});if(!sn||ea(ct)||!Ie.disabled&&No(ct)||!Ie.onlyTabbable&&Be(ct))return!1;if(!Ie.visible){var zn={context:ct,except:{}};if(rr.focusInHiddenIframe&&(zn.except.browsingContext=!0),rr.focusObjectSvgHidden){var ur=ct.nodeName.toLowerCase();"object"===ur&&(zn.except.cssVisibility=!0)}if(!Cr.rules(zn))return!1}var vr=lt(ct);if(vr){var Wr=vr.nodeName.toLowerCase();if(!("object"!==Wr||rr.focusInZeroDimensionObject||vr.offsetWidth&&vr.offsetHeight))return!1}var na=ct.nodeName.toLowerCase();return!("svg"===na&&rr.focusSvgInIframe&&!vr&&null===ct.getAttribute("tabindex"))}hr.except=function(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=function(Ie){return hr({context:Ie,except:H})};return j.rules=hr,j};var pi=hr.except({});function pa(H){var j=function(Ie){return Ie.shadowRoot||H(Ie)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP};return j.acceptNode=j,j}var qa=pa(Fr);function ta(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.includeContext,Ie=H.includeOnlyTabbable,Be=H.strategy;j||(j=document.documentElement);for(var ct=pi.rules.except({onlyTabbable:Ie}),sn=$r(j),zn=sn.createTreeWalker(j,NodeFilter.SHOW_ELEMENT,"all"===Be?qa:pa(ct),!1),ur=[];zn.nextNode();)zn.currentNode.shadowRoot?(ct(zn.currentNode)&&ur.push(zn.currentNode),ur=ur.concat(ta({context:zn.currentNode.shadowRoot,includeOnlyTabbable:Ie,strategy:Be}))):ur.push(zn.currentNode);return re&&("all"===Be?Fr(j)&&ur.unshift(j):ct(j)&&ur.unshift(j)),ur}var Fi=void 0,Bi=void 0;function Bn(){return Fi||(Fi=yn()),"string"==typeof Bi||(Bi=Nt(Bi=(Fi.focusTable?"table, td,":"")+(Fi.focusFieldset?"fieldset,":"")+"svg a,a[href],area[href],input, select, textarea, button,iframe, object, embed,keygen,"+(Fi.focusAudioWithoutControls?"audio,":"audio[controls],")+(Fi.focusVideoWithoutControls?"video,":"video[controls],")+(Fi.focusSummary?"summary,":"")+"[tabindex],[contenteditable]")),Bi}function ja(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.includeContext,Ie=H.includeOnlyTabbable,Be=Bn(),ct=j.querySelectorAll(Be),sn=pi.rules.except({onlyTabbable:Ie}),zn=[].filter.call(ct,sn);return re&&sn(j)&&zn.unshift(j),zn}function ki(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.includeContext,Ie=H.includeOnlyTabbable,Be=H.strategy,ct=void 0===Be?"quick":Be,sn=E({label:"query/focusable",resolveDocument:!0,defaultToDocument:!0,context:j}),zn={context:sn,includeContext:re,includeOnlyTabbable:Ie,strategy:ct};if("quick"===ct)return ja(zn);if("strict"===ct||"all"===ct)return ta(zn);throw new TypeError('query/focusable requires option.strategy to be one of ["quick", "strict", "all"]')}function Hn(H){var j=H.element,re=H.attribute,Ie="data-cached-"+re;if(null===j.getAttribute(Ie)){var ct=j.getAttribute(re);if(null===ct)return;j.setAttribute(Ie,ct||""),j.removeAttribute(re)}else{var sn=j.getAttribute(Ie);j.removeAttribute(Ie),j.setAttribute(re,sn)}}function qi(H){var j=H.element,re=H.attribute,Ie=H.temporaryValue,Be=H.saveValue,ct="data-cached-"+re;if(void 0!==Ie){var sn=Be||j.getAttribute(re);j.setAttribute(ct,sn||""),j.setAttribute(re,Ie)}else{var zn=j.getAttribute(ct);j.removeAttribute(ct),""===zn?j.removeAttribute(re):j.setAttribute(re,zn)}}var ri=function(){},ii="undefined"!=typeof console?console:{log:ri,debug:ri,info:ri,warn:ri,error:ri},Cs=void 0;function la(){ii.warn("trying to focus inert element",this)}function Ma(H,j){(function(H,j){qi({element:H,attribute:"aria-disabled",temporaryValue:j?"true":void 0})})(H,j),function(H,j){if(j){var re=Kn(H);qi({element:H,attribute:"tabindex",temporaryValue:"-1",saveValue:null!==re?re:""})}else qi({element:H,attribute:"tabindex"})}(H,j),function(H,j){j?H.focus=la:delete H.focus}(H,j),function(H,j){if(j){var re=H.style.pointerEvents||"";H.setAttribute("data-inert-pointer-events",re),H.style.pointerEvents="none"}else{var Ie=H.getAttribute("data-inert-pointer-events");H.removeAttribute("data-inert-pointer-events"),H.style.pointerEvents=Ie}}(H,j);var re=H.nodeName.toLowerCase();("video"===re||"audio"===re)&&function(H,j){Hn({element:H,attribute:"controls",remove:j})}(H,j),("svg"===re||H.ownerSVGElement)&&(Cs.focusSvgFocusableAttribute?function(H,j){qi({element:H,attribute:"focusable",temporaryValue:j?"false":void 0})}(H,j):!Cs.focusSvgTabindexAttribute&&"a"===re&&function(H,j){Hn({element:H,attribute:"xlink:href",remove:j})}(H,j)),j?H.setAttribute("data-ally-disabled","true"):H.removeAttribute("data-ally-disabled")}function yo(H,j){Cs||(Cs=yn());var re=E({label:"element/disabled",context:H});j=Boolean(j);var Ie=re.hasAttribute("data-ally-disabled"),Be=1===arguments.length;return Pi(re)?Be?re.disabled:(re.disabled=j,re):Be?Ie:(Ie===j||Ma(re,j),re)}var Da=function(j){return j.shadowRoot?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP};function Ms(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=E({label:"query/shadow-hosts",resolveDocument:!0,defaultToDocument:!0,context:j}),Ie=$r(j),Be=Ie.createTreeWalker(re,NodeFilter.SHOW_ELEMENT,Da,!1),ct=[];for(re.shadowRoot&&(ct.push(re),ct=ct.concat(Ms({context:re.shadowRoot})));Be.nextNode();)ct.push(Be.currentNode),ct=ct.concat(Ms({context:Be.currentNode.shadowRoot}));return ct}Da.acceptNode=Da;var el="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(H){return typeof H}:function(H){return H&&"function"==typeof Symbol&&H.constructor===Symbol&&H!==Symbol.prototype?"symbol":typeof H},ws=function(){function H(j,re){for(var Ie=0;Ie0&&void 0!==arguments[0]?arguments[0]:{},Ie=re.context,Be=re.callback,ct=re.config;Pr(this,H),this.config=ct,this.disengage=this.disengage.bind(this),this.clientObserver=new MutationObserver(Be),this.hostObserver=new MutationObserver(function(sn){return sn.forEach(j.handleHostMutation,j)}),this.observeContext(Ie),this.observeShadowHosts(Ie)}return ws(H,[{key:"disengage",value:function(){this.clientObserver&&this.clientObserver.disconnect(),this.clientObserver=null,this.hostObserver&&this.hostObserver.disconnect(),this.hostObserver=null}},{key:"observeShadowHosts",value:function(re){var Ie=this;Ms({context:re}).forEach(function(ct){return Ie.observeContext(ct.shadowRoot)})}},{key:"observeContext",value:function(re){this.clientObserver.observe(re,this.config),this.hostObserver.observe(re,Va)}},{key:"handleHostMutation",value:function(re){"childList"===re.type&&F(re.addedNodes).filter(function(Be){return Be.nodeType===Node.ELEMENT_NODE}).forEach(this.observeShadowHosts,this)}}]),H}();function J(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.callback,Ie=H.config;if("function"!=typeof re)throw new TypeError("observe/shadow-mutations requires options.callback to be a function");if("object"!==(void 0===Ie?"undefined":el(Ie)))throw new TypeError("observe/shadow-mutations requires options.config to be an object");if(!window.MutationObserver)return{disengage:function(){}};var Be=E({label:"observe/shadow-mutations",resolveDocument:!0,defaultToDocument:!0,context:j}),ct=new z({context:Be,callback:re,config:Ie});return{disengage:ct.disengage}}function le(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.parent,re=H.element,Ie=H.includeSelf;if(j)return function(ct){return Boolean(Ie&&ct===j||j.compareDocumentPosition(ct)&Node.DOCUMENT_POSITION_CONTAINED_BY)};if(re)return function(ct){return Boolean(Ie&&re===ct||ct.compareDocumentPosition(re)&Node.DOCUMENT_POSITION_CONTAINED_BY)};throw new TypeError("util/compare-position#getParentComparator required either options.parent or options.element")}var Re=function(){function H(j,re){for(var Ie=0;Ie0&&void 0!==arguments[0]?arguments[0]:{},Ie=re.context,Be=re.filter;O(this,H),this._context=F(Ie||document.documentElement)[0],this._filter=F(Be),this._inertElementCache=[],this.disengage=this.disengage.bind(this),this.handleMutation=this.handleMutation.bind(this),this.renderInert=this.renderInert.bind(this),this.filterElements=this.filterElements.bind(this),this.filterParentElements=this.filterParentElements.bind(this);var ct=ki({context:this._context,includeContext:!0,strategy:"all"});this.renderInert(ct),this.shadowObserver=J({context:this._context,config:ie,callback:function(zn){return zn.forEach(j.handleMutation)}})}return Re(H,[{key:"disengage",value:function(){!this._context||(N(this._context),this._inertElementCache.forEach(function(re){return N(re)}),this._inertElementCache=null,this._filter=null,this._context=null,this.shadowObserver&&this.shadowObserver.disengage(),this.shadowObserver=null)}},{key:"listQueryFocusable",value:function(re){return re.map(function(Ie){return ki({context:Ie,includeContext:!0,strategy:"all"})}).reduce(function(Ie,Be){return Ie.concat(Be)},[])}},{key:"renderInert",value:function(re){var Ie=this;re.filter(this.filterElements).filter(this.filterParentElements).filter(function(ct){return!yo(ct)}).forEach(function(sn){Ie._inertElementCache.push(sn),function(H){yo(H,!0)}(sn)})}},{key:"filterElements",value:function(re){var Ie=le({element:re,includeSelf:!0});return!this._filter.some(Ie)}},{key:"filterParentElements",value:function(re){var Ie=le({parent:re});return!this._filter.some(Ie)}},{key:"handleMutation",value:function(re){if("childList"===re.type){var Ie=F(re.addedNodes).filter(function(ct){return ct.nodeType===Node.ELEMENT_NODE});if(!Ie.length)return;var Be=this.listQueryFocusable(Ie);this.renderInert(Be)}else"attributes"===re.type&&this.renderInert([re.target])}}]),H}();function Tt(H){var j=H.context,re=H.filter,Be=[],ct=function(vr){return re.some(function(Wr){return vr===Wr})?NodeFilter.FILTER_REJECT:function(vr){var Wr=le({parent:vr});return re.some(Wr)}(vr)?NodeFilter.FILTER_ACCEPT:(Be.push(vr),NodeFilter.FILTER_REJECT)};ct.acceptNode=ct;for(var zn=$r(j).createTreeWalker(j,NodeFilter.SHOW_ELEMENT,ct,!1);zn.nextNode(););return Be}function tn(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.filter;if(j=E({label:"get/insignificant-branches",defaultToDocument:!0,context:j}),!(re=F(re)).length)throw new TypeError("get/insignificant-branches requires valid options.filter");return Tt({context:j,filter:re})}var Un=function(){function H(j,re){for(var Ie=0;Ie0&&void 0!==arguments[0]?arguments[0]:{},re=j.context,Ie=j.filter;jr(this,H),this._context=F(re||document.documentElement)[0],this._filter=F(Ie),this.disengage=this.disengage.bind(this),this.handleMutation=this.handleMutation.bind(this),this.isInsignificantBranch=this.isInsignificantBranch.bind(this);var Be=tn({context:this._context,filter:this._filter});Be.forEach(bi),this.startObserver()}return Un(H,[{key:"disengage",value:function(){!this._context||([].forEach.call(this._context.querySelectorAll("[data-cached-aria-hidden]"),hi),this._context=null,this._filter=null,this._observer&&this._observer.disconnect(),this._observer=null)}},{key:"startObserver",value:function(){var re=this;!window.MutationObserver||(this._observer=new MutationObserver(function(Ie){return Ie.forEach(re.handleMutation)}),this._observer.observe(this._context,ji))}},{key:"handleMutation",value:function(re){"childList"===re.type&&F(re.addedNodes).filter(function(Ie){return Ie.nodeType===Node.ELEMENT_NODE}).filter(this.isInsignificantBranch).forEach(bi)}},{key:"isInsignificantBranch",value:function(re){if(y({context:re}).some(function(ct){return"true"===ct.getAttribute("aria-hidden")}))return!1;var Be=le({element:re});return!this._filter.some(Be)}}]),H}();function Ha(){for(var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=E({label:"get/shadow-host",context:j}),Ie=null;re;)Ie=re,re=re.parentNode;return Ie.nodeType===Ie.DOCUMENT_FRAGMENT_NODE&&Ie.host?Ie.host:null}function Co(H){var j=E({label:"is/active-element",resolveDocument:!0,context:H});if($r(j).activeElement===j)return!0;var Ie=Ha({context:j});return!(!Ie||Ie.shadowRoot.activeElement!==j)}var La=void 0,zs=/^(fieldset|table|td|body)$/;function oo(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.except,Ie=void 0===re?{flexbox:!1,scrollable:!1,shadow:!1,visible:!1,onlyTabbable:!1}:re;La||(La=yn());var Be=E({label:"is/tabbable",resolveDocument:!0,context:j});if(U.is.BLINK&&U.is.ANDROID&&U.majorVersion>42)return!1;var ct=lt(Be);if(ct){if(U.is.WEBKIT&&U.is.IOS||Kn(ct)<0||!Ie.visible&&(U.is.BLINK||U.is.WEBKIT)&&!Cr(ct))return!1;var sn=ct.nodeName.toLowerCase();if("object"===sn){var zn="Chrome"===U.name&&U.majorVersion>=54||"Opera"===U.name&&U.majorVersion>=41;if(U.is.WEBKIT||U.is.BLINK&&!zn)return!1}}var ur=Be.nodeName.toLowerCase(),vr=Kn(Be),Wr=null===vr?null:vr>=0;if(U.is.EDGE&&U.majorVersion>=14&&ct&&Be.ownerSVGElement&&vr<0)return!0;var na=!1!==Wr,ga=null!==vr&&vr>=0;if(Be.hasAttribute("contenteditable"))return na;if(zs.test(ur)&&!0!==Wr)return!1;if(U.is.WEBKIT&&U.is.IOS){var Yi="input"===ur&&"text"===Be.type||"password"===Be.type||"select"===ur||"textarea"===ur||Be.hasAttribute("contenteditable");if(!Yi){var wi=window.getComputedStyle(Be,null);Yi=_i(wi)}if(!Yi)return!1}if("use"===ur&&null!==vr&&(U.is.BLINK||U.is.WEBKIT&&9===U.majorVersion)||de(Be,"svg a")&&Be.hasAttribute("xlink:href")&&(na||Be.focus&&!La.focusSvgNegativeTabindexAttribute)||"svg"===ur&&La.focusSvgInIframe&&na)return!0;if(U.is.TRIDENT||U.is.EDGE){if("svg"===ur)return!!La.focusSvg||(Be.hasAttribute("focusable")||ga);if(Be.ownerSVGElement)return!(!La.focusSvgTabindexAttribute||!ga)||Be.hasAttribute("focusable")}if(void 0===Be.tabIndex)return Boolean(Ie.onlyTabbable);if("audio"===ur){if(!Be.hasAttribute("controls"))return!1;if(U.is.BLINK)return!0}if("video"===ur)if(Be.hasAttribute("controls")){if(U.is.BLINK||U.is.GECKO)return!0}else if(U.is.TRIDENT||U.is.EDGE)return!1;if("object"===ur&&(U.is.BLINK||U.is.WEBKIT)||"iframe"===ur)return!1;if(!Ie.scrollable&&U.is.GECKO){var Ys=window.getComputedStyle(Be,null);if($n(Ys))return na}if(U.is.TRIDENT||U.is.EDGE){if("area"===ur){var Ii=Sr(Be);if(Ii&&Kn(Ii)<0)return!1}var I1=window.getComputedStyle(Be,null);if(_i(I1))return Be.tabIndex>=0;if(!Ie.flexbox&&Xr(I1))return null!==vr?ga:Mi(Be)&&bo(Be);if(yi(Be,ur))return!1;var Eu=Be.parentElement;if(Eu){var Uo=Eu.nodeName.toLowerCase(),Qr=window.getComputedStyle(Eu,null);if(yi(Eu,ur,Uo,Qr))return!1;if(Xr(Qr))return ga}}return Be.tabIndex>=0}oo.except=function(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=function(Ie){return oo({context:Ie,except:H})};return j.rules=oo,j};var Mi=Fr.rules.except({flexbox:!0}),bo=oo.except({flexbox:!0}),wu=oo.except({});function Ti(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.includeContext,Ie=H.includeOnlyTabbable,Be=H.strategy,ct=wu.rules.except({onlyTabbable:Ie});return ki({context:j,includeContext:re,includeOnlyTabbable:Ie,strategy:Be}).filter(ct)}function T1(H,j){return H.compareDocumentPosition(j)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1}function tl(H){return H.sort(T1)}function Sa(H,j,re){var Ie=[];return j.forEach(function(Be){var ct=!0,sn=H.indexOf(Be);-1===sn&&(sn=function(H,j){return Ci(H,function(re){return j.compareDocumentPosition(re)&Node.DOCUMENT_POSITION_FOLLOWING})}(H,Be),ct=!1),-1===sn&&(sn=H.length);var zn=F(re?re(Be):Be);!zn.length||Ie.push({offset:sn,replace:ct,elements:zn})}),Ie}function Ts(H,j){var re=0;j.sort(function(Ie,Be){return Ie.offset-Be.offset}),j.forEach(function(Ie){var Be=Ie.replace?1:0,ct=[Ie.offset+re,Be].concat(Ie.elements);H.splice.apply(H,ct),re+=Ie.elements.length-Be})}function wo(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.list,re=H.elements,Ie=H.resolveElement,Be=j.slice(0),ct=F(re).slice(0);tl(ct);var sn=Sa(Be,ct,Ie);return Ts(Be,sn),Be}var To=function(){function H(j,re){for(var Ie=0;Ie-1?[re].concat(Ie):Ie}},{key:"_cleanup",value:function(){Object.keys(this.hosts).forEach(function(re){delete this.hosts[re]._sortingId},this)}}]),H}();function Us(H,j,re){var Ie=new nl(j,re),Be=Ie.extractElements(H);return Be.length===H.length?re(H):Ie.sort(Be)}var js=void 0;function Hr(H,j){var re=H.indexOf(j);return re>0?H.splice(re,1).concat(H):H}function Pa(H,j){return js.tabsequenceAreaAtImgPosition&&(H=function(H,j){var re=j.querySelectorAll("img[usemap]"),Ie=new kl(j),Be=Ie.extractAreasFromList(H);return re.length?wo({list:Be,elements:re,resolveElement:function(sn){var zn=sn.getAttribute("usemap").slice(1);return Ie.getAreasFor(zn)}}):Be}(H,j)),H=function(H){var j={},re=[],Ie=H.filter(function(ct){var sn=ct.tabIndex;return void 0===sn&&(sn=Kn(ct)),sn<=0||null==sn||(j[sn]||(j[sn]=[],re.push(sn)),j[sn].push(ct),!1)});return re.sort().map(function(ct){return j[ct]}).reduceRight(function(ct,sn){return sn.concat(ct)},Ie)}(H),H}function Ro(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.includeContext,Ie=H.includeOnlyTabbable,Be=H.strategy;js||(js=yn());var ct=F(j)[0]||document.documentElement,sn=Ti({context:ct,includeContext:re,includeOnlyTabbable:Ie,strategy:Be});return sn=document.body.createShadowRoot&&U.is.BLINK?Us(sn,ct,Pa):Pa(sn,ct),re&&(sn=Hr(sn,ct)),sn}for(var ka={tab:9,left:37,up:38,right:39,down:40,pageUp:33,"page-up":33,pageDown:34,"page-down":34,end:35,home:36,enter:13,escape:27,space:32,shift:16,capsLock:20,"caps-lock":20,ctrl:17,alt:18,meta:91,pause:19,insert:45,delete:46,backspace:8,_alias:{91:[92,93,224]}},Ei=1;Ei<26;Ei++)ka["f"+Ei]=Ei+111;for(var Xo=0;Xo<10;Xo++){var dn=Xo+48,mr=Xo+96;ka[Xo]=dn,ka["num-"+Xo]=mr,ka._alias[dn]=[mr]}for(var x1=0;x1<26;x1++){var Gr=x1+65;ka[String.fromCharCode(Gr).toLowerCase()]=Gr}var Fo=ka,ha={alt:"altKey",ctrl:"ctrlKey",meta:"metaKey",shift:"shiftKey"},$o=Object.keys(ha).map(function(H){return ha[H]});function ae(H,j){return!$o.some(function(re){return"boolean"==typeof H[re]&&Boolean(j[re])!==H[re]})}function X(H){return H.split(/\s+/).map(function(j){var re=j.split("+"),Ie=function(H){var re=function(H){var j=!!H&&null;return{altKey:j,ctrlKey:j,metaKey:j,shiftKey:j}}(-1!==H.indexOf("*"));return H.forEach(function(Ie){if("*"!==Ie){var Be=!0,ct=Ie.slice(0,1);"?"===ct?Be=null:"!"===ct&&(Be=!1),!0!==Be&&(Ie=Ie.slice(1));var sn=ha[Ie];if(!sn)throw new TypeError('Unknown modifier "'+Ie+'"');re[sn]=Be}}),re}(re.slice(0,-1)),Be=function(H){var j=Fo[H]||parseInt(H,10);if(!j||"number"!=typeof j||isNaN(j))throw new TypeError('Unknown key "'+H+'"');return[j].concat(Fo._alias[j]||[])}(re.slice(-1));return{keyCodes:Be,modifiers:Ie,matchModifiers:ae.bind(null,Ie)}})}function ke(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j={},re=F(H.context)[0]||document.documentElement;delete H.context;var Ie=F(H.filter);delete H.filter;var Be=Object.keys(H);if(!Be.length)throw new TypeError("when/key requires at least one option key");var ct=function(vr){vr.keyCodes.forEach(function(Wr){j[Wr]||(j[Wr]=[]),j[Wr].push(vr)})};Be.forEach(function(ur){if("function"!=typeof H[ur])throw new TypeError('when/key requires option["'+ur+'"] to be a function');X(ur).map(function(na){return na.callback=H[ur],na}).forEach(ct)});var sn=function(vr){if(!vr.defaultPrevented){if(Ie.length){var Wr=le({element:vr.target,includeSelf:!0});if(Ie.some(Wr))return}var na=vr.keyCode||vr.which;!j[na]||j[na].forEach(function(ga){!ga.matchModifiers(vr)||ga.callback.call(re,vr,zn)})}};re.addEventListener("keydown",sn,!1);var zn=function(){re.removeEventListener("keydown",sn,!1)};return{disengage:zn}}var rt={disabled:function(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.filter,Ie=new oe({context:j,filter:re});return{disengage:Ie.disengage}},hidden:function(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context,re=H.filter,Ie=new Gn({context:j,filter:re});return{disengage:Ie.disengage}},tabFocus:function(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},j=H.context;return j||(j=document.documentElement),Ro(),ke({"?alt+?shift+tab":function(Ie){Ie.preventDefault();var Be=Ro({context:j}),ct=Ie.shiftKey,sn=Be[0],zn=Be[Be.length-1],vr=ct?zn:sn;if(Co(ct?sn:zn))vr.focus();else{var Wr=void 0;if(Be.some(function(Yi,wi){return!!Co(Yi)&&(Wr=wi,!0)}))Be[Wr+(ct?-1:1)].focus();else sn.focus()}}})}},jt=D(2516),gn=function(j){return{showDownload:j}};function er(H,j){if(1&H&&(t.O4$(),t.TgZ(0,"text",229),t.TgZ(1,"tspan",230),t._uU(2),t.qZA(),t.TgZ(3,"tspan",231),t._uU(4),t.qZA(),t.qZA()),2&H){var re=t.oxw();t.xp6(2),t.Oqu(re.outcomeLabel),t.xp6(2),t.Oqu(re.outcome)}}function or(H,j){if(1&H&&(t.O4$(),t.TgZ(0,"g",232),t.TgZ(1,"g",233),t._UZ(2,"polygon",234),t._UZ(3,"path",235),t.qZA(),t.TgZ(4,"text",236),t.TgZ(5,"tspan",237),t._uU(6),t.qZA(),t.qZA(),t.qZA()),2&H){var re=t.oxw();t.xp6(6),t.Oqu(re.timeSpentLabel)}}function gr(H,j){1&H&&(t.O4$(),t.TgZ(0,"svg",238),t.TgZ(1,"defs"),t.TgZ(2,"linearGradient",239),t._UZ(3,"stop",240),t._UZ(4,"stop",241),t.qZA(),t.qZA(),t.TgZ(5,"g",242),t._UZ(6,"path",243),t._UZ(7,"path",244),t.qZA(),t.qZA())}function xi(H,j){1&H&&(t.O4$(),t.TgZ(0,"svg",238),t.TgZ(1,"defs"),t.TgZ(2,"linearGradient",239),t._UZ(3,"stop",240),t._UZ(4,"stop",241),t.qZA(),t.qZA(),t.TgZ(5,"g",242),t._UZ(6,"path",243),t._UZ(7,"path",245),t.qZA(),t.qZA())}function li(H,j){if(1&H){var re=t.EpF();t.TgZ(0,"div",246),t.NdJ("click",function(){return t.CHM(re),t.oxw().exitContent.emit({type:"EXIT"})}),t.O4$(),t.TgZ(1,"svg",247),t.TgZ(2,"defs"),t.TgZ(3,"linearGradient",248),t._UZ(4,"stop",240),t._UZ(5,"stop",241),t.qZA(),t.qZA(),t.TgZ(6,"g",242),t._UZ(7,"path",249),t._UZ(8,"path",250),t.qZA(),t.qZA(),t.kcU(),t.TgZ(9,"div",226),t._uU(10,"Exit"),t.qZA(),t.qZA()}}function Zi(H,j){if(1&H){var re=t.EpF();t.ynx(0),t.TgZ(1,"div",251),t._uU(2,"Up Next"),t.qZA(),t.TgZ(3,"div",252),t.NdJ("click",function(){return t.CHM(re),t.oxw().playNext()}),t.TgZ(4,"div",253),t._uU(5),t.qZA(),t.TgZ(6,"div",254),t._UZ(7,"img",255),t.qZA(),t.qZA(),t.BQk()}if(2&H){var Ie=t.oxw();t.xp6(5),t.Oqu(Ie.nextContent.name)}}function Wa(H,j){if(1&H){var re=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(Be){return t.CHM(re),t.oxw().emitSideBarEvent(Be,"SHARE")})("keydown.enter",function(Be){return t.CHM(re),t.oxw().emitSideBarEvent(Be,"SHARE")}),t._UZ(1,"span",9),t._uU(2," Share"),t.qZA()}}function Tr(H,j){if(1&H){var re=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(Be){return t.CHM(re),t.oxw().showDownloadPopup(Be,"DOWNLOAD_MENU")})("keydown.enter",function(Be){t.CHM(re);var ct=t.oxw();return ct.closeNav(Be),ct.showDownloadPopup(Be,"DOWNLOAD_MENU")}),t._UZ(1,"span",10),t._uU(2," Download"),t.qZA()}}function Oa(H,j){if(1&H){var re=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(Be){t.CHM(re);var ct=t.oxw();return ct.closeNav(Be),ct.emitSideBarEvent(Be,"PRINT")})("keydown.enter",function(Be){return t.CHM(re),t.oxw().emitSideBarEvent(Be,"PRINT")}),t._UZ(1,"span",11),t._uU(2," Print"),t.qZA()}}function so(H,j){if(1&H){var re=t.EpF();t.TgZ(0,"li",8),t.NdJ("click",function(Be){t.CHM(re);var ct=t.oxw();return ct.closeNav(Be),ct.emitSideBarEvent(Be,"EXIT")})("keydown.enter",function(Be){t.CHM(re);var ct=t.oxw();return ct.closeNav(Be),ct.emitSideBarEvent(Be,"EXIT")}),t._UZ(1,"span",12),t._uU(2," Exit"),t.qZA()}}function Qa(H,j){if(1&H){var re=t.EpF();t.TgZ(0,"sb-player-download-popup",13),t.NdJ("hideDownloadPopUp",function(ct){return t.CHM(re),t.oxw().hideDownloadPopUp(ct)})("downloadEvent",function(ct){return t.CHM(re),t.oxw().sidebarEvent.emit(ct)}),t.qZA()}if(2&H){var Ie=t.oxw();t.Q6J("title",Ie.title)("showDownloadPopUp",Ie.showDownloadPopUp)}}var lo=function(j){return{"animated animateBg":j}};function es(H,j){1&H&&(t.TgZ(0,"div",1),t._uU(1," You are offline\n"),t.qZA())}var Al=':root{--sdk-navigation-arrows-bg:#fff;--sdk-navigation-arrows-border:#F2F2F2;--sdk-navigation-arrows-after:#999999;--sdk-player-nextIcon:#fff}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]{height:2rem;width:4rem;cursor:pointer;border-radius:1rem;background-color:var(--sdk-navigation-arrows-bg);box-shadow:var(--sbt-box-shadow-3px);border:1px solid var(--sdk-navigation-arrows-border);-webkit-transition:.1s ease-in;transition:.1s ease-in}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]:hover{border:1px solid transparent;background:var(--primary-color)}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]::after{display:none;content:"";width:.5rem;height:.5rem;border-top:.125rem solid var(--sdk-navigation-arrows-after);border-left:.125rem solid var(--sdk-navigation-arrows-after)}[_nghost-%COMP%] .player-nextIcon[_ngcontent-%COMP%]::after{content:"";-webkit-transform:rotate(135deg);transform:rotate(135deg);border-top:.125rem solid var(--sdk-player-nextIcon);border-left:.125rem solid var(--sdk-player-nextIcon)}[_nghost-%COMP%] .navigation-arrows[_ngcontent-%COMP%]:hover.player-nextIcon::after{content:"";border-top:.125rem solid var(--sdk-player-nextIcon);border-left:.125rem solid var(--sdk-player-nextIcon)}[_nghost-%COMP%] .navigation-arrows.player-nextIcon[_ngcontent-%COMP%]{background:var(--primary-color)}button[_ngcontent-%COMP%]{-webkit-appearance:none;background:0 0;border:0}.paginate[_ngcontent-%COMP%]{position:relative;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.paginate[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{position:absolute;top:42%;left:40%;width:.75rem;height:.1875rem;border-radius:.09375rem;background:var(--white);-webkit-transition:.15s;transition:.15s}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{-webkit-transform-origin:0 50%;transform-origin:0 50%;background-color:var(--gray-800)}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,-1px) rotate(40deg);transform:translate(0,-1px) rotate(40deg)}.paginate.left[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,1px) rotate(-40deg);transform:translate(0,1px) rotate(-40deg)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]{background-color:var(--white)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,0) rotate(30deg);transform:translate(0,0) rotate(30deg)}.paginate.left[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,1px) rotate(-30deg);transform:translate(0,1px) rotate(-30deg)}.paginate.left[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child, .paginate.left[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(-.3125rem,0) rotate(0);transform:translate(-.3125rem,0) rotate(0)}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,.0625rem) rotate(40deg);transform:translate(0,.0625rem) rotate(40deg)}.paginate.right[_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,-.0625rem) rotate(-40deg);transform:translate(0,-.0625rem) rotate(-40deg)}.paginate.right[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child{-webkit-transform:translate(0,.0625rem) rotate(30deg);transform:translate(0,.0625rem) rotate(30deg)}.paginate.right[_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(0,.0625rem) rotate(-30deg);transform:translate(0,.0625rem) rotate(-30deg)}.paginate.right[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:first-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%] i[_ngcontent-%COMP%]:last-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:first-child, .paginate.right[data-state=disabled][_ngcontent-%COMP%]:hover i[_ngcontent-%COMP%]:last-child{-webkit-transform:translate(.3125rem,0) rotate(0);transform:translate(.3125rem,0) rotate(0)}.paginate[data-state=disabled][_ngcontent-%COMP%]{opacity:.3;cursor:default} html[dir=rtl] .player-nextIcon, html[dir=rtl] .player-previousIcon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}';function rl(H,j){if(1&H){var re=t.EpF();t.TgZ(0,"div",6),t.TgZ(1,"img",7),t.NdJ("click",function(){return t.CHM(re),t.oxw().rotateCW()}),t.qZA(),t.qZA()}}function ts(H,j){if(1&H){var re=t.EpF();t.TgZ(0,"div",8),t.TgZ(1,"button",9),t.NdJ("click",function(){return t.CHM(re),t.oxw().zoomOut()}),t.qZA(),t.TgZ(2,"button",10),t.NdJ("click",function(){return t.CHM(re),t.oxw().zoomIn()}),t.qZA(),t.qZA()}}function Tu(H,j){if(1&H){var re=t.EpF();t.TgZ(0,"div",11),t.TgZ(1,"input",12),t.NdJ("ngModelChange",function(ct){return t.CHM(re),t.oxw().page=ct}),t.qZA(),t.TgZ(2,"span",13),t.NdJ("click",function(){return t.CHM(re),t.oxw().gotoPage()}),t._UZ(3,"img",14),t.qZA(),t.TgZ(4,"span",15),t._uU(5,"/"),t.qZA(),t.TgZ(6,"span",16),t._uU(7),t.qZA(),t.qZA()}if(2&H){var Ie=t.oxw();t.xp6(1),t.Q6J("ngModel",Ie.page)("max",Ie.totalPages),t.xp6(6),t.Oqu(Ie.totalPages)}}function Qi(H,j){if(1&H){var re=t.EpF();t.TgZ(0,"div",17),t.TgZ(1,"div",18),t.TgZ(2,"sb-player-previous-navigation",19),t.NdJ("previousAction",function(Be){return t.CHM(re),t.oxw().actions.emit(Be)}),t.qZA(),t.TgZ(3,"sb-player-next-navigation",20),t.NdJ("nextAction",function(Be){return t.CHM(re),t.oxw().actions.emit(Be)}),t.qZA(),t.qZA(),t.qZA()}}var uo={contentCompatibility:"CPV2_CONT_COMP_01",contentLoadFails:"CPV2_CONT_LOAD_FAIL_01",internetConnectivity:"CPV2_INT_CONNECT_01",streamingUrlSupport:"CPV2_INT_STREAMINGURL_01"},gi={contentCompatibility:"content compatibility error",contentLoadFails:"content load failed",internetConnectivity:"content failed to load , No Internet Available",streamingUrlSupport:"streaming url is not supported",contentPlayFailedHeader:"Unable to load content",contentPlayFailTitle:"Refresh and try again later"},Bo=function(){function H(){var j=this;(0,L.Z)(this,H),this.playerContentCompatibiltyLevel=5,this.getInternetConnectivityError=new t.vpe,this.setInternetConnectivityError=function(){var re=new Error;re.message=gi.internetConnectivity,re.name=uo.internetConnectivity,j.getInternetConnectivityError.emit({error:re})},this.initInternetConnectivityError()}return(0,C.Z)(H,[{key:"checkContentCompatibility",value:function(re){if(re>this.playerContentCompatibiltyLevel){var Ie=new Error;return Ie.message="Player supports ".concat(this.playerContentCompatibiltyLevel,"\n but content compatibility is ").concat(re),Ie.name="contentCompatibily",{error:Ie,isCompitable:!1}}return{error:null,isCompitable:!0}}},{key:"initInternetConnectivityError",value:function(){window.addEventListener("offline",this.setInternetConnectivityError)}},{key:"ngOnDestroy",value:function(){window.removeEventListener("offline",this.setInternetConnectivityError)}}]),H}();Bo.\u0275fac=function(j){return new(j||Bo)},Bo.ctorParameters=function(){return[]},Bo.\u0275prov=(0,t.Yz7)({factory:function(){return new Bo},token:Bo,providedIn:"root"});var Io=function(){function H(){(0,L.Z)(this,H),this.downloadEvent=new t.vpe,this.hideDownloadPopUp=new t.vpe,this.showDownloadPopUp=!1}return(0,C.Z)(H,[{key:"hideDownloadPopup",value:function(re,Ie){this.disabledHandle.disengage(),this.hideDownloadPopUp.emit({event:re,type:Ie})}},{key:"ngOnChanges",value:function(re){for(var Ie in re)if(re.hasOwnProperty(Ie)&&"showDownloadPopUp"===Ie){this.showDownloadPopUp=re[Ie].currentValue||!1;var Be=document.querySelector(".file-download");this.disabledHandle=rt.disabled({filter:Be})}}},{key:"download",value:function(re,Ie){this.downloadEvent.emit({event:re,type:Ie}),this.disabledHandle.disengage()}}]),H}();Io.\u0275fac=function(j){return new(j||Io)},Io.\u0275cmp=t.Xpm({type:Io,selectors:[["sb-player-download-popup"]],inputs:{showDownloadPopUp:"showDownloadPopUp",title:"title"},outputs:{downloadEvent:"downloadEvent",hideDownloadPopUp:"hideDownloadPopUp"},features:[t.TTD],decls:16,vars:4,consts:[[1,"file-download",3,"ngClass"],[1,"file-download__overlay"],["aria-modal","true","aria-labelledby","Download Content","aria-describedby","Dialog to download content",1,"file-download__popup"],[1,"close-btn",3,"click"],["type","button","id","close","data-animation","showShadow","aria-label","player-close-btn",1,"close-icon"],[1,"file-download__metadata"],[1,"file-download__title","text-left"],[1,"file-download__text","text-left"],[1,"file-download__size"],[1,"file-download__action-btns"],["type","button","id","cancel",1,"sb-btn","sb-btn-normal","sb-btn-outline-primary","sb-btn-radius","cancel-btn","mr-8",3,"click"],["type","button","id","download",1,"sb-btn","sb-btn-normal","sb-btn-primary","sb-btn-radius","download-btn",3,"click"]],template:function(j,re){1&j&&(t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.TgZ(2,"div",2),t.TgZ(3,"div",3),t.NdJ("click",function(Be){return re.hideDownloadPopup(Be,"DOWNLOAD_POPUP_CLOSE")}),t._UZ(4,"button",4),t.qZA(),t.TgZ(5,"div",5),t.TgZ(6,"h5",6),t._uU(7,"Confirm Download"),t.qZA(),t.TgZ(8,"div",7),t._uU(9),t.qZA(),t._UZ(10,"div",8),t.TgZ(11,"div",9),t.TgZ(12,"button",10),t.NdJ("click",function(Be){return re.hideDownloadPopup(Be,"DOWNLOAD_POPUP_CANCEL")}),t._uU(13,"Cancel"),t.qZA(),t.TgZ(14,"button",11),t.NdJ("click",function(Be){return re.download(Be,"DOWNLOAD")}),t._uU(15,"Download"),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA()),2&j&&(t.Q6J("ngClass",t.VKq(2,gn,re.showDownloadPopUp)),t.xp6(9),t.hij('"',re.title,'" will be saved on your device.'))},directives:[R.mk],styles:['[_nghost-%COMP%] .file-download[_ngcontent-%COMP%]{width:100%;height:100%;position:absolute;top:0;left:0;z-index:99;-webkit-transition:.3s;transition:.3s;opacity:0;visibility:hidden}[_nghost-%COMP%] .file-download__overlay[_ngcontent-%COMP%]{width:100%;height:100%;background:rgba(var(--rc-rgba-black),.5);display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;-webkit-transition:.3s;transition:.3s;visibility:hidden}[_nghost-%COMP%] .file-download__popup[_ngcontent-%COMP%]{width:90%;max-width:22.5rem;min-height:13.125rem;background:var(--white);border-radius:1rem;box-shadow:0 0 1.5em 0 rgba(var(--rc-rgba-black),.22);padding:1.5rem;position:relative;-webkit-transition:.3s ease-in;transition:.3s ease-in;-webkit-transform:scale(.5);transform:scale(.5)}[_nghost-%COMP%] .file-download__close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem;width:1.5rem;height:1.5rem;cursor:pointer}[_nghost-%COMP%] .file-download__close-btn[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{max-width:100%}[_nghost-%COMP%] .file-download__metadata[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;height:100%}[_nghost-%COMP%] .file-download__title[_ngcontent-%COMP%]{font-size:1rem;font-weight:700;line-height:1.375rem;word-break:break-word}[_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%]{color:var(--gray-400);word-break:break-word}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%]{color:var(--black)}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%]{font-size:.875rem;line-height:1.25rem}[_nghost-%COMP%] .file-download__size[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__text[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__title[_ngcontent-%COMP%]{margin:0 0 1.5em}[_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:end;justify-content:flex-end}[_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%] .cancel-btn[_ngcontent-%COMP%], [_nghost-%COMP%] .file-download__action-btns[_ngcontent-%COMP%] .download-btn[_ngcontent-%COMP%]{outline:0;border:none;font-size:.75rem;text-transform:uppercase;cursor:pointer;line-height:normal}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%] .file-download__popup[_ngcontent-%COMP%]{-webkit-transform:scale(1);transform:scale(1);visibility:visible}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%]{visibility:visible;opacity:1}[_nghost-%COMP%] .file-download.showDownload[_ngcontent-%COMP%] .file-download__overlay[_ngcontent-%COMP%]{visibility:visible}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%]{position:absolute;top:.75rem;right:.75rem}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]{width:1.875rem;height:1.875rem;background:0 0;border-radius:50%;cursor:pointer;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center;padding:0}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::after{content:"";-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]::before{content:"";-webkit-transform:rotate(45deg);transform:rotate(45deg)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:after, [_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[_ngcontent-%COMP%]:before{content:"";width:1.25rem;height:.125rem;position:absolute;background-color:var(--black)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]{box-shadow:0 0 0 0 var(--red) inset;-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775);border:0 solid var(--white)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:before{-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:after{-webkit-transition:.2s cubic-bezier(.175,.885,.52,1.775);transition:.2s cubic-bezier(.175,.885,.52,1.775)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover{box-shadow:0 0 0 .25rem var(--red) inset}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:before{-webkit-transform:scale(.7) rotate(45deg);transform:scale(.7) rotate(45deg);-webkit-transition-delay:.1s;transition-delay:.1s;background-color:var(--red)}[_nghost-%COMP%] .file-download[_ngcontent-%COMP%] .close-btn[_ngcontent-%COMP%] .close-icon[data-animation=showShadow][_ngcontent-%COMP%]:not(.showShadow):hover:after{-webkit-transform:scale(.7) rotate(-45deg);transform:scale(.7) rotate(-45deg);-webkit-transition-delay:.1s;transition-delay:.1s;background-color:var(--red)} html[dir=rtl] .close-btn{left:.75rem;right:auto}']}),Io.propDecorators={title:[{type:t.IIB}],downloadEvent:[{type:t.r_U}],hideDownloadPopUp:[{type:t.r_U}],showDownloadPopUp:[{type:t.IIB}]};var Do=function(){function H(){(0,L.Z)(this,H),this.showReplay=!0,this.replayContent=new t.vpe,this.exitContent=new t.vpe,this.playNextContent=new t.vpe}return(0,C.Z)(H,[{key:"ngOnInit",value:function(){this.subscription=(0,jt.R)(document,"keydown").subscribe(function(re){"Enter"===re.key&&(re.stopPropagation(),document.activeElement.click())})}},{key:"playNext",value:function(){this.playNextContent.emit({name:this.nextContent.name,identifier:this.nextContent.identifier,type:"NEXT_CONTENT_PLAY"})}},{key:"replay",value:function(){this.showReplay&&this.replayContent.emit({type:"REPLAY"})}},{key:"ngOnDestroy",value:function(){this.subscription&&this.subscription.unsubscribe()}}]),H}();Do.\u0275fac=function(j){return new(j||Do)},Do.\u0275cmp=t.Xpm({type:Do,selectors:[["sb-player-end-page"]],inputs:{showReplay:"showReplay",showExit:"showExit",contentName:"contentName",outcome:"outcome",outcomeLabel:"outcomeLabel",userName:"userName",timeSpentLabel:"timeSpentLabel",nextContent:"nextContent"},outputs:{replayContent:"replayContent",exitContent:"exitContent",playNextContent:"playNextContent"},ngContentSelectors:["*"],decls:237,vars:9,consts:[[1,"player-endpage"],[1,"player-endpage__left-panel"],[1,"user-score-card"],["width","100%","height","100%","viewBox","0 0 250 250","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",0,"xmlns","xhtml","http://www.w3.org/1999/xhtml"],["id","filter-1"],["in","SourceGraphic","type","matrix","values",""],["x1","-19.3154721%","y1","50%","x2","100%","y2","50%","id","linearGradient-1"],["stop-color","#43A981","offset","0%"],["stop-color","#1D7E58","offset","100%"],["x1","0%","y1","0%","x2","101.719666%","y2","100%","id","linearGradient-2"],["stop-color","#FFCD55","offset","0%"],["stop-color","#FFD955","offset","100%"],["d","M124.02,185.665 C116.138,185.665 109.713,175.367 102.434,173.416 C94.911,171.399 84.204,177.031 77.612,173.212 C70.933,169.339 70.491,157.213 65.068,151.786 C59.642,146.36 47.514,145.92 43.643,139.24 C39.825,132.649 45.454,121.942 43.438,114.42 C41.487,107.143 31.19,100.717 31.19,92.831 C31.19,84.948 41.487,78.521 43.438,71.245 C45.454,63.721 39.825,53.013 43.644,46.423 C47.516,39.742 59.643,39.304 65.068,33.878 C70.493,28.452 70.933,16.325 77.612,12.453 C84.206,8.635 94.911,14.266 102.434,12.248 C109.713,10.297 116.138,-1.42108547e-14 124.02,-1.42108547e-14 C131.907,-1.42108547e-14 138.332,10.297 145.608,12.248 C153.132,14.266 163.839,8.635 170.429,12.454 C177.11,16.325 177.55,28.453 182.976,33.879 C188.403,39.305 200.531,39.743 204.401,46.425 C208.22,53.015 202.589,63.722 204.606,71.245 C206.558,78.521 216.854,84.948 216.854,92.831 C216.854,100.717 206.558,107.143 204.606,114.421 C202.589,121.943 208.22,132.651 204.4,139.242 C200.529,145.923 188.401,146.361 182.975,151.787 C177.55,157.214 177.11,169.34 170.429,173.212 C163.839,177.031 153.132,171.4 145.608,173.416 C138.332,175.367 131.907,185.665 124.02,185.665","id","path-3"],["x","-6.5%","y","-6.5%","width","112.9%","height","112.9%","filterUnits","objectBoundingBox","id","filter-4"],["stdDeviation","11.5","in","SourceAlpha","result","shadowBlurInner1"],["dx","0","dy","1","in","shadowBlurInner1","result","shadowOffsetInner1"],["in","shadowOffsetInner1","in2","SourceAlpha","operator","arithmetic","k2","-1","k3","1","result","shadowInnerInner1"],["values","0 0 0 0 0.0914162133 0 0 0 0 0.159459438 0 0 0 0 0.537477355 0 0 0 1 0","type","matrix","in","shadowInnerInner1"],["x1","50%","y1","0.0901442308%","x2","50%","y2","99.6203016%","id","linearGradient-5"],["stop-color","#1D6349","offset","0%"],["stop-color","#1D6349","offset","100%"],["id","text-8","x","55","y","16","text-anchor","middle","fill","#FFFFFE",4,"ngIf"],["id","player-Player","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","endgame-l2","transform","translate(-39.000000, -65.000000)"],["id","Group-2","transform","translate(39.500000, 65.000000)"],["filter","url(#filter-1)","id","Group"],["transform","translate(4.000000, 4.000000)",1,"particles"],["d","M84.4144231,47.2437308 L77.9616538,41.1916154 C77.5351923,40.7922308 76.8658846,40.8133846 76.4665,41.2394231 C76.0666923,41.6654615 76.0882692,42.3351923 76.5143077,42.7345769 L82.9670769,48.7866923 C83.3931154,49.1860769 84.0624231,49.1649231 84.4622308,48.7384615 C84.8616154,48.3124231 84.8404615,47.6431154 84.4144231,47.2437308","id","Fill-3"],["d","M78.2087308,48.9402692 L84.2616923,42.4875 C84.6615,42.0614615 84.6399231,41.3921538 84.2138846,40.9927692 C83.7878462,40.5929615 83.1185385,40.6141154 82.7187308,41.0405769 L76.6661923,47.4929231 C76.2663846,47.9189615 76.2879615,48.5886923 76.714,48.9880769 C77.1400385,49.3878846 77.8093462,49.3663077 78.2087308,48.9402692","id","Fill-4"],["d","M91.8275769,140.082038 L85.3748077,134.030346 C84.9487692,133.630538 84.2794615,133.652115 83.8796538,134.078154 C83.4802692,134.504192 83.5014231,135.1735 83.9278846,135.573308 L90.3806538,141.625 C90.8066923,142.024808 91.476,142.003231 91.8753846,141.577192 C92.2751923,141.151154 92.2536154,140.481846 91.8275769,140.082038","id","Fill-5"],["d","M85.6223077,141.779 L91.6748462,135.326231 C92.0746538,134.900192 92.0535,134.230885 91.6270385,133.831077 C91.201,133.431269 90.5316923,133.452846 90.1323077,133.878885 L84.0793462,140.331654 C83.6799615,140.757692 83.7011154,141.427 84.1271538,141.826808 C84.5531923,142.226192 85.2225,142.205038 85.6223077,141.779","id","Fill-6"],["d","M13.3091538,191.951269 L6.85638462,185.899154 C6.43034615,185.499769 5.76103846,185.520923 5.36123077,185.946962 C4.96184615,186.373423 4.98342308,187.042731 5.40946154,187.442115 L11.8622308,193.494231 C12.2882692,193.893615 12.9575769,193.872462 13.3569615,193.446423 C13.7567692,193.020385 13.7351923,192.350654 13.3091538,191.951269","id","Fill-7"],["d","M7.10388462,193.647808 L13.1568462,187.195038 C13.5562308,186.769 13.5350769,186.099692 13.1090385,185.700308 C12.683,185.3005 12.0136923,185.322077 11.6138846,185.748115 L5.56092308,192.200885 C5.16153846,192.626923 5.18269231,193.296231 5.60873077,193.695615 C6.03476923,194.095423 6.70407692,194.073846 7.10388462,193.647808","id","Fill-8"],["d","M10.4914615,38.4115769 L4.03869231,32.3594615 C3.61265385,31.9600769 2.94334615,31.9812308 2.54353846,32.4072692 C2.14415385,32.8333077 2.16573077,33.5030385 2.59176923,33.9024231 L9.04453846,39.9545385 C9.47057692,40.3539231 10.1398846,40.3327692 10.5392692,39.9067308 C10.9390769,39.4802692 10.9175,38.8109615 10.4914615,38.4115769","id","Fill-9"],["d","M4.28619231,40.1081154 L10.3391538,33.6553462 C10.7385385,33.2293077 10.7173846,32.56 10.2909231,32.1606154 C9.86488462,31.7608077 9.19557692,31.7823846 8.79619231,32.2084231 L2.74323077,38.6611923 C2.34342308,39.0872308 2.365,39.7565385 2.79103846,40.1559231 C3.21707692,40.5557308 3.88638462,40.5341538 4.28619231,40.1081154","id","Fill-10"],["d","M239.977269,47.0855 L233.5245,41.0333846 C233.098462,40.634 232.429154,40.6551538 232.029769,41.0811923 C231.629962,41.5072308 231.651538,42.1765385 232.077577,42.5763462 L238.530346,48.6284615 C238.956385,49.0278462 239.625692,49.0066923 240.0255,48.5802308 C240.424885,48.1541923 240.403308,47.4848846 239.977269,47.0855","id","Fill-11"],["d","M233.771577,48.7820385 L239.824538,42.3292692 C240.223923,41.9032308 240.202769,41.2339231 239.776731,40.8341154 C239.350692,40.4347308 238.681385,40.4558846 238.281577,40.8823462 L232.228615,47.3346923 C231.829231,47.7607308 231.850385,48.4304615 232.276423,48.8298462 C232.702885,49.2296538 233.372192,49.2080769 233.771577,48.7820385","id","Fill-12"],["d","M163.849231,80.0025769 L157.396462,73.9508846 C156.970423,73.5510769 156.301115,73.5726538 155.901308,73.9986923 C155.501923,74.4247308 155.523077,75.0940385 155.949115,75.4938462 L162.401885,81.5455385 C162.828346,81.9453462 163.497654,81.9237692 163.897038,81.4977308 C164.296846,81.0716923 164.275269,80.4023846 163.849231,80.0025769","id","Fill-13"],["d","M157.644385,81.6995385 L163.696923,75.2467692 C164.096731,74.8207308 164.075154,74.1514231 163.649115,73.7516154 C163.223077,73.3522308 162.553769,73.3733846 162.154385,73.7994231 L156.101423,80.2521923 C155.701615,80.6782308 155.723192,81.3475385 156.149231,81.7473462 C156.575269,82.1467308 157.244577,82.1255769 157.644385,81.6995385","id","Fill-14"],["d","M195.311346,151.846538 L188.858577,145.794423 C188.432538,145.395038 187.763231,145.416192 187.363423,145.842654 C186.964038,146.268692 186.985615,146.938 187.411654,147.337385 L193.864423,153.3895 C194.290462,153.788885 194.959769,153.767731 195.359154,153.341692 C195.758962,152.915654 195.737385,152.245923 195.311346,151.846538","id","Fill-15"],["d","M189.105654,153.543077 L195.158615,147.090308 C195.558,146.664269 195.536846,145.994962 195.110808,145.595577 C194.684769,145.195769 194.015462,145.217346 193.615654,145.643385 L187.562692,152.096154 C187.163308,152.522192 187.184462,153.1915 187.6105,153.590885 C188.036538,153.990692 188.705846,153.969115 189.105654,153.543077","id","Fill-16"],["d","M190.299577,210.370769 L183.846808,204.318654 C183.420769,203.919269 182.751462,203.940423 182.352077,204.366885 C181.952269,204.792923 181.973846,205.462231 182.399885,205.861615 L188.852654,211.913731 C189.278692,212.313538 189.948,212.291962 190.347808,211.865923 C190.747192,211.439885 190.726038,210.770577 190.299577,210.370769","id","Fill-17"],["d","M184.093885,212.067308 L190.146846,205.614538 C190.546654,205.1885 190.525077,204.519192 190.099038,204.119808 C189.673,203.72 189.003692,203.741577 188.603885,204.167615 L182.551346,210.620385 C182.151538,211.046423 182.173115,211.715731 182.599154,212.115115 C183.025192,212.514923 183.6945,212.493346 184.093885,212.067308","id","Fill-18"],["d","M131.642077,57.7017692 L132.557615,57.1720769 L128.114462,49.4881538 C127.925346,49.1611154 127.575885,48.9597308 127.198077,48.9601532 C126.819846,48.9601532 126.470808,49.1623846 126.282538,49.4898462 L117.420346,64.8674231 C117.231654,65.1948846 117.232077,65.5980769 117.421192,65.9251154 C117.610308,66.2521538 117.959769,66.4535385 118.337577,66.453116 L127.210346,66.4459231 L136.084808,66.4416923 C136.462615,66.4416923 136.811654,66.2394615 137.000346,65.9124231 C137.189462,65.5849615 137.189038,65.1817692 136.999923,64.8547308 L132.557615,57.1720769 L131.642077,57.7017692 L130.726115,58.2310385 L134.251192,64.3271538 L127.209077,64.3305385 L120.168231,64.3364615 L127.200615,52.1336538 L130.726115,58.2310385 L131.642077,57.7017692","id","Fill-19"],["d","M116.952846,151.625692 L117.868808,151.096 L113.425654,143.412077 C113.236115,143.085038 112.887077,142.883654 112.508846,142.884076 C112.131038,142.884076 111.782,143.086308 111.593308,143.413769 L102.731115,158.791346 C102.542423,159.118385 102.542846,159.522 102.731962,159.849038 C102.921077,160.176077 103.270538,160.377462 103.648346,160.377039 L112.521538,160.369846 L121.396,160.365615 C121.773808,160.365192 122.123269,160.163385 122.311962,159.836346 C122.500654,159.508885 122.500231,159.105692 122.311115,158.778231 L117.868808,151.096 L116.952846,151.625692 L116.037308,152.154962 L119.562385,158.251077 L112.520269,158.254462 L105.479,158.260385 L112.511385,146.057577 L116.037308,152.154962 L116.952846,151.625692","id","Fill-20"],["d","M167.868885,180.468538 L168.784423,179.938846 L164.341269,172.254923 C164.152154,171.927885 163.802692,171.7265 163.424885,171.7265 C163.047077,171.726923 162.697615,171.929154 162.508923,172.256192 L158.080154,179.944346 L153.646731,187.633769 C153.458038,187.961231 153.458462,188.364423 153.647577,188.691885 C153.836692,189.018923 154.186154,189.220308 154.563962,189.219885 L163.437154,189.212692 L172.311615,189.208462 C172.689423,189.208038 173.038462,189.006231 173.227154,188.678769 C173.415846,188.351731 173.415846,187.948538 173.226731,187.621077 L168.784423,179.938846 L167.868885,180.468538 L166.952923,180.997808 L170.478,187.093923 L163.435885,187.097308 L156.394615,187.103231 L163.427423,174.900423 L166.952923,180.997808 L167.868885,180.468538","id","Fill-21"],["d","M197.152577,121.4785 L198.174731,121.751808 L200.466962,113.176885 C200.564269,112.811769 200.459769,112.422115 200.192385,112.155154 C199.925,111.888192 199.534923,111.784115 199.170231,111.882269 L190.602077,114.186769 L182.030115,116.489154 C181.665423,116.587308 181.380269,116.872462 181.282538,117.237577 C181.185231,117.602692 181.289731,117.991923 181.557115,118.259308 L187.836423,124.528462 L194.114462,130.801 C194.381846,131.067962 194.7715,131.172462 195.136615,131.074308 C195.501308,130.976154 195.786462,130.691 195.884192,130.325885 L198.174731,121.751808 L197.152577,121.4785 L196.130846,121.205615 L194.313308,128.009115 L184.348577,118.056654 L191.151231,116.229808 L197.949654,114.401269 L196.130846,121.205615 L197.152577,121.4785","id","Fill-22"],["d","M51.2223462,21.9327308 L52.2440769,22.2056154 L54.5358846,13.6306923 C54.6336154,13.2655769 54.5291154,12.8759231 54.2617308,12.6089615 C53.9939231,12.342 53.6042692,12.2379231 53.2395769,12.3360769 L44.6714231,14.6405769 L44.6718462,14.6405769 L36.0994615,16.9433846 C35.7343462,17.0411154 35.4496154,17.3266923 35.3518846,17.6918077 C35.2545769,18.0569231 35.3590769,18.4461538 35.6264615,18.7131154 L41.9061923,24.9822692 L41.9057692,24.9818462 L48.1842308,31.2543846 C48.4516154,31.5213462 48.8412692,31.6258462 49.2059615,31.5276923 C49.5710769,31.4295385 49.8562308,31.1443846 49.9535385,30.7792692 L52.2440769,22.2056154 L50.2006154,21.6594231 L48.3830769,28.4629231 L43.4009231,23.4854231 L43.4005,23.485 L38.4179231,18.5108846 L45.2205769,16.6836154 L45.221,16.6836154 L52.019,14.8550769 L50.2006154,21.6594231 L51.2223462,21.9327308","id","Fill-23"],["d","M45.1456923,207.203192 L46.1674231,207.476077 L48.4592308,198.900731 C48.5569615,198.535615 48.4520385,198.145962 48.1846538,197.879 C47.9172692,197.612038 47.5276154,197.507962 47.1629231,197.606115 L38.5947692,199.911038 L38.5947692,199.910615 L30.0228077,202.213846 C29.6576923,202.311577 29.3725385,202.597154 29.2752308,202.962269 C29.1775,203.327385 29.2824231,203.716615 29.5498077,203.983577 L35.8295385,210.252308 L35.8291154,210.251885 L42.1075769,216.524423 C42.3749615,216.791385 42.7646154,216.895885 43.1293077,216.797731 C43.4944231,216.699577 43.7791538,216.414423 43.8768846,216.049308 L46.1674231,207.476077 L44.1239615,206.930308 L42.3064231,213.732962 L37.3242692,208.755462 L37.3238462,208.755038 L32.3412692,203.781346 L39.1435,201.953654 L39.1439231,201.953654 L45.9423462,200.125115 L44.1239615,206.929885 L45.1456923,207.203192","id","Fill-24"],["d","M206.143808,31.5111923 L206.6735,32.4267308 L214.357423,27.984 C214.684462,27.7948846 214.885846,27.4454231 214.885424,27.0676154 C214.885424,26.6893846 214.683192,26.3403462 214.355731,26.1516538 L206.667577,21.7224615 L206.668,21.7228846 L198.978154,17.2894615 C198.651115,17.1007692 198.2475,17.1011923 197.920462,17.2903077 C197.593423,17.4794231 197.392038,17.8288846 197.392461,18.2066923 L197.399654,27.0798846 L197.399654,27.0794615 L197.403885,35.9547692 C197.403885,36.3325769 197.606115,36.6816154 197.933577,36.8703077 C198.260615,37.059 198.664231,37.059 198.991269,36.8698846 L206.6735,32.4267308 L206.143808,31.5111923 L205.614538,30.5952308 L199.518423,34.1211538 L199.515038,27.0786154 L199.515038,27.0781923 L199.509115,20.0373462 L205.611577,23.5556538 L205.612,23.5556538 L211.711923,27.0697308 L205.614538,30.5952308 L206.143808,31.5111923","id","Fill-25"],["d","M44.9489615,120.167385 L45.4782308,121.082923 L53.1625769,116.640192 C53.4896154,116.450654 53.691,116.101192 53.6905776,115.723385 C53.6901538,115.345577 53.4883462,114.996538 53.1608846,114.807846 L45.4727308,110.378654 L45.4731538,110.379077 L37.7833077,105.945654 C37.4558462,105.756962 37.0526538,105.757385 36.7256154,105.9465 C36.3985769,106.135615 36.1971923,106.485077 36.1971923,106.862885 L36.2094615,124.610962 C36.2094615,124.989192 36.4112692,125.338231 36.7387308,125.526923 C37.0661923,125.715615 37.4693846,125.715192 37.7964231,125.526077 L45.4786538,121.082923 L44.4192692,119.251846 L38.324,122.777346 L38.3142692,108.693538 L44.4167308,112.211423 L44.4167308,112.211846 L50.5170769,115.725923 L44.4196923,119.251846 L44.9489615,120.167385","id","Fill-26"],["d","M146.638885,105.637654 L145.581192,105.637654 C145.580769,107.208115 144.947423,108.619923 143.918923,109.650115 C142.888731,110.678615 141.476923,111.311538 139.906885,111.312385 C138.336423,111.311538 136.924192,110.678615 135.893577,109.650115 C134.865077,108.619923 134.232154,107.208115 134.231731,105.637654 C134.232154,104.066769 134.865077,102.654962 135.893577,101.624769 C136.924192,100.596269 138.336423,99.9633462 139.906885,99.9625 C141.476923,99.9633462 142.888731,100.596269 143.918923,101.624769 C144.947423,102.654962 145.580769,104.066769 145.581192,105.637654 L147.696577,105.637654 C147.695731,101.334538 144.209154,97.8479615 139.906885,97.8471154 C135.603769,97.8479615 132.116769,101.334538 132.116346,105.637654 C132.116769,109.940346 135.603769,113.426923 139.906885,113.427769 C144.209154,113.426923 147.695731,109.940346 147.696577,105.637654 L146.638885,105.637654","id","Fill-27"],["d","M112.621808,30.5059615 L111.564115,30.5059615 C111.563692,32.0768462 110.930769,33.4886538 109.901846,34.5188462 C108.871654,35.5473462 107.459846,36.1802692 105.889385,36.1811154 C104.318923,36.1802692 102.907115,35.5473462 101.8765,34.5188462 C100.848,33.4886538 100.214654,32.0764231 100.214231,30.5059615 C100.214654,28.9355 100.848,27.5236923 101.8765,26.4935 C102.907115,25.465 104.318923,24.8320769 105.889385,24.8316538 C107.459846,24.8320769 108.871654,25.465 109.901846,26.4935 C110.930769,27.5236923 111.563692,28.9355 111.564115,30.5059615 L113.6795,30.5059615 C113.678654,26.2032692 110.192077,22.7166923 105.889385,22.7162692 C101.586692,22.7166923 98.0996923,26.2032692 98.0988462,30.5059615 C98.0996923,34.8095 101.586692,38.2956538 105.889385,38.2965 C110.192077,38.2956538 113.678654,34.8090769 113.6795,30.5059615 L112.621808,30.5059615","id","Fill-28"],["d","M116.918154,229.204885 L115.860462,229.204885 C115.860038,230.775346 115.227115,232.187577 114.198192,233.217769 C113.168,234.246269 111.756192,234.879615 110.185731,234.880038 C108.615692,234.879615 107.203462,234.246269 106.172846,233.217769 C105.144346,232.187154 104.511423,230.775346 104.510577,229.204885 C104.511423,227.634423 105.144346,226.222615 106.172846,225.192423 C107.203462,224.163923 108.615692,223.531 110.185731,223.530577 C111.756192,223.531 113.168423,224.163923 114.198615,225.192423 C115.227115,226.222615 115.860038,227.634423 115.860462,229.204885 L117.975846,229.204885 C117.975423,224.901769 114.488423,221.415615 110.185731,221.415192 C108.038192,221.414346 106.084,222.288423 104.677269,223.696423 C103.268846,225.102731 102.394769,227.056923 102.395192,229.204885 C102.396038,233.508 105.883462,236.994577 110.185731,236.995423 C114.488423,236.994577 117.975423,233.508 117.975846,229.204885 L116.918154,229.204885","id","Fill-29"],["d","M135.982423,219.142846 C135.983269,217.572385 136.616192,216.160577 137.645115,215.130385 C138.675308,214.101885 140.087538,213.468962 141.658,213.468538 C143.228462,213.468962 144.640269,214.101885 145.670885,215.130385 C146.699385,216.160154 147.332308,217.572385 147.332731,219.142846 C147.332731,219.726692 147.806577,220.200538 148.390423,220.200538 C148.974692,220.200538 149.448115,219.726692 149.448115,219.142846 C149.447692,214.839731 145.960692,211.353577 141.658,211.353153 C139.510038,211.352308 137.555846,212.226385 136.149538,213.634385 C134.741115,215.040269 133.866615,216.994462 133.867038,219.142846 C133.867038,219.726692 134.340885,220.200538 134.924731,220.200538 C135.509,220.200538 135.982423,219.726692 135.982423,219.142846","id","Fill-30"],["d","M82.247,115.736077 C82.2474231,114.165615 82.8807692,112.753385 83.9092692,111.723192 C84.9398846,110.694692 86.3521154,110.061769 87.9221538,110.061346 C89.4926154,110.061769 90.9044231,110.694692 91.9350385,111.723192 C92.9635385,112.753385 93.5964615,114.165192 93.5968846,115.736077 C93.5968846,116.319923 94.0707308,116.793769 94.6545769,116.793769 C95.2388462,116.793769 95.7122692,116.319923 95.7122692,115.736077 C95.7118462,111.432962 92.2248462,107.946385 87.9221538,107.945538 C83.6198846,107.946385 80.1324615,111.432962 80.1316154,115.736077 C80.1316154,116.319923 80.6054615,116.793769 81.1893077,116.793769 C81.7735769,116.793769 82.247,116.319923 82.247,115.736077","id","Fill-31"],["d","M11.4163077,61.0732692 C11.4167308,59.5011154 12.0479615,58.0884615 13.0713846,57.0586923 C14.0969231,56.0306154 15.5006923,55.3989615 17.061,55.3981154 C18.6213077,55.3989615 20.0250769,56.0306154 21.0501923,57.0586923 C22.0736154,58.0884615 22.7048462,59.5011154 22.7052692,61.0732692 C22.7052692,61.6571154 23.1786923,62.1309615 23.7629615,62.1309615 C24.3468077,62.1309615 24.820654,61.6571154 24.820654,61.0732692 C24.8210769,58.9265769 23.9516538,56.9732308 22.5495769,55.5660769 C21.1491923,54.1576538 19.2017692,53.2823077 17.061,53.2827306 C14.9202308,53.2823077 12.9728077,54.1576538 11.5724231,55.5660769 C10.1699231,56.9732308 9.3005,58.9265769 9.30092292,61.0732692 C9.30092292,61.6571154 9.77434615,62.1309615 10.3586154,62.1309615 C10.9428846,62.1309615 11.4163077,61.6571154 11.4163077,61.0732692","id","Fill-32"],["d","M180.062808,71.0401154 C178.491077,71.0396923 177.078,70.4084615 176.048231,69.3850385 C175.019731,68.3595 174.388077,66.9557308 174.387654,65.3954231 C174.388077,63.8351154 175.019731,62.4317692 176.048231,61.4062308 C177.078,60.3828077 178.490654,59.752 180.062808,59.7511538 C180.647077,59.7511538 181.1205,59.2777308 181.1205,58.6938846 C181.1205,58.1096154 180.647077,57.6361917 180.062808,57.6361917 C177.916115,57.6353462 175.962769,58.5047692 174.555615,59.9072692 C173.147192,61.3072308 172.271423,63.2546538 172.272269,65.3954231 C172.271423,67.5361923 173.147192,69.4836154 174.555615,70.884 C175.962769,72.2865 177.916115,73.1559231 180.062808,73.1555002 C180.647077,73.1555002 181.1205,72.6820769 181.1205,72.0978077 C181.1205,71.5135385 180.647077,71.0401154 180.062808,71.0401154","id","Fill-33"],["d","M17.9490385,228.116731 C16.3768846,228.115885 14.9642308,227.485077 13.9344615,226.461654 C12.9063846,225.436115 12.2747308,224.032346 12.2743077,222.472038 C12.2747308,220.911731 12.9063846,219.507962 13.9344615,218.482846 C14.9642308,217.459423 16.3768846,216.828615 17.9490385,216.828192 C18.5328846,216.828192 19.0067308,216.354769 19.0067308,215.7705 C19.0067308,215.186231 18.5328846,214.712808 17.9490385,214.712808 C15.8023462,214.712385 13.849,215.581808 12.4418462,216.983885 C11.0334231,218.383846 10.1580769,220.331269 10.1589225,222.472038 C10.1580769,224.612808 11.0334231,226.560231 12.4418462,227.960615 C13.849,229.362692 15.8023462,230.232538 17.9490385,230.232116 C18.5328846,230.232116 19.0067308,229.758269 19.0067308,229.174423 C19.0067308,228.590154 18.5328846,228.116731 17.9490385,228.116731","id","Fill-34"],["d","M90.1932308,14.0000385 C88.6215,13.9996154 87.2088462,13.3683846 86.1790769,12.3449615 C85.151,11.3194231 84.5193462,9.91565385 84.5185,8.35534615 C84.5193462,6.79503846 85.151,5.39126923 86.1790769,4.36615385 C87.2088462,3.34273077 88.6215,2.7115 90.1932308,2.71107692 C90.7775,2.71107692 91.2509231,2.23765385 91.2509231,1.65338462 C91.2509231,1.06953846 90.7775,0.595692153 90.1932308,0.595692153 C88.0469615,0.595269231 86.0936154,1.46469231 84.6864615,2.86676923 C83.2780385,4.26715385 82.4026923,6.21457692 82.4031152,8.35534615 C82.4026923,10.4961154 83.2780385,12.4435385 84.6864615,13.8439231 C86.0931923,15.2464231 88.0469615,16.1158462 90.1932308,16.1154232 C90.7775,16.1154232 91.2509231,15.642 91.2509231,15.0577308 C91.2509231,14.4734615 90.7775,14.0000385 90.1932308,14.0000385","id","Fill-35"],["d","M21.3154615,158.362769 L20.2577692,158.362769 C20.2569231,159.933231 19.624,161.345038 18.5955,162.375654 C17.5653077,163.404154 16.1530769,164.037077 14.5830385,164.037923 C13.0125769,164.037077 11.6003462,163.404154 10.5701538,162.375654 C9.54123077,161.345038 8.90830769,159.933231 8.90788462,158.362769 C8.90830769,156.792308 9.54123077,155.3805 10.5701538,154.350308 C11.6003462,153.321808 13.0125769,152.688885 14.5830385,152.688038 C16.1530769,152.688885 17.5653077,153.321808 18.5955,154.349885 C19.624,155.380077 20.2569231,156.791885 20.2577692,158.362769 L22.3731538,158.362769 C22.3723077,154.059654 18.8853077,150.5735 14.5830385,150.572654 C12.4350769,150.572231 10.4808846,151.446308 9.07415385,152.854308 C7.66615385,154.260192 6.79165385,156.214385 6.79249939,158.362769 C6.79292308,162.665885 10.2803462,166.152462 14.5830385,166.153308 C18.8853077,166.152462 22.3723077,162.665462 22.3731538,158.362769 L21.3154615,158.362769","id","Fill-36"],["d","M228.928192,166.051346 L227.8705,166.051346 C227.869654,167.621808 227.236731,169.034038 226.208231,170.064654 C225.178038,171.093154 223.766231,171.726077 222.196192,171.7265 C220.625731,171.726077 219.2135,171.093154 218.183308,170.064654 C217.154385,169.034038 216.521462,167.621808 216.521038,166.051346 C216.521462,164.480885 217.154385,163.069077 218.182885,162.038885 C219.2135,161.010385 220.625308,160.377885 222.196192,160.377038 C223.766231,160.377885 225.178038,161.010385 226.208231,162.038885 C227.236731,163.069077 227.869654,164.480885 227.8705,166.051346 L229.985885,166.051346 C229.985038,161.748231 226.498038,158.2625 222.196192,158.261654 C217.8935,158.2625 214.406077,161.748231 214.405654,166.051346 C214.406077,170.354462 217.893077,173.841462 222.196192,173.841885 C226.498462,173.841462 229.985038,170.354462 229.985885,166.051346 L228.928192,166.051346","id","Fill-37"],["d","M210.305192,58.6993846 L210.305192,59.7570769 L222.64,59.7570769 L222.64,71.0337692 L211.362885,71.0337692 L211.362885,58.6993846 L210.305192,58.6993846 L210.305192,59.7570769 L210.305192,58.6993846 L209.2475,58.6993846 L209.2475,72.0914615 C209.2475,72.3702692 209.360462,72.6427308 209.557192,72.8394615 C209.754346,73.0366154 210.026808,73.1491538 210.305192,73.1491538 L223.697692,73.1491538 C223.976077,73.1491538 224.248538,73.0366154 224.445269,72.8394615 C224.642423,72.6427308 224.755385,72.3702692 224.755385,72.0914615 L224.755385,58.6993846 C224.755385,58.421 224.642423,58.1485385 224.445269,57.9513846 C224.248538,57.7546538 223.976077,57.6416923 223.697692,57.6416923 L210.305192,57.6416923 C210.026808,57.6416923 209.754346,57.7546538 209.557192,57.9513846 C209.360462,58.1485385 209.2475,58.421 209.2475,58.6993846 L210.305192,58.6993846","id","Fill-38"],["d","M58.8897692,65.3954231 L58.8897692,66.4531154 L71.2237308,66.4531154 L71.2237308,77.7302308 L59.9474615,77.7302308 L59.9474615,65.3954231 L58.8897692,65.3954231 L58.8897692,66.4531154 L58.8897692,65.3954231 L57.8320769,65.3954231 L57.8320769,78.7879231 C57.8320769,79.0663077 57.9450385,79.3387692 58.1417692,79.5355 C58.3389231,79.7326538 58.6113846,79.8456154 58.8897692,79.8456154 L72.2814231,79.8456154 C72.5602308,79.8456154 72.8326923,79.7326538 73.0294231,79.5355 C73.2265769,79.3387692 73.3391154,79.0663077 73.3391154,78.7879231 L73.3391154,65.3954231 C73.3391154,65.1170385 73.2265769,64.8445769 73.0294231,64.6478462 C72.8326923,64.4506923 72.5602308,64.3377308 72.2814231,64.3377308 L58.8897692,64.3377308 C58.6113846,64.3377308 58.3389231,64.4506923 58.1417692,64.6478462 C57.9450385,64.8445769 57.8320769,65.1170385 57.8320769,65.3954231 L58.8897692,65.3954231","id","Fill-39"],["d","M58.2175,150.893346 L58.2175,151.951038 L70.5518846,151.951038 L70.5518846,163.228154 L59.2751923,163.228154 L59.2751923,150.893346 L58.2175,150.893346 L58.2175,151.951038 L58.2175,150.893346 L57.1598077,150.893346 L57.1598077,164.285846 C57.1598077,164.564231 57.2727692,164.836692 57.4699231,165.033423 C57.6666538,165.230577 57.9391154,165.343538 58.2175,165.343538 L71.6095769,165.343538 C71.8879615,165.343538 72.1604231,165.230577 72.3571538,165.033423 C72.5543077,164.836692 72.6672692,164.564231 72.6672692,164.285846 L72.6672692,150.893346 C72.6672692,150.614962 72.5543077,150.3425 72.3571538,150.145346 C72.1604231,149.948615 71.8879615,149.835654 71.6095769,149.835654 L58.2175,149.835654 C57.9391154,149.835654 57.6666538,149.948615 57.4699231,150.145346 C57.2727692,150.3425 57.1598077,150.614962 57.1598077,150.893346 L58.2175,150.893346","id","Fill-40"],["d","M210.305192,215.776423 L210.305192,216.834115 L222.639154,216.834115 L222.639154,228.110808 L211.362885,228.110808 L211.362885,215.776423 L210.305192,215.776423 L210.305192,216.834115 L210.305192,215.776423 L209.2475,215.776423 L209.2475,229.1685 C209.2475,229.446885 209.360462,229.719346 209.557192,229.9165 C209.754346,230.113231 210.026808,230.226192 210.305192,230.226192 L223.696846,230.226192 C223.975231,230.226192 224.247692,230.113231 224.444423,229.9165 C224.641577,229.719346 224.754538,229.446885 224.754538,229.1685 L224.754538,215.776423 C224.754538,215.497615 224.641577,215.225154 224.444423,215.028423 C224.247692,214.831269 223.975231,214.718731 223.696846,214.718731 L210.305192,214.718731 C210.026808,214.718731 209.754346,214.831269 209.557192,215.028423 C209.360462,215.225154 209.2475,215.497615 209.2475,215.776423 L210.305192,215.776423","id","Fill-41"],["d","M154.751808,1.65973077 L154.751808,2.71742308 L167.085346,2.71742308 L167.085346,13.9941154 L155.8095,13.9941154 L155.8095,1.65973077 L154.751808,1.65973077 L154.751808,2.71742308 L154.751808,1.65973077 L153.694115,1.65973077 L153.694115,15.0518077 C153.694115,15.3306154 153.806654,15.6030769 154.003808,15.7998077 C154.200538,15.9965385 154.473,16.1095 154.751808,16.1095 L168.143038,16.1095 C168.421423,16.1095 168.693885,15.9965385 168.891038,15.7998077 C169.087769,15.6030769 169.200731,15.3306154 169.200731,15.0518077 L169.200731,1.65973077 C169.200731,1.38134615 169.087769,1.10888462 168.891038,0.911730769 C168.693885,0.715 168.421423,0.602038462 168.143038,0.602038462 L154.751808,0.602038462 C154.473,0.602038462 154.200538,0.715 154.003808,0.911730769 C153.806654,1.10888462 153.694115,1.38134615 153.694115,1.65973077 L154.751808,1.65973077","id","Fill-42"],["d","M135.508154,136.771462 C135.298731,136.769769 135.172654,136.731692 135.044885,136.667808 C134.934038,136.610269 134.818962,136.522692 134.692038,136.386462 C134.469077,136.151231 134.227077,135.765385 133.973654,135.300423 C133.585692,134.604885 133.179962,133.738423 132.487808,132.969692 C132.140885,132.587654 131.710615,132.232269 131.180923,131.980115 C130.6525,131.726692 130.033538,131.585808 129.357885,131.587068 C128.773615,131.587068 128.300192,132.060923 128.300192,132.644769 C128.300192,133.229038 128.773615,133.702462 129.357885,133.702462 C129.702269,133.703308 129.957808,133.76 130.175269,133.847577 C130.365654,133.925423 130.530654,134.0295 130.692692,134.168269 C130.975308,134.409 131.243115,134.767769 131.503731,135.2065 C131.901,135.862692 132.255115,136.675423 132.809346,137.425962 C133.089,137.799538 133.432538,138.165077 133.889038,138.443462 C134.342577,138.722692 134.9095,138.890231 135.508154,138.886896 C136.092423,138.886896 136.565846,138.413423 136.565846,137.829154 C136.565846,137.245308 136.092423,136.771462 135.508154,136.771462","id","Fill-43"],["d","M147.808269,136.771462 C147.598423,136.769769 147.472346,136.731692 147.344577,136.667808 C147.233731,136.610269 147.119077,136.522692 146.991731,136.386462 C146.768769,136.151231 146.526769,135.765385 146.273346,135.300423 C145.885385,134.604885 145.480077,133.738423 144.787923,132.970115 C144.441,132.587654 144.011154,132.232269 143.481462,131.980115 C142.953038,131.726692 142.334077,131.585808 141.658423,131.587068 C141.074577,131.587068 140.600731,132.060923 140.600731,132.644769 C140.600731,133.229038 141.074577,133.702462 141.658423,133.702462 C142.002808,133.703308 142.258346,133.76 142.475808,133.847577 C142.665769,133.925 142.830769,134.0295 142.992808,134.168269 C143.275423,134.409 143.543231,134.767769 143.803423,135.2065 C144.201115,135.862692 144.555231,136.675423 145.109038,137.425962 C145.389115,137.799538 145.732231,138.165077 146.188731,138.443462 C146.642692,138.722692 147.209192,138.890231 147.808269,138.886896 C148.392115,138.886896 148.865962,138.413423 148.865962,137.829154 C148.865962,137.245308 148.392115,136.771462 147.808269,136.771462","id","Fill-44"],["d","M135.508154,138.886873 C136.029808,138.888962 136.527346,138.764577 136.945769,138.545423 C137.313423,138.354615 137.617615,138.101192 137.870615,137.830423 C138.313154,137.353615 138.616923,136.825192 138.896577,136.319615 C139.3095,135.559346 139.676731,134.8435 140.093462,134.393346 C140.300769,134.166154 140.5085,134.003269 140.746269,133.889462 C140.985308,133.776923 141.262846,133.704154 141.658423,133.702462 C142.242692,133.702462 142.716115,133.229038 142.716115,132.644769 C142.716115,132.060923 142.242692,131.587076 141.658423,131.587076 C141.070346,131.586654 140.525423,131.692 140.045231,131.887885 C139.624269,132.058385 139.257462,132.295308 138.945654,132.563538 C138.398615,133.034846 138.015731,133.589923 137.696731,134.122154 C137.225,134.921346 136.870038,135.691346 136.512962,136.159269 C136.337385,136.394923 136.1745,136.548077 136.028538,136.635654 C135.880038,136.721962 135.748885,136.7685 135.508154,136.771462 C134.924308,136.771462 134.450462,137.245308 134.450462,137.829154 C134.450462,138.413423 134.924308,138.886873 135.508154,138.886873","id","Fill-45"],["d","M147.808269,138.886873 C148.3295,138.888962 148.827038,138.764577 149.245462,138.545423 C149.613115,138.354615 149.917308,138.101192 150.170308,137.830423 C150.612423,137.353192 150.916192,136.825192 151.196269,136.319615 C151.608769,135.559346 151.976,134.8435 152.392731,134.393346 C152.600038,134.166154 152.808192,134.003269 153.045538,133.889462 C153.284577,133.776923 153.562115,133.704154 153.957692,133.702462 C154.541538,133.702462 155.015385,133.229038 155.015385,132.644769 C155.015385,132.060923 154.541538,131.587076 153.957692,131.587076 C153.369192,131.586654 152.824269,131.692 152.344077,131.887885 C151.923538,132.058385 151.556731,132.295308 151.244923,132.563538 C150.697885,133.034846 150.315,133.589923 149.996,134.122154 C149.524269,134.921346 149.169731,135.691346 148.812231,136.159269 C148.636654,136.394923 148.473769,136.548077 148.328231,136.635654 C148.179731,136.721962 148.048154,136.7685 147.808269,136.771462 C147.224,136.771462 146.750577,137.245308 146.750577,137.829154 C146.750577,138.413423 147.224,138.886873 147.808269,138.886873","id","Fill-46"],["d","M170.546962,233.332423 C170.337115,233.330308 170.211038,233.292654 170.083269,233.228346 C169.972423,233.170808 169.857769,233.083231 169.730423,232.947 C169.507462,232.711769 169.265462,232.325923 169.012038,231.860962 C168.624077,231.165423 168.218346,230.298538 167.526615,229.529808 C167.179692,229.147769 166.749,228.792385 166.219308,228.540231 C165.690885,228.286385 165.071923,228.145923 164.396692,228.147184 C163.812423,228.147184 163.339,228.620615 163.339,229.204885 C163.339,229.789154 163.812423,230.262577 164.396692,230.262577 C164.741077,230.263423 164.996192,230.319692 165.214077,230.407692 C165.404038,230.485115 165.569038,230.589192 165.7315,230.727962 C166.013692,230.969115 166.2815,231.327885 166.542115,231.766615 C166.939385,232.422808 167.293923,233.235538 167.847731,233.9865 C168.127808,234.360077 168.470923,234.725615 168.927423,235.004 C169.381385,235.283654 169.947885,235.451192 170.546962,235.447858 C171.130808,235.447858 171.604654,234.973962 171.604654,234.390115 C171.604654,233.805846 171.130808,233.332423 170.546962,233.332423","id","Fill-47"],["d","M182.846654,233.332423 C182.637231,233.330308 182.510731,233.292654 182.382962,233.228346 C182.272538,233.170808 182.157462,233.083231 182.030115,232.947 C181.807154,232.711769 181.565577,232.326346 181.311731,231.861385 C180.924192,231.165846 180.518462,230.299385 179.826731,229.530654 C179.479808,229.148615 179.049538,228.793231 178.519846,228.540654 C177.991423,228.287231 177.372462,228.146769 176.697231,228.14803 C176.112962,228.14803 175.639538,228.621462 175.639538,229.205731 C175.639538,229.79 176.112962,230.263423 176.697231,230.263423 C177.041615,230.264269 177.296731,230.320538 177.514192,230.408115 C177.704154,230.485962 177.869577,230.590038 178.031615,230.728808 C178.313808,230.969538 178.581615,231.328308 178.842231,231.767038 C179.2395,232.423231 179.593615,233.235962 180.147846,233.9865 C180.4275,234.360077 180.771038,234.725615 181.227538,235.004 C181.681077,235.283654 182.247577,235.451192 182.846654,235.447858 C183.430923,235.447858 183.904346,234.973962 183.904346,234.390115 C183.904346,233.805846 183.430923,233.332423 182.846654,233.332423","id","Fill-48"],["d","M170.546962,235.447825 C171.068192,235.4495 171.565731,235.325538 171.984577,235.105962 C172.352231,234.915577 172.656423,234.662154 172.909,234.390962 C173.351538,233.914154 173.655308,233.385731 173.935385,232.880154 C174.347885,232.120308 174.715115,231.404038 175.131846,230.953885 C175.339154,230.726692 175.547308,230.563808 175.785077,230.45 C176.023692,230.337462 176.301231,230.264692 176.697231,230.263423 C177.2815,230.263423 177.754923,229.79 177.754923,229.205731 C177.754923,228.621462 177.2815,228.148033 176.697231,228.148033 C176.108731,228.147192 175.563808,228.252538 175.083615,228.448423 C174.663077,228.618923 174.295846,228.855846 173.984038,229.124077 C173.437,229.595808 173.054115,230.150885 172.735115,230.682692 C172.263385,231.481885 171.908846,232.251885 171.551769,232.719808 C171.375769,232.955885 171.212885,233.108615 171.067346,233.196192 C170.918846,233.282923 170.787269,233.329038 170.546962,233.332423 C169.962692,233.332423 169.489269,233.805846 169.489269,234.390115 C169.489269,234.973962 169.962692,235.447825 170.546962,235.447825","id","Fill-49"],["d","M182.847077,235.447825 C183.368308,235.4495 183.865846,235.325115 184.284269,235.105538 C184.6515,234.915154 184.955692,234.661731 185.208692,234.390538 C185.650808,233.913731 185.954577,233.385308 186.234654,232.880154 C186.647154,232.119885 187.014385,231.404038 187.431115,230.953885 C187.638423,230.726692 187.846154,230.563808 188.0835,230.45 C188.322538,230.337462 188.599654,230.264692 188.995231,230.263423 L188.995654,230.263423 L188.995654,229.208692 L188.828962,230.249885 C188.906385,230.262154 188.966038,230.263423 188.995654,230.263423 L188.995654,229.208692 L188.828962,230.249885 C189.405615,230.342115 189.948,229.9495 190.040654,229.372846 C190.132885,228.795769 189.739846,228.253385 189.163192,228.161154 C189.085769,228.148885 189.025692,228.148033 188.995654,228.148033 L188.995231,228.148033 C188.407154,228.147192 187.862231,228.252538 187.382038,228.448423 C186.9615,228.618923 186.594692,228.855846 186.282885,229.124077 C185.736269,229.595385 185.353385,230.150462 185.034385,230.682269 C184.562654,231.481462 184.208115,232.251462 183.851038,232.719808 C183.675038,232.955462 183.512154,233.108192 183.366615,233.196192 C183.218115,233.2825 183.086538,233.329038 182.846231,233.332423 C182.261962,233.332423 181.788962,233.806269 181.788962,234.390115 C181.788962,234.974385 182.262808,235.447825 182.847077,235.447825","id","Fill-50"],["d","M187.318577,94.1223462 C187.109154,94.1202308 186.983077,94.0825769 186.855308,94.0182692 C186.744462,93.9607308 186.629385,93.8731538 186.502462,93.7369231 C186.2795,93.5016923 186.0375,93.1162692 185.784077,92.6508846 C185.396115,91.9553462 184.990385,91.0888846 184.298654,90.3201538 C183.951731,89.9381154 183.521462,89.5827308 182.991769,89.3305769 C182.463346,89.0767308 181.844385,88.9362692 181.169154,88.9375299 C180.584885,88.9375299 180.111462,89.4109615 180.111462,89.9952308 C180.111462,90.5795 180.584885,91.0529231 181.169154,91.0529231 C181.513538,91.0537692 181.768654,91.1100385 181.986115,91.1980385 C182.1765,91.2754615 182.3415,91.3795385 182.503538,91.5183077 C182.786154,91.7590385 183.053538,92.1182308 183.314154,92.5565385 C183.711423,93.2131538 184.065538,94.0258846 184.619769,94.7764231 C184.899423,95.15 185.242962,95.5155385 185.699462,95.7939231 C186.153,96.0735769 186.7195,96.2411154 187.318577,96.2377811 C187.902846,96.2377811 188.376269,95.7638846 188.376269,95.1800385 C188.376269,94.5957692 187.902846,94.1223462 187.318577,94.1223462","id","Fill-51"],["d","M199.618692,94.1223462 C199.408846,94.1202308 199.282769,94.0825769 199.155,94.0182692 C199.044154,93.9607308 198.9295,93.8731538 198.802154,93.7369231 C198.579192,93.5016923 198.337192,93.1162692 198.083769,92.6513077 C197.695808,91.9557692 197.2905,91.0893077 196.598346,90.3205769 C196.251423,89.9385385 195.821154,89.5831538 195.291885,89.331 C194.763038,89.0771538 194.1445,88.9366923 193.468846,88.937953 C192.885,88.937953 192.411154,89.4113846 192.411154,89.9956538 C192.411154,90.5799231 192.885,91.0533462 193.468846,91.0533462 C193.813231,91.0541923 194.068769,91.1104615 194.286231,91.1980385 C194.476192,91.2758846 194.641192,91.3799615 194.803231,91.5187308 C195.085846,91.7594615 195.353231,92.1182308 195.613846,92.5569615 C196.011115,93.2131538 196.365654,94.0258846 196.919462,94.7768462 C197.199538,95.15 197.542654,95.5155385 197.999154,95.7939231 C198.453115,96.0735769 199.019615,96.2411154 199.618692,96.2377811 C200.202538,96.2377811 200.676385,95.7638846 200.676385,95.1800385 C200.676385,94.5957692 200.202538,94.1223462 199.618692,94.1223462","id","Fill-52"],["d","M187.318577,96.2377479 C187.839808,96.2394231 188.337769,96.1154615 188.756192,95.8958846 C189.123846,95.7055 189.428038,95.4520769 189.681038,95.1808846 C190.123577,94.7040769 190.427346,94.1756538 190.707423,93.6705 C191.119923,92.9102308 191.487577,92.1939615 191.904308,91.7438077 C192.111615,91.5166154 192.319346,91.3537308 192.557115,91.2399231 C192.795731,91.1273846 193.073269,91.0546154 193.468846,91.0533462 C194.053115,91.0533462 194.526538,90.5799231 194.526538,89.9956538 C194.526538,89.4113846 194.053115,88.9379565 193.468846,88.9379565 C192.880769,88.9371154 192.335846,89.0424615 191.855654,89.2383462 C191.435115,89.4088462 191.067885,89.6457692 190.756077,89.914 C190.209462,90.3857308 189.826154,90.9408077 189.507577,91.4726154 C189.035423,92.2718077 188.680885,93.0418077 188.323808,93.5097308 C188.147808,93.7453846 187.984923,93.8985385 187.839385,93.9861154 C187.690462,94.0728462 187.558885,94.1189615 187.318577,94.1223462 C186.734731,94.1223462 186.260885,94.5957692 186.260885,95.1800385 C186.260885,95.7638846 186.734731,96.2377479 187.318577,96.2377479","id","Fill-53"],["d","M199.618692,96.2377478 C200.139923,96.2394231 200.637462,96.1150385 201.056308,95.8958846 C201.423538,95.7050769 201.728154,95.4516538 201.980731,95.1808846 C202.423269,94.7036538 202.727038,94.1756538 203.006692,93.6700769 C203.419615,92.9102308 203.786846,92.1939615 204.203577,91.7438077 C204.410885,91.5166154 204.618615,91.3537308 204.856385,91.2399231 C205.095423,91.1273846 205.372962,91.0546154 205.768962,91.0533462 C206.352808,91.0533462 206.826654,90.5795 206.826654,89.9956538 C206.826654,89.4113846 206.352808,88.9379565 205.768962,88.9379565 C205.180462,88.9371154 204.635538,89.0424615 204.155346,89.2383462 C203.734808,89.4088462 203.367577,89.6457692 203.055769,89.914 C202.508731,90.3853077 202.125846,90.9403846 201.806846,91.4721923 C201.335115,92.2718077 200.980577,93.0418077 200.623077,93.5097308 C200.4475,93.7453846 200.284615,93.8985385 200.138654,93.9861154 C199.990154,94.0724231 199.858577,94.1189615 199.618269,94.1223462 C199.034,94.1223462 198.560577,94.5957692 198.560577,95.1800385 C198.561,95.7643077 199.034423,96.2377478 199.618692,96.2377478","id","Fill-54"],["d","M16.2766154,87.857 C16.0667692,87.8553077 15.9406923,87.8172308 15.8129231,87.7529231 C15.7020769,87.6958077 15.5874231,87.6078077 15.4600769,87.472 C15.2371154,87.2367692 14.9951154,86.8509231 14.7416923,86.3859615 C14.3537308,85.6904231 13.948,84.8235385 13.2562692,84.0552308 C12.9093462,83.6727692 12.4790769,83.3173846 11.9493846,83.0652308 C11.4209615,82.8118077 10.802,82.6709231 10.1263462,82.6721838 C9.5425,82.6721838 9.06865385,83.1460385 9.06865385,83.7298846 C9.06865385,84.3141538 9.5425,84.7875769 10.1263462,84.7875769 C10.4707308,84.7884231 10.7262692,84.8451154 10.9437308,84.9326923 C11.1341154,85.0101154 11.2991154,85.1146154 11.4611538,85.2533846 C11.7437692,85.4941154 12.0111538,85.8528846 12.2717692,86.2916154 C12.6690385,86.9478077 13.0235769,87.7605385 13.5773846,88.5115 C13.8574615,88.8850769 14.2005769,89.2506154 14.6570769,89.5285769 C15.1110385,89.8082308 15.6775385,89.9757692 16.2766154,89.9724349 C16.8604615,89.9724349 17.3343077,89.4989615 17.3343077,88.9146923 C17.3343077,88.3304231 16.8604615,87.857 16.2766154,87.857","id","Fill-55"],["d","M28.5763077,87.857 C28.3664615,87.8553077 28.2403846,87.8172308 28.1126154,87.7529231 C28.0017692,87.6958077 27.8871154,87.6078077 27.7597692,87.472 C27.5368077,87.2367692 27.2948077,86.8509231 27.0413846,86.3859615 C26.6538462,85.6904231 26.2481154,84.8239615 25.5563846,84.0552308 C25.2094615,83.6731923 24.7791923,83.3178077 24.2495,83.0656538 C23.7210769,82.8122308 23.1021154,82.6713462 22.4268846,82.6726069 C21.8426154,82.6726069 21.3691923,83.1464615 21.3691923,83.7303077 C21.3691923,84.3145769 21.8426154,84.788 22.4268846,84.788 C22.7708462,84.7888462 23.0263846,84.8455385 23.2438462,84.9331154 C23.4338077,85.0105385 23.5988077,85.1150385 23.7612692,85.2538077 C24.0434615,85.4945385 24.3112692,85.8533077 24.5718846,86.2920385 C24.9691538,86.9482308 25.3232692,87.7609615 25.8775,88.5115 C26.1571538,88.8850769 26.5006923,89.2506154 26.9571923,89.5285769 C27.4107308,89.8082308 27.9772308,89.9757692 28.5763077,89.9724349 C29.1605769,89.9724349 29.634,89.4989615 29.634,88.9146923 C29.634,88.3304231 29.1605769,87.857 28.5763077,87.857","id","Fill-56"],["d","M16.2766154,89.9724112 C16.7978462,89.9745 17.2953846,89.8501154 17.7142308,89.6309615 C18.0814615,89.4401538 18.3860769,89.1867308 18.6386538,88.9159615 C19.0811923,88.4387308 19.3849615,87.9107308 19.6650385,87.4051538 C20.0775385,86.6448846 20.4451923,85.9290385 20.8619231,85.4788846 C21.0692308,85.2516923 21.2769615,85.0888077 21.5147308,84.975 C21.7533462,84.8624615 22.0308846,84.7892692 22.4268846,84.788 C23.0107308,84.788 23.4845769,84.3145769 23.4845769,83.7303077 C23.4845769,83.1464615 23.0107308,82.6726103 22.4268846,82.6726103 C21.8383846,82.6717692 21.2934615,82.7775385 20.8132692,82.9734231 C20.3927308,83.1439231 20.0255,83.3804231 19.7136923,83.6486538 C19.1670769,84.1203846 18.7837692,84.6754615 18.4647692,85.2072692 C17.9930385,86.0068846 17.6385,86.7764615 17.2814231,87.2448077 C17.1054231,87.4804615 16.9425385,87.6331923 16.797,87.7211923 C16.6485,87.8075 16.5169231,87.8536154 16.2766154,87.857 C15.6923462,87.857 15.2189231,88.3304231 15.2189231,88.9146923 C15.2189231,89.4989615 15.6923462,89.9724112 16.2766154,89.9724112","id","Fill-57"],["d","M28.5763077,89.9724017 C29.0975385,89.9740769 29.5950769,89.8501154 30.0139231,89.6305385 C30.3815769,89.4401538 30.6857692,89.1867308 30.9383462,88.9155385 C31.3808846,88.4387308 31.6842308,87.9103077 31.9643077,87.4047308 C32.3768077,86.6448846 32.7444615,85.9286154 33.1607692,85.4788846 C33.3685,85.2516923 33.5762308,85.0888077 33.8135769,84.975 C34.0526154,84.8624615 34.3301538,84.7892692 34.7257308,84.788 L34.7257308,83.7332692 L34.6381538,84.7846154 C34.6804615,84.788 34.7109231,84.788 34.7257308,84.788 L34.7257308,83.7332692 L34.6381538,84.7846154 C35.2203077,84.8328462 35.7318077,84.4004615 35.7800385,83.8183077 C35.8286923,83.2361538 35.3963077,82.7246538 34.8141538,82.6764231 C34.7714231,82.6730385 34.7409615,82.6726141 34.7257308,82.6726141 C34.1376538,82.6721923 33.5927308,82.7775385 33.1121154,82.9734231 C32.692,83.1435 32.3247692,83.3804231 32.0129615,83.6486538 C31.4659231,84.1203846 31.0830385,84.6754615 30.7644615,85.2072692 C30.2927308,86.0064615 29.9377692,86.7764615 29.5806923,87.2443846 C29.4046923,87.4804615 29.2422308,87.6331923 29.0962692,87.7211923 C28.9477692,87.8075 28.8161923,87.8536154 28.5758846,87.857 C27.9920385,87.857 27.5186154,88.3308462 27.5186154,88.9151154 C27.5186154,89.4989615 27.9920385,89.9724017 28.5763077,89.9724017","id","Fill-58"],["d","M135.468808,19.5072308 C135.466692,19.7170769 135.429038,19.8431538 135.364731,19.9709231 C135.307192,20.0817692 135.219615,20.1964231 135.083385,20.3237692 C134.848154,20.5467308 134.462731,20.7887308 133.997346,21.0421538 C133.301808,21.4301154 132.435346,21.8358462 131.667038,22.5275769 C131.285,22.8745 130.929192,23.3047692 130.677038,23.8344615 C130.423615,24.3628846 130.282731,24.9818462 130.284408,25.6575 C130.284408,26.2413462 130.757846,26.7151923 131.342115,26.7151923 C131.925962,26.7151923 132.399808,26.2413462 132.399808,25.6575 C132.400231,25.3131154 132.456923,25.0575769 132.5445,24.8401154 C132.622346,24.6497308 132.726423,24.4847308 132.865192,24.3226923 C133.105923,24.0400769 133.464692,23.7726923 133.903423,23.5120769 C134.559615,23.1148077 135.372346,22.7602692 136.122885,22.2064615 C136.496462,21.9263846 136.862,21.5832692 137.140385,21.1267692 C137.420038,20.6728077 137.587154,20.1063077 137.584231,19.5072308 C137.584231,18.9233846 137.110346,18.4495385 136.5265,18.4495385 C135.942231,18.4495385 135.468808,18.9233846 135.468808,19.5072308","id","Fill-59"],["d","M135.468808,7.20753846 C135.466692,7.41696154 135.429038,7.54346154 135.364731,7.67123077 C135.307192,7.78165385 135.219615,7.89673077 135.083385,8.02407692 C134.848154,8.24703846 134.462731,8.48861538 133.997346,8.74246154 C133.301808,9.13 132.435346,9.53573077 131.667038,10.2274615 C131.285,10.5743846 130.929615,11.0046538 130.677038,11.5343462 C130.423615,12.0627692 130.282731,12.6817308 130.284408,13.3569615 C130.284408,13.9412308 130.757846,14.4146538 131.342115,14.4146538 C131.925962,14.4146538 132.399808,13.9412308 132.399808,13.3569615 C132.400231,13.013 132.456923,12.7574615 132.5445,12.54 C132.622346,12.3500385 132.726423,12.1846154 132.865192,12.0225769 C133.105923,11.7403846 133.464692,11.4725769 133.903423,11.2119615 C134.559615,10.8146923 135.372346,10.4605769 136.122885,9.90634615 C136.496462,9.62669231 136.862,9.28315385 137.140385,8.82665385 C137.420038,8.37311538 137.587154,7.80661538 137.584231,7.20753846 C137.584231,6.62369231 137.110346,6.14984615 136.5265,6.14984615 C135.942231,6.14984615 135.468808,6.62369231 135.468808,7.20753846","id","Fill-60"],["d","M137.584209,19.5072308 C137.585885,18.986 137.461923,18.4884615 137.242346,18.0696154 C137.051962,17.7019615 136.798538,17.3977692 136.527346,17.1451923 C136.050538,16.7026538 135.522115,16.3988846 135.016538,16.1188077 C134.256692,15.7063077 133.540423,15.3386538 133.090269,14.9219231 C132.863077,14.7146154 132.700192,14.5068846 132.586385,14.2691154 C132.473846,14.0305 132.401077,13.7525385 132.399808,13.3569615 C132.399808,12.7731154 131.925962,12.2992692 131.342115,12.2992692 C130.757846,12.2992692 130.284418,12.7731154 130.284418,13.3569615 C130.283577,13.9454615 130.388923,14.4903846 130.584808,14.9705769 C130.755308,15.3911154 130.992231,15.7583462 131.260462,16.0701538 C131.731769,16.6167692 132.287269,17.0000769 132.819077,17.3186538 C133.618269,17.7908077 134.388269,18.1453462 134.856192,18.5024231 C135.091846,18.6784231 135.245,18.8413077 135.332577,18.9868462 C135.418885,19.1353462 135.465423,19.2669231 135.468808,19.5072308 C135.468808,20.0915 135.942231,20.5649231 136.5265,20.5649231 C137.110346,20.5649231 137.584209,20.0915 137.584209,19.5072308","id","Fill-61"],["d","M137.584209,7.20753846 C137.585885,6.68630769 137.461923,6.18876923 137.242346,5.76992308 C137.051962,5.40226923 136.798538,5.09807692 136.527346,4.8455 C136.050538,4.40296154 135.522115,4.09919231 135.016538,3.81953846 C134.256692,3.40661538 133.540423,3.03938462 133.090269,2.62265385 C132.863077,2.41534615 132.700192,2.20761538 132.586385,1.96984615 C132.473846,1.73080769 132.401077,1.45326923 132.399808,1.05769231 C132.399808,0.473423077 131.925962,0 131.342115,0 C130.757846,0 130.284418,0.473423077 130.284418,1.05769231 C130.283577,1.64576923 130.388923,2.19069231 130.584808,2.67130769 C130.755308,3.09184615 130.992231,3.45865385 131.260462,3.77046154 C131.731769,4.3175 132.287269,4.70038462 132.819077,5.01938462 C133.618269,5.49111538 134.388269,5.84565385 134.856192,6.20315385 C135.092269,6.37873077 135.245,6.54161538 135.332577,6.68715385 C135.419308,6.83565385 135.465423,6.96723077 135.468808,7.20753846 C135.468808,7.79180769 135.942231,8.26523077 136.5265,8.26523077 C137.110346,8.26523077 137.584209,7.79180769 137.584209,7.20753846","id","Fill-62"],["d","M97.7553077,83.8453846 C97.7536154,84.0548077 97.7155385,84.1808846 97.6516538,84.3090769 C97.5941154,84.4195 97.5065385,84.5345769 97.3703077,84.6615 C97.1350769,84.8844615 96.7492308,85.1264615 96.2842692,85.3798846 C95.5887308,85.7678462 94.7222692,86.1735769 93.9539615,86.8653077 C93.5715,87.2122308 93.2161154,87.6425 92.9639615,88.1721923 C92.7105385,88.7010385 92.5696538,89.3195769 92.5713311,89.9952308 C92.5713311,90.5795 93.0447692,91.0529231 93.6290385,91.0529231 C94.2128846,91.0529231 94.6867308,90.5795 94.6867308,89.9952308 C94.6871538,89.6508462 94.7438462,89.3953077 94.8314231,89.1778462 C94.9092692,88.9878846 95.0133462,88.8224615 95.1521154,88.6604231 C95.3928462,88.3782308 95.7516154,88.1104231 96.1903462,87.8498077 C96.8465385,87.4525385 97.6592692,87.0984231 98.4098077,86.5441923 C98.7833846,86.2645385 99.1489231,85.921 99.4273077,85.4645 C99.7065385,85.0109615 99.8740769,84.4440385 99.8707426,83.8453846 C99.8707426,83.2611154 99.3972692,82.7876923 98.813,82.7876923 C98.2291538,82.7876923 97.7553077,83.2611154 97.7553077,83.8453846","id","Fill-63"],["d","M97.7553077,71.5452692 C97.7536154,71.7551154 97.7155385,71.8811923 97.6516538,72.0089615 C97.5941154,72.1198077 97.5065385,72.2344615 97.3703077,72.3618077 C97.1350769,72.5847692 96.7492308,72.8267692 96.2842692,73.0801923 C95.5887308,73.4681538 94.7222692,73.8734615 93.9539615,74.5656154 C93.5715,74.9125385 93.2161154,75.3428077 92.9639615,75.8720769 C92.7105385,76.4009231 92.5696538,77.0194615 92.5713311,77.6951154 C92.5713311,78.2789615 93.0447692,78.7528077 93.6290385,78.7528077 C94.2128846,78.7528077 94.6867308,78.2789615 94.6867308,77.6951154 C94.6871538,77.3507308 94.7438462,77.0951923 94.8314231,76.8777308 C94.9092692,76.6877692 95.0133462,76.5227692 95.1521154,76.3607308 C95.3928462,76.0781154 95.7516154,75.8107308 96.1903462,75.5501154 C96.8465385,75.1528462 97.6592692,74.7983077 98.4098077,74.2445 C98.7833846,73.9644231 99.1489231,73.6213077 99.4273077,73.1648077 C99.7065385,72.7108462 99.8740769,72.1443462 99.8707426,71.5452692 C99.8707426,70.9614231 99.3972692,70.4875769 98.813,70.4875769 C98.2291538,70.4875769 97.7553077,70.9614231 97.7553077,71.5452692","id","Fill-64"],["d","M99.8707189,83.8453846 C99.8728077,83.3241538 99.7484231,82.8261923 99.5292692,82.4077692 C99.3388846,82.0401154 99.0854615,81.7359231 98.8142692,81.4829231 C98.3374615,81.0403846 97.8090385,80.7366154 97.3034615,80.4565385 C96.5436154,80.0440385 95.8273462,79.6768077 95.3771923,79.2600769 C95.15,79.0527692 94.9871154,78.8446154 94.8733077,78.6072692 C94.7607692,78.3682308 94.688,78.0906923 94.6867308,77.6951154 C94.6867308,77.1108462 94.2128846,76.6374231 93.6290385,76.6374231 C93.0447692,76.6374231 92.5713411,77.1108462 92.5713411,77.6951154 C92.5705,78.2831923 92.6758462,78.8281154 92.8717308,79.3083077 C93.0422308,79.7288462 93.2791538,80.0960769 93.5473846,80.4078846 C94.0186923,80.9549231 94.5737692,81.3378077 95.106,81.6568077 C95.9051923,82.1285385 96.6751923,82.4830769 97.1431154,82.8405769 C97.3787692,83.0161538 97.5319231,83.1790385 97.6195,83.3245769 C97.7058077,83.4735 97.7523462,83.6050769 97.7553077,83.8453846 C97.7553077,84.4292308 98.2291538,84.9030769 98.813,84.9030769 C99.3972692,84.9030769 99.8707189,84.4292308 99.8707189,83.8453846","id","Fill-65"],["d","M99.8707189,71.5452692 C99.8728077,71.0240385 99.7484231,70.5265 99.5292692,70.1080769 C99.3388846,69.7404231 99.0850385,69.4362308 98.8142692,69.1832308 C98.3374615,68.7411154 97.8090385,68.4373462 97.3034615,68.1572692 C96.5431923,67.7447692 95.8273462,67.3771154 95.3771923,66.9603846 C95.15,66.7530769 94.9871154,66.5453462 94.8733077,66.3075769 C94.7607692,66.0689615 94.688,65.791 94.6867308,65.3954231 C94.6867308,64.8115769 94.2128846,64.3377308 93.6290385,64.3377308 C93.0447692,64.3377308 92.5713411,64.8115769 92.5713411,65.3954231 C92.5705,65.9839231 92.6758462,66.5288462 92.8717308,67.0090385 C93.0422308,67.4295769 93.2791538,67.7968077 93.5473846,68.1086154 C94.0186923,68.6552308 94.5737692,69.0385385 95.106,69.3571154 C95.9051923,69.8292692 96.6751923,70.1838077 97.1431154,70.5408846 C97.3787692,70.7168846 97.5319231,70.8797692 97.6195,71.0253077 C97.7058077,71.1738077 97.7523462,71.3049615 97.7553077,71.5452692 C97.7553077,72.1295385 98.2291538,72.6029615 98.813,72.6029615 C99.3972692,72.6029615 99.8707189,72.1295385 99.8707189,71.5452692","id","Fill-66"],["d","M199.984654,186.622615 C199.982538,186.832462 199.944885,186.958538 199.880577,187.086308 C199.823038,187.197154 199.735462,187.311808 199.599231,187.439154 C199.364,187.662115 198.978577,187.904115 198.513192,188.157538 C197.817654,188.5455 196.951192,188.951231 196.182885,189.643385 C195.800846,189.990308 195.445462,190.420577 195.192885,190.950269 C194.939462,191.478692 194.799,192.097654 194.800261,192.773308 C194.800261,193.357154 195.273692,193.831 195.857962,193.831 C196.442231,193.831 196.915654,193.357154 196.915654,192.773308 C196.9165,192.4285 196.972769,192.173385 197.060769,191.9555 C197.138192,191.765538 197.242269,191.600115 197.381038,191.438077 C197.621769,191.155885 197.980962,190.888077 198.419269,190.627462 C199.075885,190.230192 199.888192,189.875654 200.639154,189.321846 C201.012308,189.041769 201.377846,188.698654 201.656231,188.242154 C201.935885,187.788192 202.103423,187.221692 202.100089,186.622615 C202.100089,186.038769 201.626192,185.564923 201.042346,185.564923 C200.458077,185.564923 199.984654,186.038769 199.984654,186.622615","id","Fill-67"],["d","M199.984654,174.322923 C199.982538,174.532769 199.944885,174.658846 199.880577,174.786615 C199.823038,174.897462 199.735462,175.012115 199.599231,175.139462 C199.364,175.362423 198.978577,175.604 198.513615,175.857846 C197.818077,176.245385 196.951615,176.651115 196.182885,177.342846 C195.800846,177.689769 195.445462,178.120038 195.193308,178.649731 C194.939462,179.178154 194.799,179.797115 194.800261,180.472346 C194.800261,181.056615 195.273692,181.530038 195.857962,181.530038 C196.442231,181.530038 196.915654,181.056615 196.915654,180.472346 C196.9165,180.128385 196.972769,179.872846 197.060769,179.655385 C197.138192,179.465423 197.242269,179.3 197.381038,179.137962 C197.621769,178.855769 197.980538,178.587962 198.419269,178.327346 C199.075462,177.930077 199.888192,177.575962 200.639154,177.021731 C201.012308,176.742077 201.377846,176.398538 201.656231,175.942038 C201.935885,175.4885 202.103423,174.922 202.100089,174.322923 C202.100089,173.738654 201.626192,173.265231 201.042346,173.265231 C200.458077,173.265231 199.984654,173.738654 199.984654,174.322923","id","Fill-68"],["d","M202.100056,186.622615 C202.101731,186.101385 201.977769,185.603846 201.758192,185.185 C201.567808,184.817769 201.314385,184.513154 201.043192,184.260577 C200.566385,183.818038 200.037962,183.514269 199.532808,183.234192 C198.772538,182.821692 198.056269,182.454462 197.606538,182.037731 C197.379346,181.830423 197.216038,181.622269 197.102231,181.384923 C196.990115,181.145885 196.916923,180.868346 196.915654,180.472346 C196.915654,179.8885 196.442231,179.414654 195.857962,179.414654 C195.273692,179.414654 194.800264,179.8885 194.800264,180.472346 C194.799423,181.060846 194.904769,181.605769 195.100654,182.085962 C195.271154,182.5065 195.508077,182.873731 195.776308,183.185538 C196.248038,183.732577 196.803115,184.115462 197.334923,184.434462 C198.134115,184.906192 198.904115,185.260731 199.372038,185.617808 C199.608115,185.793808 199.760846,185.956692 199.848423,186.102231 C199.935154,186.250731 199.981269,186.382308 199.984654,186.622615 C199.984654,187.206885 200.458077,187.680308 201.042346,187.680308 C201.626192,187.680308 202.100056,187.206885 202.100056,186.622615","id","Fill-69"],["d","M202.100056,174.322923 C202.101731,173.801692 201.977769,173.304154 201.758192,172.885308 C201.567808,172.518077 201.314385,172.213885 201.043192,171.960885 C200.566385,171.518769 200.037962,171.215 199.532808,170.934923 C198.772538,170.522423 198.056269,170.154769 197.606115,169.738462 C197.378923,169.530731 197.216038,169.323 197.102231,169.085654 C196.989692,168.846615 196.916923,168.569077 196.915654,168.1735 C196.915654,167.589231 196.442231,167.115808 195.857962,167.115808 C195.273692,167.115808 194.800264,167.589231 194.800264,168.1735 C194.799423,168.761577 194.904769,169.3065 195.100654,169.786692 C195.271154,170.207231 195.508077,170.574462 195.776308,170.886269 C196.248038,171.433308 196.803115,171.816192 197.334923,172.135192 C198.134115,172.606923 198.904115,172.961462 199.372038,173.318538 C199.608115,173.494538 199.760846,173.657423 199.848423,173.802962 C199.935154,173.951462 199.981269,174.082615 199.984654,174.322923 C199.984654,174.907192 200.458077,175.380615 201.042346,175.380615 C201.626192,175.380615 202.100056,174.907192 202.100056,174.322923","id","Fill-70"],["d","M73.1440769,196.315731 C73.1419615,196.525154 73.1043077,196.651231 73.04,196.779 C72.9824615,196.889846 72.8948846,197.004923 72.7586538,197.131846 C72.5234231,197.354808 72.138,197.596808 71.6726154,197.850231 C70.9770769,198.238192 70.1110385,198.643923 69.3423077,199.335654 C68.9602692,199.682577 68.6048846,200.112846 68.3523077,200.642538 C68.0988846,201.170962 67.958,201.7895 67.9596772,202.465154 C67.9596772,203.049 68.4331154,203.522846 69.0173846,203.522846 C69.6012308,203.522846 70.0750769,203.049 70.0750769,202.465154 C70.0755,202.120769 70.1321923,201.865654 70.2197692,201.647769 C70.2976154,201.457808 70.4016923,201.292808 70.5404615,201.130769 C70.7811923,200.848154 71.1399615,200.580769 71.5786923,200.320154 C72.2348846,199.922885 73.0476154,199.568346 73.7981538,199.014538 C74.1717308,198.734462 74.5372692,198.391346 74.8156538,197.934846 C75.0953077,197.480885 75.2624231,196.914385 75.2595003,196.315731 C75.2595003,195.731462 74.7856154,195.258038 74.2017692,195.258038 C73.6175,195.258038 73.1440769,195.731462 73.1440769,196.315731","id","Fill-71"],["d","M73.1440769,184.015615 C73.1419615,184.225462 73.1043077,184.351538 73.04,184.479308 C72.9824615,184.590154 72.8948846,184.704808 72.7586538,184.832154 C72.5234231,185.055115 72.138,185.297115 71.6726154,185.550538 C70.9770769,185.938077 70.1110385,186.343808 69.3423077,187.035962 C68.9602692,187.382462 68.6048846,187.812731 68.3523077,188.342423 C68.0988846,188.870846 67.958,189.489808 67.9596772,190.165038 C67.9596772,190.749308 68.4331154,191.222731 69.0173846,191.222731 C69.6012308,191.222731 70.0750769,190.749308 70.0750769,190.165038 C70.0755,189.821077 70.1321923,189.565538 70.2197692,189.348077 C70.2976154,189.158115 70.4016923,188.993115 70.5404615,188.830654 C70.7811923,188.548462 71.1399615,188.280654 71.5786923,188.020462 C72.2348846,187.622769 73.0476154,187.268654 73.7981538,186.714846 C74.1717308,186.434769 74.5372692,186.091654 74.8156538,185.634731 C75.0953077,185.181192 75.2624231,184.614692 75.2595003,184.015615 C75.2595003,183.431769 74.7856154,182.957923 74.2017692,182.957923 C73.6175,182.957923 73.1440769,183.431769 73.1440769,184.015615","id","Fill-72"],["d","M75.2594786,196.315731 C75.2611538,195.794077 75.1371923,195.296538 74.9176154,194.878115 C74.7272308,194.510462 74.4738077,194.205846 74.2026154,193.953269 C73.7258077,193.510731 73.1973846,193.206962 72.6918077,192.926885 C71.9319615,192.514385 71.2156923,192.146731 70.7655385,191.73 C70.5383462,191.522692 70.3754615,191.314962 70.2616538,191.077192 C70.1491154,190.838577 70.0763462,190.560615 70.0750769,190.165038 C70.0750769,189.581192 69.6012308,189.107346 69.0173846,189.107346 C68.4331154,189.107346 67.9596873,189.581192 67.9596873,190.165038 C67.9588462,190.753538 68.0641923,191.298462 68.2600769,191.778654 C68.4305769,192.199192 68.6675,192.566423 68.9357308,192.878231 C69.4070385,193.424846 69.9625385,193.807731 70.4943462,194.126731 C71.2935385,194.598462 72.0635385,194.953423 72.5314615,195.3105 C72.7671154,195.4865 72.9202692,195.649385 73.0078462,195.794923 C73.0941538,195.943423 73.1406923,196.075 73.1440769,196.315731 C73.1440769,196.899577 73.6175,197.373423 74.2017692,197.373423 C74.7856154,197.373423 75.2594786,196.899577 75.2594786,196.315731","id","Fill-73"],["d","M75.2594786,184.015615 C75.2611538,183.494385 75.1371923,182.996846 74.9176154,182.578 C74.7272308,182.210346 74.4738077,181.906154 74.2026154,181.653154 C73.7258077,181.211038 73.1973846,180.907269 72.6918077,180.627192 C71.9319615,180.214692 71.2156923,179.847462 70.7655385,179.430731 C70.5383462,179.223423 70.3754615,179.015269 70.2616538,178.7775 C70.1491154,178.538885 70.0763462,178.261346 70.0750769,177.865346 C70.0750769,177.281077 69.6012308,176.807654 69.0173846,176.807654 C68.4331154,176.807654 67.9596873,177.281077 67.9596873,177.865346 C67.9588462,178.453846 68.0641923,178.998769 68.2600769,179.478962 C68.4305769,179.8995 68.6675,180.266731 68.9357308,180.578538 C69.4070385,181.125577 69.9625385,181.508462 70.4943462,181.827462 C71.2935385,182.299192 72.0635385,182.653731 72.5314615,183.010808 C72.7671154,183.186808 72.9202692,183.349692 73.0078462,183.495231 C73.0941538,183.643731 73.1406923,183.775308 73.1440769,184.015615 C73.1440769,184.599885 73.6175,185.073308 74.2017692,185.073308 C74.7856154,185.073308 75.2594786,184.599885 75.2594786,184.015615","id","Fill-74"],["d","M150.245615,152.688038 L165.420962,152.688038 C166.005231,152.688038 166.478654,152.214615 166.478654,151.630346 C166.478654,151.0465 166.005231,150.572654 165.420962,150.572654 L150.245615,150.572654 C149.661769,150.572654 149.187923,151.0465 149.187923,151.630346 C149.187923,152.214615 149.661769,152.688038 150.245615,152.688038","id","Fill-75"],["d","M1.05769231,108.836538 L16.2330385,108.836538 C16.8173077,108.836538 17.2907308,108.363115 17.2907308,107.778846 C17.2907308,107.194577 16.8173077,106.721154 16.2330385,106.721154 L1.05769231,106.721154 C0.473423077,106.721154 0,107.194577 0,107.778846 C0,108.363115 0.473423077,108.836538 1.05769231,108.836538","id","Fill-76"],["d","M151.380308,38.2965 L166.555654,38.2965 C167.139923,38.2965 167.613346,37.8226538 167.613346,37.2388077 C167.613346,36.6545385 167.139923,36.1811154 166.555654,36.1811154 L151.380308,36.1811154 C150.796038,36.1811154 150.322615,36.6545385 150.322615,37.2388077 C150.322615,37.8226538 150.796038,38.2965 151.380308,38.2965","id","Fill-77"],["d","M211.198731,4.048 L226.374077,4.048 C226.957923,4.048 227.431769,3.57457692 227.431769,2.99030769 C227.431769,2.40646154 226.957923,1.93261538 226.374077,1.93261538 L211.198731,1.93261538 C210.614462,1.93261538 210.141038,2.40646154 210.141038,2.99030769 C210.141038,3.57457692 210.614462,4.048 211.198731,4.048","id","Fill-78"],["d","M61.5568462,230.232115 L76.7321923,230.232115 C77.3164615,230.232115 77.7898846,229.758269 77.7898846,229.174423 C77.7898846,228.590154 77.3164615,228.116731 76.7321923,228.116731 L61.5568462,228.116731 C60.9725769,228.116731 60.4991538,228.590154 60.4991538,229.174423 C60.4991538,229.758269 60.9725769,230.232115 61.5568462,230.232115","id","Fill-79"],["d","M101.2715,200.604038 L112.002,189.873538 C112.415346,189.460615 112.415346,188.790885 112.002,188.377962 C111.589077,187.964615 110.919346,187.964615 110.506423,188.377962 L99.7759231,199.108462 C99.3625769,199.521385 99.3625769,200.191115 99.7759231,200.604038 C100.188846,201.017385 100.858577,201.017385 101.2715,200.604038","id","Fill-80"],["d","M12.4435385,14.4688077 L23.1740385,3.73830769 C23.5873846,3.32538462 23.5873846,2.65565385 23.1740385,2.24273077 C22.7611154,1.82938462 22.0913846,1.82938462 21.6784615,2.24273077 L10.9479615,12.9732308 C10.5346154,13.3861538 10.5346154,14.0558846 10.9479615,14.4688077 C11.3608846,14.8821538 12.0306154,14.8821538 12.4435385,14.4688077","id","Fill-81"],["d","M219.533769,124.474308 L230.264269,113.743808 C230.677615,113.330885 230.677615,112.661154 230.264269,112.247808 C229.851346,111.834885 229.181615,111.834885 228.768692,112.247808 L218.037769,122.978731 C217.624846,123.391654 217.624846,124.061385 218.037769,124.474308 C218.451115,124.887231 219.120846,124.887231 219.533769,124.474308","id","Fill-82"],["d","M127.623269,71.2592692 L130.399077,66.4442308 L130.887731,66.4442308 L128.356038,70.8357692 L136.862423,70.8285769 L145.370923,70.8247692 L141.111808,63.4594231 L141.478192,63.2478846 L146.104115,71.2474231 L136.862846,71.2516538 L127.623269,71.2592692 M131.619231,64.3284231 L132.933308,62.0480385 L133.177846,62.4706923 L132.606269,63.4636538 L132.107462,64.328 L131.619231,64.3284231 M141.111808,63.4594231 L136.852269,56.0928077 L134.397577,60.3540385 L134.153038,59.9309615 L136.851423,55.2466538 L141.478192,63.2478846 L141.111808,63.4594231","id","Fill-83"],["d","M130.399077,66.4442308 L131.619231,64.3284231 L132.107462,64.328 L130.887731,66.4442308 L130.399077,66.4442308 M133.177846,62.4706923 L132.933308,62.0480385 L134.153038,59.9309615 L134.397577,60.3540385 L133.177846,62.4706923","id","Fill-84"],["d","M112.934462,165.183192 L115.710269,160.368154 L116.198923,160.368154 L113.666808,164.759692 L122.173615,164.7525 L130.682115,164.748692 L126.423,157.383346 L126.606192,157.277577 L126.789385,157.171808 L131.415308,165.171346 L122.174038,165.175577 L112.934462,165.183192 M116.930423,158.252346 L118.2445,155.971538 L118.489038,156.394615 L117.917038,157.387577 L117.418654,158.251923 L116.930423,158.252346 M126.423,157.383346 L122.163462,150.016731 L119.708769,154.277962 L119.464231,153.854885 L122.162615,149.170577 L126.789385,157.171808 L126.606192,157.277577 L126.423,157.383346","id","Fill-85"],["d","M115.710269,160.368154 L116.930423,158.252346 L117.418654,158.251923 L116.198923,160.368154 L115.710269,160.368154 M118.489038,156.394615 L118.2445,155.971538 L119.464231,153.854885 L119.708769,154.277962 L118.489038,156.394615","id","Fill-86"],["d","M163.850077,194.026038 L166.625885,189.211 L167.114538,189.210577 L164.582846,193.602538 L173.089231,193.595346 L181.597308,193.591115 L177.338615,186.226192 L177.705,186.014654 L182.3305,194.014192 L173.089654,194.018423 L163.850077,194.026038 M167.846038,187.095192 L169.160115,184.814385 L169.404654,185.237462 L168.334269,187.094769 L167.846038,187.095192 M177.338615,186.226192 L173.079077,178.859577 L170.624385,183.120808 L170.379423,182.697731 L173.078231,178.013423 L177.705,186.014654 L177.338615,186.226192","id","Fill-87"],["d","M166.625885,189.211 L167.846038,187.095192 L168.334269,187.094769 L167.114538,189.210577 L166.625885,189.211 M169.404654,185.237462 L169.160115,184.814385 L170.379423,182.697731 L170.624385,183.120808 L169.404654,185.237462","id","Fill-88"],["d","M204.624962,136.113577 L198.087577,129.582115 L196.504846,128.001923 L196.630923,127.529769 L198.386269,129.282577 L204.405385,135.296192 L208.799038,118.855423 L200.584577,121.064731 L198.186154,121.709077 L198.312231,121.237346 L200.475,120.656462 L209.396846,118.256346 L204.624962,136.113577 M194.776154,126.276192 L191.548923,123.053615 L195.953154,121.870692 L195.827077,122.342846 L192.366308,123.271923 L194.902231,125.804038 L194.776154,126.276192","id","Fill-89"],["d","M196.504846,128.001923 L194.776154,126.276192 L194.902231,125.804038 L196.630923,127.529769 L196.504846,128.001923 M195.827077,122.342846 L195.953154,121.870692 L198.312231,121.237346 L198.186154,121.709077 L195.827077,122.342846","id","Fill-90"],["d","M58.6947308,36.5669615 L50.5746154,28.4553077 L50.7006923,27.9835769 L52.4560385,29.7359615 L58.4751538,35.7495769 L62.8683846,19.3088077 L54.6539231,21.5185385 L52.2559231,22.1624615 L52.382,21.6907308 L54.5443462,21.1098462 L63.4661923,18.7101538 L58.6947308,36.5669615 M48.8459231,26.73 L45.6182692,23.5074231 L50.0229231,22.3245 L49.8968462,22.7962308 L46.4356538,23.7261538 L48.972,26.2578462 L48.8459231,26.73","id","Fill-91"],["d","M50.5746154,28.4553077 L48.8459231,26.73 L48.972,26.2578462 L50.7006923,27.9835769 L50.5746154,28.4553077 M49.8968462,22.7962308 L50.0229231,22.3245 L52.382,21.6907308 L52.2559231,22.1624615 L49.8968462,22.7962308","id","Fill-92"],["d","M52.6180769,221.837 L46.0802692,215.305538 L44.4975385,213.725769 L44.6240385,213.253615 L46.3793846,215.006 L52.3985,221.019615 L54.5942692,212.8005 L54.7986154,212.855077 L54.5942692,212.8005 L56.7913077,204.579269 L48.5772692,206.788577 L46.1792692,207.432923 L46.3053462,206.960769 L48.4672692,206.379885 L57.3895385,203.980192 L52.6180769,221.837 M42.7692692,212.000038 L39.5411923,208.777885 L43.9462692,207.594538 L43.8201923,208.066692 L40.359,208.996192 L42.8953462,211.528308 L42.7692692,212.000038","id","Fill-93"],["d","M44.4975385,213.725769 L42.7692692,212.000038 L42.8953462,211.528308 L44.6240385,213.253615 L44.4975385,213.725769 M43.8201923,208.066692 L43.9462692,207.594538 L46.3053462,206.960769 L46.1792692,207.432923 L43.8201923,208.066692","id","Fill-94"],["d","M207.903385,41.9726154 L207.898308,31.7185 L208.320962,31.4739615 L208.322231,32.7309231 L208.326038,41.2394231 L215.690962,36.9798846 L223.058,32.7207692 L215.687154,28.4743462 L214.564731,27.8270385 C214.667538,27.7276154 214.748346,27.6078846 214.803346,27.4767308 L215.898269,28.1079615 L223.904154,32.7199231 L207.903385,41.9726154 M207.896192,29.2760769 L207.892385,24.8697308 L208.315885,25.1134231 L208.318846,29.0315385 L207.896192,29.2760769","id","Fill-95"],["d","M207.898308,31.7185 L207.896192,29.2760769 L208.318846,29.0315385 L208.320962,31.4739615 L207.898308,31.7185 M214.564731,27.8270385 L208.315038,24.2245385 L208.315885,25.1134231 L207.892385,24.8697308 L207.891115,23.4917692 L214.803346,27.4767308 C214.748346,27.6078846 214.667538,27.7276154 214.564731,27.8270385","id","Fill-96"],["d","M46.7089615,130.629231 L46.7034615,120.374269 L47.1265385,120.130154 L47.1316154,129.896038 L61.8627308,121.376538 L54.4923077,117.130538 L53.3698846,116.483231 C53.4726923,116.383385 53.5535,116.264077 53.6085,116.1325 L54.7034231,116.763731 L62.7093077,121.375692 L54.7080769,126.002885 L54.7080769,126.002462 L46.7089615,130.629231 M46.7013462,117.932269 L46.6975385,113.5255 L47.1206154,113.769615 L47.1244231,117.687731 L46.7013462,117.932269","id","Fill-97"],["d","M46.7034615,120.374269 L46.7013462,117.932269 L47.1244231,117.687731 L47.1265385,120.130154 L46.7034615,120.374269 M53.3698846,116.483231 L47.1201923,112.880308 L47.1206154,113.769615 L46.6975385,113.5255 L46.6962692,112.147962 L53.6085,116.1325 C53.5535,116.264077 53.4726923,116.383385 53.3698846,116.483231","id","Fill-98"],["d","M149.559808,118.2335 C146.269538,118.2335 143.513615,115.9455 142.796923,112.873538 C142.930615,112.820231 143.062192,112.763115 143.192077,112.702615 C143.464538,113.936308 144.086038,115.038 144.948692,115.900654 C146.1295,117.081038 147.758346,117.810423 149.559808,117.810423 C151.360846,117.810423 152.989692,117.081038 154.1705,115.900654 C155.350885,114.719846 156.080269,113.091 156.080269,111.289538 C156.080269,109.488077 155.350885,107.859231 154.1705,106.678423 C152.989692,105.498038 151.360846,104.768654 149.559808,104.768654 C148.904038,104.768654 148.271115,104.865115 147.674154,105.045346 C147.663577,104.9015 147.648769,104.7585 147.630154,104.617192 C148.242769,104.440346 148.8905,104.345577 149.559808,104.345577 C153.394577,104.345577 156.503346,107.454346 156.503346,111.289538 C156.503346,115.124731 153.394577,118.2335 149.559808,118.2335 M142.648423,110.607115 C142.850654,108.535308 143.963346,106.730462 145.581192,105.597462 C145.581192,105.611 145.581192,105.624115 145.581192,105.637654 C145.581192,105.806885 145.573577,105.974 145.559192,106.139423 C145.344692,106.306538 145.140769,106.486346 144.948692,106.678423 C143.983654,107.643462 143.319846,108.908462 143.109577,110.322385 C142.961077,110.424346 142.807077,110.519538 142.648423,110.607115","id","Fill-99"],["d","M142.796923,112.873538 C142.678462,112.364577 142.615423,111.834462 142.615423,111.289538 C142.615423,111.058962 142.626846,110.831769 142.648423,110.607115 C142.807077,110.519538 142.961077,110.424346 143.109577,110.322385 C143.063038,110.638 143.0385,110.960808 143.0385,111.289538 C143.0385,111.774808 143.091385,112.247808 143.192077,112.702615 C143.062192,112.763115 142.930615,112.820231 142.796923,112.873538 M145.559192,106.139423 C145.573577,105.974 145.581192,105.806885 145.581192,105.637654 C145.581192,105.624115 145.581192,105.611 145.581192,105.597462 C146.198038,105.1655 146.8885,104.831269 147.630154,104.617192 C147.648769,104.7585 147.663577,104.9015 147.674154,105.045346 C146.898231,105.279308 146.183654,105.653731 145.559192,106.139423","id","Fill-100"],["d","M115.542308,43.1022308 C112.252462,43.1022308 109.496538,40.8142308 108.779846,37.7422692 C108.913115,37.6889615 109.045115,37.6318462 109.174577,37.5713462 C109.447038,38.8050385 110.068962,39.9067308 110.931192,40.7693846 C112.112,41.9497692 113.741269,42.6791538 115.542308,42.6791538 C117.343769,42.6791538 118.972615,41.9497692 120.153423,40.7693846 C121.333808,39.5885769 122.063192,37.9597308 122.063192,36.1582692 C122.063192,34.3568077 121.333808,32.7279615 120.153423,31.5471538 C118.972615,30.3667692 117.343769,29.6373846 115.542308,29.6373846 C114.886962,29.6373846 114.254038,29.7338462 113.657077,29.9140769 C113.6465,29.7702308 113.631692,29.6272308 113.613077,29.4859231 C114.225692,29.3090769 114.873,29.2143077 115.542308,29.2143077 C119.3775,29.2143077 122.486269,32.3226538 122.486269,36.1582692 C122.486269,39.9934615 119.3775,43.1022308 115.542308,43.1022308 M108.631346,35.4758462 C108.833154,33.4036154 109.945846,31.5991923 111.564115,30.4661923 C111.564115,30.4793077 111.564115,30.4928462 111.564115,30.5059615 C111.564115,30.6751923 111.556923,30.8427308 111.542115,31.0077308 C111.327615,31.1748462 111.123692,31.3550769 110.931192,31.5471538 C109.966154,32.5126154 109.302346,33.7771923 109.0925,35.1911154 C108.943577,35.2930769 108.789577,35.3882692 108.631346,35.4758462","id","Fill-101"],["d","M108.779846,37.7422692 C108.660962,37.2337308 108.597923,36.7031923 108.597923,36.1582692 C108.597923,35.9281154 108.609346,35.7005 108.631346,35.4758462 C108.789577,35.3882692 108.943577,35.2930769 109.0925,35.1911154 C109.045538,35.5067308 109.021,35.8295385 109.021,36.1582692 C109.021,36.6435385 109.074308,37.1165385 109.174577,37.5713462 C109.045115,37.6318462 108.913115,37.6889615 108.779846,37.7422692 M111.542115,31.0077308 C111.556923,30.8427308 111.564115,30.6751923 111.564115,30.5059615 C111.564115,30.4928462 111.564115,30.4793077 111.564115,30.4661923 C112.180962,30.0342308 112.871846,29.7 113.613077,29.4859231 C113.631692,29.6272308 113.6465,29.7702308 113.657077,29.9140769 C112.881577,30.1476154 112.166577,30.5220385 111.542115,31.0077308","id","Fill-102"],["d","M119.839077,241.801154 C116.549231,241.801154 113.793308,239.513154 113.076192,236.441192 C113.209885,236.387885 113.341462,236.330769 113.471346,236.270269 C113.743808,237.503962 114.365308,238.605654 115.227962,239.467885 C116.408769,240.648692 118.037615,241.378077 119.839077,241.378077 C121.640538,241.378077 123.269385,240.648692 124.450192,239.467885 C125.630577,238.2875 126.359962,236.658231 126.359962,234.856769 C126.359962,233.055308 125.630577,231.426462 124.450192,230.246077 C123.269385,229.065692 121.640538,228.336308 119.839077,228.336308 C119.183308,228.336308 118.550385,228.433192 117.953846,228.613 C117.942846,228.469154 117.928038,228.326154 117.909846,228.184846 C118.522038,228.008 119.169346,227.913231 119.839077,227.913231 C123.674269,227.913231 126.783038,231.021577 126.783038,234.856769 C126.783038,238.692385 123.674269,241.801154 119.839077,241.801154 M112.927692,234.175192 C113.1295,232.102962 114.242192,230.297692 115.860462,229.165115 C115.860462,229.178231 115.860462,229.191346 115.860462,229.204885 C115.860462,229.374115 115.853269,229.541654 115.838885,229.707077 C115.623962,229.873769 115.420038,230.054 115.227962,230.246077 C114.2625,231.211115 113.598692,232.476115 113.388846,233.890038 C113.239923,233.992 113.085923,234.087192 112.927692,234.175192","id","Fill-103"],["d","M113.076192,236.441192 C112.957308,235.932231 112.894692,235.402115 112.894692,234.856769 C112.894692,234.626615 112.905692,234.399423 112.927692,234.175192 C113.085923,234.087192 113.239923,233.992 113.388846,233.890038 C113.341885,234.205654 113.317769,234.528462 113.317769,234.856769 C113.317769,235.342462 113.370654,235.815462 113.471346,236.270269 C113.341462,236.330769 113.209885,236.387885 113.076192,236.441192 M115.838885,229.707077 C115.853269,229.541654 115.860462,229.374115 115.860462,229.204885 C115.860462,229.191346 115.860462,229.178231 115.860462,229.165115 C116.477308,228.733154 117.168192,228.398923 117.909846,228.184846 C117.928038,228.326154 117.942846,228.469154 117.953846,228.613 C117.177923,228.846538 116.462923,229.221385 115.838885,229.707077","id","Fill-104"],["d","M158.255308,224.794731 L157.832231,224.794731 C157.832231,222.993269 157.102423,221.364423 155.922038,220.184038 C154.741231,219.003654 153.112385,218.274269 151.310923,218.274269 C150.655154,218.274269 150.022654,218.370731 149.426115,218.550538 C149.415115,218.406692 149.400731,218.264538 149.382115,218.122385 C149.994308,217.945962 150.641615,217.851192 151.310923,217.851192 C155.146115,217.851192 158.255308,220.959538 158.255308,224.794731 M144.789615,224.794731 L144.366538,224.794731 C144.366538,222.439462 145.539308,220.358346 147.332731,219.102654 C147.332731,219.116192 147.332731,219.129308 147.332731,219.142846 C147.332731,219.291769 147.363615,219.4335 147.419462,219.562115 C147.164769,219.751654 146.924038,219.959808 146.699808,220.184038 C145.519423,221.364423 144.789615,222.993269 144.789615,224.794731","id","Fill-105"],["d","M147.419462,219.562115 C147.363615,219.4335 147.332731,219.291769 147.332731,219.142846 C147.332731,219.129308 147.332731,219.116192 147.332731,219.102654 C147.95,218.670692 148.640462,218.336462 149.382115,218.122385 C149.400731,218.264538 149.415115,218.406692 149.426115,218.550538 C148.694615,218.770962 148.017692,219.116615 147.419462,219.562115","id","Fill-106"],["d","M104.519462,121.387538 L104.096385,121.387538 C104.095962,119.586077 103.366577,117.957231 102.186192,116.776846 C101.005385,115.596462 99.3765385,114.867077 97.5755,114.867077 C96.9197308,114.867077 96.2868077,114.963538 95.6902692,115.143769 C95.6792692,114.999923 95.6644615,114.856923 95.6462692,114.715615 C96.2584615,114.538769 96.9057692,114.444 97.5755,114.444 C101.410269,114.444 104.519038,117.552346 104.519462,121.387538 M91.0541923,121.387538 L90.6311154,121.387538 C90.6311154,119.032269 91.8034615,116.951154 93.5968846,115.695885 C93.5968846,115.709 93.5968846,115.722538 93.5968846,115.736077 C93.5968846,115.885 93.6277692,116.026731 93.6831923,116.155346 C93.4289231,116.344885 93.1886154,116.552615 92.9643846,116.776846 C91.7835769,117.957231 91.0541923,119.586077 91.0541923,121.387538","id","Fill-107"],["d","M93.6831923,116.155346 C93.6277692,116.026731 93.5968846,115.885 93.5968846,115.736077 C93.5968846,115.722538 93.5968846,115.709 93.5968846,115.695885 C94.2137308,115.263923 94.9046154,114.929269 95.6462692,114.715615 C95.6644615,114.856923 95.6792692,114.999923 95.6902692,115.143769 C94.9587692,115.364192 94.2818462,115.709423 93.6831923,116.155346","id","Fill-108"],["d","M33.6274231,66.7251538 L33.2043462,66.7251538 C33.2043462,64.9232692 32.4779231,63.2944231 31.3030385,62.1136154 C30.1277308,60.9336538 28.5065,60.2042692 26.7139231,60.2042692 C26.0475769,60.2042692 25.4045,60.3049615 24.7995,60.4923846 C24.7889231,60.3485385 24.7741154,60.2055385 24.7559231,60.0638077 C25.377,59.8797692 26.0340385,59.7811923 26.7139231,59.7811923 C30.5326154,59.7811923 33.6274231,62.8903846 33.6274231,66.7251538 M20.2235,66.7251538 L19.8004231,66.7251538 C19.8004231,64.3910385 20.9469615,62.326 22.7052692,61.0669231 C22.7052692,61.0690385 22.7052692,61.0711538 22.7052692,61.0732692 C22.7052692,61.2327692 22.7403846,61.3842308 22.8038462,61.5200385 C22.5639615,61.7019615 22.3371923,61.9003846 22.1248077,62.1136154 C20.9499231,63.2944231 20.2235,64.9232692 20.2235,66.7251538","id","Fill-109"],["d","M22.8038462,61.5200385 C22.7403846,61.3842308 22.7052692,61.2327692 22.7052692,61.0732692 C22.7052692,61.0711538 22.7052692,61.0690385 22.7052692,61.0669231 C23.3212692,60.6260769 24.0125769,60.2838077 24.7559231,60.0638077 C24.7741154,60.2055385 24.7889231,60.3485385 24.7995,60.4923846 C24.0713846,60.7178846 23.3978462,61.0686154 22.8038462,61.5200385","id","Fill-110"],["d","M189.715731,77.9612308 C185.881385,77.9612308 182.771769,74.8664231 182.771346,71.0477308 C182.771769,67.2290385 185.881385,64.1342308 189.715731,64.1342308 L189.715731,64.5573077 C187.913846,64.5573077 186.285,65.2837308 185.104192,66.4586154 C183.923808,67.6339231 183.194423,69.2551538 183.194423,71.0477308 C183.194423,72.8403077 183.923808,74.4611154 185.104192,75.6368462 C186.285,76.8117308 187.914269,77.5381538 189.715731,77.5381538 L189.715731,77.9612308","id","Fill-111"],["d","M27.6019615,235.037846 C23.7671923,235.037846 20.6584231,231.942615 20.658,228.123923 C20.6584231,224.305231 23.7671923,221.210846 27.6019615,221.210846 L27.6019615,221.633923 C25.8000769,221.633923 24.1712308,222.360346 22.9904231,223.535231 C21.8104615,224.710538 21.0810769,226.331346 21.0810769,228.123923 C21.0810769,229.9165 21.8104615,231.537731 22.9904231,232.713038 C24.1712308,233.888346 25.8000769,234.614769 27.6019615,234.614769 L27.6019615,235.037846","id","Fill-112"],["d","M99.8465769,20.9211538 C96.0118077,20.9211538 92.9026154,17.8259231 92.9026154,14.0072308 C92.9026154,10.1885385 96.0118077,7.09415385 99.8465769,7.09415385 L99.8465769,7.51723077 C98.0446923,7.51723077 96.4158462,8.24365385 95.2350385,9.41853846 C94.0546538,10.5938462 93.3256923,12.2150769 93.3256923,14.0072308 C93.3256923,15.7998077 94.0546538,17.4210385 95.2350385,18.5967692 C96.4158462,19.7716538 98.0446923,20.4980769 99.8465769,20.4980769 L99.8465769,20.9211538","id","Fill-113"],["d","M24.2359615,170.959038 C20.9461154,170.959038 18.1901923,168.670615 17.4730769,165.599077 C17.6067692,165.545769 17.7383462,165.488654 17.8682308,165.428154 C18.1406923,166.661423 18.7626154,167.763538 19.6248462,168.625769 C20.8056538,169.806577 22.4349231,170.535962 24.2359615,170.535962 C26.037,170.535962 27.6662692,169.806577 28.8470769,168.625769 C30.0274615,167.444962 30.7568462,165.816115 30.7568462,164.014654 C30.7568462,162.213192 30.0274615,160.584346 28.8470769,159.403962 C27.6662692,158.223577 26.037,157.494192 24.2359615,157.494192 C23.5801923,157.494192 22.9476923,157.590654 22.3507308,157.770462 C22.3401538,157.627038 22.3253462,157.484038 22.3067308,157.342731 C22.9193462,157.165885 23.5666538,157.071115 24.2359615,157.071115 C28.0707308,157.071115 31.1799231,160.179462 31.1799231,164.014654 C31.1799231,167.849846 28.0711538,170.959038 24.2359615,170.959038 M17.3245769,163.332654 C17.5268077,161.260423 18.6395,159.455577 20.2573462,158.323 C20.2577692,158.336115 20.2577692,158.349231 20.2577692,158.362769 C20.2577692,158.532 20.2501538,158.699115 20.2357692,158.864538 C20.0208462,159.031654 19.8169231,159.211885 19.6248462,159.403962 C18.6593846,160.369 17.996,161.634 17.7857308,163.047923 C17.6368077,163.149885 17.4832308,163.245077 17.3245769,163.332654","id","Fill-114"],["d","M17.4730769,165.599077 C17.3541923,165.090115 17.2915769,164.56 17.2915769,164.014654 C17.2915769,163.7845 17.3025769,163.557308 17.3245769,163.332654 C17.4832308,163.245077 17.6368077,163.149885 17.7857308,163.047923 C17.7387692,163.363538 17.7146538,163.685923 17.7146538,164.014654 C17.7146538,164.500346 17.7675385,164.973346 17.8682308,165.428154 C17.7383462,165.488654 17.6067692,165.545769 17.4730769,165.599077 M20.2357692,158.864538 C20.2501538,158.699115 20.2577692,158.532 20.2577692,158.362769 C20.2577692,158.349231 20.2577692,158.336115 20.2573462,158.323 C20.8746154,157.891038 21.5650769,157.556385 22.3067308,157.342731 C22.3253462,157.484038 22.3401538,157.627038 22.3507308,157.770462 C21.5748077,158.004423 20.8602308,158.378846 20.2357692,158.864538","id","Fill-115"],["d","M231.849115,178.648038 C228.558846,178.648038 225.802923,176.360038 225.086231,173.288077 C225.219923,173.234346 225.3515,173.177654 225.481385,173.117154 C225.753846,174.350423 226.375769,175.452115 227.238,176.314769 C228.418808,177.495154 230.047654,178.224538 231.849115,178.224962 C233.650154,178.224538 235.279,177.495154 236.459808,176.314769 C237.640192,175.133962 238.369577,173.505115 238.369577,171.703654 C238.369577,169.902192 237.640192,168.273346 236.459808,167.092538 C235.279,165.912577 233.650154,165.183192 231.849115,165.183192 C231.193346,165.183192 230.560423,165.279654 229.963462,165.459462 C229.952885,165.316038 229.938077,165.173038 229.919462,165.031731 C230.532077,164.854885 231.179808,164.760115 231.849115,164.760115 C235.683462,164.760115 238.792654,167.868038 238.792654,171.703654 C238.792654,175.538846 235.683885,178.647615 231.849115,178.648038 M224.937731,171.021654 C225.139962,168.949423 226.252231,167.144577 227.870077,166.012 C227.8705,166.025115 227.8705,166.038231 227.8705,166.051346 C227.8705,166.221 227.862885,166.388538 227.8485,166.553962 C227.634,166.720654 227.430077,166.900885 227.238,167.092538 C226.272962,168.058 225.609154,169.323 225.398885,170.7365 C225.249962,170.838885 225.096385,170.933654 224.937731,171.021654","id","Fill-116"],["d","M225.086231,173.288077 C224.967769,172.779115 224.904731,172.248577 224.904731,171.703654 C224.904731,171.4735 224.916154,171.245885 224.937731,171.021654 C225.096385,170.933654 225.249962,170.838885 225.398885,170.7365 C225.351923,171.052115 225.327808,171.374923 225.327808,171.703654 C225.327808,172.188923 225.380692,172.661923 225.481385,173.117154 C225.3515,173.177654 225.219923,173.234346 225.086231,173.288077 M227.8485,166.553962 C227.862885,166.388538 227.8705,166.221 227.8705,166.051346 C227.8705,166.038231 227.8705,166.025115 227.870077,166.012 C228.487346,165.579615 229.177808,165.245808 229.919462,165.031731 C229.938077,165.173038 229.952885,165.316038 229.963462,165.459462 C229.187538,165.693423 228.472962,166.068269 227.8485,166.553962","id","Fill-117"],["d","M233.562154,77.9553077 L219.747,77.9553077 L219.747,73.1491538 L220.170077,73.1491538 L220.170077,77.5322308 L233.139077,77.5322308 L233.139077,64.5632308 L224.755385,64.5632308 L224.755385,64.1401538 L233.562154,64.1401538 L233.562154,77.9553077 M220.170077,71.0337692 L219.747,71.0337692 L219.747,64.1401538 L222.64,64.1401538 L222.64,64.5632308 L220.170077,64.5632308 L220.170077,71.0337692","id","Fill-118"],["d","M219.747,73.1491538 L220.170077,73.1491538 L220.170077,71.0337692 L219.747,71.0337692 L219.747,73.1491538 Z M222.64,64.5632308 L224.755385,64.5632308 L224.755385,64.1401538 L222.64,64.1401538 L222.64,64.5632308 Z","id","Fill-119"],["d","M82.1463077,84.6513462 L68.3315769,84.6513462 L68.3315769,79.8456154 L68.7546538,79.8456154 L68.7546538,84.2282692 L81.7232308,84.2282692 L81.7232308,71.2592692 L73.3391154,71.2592692 L73.3391154,70.8361923 L82.1463077,70.8361923 L82.1463077,84.6513462 M68.7546538,77.7302308 L68.3315769,77.7302308 L68.3315769,70.8361923 L71.2237308,70.8361923 L71.2237308,71.2592692 L68.7546538,71.2592692 L68.7546538,77.7302308","id","Fill-120"],["d","M68.3315769,79.8456154 L68.7546538,79.8456154 L68.7546538,77.7302308 L68.3315769,77.7302308 L68.3315769,79.8456154 Z M71.2237308,71.2592692 L73.3391154,71.2592692 L73.3391154,70.8361923 L71.2237308,70.8361923 L71.2237308,71.2592692 Z","id","Fill-121"],["d","M81.4740385,170.149269 L67.6593077,170.149269 L67.6593077,165.343538 L68.0823846,165.343538 L68.0823846,169.726192 L81.0509615,169.726192 L81.0509615,156.757192 L72.6672692,156.757192 L72.6672692,156.334115 L81.4740385,156.334115 L81.4740385,170.149269 M68.0823846,163.228154 L67.6593077,163.228154 L67.6593077,156.334115 L70.5518846,156.334115 L70.5518846,156.757192 L68.0823846,156.757192 L68.0823846,163.228154","id","Fill-122"],["d","M67.6593077,165.343538 L68.0823846,165.343538 L68.0823846,163.228154 L67.6593077,163.228154 L67.6593077,165.343538 Z M70.5518846,156.757192 L72.6672692,156.757192 L72.6672692,156.334115 L70.5518846,156.334115 L70.5518846,156.757192 Z","id","Fill-123"],["d","M233.561308,235.031923 L219.747,235.031923 L219.747,230.226192 L220.170077,230.226192 L220.170077,234.608846 L233.138231,234.608846 L233.138231,221.639846 L224.754538,221.639846 L224.754538,221.216769 L233.561308,221.216769 L233.561308,235.031923 M220.170077,228.110808 L219.747,228.110808 L219.747,221.216769 L222.639154,221.216769 L222.639154,221.639846 L220.170077,221.639846 L220.170077,228.110808","id","Fill-124"],["d","M219.747,230.226192 L220.170077,230.226192 L220.170077,228.110808 L219.747,228.110808 L219.747,230.226192 Z M222.639154,221.639846 L224.754538,221.639846 L224.754538,221.216769 L222.639154,221.216769 L222.639154,221.639846 Z","id","Fill-125"],["d","M178.0075,20.9156538 L164.193192,20.9156538 L164.193192,16.1095 L164.616269,16.1095 L164.616269,20.4925769 L177.584423,20.4925769 L177.584423,7.52315385 L169.200731,7.52315385 L169.200731,7.10007692 L178.0075,7.10007692 L178.0075,20.9156538 M164.616269,13.9941154 L164.193192,13.9941154 L164.193192,7.10007692 L167.085346,7.10007692 L167.085346,7.52315385 L164.616269,7.52315385 L164.616269,13.9941154","id","Fill-126"],["d","M164.193192,16.1095 L164.616269,16.1095 L164.616269,13.9941154 L164.193192,13.9941154 L164.193192,16.1095 Z M167.085346,7.52315385 L169.200731,7.52315385 L169.200731,7.10007692 L167.085346,7.10007692 L167.085346,7.52315385 Z","id","Fill-127"],["d","M145.154308,143.693 C144.562,143.693 144.078846,143.487385 143.693,143.165846 C143.304192,142.843462 143.005923,142.412769 142.732192,141.948231 C142.187692,141.018308 141.730346,139.944962 140.990808,139.262115 C140.4975,138.806885 139.894192,138.510731 139.011231,138.508615 L139.011231,138.085538 C139.0125,138.085538 139.014192,138.085538 139.015885,138.085538 C139.749923,138.085538 140.346038,138.281 140.829615,138.598308 C141.314462,138.916462 141.685923,139.350115 142.001538,139.819308 C142.628538,140.758115 143.052462,141.848385 143.651538,142.5325 C144.052615,142.989 144.496423,143.266538 145.1615,143.269923 L145.1615,143.693 C145.158962,143.693 145.156846,143.693 145.154308,143.693","id","Fill-128"],["d","M157.454423,143.693 C156.861692,143.693 156.378538,143.487385 155.992692,143.165846 C155.604308,142.843462 155.305615,142.412769 155.031885,141.948231 C154.487808,141.018308 154.030462,139.944962 153.290923,139.262115 C152.797615,138.806885 152.194731,138.510731 151.311769,138.508615 L151.311769,138.085538 C151.313462,138.085538 151.314731,138.085538 151.316423,138.085538 C152.050038,138.085538 152.646154,138.281 153.129731,138.598308 C153.615,138.916462 153.986038,139.350115 154.301231,139.819308 C154.928654,140.758115 155.352154,141.848385 155.951231,142.5325 C156.352731,142.989 156.796115,143.266538 157.461192,143.269923 L157.461192,143.693 C157.459077,143.693 157.456538,143.693 157.454423,143.693","id","Fill-129"],["d","M145.172077,143.693 C145.168269,143.693 145.164885,143.693 145.1615,143.693 L145.1615,143.269923 C145.662,143.268231 146.031769,143.109577 146.360077,142.840077 C146.686692,142.570154 146.963385,142.1805 147.226115,141.733731 C147.754538,140.841038 148.214423,139.727077 149.044077,138.952 C149.5945,138.437115 150.324308,138.085538 151.301615,138.085538 C151.305,138.085538 151.308385,138.085538 151.311769,138.085538 L151.311769,138.508615 C150.648808,138.509462 150.144923,138.678269 149.725231,138.952423 C149.305962,139.227 148.969615,139.613269 148.672615,140.055385 C148.075654,140.939192 147.658077,142.036231 146.990885,142.810038 C146.549615,143.323654 145.963654,143.693 145.172077,143.693","id","Fill-130"],["d","M157.471769,143.693 C157.468385,143.693 157.464577,143.693 157.461192,143.693 L157.461192,143.269923 C157.961692,143.268231 158.331462,143.109577 158.659346,142.840077 C158.985962,142.570154 159.263077,142.1805 159.525385,141.733731 C160.054231,140.841038 160.513692,139.727077 161.343346,138.952 C161.893769,138.437115 162.623577,138.085538 163.600462,138.085538 C163.603846,138.085538 163.607231,138.085538 163.610615,138.085538 L163.610615,138.508615 C162.947654,138.509462 162.444192,138.678269 162.0245,138.952423 C161.605231,139.226577 161.268885,139.613269 160.971885,140.055385 C160.375346,140.939192 159.957769,142.036231 159.290154,142.810038 C158.849308,143.323654 158.262923,143.693 157.471769,143.693","id","Fill-131"],["d","M180.193115,240.253538 C179.600385,240.253538 179.117231,240.047923 178.731385,239.726385 C178.343,239.404 178.044308,238.973308 177.770577,238.508769 C177.2265,237.578423 176.769154,236.505077 176.029615,235.821808 C175.535885,235.366577 174.933,235.070846 174.049615,235.068308 L174.049615,234.645231 C174.050885,234.645231 174.052577,234.645231 174.054269,234.645231 C174.788308,234.645231 175.384423,234.840692 175.868,235.158423 C176.353269,235.476577 176.724731,235.910231 177.039923,236.379423 C177.667346,237.318654 178.090846,238.4085 178.689923,239.093038 C179.091423,239.549538 179.535231,239.827077 180.199885,239.830462 L180.199885,240.253538 C180.197769,240.253538 180.195231,240.253538 180.193115,240.253538","id","Fill-132"],["d","M192.492808,240.253538 C191.9005,240.253538 191.416923,240.047923 191.0315,239.726385 C190.642692,239.404 190.344423,238.973308 190.070269,238.508769 C189.526192,237.578846 189.068846,236.505923 188.329731,235.822654 C187.836,235.367423 187.233115,235.071692 186.350154,235.069154 L186.350154,234.646077 C186.351846,234.646077 186.353538,234.646077 186.355231,234.646077 C187.088846,234.646077 187.684962,234.841538 188.168115,235.159269 C188.653385,235.477 189.024846,235.911077 189.340038,236.380269 C189.967038,237.319077 190.390962,238.408923 190.989615,239.093462 C191.391115,239.549538 191.834923,239.827077 192.499577,239.830462 L192.499577,240.253538 C192.497462,240.253538 192.494923,240.253538 192.492808,240.253538","id","Fill-133"],["d","M180.210462,240.253538 C180.207077,240.253538 180.203269,240.253538 180.199885,240.253538 L180.199885,239.830462 C180.700808,239.828769 181.070577,239.670115 181.398462,239.400615 C181.725077,239.130692 182.002192,238.741462 182.2645,238.294269 C182.793346,237.401577 183.252808,236.287615 184.082462,235.512962 C184.633308,234.997654 185.363115,234.646077 186.34,234.646077 C186.343385,234.646077 186.346769,234.646077 186.350154,234.646077 L186.350154,235.069154 C185.687192,235.07 185.183731,235.239231 184.763615,235.512962 C184.344346,235.787538 184.008,236.173808 183.711,236.615923 C183.114462,237.499731 182.696885,238.596769 182.029269,239.370577 C181.588423,239.884192 181.002038,240.253538 180.210462,240.253538","id","Fill-134"],["d","M192.5,240.253538 L192.499577,240.042 L192.499577,239.830462 C193.000077,239.828769 193.369846,239.669692 193.697731,239.400192 C194.024346,239.130692 194.301462,238.741038 194.563769,238.293846 C195.092192,237.401577 195.552077,236.287615 196.381308,235.512538 C196.932154,234.997654 197.661538,234.646077 198.638,234.646077 C198.641385,234.646077 198.644769,234.646077 198.648154,234.646077 L198.648577,234.646077 L198.682846,234.648615 L198.615577,235.066615 L198.648577,234.860577 L198.648577,235.069154 L198.648154,235.069154 C197.985615,235.07 197.482154,235.239231 197.062462,235.512962 C196.643192,235.787115 196.307269,236.173385 196.010269,236.615923 C195.413308,237.499308 194.996154,238.596346 194.328538,239.370154 C193.887692,239.883769 193.301308,240.253538 192.510154,240.253538 C192.506769,240.253538 192.502962,240.253538 192.5,240.253538","id","Fill-135"],["d","M196.964731,101.043462 C196.372423,101.043462 195.889269,100.837846 195.503423,100.516308 C195.114615,100.193923 194.816346,99.7632308 194.542615,99.2986923 C193.998115,98.3687692 193.541192,97.2954231 192.801654,96.6121538 C192.308346,96.1569231 191.705462,95.8611923 190.822077,95.8586538 L190.822077,95.4355769 C190.823769,95.4355769 190.825462,95.4355769 190.827154,95.4355769 C191.560769,95.4355769 192.156885,95.6310385 192.640462,95.9487692 C193.125308,96.2665 193.496769,96.7005769 193.811962,97.1697692 C194.438962,98.1085769 194.862885,99.1988462 195.461962,99.8829615 C195.863038,100.339462 196.306846,100.617 196.971923,100.620385 L196.971923,101.043462 C196.969385,101.043462 196.967269,101.043462 196.964731,101.043462","id","Fill-136"],["d","M209.264423,101.043462 C208.672115,101.043462 208.188962,100.837846 207.803115,100.516308 C207.414731,100.193923 207.116038,99.7632308 206.842308,99.2991154 C206.297808,98.3687692 205.840885,97.2958462 205.101346,96.6125769 C204.608038,96.1573462 204.005154,95.8616154 203.122192,95.8590769 L203.122192,95.436 C203.123885,95.436 203.125154,95.436 203.126846,95.436 C203.860885,95.436 204.456577,95.6314615 204.940154,95.9491923 C205.425,96.2669231 205.796462,96.701 206.111654,97.1701923 C206.739077,98.109 207.162577,99.1988462 207.761654,99.8833846 C208.163154,100.339462 208.606538,100.617 209.271615,100.620385 L209.271615,101.043462 C209.269077,101.043462 209.266962,101.043462 209.264423,101.043462","id","Fill-137"],["d","M196.9825,101.043462 C196.978692,101.043462 196.975308,101.043462 196.971923,101.043462 L196.971923,100.620385 C197.472423,100.618692 197.842192,100.460038 198.1705,100.190538 C198.497115,99.9206154 198.774231,99.5313846 199.036538,99.0841923 C199.565385,98.1915 200.025269,97.0775385 200.8545,96.3028846 C201.405346,95.7875769 202.135154,95.436 203.112038,95.436 C203.115423,95.436 203.118808,95.436 203.122192,95.436 L203.122192,95.8590769 C202.459231,95.8599231 201.955769,96.0291538 201.536077,96.3028846 C201.116385,96.5774615 200.780038,96.9637308 200.483462,97.4058462 C199.8865,98.2896538 199.468923,99.3866923 198.801308,100.1605 C198.360038,100.674115 197.774077,101.043462 196.9825,101.043462","id","Fill-138"],["d","M209.281769,101.043462 C209.278385,101.043462 209.275,101.043462 209.271615,101.043462 L209.271615,100.620385 C209.772115,100.618692 210.141885,100.460038 210.470192,100.190538 C210.796808,99.9206154 211.0735,99.5309615 211.336231,99.0841923 C211.864654,98.1915 212.324538,97.0775385 213.154192,96.3024615 C213.705038,95.7875769 214.434846,95.436 215.411731,95.436 C215.415115,95.436 215.4185,95.436 215.421885,95.436 L215.421885,95.8590769 C214.758923,95.8599231 214.255462,96.0291538 213.835346,96.3028846 C213.416077,96.5774615 213.079731,96.9637308 212.782731,97.4058462 C212.185769,98.2896538 211.768192,99.3866923 211.101,100.1605 C210.659731,100.674115 210.073346,101.043462 209.281769,101.043462","id","Fill-139"],["d","M25.9227692,94.7785385 C25.3300385,94.7785385 24.8468846,94.5729231 24.4610385,94.2513846 C24.0726538,93.9285769 23.7739615,93.4978846 23.5002308,93.0337692 C22.9561538,92.1034231 22.4988077,91.0305 21.7592692,90.3472308 C21.2655385,89.892 20.6626538,89.5958462 19.7796923,89.5937308 L19.7796923,89.1706538 C19.7813846,89.1706538 19.7826538,89.1706538 19.7843462,89.1706538 C20.5183846,89.1706538 21.1145,89.3656923 21.5976538,89.6834231 C22.0829231,90.0015769 22.4543846,90.4356538 22.7695769,90.9044231 C23.397,91.8436538 23.8205,92.9335 24.4195769,93.6180385 C24.8206538,94.0741154 25.2644615,94.3520769 25.9295385,94.3554615 L25.9295385,94.7785385 C25.927,94.7785385 25.9248846,94.7785385 25.9227692,94.7785385","id","Fill-140"],["d","M38.2224615,94.7785385 C37.6297308,94.7785385 37.1465769,94.5729231 36.7607308,94.2513846 C36.3723462,93.9285769 36.0736538,93.4983077 35.7999231,93.0337692 C35.2558462,92.1038462 34.7985,91.0305 34.0589615,90.3476538 C33.5656538,89.8924231 32.9627692,89.5962692 32.0798077,89.5941538 L32.0798077,89.1710769 C32.0815,89.1710769 32.0831923,89.1710769 32.0848846,89.1710769 C32.8185,89.1710769 33.4141923,89.3661154 33.8977692,89.6838462 C34.3830385,90.002 34.7545,90.4356538 35.0696923,90.9048462 C35.6966923,91.8436538 36.1201923,92.9335 36.7192692,93.6180385 C37.1207692,94.0741154 37.5645769,94.3520769 38.2292308,94.3554615 L38.2292308,94.7785385 C38.2271154,94.7785385 38.2245769,94.7785385 38.2224615,94.7785385","id","Fill-141"],["d","M25.9401154,94.7785385 C25.9367308,94.7785385 25.9329231,94.7785385 25.9295385,94.7785385 L25.9295385,94.3554615 C26.4304615,94.3537692 26.7998077,94.1946923 27.1281154,93.9256154 C27.4547308,93.6556923 27.7318462,93.2660385 27.9945769,92.8192692 C28.523,91.9265769 28.9824615,90.8126154 29.8121154,90.0375385 C30.3629615,89.5226538 31.0927692,89.1710769 32.0696538,89.1710769 C32.0730385,89.1710769 32.0764231,89.1710769 32.0798077,89.1710769 L32.0798077,89.5941538 C31.4168462,89.595 30.9133846,89.7638077 30.4932692,90.0379615 C30.074,90.3121154 29.7376538,90.6983846 29.4410769,91.1409231 C28.8441154,92.0247308 28.4265385,93.1217692 27.7589231,93.8955769 C27.3180769,94.4087692 26.7316923,94.7785385 25.9401154,94.7785385","id","Fill-142"],["d","M38.2398077,94.7785385 C38.2364231,94.7785385 38.2326154,94.7785385 38.2292308,94.7785385 L38.2292308,94.3554615 C38.7297308,94.3533462 39.0995,94.1946923 39.4278077,93.9251923 C39.7544231,93.6552692 40.0311154,93.2660385 40.2938462,92.8188462 C40.8222692,91.9265769 41.2817308,90.8126154 42.1113846,90.0375385 C42.6622308,89.5222308 43.3916154,89.1710769 44.3685,89.1710769 C44.3718846,89.1710769 44.3752692,89.1710769 44.3786538,89.1710769 L44.3790769,89.1710769 L44.396,89.1715 L44.3790769,89.386 L44.3790769,89.5941538 L44.3786538,89.5941538 C43.7156923,89.595 43.2126538,89.7638077 42.7925385,90.0379615 C42.3732692,90.3121154 42.0369231,90.6983846 41.7403462,91.1405 C41.1433846,92.0243077 40.7258077,93.1213462 40.0586154,93.8951538 C39.6173462,94.4087692 39.0313846,94.7785385 38.2398077,94.7785385","id","Fill-143"],["d","M141.206577,31.3093846 L140.783497,31.3093846 C140.782654,30.5732308 140.978115,29.9758462 141.296692,29.4914231 C141.614423,29.0061538 142.0485,28.6346923 142.517269,28.3195 C143.4565,27.6920769 144.546346,27.2685769 145.230462,26.6695 C145.686962,26.268 145.9645,25.8241923 145.967885,25.1595385 L146.390972,25.1595385 C146.392654,25.7552308 146.186615,26.2405 145.863808,26.6280385 C145.541423,27.0164231 145.110731,27.3151154 144.646192,27.5888462 C143.716269,28.1329231 142.643346,28.5902692 141.960077,29.3298077 C141.504846,29.8231154 141.209115,30.426 141.206577,31.3093846","id","Fill-144"],["d","M141.206577,19.0092692 L140.783497,19.0092692 C140.782654,18.2731154 140.978115,17.6757308 141.296692,17.1913077 C141.614423,16.7060385 142.0485,16.3345769 142.517269,16.0193846 C143.4565,15.3923846 144.546346,14.9684615 145.230462,14.3698077 C145.686962,13.9683077 145.9645,13.5245 145.967885,12.8598462 L146.390972,12.8598462 C146.392654,13.4551154 146.186615,13.9408077 145.863808,14.3279231 C145.541423,14.7167308 145.110731,15.015 144.646192,15.2891538 C143.716269,15.8332308 142.643346,16.2901538 141.960077,17.0296923 C141.504846,17.5234231 141.209115,18.1263077 141.206577,19.0092692","id","Fill-145"],["d","M146.390985,25.1595385 L145.967885,25.1595385 C145.966192,24.6586154 145.807538,24.2888462 145.538038,23.9609615 C145.268115,23.6339231 144.878462,23.3572308 144.431692,23.0945 C143.539,22.5660769 142.425038,22.1061923 141.650385,21.2769615 C141.133385,20.724 140.780962,19.9912308 140.783486,19.0092692 L141.206577,19.0092692 C141.207423,19.6722308 141.376231,20.1756923 141.650385,20.5953846 C141.924962,21.0150769 142.311231,21.351 142.753346,21.648 C143.637154,22.2449615 144.734192,22.6625385 145.508,23.3301538 C146.023731,23.7731154 146.394346,24.3624615 146.390985,25.1595385","id","Fill-146"],["d","M146.390985,12.8598462 L145.967885,12.8598462 C145.966192,12.3589231 145.807538,11.9891538 145.538038,11.6612692 C145.268115,11.3346538 144.878462,11.0575385 144.431692,10.7952308 C143.539,10.2668077 142.425038,9.80692308 141.650385,8.97726923 C141.133385,8.42473077 140.780962,7.69196154 140.783486,6.70957692 L141.206577,6.70957692 C141.207423,7.37253846 141.376231,7.87642308 141.650385,8.29611538 C141.924962,8.71538462 142.311231,9.05173077 142.753346,9.34873077 C143.637154,9.94569231 144.734192,10.3628462 145.508,11.0304615 C146.023731,11.4734231 146.394346,12.0627692 146.390985,12.8598462","id","Fill-147"],["d","M103.4935,95.6471154 L103.07042,95.6471154 C103.069577,94.9113846 103.265038,94.3135769 103.583192,93.8291538 C103.901346,93.3438846 104.335423,92.9724231 104.804192,92.6572308 C105.743,92.0298077 106.833269,91.6063077 107.517385,91.0072308 C107.973885,90.6057308 108.251423,90.1623462 108.254808,89.4972692 L108.677895,89.4972692 C108.679577,90.0929615 108.473538,90.5786538 108.150731,90.9657692 C107.828346,91.3541538 107.397654,91.6528462 106.933115,91.9265769 C106.003192,92.4710769 104.930269,92.928 104.247,93.6675385 C103.791769,94.1608462 103.496038,94.7641538 103.4935,95.6471154","id","Fill-148"],["d","M103.4935,83.347 L103.07042,83.347 C103.069577,82.6108462 103.265038,82.0134615 103.583192,81.5290385 C103.901346,81.0437692 104.335423,80.6723077 104.804192,80.3571154 C105.743,79.7301154 106.833269,79.3066154 107.517385,78.7075385 C107.973885,78.3060385 108.251423,77.8622308 108.254808,77.1975769 L108.677895,77.1975769 C108.679577,77.7932692 108.473538,78.2785385 108.150731,78.6660769 C107.828346,79.0544615 107.397654,79.3531538 106.933115,79.6268846 C106.003192,80.1709615 104.930269,80.6283077 104.247,81.3678462 C103.791769,81.8611538 103.496038,82.4640385 103.4935,83.347","id","Fill-149"],["d","M108.677908,89.4972692 L108.254808,89.4972692 C108.253115,88.9967692 108.094462,88.627 107.824962,88.2986923 C107.555038,87.9720769 107.165385,87.6949615 106.718615,87.4326538 C105.825923,86.9038077 104.711962,86.4439231 103.936885,85.6146923 C103.420308,85.0621538 103.067885,84.3289615 103.070409,83.347 L103.4935,83.347 C103.494346,84.0099615 103.663154,84.5134231 103.937308,84.9335385 C104.211885,85.3528077 104.598154,85.6891538 105.040269,85.9857308 C105.924077,86.5826923 107.021115,87.0002692 107.794923,87.6678846 C108.310654,88.1108462 108.681269,88.7006154 108.677908,89.4972692","id","Fill-150"],["d","M108.677908,77.1975769 L108.254808,77.1975769 C108.253115,76.6970769 108.094462,76.3273077 107.824962,75.999 C107.555038,75.6723846 107.165385,75.3956923 106.718615,75.1329615 C105.825923,74.6045385 104.711962,74.1446538 103.936885,73.3154231 C103.420308,72.7624615 103.067885,72.0296923 103.070409,71.0477308 L103.4935,71.0477308 C103.494346,71.7106923 103.663154,72.2141538 103.937308,72.6338462 C104.211885,73.0531154 104.598154,73.3894615 105.040269,73.6864615 C105.924077,74.2834231 107.021115,74.701 107.794923,75.3681923 C108.310654,75.8111538 108.681269,76.4009231 108.677908,77.1975769","id","Fill-151"],["d","M205.722423,198.425192 L205.299343,198.425192 C205.2985,197.689038 205.493962,197.091231 205.812538,196.606808 C206.130269,196.121538 206.564346,195.750077 207.033538,195.434885 C207.972346,194.807462 209.062192,194.383962 209.746731,193.784885 C210.202808,193.383385 210.480346,192.939577 210.483731,192.274923 L210.906818,192.274923 C210.9085,192.870615 210.702885,193.355885 210.379654,193.743423 C210.057269,194.131808 209.626577,194.4305 209.162462,194.704231 C208.232115,195.248308 207.159192,195.705654 206.475923,196.445192 C206.020692,196.938923 205.724962,197.541808 205.722423,198.425192","id","Fill-152"],["d","M205.722423,186.124654 L205.299343,186.124654 C205.2985,185.3885 205.493962,184.791115 205.812538,184.306692 C206.130269,183.821423 206.564346,183.449962 207.033538,183.134769 C207.972346,182.507769 209.062192,182.083846 209.746731,181.485192 C210.202808,181.083692 210.480346,180.639885 210.483731,179.975231 L210.906818,179.975231 C210.9085,180.5705 210.702885,181.056192 210.379654,181.443308 C210.057269,181.832115 209.626577,182.130385 209.162462,182.404538 C208.232115,182.948615 207.159192,183.405538 206.475923,184.145077 C206.020692,184.638385 205.724962,185.241692 205.722423,186.124654","id","Fill-153"],["d","M210.906831,192.274923 L210.483731,192.274923 C210.482038,191.774 210.323385,191.404231 210.053885,191.076346 C209.783962,190.749308 209.394731,190.472615 208.947538,190.210308 C208.054846,189.681462 206.940885,189.222 206.166231,188.392346 C205.649231,187.839808 205.296808,187.106615 205.299333,186.124654 L205.722423,186.124654 C205.723269,186.787615 205.8925,187.291077 206.166231,187.711192 C206.440808,188.130462 206.827077,188.466808 207.269192,188.763385 C208.153,189.360346 209.250038,189.777923 210.023846,190.445538 C210.539577,190.8885 210.910192,191.477846 210.906831,192.274923","id","Fill-154"],["d","M210.906831,179.975231 L210.483731,179.975231 C210.482038,179.474308 210.323385,179.104962 210.053885,178.776654 C209.783962,178.450038 209.394731,178.173346 208.947538,177.910615 C208.054846,177.382192 206.940885,176.922308 206.166231,176.093077 C205.649231,175.540538 205.296808,174.807346 205.299333,173.825385 L205.722423,173.825385 C205.723269,174.488346 205.8925,174.991808 206.166231,175.411923 C206.440808,175.831192 206.827077,176.167538 207.269192,176.464115 C208.153,177.061077 209.250038,177.478654 210.023846,178.145846 C210.539577,178.588808 210.910192,179.178154 210.906831,179.975231","id","Fill-155"],["d","M78.8818462,208.117038 L78.4587665,208.117038 C78.4579231,207.381308 78.6533846,206.7835 78.9719615,206.299077 C79.2896923,205.813808 79.7237692,205.442346 80.1925385,205.127577 C81.1317692,204.500154 82.2216154,204.076654 82.9057308,203.477577 C83.3622308,203.076077 83.6397692,202.632692 83.6431538,201.967615 L84.0662411,201.967615 C84.0679231,202.563308 83.8618846,203.048577 83.5390769,203.436115 C83.2166923,203.8245 82.786,204.123192 82.3214615,204.396923 C81.3915385,204.941 80.3186154,205.398346 79.6353462,206.137885 C79.1801154,206.631192 78.8843846,207.234077 78.8818462,208.117038","id","Fill-156"],["d","M78.8818462,195.817346 L78.4587665,195.817346 C78.4579231,195.081192 78.6533846,194.483808 78.9719615,193.999385 C79.2896923,193.514115 79.7237692,193.142654 80.1925385,192.827462 C81.1317692,192.200462 82.2216154,191.776962 82.9057308,191.177885 C83.3622308,190.776385 83.6397692,190.332577 83.6431538,189.667923 L84.0662411,189.667923 C84.0679231,190.263192 83.8618846,190.748885 83.5390769,191.136 C83.2166923,191.524808 82.786,191.8235 82.3214615,192.097231 C81.3915385,192.641308 80.3186154,193.098231 79.6353462,193.837769 C79.1801154,194.3315 78.8843846,194.934385 78.8818462,195.817346","id","Fill-157"],["d","M84.0662538,201.967615 L83.6431538,201.967615 C83.6414615,201.466692 83.4828077,201.096923 83.2133077,200.769038 C82.9433846,200.442 82.5541538,200.165308 82.1069615,199.902577 C81.2142692,199.374154 80.1003077,198.914269 79.3256538,198.084615 C78.8086538,197.532077 78.4562308,196.799308 78.4587556,195.817346 L78.8818462,195.817346 C78.8826923,196.480308 79.0519231,196.983769 79.3256538,197.403462 C79.6002308,197.822731 79.9865,198.159077 80.4286154,198.456077 C81.3124231,199.053038 82.4094615,199.470615 83.1832692,200.138231 C83.699,200.581192 84.0696154,201.170538 84.0662538,201.967615","id","Fill-158"],["d","M84.0662538,189.667923 L83.6431538,189.667923 C83.6414615,189.167 83.4828077,188.797231 83.2133077,188.469346 C82.9433846,188.142308 82.5541538,187.865615 82.1069615,187.602885 C81.2142692,187.074462 80.1003077,186.615 79.3256538,185.785346 C78.8086538,185.232808 78.4562308,184.499615 78.4587556,183.517654 L78.8818462,183.517654 C78.8826923,184.180615 79.0519231,184.684077 79.3256538,185.104192 C79.6002308,185.523462 79.9865,185.859808 80.4286154,186.156385 C81.3124231,186.753346 82.4094615,187.170923 83.1832692,187.838538 C83.699,188.2815 84.0696154,188.870846 84.0662538,189.667923","id","Fill-159"],["id","Fill-160","points","159.898962 157.494192 175.074308 157.494192 175.074308 157.071115 159.898962 157.071115"],["id","Fill-161","points","10.7106154 113.642269 25.8859615 113.642269 25.8859615 113.219192 10.7106154 113.219192"],["id","Fill-162","points","161.033231 43.1022308 176.208577 43.1022308 176.208577 42.6791538 161.033231 42.6791538"],["id","Fill-163","points","220.851654 8.85415385 236.027 8.85415385 236.027 8.43107692 220.851654 8.43107692"],["id","Fill-164","points","71.2097692 235.037846 86.3851154 235.037846 86.3851154 234.614769 71.2097692 234.614769"],["id","Fill-165","points","110.326192 205.658115 110.027077 205.359 120.757577 194.628077 121.056692 194.927192 110.326192 205.658115"],["id","Fill-166","points","21.4982308 19.5228846 21.1991154 19.2233462 31.9300385 8.49284615 32.2291538 8.79196154 21.4982308 19.5228846"],["id","Fill-167","points","228.588462 129.527962 228.289346 129.228846 239.019846 118.497923 239.318962 118.797462 228.588462 129.527962"],["d","M139.227423,187.558885 L138.664731,186.663231 C138.397346,186.830769 138.108385,186.908192 137.817731,186.908615 C137.552462,186.908615 137.288462,186.842192 137.055769,186.716115 C136.822654,186.589615 136.620846,186.407269 136.467692,186.164 L136.466846,186.162731 C136.298885,185.894923 136.221885,185.606385 136.221462,185.315731 C136.221038,185.050885 136.287462,184.787308 136.413538,184.554615 C136.540038,184.3215 136.722808,184.119269 136.9665,183.965692 C137.232192,183.799 137.520731,183.722 137.811385,183.721154 C138.076654,183.721154 138.341077,183.788 138.574192,183.913654 C138.807731,184.040154 139.009538,184.222923 139.162269,184.465769 L139.163115,184.467038 C139.330231,184.733154 139.407231,185.021692 139.408077,185.312346 C139.408077,185.577615 139.341654,185.841615 139.215577,186.075154 C139.089077,186.308692 138.906308,186.510923 138.663885,186.664077 L138.664731,186.663231 L139.227423,187.558885 L139.791385,188.454115 C140.348154,188.103385 140.784346,187.622769 141.077115,187.079538 C141.370308,186.535885 141.523038,185.928769 141.523462,185.312346 C141.523885,184.638385 141.337731,183.950038 140.953154,183.339538 L140.953577,183.340808 C140.603692,182.782769 140.122654,182.345308 139.579,182.052538 C139.034923,181.758923 138.427385,181.606192 137.811385,181.605769 C137.137423,181.605346 136.449923,181.791077 135.840269,182.175231 C135.282654,182.525538 134.845615,183.005731 134.552423,183.548962 C134.258808,184.092615 134.106077,184.699731 134.105653,185.315731 C134.105231,185.990538 134.291808,186.678885 134.676808,187.289808 L134.675962,187.288115 C135.025846,187.846154 135.506462,188.284038 136.050115,188.577231 C136.593769,188.870846 137.201308,189.024001 137.817731,189.024001 C138.491692,189.024423 139.179615,188.838692 139.790115,188.454538 L139.791385,188.454115 L139.227423,187.558885","id","Fill-168"],["d","M118.331231,114.613654 L117.768538,113.718 C117.501154,113.885538 117.212192,113.962962 116.921538,113.963385 C116.656269,113.963385 116.392692,113.896962 116.159577,113.770885 C115.926462,113.644385 115.724654,113.462038 115.5715,113.218346 L115.570654,113.2175 C115.403115,112.950115 115.325692,112.661154 115.325269,112.3705 C115.325269,112.106077 115.391692,111.8425 115.517346,111.609385 C115.643846,111.376269 115.826615,111.174462 116.069885,111.020885 C116.336,110.854192 116.624538,110.776769 116.915192,110.776346 C117.180462,110.776346 117.444885,110.842769 117.678,110.968846 C117.911538,111.095346 118.113346,111.278115 118.2665,111.521385 L118.267346,111.522231 C118.434462,111.788346 118.511462,112.076885 118.511885,112.367538 C118.512308,112.632385 118.445462,112.896385 118.319385,113.129923 C118.192885,113.363462 118.010538,113.565692 117.767692,113.718846 L117.768538,113.718 L118.331231,114.613654 L118.894769,115.508885 C119.451962,115.158577 119.888154,114.677962 120.181346,114.134308 C120.474538,113.590654 120.627272,112.983538 120.627272,112.367538 C120.628115,111.693154 120.441962,111.005231 120.057385,110.394731 L120.057808,110.396 C119.7075,109.837962 119.226885,109.4005 118.682808,109.107308 C118.138731,108.813692 117.531615,108.660961 116.915192,108.660961 C116.241231,108.660538 115.553731,108.846269 114.943654,109.230423 C114.386462,109.580308 113.949423,110.0605 113.656654,110.603731 C113.363038,111.147385 113.209884,111.7545 113.209884,112.3705 C113.209462,113.045308 113.395615,113.733654 113.780615,114.344154 L113.779769,114.343308 C114.129654,114.901346 114.610269,115.338808 115.153923,115.632 C115.698,115.925615 116.305115,116.07877 116.921538,116.07877 C117.5955,116.079192 118.283423,115.893462 118.893923,115.509308 L118.894769,115.508885 L118.331231,114.613654","id","Fill-169"],["d","M22.7619615,137.046038 L22.1992692,136.150385 C21.9318846,136.317923 21.6425,136.394923 21.3518462,136.395769 C21.087,136.395769 20.823,136.328923 20.5903077,136.203269 C20.3571923,136.076769 20.1549615,135.894 20.0018077,135.650731 L20.0013846,135.649885 C19.8334231,135.382077 19.756,135.093115 19.7555769,134.802462 C19.7555769,134.538038 19.822,134.274462 19.9480769,134.041346 C20.0745769,133.808231 20.2573462,133.606423 20.5006154,133.452423 L20.5001923,133.452846 C20.7667308,133.285731 21.0548462,133.208731 21.3459231,133.208308 C21.6107692,133.208308 21.8751923,133.274731 22.1087308,133.400808 C22.3422692,133.527308 22.5440769,133.710077 22.6972308,133.952923 L22.6976538,133.953769 C22.8647692,134.220308 22.9421923,134.508423 22.9426154,134.799077 C22.9426154,135.064346 22.8761923,135.328769 22.7501154,135.561885 C22.6236154,135.795423 22.4408462,135.997654 22.198,136.150808 L22.1992692,136.150385 L22.7619615,137.046038 L23.3255,137.940846 C23.8822692,137.590538 24.3188846,137.109923 24.6116538,136.566269 C24.9048462,136.022615 25.0580007,135.4155 25.0580007,134.799077 C25.0584231,134.125115 24.8722692,133.436769 24.4876923,132.826692 L24.4881154,132.827538 C24.1382308,132.2695 23.6571923,131.832462 23.1135385,131.539269 C22.5694615,131.245654 21.9619231,131.092922 21.3459231,131.092922 C20.6719615,131.0925 19.9844615,131.278231 19.3743846,131.661962 L19.3739615,131.661962 C18.8171923,132.012269 18.3801538,132.492462 18.0869615,133.035692 C17.7933462,133.579346 17.6401916,134.186462 17.6401916,134.802462 C17.6397692,135.477269 17.8263462,136.165615 18.2109231,136.776115 L18.2105,136.775269 C18.5603846,137.333308 19.041,137.770769 19.5846538,138.063962 C20.1283077,138.358 20.7358462,138.510731 21.3518462,138.511155 C22.0262308,138.511577 22.7141538,138.325423 23.3242308,137.941692 L23.3255,137.940846 L22.7619615,137.046038","id","Fill-170"],["d","M49.9332308,53.5801538 L49.3705385,52.6845 C49.1031538,52.8520385 48.8141923,52.9290385 48.5235385,52.9294615 C48.2582692,52.9298846 47.9946923,52.8630385 47.7615769,52.7373846 C47.5284615,52.6108846 47.3266538,52.4281154 47.1735,52.1844231 L47.1726538,52.1835769 C47.0051154,51.9161923 46.9276923,51.6272308 46.9272692,51.3365769 C46.9272692,51.0721538 46.9936923,50.8085769 47.1193462,50.5758846 C47.2458462,50.3427692 47.4286154,50.1405385 47.6723077,49.9869615 C47.9384231,49.8202692 48.2265385,49.7432692 48.5171923,49.7424231 C48.7824615,49.7424231 49.0468846,49.8088462 49.28,49.9349231 C49.5135385,50.0618462 49.7153462,50.2441923 49.8685,50.4874615 L49.8693462,50.4883077 C50.0364615,50.7548462 50.1134615,51.0429615 50.1138846,51.3336154 C50.1143077,51.5984615 50.0474615,51.8628846 49.9213846,52.096 C49.7948846,52.3295385 49.6125385,52.5317692 49.3696923,52.6849231 L49.3705385,52.6845 L49.9332308,53.5801538 L50.4967692,54.4749615 C51.0539615,54.1246538 51.4905769,53.6440385 51.7833462,53.1008077 C52.0765385,52.5567308 52.2292721,51.9496154 52.2292721,51.3336154 C52.2301154,50.6596538 52.0439615,49.9713077 51.6593846,49.3612308 L51.6598077,49.3620769 C51.3095,48.8040385 50.8288846,48.367 50.2848077,48.0738077 C49.7411538,47.7801923 49.1336154,47.6274615 48.5171923,47.6270377 C47.8432308,47.6266154 47.1557308,47.8123462 46.5456538,48.1965 C45.9884615,48.5463846 45.5514231,49.0265769 45.2586538,49.5702308 C44.9650385,50.1138846 44.8118839,50.721 44.8118839,51.3365769 C44.8114615,52.0113846 44.9976154,52.6997308 45.3826154,53.3106538 L45.3817692,53.3093846 C45.7320769,53.8674231 46.2122692,54.3048846 46.7559231,54.5980769 C47.3,54.8921154 47.9071154,55.044849 48.5235385,55.044849 C49.1975,55.0456923 49.8854231,54.8595385 50.4959231,54.4758077 L50.4967692,54.4749615 L49.9332308,53.5801538","id","Fill-171"],["d","M195.8,52.261 L195.237308,51.3653462 C194.969923,51.5333077 194.680962,51.6103077 194.390308,51.6107308 C194.125462,51.6107308 193.861462,51.5443077 193.628769,51.4182308 C193.395231,51.2917308 193.193423,51.1093846 193.039846,50.8656923 L193.039846,50.8648462 C192.871885,50.5974615 192.794462,50.3085 192.794038,50.0178462 C192.794038,49.7534231 192.860462,49.4898462 192.986538,49.2567308 C193.112615,49.0236154 193.295385,48.8218077 193.538654,48.6682308 C193.805192,48.5015385 194.093308,48.4241154 194.384385,48.4236923 C194.649231,48.4236923 194.913654,48.4901154 195.146769,48.6161923 C195.380308,48.7426923 195.582538,48.9254615 195.736115,49.1687308 L195.736538,49.1695769 C195.903654,49.4356923 195.980654,49.7242308 195.981077,50.0148846 C195.9815,50.2797308 195.914654,50.5437308 195.788577,50.7772692 C195.662077,51.0108077 195.479308,51.2130385 195.236462,51.3661923 L195.237308,51.3653462 L195.8,52.261 L196.363538,53.1562308 C196.920731,52.8059231 197.357346,52.3253077 197.650115,51.7820769 C197.943731,51.238 198.096464,50.6308846 198.096464,50.0148846 C198.097308,49.3405 197.911154,48.6525769 197.526154,48.0425 L197.526577,48.0429231 C197.176269,47.4853077 196.695654,47.0478462 196.152,46.7550769 C195.607923,46.4614615 195.000385,46.308307 194.384385,46.308307 C193.710423,46.3078846 193.0225,46.4936154 192.412846,46.8777692 C191.855231,47.2276538 191.418192,47.7078462 191.125423,48.2515 C190.831808,48.7951538 190.678653,49.4018462 190.678653,50.0178462 C190.678231,50.6926538 190.864385,51.381 191.248962,51.9915 L191.248962,51.9910769 C191.598846,52.5486923 192.079462,52.9861538 192.622692,53.2793462 C193.166769,53.5729615 193.773885,53.7261161 194.390308,53.7261161 C195.064269,53.7265385 195.752192,53.5408077 196.362692,53.1566538 L196.363538,53.1562308 L195.8,52.261","id","Fill-172"],["d","M233.261346,146.737885 L232.698654,145.842231 C232.431269,146.009769 232.142308,146.087192 231.851654,146.087615 C231.586385,146.087615 231.322808,146.021192 231.089692,145.895115 C230.856577,145.768615 230.654769,145.585846 230.501192,145.342154 C230.333231,145.074346 230.255808,144.785385 230.255385,144.494308 C230.255385,144.229885 230.321808,143.966308 230.447462,143.733192 C230.573962,143.500077 230.756731,143.298269 231.000423,143.144692 C231.266115,142.978 231.554654,142.900577 231.845731,142.900154 C232.110577,142.900154 232.375,142.966577 232.608115,143.092654 C232.841654,143.219154 233.043885,143.401923 233.197038,143.645192 L233.197462,143.646038 C233.365,143.912154 233.442,144.200269 233.442423,144.490923 C233.442423,144.756192 233.376,145.020192 233.249923,145.253731 C233.123423,145.487269 232.940654,145.6895 232.697808,145.842654 L232.698654,145.842231 L233.261346,146.737885 L233.824885,147.633115 C234.382077,147.282808 234.818692,146.802192 235.111462,146.258538 C235.404654,145.714462 235.557808,145.107346 235.557808,144.490923 C235.558231,143.816962 235.3725,143.128615 234.9875,142.518538 L234.987923,142.519385 C234.637615,141.961346 234.157,141.524308 233.612923,141.231115 C233.068846,140.9375 232.461731,140.784769 231.845731,140.784769 C231.171769,140.784346 230.484269,140.970077 229.874192,141.353808 C229.316577,141.704115 228.879538,142.184308 228.586346,142.727962 C228.293154,143.271615 228.139999,143.878731 228.139999,144.494308 C228.139577,145.169115 228.325731,145.857462 228.710308,146.467962 C229.060192,147.025154 229.540385,147.462615 230.084038,147.756231 C230.628115,148.049846 231.235231,148.202577 231.851654,148.203001 C232.525615,148.203423 233.213538,148.017269 233.824038,147.633538 L233.824885,147.633115 L233.261346,146.737885","id","Fill-173"],["id","summary/card1","transform","translate(0.000000, 0.500000)"],["id","Group-3-Copy","transform","translate(0.000000, 31.500000)"],["d","M242.243,146.335 C203.034,140.754 163.526,137.965 124.02,137.965 C84.517,137.965 45.013,140.754 5.802,146.335 C9.204,138.915 12.718,131.514 16.34,124.135 C10.998,117.889 5.55,111.692 4.40536496e-13,105.546 C41.132,99.692 82.575,96.765 124.02,96.765 C165.468,96.765 206.913,99.692 248.049,105.546 C242.495,111.692 237.047,117.889 231.703,124.135 C235.327,131.514 238.839,138.915 242.243,146.335","id","Fill-47","fill","#035429"],["d","M221.022,128.961 C156.569,121.589 91.478,121.589 27.022,128.961 C34.239,133.013 41.355,137.154 48.359,141.384 C98.699,136.826 149.346,136.826 199.687,141.384 C206.691,137.154 213.804,133.013 221.022,128.961","id","Fill-48","fill","#135E41"],["id","Fill-49"],["fill","url(#linearGradient-2)","fill-rule","evenodd",0,"xlink","href","#path-3",1,"badge-img"],["stroke","#E55B28","stroke-width","2","d","M124.02,2 C128.022653,2 131.528214,5.10293248 135.02987,7.95760624 C138.340723,10.6567296 141.645472,13.2561325 145.089895,14.1797264 C148.415186,15.0715974 152.320881,14.6299487 156.265965,14.0272186 L157.295655,13.8671016 C161.693093,13.1744009 166.136786,12.2781684 169.426335,14.1845096 C172.781525,16.1285206 174.236945,20.4874458 175.831984,24.6733586 C177.371482,28.7135135 178.967537,32.6989638 181.561917,35.2933439 C183.94888,37.6798677 187.512993,39.221297 191.213788,40.651052 L192.181629,41.0219806 C196.367671,42.6166562 200.726744,44.0715627 202.670573,47.4278074 C204.403663,50.4183978 203.820311,54.3630785 203.179337,58.3595672 L202.987575,59.5591657 C202.31153,63.849787 201.705365,68.1492743 202.674308,71.763233 C203.598435,75.2078774 206.198132,78.5131022 208.897244,81.8241452 C211.75162,85.3256525 214.854,88.8306466 214.854,92.831 C214.854,96.832985 211.751613,100.338502 208.897136,103.840492 C206.198053,107.151839 203.598389,110.457345 202.674244,113.903006 C201.705459,117.515897 202.311415,121.814933 202.987311,126.105411 C203.680176,130.50361 204.576685,134.948676 202.66949,138.239335 C200.725565,141.594377 196.366857,143.049157 192.181152,144.643626 C188.140809,146.182723 184.155152,147.778421 181.560526,150.373047 C178.967035,152.967494 177.371371,156.952257 175.832191,160.99173 C174.237146,165.17782 172.781641,169.53691 169.426193,171.481573 C166.136359,173.388079 161.691952,172.491384 157.293947,171.798293 C153.003551,171.122161 148.704203,170.515846 145.090015,171.484241 C141.645415,172.407883 138.340605,175.007544 135.029695,177.706948 C131.528095,180.561823 128.022598,183.665 124.02,183.665 C120.021263,183.665 116.517987,180.563494 113.01758,177.709579 C109.70557,175.009266 106.398941,172.408134 102.95193,171.484227 C99.3382679,170.515364 95.0387743,171.121719 90.7479482,171.798003 C86.349975,172.491175 81.9053239,173.387896 78.6152772,171.481845 C75.2605635,169.536523 73.8048191,165.176943 72.2096648,160.990438 C70.6705899,156.951114 69.0751201,152.966605 66.4822136,150.371786 C63.887813,147.777386 59.9020478,146.181298 55.8616562,144.641805 C51.6759515,143.046943 47.317358,141.591742 45.3736068,138.237503 C43.4675217,134.947035 44.3637487,130.502249 45.0564894,126.104197 C45.7322463,121.813971 46.3381248,117.515135 45.3697764,113.902081 C44.4460882,110.456833 41.8463613,107.151411 39.147054,103.840043 C36.2925633,100.338303 33.19,96.8328843 33.19,92.831 C33.19,88.8309097 36.2923113,85.326134 39.1465896,81.8248571 C41.8460499,78.5134916 44.4460193,75.2079505 45.3698548,71.7626262 C46.3381043,68.1489808 45.7322705,63.8496639 45.05665,59.5592552 C44.3640075,55.1607518 43.4678241,50.715808 45.3743973,47.4258586 C47.3187833,44.0708887 51.6771927,42.615999 55.8625437,41.0215503 C59.9028406,39.4823613 63.8883044,37.8866009 66.4823439,35.2920832 C69.0762624,32.6976865 70.6720686,28.7121255 72.2113162,24.6718843 C73.8059598,20.4862389 75.2610199,16.1277098 78.6141553,14.1838046 C81.9057209,12.2779512 86.3498867,13.1741205 90.7474105,13.8669719 C95.0384528,14.5430467 99.3380864,15.1491655 102.951786,14.179812 C106.398885,13.2558815 109.705452,10.6550072 113.017405,7.95497485 C116.517868,5.10126124 120.021208,2 124.02,2 Z","stroke-linejoin","square"],["d","M49.607,92.831 C49.607,51.734 82.928,18.417 124.02,18.417 C165.124,18.417 198.44,51.734 198.44,92.831 C198.44,133.931 165.124,167.247 124.02,167.247 C82.928,167.247 49.607,133.931 49.607,92.831","id","Fill-51","fill","#FFFFFE"],["d","M221.022,128.961 C156.569,121.589 91.478,121.589 27.022,128.961 C25.462,115.317 23.9,101.672 22.342,88.028 C89.911,80.301 158.137,80.301 225.707,88.028 C224.146,101.672 222.584,115.317 221.022,128.961","id","Fill-53","fill","#1D6240"],["id","Group-18-Copy","transform","translate(70.023500, 90.832000)","fill","#FFFFFE","fill-opacity","1"],["id","Group","transform","translate(0.500000, 0.000000)"],["id","387"],["filter","url(#filter-7)",0,"xlink","href","#text-6"],[0,"xlink","href","#text-6"],["id","Pages-read-:"],["filter","url(#filter-9)",0,"xlink","href","#text-8"],[0,"xlink","href","#text-8"],["d","M124.0235,47.417 C126.50975,47.417 128.5235,45.40325 128.5235,42.917 C128.5235,40.43075 126.50975,38.417 124.0235,38.417 C121.53725,38.417 119.5235,40.43075 119.5235,42.917 C119.5235,45.40325 121.53725,47.417 124.0235,47.417 L124.0235,47.417 Z M124.0235,49.667 C121.01975,49.667 115.0235,51.1745 115.0235,54.167 L115.0235,56.417 L133.0235,56.417 L133.0235,54.167 C133.0235,51.1745 127.02725,49.667 124.0235,49.667 L124.0235,49.667 Z","id","Shape-Copy-2","fill","#000"],["text-anchor","middle","x","60","y","60",2,"width","50%","height","1.5rem","font-size","0.75rem"],["xmlns","http://www.w3.org/1999/xhtml",1,"truncate-overflow"],["id","Group-17-Copy-2","transform","translate(95.523500, 128.964250)",4,"ngIf"],[1,"player-endpage__right-panel"],[1,"title-section"],[1,"title","animated","fadeInDown"],[1,"animated","fadeInUp"],[1,"user-options"],["tabindex","0",1,"replay-section",3,"ngClass","click"],["width","36","height","37","xmlns","http://www.w3.org/2000/svg",4,"ngIf"],[1,"title"],["class","exit-section","tabindex","0",3,"click",4,"ngIf"],[4,"ngIf"],["id","text-8","x","55","y","16","text-anchor","middle","fill","#FFFFFE"],["font-size","12","font-weight","400","font-family","Noto Sans, NotoSans-Bold"],["font-size","18","font-family","NotoSans-Bold, Noto Sans"],["id","Group-17-Copy-2","transform","translate(95.523500, 128.964250)"],["id","Icon-24px","transform","translate(0.000000, 0.500000)"],["id","Shape","points","0 0 18 0 18 18 0 18"],["d","M11.25,0.75 L6.75,0.75 L6.75,2.25 L11.25,2.25 L11.25,0.75 L11.25,0.75 Z M8.25,10.5 L9.75,10.5 L9.75,6 L8.25,6 L8.25,10.5 L8.25,10.5 Z M14.2725,5.5425 L15.3375,4.4775 C15.015,4.095 14.6625,3.735 14.28,3.42 L13.215,4.485 C12.0525,3.555 10.59,3 9,3 C5.2725,3 2.25,6.0225 2.25,9.75 C2.25,13.4775 5.265,16.5 9,16.5 C12.735,16.5 15.75,13.4775 15.75,9.75 C15.75,8.16 15.195,6.6975 14.2725,5.5425 L14.2725,5.5425 Z M9,15 C6.0975,15 3.75,12.6525 3.75,9.75 C3.75,6.8475 6.0975,4.5 9,4.5 C11.9025,4.5 14.25,6.8475 14.25,9.75 C14.25,12.6525 11.9025,15 9,15 L9,15 Z","id","Shape","fill","#000"],["id","8:46","font-family","NotoSans-Bold, Noto Sans","font-size","14","font-weight","bold","fill","#000"],["x","22","y","15"],["width","36","height","37","xmlns","http://www.w3.org/2000/svg"],["x1","18%","y1","0%","x2","83.101%","y2","100%","id","a"],["stop-color","#024F9D","offset","0%"],["stop-color","#024F9D","offset","100%"],["fill","none","fill-rule","evenodd"],["d","M0 .853h36v36H0z"],["d","M18 7.5v-6L10.5 9l7.5 7.5v-6c4.965 0 9 4.035 9 9s-4.035 9-9 9-9-4.035-9-9H6c0 6.63 5.37 12 12 12s12-5.37 12-12-5.37-12-12-12z","fill","#ccc","transform","translate(0 .853)"],["d","M18 7.5v-6L10.5 9l7.5 7.5v-6c4.965 0 9 4.035 9 9s-4.035 9-9 9-9-4.035-9-9H6c0 6.63 5.37 12 12 12s12-5.37 12-12-5.37-12-12-12z","fill","url(#a)","transform","translate(0 .853)"],["tabindex","0",1,"exit-section",3,"click"],["xmlns","http://www.w3.org/2000/svg","width","36","height","36"],["x1","0%","y1","0%","x2","101.72%","y2","100%","id","a"],["d","M0 0h36v36H0z"],["d","M15.135 23.385L17.25 25.5l7.5-7.5-7.5-7.5-2.115 2.115 3.87 3.885H4.5v3h14.505l-3.87 3.885zM28.5 4.5h-21a3 3 0 00-3 3v6h3v-6h21v21h-21v-6h-3v6a3 3 0 003 3h21c1.65 0 3-1.35 3-3v-21c0-1.65-1.35-3-3-3z","fill","url(#a)"],[1,"next"],["aria-label","Next content",1,"next-level",3,"click"],["tabindex","0",1,"title-text"],[1,"next-arrow"],["src","assets/next-arrow.svg","alt","next arrow"]],template:function(j,re){1&j&&(t.F$t(),t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.TgZ(2,"div",2),t.O4$(),t.TgZ(3,"svg",3),t.TgZ(4,"defs"),t.TgZ(5,"filter",4),t._UZ(6,"feColorMatrix",5),t.qZA(),t.TgZ(7,"linearGradient",6),t._UZ(8,"stop",7),t._UZ(9,"stop",8),t.qZA(),t.TgZ(10,"linearGradient",9),t._UZ(11,"stop",10),t._UZ(12,"stop",11),t.qZA(),t._UZ(13,"path",12),t.TgZ(14,"filter",13),t._UZ(15,"feGaussianBlur",14),t._UZ(16,"feOffset",15),t._UZ(17,"feComposite",16),t._UZ(18,"feColorMatrix",17),t.qZA(),t.TgZ(19,"linearGradient",18),t._UZ(20,"stop",19),t._UZ(21,"stop",20),t.qZA(),t.YNc(22,er,5,2,"text",21),t.qZA(),t.TgZ(23,"g",22),t.TgZ(24,"g",23),t.TgZ(25,"g",24),t.TgZ(26,"g",25),t.TgZ(27,"g",26),t._UZ(28,"path",27),t._UZ(29,"path",28),t._UZ(30,"path",29),t._UZ(31,"path",30),t._UZ(32,"path",31),t._UZ(33,"path",32),t._UZ(34,"path",33),t._UZ(35,"path",34),t._UZ(36,"path",35),t._UZ(37,"path",36),t._UZ(38,"path",37),t._UZ(39,"path",38),t._UZ(40,"path",39),t._UZ(41,"path",40),t._UZ(42,"path",41),t._UZ(43,"path",42),t._UZ(44,"path",43),t._UZ(45,"path",44),t._UZ(46,"path",45),t._UZ(47,"path",46),t._UZ(48,"path",47),t._UZ(49,"path",48),t._UZ(50,"path",49),t._UZ(51,"path",50),t._UZ(52,"path",51),t._UZ(53,"path",52),t._UZ(54,"path",53),t._UZ(55,"path",54),t._UZ(56,"path",55),t._UZ(57,"path",56),t._UZ(58,"path",57),t._UZ(59,"path",58),t._UZ(60,"path",59),t._UZ(61,"path",60),t._UZ(62,"path",61),t._UZ(63,"path",62),t._UZ(64,"path",63),t._UZ(65,"path",64),t._UZ(66,"path",65),t._UZ(67,"path",66),t._UZ(68,"path",67),t._UZ(69,"path",68),t._UZ(70,"path",69),t._UZ(71,"path",70),t._UZ(72,"path",71),t._UZ(73,"path",72),t._UZ(74,"path",73),t._UZ(75,"path",74),t._UZ(76,"path",75),t._UZ(77,"path",76),t._UZ(78,"path",77),t._UZ(79,"path",78),t._UZ(80,"path",79),t._UZ(81,"path",80),t._UZ(82,"path",81),t._UZ(83,"path",82),t._UZ(84,"path",83),t._UZ(85,"path",84),t._UZ(86,"path",85),t._UZ(87,"path",86),t._UZ(88,"path",87),t._UZ(89,"path",88),t._UZ(90,"path",89),t._UZ(91,"path",90),t._UZ(92,"path",91),t._UZ(93,"path",92),t._UZ(94,"path",93),t._UZ(95,"path",94),t._UZ(96,"path",95),t._UZ(97,"path",96),t._UZ(98,"path",97),t._UZ(99,"path",98),t._UZ(100,"path",99),t._UZ(101,"path",100),t._UZ(102,"path",101),t._UZ(103,"path",102),t._UZ(104,"path",103),t._UZ(105,"path",104),t._UZ(106,"path",105),t._UZ(107,"path",106),t._UZ(108,"path",107),t._UZ(109,"path",108),t._UZ(110,"path",109),t._UZ(111,"path",110),t._UZ(112,"path",111),t._UZ(113,"path",112),t._UZ(114,"path",113),t._UZ(115,"path",114),t._UZ(116,"path",115),t._UZ(117,"path",116),t._UZ(118,"path",117),t._UZ(119,"path",118),t._UZ(120,"path",119),t._UZ(121,"path",120),t._UZ(122,"path",121),t._UZ(123,"path",122),t._UZ(124,"path",123),t._UZ(125,"path",124),t._UZ(126,"path",125),t._UZ(127,"path",126),t._UZ(128,"path",127),t._UZ(129,"path",128),t._UZ(130,"path",129),t._UZ(131,"path",130),t._UZ(132,"path",131),t._UZ(133,"path",132),t._UZ(134,"path",133),t._UZ(135,"path",134),t._UZ(136,"path",135),t._UZ(137,"path",136),t._UZ(138,"path",137),t._UZ(139,"path",138),t._UZ(140,"path",139),t._UZ(141,"path",140),t._UZ(142,"path",141),t._UZ(143,"path",142),t._UZ(144,"path",143),t._UZ(145,"path",144),t._UZ(146,"path",145),t._UZ(147,"path",146),t._UZ(148,"path",147),t._UZ(149,"path",148),t._UZ(150,"path",149),t._UZ(151,"path",150),t._UZ(152,"path",151),t._UZ(153,"path",152),t._UZ(154,"path",153),t._UZ(155,"path",154),t._UZ(156,"path",155),t._UZ(157,"path",156),t._UZ(158,"path",157),t._UZ(159,"path",158),t._UZ(160,"path",159),t._UZ(161,"path",160),t._UZ(162,"path",161),t._UZ(163,"path",162),t._UZ(164,"path",163),t._UZ(165,"path",164),t._UZ(166,"path",165),t._UZ(167,"path",166),t._UZ(168,"path",167),t._UZ(169,"path",168),t._UZ(170,"path",169),t._UZ(171,"path",170),t._UZ(172,"path",171),t._UZ(173,"path",172),t._UZ(174,"path",173),t._UZ(175,"path",174),t._UZ(176,"path",175),t._UZ(177,"path",176),t._UZ(178,"path",177),t._UZ(179,"path",178),t._UZ(180,"path",179),t._UZ(181,"path",180),t._UZ(182,"path",181),t._UZ(183,"path",182),t._UZ(184,"path",183),t._UZ(185,"polygon",184),t._UZ(186,"polygon",185),t._UZ(187,"polygon",186),t._UZ(188,"polygon",187),t._UZ(189,"polygon",188),t._UZ(190,"polyline",189),t._UZ(191,"polyline",190),t._UZ(192,"polyline",191),t._UZ(193,"path",192),t._UZ(194,"path",193),t._UZ(195,"path",194),t._UZ(196,"path",195),t._UZ(197,"path",196),t._UZ(198,"path",197),t.qZA(),t.qZA(),t.TgZ(199,"g",198),t.TgZ(200,"g",199),t._UZ(201,"path",200),t._UZ(202,"path",201),t.TgZ(203,"g",202),t._UZ(204,"use",203),t._UZ(205,"path",204),t.qZA(),t._UZ(206,"path",205),t._UZ(207,"path",206),t.TgZ(208,"g",207),t.TgZ(209,"g",208),t.TgZ(210,"g",209),t._UZ(211,"use",210),t._UZ(212,"use",211),t.qZA(),t.TgZ(213,"g",212),t._UZ(214,"use",213),t._UZ(215,"use",214),t.qZA(),t.qZA(),t.qZA(),t._UZ(216,"path",215),t.TgZ(217,"foreignObject",216),t.kcU(),t.TgZ(218,"div",217),t._uU(219),t.qZA(),t.qZA(),t.YNc(220,or,7,1,"g",218),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.qZA(),t.TgZ(221,"div",219),t.TgZ(222,"div",220),t.TgZ(223,"div",221),t._uU(224,"You just completed"),t.qZA(),t.TgZ(225,"span",222),t._uU(226),t.qZA(),t.Hsn(227),t.qZA(),t.TgZ(228,"div",223),t.TgZ(229,"div",224),t.NdJ("click",function(){return re.replay()}),t.TgZ(230,"div"),t.YNc(231,gr,8,0,"svg",225),t.YNc(232,xi,8,0,"svg",225),t.qZA(),t.TgZ(233,"div",226),t._uU(234,"Replay"),t.qZA(),t.qZA(),t.YNc(235,li,11,0,"div",227),t.qZA(),t.YNc(236,Zi,8,1,"ng-container",228),t.qZA(),t.qZA()),2&j&&(t.xp6(22),t.Q6J("ngIf",re.outcome),t.xp6(197),t.hij(" ",re.userName," "),t.xp6(1),t.Q6J("ngIf",re.timeSpentLabel),t.xp6(6),t.Oqu(re.contentName),t.xp6(3),t.Q6J("ngClass",re.showReplay?"":"disabled"),t.xp6(2),t.Q6J("ngIf",!re.showReplay),t.xp6(1),t.Q6J("ngIf",re.showReplay),t.xp6(3),t.Q6J("ngIf",re.showExit),t.xp6(1),t.Q6J("ngIf",re.nextContent))},directives:[R.O5,R.mk],styles:[':root{--sdk-end-page-title:#000;--sdk-end-page-replay-icon:#024f9d;--sdk-end-page-replay-section-bg:#fff;--sdk-end-page-title-span:#666666;--sdk-end-page-replay-section-hover:#F2F2F2}[_nghost-%COMP%] .player-endpage[_ngcontent-%COMP%]{padding:1rem;height:100%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;justify-content:space-around;background:var(--sdk-end-page-replay-section-bg)}@media all and (orientation:portrait){[_nghost-%COMP%] .player-endpage[_ngcontent-%COMP%]{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;display:block;overflow-y:auto}}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%]{text-align:center;-webkit-box-flex:50%;flex:50%}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%]{position:relative;padding:1.5rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .badge[_ngcontent-%COMP%]{width:17.625rem;height:13.1rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%]{position:absolute;left:0;right:0;bottom:5rem;color:var(--white);text-shadow:.063 .125 #8b2925;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%] .progress[_ngcontent-%COMP%]{font-size:.85rem;margin-right:.7rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .score-details[_ngcontent-%COMP%] .score[_ngcontent-%COMP%]{font-size:1.3rem;font-weight:700}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%]{position:absolute;left:0;right:0;top:2.8rem;width:8.5rem;margin:0 auto}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%] .user[_ngcontent-%COMP%]{width:1.275rem;height:1.275rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .user-details[_ngcontent-%COMP%] .user-title[_ngcontent-%COMP%]{color:var(--primary-color);font-size:.85rem;line-height:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%]{position:absolute;bottom:2.75rem;left:0;right:0;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%] .timer[_ngcontent-%COMP%]{width:1.275rem;height:1.275rem}[_nghost-%COMP%] .player-endpage__left-panel[_ngcontent-%COMP%] .user-score-card[_ngcontent-%COMP%] .timer-details[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{color:var(--primary-color);font-size:1rem;font-weight:700;margin-left:.3rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%]{-webkit-box-flex:50%;flex:50%;text-align:center;padding:1rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .title-section[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:var(--sdk-end-page-title);font-size:1.3125rem;font-weight:700;letter-spacing:0;line-height:1.75rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .title-section[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{color:var(--sdk-end-page-title-span);font-size:.75rem;word-break:break-word}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%]{display:-webkit-box;display:flex;justify-content:space-around;padding:1.7rem 0}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:var(--gray-800);font-size:1rem;line-height:1.188rem;text-align:center}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .user-options[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:2.55rem;height:2.55rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next[_ngcontent-%COMP%]{color:var(--gray-400);font-size:.85rem;line-height:1.063rem;margin-bottom:.7rem}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%]{margin:0 auto;width:auto;border-radius:.5rem;padding:.75rem;background:linear-gradient(135deg,#ffcd55 0,#ffd955 100%);box-shadow:inset 0 -.063rem .188rem 0 rgba(var(--rc-rgba-black),.5);display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:justify;justify-content:space-between;cursor:pointer}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .title-text[_ngcontent-%COMP%]{color:var(--gray-800);font-size:.85rem;-webkit-box-flex:1;flex:1;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;display:-webkit-box;-webkit-box-orient:vertical;line-height:normal}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .next-arrow[_ngcontent-%COMP%]{height:2.55rem;width:2.55rem;background-color:var(--white);border-radius:50%;text-align:center;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;cursor:pointer}[_nghost-%COMP%] .player-endpage__right-panel[_ngcontent-%COMP%] .next-level[_ngcontent-%COMP%] .next-arrow[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:1.75rem}.exit-section[_ngcontent-%COMP%], .replay-section[_ngcontent-%COMP%]{cursor:pointer;background-color:var(--sdk-end-page-replay-section-bg);padding:.5rem;border-radius:.25rem}.exit-section[_ngcontent-%COMP%]:hover, .replay-section[_ngcontent-%COMP%]:hover{background-color:var(--sdk-end-page-replay-section-hover)}.replay-section[_ngcontent-%COMP%] div[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] g[_ngcontent-%COMP%] path[_ngcontent-%COMP%]{fill:var(--sdk-end-page-replay-icon)}.replay-section[_ngcontent-%COMP%] div[_ngcontent-%COMP%] svg[_ngcontent-%COMP%] g[_ngcontent-%COMP%] path[_ngcontent-%COMP%]:first-child{fill:transparent}.replay-section.disabled[_ngcontent-%COMP%]{cursor:not-allowed}.replay-section.disabled[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{color:#ccc!important}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-1.25rem);transform:translateY(-1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-1.25rem);transform:translateY(-1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(1.25rem);transform:translateY(1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(1.25rem);transform:translateY(1.25rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeftSide{0%{opacity:0;-webkit-transform:translateX(6.25rem);transform:translateX(6.25rem)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftSide{0%{opacity:0;opacity:0;-webkit-transform:translateX(-6.25rem);transform:translateX(-6.25rem)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInDown[_ngcontent-%COMP%]{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.fadeInUp[_ngcontent-%COMP%]{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.fadeInLeftSide[_ngcontent-%COMP%], .fadeInRightSide[_ngcontent-%COMP%]{-webkit-animation-name:fadeInLeftSide;animation-name:fadeInLeftSide}.animated[_ngcontent-%COMP%]{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.truncate-overflow[_ngcontent-%COMP%]{--lh:1.4rem;line-height:var(--lh);--max-lines:1;position:relative;max-height:calc(var(--lh) * var(--max-lines));overflow:hidden;width:100%;font-size:.65rem;color:var(--black)}.truncate-overflow[_ngcontent-%COMP%]::before{position:absolute;content:"";bottom:0;right:0}.truncate-overflow[_ngcontent-%COMP%]::after{content:"";position:absolute;right:0;width:1rem;height:1rem;background:var(--white)}.particles[_ngcontent-%COMP%] path[_ngcontent-%COMP%]{-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-transform-origin:center;transform-origin:center;-webkit-animation:3s ease-in-out infinite both heartbeat;animation:3s ease-in-out infinite both heartbeat;fill:#e55b28;opacity:.4}.badge-inner-animation[_ngcontent-%COMP%]{-webkit-animation:5s ease-in-out infinite both heartbeat;animation:5s ease-in-out infinite both heartbeat;-webkit-transform-origin:center center;transform-origin:center center}@-webkit-keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}']}),Do.propDecorators={showExit:[{type:t.IIB}],showReplay:[{type:t.IIB}],contentName:[{type:t.IIB}],outcome:[{type:t.IIB}],outcomeLabel:[{type:t.IIB}],userName:[{type:t.IIB}],timeSpentLabel:[{type:t.IIB}],nextContent:[{type:t.IIB}],replayContent:[{type:t.r_U}],exitContent:[{type:t.r_U}],playNextContent:[{type:t.r_U}]};var ns=function(){function H(){(0,L.Z)(this,H),this.sidebarMenuEvent=new t.vpe}return(0,C.Z)(H,[{key:"toggleMenu",value:function(re){var Ie=document.getElementById("overlay-input"),Be=document.querySelector(".navBlock"),ct=document.getElementById("playerSideMenu"),sn=document.getElementById("ariaLabelValue"),zn=document.getElementById("overlay-button");re instanceof KeyboardEvent&&(Ie.checked=!Ie.checked),Ie.checked?(ct.style.visibility="visible",sn.innerHTML="Player Menu Close",zn.setAttribute("aria-label","Player Menu Close"),Be.style.width="100%",Be.style.marginLeft="0%",this.sidebarMenuEvent.emit({event:re,type:"OPEN_MENU"})):(ct.style.visibility="hidden",sn.innerHTML="Player Menu Open",zn.setAttribute("aria-label","Player Menu Open"),Be.style.marginLeft="-100%",this.sidebarMenuEvent.emit({event:re,type:"CLOSE_MENU"}))}}]),H}();ns.\u0275fac=function(j){return new(j||ns)},ns.\u0275cmp=t.Xpm({type:ns,selectors:[["sb-player-side-menu-icon"]],outputs:{sidebarMenuEvent:"sidebarMenuEvent"},decls:5,vars:0,consts:[["type","checkbox","id","overlay-input",3,"click"],["aria-label","Player Menu Open","for","overlay-input","id","overlay-button","tabindex","0",3,"keydown.enter"],["id","ariaLabelValue"]],template:function(j,re){1&j&&(t.TgZ(0,"input",0),t.NdJ("click",function(Be){return re.toggleMenu(Be)}),t.qZA(),t.TgZ(1,"label",1),t.NdJ("keydown.enter",function(Be){return re.toggleMenu(Be)}),t._UZ(2,"span"),t.TgZ(3,"em",2),t._uU(4,"Player Menu Open"),t.qZA(),t.qZA())},styles:[':root{--sdk-overlay-btn-hover:#333332}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]{z-index:10;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin:0;position:absolute;top:.4rem;left:1rem;height:2.25rem;width:2.25rem;border-radius:50%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;-webkit-transition:.3s ease-in-out;transition:.3s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{height:.2rem;width:1.25rem;border-radius:.125rem;background-color:var(--black);position:relative;display:block;-webkit-transition:.2s ease-in-out;transition:.2s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{top:-.45rem;visibility:visible}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after{top:.45rem}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{height:.2rem;width:1.25rem;border-radius:.125rem;background-color:var(--black);position:absolute;content:"";-webkit-transition:.2s ease-in-out;transition:.2s ease-in-out}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%], [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]:after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]:before{background:var(--sdk-overlay-btn-hover)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover{background-color:rgba(var(--rc-rgba-black),.75)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]{background-color:var(--white)}[_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]::after, [_nghost-%COMP%] #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]::before{background-color:var(--white)}input[type=checkbox][_ngcontent-%COMP%]{display:none}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay[_ngcontent-%COMP%]{visibility:visible}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%], input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%]:hover span[_ngcontent-%COMP%]{background:0 0}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:before{-webkit-transform:rotate(45deg) translate(.3125rem,.3125rem);transform:rotate(45deg) translate(.3125rem,.3125rem);opacity:1}input[type=checkbox][_ngcontent-%COMP%]:checked ~ #overlay-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:after{-webkit-transform:rotate(-45deg) translate(.3125rem,-.3125rem);transform:rotate(-45deg) translate(.3125rem,-.3125rem)} html[dir=rtl] #overlay-button{left:auto;right:1rem} html[dir=rtl] #overlay-button span:after, html[dir=rtl] #overlay-button span:before{right:0}#ariaLabelValue[_ngcontent-%COMP%]{position:absolute;opacity:0}']}),ns.propDecorators={sidebarMenuEvent:[{type:t.r_U}]};var Es=function(){function H(j){(0,L.Z)(this,H),this.ref=j,this.config={showShare:!1,showDownload:!1,showReplay:!1,showExit:!1,showPrint:!1},this.sidebarEvent=new t.vpe,this.toggleMenu=new t.vpe,this.showDownloadPopUp=!1}return(0,C.Z)(H,[{key:"closeNav",value:function(re){var Ie=document.getElementById("ariaLabelValue"),Be=document.getElementById("overlay-button"),ct=document.getElementById("overlay-input");Ie.innerHTML="Player Menu Open",Be.setAttribute("aria-label","Player Menu Open"),ct.checked=!1,document.getElementById("playerSideMenu").style.visibility="hidden",document.querySelector(".navBlock").style.marginLeft="-100%",this.sidebarEvent.emit({event:re,type:"CLOSE_MENU"})}},{key:"showDownloadPopup",value:function(re,Ie){this.showDownloadPopUp=!0,this.ref.detectChanges(),this.emitSideBarEvent(re,Ie)}},{key:"hideDownloadPopUp",value:function(re){this.showDownloadPopUp=!1,this.sidebarEvent.emit(re),this.ref.detectChanges()}},{key:"emitSideBarEvent",value:function(re,Ie){this.sidebarEvent.emit({event:re,type:Ie})}}]),H}();Es.\u0275fac=function(j){return new(j||Es)(t.Y36(t.sBO))},Es.\u0275cmp=t.Xpm({type:Es,selectors:[["sb-player-sidebar"]],inputs:{config:"config",title:"title"},outputs:{sidebarEvent:"sidebarEvent",toggleMenu:"toggleMenu"},decls:12,vars:6,consts:[["id","playerSideMenu","aria-modal","true","aria-labelledby","Menubar",1,"sidenav"],["sidebarMenu",""],[1,"navBlock"],["role","heading","aria-level","2",1,"player-nav-unit","text-left"],["aria-label","player sidebar","id","sidebar-list"],["tabindex","0",3,"click","keydown.enter",4,"ngIf"],["aria-hidden","true","tabindex","-1",1,"transparentBlock",3,"click"],[3,"title","showDownloadPopUp","hideDownloadPopUp","downloadEvent",4,"ngIf"],["tabindex","0",3,"click","keydown.enter"],[1,"player-icon","player-share","mr-16"],[1,"player-icon","player-download","mr-16"],[1,"player-icon","player-print","mr-16"],[1,"player-icon","player-exit","mr-16"],[3,"title","showDownloadPopUp","hideDownloadPopUp","downloadEvent"]],template:function(j,re){1&j&&(t.TgZ(0,"div",0,1),t.TgZ(2,"div",2),t.TgZ(3,"div",3),t._uU(4),t.qZA(),t.TgZ(5,"ul",4),t.YNc(6,Wa,3,0,"li",5),t.YNc(7,Tr,3,0,"li",5),t.YNc(8,Oa,3,0,"li",5),t.YNc(9,so,3,0,"li",5),t.qZA(),t.qZA(),t.TgZ(10,"div",6),t.NdJ("click",function(Be){return re.closeNav(Be)}),t.qZA(),t.qZA(),t.YNc(11,Qa,1,2,"sb-player-download-popup",7)),2&j&&(t.xp6(4),t.Oqu(re.title),t.xp6(2),t.Q6J("ngIf",re.config.showShare),t.xp6(1),t.Q6J("ngIf",re.config.showDownload),t.xp6(1),t.Q6J("ngIf",re.config.showPrint),t.xp6(1),t.Q6J("ngIf",re.config.showExit),t.xp6(2),t.Q6J("ngIf",re.showDownloadPopUp))},directives:[R.O5,Io],styles:[":root{--sdk-player-icon:#6D7278}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%]{width:100%;position:absolute;top:0;left:0;overflow-x:hidden;display:-webkit-box;display:flex;z-index:9;height:100%}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{text-decoration:none;font-size:1.5rem;color:var(--black);display:block}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{color:var(--gray-0)}@media screen and (max-height:1024px){[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%]{padding-top:0}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{font-size:1.125rem}}[_nghost-%COMP%] .sidenav[_ngcontent-%COMP%] .closebtn[_ngcontent-%COMP%]{position:absolute;top:0;right:1.5rem;font-size:2.25rem;margin-left:3.125rem}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%]{width:100%;background:var(--white);max-width:20rem;-webkit-transition:.3s ease-in;transition:.3s ease-in;margin-left:-100%;z-index:10;position:absolute;height:100%}@media (min-width:1600px){.PlayerMediaQueryClass [_nghost-%COMP%] .navBlock[_ngcontent-%COMP%]{max-width:24rem}}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] .player-nav-unit[_ngcontent-%COMP%]{background:var(--primary-theme);padding:3rem 2rem 2rem;min-height:5.625rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;color:var(--gray-800);font-size:1rem;font-weight:700;line-height:normal;word-break:break-word}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{margin:0;padding:0}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{padding:1rem 2rem;background:var(--white);min-height:4rem;cursor:pointer;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;color:rgba(var(--rc-rgba-black),1);font-size:.875rem;line-height:1.375rem;margin:0;line-height:normal}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover{background-color:var(--gray-0)}[_nghost-%COMP%] .navBlock[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .player-icon[_ngcontent-%COMP%]{width:1.5rem;height:1.5rem;background-color:var(--sdk-player-icon)}[_nghost-%COMP%] #playerSideMenu[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .player-replay[_ngcontent-%COMP%]{display:inline;padding:8px}[_nghost-%COMP%] .transparentBlock[_ngcontent-%COMP%]{width:100%;background-color:rgba(var(--rc-rgba-black),.5);height:100%;-webkit-transition:.3s;transition:.3s}[_nghost-%COMP%] .player-share[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik00MDYsMzMyYy0yOS42NDEsMC01NS43NjEsMTQuNTgxLTcyLjE2NywzNi43NTVMMTkxLjk5LDI5Ni4xMjRjMi4zNTUtOC4wMjcsNC4wMS0xNi4zNDYsNC4wMS0yNS4xMjQNCgkJCWMwLTExLjkwNi0yLjQ0MS0yMy4yMjUtNi42NTgtMzMuNjM2bDE0OC40NDUtODkuMzI4QzM1NC4zMDcsMTY3LjQyNCwzNzguNTg5LDE4MCw0MDYsMTgwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJYzAtNDkuNjI5LTQwLjM3MS05MC05MC05MGMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsMTEuNDM3LDIuMzU1LDIyLjI4Niw2LjI2MiwzMi4zNThsLTE0OC44ODcsODkuNTkNCgkJCUMxNTYuODY5LDE5My4xMzYsMTMyLjkzNywxODEsMTA2LDE4MWMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsNDkuNjI5LDQwLjM3MSw5MCw5MCw5MGMzMC4xMywwLDU2LjY5MS0xNS4wMDksNzMuMDM1LTM3LjgwNg0KCQkJbDE0MS4zNzYsNzIuMzk1QzMxNy44MDcsNDAzLjk5NSwzMTYsNDEyLjc1LDMxNiw0MjJjMCw0OS42MjksNDAuMzcxLDkwLDkwLDkwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJQzQ5NiwzNzIuMzcxLDQ1NS42MjksMzMyLDQwNiwzMzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik00MDYsMzMyYy0yOS42NDEsMC01NS43NjEsMTQuNTgxLTcyLjE2NywzNi43NTVMMTkxLjk5LDI5Ni4xMjRjMi4zNTUtOC4wMjcsNC4wMS0xNi4zNDYsNC4wMS0yNS4xMjQNCgkJCWMwLTExLjkwNi0yLjQ0MS0yMy4yMjUtNi42NTgtMzMuNjM2bDE0OC40NDUtODkuMzI4QzM1NC4zMDcsMTY3LjQyNCwzNzguNTg5LDE4MCw0MDYsMTgwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJYzAtNDkuNjI5LTQwLjM3MS05MC05MC05MGMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsMTEuNDM3LDIuMzU1LDIyLjI4Niw2LjI2MiwzMi4zNThsLTE0OC44ODcsODkuNTkNCgkJCUMxNTYuODY5LDE5My4xMzYsMTMyLjkzNywxODEsMTA2LDE4MWMtNDkuNjI5LDAtOTAsNDAuMzcxLTkwLDkwYzAsNDkuNjI5LDQwLjM3MSw5MCw5MCw5MGMzMC4xMywwLDU2LjY5MS0xNS4wMDksNzMuMDM1LTM3LjgwNg0KCQkJbDE0MS4zNzYsNzIuMzk1QzMxNy44MDcsNDAzLjk5NSwzMTYsNDEyLjc1LDMxNiw0MjJjMCw0OS42MjksNDAuMzcxLDkwLDkwLDkwYzQ5LjYyOSwwLDkwLTQwLjM3MSw5MC05MA0KCQkJQzQ5NiwzNzIuMzcxLDQ1NS42MjksMzMyLDQwNiwzMzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)}[_nghost-%COMP%] .player-exit[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzg0IDM4NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzg0IDM4NDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxnPg0KCQkJPHBhdGggZD0iTTM0MS4zMzMsMEg0Mi42NjdDMTkuMDkzLDAsMCwxOS4wOTMsMCw0Mi42NjdWMTI4aDQyLjY2N1Y0Mi42NjdoMjk4LjY2N3YyOTguNjY3SDQyLjY2N1YyNTZIMHY4NS4zMzMNCgkJCQlDMCwzNjQuOTA3LDE5LjA5MywzODQsNDIuNjY3LDM4NGgyOTguNjY3QzM2NC45MDcsMzg0LDM4NCwzNjQuOTA3LDM4NCwzNDEuMzMzVjQyLjY2N0MzODQsMTkuMDkzLDM2NC45MDcsMCwzNDEuMzMzLDB6Ii8+DQoJCQk8cG9seWdvbiBwb2ludHM9IjE1MS4xNDcsMjY4LjQ4IDE4MS4zMzMsMjk4LjY2NyAyODgsMTkyIDE4MS4zMzMsODUuMzMzIDE1MS4xNDcsMTE1LjUyIDIwNi4yOTMsMTcwLjY2NyAwLDE3MC42NjcgMCwyMTMuMzMzIA0KCQkJCTIwNi4yOTMsMjEzLjMzMyAJCQkiLz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzg0IDM4NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzg0IDM4NDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxnPg0KCQkJPHBhdGggZD0iTTM0MS4zMzMsMEg0Mi42NjdDMTkuMDkzLDAsMCwxOS4wOTMsMCw0Mi42NjdWMTI4aDQyLjY2N1Y0Mi42NjdoMjk4LjY2N3YyOTguNjY3SDQyLjY2N1YyNTZIMHY4NS4zMzMNCgkJCQlDMCwzNjQuOTA3LDE5LjA5MywzODQsNDIuNjY3LDM4NGgyOTguNjY3QzM2NC45MDcsMzg0LDM4NCwzNjQuOTA3LDM4NCwzNDEuMzMzVjQyLjY2N0MzODQsMTkuMDkzLDM2NC45MDcsMCwzNDEuMzMzLDB6Ii8+DQoJCQk8cG9seWdvbiBwb2ludHM9IjE1MS4xNDcsMjY4LjQ4IDE4MS4zMzMsMjk4LjY2NyAyODgsMTkyIDE4MS4zMzMsODUuMzMzIDE1MS4xNDcsMTE1LjUyIDIwNi4yOTMsMTcwLjY2NyAwLDE3MC42NjcgMCwyMTMuMzMzIA0KCQkJCTIwNi4yOTMsMjEzLjMzMyAJCQkiLz4NCgkJPC9nPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K)}[_nghost-%COMP%] .player-print[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNfcHJpbnQgY29weTwvdGl0bGU+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iSWNvbi0yNHB4Ij4KICAgICAgICAgICAgPHBhdGggZD0iTTE5LDggTDUsOCBDMy4zNCw4IDIsOS4zNCAyLDExIEwyLDE3IEw2LDE3IEw2LDIxIEwxOCwyMSBMMTgsMTcgTDIyLDE3IEwyMiwxMSBDMjIsOS4zNCAyMC42Niw4IDE5LDggTDE5LDggWiBNMTYsMTkgTDgsMTkgTDgsMTQgTDE2LDE0IEwxNiwxOSBMMTYsMTkgWiBNMTksMTIgQzE4LjQ1LDEyIDE4LDExLjU1IDE4LDExIEMxOCwxMC40NSAxOC40NSwxMCAxOSwxMCBDMTkuNTUsMTAgMjAsMTAuNDUgMjAsMTEgQzIwLDExLjU1IDE5LjU1LDEyIDE5LDEyIEwxOSwxMiBaIE0xOCwzIEw2LDMgTDYsNyBMMTgsNyBMMTgsMyBMMTgsMyBaIiBpZD0iU2hhcGUiIGZpbGw9IiM2RDcyNzgiPjwvcGF0aD4KICAgICAgICAgICAgPHBvbHlnb24gaWQ9IlNoYXBlIiBwb2ludHM9IjAgMCAyNCAwIDI0IDI0IDAgMjQiPjwvcG9seWdvbj4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNfcHJpbnQgY29weTwvdGl0bGU+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iSWNvbi0yNHB4Ij4KICAgICAgICAgICAgPHBhdGggZD0iTTE5LDggTDUsOCBDMy4zNCw4IDIsOS4zNCAyLDExIEwyLDE3IEw2LDE3IEw2LDIxIEwxOCwyMSBMMTgsMTcgTDIyLDE3IEwyMiwxMSBDMjIsOS4zNCAyMC42Niw4IDE5LDggTDE5LDggWiBNMTYsMTkgTDgsMTkgTDgsMTQgTDE2LDE0IEwxNiwxOSBMMTYsMTkgWiBNMTksMTIgQzE4LjQ1LDEyIDE4LDExLjU1IDE4LDExIEMxOCwxMC40NSAxOC40NSwxMCAxOSwxMCBDMTkuNTUsMTAgMjAsMTAuNDUgMjAsMTEgQzIwLDExLjU1IDE5LjU1LDEyIDE5LDEyIEwxOSwxMiBaIE0xOCwzIEw2LDMgTDYsNyBMMTgsNyBMMTgsMyBMMTgsMyBaIiBpZD0iU2hhcGUiIGZpbGw9IiM2RDcyNzgiPjwvcGF0aD4KICAgICAgICAgICAgPHBvbHlnb24gaWQ9IlNoYXBlIiBwb2ludHM9IjAgMCAyNCAwIDI0IDI0IDAgMjQiPjwvcG9seWdvbj4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==)}[_nghost-%COMP%] .player-download[_ngcontent-%COMP%]{-webkit-mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik0zODIuNTYsMjMzLjM3NkMzNzkuOTY4LDIyNy42NDgsMzc0LjI3MiwyMjQsMzY4LDIyNGgtNjRWMTZjMC04LjgzMi03LjE2OC0xNi0xNi0xNmgtNjRjLTguODMyLDAtMTYsNy4xNjgtMTYsMTZ2MjA4aC02NA0KCQkJYy02LjI3MiwwLTExLjk2OCwzLjY4LTE0LjU2LDkuMzc2Yy0yLjYyNCw1LjcyOC0xLjYsMTIuNDE2LDIuNTI4LDE3LjE1MmwxMTIsMTI4YzMuMDQsMy40ODgsNy40MjQsNS40NzIsMTIuMDMyLDUuNDcyDQoJCQljNC42MDgsMCw4Ljk5Mi0yLjAxNiwxMi4wMzItNS40NzJsMTEyLTEyOEMzODQuMTkyLDI0NS44MjQsMzg1LjE1MiwyMzkuMTA0LDM4Mi41NiwyMzMuMzc2eiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNNDMyLDM1MnY5Nkg4MHYtOTZIMTZ2MTI4YzAsMTcuNjk2LDE0LjMzNiwzMiwzMiwzMmg0MTZjMTcuNjk2LDAsMzItMTQuMzA0LDMyLTMyVjM1Mkg0MzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);mask-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik0zODIuNTYsMjMzLjM3NkMzNzkuOTY4LDIyNy42NDgsMzc0LjI3MiwyMjQsMzY4LDIyNGgtNjRWMTZjMC04LjgzMi03LjE2OC0xNi0xNi0xNmgtNjRjLTguODMyLDAtMTYsNy4xNjgtMTYsMTZ2MjA4aC02NA0KCQkJYy02LjI3MiwwLTExLjk2OCwzLjY4LTE0LjU2LDkuMzc2Yy0yLjYyNCw1LjcyOC0xLjYsMTIuNDE2LDIuNTI4LDE3LjE1MmwxMTIsMTI4YzMuMDQsMy40ODgsNy40MjQsNS40NzIsMTIuMDMyLDUuNDcyDQoJCQljNC42MDgsMCw4Ljk5Mi0yLjAxNiwxMi4wMzItNS40NzJsMTEyLTEyOEMzODQuMTkyLDI0NS44MjQsMzg1LjE1MiwyMzkuMTA0LDM4Mi41NiwyMzMuMzc2eiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNNDMyLDM1MnY5Nkg4MHYtOTZIMTZ2MTI4YzAsMTcuNjk2LDE0LjMzNiwzMiwzMiwzMmg0MTZjMTcuNjk2LDAsMzItMTQuMzA0LDMyLTMyVjM1Mkg0MzJ6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=)}"]}),Es.ctorParameters=function(){return[{type:t.sBO}]},Es.propDecorators={title:[{type:t.IIB}],config:[{type:t.IIB}],sidebarEvent:[{type:t.r_U}],toggleMenu:[{type:t.r_U}]};var Gs=function(){function H(){(0,L.Z)(this,H),this.progress=0}return(0,C.Z)(H,[{key:"ngOnChanges",value:function(re){re.progress&&re.progress.currentValue&&(this.progress=re.progress.currentValue)}}]),H}();Gs.\u0275fac=function(j){return new(j||Gs)},Gs.\u0275cmp=t.Xpm({type:Gs,selectors:[["sb-player-start-page"]],inputs:{progress:"progress",title:"title"},features:[t.TTD],decls:10,vars:7,consts:[[1,"sb-player-splash-container",3,"ngClass"],[1,"sb-player-splash-container__header"],[1,"sb-player-splash-container__body","animated","fadeInDown"],[1,""],[1,"sb-player-splash-container__footer"],[1,"loading-text"],[1,"bg"],[1,"el"]],template:function(j,re){1&j&&(t.TgZ(0,"div",0),t._UZ(1,"div",1),t.TgZ(2,"div",2),t.TgZ(3,"span",3),t._uU(4),t.qZA(),t.qZA(),t.TgZ(5,"div",4),t.TgZ(6,"div",5),t._uU(7),t.qZA(),t.TgZ(8,"div",6),t._UZ(9,"div",7),t.qZA(),t.qZA(),t.qZA()),2&j&&(t.Q6J("ngClass",t.VKq(5,lo,100===re.progress)),t.xp6(4),t.Oqu(re.title),t.xp6(3),t.hij("Loading... ",re.progress,"%"),t.xp6(2),t.Udp("width",re.progress+"%"))},directives:[R.mk],styles:['.sb-player-splash-container[_ngcontent-%COMP%]{box-sizing:border-box;padding:1rem;height:100%;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-align:center;align-items:center;-webkit-box-pack:justify;justify-content:space-between;opacity:1;background:var(--primary-theme);-webkit-transition:.3s ease-in;transition:.3s ease-in}.sb-player-splash-container.animateBg[_ngcontent-%COMP%]{opacity:0}.sb-player-splash-container__body[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;text-align:center;color:var(--gray-800);letter-spacing:0}.sb-player-splash-container__body[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{font-size:1.5rem;font-weight:700;letter-spacing:0;line-height:normal;word-break:break-word}.sb-player-splash-container__footer[_ngcontent-%COMP%]{color:var(--black);font-size:.75rem;line-height:1.25rem;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;width:100%}@-webkit-keyframes loading{0%{width:0}100%{width:100%}}@keyframes loading{0%{width:0}100%{width:100%}}@-webkit-keyframes percentage{1%{content:"1%"}2%{content:"2%"}3%{content:"3%"}4%{content:"4%"}5%{content:"5%"}6%{content:"6%"}7%{content:"7%"}8%{content:"8%"}9%{content:"9%"}10%{content:"10%"}11%{content:"11%"}12%{content:"12%"}13%{content:"13%"}14%{content:"14%"}15%{content:"15%"}16%{content:"16%"}17%{content:"17%"}18%{content:"18%"}19%{content:"19%"}20%{content:"20%"}21%{content:"21%"}22%{content:"22%"}23%{content:"23%"}24%{content:"24%"}25%{content:"25%"}26%{content:"26%"}27%{content:"27%"}28%{content:"28%"}29%{content:"29%"}30%{content:"30%"}31%{content:"31%"}32%{content:"32%"}33%{content:"33%"}34%{content:"34%"}35%{content:"35%"}36%{content:"36%"}37%{content:"37%"}38%{content:"38%"}39%{content:"39%"}40%{content:"40%"}41%{content:"41%"}42%{content:"42%"}43%{content:"43%"}44%{content:"44%"}45%{content:"45%"}46%{content:"46%"}47%{content:"47%"}48%{content:"48%"}49%{content:"49%"}50%{content:"50%"}51%{content:"51%"}52%{content:"52%"}53%{content:"53%"}54%{content:"54%"}55%{content:"55%"}56%{content:"56%"}57%{content:"57%"}58%{content:"58%"}59%{content:"59%"}60%{content:"60%"}61%{content:"61%"}62%{content:"62%"}63%{content:"63%"}64%{content:"64%"}65%{content:"65%"}66%{content:"66%"}67%{content:"67%"}68%{content:"68%"}69%{content:"69%"}70%{content:"70%"}71%{content:"71%"}72%{content:"72%"}73%{content:"73%"}74%{content:"74%"}75%{content:"75%"}76%{content:"76%"}77%{content:"77%"}78%{content:"78%"}79%{content:"79%"}80%{content:"80%"}81%{content:"81%"}82%{content:"82%"}83%{content:"83%"}84%{content:"84%"}85%{content:"85%"}86%{content:"86%"}87%{content:"87%"}88%{content:"88%"}89%{content:"89%"}90%{content:"90%"}91%{content:"91%"}92%{content:"92%"}93%{content:"93%"}94%{content:"94%"}95%{content:"95%"}96%{content:"96%"}97%{content:"97%"}98%{content:"98%"}99%{content:"99%"}100%{content:"100%"}}@keyframes percentage{1%{content:"1%"}2%{content:"2%"}3%{content:"3%"}4%{content:"4%"}5%{content:"5%"}6%{content:"6%"}7%{content:"7%"}8%{content:"8%"}9%{content:"9%"}10%{content:"10%"}11%{content:"11%"}12%{content:"12%"}13%{content:"13%"}14%{content:"14%"}15%{content:"15%"}16%{content:"16%"}17%{content:"17%"}18%{content:"18%"}19%{content:"19%"}20%{content:"20%"}21%{content:"21%"}22%{content:"22%"}23%{content:"23%"}24%{content:"24%"}25%{content:"25%"}26%{content:"26%"}27%{content:"27%"}28%{content:"28%"}29%{content:"29%"}30%{content:"30%"}31%{content:"31%"}32%{content:"32%"}33%{content:"33%"}34%{content:"34%"}35%{content:"35%"}36%{content:"36%"}37%{content:"37%"}38%{content:"38%"}39%{content:"39%"}40%{content:"40%"}41%{content:"41%"}42%{content:"42%"}43%{content:"43%"}44%{content:"44%"}45%{content:"45%"}46%{content:"46%"}47%{content:"47%"}48%{content:"48%"}49%{content:"49%"}50%{content:"50%"}51%{content:"51%"}52%{content:"52%"}53%{content:"53%"}54%{content:"54%"}55%{content:"55%"}56%{content:"56%"}57%{content:"57%"}58%{content:"58%"}59%{content:"59%"}60%{content:"60%"}61%{content:"61%"}62%{content:"62%"}63%{content:"63%"}64%{content:"64%"}65%{content:"65%"}66%{content:"66%"}67%{content:"67%"}68%{content:"68%"}69%{content:"69%"}70%{content:"70%"}71%{content:"71%"}72%{content:"72%"}73%{content:"73%"}74%{content:"74%"}75%{content:"75%"}76%{content:"76%"}77%{content:"77%"}78%{content:"78%"}79%{content:"79%"}80%{content:"80%"}81%{content:"81%"}82%{content:"82%"}83%{content:"83%"}84%{content:"84%"}85%{content:"85%"}86%{content:"86%"}87%{content:"87%"}88%{content:"88%"}89%{content:"89%"}90%{content:"90%"}91%{content:"91%"}92%{content:"92%"}93%{content:"93%"}94%{content:"94%"}95%{content:"95%"}96%{content:"96%"}97%{content:"97%"}98%{content:"98%"}99%{content:"99%"}100%{content:"100%"}}.bg[_ngcontent-%COMP%], .el[_ngcontent-%COMP%]{border-radius:.25rem;height:.5rem}.bg[_ngcontent-%COMP%]{background-color:var(--white)}.el[_ngcontent-%COMP%]{background-color:#f1635d;width:0%;-webkit-transition:.3s;transition:.3s}.loading-text[_ngcontent-%COMP%]{-ms-grid-row-align:center;align-self:center;margin-bottom:.5rem;color:var(--black)}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeftSide{0%{opacity:0;-webkit-transform:translateX(100px);transform:translateX(100px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftSide{0%{opacity:0;opacity:0;-webkit-transform:translateX(-100px);transform:translateX(-100px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInDown[_ngcontent-%COMP%]{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}.fadeInUp[_ngcontent-%COMP%]{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}.fadeInLeftSide[_ngcontent-%COMP%], .fadeInRightSide[_ngcontent-%COMP%]{-webkit-animation-name:fadeInLeftSide;animation-name:fadeInLeftSide}.animated[_ngcontent-%COMP%]{-webkit-animation-duration:1.5s;animation-duration:1.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}']}),Gs.propDecorators={title:[{type:t.IIB}],progress:[{type:t.IIB}]};var qo=function(){function H(){(0,L.Z)(this,H)}return(0,C.Z)(H,[{key:"ngOnInit",value:function(){var re=this;window.addEventListener("offline",function(){re.showOfflineAlert=!0,setTimeout(function(){re.showOfflineAlert=!1},4e3)})}}]),H}();qo.\u0275fac=function(j){return new(j||qo)},qo.\u0275cmp=t.Xpm({type:qo,selectors:[["sb-player-offline-alert"]],decls:1,vars:1,consts:[["class","offline-container",4,"ngIf"],[1,"offline-container"]],template:function(j,re){1&j&&t.YNc(0,es,2,0,"div",0),2&j&&t.Q6J("ngIf",re.showOfflineAlert)},directives:[R.O5],styles:[":root{--sdk-offline-container:#fff}.offline-container[_ngcontent-%COMP%]{position:absolute;top:0;left:0;right:0;height:3rem;background:var(--tertiary-color);color:var(--sdk-offline-container);width:100%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;z-index:999;-webkit-box-pack:center;justify-content:center;box-shadow:0 0 2px 2px #666;font-size:14px}"]}),qo.ctorParameters=function(){return[]};var co=(0,C.Z)(function H(){(0,L.Z)(this,H)});co.\u0275fac=function(j){return new(j||co)},co.\u0275mod=t.oAB({type:co}),co.\u0275inj=t.cJS({imports:[[R.ez,V.u5]]});var Zo=(0,C.Z)(function H(){(0,L.Z)(this,H),this.nextAction=new t.vpe});Zo.\u0275fac=function(j){return new(j||Zo)},Zo.\u0275cmp=t.Xpm({type:Zo,selectors:[["sb-player-next-navigation"]],outputs:{nextAction:"nextAction"},decls:3,vars:0,consts:[["aria-label","navigation-arrows-nextIcon","tabindex","0",1,"navigation-arrows","player-nextIcon","paginate","right","ml-4",3,"click"]],template:function(j,re){1&j&&(t.TgZ(0,"button",0),t.NdJ("click",function(){return re.nextAction.emit({type:"NEXT"})}),t._UZ(1,"i"),t._UZ(2,"i"),t.qZA())},styles:[Al]}),Zo.propDecorators={nextAction:[{type:t.r_U}]};var fo=(0,C.Z)(function H(){(0,L.Z)(this,H),this.previousAction=new t.vpe});fo.\u0275fac=function(j){return new(j||fo)},fo.\u0275cmp=t.Xpm({type:fo,selectors:[["sb-player-previous-navigation"]],outputs:{previousAction:"previousAction"},decls:3,vars:0,consts:[["aria-label","navigation-arrows-previousIcon","tabindex","0",1,"navigation-arrows","player-previousIcon","paginate","left",3,"click"]],template:function(j,re){1&j&&(t.TgZ(0,"button",0),t.NdJ("click",function(){return re.previousAction.emit({type:"PREVIOUS"})}),t._UZ(1,"i"),t._UZ(2,"i"),t.qZA())},styles:[Al]}),fo.propDecorators={previousAction:[{type:t.r_U}]};var Ya=function(){function H(){(0,L.Z)(this,H),this.actions=new t.vpe,this._config={rotation:!1,goto:!1,navigation:!1,zoom:!1}}return(0,C.Z)(H,[{key:"config",get:function(){return this._config},set:function(re){this._item=Object.assign(Object.assign({},this._config),re),this._config=this._item}},{key:"ngOnInit",value:function(){this.page=this.pageNumber}},{key:"ngOnChanges",value:function(re){for(var Ie in re)if(re.hasOwnProperty(Ie))switch(Ie){case"pageNumber":this.page=re[Ie].currentValue,this.pageNumber=re[Ie].currentValue;break;case"totalPages":this.totalPages=re[Ie].currentValue}}},{key:"zoomIn",value:function(){this.actions.emit({type:"ZOOM_IN"})}},{key:"zoomOut",value:function(){this.actions.emit({type:"ZOOM_OUT"})}},{key:"rotateCW",value:function(){this.actions.emit({type:"ROTATE_CW"})}},{key:"gotoPage",value:function(){var re=parseInt(this.page,10);re>0&&re<=this.totalPages?(this.actions.emit({type:"NAVIGATE_TO_PAGE",data:re}),this.pageNumber=re):(this.actions.emit({type:"INVALID_PAGE_ERROR",data:re}),this.page=this.pageNumber)}}]),H}();Ya.\u0275fac=function(j){return new(j||Ya)},Ya.\u0275cmp=t.Xpm({type:Ya,selectors:[["sb-player-header"]],inputs:{config:"config",pageNumber:"pageNumber",totalPages:"totalPages"},outputs:{actions:"actions"},features:[t.TTD],decls:7,vars:4,consts:[[1,"sb-player-header"],[1,"sb-player-header__panel","d-flex","flex-ai-center","flex-jc-flex-end"],["class","icon_rotate mr-8",4,"ngIf"],["class","player-zoom-btns d-flex mr-8",4,"ngIf"],["class","player-pagenumber",4,"ngIf"],["class","visible-only-landscape",4,"ngIf"],[1,"icon_rotate","mr-8"],["src","./assets/rotate-icon.svg","alt","rotate icon","tabindex","0","role","button","aria-label","rotate page",1,"rotate-icon",3,"click"],[1,"player-zoom-btns","d-flex","mr-8"],["type","button","tabindex","0","aria-label","zoom out","title","zoom out",1,"player-zoom-btns__zoombtn","zoomOut-btn",3,"click"],["type","button","tabindex","0","aria-label","zoom in","title","zoom in",1,"player-zoom-btns__zoombtn","zoomIn-btn",3,"click"],[1,"player-pagenumber"],["type","number","min","1",1,"page-count",3,"ngModel","max","ngModelChange"],["role","button","aria-label","Go to page","tabindex","0",1,"focus-arrow",3,"click"],["src","./assets/arrow-right.svg","alt","arrow-right","width","100%"],[1,"slash"],[1,"pageNumberFullcount"],[1,"visible-only-landscape"],[1,"d-flex","player-slides","ml-8"],[1,"d-flex","flex-ai-center",3,"previousAction"],[1,"d-flex","flex-ai-center",3,"nextAction"]],template:function(j,re){1&j&&(t.TgZ(0,"div"),t.TgZ(1,"div",0),t.TgZ(2,"div",1),t.YNc(3,rl,2,0,"div",2),t.YNc(4,ts,3,0,"div",3),t.YNc(5,Tu,8,3,"div",4),t.YNc(6,Qi,4,0,"div",5),t.qZA(),t.qZA(),t.qZA()),2&j&&(t.xp6(3),t.Q6J("ngIf",re.config.rotation),t.xp6(1),t.Q6J("ngIf",re.config.zoom),t.xp6(1),t.Q6J("ngIf",re.config.goto&&re.totalPages),t.xp6(1),t.Q6J("ngIf",re.config.navigation))},directives:[R.O5,V.qQ,V.wV,V.Fd,V.Fj,V.JJ,V.On,fo,Zo],styles:[':root{--sdk-sb-player-header:#fff;--sdk-player-zoombtn:#000;--sdk-player-zoombtn-icon:#333;--sdk-player-zoombtn-icon-hover:#F2F2F2;--sdk-player-page-count-bg:#fff;--sdk-player-page-count-txt:#CCCCCC;--sdk-player-page-count-arrow:#333333}[_nghost-%COMP%] .sb-player-header[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:end;justify-content:flex-end;height:3rem;padding:.75em 1rem;background:var(--sdk-sb-player-header)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%]{border-radius:.25rem;overflow:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%]{color:var(--sdk-player-zoombtn);text-align:center;line-height:.8rem;font-size:1.5rem;background-color:rgba(var(--rc-rgba-gray),.11);padding:0;-webkit-transition:.3s ease-in;transition:.3s ease-in;cursor:pointer;width:2rem;height:2rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;border:0}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{-webkit-mask-size:contain;-webkit-mask-repeat:no-repeat;mask-size:contain;mask-repeat:no-repeat;background-color:var(--sdk-player-zoombtn-icon)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns__zoombtn[_ngcontent-%COMP%]:hover{background:var(--sdk-player-zoombtn-icon-hover)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomOut-btn[_ngcontent-%COMP%]{border-right:.063em solid rgba(var(--rc-rgba-gray),.1)}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomOut-btn[_ngcontent-%COMP%]::after{content:"-"}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-zoom-btns[_ngcontent-%COMP%] .zoomIn-btn[_ngcontent-%COMP%]::after{content:"+"}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%]{font-size:1rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;position:relative}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]{height:2rem;width:3rem;border:.031em solid var(--sdk-player-page-count-txt);border-radius:.25rem;background-color:var(--sdk-player-page-count-bg);text-align:center}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus{border-radius:.25em 0 0 .25rem;outline:0}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%] ~ .focus-arrow[_ngcontent-%COMP%]{opacity:0;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;width:2.2rem;height:2rem;background:var(--sdk-player-page-count-arrow);border-radius:0 .25em .25em 0;position:absolute;left:calc(3rem - 0px);cursor:pointer}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%] ~ .focus-arrow[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:50%}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .focus-arrow[_ngcontent-%COMP%]{opacity:1}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .slash[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .page-count[_ngcontent-%COMP%]:focus ~ .pageNumberFullcount[_ngcontent-%COMP%]{visibility:hidden}[_nghost-%COMP%] .sb-player-header__panel[_ngcontent-%COMP%] .player-pagenumber[_ngcontent-%COMP%] .slash[_ngcontent-%COMP%]{margin:0 .5rem}[_nghost-%COMP%] .player-zoom-btns-inline[_ngcontent-%COMP%]{display:inline-block}[_nghost-%COMP%] .player-replay[_ngcontent-%COMP%]{display:inline;padding:.5rem}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%]{background:0 0;height:2rem;text-align:center;width:2rem;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;border-radius:.25rem;padding:.25rem;cursor:pointer;-webkit-transition:.3s ease-in;transition:.3s ease-in}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%]:hover{background:rgba(var(--rc-rgba-gray),.11)}[_nghost-%COMP%] .icon_rotate[_ngcontent-%COMP%] .rotate-icon[_ngcontent-%COMP%]{width:100%}[_nghost-%COMP%] sb-player-next-navigation[_ngcontent-%COMP%], [_nghost-%COMP%] sb-player-previous-navigation[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count:focus{border-radius:0 .25em .25rem 0!important} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count~.focus-arrow{left:auto;right:calc(3rem - 0px);border-radius:.25em 0 0 .25em!important} html[dir=rtl] .sb-player-header__panel .pdf-pagenumber .page-count~.focus-arrow img{-webkit-transform:rotate(180deg);transform:rotate(180deg)}']}),Ya.propDecorators={pageNumber:[{type:t.IIB}],totalPages:[{type:t.IIB}],actions:[{type:t.r_U}],config:[{type:t.IIB}]};var Ws=function(){function H(){(0,L.Z)(this,H)}return(0,C.Z)(H,[{key:"ngOnInit",value:function(){this.errorMsg||(this.errorMsg={messageHeader:gi.contentPlayFailedHeader,messageTitle:gi.contentPlayFailTitle})}}]),H}();Ws.\u0275fac=function(j){return new(j||Ws)},Ws.\u0275cmp=t.Xpm({type:Ws,selectors:[["sb-player-contenterror"]],inputs:{errorMsg:"errorMsg"},decls:6,vars:2,consts:[[1,"playersdk-msg","playersdk-msg--error"],[1,"playersdk-msg__body"],[1,"playersdk-msg__text"],[1,"error-header"]],template:function(j,re){1&j&&(t.TgZ(0,"div",0),t.TgZ(1,"div",1),t.TgZ(2,"div",2),t.TgZ(3,"span",3),t._uU(4),t.qZA(),t._uU(5),t.qZA(),t.qZA(),t.qZA()),2&j&&(t.xp6(4),t.Oqu(re.errorMsg.messageHeader),t.xp6(1),t.hij(" ",re.errorMsg.messageTitle," "))},styles:[':root{--sdk-playersdk-text:#333;--sdk-playersdk-bg:#fbccd1;--sdk-playersdk-border:#ff4558;--sdk-playersdk-closeicon:#ff4558;--sdk-playersdk-error-header:#ff4558}.playersdk-msg[_ngcontent-%COMP%]{position:absolute;top:10%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;max-width:20rem;margin-bottom:8px;padding:1rem;border:1px solid;border-radius:.5rem;border-width:0 0 0 .5rem;z-index:111111}.playersdk-msg--error[_ngcontent-%COMP%]{color:var(--sdk-playersdk-text);background:var(--sdk-playersdk-bg);border-color:var(--sdk-playersdk-border)}.playersdk-msg__body[_ngcontent-%COMP%]{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center}.playersdk-msg__text[_ngcontent-%COMP%]{font-size:.875rem}@media (max-width:767px){.playersdk-msg__text[_ngcontent-%COMP%]{font-size:.75rem}}.playersdk-msg__close-icon[_ngcontent-%COMP%]{position:absolute;right:0;top:0;width:2rem;height:2rem;cursor:pointer}.playersdk-msg__close-icon[_ngcontent-%COMP%]::after, .playersdk-msg__close-icon[_ngcontent-%COMP%]::before{content:" ";position:absolute;right:1rem;height:1rem;width:.125rem;top:.5rem;background:var(--sdk-playersdk-closeicon)}.playersdk-msg__close-icon[_ngcontent-%COMP%]::before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.playersdk-msg__close-icon[_ngcontent-%COMP%]::after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.error-header[_ngcontent-%COMP%]{font-size:1.25rem;display:block;margin-bottom:.5rem;line-height:normal;color:var(--sdk-playersdk-error-header)}']}),Ws.propDecorators={errorMsg:[{type:t.IIB}]};var Aa=(0,C.Z)(function H(){(0,L.Z)(this,H)});Aa.\u0275fac=function(j){return new(j||Aa)},Aa.\u0275mod=t.oAB({type:Aa}),Aa.\u0275inj=t.cJS({imports:[[R.ez,V.u5]]});var zo=(0,C.Z)(function H(){(0,L.Z)(this,H)});zo.\u0275fac=function(j){return new(j||zo)},zo.\u0275mod=t.oAB({type:zo}),zo.\u0275inj=t.cJS({imports:[[co,Aa],co,Aa]})},5390:function(It){ -/*! https://mths.be/cssescape v1.5.1 by @mathias | MIT license */ -var we;we="undefined"!=typeof global?global:this,It.exports=function(we){if(we.CSS&&we.CSS.escape)return we.CSS.escape;var D=function(C){if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");for(var F,t=String(C),R=t.length,V=-1,E="",y=t.charCodeAt(0);++V=1&&F<=31||127==F||0==V&&F>=48&&F<=57||1==V&&F>=48&&F<=57&&45==y?"\\"+F.toString(16)+" ":0==V&&1==R&&45==F||!(F>=128||45==F||95==F||F>=48&&F<=57||F>=65&&F<=90||F>=97&&F<=122)?"\\"+t.charAt(V):t.charAt(V):E+="\ufffd";return E};return we.CSS||(we.CSS={}),we.CSS.escape=D,D}(we)},950:function(It,we,D){var L; -/*! - * Platform.js - * Copyright 2014-2016 Benjamin Tan - * Copyright 2011-2013 John-David Dalton - * Available under MIT license - */It=D.nmd(It),function(){"use strict";var C={function:!0,object:!0},t=C[typeof window]&&window||this,R=t,V=C[typeof we]&&we,F=C.object&&It&&!It.nodeType&&It,E=V&&F&&"object"==typeof global&&global;E&&(E.global===E||E.window===E||E.self===E)&&(t=E);var y=Math.pow(2,53)-1,be=/\bOpera/,ue=this,De=Object.prototype,de=De.hasOwnProperty,Le=De.toString;function ce(A){return(A=String(A)).charAt(0).toUpperCase()+A.slice(1)}function ge(A){return A=Ze(A),/^(?:webOS|i(?:OS|P))/.test(A)?A:ce(A)}function ye(A,W){for(var U in A)de.call(A,U)&&W(A[U],U,A)}function te(A){return null==A?ce(A):Le.call(A).slice(8,-1)}function ve(A,W){var U=null!=A?typeof A[W]:"number";return!(/^(?:boolean|number|string|undefined)$/.test(U)||"object"==U&&!A[W])}function Ue(A){return String(A).replace(/([ -])(?!$)/g,"$1?")}function Ke(A,W){var U=null;return function(A,W){var U=-1,Se=A?A.length:0;if("number"==typeof Se&&Se>-1&&Se<=y)for(;++U3?"WebKit":/\bOpera\b/.test(Je)&&(/\bOPR\b/.test(A)?"Blink":"Presto"))||/\b(?:Midori|Nook|Safari)\b/i.test(A)&&!/^(?:Trident|EdgeHTML)$/.test(At)&&"WebKit"||!At&&/\bMSIE\b/i.test(A)&&("Mac OS"==Ct?"Tasman":"Trident")||"WebKit"==At&&/\bPlayStation\b(?! Vita\b)/i.test(Je)&&"NetFront")&&(At=[he]),"IE"==Je&&(he=(/; *(?:XBLWP|ZuneWP)(\d+)/i.exec(A)||0)[1])?(Je+=" Mobile",Ct="Windows Phone "+(/\+$/.test(he)?he:he+".x"),on.unshift("desktop mode")):/\bWPDesktop\b/i.test(A)?(Je="IE Mobile",Ct="Windows Phone 8.x",on.unshift("desktop mode"),je||(je=(/\brv:([\d.]+)/.exec(A)||0)[1])):"IE"!=Je&&"Trident"==At&&(he=/\brv:([\d.]+)/.exec(A))&&(Je&&on.push("identifying as "+Je+(je?" "+je:"")),Je="IE",je=he[1]),xt){if(ve(W,"global"))if(_t&&(hn=(he=_t.lang.System).getProperty("os.arch"),Ct=Ct||he.getProperty("os.name")+" "+he.getProperty("os.version")),Ye&&ve(W,"system")&&(he=[W.system])[0]){Ct||(Ct=he[0].os||null);try{he[1]=W.require("ringo/engine").version,je=he[1].join("."),Je="RingoJS"}catch(mt){he[0].global.system==W.system&&(Je="Narwhal")}}else"object"==typeof W.process&&!W.process.browser&&(he=W.process)?(Je="Node.js",hn=he.arch,Ct=he.platform,je=/[\d.]+/.exec(he.version)[0]):Xt&&(Je="Rhino");else te(he=W.runtime)==St?(Je="Adobe AIR",Ct=he.flash.system.Capabilities.os):te(he=W.phantom)==kt?(Je="PhantomJS",je=(he=he.version||null)&&he.major+"."+he.minor+"."+he.patch):"number"==typeof Ft.documentMode&&(he=/\bTrident\/(\d+)/i.exec(A))&&(je=[je,Ft.documentMode],(he=+he[1]+4)!=je[1]&&(on.push("IE "+je[1]+" mode"),At&&(At[1]=""),je[1]=he),je="IE"==Je?String(je[1].toFixed(1)):je[0]);Ct=Ct&&ge(Ct)}je&&(he=/(?:[ab]|dp|pre|[ab]\d+pre)(?:\d+\+?)?$/i.exec(je)||/(?:alpha|beta)(?: ?\d)?/i.exec(A+";"+(xt&&Se.appMinorVersion))||/\bMinefield\b/i.test(A)&&"a")&&(pt=/b/i.test(he)?"beta":"alpha",je=je.replace(RegExp(he+"\\+?$"),"")+("beta"==pt?Wt:Jt)+(/\d+\+?/.exec(he)||"")),"Fennec"==Je||"Firefox"==Je&&/\b(?:Android|Firefox OS)\b/.test(Ct)?Je="Firefox Mobile":"Maxthon"==Je&&je?je=je.replace(/\.[\d.]+/,".x"):/\bXbox\b/i.test(qt)?(Ct=null,"Xbox 360"==qt&&/\bIEMobile\b/.test(A)&&on.unshift("mobile mode")):!/^(?:Chrome|IE|Opera)$/.test(Je)&&(!Je||qt||/Browser|Mobi/.test(Je))||"Windows CE"!=Ct&&!/Mobi/i.test(A)?"IE"==Je&&xt&&null===W.external?on.unshift("platform preview"):(/\bBlackBerry\b/.test(qt)||/\bBB10\b/.test(A))&&(he=(RegExp(qt.replace(/ +/g," *")+"/([.\\d]+)","i").exec(A)||0)[1]||je)?(Ct=((he=[he,/BB10/.test(A)])[1]?(qt=null,pn="BlackBerry"):"Device Software")+" "+he[0],je=null):this!=ye&&"Wii"!=qt&&(xt&&mn||/Opera/.test(Je)&&/\b(?:MSIE|Firefox)\b/i.test(A)||"Firefox"==Je&&/\bOS X (?:\d+\.){2,}/.test(Ct)||"IE"==Je&&(Ct&&!/^Win/.test(Ct)&&je>5.5||/\bWindows XP\b/.test(Ct)&&je>8||8==je&&!/\bTrident\b/.test(A)))&&!be.test(he=ut.call(ye,A.replace(be,"")+";"))&&he.name&&(he="ing as "+he.name+((he=he.version)?" "+he:""),be.test(Je)?(/\bIE\b/.test(he)&&"Mac OS"==Ct&&(Ct=null),he="identify"+he):(he="mask"+he,Je=Pn?ge(Pn.replace(/([a-z])([A-Z])/g,"$1 $2")):"Opera",/\bIE\b/.test(he)&&(Ct=null),xt||(je=null)),At=["Presto"],on.push(he)):Je+=" Mobile",(he=(/\bAppleWebKit\/([\d.]+\+?)/i.exec(A)||0)[1])&&(he=[parseFloat(he.replace(/\.(\d)$/,".0$1")),he],"Safari"==Je&&"+"==he[1].slice(-1)?(Je="WebKit Nightly",pt="alpha",je=he[1].slice(0,-1)):(je==he[1]||je==(he[2]=(/\bSafari\/([\d.]+\+?)/i.exec(A)||0)[1]))&&(je=null),he[1]=(/\bChrome\/([\d.]+)/i.exec(A)||0)[1],537.36==he[0]&&537.36==he[2]&&parseFloat(he[1])>=28&&"WebKit"==At&&(At=["Blink"]),xt&&(st||he[1])?(At&&(At[1]="like Chrome"),he=he[1]||((he=he[0])<530?1:he<532?2:he<532.05?3:he<533?4:he<534.03?5:he<534.07?6:he<534.1?7:he<534.13?8:he<534.16?9:he<534.24?10:he<534.3?11:he<535.01?12:he<535.02?"13+":he<535.07?15:he<535.11?16:he<535.19?17:he<536.05?18:he<536.1?19:he<537.01?20:he<537.11?"21+":he<537.13?23:he<537.18?24:he<537.24?25:he<537.36?26:"Blink"!=At?"27":"28")):(At&&(At[1]="like Safari"),he=(he=he[0])<400?1:he<500?2:he<526?3:he<533?4:he<534?"4+":he<535?5:he<537?6:he<538?7:he<601?8:"8"),At&&(At[1]+=" "+(he+="number"==typeof he?".x":/[.+]/.test(he)?"":"+")),"Safari"==Je&&(!je||parseInt(je)>45)&&(je=he)),"Opera"==Je&&(he=/\bzbov|zvav$/.exec(Ct))?(Je+=" ",on.unshift("desktop mode"),"zvav"==he?(Je+="Mini",je=null):Je+="Mobile",Ct=Ct.replace(RegExp(" *"+he+"$"),"")):"Safari"==Je&&/\bChrome\b/.exec(At&&At[1])&&(on.unshift("desktop mode"),Je="Chrome Mobile",je=null,/\bOS X\b/.test(Ct)?(pn="Apple",Ct="iOS 4.3+"):Ct=null),je&&0==je.indexOf(he=/[\d.]+$/.exec(Ct))&&A.indexOf("/"+he+"-")>-1&&(Ct=Ze(Ct.replace(he,""))),At&&!/\b(?:Avant|Nook)\b/.test(Je)&&(/Browser|Lunascape|Maxthon/.test(Je)||"Safari"!=Je&&/^iOS/.test(Ct)&&/\bSafari\b/.test(At[1])||/^(?:Adobe|Arora|Breach|Midori|Opera|Phantom|Rekonq|Rock|Sleipnir|Web)/.test(Je)&&At[1])&&(he=At[At.length-1])&&on.push(he),on.length&&(on=["("+on.join("; ")+")"]),pn&&qt&&qt.indexOf(pn)<0&&on.push("on "+pn),qt&&on.push((/^on /.test(on[on.length-1])?"":"on ")+qt),Ct&&(he=/ ([\d.+]+)$/.exec(Ct),rn=he&&"/"==Ct.charAt(Ct.length-he[0].length-1),Ct={architecture:32,family:he&&!rn?Ct.replace(he[0],""):Ct,version:he?he[1]:null,toString:function(){var se=this.version;return this.family+(se&&!rn?" "+se:"")+(64==this.architecture?" 64-bit":"")}}),(he=/\b(?:AMD|IA|Win|WOW|x86_|x)64\b/i.exec(hn))&&!/\bi686\b/i.test(hn)?(Ct&&(Ct.architecture=64,Ct.family=Ct.family.replace(RegExp(" *"+he),"")),Je&&(/\bWOW64\b/i.test(A)||xt&&/\w(?:86|32)$/.test(Se.cpuClass||Se.platform)&&!/\bWin64; x64\b/i.test(A))&&on.unshift("32-bit")):Ct&&/^OS X/.test(Ct.family)&&"Chrome"==Je&&parseFloat(je)>=39&&(Ct.architecture=64),A||(A=null);var Dt={};return Dt.description=A,Dt.layout=At&&At[0],Dt.manufacturer=pn,Dt.name=Je,Dt.prerelease=pt,Dt.product=qt,Dt.ua=A,Dt.version=Je&&je,Dt.os=Ct||{architecture:null,family:null,version:null,toString:function(){return"null"}},Dt.parse=ut,Dt.toString=function(){return this.description||""},Dt.version&&on.unshift(je),Dt.name&&on.unshift(Je),Ct&&Je&&!(Ct==String(Ct).split(" ")[0]&&(Ct==Je.split(" ")[0]||qt))&&on.push(qt?"("+Ct+")":"on "+Ct),on.length&&(Dt.description=on.join(" ")),Dt}();t.platform=Xe,void 0!==(L=function(){return Xe}.call(we,D,we,It))&&(It.exports=L)}.call(this)},345:function(It,we,D){"use strict";D.d(we,{pi:function(){return t},mG:function(){return y},Jh:function(){return be}});var t=function(){return t=Object.assign||function(Se){for(var ze,Ye=1,st=arguments.length;Ye0&&at[at.length-1])&&(6===kt[0]||2===kt[0])){ze=0;continue}if(3===kt[0]&&(!at||kt[1]>at[0]&&kt[1]-1};var pe=function(ye,te){var ve=this.__data__,Ue=V(ve,ye);return Ue<0?(++this.size,ve.push([ye,te])):ve[Ue][1]=te,this};function Ne(ye){var te=-1,ve=null==ye?0:ye.length;for(this.clear();++teBt))return!1;var ln=_n.get(Je),vn=_n.get(qt);if(ln&&vn)return ln==qt&&vn==Je;var Dt=-1,mt=!0,se=2&pn?new C.Z:void 0;for(_n.set(Je,qt),_n.set(qt,Je);++Dt-1&&t%1==0&&t-1&&C%1==0&&C<=9007199254740991}},625:function(It,we){"use strict";we.Z=function(L){var C=typeof L;return null!=L&&("object"==C||"function"==C)}},7178:function(It,we){"use strict";we.Z=function(L){return null!=L&&"object"==typeof L}},7929:function(It,we,D){"use strict";var L=D(7376),C=D(7178);we.Z=function(V){return"symbol"==typeof V||(0,C.Z)(V)&&"[object Symbol]"==(0,L.Z)(V)}},6350:function(It,we,D){"use strict";D.d(we,{Z:function(){return ft}});var L=D(7376),C=D(8658),t=D(7178),U={};U["[object Float32Array]"]=U["[object Float64Array]"]=U["[object Int8Array]"]=U["[object Int16Array]"]=U["[object Int32Array]"]=U["[object Uint8Array]"]=U["[object Uint8ClampedArray]"]=U["[object Uint16Array]"]=U["[object Uint32Array]"]=!0,U["[object Arguments]"]=U["[object Array]"]=U["[object ArrayBuffer]"]=U["[object Boolean]"]=U["[object DataView]"]=U["[object Date]"]=U["[object Error]"]=U["[object Function]"]=U["[object Map]"]=U["[object Number]"]=U["[object Object]"]=U["[object RegExp]"]=U["[object Set]"]=U["[object String]"]=U["[object WeakMap]"]=!1;var ze=function(ot){return(0,t.Z)(ot)&&(0,C.Z)(ot.length)&&!!U[(0,L.Z)(ot)]},Ye=D(6187),st=D(7665),at=st.Z&&st.Z.isTypedArray,ft=at?(0,Ye.Z)(at):ze},6819:function(It,we,D){"use strict";var L=D(6391),C=D(3832),t=D(8746);we.Z=function(V){return(0,t.Z)(V)?(0,L.Z)(V):(0,C.Z)(V)}},5940:function(It,we){"use strict";we.Z=function(L){var C=null==L?0:L.length;return C?L[C-1]:void 0}},1516:function(It,we,D){"use strict";D.d(we,{Z:function(){return be}});var L=D(4445),C=D(5812),t=D(1986);var V=function(ue,De){var de;return(0,t.Z)(ue,function(Le,ce,pe){return!(de=De(Le,ce,pe))}),!!de},F=D(8487),E=D(1811);var be=function(ue,De,de){var Le=(0,F.Z)(ue)?L.Z:V;return de&&(0,E.Z)(ue,De,de)&&(De=void 0),Le(ue,(0,C.Z)(De,3))}},8914:function(It,we){"use strict";we.Z=function(){return[]}},6108:function(It,we,D){"use strict";function L(C,t){(null==t||t>C.length)&&(t=C.length);for(var R=0,V=new Array(t);R=t.length?{done:!0}:{done:!1,value:t[F++]}},e:function(de){throw de},f: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.")}var ue,y=!0,be=!1;return{s:function(){V=V.call(t)},n:function(){var de=V.next();return y=de.done,de},e:function(de){be=!0,ue=de},f:function(){try{!y&&null!=V.return&&V.return()}finally{if(be)throw ue}}}}},8270:function(It,we,D){"use strict";D.d(we,{Z:function(){return F}});var L=D(1365),C=D(8327);function t(E){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(be){return typeof be}:function(be){return be&&"function"==typeof Symbol&&be.constructor===Symbol&&be!==Symbol.prototype?"symbol":typeof be})(E)}var R=D(9021);function V(E,y){return!y||"object"!==t(y)&&"function"!=typeof y?(0,R.Z)(E):y}function F(E){var y=(0,C.Z)();return function(){var De,ue=(0,L.Z)(E);if(y){var de=(0,L.Z)(this).constructor;De=Reflect.construct(ue,arguments,de)}else De=ue.apply(this,arguments);return V(this,De)}}},9520:function(It,we,D){"use strict";D.d(we,{Z:function(){return t}});var L=D(1365);function t(R,V,F){return t="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(y,be,ue){var De=function(R,V){for(;!Object.prototype.hasOwnProperty.call(R,V)&&null!==(R=(0,L.Z)(R)););return R}(y,be);if(De){var de=Object.getOwnPropertyDescriptor(De,be);return de.get?de.get.call(ue):de.value}},t(R,V,F||R)}},1365:function(It,we,D){"use strict";function L(C){return(L=Object.setPrototypeOf?Object.getPrototypeOf:function(R){return R.__proto__||Object.getPrototypeOf(R)})(C)}D.d(we,{Z:function(){return L}})},4338:function(It,we,D){"use strict";D.d(we,{Z:function(){return C}});var L=D(7300);function C(t,R){if("function"!=typeof R&&null!==R)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(R&&R.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),R&&(0,L.Z)(t,R)}},8327:function(It,we,D){"use strict";function L(){if("undefined"==typeof Reflect||!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(C){return!1}}D.d(we,{Z:function(){return L}})},7450:function(It,we,D){"use strict";function L(C){if("undefined"!=typeof Symbol&&null!=C[Symbol.iterator]||null!=C["@@iterator"])return Array.from(C)}D.d(we,{Z:function(){return L}})},6356:function(It,we,D){"use strict";function L(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}D.d(we,{Z:function(){return L}})},7300:function(It,we,D){"use strict";function L(C,t){return(L=Object.setPrototypeOf||function(V,F){return V.__proto__=F,V})(C,t)}D.d(we,{Z:function(){return L}})},9862:function(It,we,D){"use strict";D.d(we,{Z:function(){return V}});var L=D(9482);var t=D(5572),R=D(6356);function V(F,E){return(0,L.Z)(F)||function(F,E){var y=null==F?null:"undefined"!=typeof Symbol&&F[Symbol.iterator]||F["@@iterator"];if(null!=y){var de,Le,be=[],ue=!0,De=!1;try{for(y=y.call(F);!(ue=(de=y.next()).done)&&(be.push(de.value),!E||be.length!==E);ue=!0);}catch(ce){De=!0,Le=ce}finally{try{!ue&&null!=y.return&&y.return()}finally{if(De)throw Le}}return be}}(F,E)||(0,t.Z)(F,E)||(0,R.Z)()}},3586:function(It,we,D){"use strict";D.d(we,{Z:function(){return F}});var L=D(6108);var t=D(7450),R=D(5572);function F(E){return function(E){if(Array.isArray(E))return(0,L.Z)(E)}(E)||(0,t.Z)(E)||(0,R.Z)(E)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}},5572:function(It,we,D){"use strict";D.d(we,{Z:function(){return C}});var L=D(6108);function C(t,R){if(t){if("string"==typeof t)return(0,L.Z)(t,R);var V=Object.prototype.toString.call(t).slice(8,-1);if("Object"===V&&t.constructor&&(V=t.constructor.name),"Map"===V||"Set"===V)return Array.from(t);if("Arguments"===V||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(V))return(0,L.Z)(t,R)}}},4924:function(It,we,D){"use strict";D.d(we,{Z:function(){return V}});var L=D(1365),C=D(7300);var R=D(1995);function V(F){var E="function"==typeof Map?new Map:void 0;return V=function(be){if(null===be||!function(F){return-1!==Function.toString.call(F).indexOf("[native code]")}(be))return be;if("function"!=typeof be)throw new TypeError("Super expression must either be null or a function");if(void 0!==E){if(E.has(be))return E.get(be);E.set(be,ue)}function ue(){return(0,R.Z)(be,arguments,(0,L.Z)(this).constructor)}return ue.prototype=Object.create(be.prototype,{constructor:{value:ue,enumerable:!1,writable:!0,configurable:!0}}),(0,C.Z)(ue,be)},V(F)}}}]); + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */},5360:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>fe});const C=function t(){this.__data__=[],this.size=0};var F=w(6802);const N=function U(de,pe){for(var Pe=de.length;Pe--;)if((0,F.Z)(de[Pe][0],pe))return Pe;return-1};var K=Array.prototype.splice;const le=function $(de){var pe=this.__data__,Pe=N(pe,de);return!(Pe<0)&&(Pe==pe.length-1?pe.pop():K.call(pe,Pe,1),--this.size,!0)};const ae=function R(de){var pe=this.__data__,Pe=N(pe,de);return Pe<0?void 0:pe[Pe][1]};const Be=function be(de){return N(this.__data__,de)>-1};const ke=function Ne(de,pe){var Pe=this.__data__,et=N(Pe,de);return et<0?(++this.size,Pe.push([de,pe])):Pe[et][1]=pe,this};function Re(de){var pe=-1,Pe=null==de?0:de.length;for(this.clear();++pe{"use strict";w.d(_e,{Z:()=>U});var t=w(1511),C=w(4261);const U=(0,t.Z)(C.Z,"Map")},6844:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>on});const F=(0,w(1511).Z)(Object,"create");const N=function U(){this.__data__=F?F(null):{},this.size=0};const K=function G(Bt){var Qt=this.has(Bt)&&delete this.__data__[Bt];return this.size-=Qt?1:0,Qt};var R=Object.prototype.hasOwnProperty;const be=function ae(Bt){var Qt=this.__data__;if(F){var Rt=Qt[Bt];return"__lodash_hash_undefined__"===Rt?void 0:Rt}return R.call(Qt,Bt)?Qt[Bt]:void 0};var Ne=Object.prototype.hasOwnProperty;const Re=function ke(Bt){var Qt=this.__data__;return F?void 0!==Qt[Bt]:Ne.call(Qt,Bt)};const pe=function de(Bt,Qt){var Rt=this.__data__;return this.size+=this.has(Bt)?0:1,Rt[Bt]=F&&void 0===Qt?"__lodash_hash_undefined__":Qt,this};function Pe(Bt){var Qt=-1,Rt=null==Bt?0:Bt.length;for(this.clear();++Qt{"use strict";w.d(_e,{Z:()=>U});var t=w(1511),C=w(4261);const U=(0,t.Z)(C.Z,"Set")},4068:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>$});var t=w(6844);const U=function F(le){return this.__data__.set(le,"__lodash_hash_undefined__"),this};const G=function N(le){return this.__data__.has(le)};function K(le){var R=-1,ae=null==le?0:le.length;for(this.__data__=new t.Z;++R{"use strict";w.d(_e,{Z:()=>Re});var t=w(5360);const F=function C(){this.__data__=new t.Z,this.size=0};const N=function U(fe){var de=this.__data__,pe=de.delete(fe);return this.size=de.size,pe};const K=function G(fe){return this.__data__.get(fe)};const le=function $(fe){return this.__data__.has(fe)};var R=w(3686),ae=w(6844);const Ne=function Be(fe,de){var pe=this.__data__;if(pe instanceof t.Z){var Pe=pe.__data__;if(!R.Z||Pe.length<199)return Pe.push([fe,de]),this.size=++pe.size,this;pe=this.__data__=new ae.Z(Pe)}return pe.set(fe,de),this.size=pe.size,this};function ke(fe){var de=this.__data__=new t.Z(fe);this.size=de.size}ke.prototype.clear=F,ke.prototype.delete=N,ke.prototype.get=K,ke.prototype.has=le,ke.prototype.set=Ne;const Re=ke},194:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>F});const F=w(4261).Z.Symbol},3410:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>F});const F=w(4261).Z.Uint8Array},5805:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=function t(F,U){for(var N=-1,G=null==F?0:F.length;++N{"use strict";w.d(_e,{Z:()=>C});const C=function t(F,U){for(var N=-1,G=null==F?0:F.length,K=0,$=[];++N{"use strict";w.d(_e,{Z:()=>ae});const C=function t(be,Be){for(var Ne=-1,ke=Array(be);++Ne{"use strict";w.d(_e,{Z:()=>C});const C=function t(F,U){for(var N=-1,G=null==F?0:F.length,K=Array(G);++N{"use strict";w.d(_e,{Z:()=>C});const C=function t(F,U){for(var N=-1,G=U.length,K=F.length;++N{"use strict";w.d(_e,{Z:()=>C});const C=function t(F,U){for(var N=-1,G=null==F?0:F.length;++N{"use strict";w.d(_e,{Z:()=>be});const U=function t(Be){return function(Ne,ke,Re){for(var fe=-1,de=Object(Ne),pe=Re(Ne),Pe=pe.length;Pe--;){var et=pe[Be?Pe:++fe];if(!1===ke(de[et],et,de))break}return Ne}}();var N=w(4876);const K=function G(Be,Ne){return Be&&U(Be,Ne,N.Z)};var $=w(3943);const be=function le(Be,Ne){return function(ke,Re){if(null==ke)return ke;if(!(0,$.Z)(ke))return Be(ke,Re);for(var fe=ke.length,de=Ne?fe:-1,pe=Object(ke);(Ne?de--:++de{"use strict";w.d(_e,{Z:()=>U});var t=w(9162),C=w(1564);const U=function F(N,G){for(var K=0,$=(G=(0,t.Z)(G,N)).length;null!=N&&K<$;)N=N[(0,C.Z)(G[K++])];return K&&K==$?N:void 0}},6288:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>U});var t=w(2784),C=w(7191);const U=function F(N,G,K){var $=G(N);return(0,C.Z)(N)?$:(0,t.Z)($,K(N))}},2574:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>Re});var t=w(194),C=Object.prototype,F=C.hasOwnProperty,U=C.toString,N=t.Z?t.Z.toStringTag:void 0;const K=function G(fe){var de=F.call(fe,N),pe=fe[N];try{fe[N]=void 0;var Pe=!0}catch{}var et=U.call(fe);return Pe&&(de?fe[N]=pe:delete fe[N]),et};var le=Object.prototype.toString;const ae=function R(fe){return le.call(fe)};var Ne=t.Z?t.Z.toStringTag:void 0;const Re=function ke(fe){return null==fe?void 0===fe?"[object Undefined]":"[object Null]":Ne&&Ne in Object(fe)?K(fe):ae(fe)}},478:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>Xt});var t=w(1435),C=w(4068),F=w(760),U=w(6149);const $=function K(Ge,Je,Fe,Me,kt,qt){var Ye=1&Fe,ct=Ge.length,dt=Je.length;if(ct!=dt&&!(Ye&&dt>ct))return!1;var Nt=qt.get(Ge),Zt=qt.get(Je);if(Nt&&Zt)return Nt==Je&&Zt==Ge;var Kt=-1,we=!0,q=2&Fe?new C.Z:void 0;for(qt.set(Ge,Je),qt.set(Je,Ge);++Kt{"use strict";w.d(_e,{Z:()=>Ln});var t=w(1435),C=w(478);const G=function N(ie,yt,Xe,lt){var Et=Xe.length,at=Et,fn=!lt;if(null==ie)return!at;for(ie=Object(ie);Et--;){var Xt=Xe[Et];if(fn&&Xt[2]?Xt[1]!==ie[Xt[0]]:!(Xt[0]in ie))return!1}for(;++Et{"use strict";w.d(_e,{Z:()=>$});var t=w(5908);const U=(0,w(6854).Z)(Object.keys,Object);var G=Object.prototype.hasOwnProperty;const $=function K(le){if(!(0,t.Z)(le))return U(le);var R=[];for(var ae in Object(le))G.call(le,ae)&&"constructor"!=ae&&R.push(ae);return R}},7560:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=function t(F){return function(U){return F(U)}}},6149:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=function t(F,U){return F.has(U)}},9162:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>He});var t=w(7191),C=w(7386),F=w(6844);function N(T,Z){if("function"!=typeof T||null!=Z&&"function"!=typeof Z)throw new TypeError("Expected a function");var Ce=function(){var Te=arguments,Qe=Z?Z.apply(this,Te):Te[0],st=Ce.cache;if(st.has(Qe))return st.get(Qe);var bt=T.apply(this,Te);return Ce.cache=st.set(Qe,bt)||st,bt};return Ce.cache=new(N.Cache||F.Z),Ce}N.Cache=F.Z;const G=N;var R=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,ae=/\\(\\)?/g;const Be=function $(T){var Z=G(T,function(Te){return 500===Ce.size&&Ce.clear(),Te}),Ce=Z.cache;return Z}(function(T){var Z=[];return 46===T.charCodeAt(0)&&Z.push(""),T.replace(R,function(Ce,Te,Qe,st){Z.push(Qe?st.replace(ae,"$1"):Te||Ce)}),Z});var Ne=w(194),ke=w(6717),Re=w(8455),de=Ne.Z?Ne.Z.prototype:void 0,pe=de?de.toString:void 0;const et=function Pe(T){if("string"==typeof T)return T;if((0,t.Z)(T))return(0,ke.Z)(T,Pe)+"";if((0,Re.Z)(T))return pe?pe.call(T):"";var Z=T+"";return"0"==Z&&1/T==-Infinity?"-0":Z};const We=function $e(T){return null==T?"":et(T)};const He=function Ie(T,Z){return(0,t.Z)(T)?T:(0,C.Z)(T,Z)?[T]:Be(We(T))}},6380:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C="object"==typeof global&&global&&global.Object===Object&&global},1922:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>N});var t=w(6288),C=w(5175),F=w(4876);const N=function U(G){return(0,t.Z)(G,F.Z,C.Z)}},1511:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>$e});var t=w(5849);const U=w(4261).Z["__core-js_shared__"];var We,N=(We=/[^.]+$/.exec(U&&U.keys&&U.keys.IE_PROTO||""))?"Symbol(src)_1."+We:"";const K=function G(We){return!!N&&N in We};var $=w(9089),le=w(6018),ae=/^\[object .+?Constructor\]$/,be=Function.prototype,Be=Object.prototype,Ne=be.toString,ke=Be.hasOwnProperty,Re=RegExp("^"+Ne.call(ke).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");const de=function fe(We){return!(!(0,$.Z)(We)||K(We))&&((0,t.Z)(We)?Re:ae).test((0,le.Z)(We))};const Pe=function pe(We,Ie){return We?.[Ie]};const $e=function et(We,Ie){var He=Pe(We,Ie);return de(He)?He:void 0}},5175:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>K});var t=w(8468),C=w(709),U=Object.prototype.propertyIsEnumerable,N=Object.getOwnPropertySymbols;const K=N?function($){return null==$?[]:($=Object($),(0,t.Z)(N($),function(le){return U.call($,le)}))}:C.Z},3192:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>He});var t=w(1511),C=w(4261);const U=(0,t.Z)(C.Z,"DataView");var N=w(3686);const K=(0,t.Z)(C.Z,"Promise");var $=w(3538);const R=(0,t.Z)(C.Z,"WeakMap");var ae=w(2574),be=w(6018),Be="[object Map]",ke="[object Promise]",Re="[object Set]",fe="[object WeakMap]",de="[object DataView]",pe=(0,be.Z)(U),Pe=(0,be.Z)(N.Z),et=(0,be.Z)(K),$e=(0,be.Z)($.Z),We=(0,be.Z)(R),Ie=ae.Z;(U&&Ie(new U(new ArrayBuffer(1)))!=de||N.Z&&Ie(new N.Z)!=Be||K&&Ie(K.resolve())!=ke||$.Z&&Ie(new $.Z)!=Re||R&&Ie(new R)!=fe)&&(Ie=function(T){var Z=(0,ae.Z)(T),Ce="[object Object]"==Z?T.constructor:void 0,Te=Ce?(0,be.Z)(Ce):"";if(Te)switch(Te){case pe:return de;case Pe:return Be;case et:return ke;case $e:return Re;case We:return fe}return Z});const He=Ie},9802:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>U});var C=/^(?:0|[1-9]\d*)$/;const U=function F(N,G){var K=typeof N;return!!(G=G??9007199254740991)&&("number"==K||"symbol"!=K&&C.test(N))&&N>-1&&N%1==0&&N{"use strict";w.d(_e,{Z:()=>G});var t=w(6802),C=w(3943),F=w(9802),U=w(9089);const G=function N(K,$,le){if(!(0,U.Z)(le))return!1;var R=typeof $;return!!("number"==R?(0,C.Z)(le)&&(0,F.Z)($,le.length):"string"==R&&$ in le)&&(0,t.Z)(le[$],K)}},7386:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>G});var t=w(7191),C=w(8455),F=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,U=/^\w*$/;const G=function N(K,$){if((0,t.Z)(K))return!1;var le=typeof K;return!("number"!=le&&"symbol"!=le&&"boolean"!=le&&null!=K&&!(0,C.Z)(K))||(U.test(K)||!F.test(K)||null!=$&&K in Object($))}},5908:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>F});var t=Object.prototype;const F=function C(U){var N=U&&U.constructor;return U===("function"==typeof N&&N.prototype||t)}},5986:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>K});var t=w(6380),C="object"==typeof exports&&exports&&!exports.nodeType&&exports,F=C&&"object"==typeof module&&module&&!module.nodeType&&module,N=F&&F.exports===C&&t.Z.process;const K=function(){try{return F&&F.require&&F.require("util").types||N&&N.binding&&N.binding("util")}catch{}}()},6854:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=function t(F,U){return function(N){return F(U(N))}}},4261:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>U});var t=w(6380),C="object"==typeof self&&self&&self.Object===Object&&self;const U=t.Z||C||Function("return this")()},2357:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=function t(F){var U=-1,N=Array(F.size);return F.forEach(function(G){N[++U]=G}),N}},1564:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>U});var t=w(8455);const U=function F(N){if("string"==typeof N||(0,t.Z)(N))return N;var G=N+"";return"0"==G&&1/N==-Infinity?"-0":G}},6018:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>U});var C=Function.prototype.toString;const U=function F(N){if(null!=N){try{return C.call(N)}catch{}try{return N+""}catch{}}return""}},6802:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=function t(F,U){return F===U||F!=F&&U!=U}},7900:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>$});var t=w(8468),C=w(1071);const U=function F(le,R){var ae=[];return(0,C.Z)(le,function(be,Be,Ne){R(be,Be,Ne)&&ae.push(be)}),ae};var N=w(702),G=w(7191);const $=function K(le,R){return((0,G.Z)(le)?t.Z:U)(le,(0,N.Z)(R,3))}},6982:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>$});var t=w(5805),C=w(1071),F=w(570);const N=function U(le){return"function"==typeof le?le:F.Z};var G=w(7191);const $=function K(le,R){return((0,G.Z)(le)?t.Z:C.Z)(le,N(R))}},4894:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>F});var t=w(202);const F=function C(U,N,G){var K=null==U?void 0:(0,t.Z)(U,N);return void 0===K?G:K}},570:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=function t(F){return F}},7700:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>R});var t=w(2574),C=w(6567);const N=function U(ae){return(0,C.Z)(ae)&&"[object Arguments]"==(0,t.Z)(ae)};var G=Object.prototype,K=G.hasOwnProperty,$=G.propertyIsEnumerable;const R=N(function(){return arguments}())?N:function(ae){return(0,C.Z)(ae)&&K.call(ae,"callee")&&!$.call(ae,"callee")}},7191:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=Array.isArray},3943:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>U});var t=w(5849),C=w(5227);const U=function F(N){return null!=N&&(0,C.Z)(N.length)&&!(0,t.Z)(N)}},4951:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>R});var t=w(4261);const F=function C(){return!1};var U="object"==typeof exports&&exports&&!exports.nodeType&&exports,N=U&&"object"==typeof module&&module&&!module.nodeType&&module,K=N&&N.exports===U?t.Z.Buffer:void 0;const R=(K?K.isBuffer:void 0)||F},4607:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>Ne});var t=w(3534),C=w(3192),F=w(7700),U=w(7191),N=w(3943),G=w(4951),K=w(5908),$=w(7697),be=Object.prototype.hasOwnProperty;const Ne=function Be(ke){if(null==ke)return!0;if((0,N.Z)(ke)&&((0,U.Z)(ke)||"string"==typeof ke||"function"==typeof ke.splice||(0,G.Z)(ke)||(0,$.Z)(ke)||(0,F.Z)(ke)))return!ke.length;var Re=(0,C.Z)(ke);if("[object Map]"==Re||"[object Set]"==Re)return!ke.size;if((0,K.Z)(ke))return!(0,t.Z)(ke).length;for(var fe in ke)if(be.call(ke,fe))return!1;return!0}},5849:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>$});var t=w(2574),C=w(9089);const $=function K(le){if(!(0,C.Z)(le))return!1;var R=(0,t.Z)(le);return"[object Function]"==R||"[object GeneratorFunction]"==R||"[object AsyncFunction]"==R||"[object Proxy]"==R}},5227:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>F});const F=function C(U){return"number"==typeof U&&U>-1&&U%1==0&&U<=9007199254740991}},9089:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=function t(F){var U=typeof F;return null!=F&&("object"==U||"function"==U)}},6567:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=function t(F){return null!=F&&"object"==typeof F}},8455:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>N});var t=w(2574),C=w(6567);const N=function U(G){return"symbol"==typeof G||(0,C.Z)(G)&&"[object Symbol]"==(0,t.Z)(G)}},7697:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>Dt});var t=w(2574),C=w(5227),F=w(6567),Ce={};Ce["[object Float32Array]"]=Ce["[object Float64Array]"]=Ce["[object Int8Array]"]=Ce["[object Int16Array]"]=Ce["[object Int32Array]"]=Ce["[object Uint8Array]"]=Ce["[object Uint8ClampedArray]"]=Ce["[object Uint16Array]"]=Ce["[object Uint32Array]"]=!0,Ce["[object Arguments]"]=Ce["[object Array]"]=Ce["[object ArrayBuffer]"]=Ce["[object Boolean]"]=Ce["[object DataView]"]=Ce["[object Date]"]=Ce["[object Error]"]=Ce["[object Function]"]=Ce["[object Map]"]=Ce["[object Number]"]=Ce["[object Object]"]=Ce["[object RegExp]"]=Ce["[object Set]"]=Ce["[object String]"]=Ce["[object WeakMap]"]=!1;const Qe=function Te(Mt){return(0,F.Z)(Mt)&&(0,C.Z)(Mt.length)&&!!Ce[(0,t.Z)(Mt)]};var st=w(7560),bt=w(5986),Tt=bt.Z&&bt.Z.isTypedArray;const Dt=Tt?(0,st.Z)(Tt):Qe},4876:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>N});var t=w(2064),C=w(3534),F=w(3943);const N=function U(G){return(0,F.Z)(G)?(0,t.Z)(G):(0,C.Z)(G)}},757:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=function t(F){var U=null==F?0:F.length;return U?F[U-1]:void 0}},1038:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>le});var t=w(760),C=w(702),F=w(1071);const N=function U(R,ae){var be;return(0,F.Z)(R,function(Be,Ne,ke){return!(be=ae(Be,Ne,ke))}),!!be};var G=w(7191),K=w(9048);const le=function $(R,ae,be){var Be=(0,G.Z)(R)?t.Z:N;return be&&(0,K.Z)(R,ae,be)&&(ae=void 0),Be(R,(0,C.Z)(ae,3))}},709:(vt,_e,w)=>{"use strict";w.d(_e,{Z:()=>C});const C=function t(){return[]}},1670:(vt,_e,w)=>{"use strict";function t(F,U,N,G,K,$,le){try{var R=F[$](le),ae=R.value}catch(be){return void N(be)}R.done?U(ae):Promise.resolve(ae).then(G,K)}function C(F){return function(){var U=this,N=arguments;return new Promise(function(G,K){var $=F.apply(U,N);function le(ae){t($,G,K,le,R,"next",ae)}function R(ae){t($,G,K,le,R,"throw",ae)}le(void 0)})}}w.d(_e,{Z:()=>C})}}]); //# sourceMappingURL=vendor.js.map -(self.webpackChunksunbird_video_player_app=self.webpackChunksunbird_video_player_app||[]).push([["main"],{6272:function(m,y,l){"use strict";var g=l(1570),t=l(3587),b=l(4364),P=l(1987),O=l(9402),I=l(1707),L=l(1507),w=l(9075),f=l(345),d=l(759),C=l(4578),u=l(1494),x=function(){function n(){}return n.prototype.uniqueId=function(e){void 0===e&&(e=32);for(var i="",r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",a=r.length,o=0;oe}):null},n.prototype.raiseStartEvent=function(e){var i=(new Date).getTime()-this.PlayerLoadStartedAt,r={eid:"START",ver:this.version,edata:{type:"START",mode:"play",duration:i},metaData:this.metaData};this.playerEvent.emit(r),this.videoPlayerService.start(i),this.PlayerLoadStartedAt=(new Date).getTime()},n.prototype.calculateScore=function(){this.scoreObtained=Object.values(this.interceptionResponses).reduce(function(e,i){return e+i.score},0)},n.prototype.raiseEndEvent=function(){if(!this.isEndEventRaised){this.calculateScore();var e=(new Date).getTime()-this.PlayerLoadStartedAt,i={eid:"END",ver:this.version,edata:{type:"END",currentTime:this.currentlength,totalTime:this.totalLength,duration:e},metaData:this.metaData};this.playerEvent.emit(i),this.timeSpent=this.utilService.getTimeSpentText(this.visitedLength),this.videoPlayerService.end(e,this.totalLength,this.currentlength,this.endPageSeen,this.totalSeekedLength,this.visitedLength/1e3,this.scoreObtained),this.isEndEventRaised=!0}},n.prototype.raiseHeartBeatEvent=function(e,i){"REPLAY"===e&&(this.interceptionResponses={},this.showScore=!1,this.scoreObtained=0);var r={eid:"HEARTBEAT",ver:this.version,edata:{type:e,currentPage:"videostage",extra:i},metaData:this.metaData};this.playerEvent.emit(r),this.videoPlayerService.heartBeat(r);["PLAY","PAUSE","EXIT","VOLUME_CHANGE","DRAG","RATE_CHANGE","CLOSE_DOWNLOAD","DOWNLOAD","NAVIGATE_TO_PAGE","NEXT","OPEN_MENU","PREVIOUS","CLOSE_MENU","DOWNLOAD_MENU","DOWNLOAD_POPUP_CLOSE","DOWNLOAD_POPUP_CANCEL","SHARE","REPLAY","FORWARD","BACKWARD","FULLSCREEN","NEXT_CONTENT_PLAY","TRANSCRIPT_LANGUAGE_OFF","TRANSCRIPT_LANGUAGE_SELECTED","VIDEO_MARKER_SELECTED"].includes(e)&&this.videoPlayerService.interact(e.toLowerCase(),"videostage",i)},n.prototype.raiseImpressionEvent=function(e,i){void 0===i&&(i={}),this.videoPlayerService.impression(e,i)},n.prototype.raiseExceptionLog=function(e,i,r,a){var o={eid:"ERROR",edata:{err:e,errtype:i,requestid:a||"",stacktrace:r&&r.toString()||""}};this.playerEvent.emit(o),this.videoPlayerService.error(e,i,r)},n.\u0275fac=function(i){return new(i||n)(t.LFG(M),t.LFG(x),t.LFG(P.eN),t.LFG(w.wX,8))},n.\u0275prov=t.Yz7({token:n,factory:n.\u0275fac,providedIn:"root"}),n}(),v=l(2789),U=l(6667),j=(l(3573),l(114)),V=["target"],B=["controlDiv"];function Q(n,e){if(1&n&&t._UZ(0,"track",6),2&n){var i=e.$implicit;t.s9C("default",i.default),t.s9C("src",i.artifactUrl,t.LSH),t.s9C("srclang",i.languageCode),t.s9C("label",i.language)}}function H(n,e){if(1&n){var i=t.EpF();t.TgZ(0,"span",18),t.NdJ("click",function(){return t.CHM(i),t.oxw(2).pause()}),t.O4$(),t.TgZ(1,"svg",19),t.TgZ(2,"g",20),t._UZ(3,"path",21),t.qZA(),t.qZA(),t.qZA()}}function q(n,e){if(1&n){var i=t.EpF();t.TgZ(0,"span",22),t.NdJ("click",function(){return t.CHM(i),t.oxw(2).play()}),t.O4$(),t.TgZ(1,"svg",19),t.TgZ(2,"g",23),t._UZ(3,"path",24),t.qZA(),t.qZA(),t.qZA()}}function Y(n,e){if(1&n){var i=t.EpF();t.TgZ(0,"div",7),t.TgZ(1,"div",8),t.NdJ("click",function(){return t.CHM(i),t.oxw().backward()}),t.O4$(),t.TgZ(2,"svg",9),t.TgZ(3,"g",10),t._UZ(4,"path",11),t.qZA(),t.qZA(),t.qZA(),t.kcU(),t.TgZ(5,"div",12),t.YNc(6,H,4,0,"span",13),t.YNc(7,q,4,0,"span",14),t.qZA(),t.TgZ(8,"div",15),t.NdJ("click",function(){return t.CHM(i),t.oxw().forward()}),t.O4$(),t.TgZ(9,"svg",9),t.TgZ(10,"g",16),t._UZ(11,"path",17),t.qZA(),t.qZA(),t.qZA(),t.qZA()}if(2&n){var r=t.oxw();t.xp6(1),t.Udp("visibility",r.showBackwardButton?"visible":"hidden"),t.xp6(5),t.Q6J("ngIf",r.showPauseButton),t.xp6(1),t.Q6J("ngIf",r.showPlayButton),t.xp6(1),t.Udp("visibility",r.showForwardButton?"visible":"hidden")}}var J=function(n){return{"player-for-back-ward-controls":n}},G=function(){function n(e,i,r,a,o){this.viewerService=e,this.renderer2=i,this.questionCursor=r,this.http=a,this.cdr=o,this.questionSetData=new t.vpe,this.playerInstance=new t.vpe,this.transcripts=[],this.showBackwardButton=!1,this.showForwardButton=!1,this.showPlayButton=!0,this.showPauseButton=!1,this.showControls=!0,this.currentPlayerState="none",this.totalSeekedLength=0,this.previousTime=0,this.currentTime=0,this.seekStart=null,this.time=10,this.totalSpentTime=0,this.isAutoplayPrevented=!1,this.setMetaDataConfig=!1,this.totalDuration=0}return n.prototype.ngOnInit=function(){this.transcripts=this.viewerService.handleTranscriptsData(v.Z(this.config,"transcripts")||[])},n.prototype.ngAfterViewInit=function(){var e=this;this.viewerService.getPlayerOptions().then(function(i){return(0,f.mG)(e,void 0,void 0,function(){var r,a,o,s=this;return(0,f.Jh)(this,function(p){switch(p.label){case 0:return r=this,[4,videojs(this.target.nativeElement,{fluid:!0,responsive:!0,sources:i,autoplay:!0,muted:v.Z(this.config,"muted"),playbackRates:[.5,1,1.5,2],controlBar:{children:["playToggle","volumePanel","durationDisplay","progressControl","remainingTimeDisplay","CaptionsButton","playbackRateMenuButton","fullscreenToggle"]},plugins:{httpSourceSelector:{default:"low"}},html5:{hls:{overrideNative:!0},nativeAudioTracks:!1,nativeVideoTracks:!1}})];case 1:return r.player=p.sent(),this.player.videojshttpsourceselector=j.Z,this.player.videojshttpsourceselector(),(a=this.viewerService.getMarkers())&&a.length>0&&(o=a.map(function(c){return c.identifier}),this.viewerService.questionCursor&&this.viewerService.questionCursor.getAllQuestionSet(o).subscribe(function(c){C.Z(c)||(s.viewerService.maxScore=c.reduce(function(h,_){return h+_},0))})),a&&(this.player.markers({markers:a,markerStyle:{height:"7px",bottom:"39%","background-color":"orange"},onMarkerReached:function(c){if(c){var h=c.time,T=(c.text,c.identifier),ce=c.duration;s.player.currentTime()>h+ce||(setTimeout(function(){s.pause(),s.player.controls(!1)},1e3),s.viewerService.getQuestionSet(T).subscribe(function(k){s.questionSetData.emit({response:k,time:h,identifier:T})},function(k){s.play(),s.player.controls(!0),console.log(k)}))}}}),this.playerInstance.emit(this.player),this.viewerService.playerInstance=this.player,this.viewerService.preFetchContent()),this.registerEvents(),[2]}})})}),setInterval(function(){!e.isAutoplayPrevented&&"pause"!==e.currentPlayerState&&(e.showControls=!1)},5e3),this.unlistenTargetMouseMove=this.renderer2.listen(this.target.nativeElement,"mousemove",function(){e.showControls=!0}),this.unlistenTargetTouchStart=this.renderer2.listen(this.target.nativeElement,"touchstart",function(){e.showControls=!0}),this.viewerService.sidebarMenuEvent.subscribe(function(i){"OPEN_MENU"===i&&e.pause(),"CLOSE_MENU"===i&&e.play()})},n.prototype.ngOnChanges=function(e){if(e.action&&this.player&&e.action.currentValue!==e.action.previousValue)switch(e.action.currentValue.name){case"play":this.play();break;case"pause":this.pause();break;default:console.warn("Invalid Case!")}},n.prototype.onLoadMetadata=function(e){this.totalDuration=this.viewerService.metaData.totalDuration=this.player.duration(),this.viewerService.totalLength=this.totalDuration,this.transcripts&&this.transcripts.length&&this.player.transcript&&this.player.transcript({showTitle:!0,showTrackSelector:!0})},n.prototype.registerEvents=function(){var e=this,i=this.player.play();void 0!==i&&i.catch(function(a){e.isAutoplayPrevented=!0});this.player.on("fullscreenchange",function(a){e.player.isFullscreen()&&e.target.nativeElement.parentNode.appendChild(e.controlDiv.nativeElement),e.viewerService.raiseHeartBeatEvent("FULLSCREEN")}),this.player.on("pause",function(a){e.pause()}),this.player.on("ratechange",function(a){e.viewerService.metaData.playBackSpeeds.push(e.player.playbackRate())}),this.player.on("volumechange",function(a){e.viewerService.metaData.volume.push(e.player.volume()),e.viewerService.metaData.muted=e.player.muted()}),this.player.on("play",function(a){e.currentPlayerState="play",e.showPauseButton=!0,e.showPlayButton=!1,e.viewerService.raiseHeartBeatEvent("PLAY"),e.isAutoplayPrevented=!1}),this.player.on("timeupdate",function(a){e.viewerService.metaData.currentDuration=e.player.currentTime(),e.handleVideoControls(a),e.viewerService.playerEvent.emit(a),e.viewerService.currentlength=e.viewerService.metaData.currentDuration,e.viewerService.visitedLength=e.totalSpentTime,Math.floor(e.totalDuration-e.player.currentTime())<=0&&(e.viewerService.metaData.currentDuration=0,e.handleVideoControls({type:"ended"}),e.viewerService.playerEvent.emit({type:"ended"}))}),this.player.on("subtitleChanged",function(a,o){e.handleEventsForTranscripts(o)}),this.player.on("durationchange",function(a){0===e.totalDuration&&(e.totalDuration=e.viewerService.metaData.totalDuration=e.player.duration(),e.viewerService.playerEvent.emit((0,f.pi)((0,f.pi)({},a),{duration:e.totalDuration})))}),["loadstart","play","pause","error","playing","progress","seeked","seeking","volumechange","ratechange"].forEach(function(a){e.player.on(a,function(o){e.handleVideoControls(o),e.viewerService.playerEvent.emit(o)})}),this.trackTranscriptEvent()},n.prototype.trackTranscriptEvent=function(){var e,i=this.player;this.player.textTracks().on("change",function(a){clearTimeout(e);var o={};this.tracks_.filter(function(s){if(("captions"===s.kind||"subtitles"===s.kind)&&"showing"===s.mode)return o={artifactUrl:s.src,languageCode:s.language},!0}),e=setTimeout(function(){i.trigger("subtitleChanged",o)},10)})},n.prototype.handleEventsForTranscripts=function(e){var i;C.Z(e)?(i={type:"TRANSCRIPT_LANGUAGE_OFF",extraValues:{videoTimeStamp:this.player.currentTime()}},this.viewerService.metaData.transcripts.push("off")):(i={type:"TRANSCRIPT_LANGUAGE_SELECTED",extraValues:{transcript:{language:v.Z(U.Z(this.transcripts,{artifactUrl:e.artifactUrl,languageCode:e.languageCode})[0],"language")},videoTimeStamp:this.player.currentTime()}},E.Z(this.viewerService.metaData.transcripts)!==e.languageCode&&this.viewerService.metaData.transcripts.push(e.languageCode)),this.viewerService.raiseHeartBeatEvent(i.type,i.extraValues)},n.prototype.toggleForwardRewindButton=function(){this.showForwardButton=!0,this.showBackwardButton=!0,this.cdr.detectChanges(),this.player.currentTime()+this.time>this.totalDuration&&(this.showForwardButton=!1,this.cdr.detectChanges()),this.player.currentTime()-this.time<0&&(this.showBackwardButton=!1,this.cdr.detectChanges())},n.prototype.play=function(){this.player&&this.player.play(),this.currentPlayerState="play",this.showPauseButton=!0,this.showPlayButton=!1,this.toggleForwardRewindButton()},n.prototype.pause=function(){this.player&&this.player.pause(),this.currentPlayerState="pause",this.showPauseButton=!1,this.showPlayButton=!0,this.toggleForwardRewindButton(),this.viewerService.raiseHeartBeatEvent("PAUSE")},n.prototype.backward=function(){this.player&&this.player.currentTime(this.player.currentTime()-this.time),this.toggleForwardRewindButton(),this.viewerService.raiseHeartBeatEvent("BACKWARD")},n.prototype.forward=function(){this.player&&this.player.currentTime(this.player.currentTime()+this.time),this.toggleForwardRewindButton(),this.viewerService.raiseHeartBeatEvent("FORWARD")},n.prototype.handleVideoControls=function(e){var i=this,r=e.type;("playing"===r&&(this.showPlayButton=!1,this.showPauseButton=!0,this.setMetaDataConfig&&(this.setMetaDataConfig=!1,this.setPreMetaDataConfig())),"ended"===r&&(this.totalSpentTime+=(new Date).getTime()-this.startTime,this.viewerService.visitedLength=this.totalSpentTime,this.player&&(this.viewerService.currentlength=this.player.currentTime()),this.viewerService.totalLength=this.totalDuration,this.updatePlayerEventsMetadata({type:r})),"pause"===r&&(this.totalSpentTime+=(new Date).getTime()-this.startTime,this.updatePlayerEventsMetadata({type:r})),"play"===r&&(this.startTime=(new Date).getTime(),this.updatePlayerEventsMetadata({type:r})),"loadstart"===r&&(this.startTime=(new Date).getTime(),this.setMetaDataConfig=!0),"timeupdate"===r&&(this.previousTime=this.currentTime,this.player&&(this.currentTime=this.player.currentTime()),this.toggleForwardRewindButton()),"seeking"===r&&null===this.seekStart&&(this.seekStart=this.previousTime),"seeked"===r&&(this.updatePlayerEventsMetadata({type:r}),this.currentTime>this.seekStart?this.totalSeekedLength=this.totalSeekedLength+(this.currentTime-this.seekStart):this.seekStart>this.currentTime&&(this.totalSeekedLength=this.totalSeekedLength+(this.seekStart-this.currentTime)),this.viewerService.totalSeekedLength=this.totalSeekedLength,this.seekStart=null,this.player.markers&&this.player.markers.getMarkers))&&this.player.markers.getMarkers().forEach(function(o){!i.viewerService.interceptionResponses[o.time]&&o.time0?"/"+r.viewerService.maxScore:""):"")("nextContent",r.nextContent)("userName",r.viewerService.userName)("showExit",r.sideMenuConfig.showExit)("timeSpentLabel",r.viewerService.timeSpent)}}function te(n,e){1&n&&t._UZ(0,"sb-player-contenterror")}function ie(n,e){if(1&n){var i=t.EpF();t.TgZ(0,"div",12,13),t.TgZ(2,"quml-main-player",14),t.NdJ("playerEvent",function(o){return t.CHM(i),t.oxw().qumlPlayerEvents(o)}),t.qZA(),t.qZA()}if(2&n){var r=t.oxw();t.xp6(2),t.Q6J("playerConfig",r.QumlPlayerConfig)}}var re=function(){function n(e,i,r,a,o){var s=this;this.videoPlayerService=e,this.viewerService=i,this.cdr=r,this.renderer2=a,this.errorService=o,this.telemetryEvent=new t.vpe,this.viewState="player",this.showControls=!0,this.sideMenuConfig={showShare:!0,showDownload:!0,showReplay:!0,showExit:!0},this.isPaused=!1,this.showQumlPlayer=!1,this.QumlPlayerConfig={},this.isFullScreen=!1,this.isInitialized=!1,this.raiseInternetDisconnectionError=function(){var p=d.uY.internetConnectivity,c=d.N3.internetConnectivity,h=p+": "+c;s.viewerService.raiseExceptionLog(p,c,h,s.traceId)},this.playerEvent=this.viewerService.playerEvent,this.viewerService.playerEvent.subscribe(function(p){if("pause"===p.type&&(s.isPaused=!0,s.showControls=!0),"play"===p.type&&(s.isPaused=!1),"loadstart"===p.type&&s.viewerService.raiseStartEvent(p),"ended"===p.type&&(s.viewerService.endPageSeen=!0,s.viewerService.raiseEndEvent(),s.viewState="end",s.cdr.detectChanges()),"error"===p.type){var c=d.uY.contentLoadFails,h=d.N3.contentLoadFails;s.viewerService.isAvailableLocally&&(c=d.uY.contentLoadFails,h=d.N3.contentLoadFails),c===d.uY.contentLoadFails&&(s.showContentError=!0),s.viewerService.raiseExceptionLog(c,h,p,s.traceId)}[{type:"volumechange",telemetryEvent:"VOLUME_CHANGE"},{type:"seeking",telemetryEvent:"DRAG"},{type:"fullscreen",telemetryEvent:"FULLSCREEN"},{type:"ratechange",telemetryEvent:"RATE_CHANGE"}].forEach(function(T){p.type===T.type&&s.viewerService.raiseHeartBeatEvent(T.telemetryEvent)})})}return n.prototype.onTelemetryEvent=function(e){this.telemetryEvent.emit(e.detail)},n.prototype.ngOnInit=function(){var e=this;if(this.isInitialized=!0,this.playerConfig&&"string"==typeof this.playerConfig)try{this.playerConfig=JSON.parse(this.playerConfig)}catch(i){console.error("Invalid playerConfig: ",i)}setInterval(function(){e.isPaused||(e.showControls=!1)},5e3),this.nextContent=this.playerConfig.config.nextContent,this.traceId=this.playerConfig.config.traceId,this.sideMenuConfig=(0,f.pi)((0,f.pi)({},this.sideMenuConfig),this.playerConfig.config.sideMenu),this.videoPlayerService.initialize(this.playerConfig),this.viewerService.initialize(this.playerConfig),window.addEventListener("offline",this.raiseInternetDisconnectionError,!0),this.QumlPlayerConfig.config=this.playerConfig.config,this.QumlPlayerConfig.config.sideMenu.enable=!1,this.QumlPlayerConfig.context=this.playerConfig.context,this.setTelemetryObjectRollup(this.playerConfig.metadata.identifier)},n.prototype.ngOnChanges=function(e){var i;e.action&&(this.showQumlPlayer||(this.playerAction=this.action)),(null===(i=null==e?void 0:e.playerConfig)||void 0===i?void 0:i.firstChange)&&this.isInitialized&&this.ngOnInit()},n.prototype.ngAfterViewInit=function(){var e=this,i=this.videoPlayerRef.nativeElement;this.unlistenMouseMove=this.renderer2.listen(i,"mousemove",function(){e.showControls=!0}),this.unlistenTouchStart=this.renderer2.listen(i,"touchstart",function(){e.showControls=!0});var r=this.playerConfig.metadata.compatibilityLevel;if(r){var a=this.errorService.checkContentCompatibility(r);a.isCompitable||this.viewerService.raiseExceptionLog(d.uY.contentCompatibility,d.N3.contentCompatibility,a.error.message,this.traceId)}},n.prototype.sideBarEvents=function(e){var i=this;this.playerEvent.emit(e),"DOWNLOAD"===e.type&&this.downloadVideo();["SHARE","DOWNLOAD_MENU","EXIT","CLOSE_MENU","OPEN_MENU","DOWNLOAD_POPUP_CANCEL","DOWNLOAD_POPUP_CLOSE"].forEach(function(a){e.type===a&&i.viewerService.raiseHeartBeatEvent(a),"EXIT"===e.type&&i.viewerService.sidebarMenuEvent.emit("CLOSE_MENU")})},n.prototype.setTelemetryObjectRollup=function(e){if(this.QumlPlayerConfig.context){this.QumlPlayerConfig&&this.QumlPlayerConfig.context&&this.QumlPlayerConfig.context.objectRollup||(this.QumlPlayerConfig.context.objectRollup={});var r=Object.keys(this.QumlPlayerConfig.context.objectRollup);this.QumlPlayerConfig.context.objectRollup["l"+(r.length+1)]=e}},n.prototype.playContent=function(e){this.viewerService.raiseHeartBeatEvent(e.type)},n.prototype.replayContent=function(e){this.playerEvent.emit(e),this.viewState="player",this.viewerService.isEndEventRaised=!1,this.viewerService.raiseHeartBeatEvent("REPLAY"),this.cdr.detectChanges()},n.prototype.exitContent=function(e){this.playerEvent.emit(e),this.viewerService.raiseHeartBeatEvent("EXIT")},n.prototype.downloadVideo=function(){var e=document.createElement("a");e.href=this.viewerService.artifactUrl,e.download=this.viewerService.contentName,e.target="_blank",document.body.appendChild(e),e.click(),e.remove(),this.viewerService.raiseHeartBeatEvent("DOWNLOAD")},n.prototype.qumlPlayerEvents=function(e){if("QUML_SUMMARY"===e.eid){this.showQumlPlayer=!1;var i=parseInt(e.edata.extra.find(function(a){return"score"===a.id}).value,10);this.viewerService.interceptionResponses[this.currentInterceptionTime]={score:i,isSkipped:!1};var r=document.querySelector('[data-marker-time="'+this.currentInterceptionTime+'"]');r&&(r.style.background="green"),this.videoInstance.play(),this.videoInstance.controls(!0),this.viewerService.raiseImpressionEvent("video"),!document.fullscreenElement&&this.isFullScreen&&document.getElementsByClassName("video-js")[0]&&document.getElementsByClassName("video-js")[0].requestFullscreen().catch(function(a){return console.error(a)})}},n.prototype.questionSetData=function(e){var i=e.response,r=e.time,a=e.identifier;this.QumlPlayerConfig.metadata=i,this.QumlPlayerConfig.metadata.showStartPage="No",this.QumlPlayerConfig.metadata.showEndPage="No",this.currentInterceptionTime=r,this.currentInterceptionUIId=a,document.fullscreenElement?(this.isFullScreen=!0,document.exitFullscreen().catch(function(o){return console.error(o)})):this.isFullScreen=!1,this.showQumlPlayer=!0,this.viewerService.raiseImpressionEvent("interactive-question-set",{id:a,type:"QuestionSet"}),this.viewerService.raiseHeartBeatEvent("VIDEO_MARKER_SELECTED",{identifier:a,type:"QuestionSet",interceptedAt:r})},n.prototype.playerInstance=function(e){this.videoInstance=e},n.prototype.ngOnDestroy=function(){this.viewerService.raiseEndEvent(),this.unlistenTouchStart(),this.unlistenMouseMove(),this.viewerService.isEndEventRaised=!1,window.removeEventListener("offline",this.raiseInternetDisconnectionError,!0)},n.\u0275fac=function(i){return new(i||n)(t.Y36(M),t.Y36(A),t.Y36(t.sBO),t.Y36(t.Qsj),t.Y36(d.T_))},n.\u0275cmp=t.Xpm({type:n,selectors:[["sunbird-video-player"]],viewQuery:function(i,r){if(1&i&&t.Gf(z,7),2&i){var a;t.iGM(a=t.CRH())&&(r.videoPlayerRef=a.first)}},hostBindings:function(i,r){1&i&&t.NdJ("TelemetryEvent",function(o){return r.onTelemetryEvent(o)},!1,t.evT)("beforeunload",function(){return r.ngOnDestroy()},!1,t.Jf7)},inputs:{playerConfig:"playerConfig",action:"action"},outputs:{playerEvent:"playerEvent",telemetryEvent:"telemetryEvent"},features:[t.TTD],decls:8,vars:7,consts:[[1,"sunbird-video-player-container",3,"ngClass"],["videoPlayer",""],["class","sb-player-side-menu-icon notVisible","tabindex","0",3,"ngClass","sidebarMenuEvent",4,"ngIf"],[3,"config","action","questionSetData","playerInstance",4,"ngIf"],[3,"title","config","sidebarEvent",4,"ngIf"],["tabindex","0",3,"contentName","outcomeLabel","outcome","nextContent","userName","showExit","timeSpentLabel","playNextContent","exitContent","replayContent",4,"ngIf"],[4,"ngIf"],["class","sunbird-video-player-container",4,"ngIf"],["tabindex","0",1,"sb-player-side-menu-icon","notVisible",3,"ngClass","sidebarMenuEvent"],[3,"config","action","questionSetData","playerInstance"],[3,"title","config","sidebarEvent"],["tabindex","0",3,"contentName","outcomeLabel","outcome","nextContent","userName","showExit","timeSpentLabel","playNextContent","exitContent","replayContent"],[1,"sunbird-video-player-container"],["qumlPlayer",""],[3,"playerConfig","playerEvent"]],template:function(i,r){1&i&&(t.TgZ(0,"div",0,1),t.YNc(2,X,1,3,"sb-player-side-menu-icon",2),t.YNc(3,K,1,2,"video-player",3),t.YNc(4,$,1,2,"sb-player-sidebar",4),t.YNc(5,ee,1,7,"sb-player-end-page",5),t.YNc(6,te,1,0,"sb-player-contenterror",6),t.qZA(),t.YNc(7,ie,3,1,"div",7)),2&i&&(t.Q6J("ngClass",r.showQumlPlayer?"videoPlayerHide":"videoPlayerShow"),t.xp6(2),t.Q6J("ngIf","player"===r.viewState),t.xp6(1),t.Q6J("ngIf","player"===r.viewState),t.xp6(1),t.Q6J("ngIf","player"===r.viewState),t.xp6(1),t.Q6J("ngIf","end"===r.viewState),t.xp6(1),t.Q6J("ngIf",r.showContentError),t.xp6(1),t.Q6J("ngIf",r.showQumlPlayer))},directives:[b.mk,b.O5,d.Z2,G,d.bf,d.ye,d.vM,w.RN],styles:[".sunbird-video-player-container[_ngcontent-%COMP%]{width:100%;height:100%;overflow:hidden;position:relative}.videoPlayerHide[_ngcontent-%COMP%]{display:none}.videoPlayerShow[_ngcontent-%COMP%]{display:block}pdf-menu[_ngcontent-%COMP%]{position:absolute;top:0;left:0px;z-index:99}.notVisible[_ngcontent-%COMP%], .BtmNotVisible[_ngcontent-%COMP%]{transition:all 1s ease-in-out;position:absolute;width:100%}.notVisible[_ngcontent-%COMP%]{top:-10rem}.notVisible.isVisible[_ngcontent-%COMP%]{top:0rem}.BtmNotVisible[_ngcontent-%COMP%]{bottom:-10rem}.BtmNotVisible.isVisible[_ngcontent-%COMP%]{bottom:0rem} .sunbird-video-player-container .sb-player-side-menu-icon input[type=checkbox]:checked~#overlay-button span{background:none!important} .sunbird-video-player-container .sb-player-side-menu-icon input[type=checkbox]:checked~#overlay-button span:after, .sunbird-video-player-container .sb-player-side-menu-icon input[type=checkbox]:checked~#overlay-button span:before, .sunbird-video-player-container .sb-player-side-menu-icon input[type=checkbox]:checked~#overlay-button:hover span:before, .sunbird-video-player-container .sb-player-side-menu-icon input[type=checkbox]:checked~#overlay-button:hover span:after{background-color:#ffffffb3!important} .sunbird-video-player-container .sb-player-side-menu-icon label{background:rgba(51,51,51,.5)} .sunbird-video-player-container .sb-player-side-menu-icon label span, .sunbird-video-player-container .sb-player-side-menu-icon label span:before, .sunbird-video-player-container .sb-player-side-menu-icon label span:after{background-color:#ffffffb3!important} .sunbird-pdf-player{overflow:hidden} .pdfViewer .page{background:none!important;-o-border-image:none!important;border-image:none!important;border:0!important} #toolbarContainer{background:none!important;height:auto!important} #viewerContainer{position:relative!important;height:calc(100% - 3rem)} .html, .body, .pdf-viewer button, .pdf-viewer input, .pdf-viewer select{font-size:inherit!important} .findbar, .secondaryToolbar, html[dir=ltr] #toolbarContainer, html[dir=rtl] #toolbarContainer{box-shadow:none!important} .zoom{min-height:inherit!important} html[dir=rtl] .sb-pdf-reading-status{left:auto;right:1rem}.sb-pdf-reading-status[_ngcontent-%COMP%]{color:var(--gray-800);font-size:.75rem;position:absolute;left:1rem;bottom:1rem;display:flex;align-items:center;background:var(--white);border-radius:.5rem;padding:.25em .5rem;z-index:5;line-height:normal}.sb-pdf-reading-status[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{background:var(--gray-800);width:.25rem;height:.25rem;display:block;margin:0 .5rem;border-radius:50%}.sbt-pdf-footer[_ngcontent-%COMP%]{background:var(--white);position:absolute;bottom:0px;width:100%;height:3rem;display:flex;align-items:center;justify-content:flex-end;padding:.75rem .5rem}@media all and (orientation: landscape){ .visible-only-potrait{display:none}}@media all and (orientation: portrait){ #viewerContainer{height:calc(100% - 6rem)!important} .visible-only-landscape{display:none} .visible-only-potrait{display:block} .file-download__popup{height:15.125rem} .pdf-endpage{display:block!important;position:relative} .pdf-endpage__left-panel{margin-top:6rem} .pdf-endpage__right-panel .title-section{position:absolute;top:0;left:0;right:0}}@media all and (max-width: 640px){.visible-only-landscape[_ngcontent-%COMP%]{display:none}.visible-only-potrait[_ngcontent-%COMP%]{display:block}}@media all and (min-width: 640px){.visible-only-landscape[_ngcontent-%COMP%]{display:block}.visible-only-potrait[_ngcontent-%COMP%]{display:none}}"]}),n}(),N=l(2720),ne=l(5871),ae=l(5816),oe=function(){function n(e,i){this.document=e,this.http=i,this.listUrl=e.defaultView.questionListUrl,this.questionSetBaseUrl=e.defaultView.questionSetBaseUrl}return n.prototype.getQuestionSet=function(e){if(this.questionSetBaseUrl){var i=this.http.get(this.questionSetBaseUrl+"/v1/hierarchy/"+e),r=this.http.get(this.questionSetBaseUrl+"/v1/read/"+e+"?fields=instructions");return(0,N.D)([i,r]).pipe((0,S.U)(function(a){return{qs:a[0].result.questionSet}}))}},n.prototype.getAllQuestionSet=function(e){var i=this,r=e.map(function(a){return i.http.get(i.questionSetBaseUrl+"/v1/hierarchy/"+a+"?fields=maxScore")});return(0,N.D)(r).pipe((0,S.U)(function(a){return a.map(function(o){return o.result.questionSet.maxScore})}))},n.prototype.getQuestions=function(e){if(this.listUrl){var i={url:this.listUrl,data:{request:{search:{identifier:e}}}};return this.post(i).pipe((0,S.U)(function(r){return r.result}))}},n.prototype.getQuestion=function(e){if(this.listUrl){var i={url:this.listUrl,data:{request:{search:{identifier:[e]}}}};return this.post(i).pipe((0,S.U)(function(r){return r.result}))}},n.prototype.post=function(e){return this.http.post(e.url,e.data,{headers:{"Content-Type":"application/json"}}).pipe((0,ae.zg)(function(r){return"OK"!==r.responseCode?(0,ne._)(r):(0,D.of)(r)}))},n.\u0275fac=function(i){return new(i||n)(t.LFG(b.K0),t.LFG(P.eN))},n.\u0275prov=t.Yz7({token:n,factory:n.\u0275fac}),n}(),se=function(){function n(e){this.injector=e}return n.prototype.ngDoBootstrap=function(){var e=(0,O.iD)(re,{injector:this.injector});customElements.define("sunbird-video-player",e)},n.\u0275fac=function(i){return new(i||n)(t.LFG(t.zs3))},n.\u0275mod=t.oAB({type:n}),n.\u0275inj=t.cJS({providers:[L.T_,{provide:w.wX,useClass:oe}],imports:[[g.b2,b.ez,I.u5,P.JF,L.gQ,w.e3]]}),n}();l(3887);g.q6().bootstrapModule(se).catch(function(n){return console.error(n)})},1893:function(m){function y(l){return Promise.resolve().then(function(){var g=new Error("Cannot find module '"+l+"'");throw g.code="MODULE_NOT_FOUND",g})}y.keys=function(){return[]},y.resolve=y,y.id=1893,m.exports=y},5893:function(){}},function(m){m.O(0,["vendor"],function(){return g=6272,m(m.s=g);var g});m.O()}]); -//# sourceMappingURL=main.js.map \ No newline at end of file +(self.webpackChunkvideo_player_wc=self.webpackChunkvideo_player_wc||[]).push([["main"],{3142:(E,D,o)=>{"use strict";var x=o(4497),t=o(8008),v=o(4666),M=o(9239),B=o(7184),F=o(2508),N=o(6863),T=o(1627),p=o(7387),g=o(4607),h=o(4635);class y{uniqueId(e=32){let i="";const r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=r.length;for(let s=0;s{if(!U.Z(this.transcripts,{language:i.language,artifactUrl:i.artifactUrl,languageCode:i.languageCode,identifier:i.identifier}))return this.raiseExceptionLog("TRANSCRIPT_DATA_MISSING","TRANSCRIPT",new Error("Transcript object dose not have required fields"),this.traceId),[];!g.Z(e)&&"off"!==P.Z(e)&&P.Z(e)===i.languageCode&&(i.default=!0)}),this.transcripts):(this.raiseExceptionLog("INVALID_TRANSCRIPT_DATATYPE","TRANSCRIPT",new Error("Transcript data should be array"),this.traceId),[])}getPlayerOptions(){var e=this;return(0,O.Z)(function*(){return e.streamingUrl&&(yield e.http.head(e.streamingUrl,{responseType:"blob"}).toPromise().catch(r=>{e.raiseExceptionLog(p.uY.streamingUrlSupport,p.N3.streamingUrlSupport,new Error(`Streaming Url Not Supported ${e.streamingUrl}`),e.traceId)}))?[{src:e.streamingUrl,type:e.mimeType}]:[{src:e.artifactUrl,type:e.artifactMimeType}]})()}getMarkers(){if(this?.interceptionPoints?.items)try{const e=this.interceptionPoints;return this.showScore=!0,e.items.map(({interceptionPoint:i,identifier:r,type:n})=>({time:i,type:n,identifier:r,duration:3}))}catch(e){console.log(e),this.raiseExceptionLog("CPV2_CONT_INTERCEPTION_PARSE","error parsing the inteception points string",e,""),this.showScore=!1}return null}getQuestionSet(e){const i=this.contentMap[e];return i?(0,A.of)(i):this.questionCursor?this.questionCursor.getQuestionSet(e).pipe((0,_.U)(r=>(this.contentMap[e]=r.questionSet,this.contentMap[e]))):null}preFetchContent(){const e=this.getNextMarker();if(e){e.identifier;this.getQuestionSet(e.identifier)}}getUniqueVisitedLength(){const e=[];for(let i of this.playerTimeSlots)if(i[0]r.time>e):null}raiseStartEvent(e){const i=(new Date).getTime()-this.PlayerLoadStartedAt,r={eid:"START",ver:this.version,edata:{type:"START",mode:"play",duration:i},metaData:this.metaData};this.playerEvent.emit(r),this.videoPlayerService.start(i),this.PlayerLoadStartedAt=(new Date).getTime()}calculateScore(){this.scoreObtained=Object.values(this.interceptionResponses).reduce((e,i)=>e+i.score,0)}raiseEndEvent(e=!1){if(!this.isEndEventRaised){this.calculateScore();const i=(new Date).getTime()-this.PlayerLoadStartedAt,r={eid:"END",ver:this.version,edata:{type:"END",currentTime:this.currentlength,totalTime:this.totalLength,duration:i},metaData:this.metaData};this.playerEvent.emit(r),e&&this.playerTimeSlots.push([this.playBitStartTime,this.currentlength]),this.uniqueVisitedLength=this.getUniqueVisitedLength(),this.uniqueVisitedLength>this.totalLength&&(this.uniqueVisitedLength=this.totalLength),this.visitedLength=this.getVisitedLength(),this.timeSpent=this.utilService.getTimeSpentText(this.visitedLength),this.videoPlayerService.end(i,this.totalLength,this.currentlength,this.endPageSeen,this.totalSeekedLength,this.visitedLength,this.scoreObtained,this.uniqueVisitedLength),this.isEndEventRaised=!0}}raiseHeartBeatEvent(e,i){"REPLAY"===e&&(this.interceptionResponses={},this.showScore=!1,this.scoreObtained=0,this.playerTimeSlots=[],this.playBitEndTime=0,this.playBitStartTime=0);const r={eid:"HEARTBEAT",ver:this.version,edata:{type:e,currentPage:"videostage",extra:i},metaData:this.metaData};this.playerEvent.emit(r),this.videoPlayerService.heartBeat(r),["PLAY","PAUSE","EXIT","VOLUME_CHANGE","DRAG","RATE_CHANGE","CLOSE_DOWNLOAD","DOWNLOAD","NAVIGATE_TO_PAGE","NEXT","OPEN_MENU","PREVIOUS","CLOSE_MENU","DOWNLOAD_MENU","DOWNLOAD_POPUP_CLOSE","DOWNLOAD_POPUP_CANCEL","SHARE","REPLAY","FORWARD","BACKWARD","FULLSCREEN","NEXT_CONTENT_PLAY","TRANSCRIPT_LANGUAGE_OFF","TRANSCRIPT_LANGUAGE_SELECTED","VIDEO_MARKER_SELECTED"].includes(e)&&this.videoPlayerService.interact(e.toLowerCase(),"videostage",i)}raiseImpressionEvent(e,i={}){this.videoPlayerService.impression(e,i)}raiseExceptionLog(e,i,r,n){const s={eid:"ERROR",edata:{err:e,errtype:i,requestid:n||"",stacktrace:r&&r.toString()||""}};this.playerEvent.emit(s),this.videoPlayerService.error(e,i,r)}}f.\u0275fac=function(e){return new(e||f)(t.LFG(m),t.LFG(y),t.LFG(M.eN),t.LFG(T.wX,8))},f.\u0275prov=t.Yz7({token:f,factory:f.\u0275fac,providedIn:"root"});var d=o(4894),V=o(7900),Z=(o(1256),o(5321));const Q=["target"],H=["controlDiv"];function G(a,e){if(1&a&&t._UZ(0,"track",6),2&a){const i=e.$implicit;t.s9C("default",i.default),t.s9C("src",i.artifactUrl,t.LSH),t.s9C("srclang",i.languageCode),t.s9C("label",i.language)}}function q(a,e){if(1&a){const i=t.EpF();t.TgZ(0,"span",18),t.NdJ("click",function(){t.CHM(i);const n=t.oxw(2);return t.KtG(n.pause())}),t.O4$(),t.TgZ(1,"svg",19)(2,"g",20),t._UZ(3,"path",21),t.qZA()()()}}function Y(a,e){if(1&a){const i=t.EpF();t.TgZ(0,"span",22),t.NdJ("click",function(){t.CHM(i);const n=t.oxw(2);return t.KtG(n.play())}),t.O4$(),t.TgZ(1,"svg",19)(2,"g",23),t._UZ(3,"path",24),t.qZA()()()}}function J(a,e){if(1&a){const i=t.EpF();t.TgZ(0,"div",7)(1,"div",8),t.NdJ("click",function(){t.CHM(i);const n=t.oxw();return t.KtG(n.backward())}),t.O4$(),t.TgZ(2,"svg",9)(3,"g",10),t._UZ(4,"path",11),t.qZA()()(),t.kcU(),t.TgZ(5,"div",12),t.YNc(6,q,4,0,"span",13),t.YNc(7,Y,4,0,"span",14),t.qZA(),t.TgZ(8,"div",15),t.NdJ("click",function(){t.CHM(i);const n=t.oxw();return t.KtG(n.forward())}),t.O4$(),t.TgZ(9,"svg",9)(10,"g",16),t._UZ(11,"path",17),t.qZA()()()()}if(2&a){const i=t.oxw();t.xp6(1),t.Udp("visibility",i.showBackwardButton?"visible":"hidden"),t.xp6(5),t.Q6J("ngIf",i.showPauseButton),t.xp6(1),t.Q6J("ngIf",i.showPlayButton),t.xp6(1),t.Udp("visibility",i.showForwardButton?"visible":"hidden")}}const z=function(a){return{"player-for-back-ward-controls":a}};class k{constructor(e,i,r,n,s){this.viewerService=e,this.renderer2=i,this.questionCursor=r,this.http=n,this.cdr=s,this.questionSetData=new t.vpe,this.playerInstance=new t.vpe,this.transcripts=[],this.showBackwardButton=!1,this.showForwardButton=!1,this.showPlayButton=!0,this.showPauseButton=!1,this.showControls=!0,this.currentPlayerState="none",this.totalSeekedLength=0,this.previousTime=0,this.currentTime=0,this.seekStart=null,this.time=10,this.totalSpentTime=0,this.isAutoplayPrevented=!1,this.setMetaDataConfig=!1,this.totalDuration=0}ngOnInit(){this.transcripts=this.viewerService.handleTranscriptsData(d.Z(this.config,"transcripts")||[])}ngAfterViewInit(){var e=this;this.viewerService.getPlayerOptions().then(function(){var i=(0,O.Z)(function*(r){e.player=yield videojs(e.target.nativeElement,{fluid:!0,responsive:!0,sources:r,autoplay:!0,muted:d.Z(e.config,"muted"),playbackRates:[.5,1,1.5,2],controlBar:{children:["playToggle","volumePanel","durationDisplay","progressControl","remainingTimeDisplay","CaptionsButton","playbackRateMenuButton","fullscreenToggle"]},plugins:{httpSourceSelector:{default:"low"}},html5:{hls:{overrideNative:!0},nativeAudioTracks:!1,nativeVideoTracks:!1}}),e.player.videojshttpsourceselector=Z.Z,e.player.videojshttpsourceselector();const n=e.viewerService.getMarkers();if(n&&n.length>0){const s=n.map(l=>l.identifier);e.viewerService.questionCursor&&e.viewerService.questionCursor.getAllQuestionSet(s).subscribe(l=>{g.Z(l)||(e.viewerService.maxScore=l.reduce((u,c)=>u+c,0))})}n&&(e.player.markers({markers:n,markerStyle:{height:"7px",bottom:"39%","background-color":"orange"},onMarkerReached:s=>{if(s){const{time:l,text:u,identifier:c,duration:b}=s;e.player.currentTime()>l+b||(setTimeout(()=>{e.pause(),e.player.controls(!1)},1e3),e.viewerService.getQuestionSet(c).subscribe(C=>{e.questionSetData.emit({response:C,time:l,identifier:c})},C=>{e.play(),e.player.controls(!0),console.log(C)}))}}}),e.playerInstance.emit(e.player),e.viewerService.playerInstance=e.player,e.viewerService.preFetchContent()),e.registerEvents()});return function(r){return i.apply(this,arguments)}}()),setInterval(()=>{!this.isAutoplayPrevented&&"pause"!==this.currentPlayerState&&(this.showControls=!1)},5e3),this.unlistenTargetMouseMove=this.renderer2.listen(this.target.nativeElement,"mousemove",()=>{this.showControls=!0}),this.unlistenTargetTouchStart=this.renderer2.listen(this.target.nativeElement,"touchstart",()=>{this.showControls=!0}),this.viewerService.sidebarMenuEvent.subscribe(i=>{"OPEN_MENU"===i&&this.pause(),"CLOSE_MENU"===i&&this.play()})}ngOnChanges(e){if(e.action&&this.player&&e.action.currentValue!==e.action.previousValue)switch(e.action.currentValue.name){case"play":this.play();break;case"pause":this.pause();break;default:console.warn("Invalid Case!")}}onLoadMetadata(e){this.totalDuration=this.viewerService.metaData.totalDuration=this.player.duration(),this.viewerService.totalLength=this.totalDuration,this.transcripts&&this.transcripts.length&&this.player.transcript&&this.player.transcript({showTitle:!0,showTrackSelector:!0})}registerEvents(){const e=this.player.play();void 0!==e&&e.catch(r=>{this.isAutoplayPrevented=!0});this.player.on("fullscreenchange",r=>{this.player.isFullscreen()&&this.target.nativeElement.parentNode.appendChild(this.controlDiv.nativeElement),this.viewerService.raiseHeartBeatEvent("FULLSCREEN")}),this.player.on("pause",r=>{this.pause()}),this.player.on("ratechange",r=>{this.viewerService.metaData.playBackSpeeds.push(this.player.playbackRate())}),this.player.on("volumechange",r=>{this.viewerService.metaData.volume.push(this.player.volume()),this.viewerService.metaData.muted=this.player.muted()}),this.player.on("play",r=>{this.currentPlayerState="play",this.showPauseButton=!0,this.showPlayButton=!1,this.viewerService.raiseHeartBeatEvent("PLAY"),this.isAutoplayPrevented=!1}),this.player.on("timeupdate",r=>{this.viewerService.metaData.currentDuration=this.player.currentTime(),this.handleVideoControls(r),this.viewerService.playerEvent.emit(r),this.viewerService.currentlength=this.viewerService.metaData.currentDuration,this.totalSpentTime+=(new Date).getTime()-this.startTime,this.startTime=(new Date).getTime(),Math.floor(this.totalDuration-this.player.currentTime())<=0&&(this.viewerService.metaData.currentDuration=0,this.handleVideoControls({type:"ended"}),this.viewerService.playerEvent.emit({type:"ended"}))}),this.player.on("subtitleChanged",(r,n)=>{this.handleEventsForTranscripts(n)}),this.player.on("durationchange",r=>{0===this.totalDuration&&(this.totalDuration=this.viewerService.metaData.totalDuration=this.player.duration(),this.viewerService.playerEvent.emit({...r,duration:this.totalDuration}))}),["loadstart","play","pause","error","playing","progress","seeked","seeking","volumechange","ratechange"].forEach(r=>{this.player.on(r,n=>{this.handleVideoControls(n),this.viewerService.playerEvent.emit(n)})}),this.trackTranscriptEvent()}trackTranscriptEvent(){let e;const i=this.player;this.player.textTracks().on("change",function(n){clearTimeout(e);let s={};this.tracks_.filter(l=>{if(("captions"===l.kind||"subtitles"===l.kind)&&"showing"===l.mode)return s={artifactUrl:l.src,languageCode:l.language},!0}),e=setTimeout(()=>{i.trigger("subtitleChanged",s)},10)})}handleEventsForTranscripts(e){let i;g.Z(e)?(i={type:"TRANSCRIPT_LANGUAGE_OFF",extraValues:{videoTimeStamp:this.player.currentTime()}},this.viewerService.metaData.transcripts.push("off")):(i={type:"TRANSCRIPT_LANGUAGE_SELECTED",extraValues:{transcript:{language:d.Z(V.Z(this.transcripts,{artifactUrl:e.artifactUrl,languageCode:e.languageCode})[0],"language")},videoTimeStamp:this.player.currentTime()}},P.Z(this.viewerService.metaData.transcripts)!==e.languageCode&&this.viewerService.metaData.transcripts.push(e.languageCode)),this.viewerService.raiseHeartBeatEvent(i.type,i.extraValues)}toggleForwardRewindButton(){this.showForwardButton=!0,this.showBackwardButton=!0,this.cdr.detectChanges(),this.player.currentTime()+this.time>this.totalDuration&&(this.showForwardButton=!1,this.cdr.detectChanges()),this.player.currentTime()-this.time<0&&(this.showBackwardButton=!1,this.cdr.detectChanges())}play(){this.player&&this.player.play(),this.currentPlayerState="play",this.showPauseButton=!0,this.showPlayButton=!1,this.toggleForwardRewindButton()}pause(){this.player&&this.player.pause(),this.currentPlayerState="pause",this.showPauseButton=!1,this.showPlayButton=!0,this.toggleForwardRewindButton(),this.viewerService.raiseHeartBeatEvent("PAUSE")}backward(){this.player&&this.player.currentTime(this.player.currentTime()-this.time),this.toggleForwardRewindButton(),this.viewerService.raiseHeartBeatEvent("BACKWARD")}forward(){this.player&&this.player.currentTime(this.player.currentTime()+this.time),this.toggleForwardRewindButton(),this.viewerService.raiseHeartBeatEvent("FORWARD")}handleVideoControls({type:e}){"playing"===e&&(this.showPlayButton=!1,this.showPauseButton=!0,this.setMetaDataConfig&&(this.setMetaDataConfig=!1,this.setPreMetaDataConfig())),"ended"===e&&(this.totalSpentTime+=(new Date).getTime()-this.startTime,this.player&&(this.viewerService.currentlength=this.player.currentTime()),this.viewerService.totalLength=this.totalDuration,this.updatePlayerEventsMetadata({type:e}),this.viewerService.playBitEndTime=this.totalDuration,this.viewerService.playerTimeSlots.push([this.viewerService.playBitStartTime,this.viewerService.playBitEndTime])),"pause"===e&&(this.totalSpentTime+=(new Date).getTime()-this.startTime,this.updatePlayerEventsMetadata({type:e}),this.viewerService.playBitEndTime=this.previousTime,this.viewerService.playerTimeSlots.push([this.viewerService.playBitStartTime,this.viewerService.playBitEndTime])),"play"===e&&(this.startTime=(new Date).getTime(),this.player?.currentTime()&&(this.viewerService.playBitStartTime=this.player?.currentTime()),this.updatePlayerEventsMetadata({type:e})),"loadstart"===e&&(this.startTime=(new Date).getTime(),this.setMetaDataConfig=!0),"timeupdate"===e&&(this.previousTime=this.currentTime,this.player&&(this.currentTime=this.player.currentTime()),this.toggleForwardRewindButton()),"seeking"===e&&null===this.seekStart&&(this.seekStart=this.previousTime),"seeked"===e&&(this.updatePlayerEventsMetadata({type:e}),this.currentTime>this.seekStart?this.totalSeekedLength=this.totalSeekedLength+(this.currentTime-this.seekStart):this.seekStart>this.currentTime&&(this.totalSeekedLength=this.totalSeekedLength+(this.seekStart-this.currentTime)),this.viewerService.totalSeekedLength=this.totalSeekedLength,this.seekStart=null,this.player.markers&&this.player.markers.getMarkers&&this.player.markers.getMarkers().forEach(r=>{!this.viewerService.interceptionResponses[r.time]&&r.time0?"/"+i.viewerService.maxScore:""):"")("nextContent",i.nextContent)("userName",i.viewerService.userName)("showExit",i.sideMenuConfig.showExit)("timeSpentLabel",i.viewerService.timeSpent)}}function ie(a,e){1&a&&t._UZ(0,"sb-player-contenterror")}function re(a,e){if(1&a){const i=t.EpF();t.TgZ(0,"div",12,13)(2,"quml-main-player",14),t.NdJ("playerEvent",function(n){t.CHM(i);const s=t.oxw();return t.KtG(s.qumlPlayerEvents(n))}),t.qZA()()}if(2&a){const i=t.oxw();t.xp6(2),t.Q6J("playerConfig",i.QumlPlayerConfig)}}class L{constructor(e,i,r,n,s){this.videoPlayerService=e,this.viewerService=i,this.cdr=r,this.renderer2=n,this.errorService=s,this.telemetryEvent=new t.vpe,this.viewState="player",this.showControls=!0,this.sideMenuConfig={showShare:!0,showDownload:!0,showReplay:!0,showExit:!0},this.isPaused=!1,this.showQumlPlayer=!1,this.QumlPlayerConfig={},this.isFullScreen=!1,this.isInitialized=!1,this.raiseInternetDisconnectionError=()=>{const l=p.uY.internetConnectivity,u=p.N3.internetConnectivity,c=`${l}: ${u}`;this.viewerService.raiseExceptionLog(l,u,c,this.traceId)},this.playerEvent=this.viewerService.playerEvent,this.viewerService.playerEvent.subscribe(l=>{if("pause"===l.type&&(this.isPaused=!0,this.showControls=!0),"play"===l.type&&(this.isPaused=!1),"loadstart"===l.type&&this.viewerService.raiseStartEvent(l),"ended"===l.type&&(this.viewerService.endPageSeen=!0,this.viewerService.raiseEndEvent(),this.viewState="end",this.cdr.detectChanges()),"error"===l.type){let c=p.uY.contentLoadFails,b=p.N3.contentLoadFails;this.viewerService.isAvailableLocally&&(c=p.uY.contentLoadFails,b=p.N3.contentLoadFails),c===p.uY.contentLoadFails&&(this.showContentError=!0),this.viewerService.raiseExceptionLog(c,b,l,this.traceId)}[{type:"volumechange",telemetryEvent:"VOLUME_CHANGE"},{type:"seeking",telemetryEvent:"DRAG"},{type:"fullscreen",telemetryEvent:"FULLSCREEN"},{type:"ratechange",telemetryEvent:"RATE_CHANGE"}].forEach(c=>{l.type===c.type&&this.viewerService.raiseHeartBeatEvent(c.telemetryEvent)})})}onTelemetryEvent(e){this.telemetryEvent.emit(e.detail)}ngOnInit(){if(this.isInitialized=!0,this.playerConfig&&"string"==typeof this.playerConfig)try{this.playerConfig=JSON.parse(this.playerConfig)}catch(e){console.error("Invalid playerConfig: ",e)}setInterval(()=>{this.isPaused||(this.showControls=!1)},5e3),this.nextContent=this.playerConfig?.config?.nextContent,this.traceId=this.playerConfig.config.traceId,this.sideMenuConfig={...this.sideMenuConfig,...this.playerConfig.config.sideMenu},this.videoPlayerService.initialize(this.playerConfig),this.viewerService.initialize(this.playerConfig),window.addEventListener("offline",this.raiseInternetDisconnectionError,!0),this.QumlPlayerConfig.config=this.playerConfig.config,this.QumlPlayerConfig.config.sideMenu.enable=!1,this.QumlPlayerConfig.context=this.playerConfig.context,this.setTelemetryObjectRollup(this.playerConfig.metadata.identifier)}ngOnChanges(e){e.action&&(this.showQumlPlayer||(this.playerAction=this.action)),e?.playerConfig?.firstChange&&this.isInitialized&&this.ngOnInit()}ngAfterViewInit(){const e=this.videoPlayerRef.nativeElement;this.unlistenMouseMove=this.renderer2.listen(e,"mousemove",()=>{this.showControls=!0}),this.unlistenTouchStart=this.renderer2.listen(e,"touchstart",()=>{this.showControls=!0});const i=this.playerConfig.metadata.compatibilityLevel;if(i){const r=this.errorService.checkContentCompatibility(i);r.isCompitable||this.viewerService.raiseExceptionLog(p.uY.contentCompatibility,p.N3.contentCompatibility,r.error.message,this.traceId)}}sideBarEvents(e){this.playerEvent.emit(e),"DOWNLOAD"===e.type&&this.downloadVideo(),["SHARE","DOWNLOAD_MENU","EXIT","CLOSE_MENU","OPEN_MENU","DOWNLOAD_POPUP_CANCEL","DOWNLOAD_POPUP_CLOSE"].forEach(r=>{e.type===r&&this.viewerService.raiseHeartBeatEvent(r),"EXIT"===e.type&&this.viewerService.sidebarMenuEvent.emit("CLOSE_MENU")})}setTelemetryObjectRollup(e){if(this.QumlPlayerConfig.context){this.QumlPlayerConfig&&this.QumlPlayerConfig.context&&this.QumlPlayerConfig.context.objectRollup||(this.QumlPlayerConfig.context.objectRollup={});const r=Object.keys(this.QumlPlayerConfig.context.objectRollup);this.QumlPlayerConfig.context.objectRollup[`l${r.length+1}`]=e}}playContent(e){this.viewerService.raiseHeartBeatEvent(e.type)}replayContent(e){this.playerEvent.emit(e),this.viewState="player",this.viewerService.isEndEventRaised=!1,this.viewerService.raiseHeartBeatEvent("REPLAY"),this.cdr.detectChanges()}exitContent(e){this.playerEvent.emit(e),this.viewerService.raiseHeartBeatEvent("EXIT")}downloadVideo(){const e=document.createElement("a");e.href=this.viewerService.artifactUrl,e.download=this.viewerService.contentName,e.target="_blank",document.body.appendChild(e),e.click(),e.remove(),this.viewerService.raiseHeartBeatEvent("DOWNLOAD")}qumlPlayerEvents(e){if("QUML_SUMMARY"===e.eid){this.showQumlPlayer=!1;const i=parseInt(e.edata.extra.find(n=>"score"===n.id).value,10);this.viewerService.interceptionResponses[this.currentInterceptionTime]={score:i,isSkipped:!1};const r=document.querySelector(`[data-marker-time="${this.currentInterceptionTime}"]`);r&&(r.style.background="green"),this.videoInstance.play(),this.videoInstance.controls(!0),this.viewerService.raiseImpressionEvent("video"),!document.fullscreenElement&&this.isFullScreen&&document.getElementsByClassName("video-js")[0]&&document.getElementsByClassName("video-js")[0].requestFullscreen().catch(n=>console.error(n))}}questionSetData({response:e,time:i,identifier:r}){this.QumlPlayerConfig.metadata=e,this.QumlPlayerConfig.metadata.showStartPage="No",this.QumlPlayerConfig.metadata.showEndPage="No",this.currentInterceptionTime=i,this.currentInterceptionUIId=r,document.fullscreenElement?(this.isFullScreen=!0,document.exitFullscreen().catch(n=>console.error(n))):this.isFullScreen=!1,this.showQumlPlayer=!0,this.viewerService.raiseImpressionEvent("interactive-question-set",{id:r,type:"QuestionSet"}),this.viewerService.raiseHeartBeatEvent("VIDEO_MARKER_SELECTED",{identifier:r,type:"QuestionSet",interceptedAt:i})}playerInstance(e){this.videoInstance=e}ngOnDestroy(){this.viewerService.raiseEndEvent(!0),this.unlistenTouchStart(),this.unlistenMouseMove(),this.viewerService.isEndEventRaised=!1,window.removeEventListener("offline",this.raiseInternetDisconnectionError,!0)}}L.\u0275fac=function(e){return new(e||L)(t.Y36(m),t.Y36(f),t.Y36(t.sBO),t.Y36(t.Qsj),t.Y36(p.T_))},L.\u0275cmp=t.Xpm({type:L,selectors:[["sunbird-video-player"]],viewQuery:function(e,i){if(1&e&&t.Gf(K,7),2&e){let r;t.iGM(r=t.CRH())&&(i.videoPlayerRef=r.first)}},hostBindings:function(e,i){1&e&&t.NdJ("TelemetryEvent",function(n){return i.onTelemetryEvent(n)},!1,t.evT)("beforeunload",function(){return i.ngOnDestroy()},!1,t.Jf7)},inputs:{playerConfig:"playerConfig",action:"action"},outputs:{playerEvent:"playerEvent",telemetryEvent:"telemetryEvent"},features:[t.TTD],decls:8,vars:7,consts:[[1,"sunbird-video-player-container",3,"ngClass"],["videoPlayer",""],["class","sb-player-side-menu-icon notVisible","tabindex","0",3,"ngClass","sidebarMenuEvent",4,"ngIf"],[3,"config","action","questionSetData","playerInstance",4,"ngIf"],[3,"title","config","sidebarEvent",4,"ngIf"],["tabindex","0",3,"contentName","outcomeLabel","outcome","nextContent","userName","showExit","timeSpentLabel","playNextContent","exitContent","replayContent",4,"ngIf"],[4,"ngIf"],["class","sunbird-video-player-container",4,"ngIf"],["tabindex","0",1,"sb-player-side-menu-icon","notVisible",3,"ngClass","sidebarMenuEvent"],[3,"config","action","questionSetData","playerInstance"],[3,"title","config","sidebarEvent"],["tabindex","0",3,"contentName","outcomeLabel","outcome","nextContent","userName","showExit","timeSpentLabel","playNextContent","exitContent","replayContent"],[1,"sunbird-video-player-container"],["qumlPlayer",""],[3,"playerConfig","playerEvent"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0,1),t.YNc(2,W,1,3,"sb-player-side-menu-icon",2),t.YNc(3,X,1,2,"video-player",3),t.YNc(4,ee,1,2,"sb-player-sidebar",4),t.YNc(5,te,1,7,"sb-player-end-page",5),t.YNc(6,ie,1,0,"sb-player-contenterror",6),t.qZA(),t.YNc(7,re,3,1,"div",7)),2&e&&(t.Q6J("ngClass",i.showQumlPlayer?"videoPlayerHide":"videoPlayerShow"),t.xp6(2),t.Q6J("ngIf","player"===i.viewState),t.xp6(1),t.Q6J("ngIf","player"===i.viewState),t.xp6(1),t.Q6J("ngIf","player"===i.viewState),t.xp6(1),t.Q6J("ngIf","end"===i.viewState),t.xp6(1),t.Q6J("ngIf",i.showContentError),t.xp6(1),t.Q6J("ngIf",i.showQumlPlayer))},dependencies:[v.mk,v.O5,p.ye,p.bf,p.Z2,p.vM,T.RN,k],styles:[".sunbird-video-player-container[_ngcontent-%COMP%]{width:100%;height:100%;overflow:hidden;position:relative}.videoPlayerHide[_ngcontent-%COMP%]{display:none}.videoPlayerShow[_ngcontent-%COMP%]{display:block}pdf-menu[_ngcontent-%COMP%]{position:absolute;top:0;left:0;z-index:99}.notVisible[_ngcontent-%COMP%], .BtmNotVisible[_ngcontent-%COMP%]{transition:all 1s ease-in-out;position:absolute;width:100%}.notVisible[_ngcontent-%COMP%]{top:-10rem}.notVisible.isVisible[_ngcontent-%COMP%]{top:0rem}.BtmNotVisible[_ngcontent-%COMP%]{bottom:-10rem}.BtmNotVisible.isVisible[_ngcontent-%COMP%]{bottom:0rem} .sunbird-video-player-container .sb-player-side-menu-icon input[type=checkbox]:checked~#overlay-button span{background:none!important} .sunbird-video-player-container .sb-player-side-menu-icon input[type=checkbox]:checked~#overlay-button span:after, .sunbird-video-player-container .sb-player-side-menu-icon input[type=checkbox]:checked~#overlay-button span:before, .sunbird-video-player-container .sb-player-side-menu-icon input[type=checkbox]:checked~#overlay-button:hover span:before, .sunbird-video-player-container .sb-player-side-menu-icon input[type=checkbox]:checked~#overlay-button:hover span:after{background-color:#ffffffb3!important} .sunbird-video-player-container .sb-player-side-menu-icon label{background:rgba(51,51,51,.5)} .sunbird-video-player-container .sb-player-side-menu-icon label span, .sunbird-video-player-container .sb-player-side-menu-icon label span:before, .sunbird-video-player-container .sb-player-side-menu-icon label span:after{background-color:#ffffffb3!important} .sunbird-pdf-player{overflow:hidden} .pdfViewer .page{background:none!important;-o-border-image:none!important;border-image:none!important;border:0!important} #toolbarContainer{background:none!important;height:auto!important} #viewerContainer{position:relative!important;height:calc(100% - 3rem)} .html, .body, .pdf-viewer button, .pdf-viewer input, .pdf-viewer select{font-size:inherit!important} .findbar, .secondaryToolbar, html[dir=ltr] #toolbarContainer, html[dir=rtl] #toolbarContainer{box-shadow:none!important} .zoom{min-height:inherit!important} html[dir=rtl] .sb-pdf-reading-status{left:auto;right:1rem}.sb-pdf-reading-status[_ngcontent-%COMP%]{color:var(--gray-800);font-size:.75rem;position:absolute;left:1rem;bottom:1rem;display:flex;align-items:center;background:var(--white);border-radius:.5rem;padding:.25em .5rem;z-index:5;line-height:normal}.sb-pdf-reading-status[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{background:var(--gray-800);width:.25rem;height:.25rem;display:block;margin:0px .5rem;border-radius:50%}.sbt-pdf-footer[_ngcontent-%COMP%]{background:var(--white);position:absolute;bottom:0;width:100%;height:3rem;display:flex;align-items:center;justify-content:flex-end;padding:.75rem .5rem}@media all and (orientation: landscape){ .visible-only-potrait{display:none}}@media all and (orientation: portrait){ #viewerContainer{height:calc(100% - 6rem)!important} .visible-only-landscape{display:none} .visible-only-potrait{display:block} .file-download__popup{height:15.125rem} .pdf-endpage{display:block!important;position:relative} .pdf-endpage__left-panel{margin-top:6rem} .pdf-endpage__right-panel .title-section{position:absolute;top:0;left:0;right:0}}@media all and (max-width: 640px){.visible-only-landscape[_ngcontent-%COMP%]{display:none}.visible-only-potrait[_ngcontent-%COMP%]{display:block}}@media all and (min-width: 640px){.visible-only-landscape[_ngcontent-%COMP%]{display:block}.visible-only-potrait[_ngcontent-%COMP%]{display:none}}"]});var I=o(4350),ne=o(6587),ae=o(522);class S{constructor(e,i){this.document=e,this.http=i,this.listUrl=e.defaultView.questionListUrl,this.questionSetBaseUrl=e.defaultView.questionSetBaseUrl}getQuestionSet(e){if(this.questionSetBaseUrl){const i=this.http.get(`${this.questionSetBaseUrl}/v1/hierarchy/${e}`),r=this.http.get(`${this.questionSetBaseUrl}/v1/read/${e}?fields=instructions`);return(0,I.D)([i,r]).pipe((0,_.U)(n=>({qs:n[0].result.questionSet})))}}getAllQuestionSet(e){const i=e.map(r=>this.http.get(`${this.questionSetBaseUrl}/v1/hierarchy/${r}?fields=maxScore`));return(0,I.D)(i).pipe((0,_.U)(r=>r.map(n=>n.result.questionSet.maxScore)))}getQuestions(e){if(this.listUrl){const i={url:this.listUrl,data:{request:{search:{identifier:e}}}};return this.post(i).pipe((0,_.U)(r=>r.result))}}getQuestion(e){if(this.listUrl){const i={url:this.listUrl,data:{request:{search:{identifier:[e]}}}};return this.post(i).pipe((0,_.U)(r=>r.result))}}post(e){return this.http.post(e.url,e.data,{headers:{"Content-Type":"application/json"}}).pipe((0,ae.zg)(r=>"OK"!==r.responseCode?(0,ne._)(r):(0,A.of)(r)))}}S.\u0275fac=function(e){return new(e||S)(t.LFG(v.K0),t.LFG(M.eN))},S.\u0275prov=t.Yz7({token:S,factory:S.\u0275fac});class w{constructor(e){this.injector=e}ngDoBootstrap(){const e=(0,B.iD)(L,{injector:this.injector});customElements.define("sunbird-video-player",e)}}w.\u0275fac=function(e){return new(e||w)(t.LFG(t.zs3))},w.\u0275mod=t.oAB({type:w}),w.\u0275inj=t.cJS({providers:[N.T_,{provide:T.wX,useClass:S}],imports:[x.b2,v.ez,F.u5,M.JF,N.gQ,T.e3]});o(5649);x.q6().bootstrapModule(w).catch(a=>console.error(a))},5893:()=>{}},E=>{E.O(0,["vendor"],()=>{return x=3142,E(E.s=x);var x});E.O()}]); +//# sourceMappingURL=main.js.map +/*! videojs-markers - v0.5.0 - 2015-08-01 +* Copyright (c) 2015 ; Licensed */ +/*! videojs-markers !*/ +'use strict'; + +(function($, videojs, undefined) { + //default setting + var defaultSetting = { + markerStyle: { + 'width':'7px', + 'border-radius': '30%', + 'background-color': 'red' + }, + markerTip: { + display: true, + text: function(marker) { + return "Break: "+ marker.text; + }, + time: function(marker) { + return marker.time; + } + }, + breakOverlay:{ + display: false, + displayTime: 3, + text: function(marker) { + return "Break overlay: " + marker.overlayText; + }, + style: { + 'width':'100%', + 'height': '20%', + 'background-color': 'rgba(0,0,0,0.7)', + 'color': 'white', + 'font-size': '17px' + } + }, + onMarkerClick: function(marker) {}, + onMarkerReached: function(marker) {}, + markers: [] + }; + + // create a non-colliding random number + function generateUUID() { + var d = new Date().getTime(); + var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { + var r = (d + Math.random()*16)%16 | 0; + d = Math.floor(d/16); + return (c=='x' ? r : (r&0x3|0x8)).toString(16); + }); + return uuid; + }; + + function registerVideoJsMarkersPlugin(options) { + /** + * register the markers plugin (dependent on jquery) + */ + + var setting = $.extend(true, {}, defaultSetting, options), + markersMap = {}, + markersList = [], // list of markers sorted by time + videoWrapper = $(this.el()), + currentMarkerIndex = -1, + player = this, + markerTip = null, + breakOverlay = null, + overlayIndex = -1; + + function sortMarkersList() { + // sort the list by time in asc order + markersList.sort(function(a, b){ + return setting.markerTip.time(a) - setting.markerTip.time(b); + }); + } + + function addMarkers(newMarkers) { + // create the markers + $.each(newMarkers, function(index, marker) { + marker.key = generateUUID(); + + videoWrapper.find('.vjs-progress-control').append( + createMarkerDiv(marker)); + + // store marker in an internal hash map + markersMap[marker.key] = marker; + markersList.push(marker); + }); + + sortMarkersList(); + } + + function getPosition(marker){ + return (setting.markerTip.time(marker) / player.duration()) * 100 + } + + function createMarkerDiv(marker, duration) { + var markerDiv = $("
") + markerDiv.css(setting.markerStyle) + .css({"margin-left" : -parseFloat(markerDiv.css("width"))/2 + 'px', + "left" : getPosition(marker) + '%'}) + .attr("data-marker-key", marker.key) + .attr("data-marker-time", setting.markerTip.time(marker)); + + // add user-defined class to marker + if (marker.class) { + markerDiv.addClass(marker.class); + } + + // bind click event to seek to marker time + markerDiv.on('click', function(e) { + + var preventDefault = false; + if (typeof setting.onMarkerClick === "function") { + // if return false, prevent default behavior + preventDefault = setting.onMarkerClick(marker) == false; + } + + if (!preventDefault) { + var key = $(this).data('marker-key'); + player.currentTime(setting.markerTip.time(markersMap[key])); + } + }); + + if (setting.markerTip.display) { + registerMarkerTipHandler(markerDiv); + } + + return markerDiv; + } + function updateMarkers() { + // update UI for markers whose time changed + + for (var i = 0; i< markersList.length; i++) { + var marker = markersList[i]; + var markerDiv = videoWrapper.find(".vjs-marker[data-marker-key='" + marker.key +"']"); + var markerTime = setting.markerTip.time(marker); + + if (markerDiv.data('marker-time') != markerTime) { + markerDiv.css({"left": getPosition(marker) + '%'}) + .attr("data-marker-time", markerTime); + } + } + sortMarkersList(); + } + + function removeMarkers(indexArray) { + // reset overlay + if (breakOverlay){ + overlayIndex = -1; + breakOverlay.css("visibility", "hidden"); + } + currentMarkerIndex = -1; + + for (var i = 0; i < indexArray.length; i++) { + var index = indexArray[i]; + var marker = markersList[index]; + if (marker) { + // delete from memory + delete markersMap[marker.key]; + markersList[index] = null; + + // delete from dom + videoWrapper.find(".vjs-marker[data-marker-key='" + marker.key +"']").remove(); + } + } + + // clean up array + for (var i = markersList.length - 1; i >=0; i--) { + if (markersList[i] === null) { + markersList.splice(i, 1); + } + } + + // sort again + sortMarkersList(); + } + + + // attach hover event handler + function registerMarkerTipHandler(markerDiv) { + + markerDiv.on('mouseover', function(){ + var marker = markersMap[$(this).data('marker-key')]; + + markerTip.find('.vjs-tip-inner').text(setting.markerTip.text(marker)); + + // margin-left needs to minus the padding length to align correctly with the marker + markerTip.css({"left" : getPosition(marker) + '%', + "margin-left" : -parseFloat(markerTip.css("width"))/2 - 5 + 'px', + "visibility" : "visible"}); + + }).on('mouseout',function(){ + markerTip.css("visibility", "hidden"); + }); + } + + function initializeMarkerTip() { + markerTip = $("
"); + videoWrapper.find('.vjs-progress-control').append(markerTip); + } + + // show or hide break overlays + function updateBreakOverlay(currentTime) { + if(currentMarkerIndex < 0){ + return; + } + + var marker = markersList[currentMarkerIndex]; + var markerTime = setting.markerTip.time(marker); + + if (currentTime >= markerTime && + currentTime <= (markerTime + setting.breakOverlay.displayTime)) { + + if (overlayIndex != currentMarkerIndex){ + overlayIndex = currentMarkerIndex; + breakOverlay.find('.vjs-break-overlay-text').text(setting.breakOverlay.text(marker)); + } + + breakOverlay.css('visibility', "visible"); + + } else { + overlayIndex = -1; + breakOverlay.css("visibility", "hidden"); + } + } + + // problem when the next marker is within the overlay display time from the previous marker + function initializeOverlay() { + breakOverlay = $("
") + .css(setting.breakOverlay.style); + videoWrapper.append(breakOverlay); + overlayIndex = -1; + } + + function onTimeUpdate() { + /* + check marker reached in between markers + the logic here is that it triggers a new marker reached event only if the player + enters a new marker range (e.g. from marker 1 to marker 2). Thus, if player is on marker 1 and user clicked on marker 1 again, no new reached event is triggered) + */ + + var getNextMarkerTime = function(index) { + if (index < markersList.length - 1) { + return setting.markerTip.time(markersList[index + 1]); + } + // next marker time of last marker would be end of video time + return player.duration(); + } + var currentTime = player.currentTime(); + var newMarkerIndex; + + if (currentMarkerIndex != -1) { + // check if staying at same marker + var nextMarkerTime = getNextMarkerTime(currentMarkerIndex); + if(currentTime >= setting.markerTip.time(markersList[currentMarkerIndex]) && + currentTime < nextMarkerTime) { + return; + } + } + + // check first marker, no marker is selected + if (markersList.length > 0 && + currentTime < setting.markerTip.time(markersList[0])) { + newMarkerIndex = -1; + } else { + // look for new index + for (var i = 0; i < markersList.length; i++) { + nextMarkerTime = getNextMarkerTime(i); + + if(currentTime >= setting.markerTip.time(markersList[i]) && + currentTime < nextMarkerTime) { + + newMarkerIndex = i; + break; + } + } + } + + // set new marker index + if (newMarkerIndex != currentMarkerIndex) { + // trigger event + if (newMarkerIndex != -1 && options.onMarkerReached) { + options.onMarkerReached(markersList[newMarkerIndex]); + } + currentMarkerIndex = newMarkerIndex; + } + + // update overlay + if(setting.breakOverlay.display) { + updateBreakOverlay(currentTime); + } + } + + // setup the whole thing + function initialize() { + if (setting.markerTip.display) { + initializeMarkerTip(); + } + + // remove existing markers if already initialized + player.markers.removeAll(); + addMarkers(options.markers); + + if (setting.breakOverlay.display) { + initializeOverlay(); + } + onTimeUpdate(); + player.on("timeupdate", onTimeUpdate); + } + + // setup the plugin after we loaded video's meta data + player.on("loadedmetadata", function() { + initialize(); + }); + + // exposed plugin API + player.markers = { + getMarkers: function() { + return markersList; + }, + next : function() { + // go to the next marker from current timestamp + var currentTime = player.currentTime(); + for (var i = 0; i < markersList.length; i++) { + var markerTime = setting.markerTip.time(markersList[i]); + if (markerTime > currentTime) { + player.currentTime(markerTime); + break; + } + } + }, + prev : function() { + // go to previous marker + var currentTime = player.currentTime(); + for (var i = markersList.length - 1; i >=0 ; i--) { + var markerTime = setting.markerTip.time(markersList[i]); + // add a threshold + if (markerTime + 0.5 < currentTime) { + player.currentTime(markerTime); + break; + } + } + }, + add : function(newMarkers) { + // add new markers given an array of index + addMarkers(newMarkers); + }, + remove: function(indexArray) { + // remove markers given an array of index + removeMarkers(indexArray); + }, + removeAll: function(){ + var indexArray = []; + for (var i = 0; i < markersList.length; i++) { + indexArray.push(i); + } + removeMarkers(indexArray); + }, + updateTime: function(){ + // notify the plugin to update the UI for changes in marker times + updateMarkers(); + }, + reset: function(newMarkers){ + // remove all the existing markers and add new ones + player.markers.removeAll(); + addMarkers(newMarkers); + }, + destroy: function(){ + // unregister the plugins and clean up even handlers + player.markers.removeAll(); + breakOverlay.remove(); + markerTip.remove(); + player.off("timeupdate", updateBreakOverlay); + delete player.markers; + }, + }; + } + + videojs.plugin('markers', registerVideoJsMarkersPlugin); + +})(jQuery, window.videojs); +/*! videojs-transcript - v1.0.0 +* (c) 2015 Matthew Walsh, changes (c) 2020 Tom Byrer; Licensed MIT */ +(function (window, videojs) { + 'use strict'; + // Global settings + var my = {}; + my.settings = {}; + my.prefix = 'transcript'; + my.player = this; + + // Defaults + var defaults = { + autoscroll: true, + clickArea: 'text', + showTitle: true, + showTrackSelector: true, + followPlayerTrack: true, + stopScrollWhenInUse: true, + }; + + /*global my*/ + var utils = (function (plugin) { + return { + secondsToTime: function (timeInSeconds) { + var hour = Math.floor(timeInSeconds / 3600); + var min = Math.floor(timeInSeconds % 3600 / 60); + var sec = Math.floor(timeInSeconds % 60); + sec = (sec < 10) ? '0' + sec : sec; + min = (hour > 0 && min < 10) ? '0' + min : min; + if (hour > 0) { + return hour + ':' + min + ':' + sec; + } + return min + ':' + sec; + }, + localize: function (string) { + return string; // TODO: do something here; + }, + createEl: function (elementName, classSuffix) { + classSuffix = classSuffix || ''; + var el = document.createElement(elementName); + el.className = plugin.prefix + classSuffix; + return el; + }, + extend: function(obj) { + var type = typeof obj; + if (!(type === 'function' || type === 'object' && !!obj)) { + return obj; + } + var source, prop; + for (var i = 1, length = arguments.length; i < length; i++) { + source = arguments[i]; + for (prop in source) { + obj[prop] = source[prop]; + } + } + return obj; + } + }; + }(my)); + + var eventEmitter = { + handlers_: [], + on: function on (object, eventtype, callback) { + if (typeof callback === 'function') { + this.handlers_.push([object, eventtype, callback]); + } else { + throw new TypeError('Callback is not a function.'); + } + }, + trigger: function trigger (object, eventtype) { + this.handlers_.forEach( function(h) { + if (h[0] === object && + h[1] === eventtype) { + h[2].apply(); + } + }); + } + }; + + var scrollerProto = function(plugin) { + + var initHandlers = function (el) { + var self = this; + // The scroll event. We want to keep track of when the user is scrolling the transcript. + el.addEventListener('scroll', function () { + if (self.isAutoScrolling) { + + // If isAutoScrolling was set to true, we can set it to false and then ignore this event. + // It wasn't the user. + self.isAutoScrolling = false; // event handled + } else { + + // We only care about when the user scrolls. Set userIsScrolling to true and add a nice class. + self.userIsScrolling = true; + el.classList.add('is-inuse'); + } + }); + + // The mouseover event. + el.addEventListener('mouseenter', function () { + self.mouseIsOverTranscript = true; + }); + el.addEventListener('mouseleave', function () { + self.mouseIsOverTranscript = false; + + // Have a small delay before deciding user as done interacting. + setTimeout(function () { + + // Make sure the user didn't move the pointer back in. + if (!self.mouseIsOverTranscript) { + self.userIsScrolling = false; + el.classList.remove('is-inuse'); + } + }, 1000); + }); + }; + + // Init instance variables + var init = function (element, plugin) { + this.element = element; + this.userIsScrolling = false; + + //default to true in case user isn't using a mouse; + this.mouseIsOverTranscript = true; + this.isAutoScrolling = true; + initHandlers.call(this, this.element); + return this; + }; + + // Easing function for smoothness. + var easeOut = function (time, start, change, duration) { + return start + change * Math.sin(Math.min(1, time / duration) * (Math.PI / 2)); + }; + + // Animate the scrolling. + var scrollTo = function (element, newPos, duration) { + var startTime = Date.now(); + var startPos = element.scrollTop; + var self = this; + + // Don't try to scroll beyond the limits. You won't get there and this will loop forever. + newPos = Math.max(0, newPos); + newPos = Math.min(element.scrollHeight - element.clientHeight, newPos); + var change = newPos - startPos; + + // This inner function is called until the elements scrollTop reaches newPos. + var updateScroll = function () { + var now = Date.now(); + var time = now - startTime; + self.isAutoScrolling = true; + element.scrollTop = easeOut(time, startPos, change, duration); + if (element.scrollTop !== newPos) { + requestAnimationFrame(updateScroll, element); + } + }; + requestAnimationFrame(updateScroll, element); + }; + + // Scroll an element's parent so the element is brought into view. + var scrollToElement = function (element) { + if (this.canScroll()) { + var parent = element.parentElement; + var parentOffsetBottom = parent.offsetTop + parent.clientHeight; + var elementOffsetBottom = element.offsetTop + element.clientHeight; + var relTop = element.offsetTop - parent.offsetTop; + var relBottom = (element.offsetTop + element.clientHeight) - parent.offsetTop; + var newPos; + + // If the top of the line is above the top of the parent view, were scrolling up, + // so we want to move the top of the element downwards to match the top of the parent. + if (relTop < parent.scrollTop) { + newPos = element.offsetTop - parent.offsetTop; + + // If the bottom of the line is below the parent view, we're scrolling down, so we want the + // bottom edge of the line to move up to meet the bottom edge of the parent. + } else if (relBottom > (parent.scrollTop + parent.clientHeight)) { + newPos = elementOffsetBottom - parentOffsetBottom; + } + + // Don't try to scroll if we haven't set a new position. If we didn't + // set a new position the line is already in view (i.e. It's not above + // or below the view) + // And don't try to scroll when the element is already in position. + if (newPos !== undefined && parent.scrollTop !== newPos) { + scrollTo.call(this, parent, newPos, 400); + } + } + }; + + // Return whether the element is scrollable. + var canScroll = function () { + var el = this.element; + return el.scrollHeight > el.offsetHeight; + }; + + // Return whether the user is interacting with the transcript. + var inUse = function () { + return this.userIsScrolling; + }; + + return { + init: init, + to : scrollToElement, + canScroll : canScroll, + inUse : inUse + } + }(my); + + var scroller = function(element) { + return Object.create(scrollerProto).init(element); + }; + + + /*global my*/ + var trackList = function (plugin) { + var activeTrack; + return { + get: function () { + var validTracks = []; + var i, track; + my.tracks = my.player.textTracks(); + for (i = 0; i < my.tracks.length; i++) { + track = my.tracks[i]; + if (track.kind === 'captions' || track.kind === 'subtitles') { + validTracks.push(track); + } + } + return validTracks; + }, + active: function (tracks) { + var i, track; + for (i = 0; i < my.tracks.length; i++) { + track = my.tracks[i]; + if (track.mode === 'showing') { + activeTrack = track; + return track; + } + } + // fallback to first track + return activeTrack || tracks[0]; + }, + }; + }(my); + + /*globals utils, eventEmitter, my, scrollable*/ + + var widget = function (plugin) { + var my = {}; + my.element = {}; + my.body = {}; + var on = function (event, callback) { + eventEmitter.on(this, event, callback); + }; + var trigger = function (event) { + eventEmitter.trigger(this, event); + }; + var createTitle = function () { + var header = utils.createEl('header', '-header'); + header.textContent = utils.localize('Transcript'); + return header; + }; + var createSelector = function (){ + var selector = utils.createEl('select', '-selector'); + plugin.validTracks.forEach(function (track, i) { + var option = document.createElement('option'); + option.value = i; + option.textContent = track.label + ' (' + track.language + ')'; + selector.appendChild(option); + }); + selector.addEventListener('change', function (e) { + setTrack(document.querySelector('#' + plugin.prefix + '-' + plugin.player.id() + ' option:checked').value); + trigger('trackchanged'); + }); + return selector; + }; + var clickToSeekHandler = function (event) { + var clickedClasses = event.target.classList; + var clickedTime = event.target.getAttribute('data-begin') || event.target.parentElement.getAttribute('data-begin'); + if (clickedTime !== undefined && clickedTime !== null) { // can be zero + if ((plugin.settings.clickArea === 'line') || // clickArea: 'line' activates on all elements + (plugin.settings.clickArea === 'timestamp' && clickedClasses.contains(plugin.prefix + '-timestamp')) || + (plugin.settings.clickArea === 'text' && clickedClasses.contains(plugin.prefix + '-text'))) { + plugin.player.currentTime(clickedTime); + } + } + }; + var createLine = function (cue) { + var line = utils.createEl('div', '-line'); + var timestamp = utils.createEl('span', '-timestamp'); + var text = utils.createEl('span', '-text'); + line.setAttribute('data-begin', cue.startTime); + timestamp.textContent = utils.secondsToTime(cue.startTime); + text.innerHTML = cue.text; + line.appendChild(timestamp); + line.appendChild(text); + return line; + }; + var createTranscriptBody = function (track) { + if (typeof track !== 'object') { + track = plugin.player.textTracks()[track]; + } + var body = utils.createEl('div', '-body'); + var line, i; + var fragment = document.createDocumentFragment(); + // activeCues returns null when the track isn't loaded (for now?) + if (!track.activeCues) { + // If cues aren't loaded, set mode to hidden, wait, and try again. + // But don't hide an active track. In that case, just wait and try again. + if (track.mode !== 'showing') { + track.mode = 'hidden'; + } + window.setTimeout(function() { + createTranscriptBody(track); + }, 100); + } else { + var cues = track.cues; + for (i = 0; i < cues.length; i++) { + line = createLine(cues[i]); + fragment.appendChild(line); + } + body.innerHTML = ''; + body.appendChild(fragment); + body.setAttribute('lang', track.language); + body.scroll = scroller(body); + body.addEventListener('click', clickToSeekHandler); + my.element.replaceChild(body, my.body); + my.body = body; + } + + }; + var create = function () { + var el = document.createElement('div'); + my.element = el; + el.setAttribute('id', plugin.prefix + '-' + plugin.player.id()); + if (plugin.settings.showTitle) { + var title = createTitle(); + el.appendChild(title); + } + if (plugin.settings.showTrackSelector) { + var selector = createSelector(); + el.appendChild(selector); + } + my.body = utils.createEl('div', '-body'); + el.appendChild(my.body); + setTrack(plugin.currentTrack); + return this; + }; + var setTrack = function (track, trackCreated) { + createTranscriptBody(track, trackCreated); + }; + var setCue = function (time) { + var active, i, line, begin, end; + var lines = my.body.children; + for (i = 0; i < lines.length; i++) { + line = lines[i]; + begin = line.getAttribute('data-begin'); + if (i < lines.length - 1) { + end = lines[i + 1].getAttribute('data-begin'); + } else { + end = plugin.player.duration() || Infinity; + } + if (time > begin && time < end) { + if (!line.classList.contains('is-active')) { // don't update if it hasn't changed + line.classList.add('is-active'); + if (plugin.settings.autoscroll && !(plugin.settings.stopScrollWhenInUse && my.body.scroll.inUse())) { + my.body.scroll.to(line); + } + } + } else { + line.classList.remove('is-active'); + } + } + }; + var el = function () { + return my.element; + }; + return { + create: create, + setTrack: setTrack, + setCue: setCue, + el : el, + on: on, + trigger: trigger, + }; + }(my); + + var transcript = function (options) { + my.player = this; + my.validTracks = trackList.get(); + my.currentTrack = trackList.active(my.validTracks); + my.settings = videojs.mergeOptions(defaults, options); + my.widget = widget.create(); + var timeUpdate = function () { + my.widget.setCue(my.player.currentTime()); + }; + var updateTrack = function () { + my.currentTrack = trackList.active(my.validTracks); + my.widget.setTrack(my.currentTrack); + }; + if (my.validTracks.length > 0) { + updateTrack(); + my.player.on('timeupdate', timeUpdate); + if (my.settings.followPlayerTrack) { + my.player.on('captionstrackchange', updateTrack); + my.player.on('subtitlestrackchange', updateTrack); + } + } else { + throw new Error('videojs-transcript: No tracks found!'); + } + return { + el: function () { + return my.widget.el(); + }, + setTrack: my.widget.setTrack + }; + }; + videojs.registerPlugin('transcript', transcript); + + }(window, videojs)); \ No newline at end of file