{"version":3,"file":"chunk-n76xgi5i.js","sources":["node_modules/ng-dynamic-component/fesm2020/ng-dynamic-component.mjs","packages/sports/web/app/src/match-simulation/match-simulation.service.ts","packages/sports/web/app/src/match-simulation/match-simulation.html","packages/sports/web/app/src/match-simulation/match-simulation.component.ts","packages/sports/web/app/src/animation/animation-component-loader.service.ts","packages/sports/web/app/src/video-stream/video-stream-component-loader.service.ts","packages/sports/libs/common/core/feature/icon/src/lib/icon.ts"],"sourcesContent":["import * as i0 from '@angular/core';\nimport { InjectionToken, Injectable, Injector, Inject, Optional, Directive, Input, Host, NgModule, EventEmitter, Component, Output, ElementRef } from '@angular/core';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport * as i1 from '@angular/common';\n\n/**\n * @public\n */\nfunction defaultEventArgumentFactory() {\n return '$event';\n}\n/**\n * @public\n */\nconst IoEventArgumentToken = new InjectionToken('EventArgument', {\n providedIn: 'root',\n factory: defaultEventArgumentFactory\n});\n/**\n * @public\n * @deprecated Since v10.4.0 - Use {@link IoEventArgumentToken} instead!\n */\nconst EventArgumentToken = IoEventArgumentToken;\n\n/**\n * A token that holds custom context of the output handlers\n *\n * @public\n */\nconst IoEventContextToken = new InjectionToken('IoEventContext');\n/**\n * A token that holds provider for custom context of the output handlers\n * which should be provided using {@link IoEventContextToken} token\n *\n * @public\n */\nconst IoEventContextProviderToken = new InjectionToken('IoEventContextProvider');\n\n/**\n * @public\n */\nconst DynamicComponentInjectorToken = new InjectionToken('DynamicComponentInjector');\n\n/**\n * @public\n */\nlet IoServiceOptions = /*#__PURE__*/(() => {\n class IoServiceOptions {\n constructor() {\n this.trackOutputChanges = false;\n }\n }\n /** @nocollapse */\n /** @nocollapse */IoServiceOptions.ɵfac = function IoServiceOptions_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || IoServiceOptions)();\n };\n IoServiceOptions.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: IoServiceOptions,\n factory: IoServiceOptions.ɵfac,\n providedIn: 'root'\n });\n return IoServiceOptions;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * @public\n */\nlet IoService = /*#__PURE__*/(() => {\n class IoService {\n constructor(injector, differs,\n // TODO: Replace ComponentFactoryResolver once new API is created\n // @see https://github.com/angular/angular/issues/44926\n // eslint-disable-next-line deprecation/deprecation\n cfr, options, compInjector, eventArgument, cdr, eventContextProvider) {\n this.injector = injector;\n this.differs = differs;\n this.cfr = cfr;\n this.options = options;\n this.compInjector = compInjector;\n this.eventArgument = eventArgument;\n this.cdr = cdr;\n this.eventContextProvider = eventContextProvider;\n this.lastComponentInst = null;\n this.lastChangedInputs = new Set();\n this.inputsDiffer = this.differs.find({}).create();\n // TODO: Replace ComponentFactory once new API is created\n // @see https://github.com/angular/angular/issues/44926\n // eslint-disable-next-line deprecation/deprecation\n this.compFactory = null;\n this.outputsShouldDisconnect$ = new Subject();\n this.inputs = {};\n this.outputs = {};\n this.outputsChanged = () => false;\n if (this.options.trackOutputChanges) {\n const outputsDiffer = this.differs.find({}).create();\n this.outputsChanged = outputs => !!outputsDiffer.diff(outputs);\n }\n }\n get compRef() {\n return this.compInjector.componentRef;\n }\n get componentInst() {\n return this.compRef ? this.compRef.instance : null;\n }\n get componentInstChanged() {\n if (this.lastComponentInst !== this.componentInst) {\n this.lastComponentInst = this.componentInst;\n return true;\n } else {\n return false;\n }\n }\n ngOnDestroy() {\n this.disconnectOutputs();\n }\n /**\n * Call update whenever inputs/outputs may or did change.\n *\n * It will detect both new and mutated changes.\n */\n update(inputs, outputs) {\n if (!this.compRef) {\n this.disconnectOutputs();\n return;\n }\n const changes = this.updateIO(inputs, outputs);\n const compChanged = this.componentInstChanged;\n const inputsChanges = this.getInputsChanges(compChanged);\n const outputsChanged = this.outputsChanged(this.outputs);\n if (inputsChanges) {\n this.updateChangedInputs(inputsChanges);\n }\n if (compChanged || inputsChanges) {\n this.updateInputs(compChanged || !this.lastChangedInputs.size);\n }\n if (compChanged || outputsChanged || changes.outputsChanged) {\n this.bindOutputs();\n }\n }\n updateIO(inputs, outputs) {\n if (!inputs) {\n inputs = {};\n }\n if (!outputs) {\n outputs = {};\n }\n const inputsChanged = this.inputs !== inputs;\n const outputsChanged = this.outputs !== outputs;\n this.inputs = inputs;\n this.outputs = outputs;\n return {\n inputsChanged,\n outputsChanged\n };\n }\n updateInputs(isFirstChange = false) {\n if (isFirstChange) {\n this.updateCompFactory();\n }\n const compRef = this.compRef;\n const inputs = this.inputs;\n if (!inputs || !compRef) {\n return;\n }\n const ifInputChanged = this.lastChangedInputs.size ? name => this.lastChangedInputs.has(name) : () => true;\n Object.keys(inputs).filter(ifInputChanged).forEach(name => compRef.setInput(name, inputs[name]));\n }\n bindOutputs() {\n this.disconnectOutputs();\n const compInst = this.componentInst;\n let outputs = this.outputs;\n if (!outputs || !compInst) {\n return;\n }\n outputs = this.resolveOutputs(outputs);\n Object.keys(outputs).filter(p => compInst[p]).forEach(p => compInst[p].pipe(takeUntil(this.outputsShouldDisconnect$)).subscribe(event => {\n this.cdr.markForCheck();\n return outputs[p](event);\n }));\n }\n disconnectOutputs() {\n this.outputsShouldDisconnect$.next();\n }\n getInputsChanges(isCompChanged) {\n if (isCompChanged) {\n this.inputsDiffer.diff({});\n }\n return this.inputsDiffer.diff(this.inputs);\n }\n updateChangedInputs(differ) {\n this.lastChangedInputs.clear();\n const addRecordKeyToSet = record => this.lastChangedInputs.add(record.key);\n differ.forEachAddedItem(addRecordKeyToSet);\n differ.forEachChangedItem(addRecordKeyToSet);\n differ.forEachRemovedItem(addRecordKeyToSet);\n }\n // TODO: Replace ComponentFactory once new API is created\n // @see https://github.com/angular/angular/issues/44926\n // eslint-disable-next-line deprecation/deprecation\n resolveCompFactory() {\n if (!this.compRef) {\n return null;\n }\n try {\n try {\n return this.cfr.resolveComponentFactory(this.compRef.componentType);\n } catch (e) {\n // Fallback if componentType does not exist (happens on NgComponentOutlet)\n return this.cfr.resolveComponentFactory(this.compRef.instance.constructor);\n }\n } catch (e) {\n // Factory not available - bailout\n return null;\n }\n }\n updateCompFactory() {\n this.compFactory = this.resolveCompFactory();\n }\n resolveOutputs(outputs) {\n this.updateOutputsEventContext();\n outputs = this.processOutputs(outputs);\n if (!this.compFactory) {\n return outputs;\n }\n return this.remapIO(outputs, this.compFactory.outputs);\n }\n updateOutputsEventContext() {\n if (this.eventContextProvider) {\n // Resolve custom context from local provider\n const eventContextInjector = Injector.create({\n name: 'EventContext',\n parent: this.injector,\n providers: [this.eventContextProvider]\n });\n this.outputsEventContext = eventContextInjector.get(IoEventContextToken);\n } else {\n // Try to get global context\n this.outputsEventContext = this.injector.get(IoEventContextToken, null);\n }\n }\n processOutputs(outputs) {\n const processedOutputs = {};\n Object.keys(outputs).forEach(key => {\n const outputExpr = outputs[key];\n let outputHandler;\n if (typeof outputExpr === 'function') {\n outputHandler = outputExpr;\n } else {\n outputHandler = outputExpr && this.processOutputArgs(outputExpr);\n }\n if (this.outputsEventContext && outputHandler) {\n outputHandler = outputHandler.bind(this.outputsEventContext);\n }\n processedOutputs[key] = outputHandler;\n });\n return processedOutputs;\n }\n processOutputArgs(output) {\n const eventArgument = this.eventArgument;\n const args = 'args' in output ? output.args || [] : [eventArgument];\n const eventIdx = args.indexOf(eventArgument);\n const handler = output.handler;\n // When there is no event argument - use just arguments\n if (eventIdx === -1) {\n return function () {\n return handler.apply(this, args);\n };\n }\n return function (event) {\n const argsWithEvent = [...args];\n argsWithEvent[eventIdx] = event;\n return handler.apply(this, argsWithEvent);\n };\n }\n remapIO(io, mapping) {\n const newIO = {};\n Object.keys(io).forEach(key => {\n const newKey = this.findPropByTplInMapping(key, mapping) || key;\n newIO[newKey] = io[key];\n });\n return newIO;\n }\n findPropByTplInMapping(tplName, mapping) {\n for (const map of mapping) {\n if (map.templateName === tplName) {\n return map.propName;\n }\n }\n return null;\n }\n }\n /** @nocollapse */\n /** @nocollapse */IoService.ɵfac = function IoService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || IoService)(i0.ɵɵinject(i0.Injector), i0.ɵɵinject(i0.KeyValueDiffers), i0.ɵɵinject(i0.ComponentFactoryResolver), i0.ɵɵinject(IoServiceOptions), i0.ɵɵinject(DynamicComponentInjectorToken), i0.ɵɵinject(IoEventArgumentToken), i0.ɵɵinject(i0.ChangeDetectorRef), i0.ɵɵinject(IoEventContextProviderToken, 8));\n };\n IoService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: IoService,\n factory: IoService.ɵfac\n });\n return IoService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nlet IoFactoryService = /*#__PURE__*/(() => {\n class IoFactoryService {\n constructor(injector) {\n this.injector = injector;\n }\n create(componentInjector, ioOptions) {\n const providers = [{\n provide: IoService,\n useClass: IoService\n }, {\n provide: DynamicComponentInjectorToken,\n useValue: componentInjector\n }];\n if (ioOptions) {\n providers.push({\n provide: IoServiceOptions,\n useValue: ioOptions\n });\n }\n const ioInjector = Injector.create({\n name: 'IoInjector',\n parent: ioOptions?.injector ?? this.injector,\n providers\n });\n return ioInjector.get(IoService);\n }\n }\n /** @nocollapse */\n /** @nocollapse */IoFactoryService.ɵfac = function IoFactoryService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || IoFactoryService)(i0.ɵɵinject(i0.Injector));\n };\n IoFactoryService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: IoFactoryService,\n factory: IoFactoryService.ɵfac,\n providedIn: 'root'\n });\n return IoFactoryService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nlet ComponentOutletIoDirective = /*#__PURE__*/(() => {\n class ComponentOutletIoDirective {\n constructor(ioService) {\n this.ioService = ioService;\n }\n ngDoCheck() {\n this.ioService.update(this.ngComponentOutletNdcDynamicInputs, this.ngComponentOutletNdcDynamicOutputs);\n }\n }\n /** @nocollapse */\n /** @nocollapse */ComponentOutletIoDirective.ɵfac = function ComponentOutletIoDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ComponentOutletIoDirective)(i0.ɵɵdirectiveInject(IoService));\n };\n ComponentOutletIoDirective.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: ComponentOutletIoDirective,\n selectors: [[\"\", \"ngComponentOutletNdcDynamicInputs\", \"\"], [\"\", \"ngComponentOutletNdcDynamicOutputs\", \"\"]],\n inputs: {\n ngComponentOutletNdcDynamicInputs: \"ngComponentOutletNdcDynamicInputs\",\n ngComponentOutletNdcDynamicOutputs: \"ngComponentOutletNdcDynamicOutputs\"\n },\n exportAs: [\"ndcDynamicIo\"],\n standalone: true,\n features: [i0.ɵɵProvidersFeature([IoService])]\n });\n return ComponentOutletIoDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nlet ComponentOutletInjectorDirective = /*#__PURE__*/(() => {\n class ComponentOutletInjectorDirective {\n constructor(componentOutlet) {\n this.componentOutlet = componentOutlet;\n }\n get componentRef() {\n // NOTE: Accessing private APIs of Angular\n return this.componentOutlet._componentRef;\n }\n }\n /** @nocollapse */\n /** @nocollapse */ComponentOutletInjectorDirective.ɵfac = function ComponentOutletInjectorDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ComponentOutletInjectorDirective)(i0.ɵɵdirectiveInject(i1.NgComponentOutlet, 1));\n };\n ComponentOutletInjectorDirective.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: ComponentOutletInjectorDirective,\n selectors: [[\"\", \"ngComponentOutlet\", \"\"]],\n exportAs: [\"ndcComponentOutletInjector\"],\n standalone: true,\n features: [i0.ɵɵProvidersFeature([{\n provide: DynamicComponentInjectorToken,\n useExisting: ComponentOutletInjectorDirective\n }])]\n });\n return ComponentOutletInjectorDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nlet ComponentOutletInjectorModule = /*#__PURE__*/(() => {\n class ComponentOutletInjectorModule {}\n /** @nocollapse */\n /** @nocollapse */\n /** @nocollapse */ComponentOutletInjectorModule.ɵfac = function ComponentOutletInjectorModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ComponentOutletInjectorModule)();\n };\n ComponentOutletInjectorModule.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: ComponentOutletInjectorModule\n });\n ComponentOutletInjectorModule.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({});\n return ComponentOutletInjectorModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nlet DynamicIoDirective = /*#__PURE__*/(() => {\n class DynamicIoDirective {\n constructor(ioService) {\n this.ioService = ioService;\n }\n ngDoCheck() {\n this.ioService.update(this.ndcDynamicInputs, this.ndcDynamicOutputs);\n }\n }\n /** @nocollapse */\n /** @nocollapse */DynamicIoDirective.ɵfac = function DynamicIoDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DynamicIoDirective)(i0.ɵɵdirectiveInject(IoService));\n };\n DynamicIoDirective.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: DynamicIoDirective,\n selectors: [[\"\", \"ndcDynamicInputs\", \"\"], [\"\", \"ndcDynamicOutputs\", \"\"]],\n inputs: {\n ndcDynamicInputs: \"ndcDynamicInputs\",\n ndcDynamicOutputs: \"ndcDynamicOutputs\"\n },\n exportAs: [\"ndcDynamicIo\"],\n standalone: true,\n features: [i0.ɵɵProvidersFeature([IoService])]\n });\n return DynamicIoDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nlet DynamicIoModule = /*#__PURE__*/(() => {\n class DynamicIoModule {}\n /** @nocollapse */\n /** @nocollapse */\n /** @nocollapse */DynamicIoModule.ɵfac = function DynamicIoModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DynamicIoModule)();\n };\n DynamicIoModule.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: DynamicIoModule\n });\n DynamicIoModule.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [ComponentOutletInjectorModule]\n });\n return DynamicIoModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nlet DynamicComponent = /*#__PURE__*/(() => {\n class DynamicComponent {\n constructor(vcr) {\n this.vcr = vcr;\n this.ndcDynamicCreated = new EventEmitter();\n this.componentRef = null;\n }\n ngOnChanges(changes) {\n if (DynamicComponent.UpdateOnInputs.some(input => changes.hasOwnProperty(input))) {\n this.createDynamicComponent();\n }\n }\n createDynamicComponent() {\n this.vcr.clear();\n this.componentRef = null;\n if (this.ndcDynamicComponent) {\n this.componentRef = this.vcr.createComponent(this.ndcDynamicComponent, {\n index: 0,\n injector: this._resolveInjector(),\n projectableNodes: this.ndcDynamicContent,\n ngModuleRef: this.ndcDynamicNgModuleRef,\n environmentInjector: this.ndcDynamicEnvironmentInjector\n });\n this.ndcDynamicCreated.emit(this.componentRef);\n }\n }\n _resolveInjector() {\n let injector = this.ndcDynamicInjector || this.vcr.injector;\n if (this.ndcDynamicProviders) {\n injector = Injector.create({\n providers: this.ndcDynamicProviders,\n parent: injector\n });\n }\n return injector;\n }\n }\n DynamicComponent.UpdateOnInputs = ['ndcDynamicComponent', 'ndcDynamicInjector', 'ndcDynamicProviders', 'ndcDynamicContent', 'ndcDynamicNgModuleRef', 'ndcDynamicEnvironmentInjector'];\n /** @nocollapse */\n /** @nocollapse */\n DynamicComponent.ɵfac = function DynamicComponent_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DynamicComponent)(i0.ɵɵdirectiveInject(i0.ViewContainerRef));\n };\n DynamicComponent.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: DynamicComponent,\n selectors: [[\"ndc-dynamic\"]],\n inputs: {\n ndcDynamicComponent: \"ndcDynamicComponent\",\n ndcDynamicInjector: \"ndcDynamicInjector\",\n ndcDynamicProviders: \"ndcDynamicProviders\",\n ndcDynamicContent: \"ndcDynamicContent\",\n ndcDynamicNgModuleRef: \"ndcDynamicNgModuleRef\",\n ndcDynamicEnvironmentInjector: \"ndcDynamicEnvironmentInjector\"\n },\n outputs: {\n ndcDynamicCreated: \"ndcDynamicCreated\"\n },\n standalone: true,\n features: [i0.ɵɵProvidersFeature([{\n provide: DynamicComponentInjectorToken,\n useExisting: DynamicComponent\n }]), i0.ɵɵNgOnChangesFeature, i0.ɵɵStandaloneFeature],\n decls: 0,\n vars: 0,\n template: function DynamicComponent_Template(rf, ctx) {},\n encapsulation: 2\n });\n return DynamicComponent;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nlet DynamicModule = /*#__PURE__*/(() => {\n class DynamicModule {}\n /** @nocollapse */\n /** @nocollapse */\n /** @nocollapse */DynamicModule.ɵfac = function DynamicModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DynamicModule)();\n };\n DynamicModule.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: DynamicModule\n });\n DynamicModule.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [DynamicIoModule, DynamicComponent, DynamicIoModule]\n });\n return DynamicModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nlet DynamicAttributesDirective = /*#__PURE__*/(() => {\n class DynamicAttributesDirective {\n constructor(renderer, differs, componentInjector) {\n this.renderer = renderer;\n this.differs = differs;\n this.componentInjector = componentInjector;\n this.attrsDiffer = this.differs.find({}).create();\n }\n get _attributes() {\n return this.ndcDynamicAttributes || this.ngComponentOutletNdcDynamicAttributes || {};\n }\n get nativeElement() {\n return this.componentInjector?.componentRef?.location.nativeElement;\n }\n get compType() {\n return this.componentInjector?.componentRef?.componentType;\n }\n get isCompChanged() {\n if (this.lastCompType !== this.compType) {\n this.lastCompType = this.compType;\n return true;\n }\n return false;\n }\n ngDoCheck() {\n const isCompChanged = this.isCompChanged;\n const changes = this.attrsDiffer.diff(this._attributes);\n if (changes) {\n this.lastAttrActions = this.changesToAttrActions(changes);\n }\n if (changes || isCompChanged && this.lastAttrActions) {\n this.updateAttributes(this.lastAttrActions);\n }\n }\n setAttribute(name, value, namespace) {\n if (this.nativeElement) {\n this.renderer.setAttribute(this.nativeElement, name, value, namespace);\n }\n }\n removeAttribute(name, namespace) {\n if (this.nativeElement) {\n this.renderer.removeAttribute(this.nativeElement, name, namespace);\n }\n }\n updateAttributes(actions) {\n if (!this.compType || !actions) {\n return;\n }\n Object.keys(actions.set).forEach(key => this.setAttribute(key, actions.set[key]));\n actions.remove.forEach(key => this.removeAttribute(key));\n }\n changesToAttrActions(changes) {\n const attrActions = {\n set: {},\n remove: []\n };\n changes.forEachAddedItem(r => attrActions.set[r.key] = r.currentValue);\n changes.forEachChangedItem(r => attrActions.set[r.key] = r.currentValue);\n changes.forEachRemovedItem(r => attrActions.remove.push(r.key));\n return attrActions;\n }\n }\n /** @nocollapse */\n /** @nocollapse */DynamicAttributesDirective.ɵfac = function DynamicAttributesDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DynamicAttributesDirective)(i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.KeyValueDiffers), i0.ɵɵdirectiveInject(DynamicComponentInjectorToken, 8));\n };\n DynamicAttributesDirective.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: DynamicAttributesDirective,\n selectors: [[\"\", \"ndcDynamicAttributes\", \"\"], [\"\", \"ngComponentOutletNdcDynamicAttributes\", \"\"]],\n inputs: {\n ndcDynamicAttributes: \"ndcDynamicAttributes\",\n ngComponentOutletNdcDynamicAttributes: \"ngComponentOutletNdcDynamicAttributes\"\n },\n exportAs: [\"ndcDynamicAttributes\"],\n standalone: true\n });\n return DynamicAttributesDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nlet DynamicAttributesModule = /*#__PURE__*/(() => {\n class DynamicAttributesModule {}\n /** @nocollapse */\n /** @nocollapse */\n /** @nocollapse */DynamicAttributesModule.ɵfac = function DynamicAttributesModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DynamicAttributesModule)();\n };\n DynamicAttributesModule.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: DynamicAttributesModule\n });\n DynamicAttributesModule.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [ComponentOutletInjectorModule]\n });\n return DynamicAttributesModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Extract type arguments from Angular Directive/Component\n *\n * @internal\n */\nfunction extractNgParamTypes(type) {\n // NOTE: Accessing private APIs of Angular\n return type?.ctorParameters?.()?.map(param => param.type);\n}\n/**\n * @internal\n */\nfunction isOnDestroy(obj) {\n return !!obj && typeof obj.ngOnDestroy === 'function';\n}\n\n/**\n * @public\n */\nconst ReflectRef = new InjectionToken('ReflectRef', {\n providedIn: 'root',\n factory: () => window.Reflect\n});\n/**\n * @public\n */\nlet ReflectService = /*#__PURE__*/(() => {\n class ReflectService {\n constructor(reflect) {\n this.reflect = reflect;\n }\n getCtorParamTypes(ctor) {\n return this.reflect.getMetadata('design:paramtypes', ctor);\n }\n }\n /** @nocollapse */\n /** @nocollapse */ReflectService.ɵfac = function ReflectService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ReflectService)(i0.ɵɵinject(ReflectRef));\n };\n ReflectService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: ReflectService,\n factory: ReflectService.ɵfac,\n providedIn: 'root'\n });\n return ReflectService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nfunction dynamicDirectiveDef(type, inputs, outputs) {\n return {\n type,\n inputs,\n outputs\n };\n}\n/**\n * @public\n * @experimental Dynamic directives is an experimental API that may not work as expected.\n *\n * NOTE: There is a known issue with OnChanges hook not beign triggered on dynamic directives\n * since this part of functionality has been removed from the core as Angular now\n * supports this out of the box for dynamic components.\n */\nlet DynamicDirectivesDirective = /*#__PURE__*/(() => {\n class DynamicDirectivesDirective {\n constructor(injector, iterableDiffers, ioFactoryService, reflectService, componentInjector) {\n this.injector = injector;\n this.iterableDiffers = iterableDiffers;\n this.ioFactoryService = ioFactoryService;\n this.reflectService = reflectService;\n this.componentInjector = componentInjector;\n this.ndcDynamicDirectivesCreated = new EventEmitter();\n this.dirRef = new Map();\n this.dirIo = new Map();\n this.dirsDiffer = this.iterableDiffers.find([]).create((_, def) => def.type);\n }\n get directives() {\n return this.ndcDynamicDirectives || this.ngComponentOutletNdcDynamicDirectives;\n }\n get componentRef() {\n return this.componentInjector?.componentRef;\n }\n get compInstance() {\n return this.componentRef && this.componentRef.instance;\n }\n get isCompChanged() {\n if (this.lastCompInstance !== this.compInstance) {\n this.lastCompInstance = this.compInstance;\n return true;\n }\n return false;\n }\n get hostInjector() {\n return this.componentRef?.injector;\n }\n ngDoCheck() {\n if (this.maybeDestroyDirectives()) {\n return;\n }\n const dirsChanges = this.dirsDiffer.diff(this.directives);\n if (!dirsChanges) {\n return this.updateDirectives();\n }\n this.processDirChanges(dirsChanges);\n }\n ngOnDestroy() {\n this.destroyAllDirectives();\n }\n maybeDestroyDirectives() {\n if (this.isCompChanged || !this.componentRef) {\n this.dirsDiffer.diff([]);\n this.destroyAllDirectives();\n }\n return !this.componentRef;\n }\n processDirChanges(changes) {\n changes.forEachRemovedItem(({\n item\n }) => this.destroyDirective(item));\n const createdDirs = [];\n changes.forEachAddedItem(({\n item\n }) => {\n const dirRef = this.initDirective(item);\n if (dirRef) {\n createdDirs.push(dirRef);\n }\n });\n if (createdDirs.length) {\n this.ndcDynamicDirectivesCreated.emit(createdDirs);\n }\n }\n updateDirectives() {\n this.directives?.forEach(dir => this.updateDirective(dir));\n }\n updateDirective(dirDef) {\n const io = this.dirIo.get(dirDef.type);\n io?.update(dirDef.inputs, dirDef.outputs);\n }\n initDirective(dirDef) {\n if (this.dirRef.has(dirDef.type)) {\n return;\n }\n const instance = this.createDirective(dirDef.type);\n const directiveRef = {\n instance,\n type: dirDef.type,\n injector: this.hostInjector,\n hostComponent: this.componentRef.instance,\n hostView: this.componentRef.hostView,\n location: this.componentRef.location,\n changeDetectorRef: this.componentRef.changeDetectorRef,\n onDestroy: this.componentRef.onDestroy\n };\n this.initDirIO(directiveRef, dirDef);\n this.callInitHooks(instance);\n this.dirRef.set(directiveRef.type, directiveRef);\n return directiveRef;\n }\n destroyAllDirectives() {\n this.dirRef.forEach(dir => this.destroyDirRef(dir));\n this.dirRef.clear();\n this.dirIo.clear();\n }\n destroyDirective(dirDef) {\n const dirRef = this.dirRef.get(dirDef.type);\n if (dirRef) {\n this.destroyDirRef(dirRef);\n }\n this.dirRef.delete(dirDef.type);\n this.dirIo.delete(dirDef.type);\n }\n initDirIO(dirRef, dirDef) {\n const io = this.ioFactoryService.create({\n componentRef: this.dirToCompDef(dirRef)\n }, {\n trackOutputChanges: true,\n injector: this.injector\n });\n io.update(dirDef.inputs, dirDef.outputs);\n this.dirIo.set(dirRef.type, io);\n }\n dirToCompDef(dirRef) {\n return {\n changeDetectorRef: this.componentRef.changeDetectorRef,\n hostView: this.componentRef.hostView,\n location: this.componentRef.location,\n destroy: this.componentRef.destroy,\n onDestroy: this.componentRef.onDestroy,\n injector: this.componentRef.injector,\n instance: dirRef.instance,\n componentType: dirRef.type,\n setInput: (name, value) => dirRef.instance[name] = value\n };\n }\n destroyDirRef(dirRef) {\n this.dirIo.get(dirRef.type)?.ngOnDestroy();\n if (isOnDestroy(dirRef.instance)) {\n dirRef.instance.ngOnDestroy();\n }\n }\n createDirective(dirType) {\n const directiveInjector = Injector.create({\n providers: [{\n provide: dirType,\n useClass: dirType,\n deps: this.resolveDirParamTypes(dirType)\n }, {\n provide: ElementRef,\n useValue: this.componentRef.location\n }],\n parent: this.hostInjector,\n name: `DynamicDirectiveInjector:${dirType.name}@${this.componentRef.componentType.name}`\n });\n return directiveInjector.get(dirType);\n }\n resolveDirParamTypes(dirType) {\n return (\n // First try Angular Compiler's metadata\n extractNgParamTypes(dirType) ??\n // Then fallback to Reflect API\n this.reflectService.getCtorParamTypes(dirType) ??\n // Bailout\n []\n );\n }\n callInitHooks(obj) {\n this.callHook(obj, 'ngOnInit');\n this.callHook(obj, 'ngDoCheck');\n this.callHook(obj, 'ngAfterContentInit');\n this.callHook(obj, 'ngAfterContentChecked');\n this.callHook(obj, 'ngAfterViewInit');\n this.callHook(obj, 'ngAfterViewChecked');\n }\n callHook(obj, hook, args = []) {\n if (obj[hook]) {\n obj[hook](...args);\n }\n }\n }\n /** @nocollapse */\n /** @nocollapse */DynamicDirectivesDirective.ɵfac = function DynamicDirectivesDirective_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DynamicDirectivesDirective)(i0.ɵɵdirectiveInject(i0.Injector), i0.ɵɵdirectiveInject(i0.IterableDiffers), i0.ɵɵdirectiveInject(IoFactoryService), i0.ɵɵdirectiveInject(ReflectService), i0.ɵɵdirectiveInject(DynamicComponentInjectorToken, 8));\n };\n DynamicDirectivesDirective.ɵdir = /* @__PURE__ */i0.ɵɵdefineDirective({\n type: DynamicDirectivesDirective,\n selectors: [[\"\", \"ndcDynamicDirectives\", \"\"], [\"\", \"ngComponentOutletNdcDynamicDirectives\", \"\"]],\n inputs: {\n ndcDynamicDirectives: \"ndcDynamicDirectives\",\n ngComponentOutletNdcDynamicDirectives: \"ngComponentOutletNdcDynamicDirectives\"\n },\n outputs: {\n ndcDynamicDirectivesCreated: \"ndcDynamicDirectivesCreated\"\n },\n standalone: true,\n features: [i0.ɵɵProvidersFeature([IoFactoryService])]\n });\n return DynamicDirectivesDirective;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * @public\n */\nlet DynamicDirectivesModule = /*#__PURE__*/(() => {\n class DynamicDirectivesModule {}\n /** @nocollapse */\n /** @nocollapse */\n /** @nocollapse */DynamicDirectivesModule.ɵfac = function DynamicDirectivesModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || DynamicDirectivesModule)();\n };\n DynamicDirectivesModule.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: DynamicDirectivesModule\n });\n DynamicDirectivesModule.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n imports: [ComponentOutletInjectorModule]\n });\n return DynamicDirectivesModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/*\n * Public API Surface of ng-dynamic-component\n */\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { ComponentOutletInjectorDirective, ComponentOutletInjectorModule, ComponentOutletIoDirective, DynamicAttributesDirective, DynamicAttributesModule, DynamicComponent, DynamicComponentInjectorToken, DynamicDirectivesDirective, DynamicDirectivesModule, DynamicIoDirective, DynamicIoModule, DynamicModule, EventArgumentToken, IoEventArgumentToken, IoEventContextProviderToken, IoEventContextToken, IoFactoryService, IoService, IoServiceOptions, ReflectRef, ReflectService, defaultEventArgumentFactory, dynamicDirectiveDef };\n","import { DOCUMENT } from '@angular/common';\nimport { Injectable, inject } from '@angular/core';\n\nimport { MediaConfig } from '@frontend/sports/common/client-config-data-access';\nimport { interpolateSingleBracesString } from '@frontend/sports/common/core/utils/string';\nimport { Page } from '@frontend/vanilla/core';\n\nimport { MatchSimulationUrlOptions } from './match-simulation.models';\n\n@Injectable({ providedIn: 'root' })\nexport class MatchSimulationService {\n private localePath: string;\n private stylePath: string;\n private imagePath: string;\n\n private readonly _doc = inject(DOCUMENT);\n\n constructor(\n private mediaConfig: MediaConfig,\n private page: Page,\n ) {\n this.localePath = this.getAbsolutePath('/ClientDist/browser/assets/simulation/localizations');\n this.stylePath = this.getAbsolutePath('/ClientDist/browser/assets/simulation/styles/bundle.css');\n this.imagePath = this.getAbsolutePath('/{lang}/sports/api/simulation/getimageconfig');\n }\n\n getMatchSimulationUrl(options?: MatchSimulationUrlOptions): any {\n if (!options || !options.runningBallDataId) {\n return '';\n }\n\n const url = interpolateSingleBracesString(this.mediaConfig.matchSimulation.url, {\n partnerId: this.mediaConfig.matchSimulation.partnerId,\n userId: this.mediaConfig.matchSimulation.userId ?? '',\n eventId: options.runningBallDataId,\n homeTeam: this.encodePlayerName(options.homeTeam),\n awayTeam: this.encodePlayerName(options.awayTeam),\n width: options.width,\n height: options.height,\n lang: this.page.lang.substring(0, 2),\n csspath: this.stylePath,\n locdiff: this.localePath,\n imageconfig: this.imagePath,\n });\n\n return url;\n }\n\n private encodePlayerName(name?: string): string {\n if (!name) {\n return '';\n }\n\n return Array.prototype.map\n .call(name, (letter: string) => {\n return letter === ' ' ? '%C2%A0' : encodeURIComponent(letter);\n })\n .join('');\n }\n\n private getAbsolutePath(url: string): string {\n // https://grack.com/blog/2009/11/17/absolutizing-url-in-javascript/\n // Get absolute path\n const div = this._doc.createElement('div');\n div.innerHTML = '';\n (div.firstChild).href = url.replace('{lang}', this.page.lang); // Ensures that the href is properly escaped\n // eslint-disable-next-line no-self-assign\n div.innerHTML = div.innerHTML; // Run the current innerHTML back through the parser\n\n return (div.firstChild).href;\n }\n}\n","@if (url) {\n \n}\n","import {\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n DestroyRef,\n HostBinding,\n Input,\n OnChanges,\n OnInit,\n SimpleChanges,\n inject,\n} from '@angular/core';\nimport { takeUntilDestroyed } from '@angular/core/rxjs-interop';\n\nimport { DispatcherService } from '@frontend/sports/common/core/utils/dispatcher';\nimport { TrustPipe } from '@frontend/sports/common/core/utils/dom';\nimport { Nullable } from '@frontend/sports/common/core/utils/extended-types';\nimport { TimerService } from '@frontend/sports/common/core/utils/timer';\nimport { isEqual, round } from 'lodash-es';\nimport { merge } from 'rxjs';\nimport { distinctUntilChanged, filter, map, skip } from 'rxjs/operators';\n\nimport { ColumnLayoutService } from '../layout/column-layout.service';\nimport { Slide } from './match-simulation.models';\nimport { MatchSimulationService } from './match-simulation.service';\n\ninterface Size {\n width: number;\n height: number;\n}\n\n@Component({\n selector: 'ms-match-simulation',\n templateUrl: 'match-simulation.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n standalone: true,\n imports: [TrustPipe],\n})\nexport class MatchSimulationComponent implements OnInit, OnChanges {\n @Input() homeTeam: string;\n @Input() awayTeam: string;\n @Input() runningBall: string;\n @Input() inColumn = false;\n @Input() size?: Size;\n @Input() isColumnReSize = true;\n\n @HostBinding('class') className = 'match-simulation';\n\n url: Nullable = null;\n ratio = 438 / 600;\n base = { width: 320, height: 205 };\n private readonly destroyRef = inject(DestroyRef);\n\n constructor(\n private simulationService: MatchSimulationService,\n private dispatcher: DispatcherService,\n private timerService: TimerService,\n private columnService: ColumnLayoutService,\n private changeDetector: ChangeDetectorRef,\n ) {}\n\n ngOnInit(): void {\n if (!this.isColumnReSize) {\n return;\n }\n merge(\n this.columnService.rightColumnSizeChanged,\n this.dispatcher.on('SLIDE_SET').pipe(\n filter((slide) => slide.params.slideName === 'match-simulation'),\n skip(1),\n ),\n )\n .pipe(\n map(() => this.getSize()),\n distinctUntilChanged(isEqual),\n takeUntilDestroyed(this.destroyRef),\n )\n .subscribe((size) => {\n this.size = size;\n this.updateUrl(this.getUrl(size.width, size.height));\n });\n }\n\n ngOnChanges(changes: SimpleChanges): void {\n if (!this.size) {\n this.size = this.getSize();\n }\n if (changes.runningBall) {\n this.updateUrl(this.getUrl(this.size.width, this.size.height));\n }\n }\n\n private getUrl(width: number, height: number): string {\n return this.simulationService.getMatchSimulationUrl({\n width,\n height,\n runningBallDataId: this.runningBall,\n homeTeam: this.homeTeam,\n awayTeam: this.awayTeam,\n });\n }\n\n private getSize(): Size {\n const mobileModeWidth = this.columnService.currentCenterColumnSize.width > 430 ? 430 : this.columnService.currentCenterColumnSize.width;\n const width = this.inColumn ? this.columnService.currentRightColumnSize.width : mobileModeWidth;\n\n if (width) {\n return { width: round(width), height: round(width * this.ratio) };\n } else {\n return this.base;\n }\n }\n\n private updateUrl(url: string): void {\n // DeveloperLog - Chapter 1 - Entry 1.\n // We have to use ng-if here because otherwise setting the src of the iFrame multiple times, adds it to the browser history :/\n this.url = null;\n this.timerService.setTimeout(() => {\n this.url = url;\n this.changeDetector.markForCheck();\n });\n }\n}\n","import { Injectable, Type } from '@angular/core';\n\nimport { EventModel, EventScoreboard } from '@frontend/sports/betting-offer/feature/model';\nimport { LoggerFactory } from '@frontend/sports/common/core/feature/logging';\n\nimport { ComponentLoaderService, ComponentProxy } from '../deferred/component-loader.service';\nimport ModuleLoaderService from '../deferred/module-loader.service';\nimport { AnimationModule } from './animation.module';\n\nexport interface EventAnimationBinding {\n event: EventModel;\n scoreboard: EventScoreboard;\n inColumn?: boolean;\n isTerminal?: boolean;\n showSticky?: boolean;\n}\n\n@Injectable({ providedIn: 'root' })\nexport class AnimationComponentLoaderService extends ComponentLoaderService {\n moduleName = 'AnimationModule';\n\n constructor(moduleLoader: ModuleLoaderService, loggerFactory: LoggerFactory) {\n super(moduleLoader, loggerFactory);\n }\n\n getAnimationComponent(): ComponentProxy {\n return this.getComponentProxy((module) => module.animationComponent, 'event-animations');\n }\n\n getModule(): Promise> {\n return import('./animation.module').then((m) => m.AnimationModule);\n }\n}\n","import { EventEmitter, Injectable, Type } from '@angular/core';\n\nimport { EventModel } from '@frontend/sports/betting-offer/feature/model';\nimport { LoggerFactory } from '@frontend/sports/common/core/feature/logging';\n\nimport { ComponentLoaderService, ComponentProxy } from '../deferred/component-loader.service';\nimport ModuleLoaderService from '../deferred/module-loader.service';\nimport { VideoStreamModule } from './video-stream.module';\n\nexport interface EventVideoStreamBinding {\n event: EventModel;\n inColumn?: boolean;\n autoplay?: boolean;\n isExpanded: boolean;\n isExpandEnabled: boolean;\n trackingSource: string;\n showVideoPin: boolean;\n videoPinToggle: EventEmitter;\n toggleMediaExpand: EventEmitter;\n}\n\n@Injectable({ providedIn: 'root' })\nexport class VideoStreamComponentLoaderService extends ComponentLoaderService {\n moduleName = 'VideoStreamModule';\n\n constructor(moduleLoader: ModuleLoaderService, loggerFactory: LoggerFactory) {\n super(moduleLoader, loggerFactory);\n }\n\n getVideoStreamComponent(): ComponentProxy {\n return this.getComponentProxy((module) => module.videoStreamComponent);\n }\n\n getModule(): Promise> {\n return import('./video-stream.module').then((m) => m.VideoStreamModule);\n }\n}\n","// eslint-disable-next-line @nx/enforce-module-boundaries\nimport { SportConstant } from '@frontend/sports/common/core/data-access/constants';\n\nconst animationIcons = {\n [SportConstant.Soccer]: true,\n [SportConstant.Basketball]: true,\n [SportConstant.Tennis]: true,\n [SportConstant.Icehockey]: true,\n [SportConstant.Golf]: true,\n};\n\nexport function getAnimationIconForSport(sportId: number, active: boolean): string {\n return `sports-${animationIcons[sportId as keyof typeof animationIcons] ? sportId : SportConstant.Soccer}-match${active ? '-active' : ''}`;\n}\nexport function getVideoIcon(active: boolean): string {\n return active ? 'sports-video-active' : 'sports-video';\n}\nexport function getStatsIcon(active: boolean): string {\n return active ? 'sports-stats-active' : 'sports-stats';\n}\nexport function getAdvancedStatsIcon(active: boolean): string {\n return active ? 'sports-stats-advanced active' : 'sports-stats-advanced';\n}\n"],"names":["defaultEventArgumentFactory","IoEventArgumentToken","InjectionToken","IoEventContextToken","IoEventContextProviderToken","DynamicComponentInjectorToken","IoServiceOptions","__ngFactoryType__","ɵɵdefineInjectable","IoService","injector","differs","cfr","options","compInjector","eventArgument","cdr","eventContextProvider","Subject","outputsDiffer","outputs","inputs","changes","compChanged","inputsChanges","outputsChanged","inputsChanged","isFirstChange","compRef","ifInputChanged","name","compInst","p","takeUntil","event","isCompChanged","differ","addRecordKeyToSet","record","eventContextInjector","Injector","processedOutputs","key","outputExpr","outputHandler","output","args","eventIdx","handler","argsWithEvent","io","mapping","newIO","newKey","tplName","map","ɵɵinject","KeyValueDiffers","ComponentFactoryResolver$1","ChangeDetectorRef","DynamicIoDirective","ioService","ɵɵdirectiveInject","ɵɵdefineDirective","ɵɵProvidersFeature","DynamicComponent","vcr","EventEmitter","input","ViewContainerRef","ɵɵdefineComponent","ɵɵNgOnChangesFeature","ɵɵStandaloneFeature","rf","ctx","MatchSimulationService","constructor","mediaConfig","page","_doc","inject","DOCUMENT","localePath","getAbsolutePath","stylePath","imagePath","getMatchSimulationUrl","runningBallDataId","interpolateSingleBracesString","matchSimulation","url","partnerId","userId","eventId","homeTeam","encodePlayerName","awayTeam","width","height","lang","substring","csspath","locdiff","imageconfig","Array","prototype","call","letter","encodeURIComponent","join","div","createElement","innerHTML","firstChild","href","replace","MediaConfig","Page","factory","ɵfac","providedIn","_MatchSimulationService","ɵɵelement","ɵɵpropertyInterpolate","ctx_r0","size","ɵɵproperty","ɵɵpipeBind2","ɵɵsanitizeResourceUrl","MatchSimulationComponent","simulationService","dispatcher","timerService","columnService","changeDetector","inColumn","isColumnReSize","className","ratio","base","destroyRef","DestroyRef","ngOnInit","merge","rightColumnSizeChanged","on","pipe","filter","slide","params","slideName","skip","getSize","distinctUntilChanged","isEqual","takeUntilDestroyed","subscribe","updateUrl","getUrl","ngOnChanges","runningBall","mobileModeWidth","currentCenterColumnSize","currentRightColumnSize","round","setTimeout","markForCheck","DispatcherService","TimerService","ColumnLayoutService","v","selectors","hostVars","hostBindings","ɵɵclassMap","y","g","ɵɵtemplate","MatchSimulationComponent_Conditional_0_Template","ɵɵconditional","TrustPipe","encapsulation","changeDetection","_MatchSimulationComponent","AnimationComponentLoaderService","ComponentLoaderService","moduleLoader","loggerFactory","moduleName","getAnimationComponent","getComponentProxy","module","animationComponent","getModule","then","m","AnimationModule","ModuleLoaderService","LoggerFactory","a","_AnimationComponentLoaderService","VideoStreamComponentLoaderService","getVideoStreamComponent","videoStreamComponent","VideoStreamModule","_VideoStreamComponentLoaderService","animationIcons","SportConstant","Soccer","Basketball","Tennis","Icehockey","Golf","getAnimationIconForSport","sportId","active","getVideoIcon","getStatsIcon"],"mappings":"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","x_google_ignoreList":[0]}