{"version":3,"sources":["src/app/app.component.ts","src/app/app.component.html","node_modules/@angular/animations/fesm2022/animations.mjs","node_modules/@angular/animations/fesm2022/browser.mjs","node_modules/@angular/platform-browser/fesm2022/animations.mjs","src/app/app.tokens.ts","src/app/auth/api-interceptor.ts","node_modules/@tylertech/tyler-icons/extended/index.js","node_modules/@tylertech/tyler-icons/custom/index.js","src/main.ts"],"sourcesContent":["import { Component, ViewEncapsulation } from \"@angular/core\";\r\nimport { RouterOutlet } from \"@angular/router\";\r\n@Component({\r\n selector: \"app-root\",\r\n templateUrl: \"./app.component.html\",\r\n styleUrls: [\"./app.component.scss\"],\r\n imports: [RouterOutlet]\r\n})\r\nexport class AppComponent {\r\n title = \"US Customized Order Management System\";\r\n constructor() {\r\n }\r\n}\r\n","","/**\n * @license Angular v19.2.2\n * (c) 2010-2025 Google LLC. https://angular.io/\n * License: MIT\n */\n\nimport { DOCUMENT } from '@angular/common';\nimport * as i0 from '@angular/core';\nimport { inject, ANIMATION_MODULE_TYPE, ViewEncapsulation, ɵRuntimeError as _RuntimeError, Injectable, Inject } from '@angular/core';\n\n/**\n * @description Constants for the categories of parameters that can be defined for animations.\n *\n * A corresponding function defines a set of parameters for each category, and\n * collects them into a corresponding `AnimationMetadata` object.\n *\n * @publicApi\n */\nvar AnimationMetadataType = /*#__PURE__*/function (AnimationMetadataType) {\n /**\n * Associates a named animation state with a set of CSS styles.\n * See [`state()`](api/animations/state)\n */\n AnimationMetadataType[AnimationMetadataType[\"State\"] = 0] = \"State\";\n /**\n * Data for a transition from one animation state to another.\n * See `transition()`\n */\n AnimationMetadataType[AnimationMetadataType[\"Transition\"] = 1] = \"Transition\";\n /**\n * Contains a set of animation steps.\n * See `sequence()`\n */\n AnimationMetadataType[AnimationMetadataType[\"Sequence\"] = 2] = \"Sequence\";\n /**\n * Contains a set of animation steps.\n * See `{@link /api/animations/group group()}`\n */\n AnimationMetadataType[AnimationMetadataType[\"Group\"] = 3] = \"Group\";\n /**\n * Contains an animation step.\n * See `animate()`\n */\n AnimationMetadataType[AnimationMetadataType[\"Animate\"] = 4] = \"Animate\";\n /**\n * Contains a set of animation steps.\n * See `keyframes()`\n */\n AnimationMetadataType[AnimationMetadataType[\"Keyframes\"] = 5] = \"Keyframes\";\n /**\n * Contains a set of CSS property-value pairs into a named style.\n * See `style()`\n */\n AnimationMetadataType[AnimationMetadataType[\"Style\"] = 6] = \"Style\";\n /**\n * Associates an animation with an entry trigger that can be attached to an element.\n * See `trigger()`\n */\n AnimationMetadataType[AnimationMetadataType[\"Trigger\"] = 7] = \"Trigger\";\n /**\n * Contains a re-usable animation.\n * See `animation()`\n */\n AnimationMetadataType[AnimationMetadataType[\"Reference\"] = 8] = \"Reference\";\n /**\n * Contains data to use in executing child animations returned by a query.\n * See `animateChild()`\n */\n AnimationMetadataType[AnimationMetadataType[\"AnimateChild\"] = 9] = \"AnimateChild\";\n /**\n * Contains animation parameters for a re-usable animation.\n * See `useAnimation()`\n */\n AnimationMetadataType[AnimationMetadataType[\"AnimateRef\"] = 10] = \"AnimateRef\";\n /**\n * Contains child-animation query data.\n * See `query()`\n */\n AnimationMetadataType[AnimationMetadataType[\"Query\"] = 11] = \"Query\";\n /**\n * Contains data for staggering an animation sequence.\n * See `stagger()`\n */\n AnimationMetadataType[AnimationMetadataType[\"Stagger\"] = 12] = \"Stagger\";\n return AnimationMetadataType;\n}(AnimationMetadataType || {});\n/**\n * Specifies automatic styling.\n *\n * @publicApi\n */\nconst AUTO_STYLE = '*';\n/**\n * Creates a named animation trigger, containing a list of [`state()`](api/animations/state)\n * and `transition()` entries to be evaluated when the expression\n * bound to the trigger changes.\n *\n * @param name An identifying string.\n * @param definitions An animation definition object, containing an array of\n * [`state()`](api/animations/state) and `transition()` declarations.\n *\n * @return An object that encapsulates the trigger data.\n *\n * @usageNotes\n * Define an animation trigger in the `animations` section of `@Component` metadata.\n * In the template, reference the trigger by name and bind it to a trigger expression that\n * evaluates to a defined animation state, using the following format:\n *\n * `[@triggerName]=\"expression\"`\n *\n * Animation trigger bindings convert all values to strings, and then match the\n * previous and current values against any linked transitions.\n * Booleans can be specified as `1` or `true` and `0` or `false`.\n *\n * ### Usage Example\n *\n * The following example creates an animation trigger reference based on the provided\n * name value.\n * The provided animation value is expected to be an array consisting of state and\n * transition declarations.\n *\n * ```ts\n * @Component({\n * selector: \"my-component\",\n * templateUrl: \"my-component-tpl.html\",\n * animations: [\n * trigger(\"myAnimationTrigger\", [\n * state(...),\n * state(...),\n * transition(...),\n * transition(...)\n * ])\n * ]\n * })\n * class MyComponent {\n * myStatusExp = \"something\";\n * }\n * ```\n *\n * The template associated with this component makes use of the defined trigger\n * by binding to an element within its template code.\n *\n * ```html\n * \n *
...
\n * ```\n *\n * ### Using an inline function\n * The `transition` animation method also supports reading an inline function which can decide\n * if its associated animation should be run.\n *\n * ```ts\n * // this method is run each time the `myAnimationTrigger` trigger value changes.\n * function myInlineMatcherFn(fromState: string, toState: string, element: any, params: {[key:\n string]: any}): boolean {\n * // notice that `element` and `params` are also available here\n * return toState == 'yes-please-animate';\n * }\n *\n * @Component({\n * selector: 'my-component',\n * templateUrl: 'my-component-tpl.html',\n * animations: [\n * trigger('myAnimationTrigger', [\n * transition(myInlineMatcherFn, [\n * // the animation sequence code\n * ]),\n * ])\n * ]\n * })\n * class MyComponent {\n * myStatusExp = \"yes-please-animate\";\n * }\n * ```\n *\n * ### Disabling Animations\n * When true, the special animation control binding `@.disabled` binding prevents\n * all animations from rendering.\n * Place the `@.disabled` binding on an element to disable\n * animations on the element itself, as well as any inner animation triggers\n * within the element.\n *\n * The following example shows how to use this feature:\n *\n * ```angular-ts\n * @Component({\n * selector: 'my-component',\n * template: `\n *
\n *
\n *
\n * `,\n * animations: [\n * trigger(\"childAnimation\", [\n * // ...\n * ])\n * ]\n * })\n * class MyComponent {\n * isDisabled = true;\n * exp = '...';\n * }\n * ```\n *\n * When `@.disabled` is true, it prevents the `@childAnimation` trigger from animating,\n * along with any inner animations.\n *\n * ### Disable animations application-wide\n * When an area of the template is set to have animations disabled,\n * **all** inner components have their animations disabled as well.\n * This means that you can disable all animations for an app\n * by placing a host binding set on `@.disabled` on the topmost Angular component.\n *\n * ```ts\n * import {Component, HostBinding} from '@angular/core';\n *\n * @Component({\n * selector: 'app-component',\n * templateUrl: 'app.component.html',\n * })\n * class AppComponent {\n * @HostBinding('@.disabled')\n * public animationsDisabled = true;\n * }\n * ```\n *\n * ### Overriding disablement of inner animations\n * Despite inner animations being disabled, a parent animation can `query()`\n * for inner elements located in disabled areas of the template and still animate\n * them if needed. This is also the case for when a sub animation is\n * queried by a parent and then later animated using `animateChild()`.\n *\n * ### Detecting when an animation is disabled\n * If a region of the DOM (or the entire application) has its animations disabled, the animation\n * trigger callbacks still fire, but for zero seconds. When the callback fires, it provides\n * an instance of an `AnimationEvent`. If animations are disabled,\n * the `.disabled` flag on the event is true.\n *\n * @publicApi\n */\nfunction trigger(name, definitions) {\n return {\n type: AnimationMetadataType.Trigger,\n name,\n definitions,\n options: {}\n };\n}\n/**\n * Defines an animation step that combines styling information with timing information.\n *\n * @param timings Sets `AnimateTimings` for the parent animation.\n * A string in the format \"duration [delay] [easing]\".\n * - Duration and delay are expressed as a number and optional time unit,\n * such as \"1s\" or \"10ms\" for one second and 10 milliseconds, respectively.\n * The default unit is milliseconds.\n * - The easing value controls how the animation accelerates and decelerates\n * during its runtime. Value is one of `ease`, `ease-in`, `ease-out`,\n * `ease-in-out`, or a `cubic-bezier()` function call.\n * If not supplied, no easing is applied.\n *\n * For example, the string \"1s 100ms ease-out\" specifies a duration of\n * 1000 milliseconds, and delay of 100 ms, and the \"ease-out\" easing style,\n * which decelerates near the end of the duration.\n * @param styles Sets AnimationStyles for the parent animation.\n * A function call to either `style()` or `keyframes()`\n * that returns a collection of CSS style entries to be applied to the parent animation.\n * When null, uses the styles from the destination state.\n * This is useful when describing an animation step that will complete an animation;\n * see \"Animating to the final state\" in `transitions()`.\n * @returns An object that encapsulates the animation step.\n *\n * @usageNotes\n * Call within an animation `sequence()`, {@link /api/animations/group group()}, or\n * `transition()` call to specify an animation step\n * that applies given style data to the parent animation for a given amount of time.\n *\n * ### Syntax Examples\n * **Timing examples**\n *\n * The following examples show various `timings` specifications.\n * - `animate(500)` : Duration is 500 milliseconds.\n * - `animate(\"1s\")` : Duration is 1000 milliseconds.\n * - `animate(\"100ms 0.5s\")` : Duration is 100 milliseconds, delay is 500 milliseconds.\n * - `animate(\"5s ease-in\")` : Duration is 5000 milliseconds, easing in.\n * - `animate(\"5s 10ms cubic-bezier(.17,.67,.88,.1)\")` : Duration is 5000 milliseconds, delay is 10\n * milliseconds, easing according to a bezier curve.\n *\n * **Style examples**\n *\n * The following example calls `style()` to set a single CSS style.\n * ```ts\n * animate(500, style({ background: \"red\" }))\n * ```\n * The following example calls `keyframes()` to set a CSS style\n * to different values for successive keyframes.\n * ```ts\n * animate(500, keyframes(\n * [\n * style({ background: \"blue\" }),\n * style({ background: \"red\" })\n * ])\n * ```\n *\n * @publicApi\n */\nfunction animate(timings, styles = null) {\n return {\n type: AnimationMetadataType.Animate,\n styles,\n timings\n };\n}\n/**\n * @description Defines a list of animation steps to be run in parallel.\n *\n * @param steps An array of animation step objects.\n * - When steps are defined by `style()` or `animate()`\n * function calls, each call within the group is executed instantly.\n * - To specify offset styles to be applied at a later time, define steps with\n * `keyframes()`, or use `animate()` calls with a delay value.\n * For example:\n *\n * ```ts\n * group([\n * animate(\"1s\", style({ background: \"black\" })),\n * animate(\"2s\", style({ color: \"white\" }))\n * ])\n * ```\n *\n * @param options An options object containing a delay and\n * developer-defined parameters that provide styling defaults and\n * can be overridden on invocation.\n *\n * @return An object that encapsulates the group data.\n *\n * @usageNotes\n * Grouped animations are useful when a series of styles must be\n * animated at different starting times and closed off at different ending times.\n *\n * When called within a `sequence()` or a\n * `transition()` call, does not continue to the next\n * instruction until all of the inner animation steps have completed.\n *\n * @publicApi\n */\nfunction group(steps, options = null) {\n return {\n type: AnimationMetadataType.Group,\n steps,\n options\n };\n}\n/**\n * Defines a list of animation steps to be run sequentially, one by one.\n *\n * @param steps An array of animation step objects.\n * - Steps defined by `style()` calls apply the styling data immediately.\n * - Steps defined by `animate()` calls apply the styling data over time\n * as specified by the timing data.\n *\n * ```ts\n * sequence([\n * style({ opacity: 0 }),\n * animate(\"1s\", style({ opacity: 1 }))\n * ])\n * ```\n *\n * @param options An options object containing a delay and\n * developer-defined parameters that provide styling defaults and\n * can be overridden on invocation.\n *\n * @return An object that encapsulates the sequence data.\n *\n * @usageNotes\n * When you pass an array of steps to a\n * `transition()` call, the steps run sequentially by default.\n * Compare this to the {@link /api/animations/group group()} call, which runs animation steps in\n *parallel.\n *\n * When a sequence is used within a {@link /api/animations/group group()} or a `transition()` call,\n * execution continues to the next instruction only after each of the inner animation\n * steps have completed.\n *\n * @publicApi\n **/\nfunction sequence(steps, options = null) {\n return {\n type: AnimationMetadataType.Sequence,\n steps,\n options\n };\n}\n/**\n * Declares a key/value object containing CSS properties/styles that\n * can then be used for an animation [`state`](api/animations/state), within an animation\n *`sequence`, or as styling data for calls to `animate()` and `keyframes()`.\n *\n * @param tokens A set of CSS styles or HTML styles associated with an animation state.\n * The value can be any of the following:\n * - A key-value style pair associating a CSS property with a value.\n * - An array of key-value style pairs.\n * - An asterisk (*), to use auto-styling, where styles are derived from the element\n * being animated and applied to the animation when it starts.\n *\n * Auto-styling can be used to define a state that depends on layout or other\n * environmental factors.\n *\n * @return An object that encapsulates the style data.\n *\n * @usageNotes\n * The following examples create animation styles that collect a set of\n * CSS property values:\n *\n * ```ts\n * // string values for CSS properties\n * style({ background: \"red\", color: \"blue\" })\n *\n * // numerical pixel values\n * style({ width: 100, height: 0 })\n * ```\n *\n * The following example uses auto-styling to allow an element to animate from\n * a height of 0 up to its full height:\n *\n * ```ts\n * style({ height: 0 }),\n * animate(\"1s\", style({ height: \"*\" }))\n * ```\n *\n * @publicApi\n **/\nfunction style(tokens) {\n return {\n type: AnimationMetadataType.Style,\n styles: tokens,\n offset: null\n };\n}\n/**\n * Declares an animation state within a trigger attached to an element.\n *\n * @param name One or more names for the defined state in a comma-separated string.\n * The following reserved state names can be supplied to define a style for specific use\n * cases:\n *\n * - `void` You can associate styles with this name to be used when\n * the element is detached from the application. For example, when an `ngIf` evaluates\n * to false, the state of the associated element is void.\n * - `*` (asterisk) Indicates the default state. You can associate styles with this name\n * to be used as the fallback when the state that is being animated is not declared\n * within the trigger.\n *\n * @param styles A set of CSS styles associated with this state, created using the\n * `style()` function.\n * This set of styles persists on the element once the state has been reached.\n * @param options Parameters that can be passed to the state when it is invoked.\n * 0 or more key-value pairs.\n * @return An object that encapsulates the new state data.\n *\n * @usageNotes\n * Use the `trigger()` function to register states to an animation trigger.\n * Use the `transition()` function to animate between states.\n * When a state is active within a component, its associated styles persist on the element,\n * even when the animation ends.\n *\n * @publicApi\n **/\nfunction state(name, styles, options) {\n return {\n type: AnimationMetadataType.State,\n name,\n styles,\n options\n };\n}\n/**\n * Defines a set of animation styles, associating each style with an optional `offset` value.\n *\n * @param steps A set of animation styles with optional offset data.\n * The optional `offset` value for a style specifies a percentage of the total animation\n * time at which that style is applied.\n * @returns An object that encapsulates the keyframes data.\n *\n * @usageNotes\n * Use with the `animate()` call. Instead of applying animations\n * from the current state\n * to the destination state, keyframes describe how each style entry is applied and at what point\n * within the animation arc.\n * Compare [CSS Keyframe Animations](https://www.w3schools.com/css/css3_animations.asp).\n *\n * ### Usage\n *\n * In the following example, the offset values describe\n * when each `backgroundColor` value is applied. The color is red at the start, and changes to\n * blue when 20% of the total time has elapsed.\n *\n * ```ts\n * // the provided offset values\n * animate(\"5s\", keyframes([\n * style({ backgroundColor: \"red\", offset: 0 }),\n * style({ backgroundColor: \"blue\", offset: 0.2 }),\n * style({ backgroundColor: \"orange\", offset: 0.3 }),\n * style({ backgroundColor: \"black\", offset: 1 })\n * ]))\n * ```\n *\n * If there are no `offset` values specified in the style entries, the offsets\n * are calculated automatically.\n *\n * ```ts\n * animate(\"5s\", keyframes([\n * style({ backgroundColor: \"red\" }) // offset = 0\n * style({ backgroundColor: \"blue\" }) // offset = 0.33\n * style({ backgroundColor: \"orange\" }) // offset = 0.66\n * style({ backgroundColor: \"black\" }) // offset = 1\n * ]))\n *```\n\n * @publicApi\n */\nfunction keyframes(steps) {\n return {\n type: AnimationMetadataType.Keyframes,\n steps\n };\n}\n/**\n * Declares an animation transition which is played when a certain specified condition is met.\n *\n * @param stateChangeExpr A string with a specific format or a function that specifies when the\n * animation transition should occur (see [State Change Expression](#state-change-expression)).\n *\n * @param steps One or more animation objects that represent the animation's instructions.\n *\n * @param options An options object that can be used to specify a delay for the animation or provide\n * custom parameters for it.\n *\n * @returns An object that encapsulates the transition data.\n *\n * @usageNotes\n *\n * ### State Change Expression\n *\n * The State Change Expression instructs Angular when to run the transition's animations, it can\n *either be\n * - a string with a specific syntax\n * - or a function that compares the previous and current state (value of the expression bound to\n * the element's trigger) and returns `true` if the transition should occur or `false` otherwise\n *\n * The string format can be:\n * - `fromState => toState`, which indicates that the transition's animations should occur then the\n * expression bound to the trigger's element goes from `fromState` to `toState`\n *\n * _Example:_\n * ```ts\n * transition('open => closed', animate('.5s ease-out', style({ height: 0 }) ))\n * ```\n *\n * - `fromState <=> toState`, which indicates that the transition's animations should occur then\n * the expression bound to the trigger's element goes from `fromState` to `toState` or vice versa\n *\n * _Example:_\n * ```ts\n * transition('enabled <=> disabled', animate('1s cubic-bezier(0.8,0.3,0,1)'))\n * ```\n *\n * - `:enter`/`:leave`, which indicates that the transition's animations should occur when the\n * element enters or exists the DOM\n *\n * _Example:_\n * ```ts\n * transition(':enter', [\n * style({ opacity: 0 }),\n * animate('500ms', style({ opacity: 1 }))\n * ])\n * ```\n *\n * - `:increment`/`:decrement`, which indicates that the transition's animations should occur when\n * the numerical expression bound to the trigger's element has increased in value or decreased\n *\n * _Example:_\n * ```ts\n * transition(':increment', query('@counter', animateChild()))\n * ```\n *\n * - a sequence of any of the above divided by commas, which indicates that transition's animations\n * should occur whenever one of the state change expressions matches\n *\n * _Example:_\n * ```ts\n * transition(':increment, * => enabled, :enter', animate('1s ease', keyframes([\n * style({ transform: 'scale(1)', offset: 0}),\n * style({ transform: 'scale(1.1)', offset: 0.7}),\n * style({ transform: 'scale(1)', offset: 1})\n * ]))),\n * ```\n *\n * Also note that in such context:\n * - `void` can be used to indicate the absence of the element\n * - asterisks can be used as wildcards that match any state\n * - (as a consequence of the above, `void => *` is equivalent to `:enter` and `* => void` is\n * equivalent to `:leave`)\n * - `true` and `false` also match expression values of `1` and `0` respectively (but do not match\n * _truthy_ and _falsy_ values)\n *\n *
\n *\n * Be careful about entering end leaving elements as their transitions present a common\n * pitfall for developers.\n *\n * Note that when an element with a trigger enters the DOM its `:enter` transition always\n * gets executed, but its `:leave` transition will not be executed if the element is removed\n * alongside its parent (as it will be removed \"without warning\" before its transition has\n * a chance to be executed, the only way that such transition can occur is if the element\n * is exiting the DOM on its own).\n *\n *\n *
\n *\n * ### Animating to a Final State\n *\n * If the final step in a transition is a call to `animate()` that uses a timing value\n * with no `style` data, that step is automatically considered the final animation arc,\n * for the element to reach the final state, in such case Angular automatically adds or removes\n * CSS styles to ensure that the element is in the correct final state.\n *\n *\n * ### Usage Examples\n *\n * - Transition animations applied based on\n * the trigger's expression value\n *\n * ```html\n *
\n * ...\n *
\n * ```\n *\n * ```ts\n * trigger(\"myAnimationTrigger\", [\n * ..., // states\n * transition(\"on => off, open => closed\", animate(500)),\n * transition(\"* <=> error\", query('.indicator', animateChild()))\n * ])\n * ```\n *\n * - Transition animations applied based on custom logic dependent\n * on the trigger's expression value and provided parameters\n *\n * ```html\n *
\n * ...\n *
\n * ```\n *\n * ```ts\n * trigger(\"myAnimationTrigger\", [\n * ..., // states\n * transition(\n * (fromState, toState, _element, params) =>\n * ['firststep', 'laststep'].includes(fromState.toLowerCase())\n * && toState === params?.['target'],\n * animate('1s')\n * )\n * ])\n * ```\n *\n * @publicApi\n **/\nfunction transition(stateChangeExpr, steps, options = null) {\n return {\n type: AnimationMetadataType.Transition,\n expr: stateChangeExpr,\n animation: steps,\n options\n };\n}\n/**\n * Produces a reusable animation that can be invoked in another animation or sequence,\n * by calling the `useAnimation()` function.\n *\n * @param steps One or more animation objects, as returned by the `animate()`\n * or `sequence()` function, that form a transformation from one state to another.\n * A sequence is used by default when you pass an array.\n * @param options An options object that can contain a delay value for the start of the\n * animation, and additional developer-defined parameters.\n * Provided values for additional parameters are used as defaults,\n * and override values can be passed to the caller on invocation.\n * @returns An object that encapsulates the animation data.\n *\n * @usageNotes\n * The following example defines a reusable animation, providing some default parameter\n * values.\n *\n * ```ts\n * var fadeAnimation = animation([\n * style({ opacity: '{{ start }}' }),\n * animate('{{ time }}',\n * style({ opacity: '{{ end }}'}))\n * ],\n * { params: { time: '1000ms', start: 0, end: 1 }});\n * ```\n *\n * The following invokes the defined animation with a call to `useAnimation()`,\n * passing in override parameter values.\n *\n * ```js\n * useAnimation(fadeAnimation, {\n * params: {\n * time: '2s',\n * start: 1,\n * end: 0\n * }\n * })\n * ```\n *\n * If any of the passed-in parameter values are missing from this call,\n * the default values are used. If one or more parameter values are missing before a step is\n * animated, `useAnimation()` throws an error.\n *\n * @publicApi\n */\nfunction animation(steps, options = null) {\n return {\n type: AnimationMetadataType.Reference,\n animation: steps,\n options\n };\n}\n/**\n * Executes a queried inner animation element within an animation sequence.\n *\n * @param options An options object that can contain a delay value for the start of the\n * animation, and additional override values for developer-defined parameters.\n * @return An object that encapsulates the child animation data.\n *\n * @usageNotes\n * Each time an animation is triggered in Angular, the parent animation\n * has priority and any child animations are blocked. In order\n * for a child animation to run, the parent animation must query each of the elements\n * containing child animations, and run them using this function.\n *\n * Note that this feature is designed to be used with `query()` and it will only work\n * with animations that are assigned using the Angular animation library. CSS keyframes\n * and transitions are not handled by this API.\n *\n * @publicApi\n */\nfunction animateChild(options = null) {\n return {\n type: AnimationMetadataType.AnimateChild,\n options\n };\n}\n/**\n * Starts a reusable animation that is created using the `animation()` function.\n *\n * @param animation The reusable animation to start.\n * @param options An options object that can contain a delay value for the start of\n * the animation, and additional override values for developer-defined parameters.\n * @return An object that contains the animation parameters.\n *\n * @publicApi\n */\nfunction useAnimation(animation, options = null) {\n return {\n type: AnimationMetadataType.AnimateRef,\n animation,\n options\n };\n}\n/**\n * Finds one or more inner elements within the current element that is\n * being animated within a sequence. Use with `animate()`.\n *\n * @param selector The element to query, or a set of elements that contain Angular-specific\n * characteristics, specified with one or more of the following tokens.\n * - `query(\":enter\")` or `query(\":leave\")` : Query for newly inserted/removed elements (not\n * all elements can be queried via these tokens, see\n * [Entering and Leaving Elements](#entering-and-leaving-elements))\n * - `query(\":animating\")` : Query all currently animating elements.\n * - `query(\"@triggerName\")` : Query elements that contain an animation trigger.\n * - `query(\"@*\")` : Query all elements that contain an animation triggers.\n * - `query(\":self\")` : Include the current element into the animation sequence.\n *\n * @param animation One or more animation steps to apply to the queried element or elements.\n * An array is treated as an animation sequence.\n * @param options An options object. Use the 'limit' field to limit the total number of\n * items to collect.\n * @return An object that encapsulates the query data.\n *\n * @usageNotes\n *\n * ### Multiple Tokens\n *\n * Tokens can be merged into a combined query selector string. For example:\n *\n * ```ts\n * query(':self, .record:enter, .record:leave, @subTrigger', [...])\n * ```\n *\n * The `query()` function collects multiple elements and works internally by using\n * `element.querySelectorAll`. Use the `limit` field of an options object to limit\n * the total number of items to be collected. For example:\n *\n * ```js\n * query('div', [\n * animate(...),\n * animate(...)\n * ], { limit: 1 })\n * ```\n *\n * By default, throws an error when zero items are found. Set the\n * `optional` flag to ignore this error. For example:\n *\n * ```js\n * query('.some-element-that-may-not-be-there', [\n * animate(...),\n * animate(...)\n * ], { optional: true })\n * ```\n *\n * ### Entering and Leaving Elements\n *\n * Not all elements can be queried via the `:enter` and `:leave` tokens, the only ones\n * that can are those that Angular assumes can enter/leave based on their own logic\n * (if their insertion/removal is simply a consequence of that of their parent they\n * should be queried via a different token in their parent's `:enter`/`:leave` transitions).\n *\n * The only elements Angular assumes can enter/leave based on their own logic (thus the only\n * ones that can be queried via the `:enter` and `:leave` tokens) are:\n * - Those inserted dynamically (via `ViewContainerRef`)\n * - Those that have a structural directive (which, under the hood, are a subset of the above ones)\n *\n *
\n *\n * Note that elements will be successfully queried via `:enter`/`:leave` even if their\n * insertion/removal is not done manually via `ViewContainerRef`or caused by their structural\n * directive (e.g. they enter/exit alongside their parent).\n *\n *
\n *\n *
\n *\n * There is an exception to what previously mentioned, besides elements entering/leaving based on\n * their own logic, elements with an animation trigger can always be queried via `:leave` when\n * their parent is also leaving.\n *\n *
\n *\n * ### Usage Example\n *\n * The following example queries for inner elements and animates them\n * individually using `animate()`.\n *\n * ```angular-ts\n * @Component({\n * selector: 'inner',\n * template: `\n *
\n *

Title

\n *
\n * Blah blah blah\n *
\n *
\n * `,\n * animations: [\n * trigger('queryAnimation', [\n * transition('* => goAnimate', [\n * // hide the inner elements\n * query('h1', style({ opacity: 0 })),\n * query('.content', style({ opacity: 0 })),\n *\n * // animate the inner elements in, one by one\n * query('h1', animate(1000, style({ opacity: 1 }))),\n * query('.content', animate(1000, style({ opacity: 1 }))),\n * ])\n * ])\n * ]\n * })\n * class Cmp {\n * exp = '';\n *\n * goAnimate() {\n * this.exp = 'goAnimate';\n * }\n * }\n * ```\n *\n * @publicApi\n */\nfunction query(selector, animation, options = null) {\n return {\n type: AnimationMetadataType.Query,\n selector,\n animation,\n options\n };\n}\n/**\n * Use within an animation `query()` call to issue a timing gap after\n * each queried item is animated.\n *\n * @param timings A delay value.\n * @param animation One ore more animation steps.\n * @returns An object that encapsulates the stagger data.\n *\n * @usageNotes\n * In the following example, a container element wraps a list of items stamped out\n * by an `ngFor`. The container element contains an animation trigger that will later be set\n * to query for each of the inner items.\n *\n * Each time items are added, the opacity fade-in animation runs,\n * and each removed item is faded out.\n * When either of these animations occur, the stagger effect is\n * applied after each item's animation is started.\n *\n * ```html\n * \n * \n *
\n *
\n *
\n * {{ item }}\n *
\n *
\n * ```\n *\n * Here is the component code:\n *\n * ```ts\n * import {trigger, transition, style, animate, query, stagger} from '@angular/animations';\n * @Component({\n * templateUrl: 'list.component.html',\n * animations: [\n * trigger('listAnimation', [\n * ...\n * ])\n * ]\n * })\n * class ListComponent {\n * items = [];\n *\n * showItems() {\n * this.items = [0,1,2,3,4];\n * }\n *\n * hideItems() {\n * this.items = [];\n * }\n *\n * toggle() {\n * this.items.length ? this.hideItems() : this.showItems();\n * }\n * }\n * ```\n *\n * Here is the animation trigger code:\n *\n * ```ts\n * trigger('listAnimation', [\n * transition('* => *', [ // each time the binding value changes\n * query(':leave', [\n * stagger(100, [\n * animate('0.5s', style({ opacity: 0 }))\n * ])\n * ]),\n * query(':enter', [\n * style({ opacity: 0 }),\n * stagger(100, [\n * animate('0.5s', style({ opacity: 1 }))\n * ])\n * ])\n * ])\n * ])\n * ```\n *\n * @publicApi\n */\nfunction stagger(timings, animation) {\n return {\n type: AnimationMetadataType.Stagger,\n timings,\n animation\n };\n}\n\n/**\n * An injectable service that produces an animation sequence programmatically within an\n * Angular component or directive.\n * Provided by the `BrowserAnimationsModule` or `NoopAnimationsModule`.\n *\n * @usageNotes\n *\n * To use this service, add it to your component or directive as a dependency.\n * The service is instantiated along with your component.\n *\n * Apps do not typically need to create their own animation players, but if you\n * do need to, follow these steps:\n *\n * 1. Use the [AnimationBuilder.build](api/animations/AnimationBuilder#build)() method\n * to create a programmatic animation. The method returns an `AnimationFactory` instance.\n *\n * 2. Use the factory object to create an `AnimationPlayer` and attach it to a DOM element.\n *\n * 3. Use the player object to control the animation programmatically.\n *\n * For example:\n *\n * ```ts\n * // import the service from BrowserAnimationsModule\n * import {AnimationBuilder} from '@angular/animations';\n * // require the service as a dependency\n * class MyCmp {\n * constructor(private _builder: AnimationBuilder) {}\n *\n * makeAnimation(element: any) {\n * // first define a reusable animation\n * const myAnimation = this._builder.build([\n * style({ width: 0 }),\n * animate(1000, style({ width: '100px' }))\n * ]);\n *\n * // use the returned factory object to create a player\n * const player = myAnimation.create(element);\n *\n * player.play();\n * }\n * }\n * ```\n *\n * @publicApi\n */\nlet AnimationBuilder = /*#__PURE__*/(() => {\n class AnimationBuilder {\n static ɵfac = function AnimationBuilder_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || AnimationBuilder)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: AnimationBuilder,\n factory: () => (() => inject(BrowserAnimationBuilder))(),\n providedIn: 'root'\n });\n }\n return AnimationBuilder;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * A factory object returned from the\n * [AnimationBuilder.build](api/animations/AnimationBuilder#build)()\n * method.\n *\n * @publicApi\n */\nclass AnimationFactory {}\nlet BrowserAnimationBuilder = /*#__PURE__*/(() => {\n class BrowserAnimationBuilder extends AnimationBuilder {\n animationModuleType = inject(ANIMATION_MODULE_TYPE, {\n optional: true\n });\n _nextAnimationId = 0;\n _renderer;\n constructor(rootRenderer, doc) {\n super();\n const typeData = {\n id: '0',\n encapsulation: ViewEncapsulation.None,\n styles: [],\n data: {\n animation: []\n }\n };\n this._renderer = rootRenderer.createRenderer(doc.body, typeData);\n if (this.animationModuleType === null && !isAnimationRenderer(this._renderer)) {\n // We only support AnimationRenderer & DynamicDelegationRenderer for this AnimationBuilder\n throw new _RuntimeError(3600 /* RuntimeErrorCode.BROWSER_ANIMATION_BUILDER_INJECTED_WITHOUT_ANIMATIONS */, (typeof ngDevMode === 'undefined' || ngDevMode) && 'Angular detected that the `AnimationBuilder` was injected, but animation support was not enabled. ' + 'Please make sure that you enable animations in your application by calling `provideAnimations()` or `provideAnimationsAsync()` function.');\n }\n }\n build(animation) {\n const id = this._nextAnimationId;\n this._nextAnimationId++;\n const entry = Array.isArray(animation) ? sequence(animation) : animation;\n issueAnimationCommand(this._renderer, null, id, 'register', [entry]);\n return new BrowserAnimationFactory(id, this._renderer);\n }\n static ɵfac = function BrowserAnimationBuilder_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || BrowserAnimationBuilder)(i0.ɵɵinject(i0.RendererFactory2), i0.ɵɵinject(DOCUMENT));\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: BrowserAnimationBuilder,\n factory: BrowserAnimationBuilder.ɵfac,\n providedIn: 'root'\n });\n }\n return BrowserAnimationBuilder;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nclass BrowserAnimationFactory extends AnimationFactory {\n _id;\n _renderer;\n constructor(_id, _renderer) {\n super();\n this._id = _id;\n this._renderer = _renderer;\n }\n create(element, options) {\n return new RendererAnimationPlayer(this._id, element, options || {}, this._renderer);\n }\n}\nclass RendererAnimationPlayer {\n id;\n element;\n _renderer;\n parentPlayer = null;\n _started = false;\n constructor(id, element, options, _renderer) {\n this.id = id;\n this.element = element;\n this._renderer = _renderer;\n this._command('create', options);\n }\n _listen(eventName, callback) {\n return this._renderer.listen(this.element, `@@${this.id}:${eventName}`, callback);\n }\n _command(command, ...args) {\n issueAnimationCommand(this._renderer, this.element, this.id, command, args);\n }\n onDone(fn) {\n this._listen('done', fn);\n }\n onStart(fn) {\n this._listen('start', fn);\n }\n onDestroy(fn) {\n this._listen('destroy', fn);\n }\n init() {\n this._command('init');\n }\n hasStarted() {\n return this._started;\n }\n play() {\n this._command('play');\n this._started = true;\n }\n pause() {\n this._command('pause');\n }\n restart() {\n this._command('restart');\n }\n finish() {\n this._command('finish');\n }\n destroy() {\n this._command('destroy');\n }\n reset() {\n this._command('reset');\n this._started = false;\n }\n setPosition(p) {\n this._command('setPosition', p);\n }\n getPosition() {\n return unwrapAnimationRenderer(this._renderer)?.engine?.players[this.id]?.getPosition() ?? 0;\n }\n totalTime = 0;\n}\nfunction issueAnimationCommand(renderer, element, id, command, args) {\n renderer.setProperty(element, `@@${id}:${command}`, args);\n}\n/**\n * The following 2 methods cannot reference their correct types (AnimationRenderer &\n * DynamicDelegationRenderer) since this would introduce a import cycle.\n */\nfunction unwrapAnimationRenderer(renderer) {\n const type = renderer.ɵtype;\n if (type === 0 /* AnimationRendererType.Regular */) {\n return renderer;\n } else if (type === 1 /* AnimationRendererType.Delegated */) {\n return renderer.animationRenderer;\n }\n return null;\n}\nfunction isAnimationRenderer(renderer) {\n const type = renderer.ɵtype;\n return type === 0 /* AnimationRendererType.Regular */ || type === 1 /* AnimationRendererType.Delegated */;\n}\n\n/**\n * An empty programmatic controller for reusable animations.\n * Used internally when animations are disabled, to avoid\n * checking for the null case when an animation player is expected.\n *\n * @see {@link animate}\n * @see {@link AnimationPlayer}\n *\n * @publicApi\n */\nclass NoopAnimationPlayer {\n _onDoneFns = [];\n _onStartFns = [];\n _onDestroyFns = [];\n _originalOnDoneFns = [];\n _originalOnStartFns = [];\n _started = false;\n _destroyed = false;\n _finished = false;\n _position = 0;\n parentPlayer = null;\n totalTime;\n constructor(duration = 0, delay = 0) {\n this.totalTime = duration + delay;\n }\n _onFinish() {\n if (!this._finished) {\n this._finished = true;\n this._onDoneFns.forEach(fn => fn());\n this._onDoneFns = [];\n }\n }\n onStart(fn) {\n this._originalOnStartFns.push(fn);\n this._onStartFns.push(fn);\n }\n onDone(fn) {\n this._originalOnDoneFns.push(fn);\n this._onDoneFns.push(fn);\n }\n onDestroy(fn) {\n this._onDestroyFns.push(fn);\n }\n hasStarted() {\n return this._started;\n }\n init() {}\n play() {\n if (!this.hasStarted()) {\n this._onStart();\n this.triggerMicrotask();\n }\n this._started = true;\n }\n /** @internal */\n triggerMicrotask() {\n queueMicrotask(() => this._onFinish());\n }\n _onStart() {\n this._onStartFns.forEach(fn => fn());\n this._onStartFns = [];\n }\n pause() {}\n restart() {}\n finish() {\n this._onFinish();\n }\n destroy() {\n if (!this._destroyed) {\n this._destroyed = true;\n if (!this.hasStarted()) {\n this._onStart();\n }\n this.finish();\n this._onDestroyFns.forEach(fn => fn());\n this._onDestroyFns = [];\n }\n }\n reset() {\n this._started = false;\n this._finished = false;\n this._onStartFns = this._originalOnStartFns;\n this._onDoneFns = this._originalOnDoneFns;\n }\n setPosition(position) {\n this._position = this.totalTime ? position * this.totalTime : 1;\n }\n getPosition() {\n return this.totalTime ? this._position / this.totalTime : 1;\n }\n /** @internal */\n triggerCallback(phaseName) {\n const methods = phaseName == 'start' ? this._onStartFns : this._onDoneFns;\n methods.forEach(fn => fn());\n methods.length = 0;\n }\n}\n\n/**\n * A programmatic controller for a group of reusable animations.\n * Used internally to control animations.\n *\n * @see {@link AnimationPlayer}\n * @see {@link animations/group group}\n *\n */\nclass AnimationGroupPlayer {\n _onDoneFns = [];\n _onStartFns = [];\n _finished = false;\n _started = false;\n _destroyed = false;\n _onDestroyFns = [];\n parentPlayer = null;\n totalTime = 0;\n players;\n constructor(_players) {\n this.players = _players;\n let doneCount = 0;\n let destroyCount = 0;\n let startCount = 0;\n const total = this.players.length;\n if (total == 0) {\n queueMicrotask(() => this._onFinish());\n } else {\n this.players.forEach(player => {\n player.onDone(() => {\n if (++doneCount == total) {\n this._onFinish();\n }\n });\n player.onDestroy(() => {\n if (++destroyCount == total) {\n this._onDestroy();\n }\n });\n player.onStart(() => {\n if (++startCount == total) {\n this._onStart();\n }\n });\n });\n }\n this.totalTime = this.players.reduce((time, player) => Math.max(time, player.totalTime), 0);\n }\n _onFinish() {\n if (!this._finished) {\n this._finished = true;\n this._onDoneFns.forEach(fn => fn());\n this._onDoneFns = [];\n }\n }\n init() {\n this.players.forEach(player => player.init());\n }\n onStart(fn) {\n this._onStartFns.push(fn);\n }\n _onStart() {\n if (!this.hasStarted()) {\n this._started = true;\n this._onStartFns.forEach(fn => fn());\n this._onStartFns = [];\n }\n }\n onDone(fn) {\n this._onDoneFns.push(fn);\n }\n onDestroy(fn) {\n this._onDestroyFns.push(fn);\n }\n hasStarted() {\n return this._started;\n }\n play() {\n if (!this.parentPlayer) {\n this.init();\n }\n this._onStart();\n this.players.forEach(player => player.play());\n }\n pause() {\n this.players.forEach(player => player.pause());\n }\n restart() {\n this.players.forEach(player => player.restart());\n }\n finish() {\n this._onFinish();\n this.players.forEach(player => player.finish());\n }\n destroy() {\n this._onDestroy();\n }\n _onDestroy() {\n if (!this._destroyed) {\n this._destroyed = true;\n this._onFinish();\n this.players.forEach(player => player.destroy());\n this._onDestroyFns.forEach(fn => fn());\n this._onDestroyFns = [];\n }\n }\n reset() {\n this.players.forEach(player => player.reset());\n this._destroyed = false;\n this._finished = false;\n this._started = false;\n }\n setPosition(p) {\n const timeAtPosition = p * this.totalTime;\n this.players.forEach(player => {\n const position = player.totalTime ? Math.min(1, timeAtPosition / player.totalTime) : 1;\n player.setPosition(position);\n });\n }\n getPosition() {\n const longestPlayer = this.players.reduce((longestSoFar, player) => {\n const newPlayerIsLongest = longestSoFar === null || player.totalTime > longestSoFar.totalTime;\n return newPlayerIsLongest ? player : longestSoFar;\n }, null);\n return longestPlayer != null ? longestPlayer.getPosition() : 0;\n }\n beforeDestroy() {\n this.players.forEach(player => {\n if (player.beforeDestroy) {\n player.beforeDestroy();\n }\n });\n }\n /** @internal */\n triggerCallback(phaseName) {\n const methods = phaseName == 'start' ? this._onStartFns : this._onDoneFns;\n methods.forEach(fn => fn());\n methods.length = 0;\n }\n}\nconst ɵPRE_STYLE = '!';\nexport { AUTO_STYLE, AnimationBuilder, AnimationFactory, AnimationMetadataType, NoopAnimationPlayer, animate, animateChild, animation, group, keyframes, query, sequence, stagger, state, style, transition, trigger, useAnimation, AnimationGroupPlayer as ɵAnimationGroupPlayer, BrowserAnimationBuilder as ɵBrowserAnimationBuilder, ɵPRE_STYLE };\n","/**\n * @license Angular v19.2.2\n * (c) 2010-2025 Google LLC. https://angular.io/\n * License: MIT\n */\n\nimport { ɵAnimationGroupPlayer as _AnimationGroupPlayer, NoopAnimationPlayer, AUTO_STYLE, ɵPRE_STYLE as _PRE_STYLE, AnimationMetadataType, sequence, style } from '@angular/animations';\nimport * as i0 from '@angular/core';\nimport { ɵRuntimeError as _RuntimeError, Injectable } from '@angular/core';\nconst LINE_START = '\\n - ';\nfunction invalidTimingValue(exp) {\n return new _RuntimeError(3000 /* RuntimeErrorCode.INVALID_TIMING_VALUE */, ngDevMode && `The provided timing value \"${exp}\" is invalid.`);\n}\nfunction negativeStepValue() {\n return new _RuntimeError(3100 /* RuntimeErrorCode.NEGATIVE_STEP_VALUE */, ngDevMode && 'Duration values below 0 are not allowed for this animation step.');\n}\nfunction negativeDelayValue() {\n return new _RuntimeError(3101 /* RuntimeErrorCode.NEGATIVE_DELAY_VALUE */, ngDevMode && 'Delay values below 0 are not allowed for this animation step.');\n}\nfunction invalidStyleParams(varName) {\n return new _RuntimeError(3001 /* RuntimeErrorCode.INVALID_STYLE_PARAMS */, ngDevMode && `Unable to resolve the local animation param ${varName} in the given list of values`);\n}\nfunction invalidParamValue(varName) {\n return new _RuntimeError(3003 /* RuntimeErrorCode.INVALID_PARAM_VALUE */, ngDevMode && `Please provide a value for the animation param ${varName}`);\n}\nfunction invalidNodeType(nodeType) {\n return new _RuntimeError(3004 /* RuntimeErrorCode.INVALID_NODE_TYPE */, ngDevMode && `Unable to resolve animation metadata node #${nodeType}`);\n}\nfunction invalidCssUnitValue(userProvidedProperty, value) {\n return new _RuntimeError(3005 /* RuntimeErrorCode.INVALID_CSS_UNIT_VALUE */, ngDevMode && `Please provide a CSS unit value for ${userProvidedProperty}:${value}`);\n}\nfunction invalidTrigger() {\n return new _RuntimeError(3006 /* RuntimeErrorCode.INVALID_TRIGGER */, ngDevMode && \"animation triggers cannot be prefixed with an `@` sign (e.g. trigger('@foo', [...]))\");\n}\nfunction invalidDefinition() {\n return new _RuntimeError(3007 /* RuntimeErrorCode.INVALID_DEFINITION */, ngDevMode && 'only state() and transition() definitions can sit inside of a trigger()');\n}\nfunction invalidState(metadataName, missingSubs) {\n return new _RuntimeError(3008 /* RuntimeErrorCode.INVALID_STATE */, ngDevMode && `state(\"${metadataName}\", ...) must define default values for all the following style substitutions: ${missingSubs.join(', ')}`);\n}\nfunction invalidStyleValue(value) {\n return new _RuntimeError(3002 /* RuntimeErrorCode.INVALID_STYLE_VALUE */, ngDevMode && `The provided style string value ${value} is not allowed.`);\n}\nfunction invalidParallelAnimation(prop, firstStart, firstEnd, secondStart, secondEnd) {\n return new _RuntimeError(3010 /* RuntimeErrorCode.INVALID_PARALLEL_ANIMATION */, ngDevMode && `The CSS property \"${prop}\" that exists between the times of \"${firstStart}ms\" and \"${firstEnd}ms\" is also being animated in a parallel animation between the times of \"${secondStart}ms\" and \"${secondEnd}ms\"`);\n}\nfunction invalidKeyframes() {\n return new _RuntimeError(3011 /* RuntimeErrorCode.INVALID_KEYFRAMES */, ngDevMode && `keyframes() must be placed inside of a call to animate()`);\n}\nfunction invalidOffset() {\n return new _RuntimeError(3012 /* RuntimeErrorCode.INVALID_OFFSET */, ngDevMode && `Please ensure that all keyframe offsets are between 0 and 1`);\n}\nfunction keyframeOffsetsOutOfOrder() {\n return new _RuntimeError(3200 /* RuntimeErrorCode.KEYFRAME_OFFSETS_OUT_OF_ORDER */, ngDevMode && `Please ensure that all keyframe offsets are in order`);\n}\nfunction keyframesMissingOffsets() {\n return new _RuntimeError(3202 /* RuntimeErrorCode.KEYFRAMES_MISSING_OFFSETS */, ngDevMode && `Not all style() steps within the declared keyframes() contain offsets`);\n}\nfunction invalidStagger() {\n return new _RuntimeError(3013 /* RuntimeErrorCode.INVALID_STAGGER */, ngDevMode && `stagger() can only be used inside of query()`);\n}\nfunction invalidQuery(selector) {\n return new _RuntimeError(3014 /* RuntimeErrorCode.INVALID_QUERY */, ngDevMode && `\\`query(\"${selector}\")\\` returned zero elements. (Use \\`query(\"${selector}\", { optional: true })\\` if you wish to allow this.)`);\n}\nfunction invalidExpression(expr) {\n return new _RuntimeError(3015 /* RuntimeErrorCode.INVALID_EXPRESSION */, ngDevMode && `The provided transition expression \"${expr}\" is not supported`);\n}\nfunction invalidTransitionAlias(alias) {\n return new _RuntimeError(3016 /* RuntimeErrorCode.INVALID_TRANSITION_ALIAS */, ngDevMode && `The transition alias value \"${alias}\" is not supported`);\n}\nfunction validationFailed(errors) {\n return new _RuntimeError(3500 /* RuntimeErrorCode.VALIDATION_FAILED */, ngDevMode && `animation validation failed:\\n${errors.map(err => err.message).join('\\n')}`);\n}\nfunction buildingFailed(errors) {\n return new _RuntimeError(3501 /* RuntimeErrorCode.BUILDING_FAILED */, ngDevMode && `animation building failed:\\n${errors.map(err => err.message).join('\\n')}`);\n}\nfunction triggerBuildFailed(name, errors) {\n return new _RuntimeError(3404 /* RuntimeErrorCode.TRIGGER_BUILD_FAILED */, ngDevMode && `The animation trigger \"${name}\" has failed to build due to the following errors:\\n - ${errors.map(err => err.message).join('\\n - ')}`);\n}\nfunction animationFailed(errors) {\n return new _RuntimeError(3502 /* RuntimeErrorCode.ANIMATION_FAILED */, ngDevMode && `Unable to animate due to the following errors:${LINE_START}${errors.map(err => err.message).join(LINE_START)}`);\n}\nfunction registerFailed(errors) {\n return new _RuntimeError(3503 /* RuntimeErrorCode.REGISTRATION_FAILED */, ngDevMode && `Unable to build the animation due to the following errors: ${errors.map(err => err.message).join('\\n')}`);\n}\nfunction missingOrDestroyedAnimation() {\n return new _RuntimeError(3300 /* RuntimeErrorCode.MISSING_OR_DESTROYED_ANIMATION */, ngDevMode && \"The requested animation doesn't exist or has already been destroyed\");\n}\nfunction createAnimationFailed(errors) {\n return new _RuntimeError(3504 /* RuntimeErrorCode.CREATE_ANIMATION_FAILED */, ngDevMode && `Unable to create the animation due to the following errors:${errors.map(err => err.message).join('\\n')}`);\n}\nfunction missingPlayer(id) {\n return new _RuntimeError(3301 /* RuntimeErrorCode.MISSING_PLAYER */, ngDevMode && `Unable to find the timeline player referenced by ${id}`);\n}\nfunction missingTrigger(phase, name) {\n return new _RuntimeError(3302 /* RuntimeErrorCode.MISSING_TRIGGER */, ngDevMode && `Unable to listen on the animation trigger event \"${phase}\" because the animation trigger \"${name}\" doesn\\'t exist!`);\n}\nfunction missingEvent(name) {\n return new _RuntimeError(3303 /* RuntimeErrorCode.MISSING_EVENT */, ngDevMode && `Unable to listen on the animation trigger \"${name}\" because the provided event is undefined!`);\n}\nfunction unsupportedTriggerEvent(phase, name) {\n return new _RuntimeError(3400 /* RuntimeErrorCode.UNSUPPORTED_TRIGGER_EVENT */, ngDevMode && `The provided animation trigger event \"${phase}\" for the animation trigger \"${name}\" is not supported!`);\n}\nfunction unregisteredTrigger(name) {\n return new _RuntimeError(3401 /* RuntimeErrorCode.UNREGISTERED_TRIGGER */, ngDevMode && `The provided animation trigger \"${name}\" has not been registered!`);\n}\nfunction triggerTransitionsFailed(errors) {\n return new _RuntimeError(3402 /* RuntimeErrorCode.TRIGGER_TRANSITIONS_FAILED */, ngDevMode && `Unable to process animations due to the following failed trigger transitions\\n ${errors.map(err => err.message).join('\\n')}`);\n}\nfunction transitionFailed(name, errors) {\n return new _RuntimeError(3505 /* RuntimeErrorCode.TRANSITION_FAILED */, ngDevMode && `@${name} has failed due to:\\n ${errors.map(err => err.message).join('\\n- ')}`);\n}\n\n/**\n * Set of all animatable CSS properties\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_animated_properties\n */\nconst ANIMATABLE_PROP_SET = /*#__PURE__*/new Set(['-moz-outline-radius', '-moz-outline-radius-bottomleft', '-moz-outline-radius-bottomright', '-moz-outline-radius-topleft', '-moz-outline-radius-topright', '-ms-grid-columns', '-ms-grid-rows', '-webkit-line-clamp', '-webkit-text-fill-color', '-webkit-text-stroke', '-webkit-text-stroke-color', 'accent-color', 'all', 'backdrop-filter', 'background', 'background-color', 'background-position', 'background-size', 'block-size', 'border', 'border-block-end', 'border-block-end-color', 'border-block-end-width', 'border-block-start', 'border-block-start-color', 'border-block-start-width', 'border-bottom', 'border-bottom-color', 'border-bottom-left-radius', 'border-bottom-right-radius', 'border-bottom-width', 'border-color', 'border-end-end-radius', 'border-end-start-radius', 'border-image-outset', 'border-image-slice', 'border-image-width', 'border-inline-end', 'border-inline-end-color', 'border-inline-end-width', 'border-inline-start', 'border-inline-start-color', 'border-inline-start-width', 'border-left', 'border-left-color', 'border-left-width', 'border-radius', 'border-right', 'border-right-color', 'border-right-width', 'border-start-end-radius', 'border-start-start-radius', 'border-top', 'border-top-color', 'border-top-left-radius', 'border-top-right-radius', 'border-top-width', 'border-width', 'bottom', 'box-shadow', 'caret-color', 'clip', 'clip-path', 'color', 'column-count', 'column-gap', 'column-rule', 'column-rule-color', 'column-rule-width', 'column-width', 'columns', 'filter', 'flex', 'flex-basis', 'flex-grow', 'flex-shrink', 'font', 'font-size', 'font-size-adjust', 'font-stretch', 'font-variation-settings', 'font-weight', 'gap', 'grid-column-gap', 'grid-gap', 'grid-row-gap', 'grid-template-columns', 'grid-template-rows', 'height', 'inline-size', 'input-security', 'inset', 'inset-block', 'inset-block-end', 'inset-block-start', 'inset-inline', 'inset-inline-end', 'inset-inline-start', 'left', 'letter-spacing', 'line-clamp', 'line-height', 'margin', 'margin-block-end', 'margin-block-start', 'margin-bottom', 'margin-inline-end', 'margin-inline-start', 'margin-left', 'margin-right', 'margin-top', 'mask', 'mask-border', 'mask-position', 'mask-size', 'max-block-size', 'max-height', 'max-inline-size', 'max-lines', 'max-width', 'min-block-size', 'min-height', 'min-inline-size', 'min-width', 'object-position', 'offset', 'offset-anchor', 'offset-distance', 'offset-path', 'offset-position', 'offset-rotate', 'opacity', 'order', 'outline', 'outline-color', 'outline-offset', 'outline-width', 'padding', 'padding-block-end', 'padding-block-start', 'padding-bottom', 'padding-inline-end', 'padding-inline-start', 'padding-left', 'padding-right', 'padding-top', 'perspective', 'perspective-origin', 'right', 'rotate', 'row-gap', 'scale', 'scroll-margin', 'scroll-margin-block', 'scroll-margin-block-end', 'scroll-margin-block-start', 'scroll-margin-bottom', 'scroll-margin-inline', 'scroll-margin-inline-end', 'scroll-margin-inline-start', 'scroll-margin-left', 'scroll-margin-right', 'scroll-margin-top', 'scroll-padding', 'scroll-padding-block', 'scroll-padding-block-end', 'scroll-padding-block-start', 'scroll-padding-bottom', 'scroll-padding-inline', 'scroll-padding-inline-end', 'scroll-padding-inline-start', 'scroll-padding-left', 'scroll-padding-right', 'scroll-padding-top', 'scroll-snap-coordinate', 'scroll-snap-destination', 'scrollbar-color', 'shape-image-threshold', 'shape-margin', 'shape-outside', 'tab-size', 'text-decoration', 'text-decoration-color', 'text-decoration-thickness', 'text-emphasis', 'text-emphasis-color', 'text-indent', 'text-shadow', 'text-underline-offset', 'top', 'transform', 'transform-origin', 'translate', 'vertical-align', 'visibility', 'width', 'word-spacing', 'z-index', 'zoom']);\nfunction optimizeGroupPlayer(players) {\n switch (players.length) {\n case 0:\n return new NoopAnimationPlayer();\n case 1:\n return players[0];\n default:\n return new _AnimationGroupPlayer(players);\n }\n}\nfunction normalizeKeyframes$1(normalizer, keyframes, preStyles = new Map(), postStyles = new Map()) {\n const errors = [];\n const normalizedKeyframes = [];\n let previousOffset = -1;\n let previousKeyframe = null;\n keyframes.forEach(kf => {\n const offset = kf.get('offset');\n const isSameOffset = offset == previousOffset;\n const normalizedKeyframe = isSameOffset && previousKeyframe || new Map();\n kf.forEach((val, prop) => {\n let normalizedProp = prop;\n let normalizedValue = val;\n if (prop !== 'offset') {\n normalizedProp = normalizer.normalizePropertyName(normalizedProp, errors);\n switch (normalizedValue) {\n case _PRE_STYLE:\n normalizedValue = preStyles.get(prop);\n break;\n case AUTO_STYLE:\n normalizedValue = postStyles.get(prop);\n break;\n default:\n normalizedValue = normalizer.normalizeStyleValue(prop, normalizedProp, normalizedValue, errors);\n break;\n }\n }\n normalizedKeyframe.set(normalizedProp, normalizedValue);\n });\n if (!isSameOffset) {\n normalizedKeyframes.push(normalizedKeyframe);\n }\n previousKeyframe = normalizedKeyframe;\n previousOffset = offset;\n });\n if (errors.length) {\n throw animationFailed(errors);\n }\n return normalizedKeyframes;\n}\nfunction listenOnPlayer(player, eventName, event, callback) {\n switch (eventName) {\n case 'start':\n player.onStart(() => callback(event && copyAnimationEvent(event, 'start', player)));\n break;\n case 'done':\n player.onDone(() => callback(event && copyAnimationEvent(event, 'done', player)));\n break;\n case 'destroy':\n player.onDestroy(() => callback(event && copyAnimationEvent(event, 'destroy', player)));\n break;\n }\n}\nfunction copyAnimationEvent(e, phaseName, player) {\n const totalTime = player.totalTime;\n const disabled = player.disabled ? true : false;\n const event = makeAnimationEvent(e.element, e.triggerName, e.fromState, e.toState, phaseName || e.phaseName, totalTime == undefined ? e.totalTime : totalTime, disabled);\n const data = e['_data'];\n if (data != null) {\n event['_data'] = data;\n }\n return event;\n}\nfunction makeAnimationEvent(element, triggerName, fromState, toState, phaseName = '', totalTime = 0, disabled) {\n return {\n element,\n triggerName,\n fromState,\n toState,\n phaseName,\n totalTime,\n disabled: !!disabled\n };\n}\nfunction getOrSetDefaultValue(map, key, defaultValue) {\n let value = map.get(key);\n if (!value) {\n map.set(key, value = defaultValue);\n }\n return value;\n}\nfunction parseTimelineCommand(command) {\n const separatorPos = command.indexOf(':');\n const id = command.substring(1, separatorPos);\n const action = command.slice(separatorPos + 1);\n return [id, action];\n}\nconst documentElement = /* @__PURE__ */(() => typeof document === 'undefined' ? null : document.documentElement)();\nfunction getParentElement(element) {\n const parent = element.parentNode || element.host || null; // consider host to support shadow DOM\n if (parent === documentElement) {\n return null;\n }\n return parent;\n}\nfunction containsVendorPrefix(prop) {\n // Webkit is the only real popular vendor prefix nowadays\n // cc: http://shouldiprefix.com/\n return prop.substring(1, 6) == 'ebkit'; // webkit or Webkit\n}\nlet _CACHED_BODY = null;\nlet _IS_WEBKIT = false;\nfunction validateStyleProperty(prop) {\n if (!_CACHED_BODY) {\n _CACHED_BODY = getBodyNode() || {};\n _IS_WEBKIT = _CACHED_BODY.style ? 'WebkitAppearance' in _CACHED_BODY.style : false;\n }\n let result = true;\n if (_CACHED_BODY.style && !containsVendorPrefix(prop)) {\n result = prop in _CACHED_BODY.style;\n if (!result && _IS_WEBKIT) {\n const camelProp = 'Webkit' + prop.charAt(0).toUpperCase() + prop.slice(1);\n result = camelProp in _CACHED_BODY.style;\n }\n }\n return result;\n}\nfunction validateWebAnimatableStyleProperty(prop) {\n return ANIMATABLE_PROP_SET.has(prop);\n}\nfunction getBodyNode() {\n if (typeof document != 'undefined') {\n return document.body;\n }\n return null;\n}\nfunction containsElement(elm1, elm2) {\n while (elm2) {\n if (elm2 === elm1) {\n return true;\n }\n elm2 = getParentElement(elm2);\n }\n return false;\n}\nfunction invokeQuery(element, selector, multi) {\n if (multi) {\n return Array.from(element.querySelectorAll(selector));\n }\n const elem = element.querySelector(selector);\n return elem ? [elem] : [];\n}\n\n/**\n * @publicApi\n *\n * `AnimationDriver` implentation for Noop animations\n */\nlet NoopAnimationDriver = /*#__PURE__*/(() => {\n class NoopAnimationDriver {\n /**\n * @returns Whether `prop` is a valid CSS property\n */\n validateStyleProperty(prop) {\n return validateStyleProperty(prop);\n }\n /**\n *\n * @returns Whether elm1 contains elm2.\n */\n containsElement(elm1, elm2) {\n return containsElement(elm1, elm2);\n }\n /**\n * @returns Rhe parent of the given element or `null` if the element is the `document`\n */\n getParentElement(element) {\n return getParentElement(element);\n }\n /**\n * @returns The result of the query selector on the element. The array will contain up to 1 item\n * if `multi` is `false`.\n */\n query(element, selector, multi) {\n return invokeQuery(element, selector, multi);\n }\n /**\n * @returns The `defaultValue` or empty string\n */\n computeStyle(element, prop, defaultValue) {\n return defaultValue || '';\n }\n /**\n * @returns An `NoopAnimationPlayer`\n */\n animate(element, keyframes, duration, delay, easing, previousPlayers = [], scrubberAccessRequested) {\n return new NoopAnimationPlayer(duration, delay);\n }\n static ɵfac = function NoopAnimationDriver_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NoopAnimationDriver)();\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: NoopAnimationDriver,\n factory: NoopAnimationDriver.ɵfac\n });\n }\n return NoopAnimationDriver;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * @publicApi\n */\nclass AnimationDriver {\n /**\n * @deprecated Use the NoopAnimationDriver class.\n */\n static NOOP = /*#__PURE__*/new NoopAnimationDriver();\n}\nclass AnimationStyleNormalizer {}\nclass NoopAnimationStyleNormalizer {\n normalizePropertyName(propertyName, errors) {\n return propertyName;\n }\n normalizeStyleValue(userProvidedProperty, normalizedProperty, value, errors) {\n return value;\n }\n}\nconst ONE_SECOND = 1000;\nconst SUBSTITUTION_EXPR_START = '{{';\nconst SUBSTITUTION_EXPR_END = '}}';\nconst ENTER_CLASSNAME = 'ng-enter';\nconst LEAVE_CLASSNAME = 'ng-leave';\nconst NG_TRIGGER_CLASSNAME = 'ng-trigger';\nconst NG_TRIGGER_SELECTOR = '.ng-trigger';\nconst NG_ANIMATING_CLASSNAME = 'ng-animating';\nconst NG_ANIMATING_SELECTOR = '.ng-animating';\nfunction resolveTimingValue(value) {\n if (typeof value == 'number') return value;\n const matches = value.match(/^(-?[\\.\\d]+)(m?s)/);\n if (!matches || matches.length < 2) return 0;\n return _convertTimeValueToMS(parseFloat(matches[1]), matches[2]);\n}\nfunction _convertTimeValueToMS(value, unit) {\n switch (unit) {\n case 's':\n return value * ONE_SECOND;\n default:\n // ms or something else\n return value;\n }\n}\nfunction resolveTiming(timings, errors, allowNegativeValues) {\n return timings.hasOwnProperty('duration') ? timings : parseTimeExpression(timings, errors, allowNegativeValues);\n}\nfunction parseTimeExpression(exp, errors, allowNegativeValues) {\n const regex = /^(-?[\\.\\d]+)(m?s)(?:\\s+(-?[\\.\\d]+)(m?s))?(?:\\s+([-a-z]+(?:\\(.+?\\))?))?$/i;\n let duration;\n let delay = 0;\n let easing = '';\n if (typeof exp === 'string') {\n const matches = exp.match(regex);\n if (matches === null) {\n errors.push(invalidTimingValue(exp));\n return {\n duration: 0,\n delay: 0,\n easing: ''\n };\n }\n duration = _convertTimeValueToMS(parseFloat(matches[1]), matches[2]);\n const delayMatch = matches[3];\n if (delayMatch != null) {\n delay = _convertTimeValueToMS(parseFloat(delayMatch), matches[4]);\n }\n const easingVal = matches[5];\n if (easingVal) {\n easing = easingVal;\n }\n } else {\n duration = exp;\n }\n if (!allowNegativeValues) {\n let containsErrors = false;\n let startIndex = errors.length;\n if (duration < 0) {\n errors.push(negativeStepValue());\n containsErrors = true;\n }\n if (delay < 0) {\n errors.push(negativeDelayValue());\n containsErrors = true;\n }\n if (containsErrors) {\n errors.splice(startIndex, 0, invalidTimingValue(exp));\n }\n }\n return {\n duration,\n delay,\n easing\n };\n}\nfunction normalizeKeyframes(keyframes) {\n if (!keyframes.length) {\n return [];\n }\n if (keyframes[0] instanceof Map) {\n return keyframes;\n }\n return keyframes.map(kf => new Map(Object.entries(kf)));\n}\nfunction normalizeStyles(styles) {\n return Array.isArray(styles) ? new Map(...styles) : new Map(styles);\n}\nfunction setStyles(element, styles, formerStyles) {\n styles.forEach((val, prop) => {\n const camelProp = dashCaseToCamelCase(prop);\n if (formerStyles && !formerStyles.has(prop)) {\n formerStyles.set(prop, element.style[camelProp]);\n }\n element.style[camelProp] = val;\n });\n}\nfunction eraseStyles(element, styles) {\n styles.forEach((_, prop) => {\n const camelProp = dashCaseToCamelCase(prop);\n element.style[camelProp] = '';\n });\n}\nfunction normalizeAnimationEntry(steps) {\n if (Array.isArray(steps)) {\n if (steps.length == 1) return steps[0];\n return sequence(steps);\n }\n return steps;\n}\nfunction validateStyleParams(value, options, errors) {\n const params = options.params || {};\n const matches = extractStyleParams(value);\n if (matches.length) {\n matches.forEach(varName => {\n if (!params.hasOwnProperty(varName)) {\n errors.push(invalidStyleParams(varName));\n }\n });\n }\n}\nconst PARAM_REGEX = /* @__PURE__ */new RegExp(`${SUBSTITUTION_EXPR_START}\\\\s*(.+?)\\\\s*${SUBSTITUTION_EXPR_END}`, 'g');\nfunction extractStyleParams(value) {\n let params = [];\n if (typeof value === 'string') {\n let match;\n while (match = PARAM_REGEX.exec(value)) {\n params.push(match[1]);\n }\n PARAM_REGEX.lastIndex = 0;\n }\n return params;\n}\nfunction interpolateParams(value, params, errors) {\n const original = `${value}`;\n const str = original.replace(PARAM_REGEX, (_, varName) => {\n let localVal = params[varName];\n // this means that the value was never overridden by the data passed in by the user\n if (localVal == null) {\n errors.push(invalidParamValue(varName));\n localVal = '';\n }\n return localVal.toString();\n });\n // we do this to assert that numeric values stay as they are\n return str == original ? value : str;\n}\nconst DASH_CASE_REGEXP = /-+([a-z0-9])/g;\nfunction dashCaseToCamelCase(input) {\n return input.replace(DASH_CASE_REGEXP, (...m) => m[1].toUpperCase());\n}\nfunction camelCaseToDashCase(input) {\n return input.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();\n}\nfunction allowPreviousPlayerStylesMerge(duration, delay) {\n return duration === 0 || delay === 0;\n}\nfunction balancePreviousStylesIntoKeyframes(element, keyframes, previousStyles) {\n if (previousStyles.size && keyframes.length) {\n let startingKeyframe = keyframes[0];\n let missingStyleProps = [];\n previousStyles.forEach((val, prop) => {\n if (!startingKeyframe.has(prop)) {\n missingStyleProps.push(prop);\n }\n startingKeyframe.set(prop, val);\n });\n if (missingStyleProps.length) {\n for (let i = 1; i < keyframes.length; i++) {\n let kf = keyframes[i];\n missingStyleProps.forEach(prop => kf.set(prop, computeStyle(element, prop)));\n }\n }\n }\n return keyframes;\n}\nfunction visitDslNode(visitor, node, context) {\n switch (node.type) {\n case AnimationMetadataType.Trigger:\n return visitor.visitTrigger(node, context);\n case AnimationMetadataType.State:\n return visitor.visitState(node, context);\n case AnimationMetadataType.Transition:\n return visitor.visitTransition(node, context);\n case AnimationMetadataType.Sequence:\n return visitor.visitSequence(node, context);\n case AnimationMetadataType.Group:\n return visitor.visitGroup(node, context);\n case AnimationMetadataType.Animate:\n return visitor.visitAnimate(node, context);\n case AnimationMetadataType.Keyframes:\n return visitor.visitKeyframes(node, context);\n case AnimationMetadataType.Style:\n return visitor.visitStyle(node, context);\n case AnimationMetadataType.Reference:\n return visitor.visitReference(node, context);\n case AnimationMetadataType.AnimateChild:\n return visitor.visitAnimateChild(node, context);\n case AnimationMetadataType.AnimateRef:\n return visitor.visitAnimateRef(node, context);\n case AnimationMetadataType.Query:\n return visitor.visitQuery(node, context);\n case AnimationMetadataType.Stagger:\n return visitor.visitStagger(node, context);\n default:\n throw invalidNodeType(node.type);\n }\n}\nfunction computeStyle(element, prop) {\n return window.getComputedStyle(element)[prop];\n}\nconst DIMENSIONAL_PROP_SET = /*#__PURE__*/new Set(['width', 'height', 'minWidth', 'minHeight', 'maxWidth', 'maxHeight', 'left', 'top', 'bottom', 'right', 'fontSize', 'outlineWidth', 'outlineOffset', 'paddingTop', 'paddingLeft', 'paddingBottom', 'paddingRight', 'marginTop', 'marginLeft', 'marginBottom', 'marginRight', 'borderRadius', 'borderWidth', 'borderTopWidth', 'borderLeftWidth', 'borderRightWidth', 'borderBottomWidth', 'textIndent', 'perspective']);\nclass WebAnimationsStyleNormalizer extends AnimationStyleNormalizer {\n normalizePropertyName(propertyName, errors) {\n return dashCaseToCamelCase(propertyName);\n }\n normalizeStyleValue(userProvidedProperty, normalizedProperty, value, errors) {\n let unit = '';\n const strVal = value.toString().trim();\n if (DIMENSIONAL_PROP_SET.has(normalizedProperty) && value !== 0 && value !== '0') {\n if (typeof value === 'number') {\n unit = 'px';\n } else {\n const valAndSuffixMatch = value.match(/^[+-]?[\\d\\.]+([a-z]*)$/);\n if (valAndSuffixMatch && valAndSuffixMatch[1].length == 0) {\n errors.push(invalidCssUnitValue(userProvidedProperty, value));\n }\n }\n }\n return strVal + unit;\n }\n}\nfunction createListOfWarnings(warnings) {\n const LINE_START = '\\n - ';\n return `${LINE_START}${warnings.filter(Boolean).map(warning => warning).join(LINE_START)}`;\n}\nfunction warnValidation(warnings) {\n console.warn(`animation validation warnings:${createListOfWarnings(warnings)}`);\n}\nfunction warnTriggerBuild(name, warnings) {\n console.warn(`The animation trigger \"${name}\" has built with the following warnings:${createListOfWarnings(warnings)}`);\n}\nfunction warnRegister(warnings) {\n console.warn(`Animation built with the following warnings:${createListOfWarnings(warnings)}`);\n}\nfunction pushUnrecognizedPropertiesWarning(warnings, props) {\n if (props.length) {\n warnings.push(`The following provided properties are not recognized: ${props.join(', ')}`);\n }\n}\nconst ANY_STATE = '*';\nfunction parseTransitionExpr(transitionValue, errors) {\n const expressions = [];\n if (typeof transitionValue == 'string') {\n transitionValue.split(/\\s*,\\s*/).forEach(str => parseInnerTransitionStr(str, expressions, errors));\n } else {\n expressions.push(transitionValue);\n }\n return expressions;\n}\nfunction parseInnerTransitionStr(eventStr, expressions, errors) {\n if (eventStr[0] == ':') {\n const result = parseAnimationAlias(eventStr, errors);\n if (typeof result == 'function') {\n expressions.push(result);\n return;\n }\n eventStr = result;\n }\n const match = eventStr.match(/^(\\*|[-\\w]+)\\s*()\\s*(\\*|[-\\w]+)$/);\n if (match == null || match.length < 4) {\n errors.push(invalidExpression(eventStr));\n return expressions;\n }\n const fromState = match[1];\n const separator = match[2];\n const toState = match[3];\n expressions.push(makeLambdaFromStates(fromState, toState));\n const isFullAnyStateExpr = fromState == ANY_STATE && toState == ANY_STATE;\n if (separator[0] == '<' && !isFullAnyStateExpr) {\n expressions.push(makeLambdaFromStates(toState, fromState));\n }\n return;\n}\nfunction parseAnimationAlias(alias, errors) {\n switch (alias) {\n case ':enter':\n return 'void => *';\n case ':leave':\n return '* => void';\n case ':increment':\n return (fromState, toState) => parseFloat(toState) > parseFloat(fromState);\n case ':decrement':\n return (fromState, toState) => parseFloat(toState) < parseFloat(fromState);\n default:\n errors.push(invalidTransitionAlias(alias));\n return '* => *';\n }\n}\n// DO NOT REFACTOR ... keep the follow set instantiations\n// with the values intact (closure compiler for some reason\n// removes follow-up lines that add the values outside of\n// the constructor...\nconst TRUE_BOOLEAN_VALUES = /*#__PURE__*/new Set(['true', '1']);\nconst FALSE_BOOLEAN_VALUES = /*#__PURE__*/new Set(['false', '0']);\nfunction makeLambdaFromStates(lhs, rhs) {\n const LHS_MATCH_BOOLEAN = TRUE_BOOLEAN_VALUES.has(lhs) || FALSE_BOOLEAN_VALUES.has(lhs);\n const RHS_MATCH_BOOLEAN = TRUE_BOOLEAN_VALUES.has(rhs) || FALSE_BOOLEAN_VALUES.has(rhs);\n return (fromState, toState) => {\n let lhsMatch = lhs == ANY_STATE || lhs == fromState;\n let rhsMatch = rhs == ANY_STATE || rhs == toState;\n if (!lhsMatch && LHS_MATCH_BOOLEAN && typeof fromState === 'boolean') {\n lhsMatch = fromState ? TRUE_BOOLEAN_VALUES.has(lhs) : FALSE_BOOLEAN_VALUES.has(lhs);\n }\n if (!rhsMatch && RHS_MATCH_BOOLEAN && typeof toState === 'boolean') {\n rhsMatch = toState ? TRUE_BOOLEAN_VALUES.has(rhs) : FALSE_BOOLEAN_VALUES.has(rhs);\n }\n return lhsMatch && rhsMatch;\n };\n}\nconst SELF_TOKEN = ':self';\nconst SELF_TOKEN_REGEX = /* @__PURE__ */new RegExp(`s*${SELF_TOKEN}s*,?`, 'g');\n/*\n * [Validation]\n * The visitor code below will traverse the animation AST generated by the animation verb functions\n * (the output is a tree of objects) and attempt to perform a series of validations on the data. The\n * following corner-cases will be validated:\n *\n * 1. Overlap of animations\n * Given that a CSS property cannot be animated in more than one place at the same time, it's\n * important that this behavior is detected and validated. The way in which this occurs is that\n * each time a style property is examined, a string-map containing the property will be updated with\n * the start and end times for when the property is used within an animation step.\n *\n * If there are two or more parallel animations that are currently running (these are invoked by the\n * group()) on the same element then the validator will throw an error. Since the start/end timing\n * values are collected for each property then if the current animation step is animating the same\n * property and its timing values fall anywhere into the window of time that the property is\n * currently being animated within then this is what causes an error.\n *\n * 2. Timing values\n * The validator will validate to see if a timing value of `duration delay easing` or\n * `durationNumber` is valid or not.\n *\n * (note that upon validation the code below will replace the timing data with an object containing\n * {duration,delay,easing}.\n *\n * 3. Offset Validation\n * Each of the style() calls are allowed to have an offset value when placed inside of keyframes().\n * Offsets within keyframes() are considered valid when:\n *\n * - No offsets are used at all\n * - Each style() entry contains an offset value\n * - Each offset is between 0 and 1\n * - Each offset is greater to or equal than the previous one\n *\n * Otherwise an error will be thrown.\n */\nfunction buildAnimationAst(driver, metadata, errors, warnings) {\n return new AnimationAstBuilderVisitor(driver).build(metadata, errors, warnings);\n}\nconst ROOT_SELECTOR = '';\nclass AnimationAstBuilderVisitor {\n _driver;\n constructor(_driver) {\n this._driver = _driver;\n }\n build(metadata, errors, warnings) {\n const context = new AnimationAstBuilderContext(errors);\n this._resetContextStyleTimingState(context);\n const ast = visitDslNode(this, normalizeAnimationEntry(metadata), context);\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n if (context.unsupportedCSSPropertiesFound.size) {\n pushUnrecognizedPropertiesWarning(warnings, [...context.unsupportedCSSPropertiesFound.keys()]);\n }\n }\n return ast;\n }\n _resetContextStyleTimingState(context) {\n context.currentQuerySelector = ROOT_SELECTOR;\n context.collectedStyles = new Map();\n context.collectedStyles.set(ROOT_SELECTOR, new Map());\n context.currentTime = 0;\n }\n visitTrigger(metadata, context) {\n let queryCount = context.queryCount = 0;\n let depCount = context.depCount = 0;\n const states = [];\n const transitions = [];\n if (metadata.name.charAt(0) == '@') {\n context.errors.push(invalidTrigger());\n }\n metadata.definitions.forEach(def => {\n this._resetContextStyleTimingState(context);\n if (def.type == AnimationMetadataType.State) {\n const stateDef = def;\n const name = stateDef.name;\n name.toString().split(/\\s*,\\s*/).forEach(n => {\n stateDef.name = n;\n states.push(this.visitState(stateDef, context));\n });\n stateDef.name = name;\n } else if (def.type == AnimationMetadataType.Transition) {\n const transition = this.visitTransition(def, context);\n queryCount += transition.queryCount;\n depCount += transition.depCount;\n transitions.push(transition);\n } else {\n context.errors.push(invalidDefinition());\n }\n });\n return {\n type: AnimationMetadataType.Trigger,\n name: metadata.name,\n states,\n transitions,\n queryCount,\n depCount,\n options: null\n };\n }\n visitState(metadata, context) {\n const styleAst = this.visitStyle(metadata.styles, context);\n const astParams = metadata.options && metadata.options.params || null;\n if (styleAst.containsDynamicStyles) {\n const missingSubs = new Set();\n const params = astParams || {};\n styleAst.styles.forEach(style => {\n if (style instanceof Map) {\n style.forEach(value => {\n extractStyleParams(value).forEach(sub => {\n if (!params.hasOwnProperty(sub)) {\n missingSubs.add(sub);\n }\n });\n });\n }\n });\n if (missingSubs.size) {\n context.errors.push(invalidState(metadata.name, [...missingSubs.values()]));\n }\n }\n return {\n type: AnimationMetadataType.State,\n name: metadata.name,\n style: styleAst,\n options: astParams ? {\n params: astParams\n } : null\n };\n }\n visitTransition(metadata, context) {\n context.queryCount = 0;\n context.depCount = 0;\n const animation = visitDslNode(this, normalizeAnimationEntry(metadata.animation), context);\n const matchers = parseTransitionExpr(metadata.expr, context.errors);\n return {\n type: AnimationMetadataType.Transition,\n matchers,\n animation,\n queryCount: context.queryCount,\n depCount: context.depCount,\n options: normalizeAnimationOptions(metadata.options)\n };\n }\n visitSequence(metadata, context) {\n return {\n type: AnimationMetadataType.Sequence,\n steps: metadata.steps.map(s => visitDslNode(this, s, context)),\n options: normalizeAnimationOptions(metadata.options)\n };\n }\n visitGroup(metadata, context) {\n const currentTime = context.currentTime;\n let furthestTime = 0;\n const steps = metadata.steps.map(step => {\n context.currentTime = currentTime;\n const innerAst = visitDslNode(this, step, context);\n furthestTime = Math.max(furthestTime, context.currentTime);\n return innerAst;\n });\n context.currentTime = furthestTime;\n return {\n type: AnimationMetadataType.Group,\n steps,\n options: normalizeAnimationOptions(metadata.options)\n };\n }\n visitAnimate(metadata, context) {\n const timingAst = constructTimingAst(metadata.timings, context.errors);\n context.currentAnimateTimings = timingAst;\n let styleAst;\n let styleMetadata = metadata.styles ? metadata.styles : style({});\n if (styleMetadata.type == AnimationMetadataType.Keyframes) {\n styleAst = this.visitKeyframes(styleMetadata, context);\n } else {\n let styleMetadata = metadata.styles;\n let isEmpty = false;\n if (!styleMetadata) {\n isEmpty = true;\n const newStyleData = {};\n if (timingAst.easing) {\n newStyleData['easing'] = timingAst.easing;\n }\n styleMetadata = style(newStyleData);\n }\n context.currentTime += timingAst.duration + timingAst.delay;\n const _styleAst = this.visitStyle(styleMetadata, context);\n _styleAst.isEmptyStep = isEmpty;\n styleAst = _styleAst;\n }\n context.currentAnimateTimings = null;\n return {\n type: AnimationMetadataType.Animate,\n timings: timingAst,\n style: styleAst,\n options: null\n };\n }\n visitStyle(metadata, context) {\n const ast = this._makeStyleAst(metadata, context);\n this._validateStyleAst(ast, context);\n return ast;\n }\n _makeStyleAst(metadata, context) {\n const styles = [];\n const metadataStyles = Array.isArray(metadata.styles) ? metadata.styles : [metadata.styles];\n for (let styleTuple of metadataStyles) {\n if (typeof styleTuple === 'string') {\n if (styleTuple === AUTO_STYLE) {\n styles.push(styleTuple);\n } else {\n context.errors.push(invalidStyleValue(styleTuple));\n }\n } else {\n styles.push(new Map(Object.entries(styleTuple)));\n }\n }\n let containsDynamicStyles = false;\n let collectedEasing = null;\n styles.forEach(styleData => {\n if (styleData instanceof Map) {\n if (styleData.has('easing')) {\n collectedEasing = styleData.get('easing');\n styleData.delete('easing');\n }\n if (!containsDynamicStyles) {\n for (let value of styleData.values()) {\n if (value.toString().indexOf(SUBSTITUTION_EXPR_START) >= 0) {\n containsDynamicStyles = true;\n break;\n }\n }\n }\n }\n });\n return {\n type: AnimationMetadataType.Style,\n styles,\n easing: collectedEasing,\n offset: metadata.offset,\n containsDynamicStyles,\n options: null\n };\n }\n _validateStyleAst(ast, context) {\n const timings = context.currentAnimateTimings;\n let endTime = context.currentTime;\n let startTime = context.currentTime;\n if (timings && startTime > 0) {\n startTime -= timings.duration + timings.delay;\n }\n ast.styles.forEach(tuple => {\n if (typeof tuple === 'string') return;\n tuple.forEach((value, prop) => {\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n if (!this._driver.validateStyleProperty(prop)) {\n tuple.delete(prop);\n context.unsupportedCSSPropertiesFound.add(prop);\n return;\n }\n }\n // This is guaranteed to have a defined Map at this querySelector location making it\n // safe to add the assertion here. It is set as a default empty map in prior methods.\n const collectedStyles = context.collectedStyles.get(context.currentQuerySelector);\n const collectedEntry = collectedStyles.get(prop);\n let updateCollectedStyle = true;\n if (collectedEntry) {\n if (startTime != endTime && startTime >= collectedEntry.startTime && endTime <= collectedEntry.endTime) {\n context.errors.push(invalidParallelAnimation(prop, collectedEntry.startTime, collectedEntry.endTime, startTime, endTime));\n updateCollectedStyle = false;\n }\n // we always choose the smaller start time value since we\n // want to have a record of the entire animation window where\n // the style property is being animated in between\n startTime = collectedEntry.startTime;\n }\n if (updateCollectedStyle) {\n collectedStyles.set(prop, {\n startTime,\n endTime\n });\n }\n if (context.options) {\n validateStyleParams(value, context.options, context.errors);\n }\n });\n });\n }\n visitKeyframes(metadata, context) {\n const ast = {\n type: AnimationMetadataType.Keyframes,\n styles: [],\n options: null\n };\n if (!context.currentAnimateTimings) {\n context.errors.push(invalidKeyframes());\n return ast;\n }\n const MAX_KEYFRAME_OFFSET = 1;\n let totalKeyframesWithOffsets = 0;\n const offsets = [];\n let offsetsOutOfOrder = false;\n let keyframesOutOfRange = false;\n let previousOffset = 0;\n const keyframes = metadata.steps.map(styles => {\n const style = this._makeStyleAst(styles, context);\n let offsetVal = style.offset != null ? style.offset : consumeOffset(style.styles);\n let offset = 0;\n if (offsetVal != null) {\n totalKeyframesWithOffsets++;\n offset = style.offset = offsetVal;\n }\n keyframesOutOfRange = keyframesOutOfRange || offset < 0 || offset > 1;\n offsetsOutOfOrder = offsetsOutOfOrder || offset < previousOffset;\n previousOffset = offset;\n offsets.push(offset);\n return style;\n });\n if (keyframesOutOfRange) {\n context.errors.push(invalidOffset());\n }\n if (offsetsOutOfOrder) {\n context.errors.push(keyframeOffsetsOutOfOrder());\n }\n const length = metadata.steps.length;\n let generatedOffset = 0;\n if (totalKeyframesWithOffsets > 0 && totalKeyframesWithOffsets < length) {\n context.errors.push(keyframesMissingOffsets());\n } else if (totalKeyframesWithOffsets == 0) {\n generatedOffset = MAX_KEYFRAME_OFFSET / (length - 1);\n }\n const limit = length - 1;\n const currentTime = context.currentTime;\n const currentAnimateTimings = context.currentAnimateTimings;\n const animateDuration = currentAnimateTimings.duration;\n keyframes.forEach((kf, i) => {\n const offset = generatedOffset > 0 ? i == limit ? 1 : generatedOffset * i : offsets[i];\n const durationUpToThisFrame = offset * animateDuration;\n context.currentTime = currentTime + currentAnimateTimings.delay + durationUpToThisFrame;\n currentAnimateTimings.duration = durationUpToThisFrame;\n this._validateStyleAst(kf, context);\n kf.offset = offset;\n ast.styles.push(kf);\n });\n return ast;\n }\n visitReference(metadata, context) {\n return {\n type: AnimationMetadataType.Reference,\n animation: visitDslNode(this, normalizeAnimationEntry(metadata.animation), context),\n options: normalizeAnimationOptions(metadata.options)\n };\n }\n visitAnimateChild(metadata, context) {\n context.depCount++;\n return {\n type: AnimationMetadataType.AnimateChild,\n options: normalizeAnimationOptions(metadata.options)\n };\n }\n visitAnimateRef(metadata, context) {\n return {\n type: AnimationMetadataType.AnimateRef,\n animation: this.visitReference(metadata.animation, context),\n options: normalizeAnimationOptions(metadata.options)\n };\n }\n visitQuery(metadata, context) {\n const parentSelector = context.currentQuerySelector;\n const options = metadata.options || {};\n context.queryCount++;\n context.currentQuery = metadata;\n const [selector, includeSelf] = normalizeSelector(metadata.selector);\n context.currentQuerySelector = parentSelector.length ? parentSelector + ' ' + selector : selector;\n getOrSetDefaultValue(context.collectedStyles, context.currentQuerySelector, new Map());\n const animation = visitDslNode(this, normalizeAnimationEntry(metadata.animation), context);\n context.currentQuery = null;\n context.currentQuerySelector = parentSelector;\n return {\n type: AnimationMetadataType.Query,\n selector,\n limit: options.limit || 0,\n optional: !!options.optional,\n includeSelf,\n animation,\n originalSelector: metadata.selector,\n options: normalizeAnimationOptions(metadata.options)\n };\n }\n visitStagger(metadata, context) {\n if (!context.currentQuery) {\n context.errors.push(invalidStagger());\n }\n const timings = metadata.timings === 'full' ? {\n duration: 0,\n delay: 0,\n easing: 'full'\n } : resolveTiming(metadata.timings, context.errors, true);\n return {\n type: AnimationMetadataType.Stagger,\n animation: visitDslNode(this, normalizeAnimationEntry(metadata.animation), context),\n timings,\n options: null\n };\n }\n}\nfunction normalizeSelector(selector) {\n const hasAmpersand = selector.split(/\\s*,\\s*/).find(token => token == SELF_TOKEN) ? true : false;\n if (hasAmpersand) {\n selector = selector.replace(SELF_TOKEN_REGEX, '');\n }\n // Note: the :enter and :leave aren't normalized here since those\n // selectors are filled in at runtime during timeline building\n selector = selector.replace(/@\\*/g, NG_TRIGGER_SELECTOR).replace(/@\\w+/g, match => NG_TRIGGER_SELECTOR + '-' + match.slice(1)).replace(/:animating/g, NG_ANIMATING_SELECTOR);\n return [selector, hasAmpersand];\n}\nfunction normalizeParams(obj) {\n return obj ? {\n ...obj\n } : null;\n}\nclass AnimationAstBuilderContext {\n errors;\n queryCount = 0;\n depCount = 0;\n currentTransition = null;\n currentQuery = null;\n currentQuerySelector = null;\n currentAnimateTimings = null;\n currentTime = 0;\n collectedStyles = /*#__PURE__*/new Map();\n options = null;\n unsupportedCSSPropertiesFound = /*#__PURE__*/new Set();\n constructor(errors) {\n this.errors = errors;\n }\n}\nfunction consumeOffset(styles) {\n if (typeof styles == 'string') return null;\n let offset = null;\n if (Array.isArray(styles)) {\n styles.forEach(styleTuple => {\n if (styleTuple instanceof Map && styleTuple.has('offset')) {\n const obj = styleTuple;\n offset = parseFloat(obj.get('offset'));\n obj.delete('offset');\n }\n });\n } else if (styles instanceof Map && styles.has('offset')) {\n const obj = styles;\n offset = parseFloat(obj.get('offset'));\n obj.delete('offset');\n }\n return offset;\n}\nfunction constructTimingAst(value, errors) {\n if (value.hasOwnProperty('duration')) {\n return value;\n }\n if (typeof value == 'number') {\n const duration = resolveTiming(value, errors).duration;\n return makeTimingAst(duration, 0, '');\n }\n const strValue = value;\n const isDynamic = strValue.split(/\\s+/).some(v => v.charAt(0) == '{' && v.charAt(1) == '{');\n if (isDynamic) {\n const ast = makeTimingAst(0, 0, '');\n ast.dynamic = true;\n ast.strValue = strValue;\n return ast;\n }\n const timings = resolveTiming(strValue, errors);\n return makeTimingAst(timings.duration, timings.delay, timings.easing);\n}\nfunction normalizeAnimationOptions(options) {\n if (options) {\n options = {\n ...options\n };\n if (options['params']) {\n options['params'] = normalizeParams(options['params']);\n }\n } else {\n options = {};\n }\n return options;\n}\nfunction makeTimingAst(duration, delay, easing) {\n return {\n duration,\n delay,\n easing\n };\n}\nfunction createTimelineInstruction(element, keyframes, preStyleProps, postStyleProps, duration, delay, easing = null, subTimeline = false) {\n return {\n type: 1 /* AnimationTransitionInstructionType.TimelineAnimation */,\n element,\n keyframes,\n preStyleProps,\n postStyleProps,\n duration,\n delay,\n totalTime: duration + delay,\n easing,\n subTimeline\n };\n}\nclass ElementInstructionMap {\n _map = /*#__PURE__*/new Map();\n get(element) {\n return this._map.get(element) || [];\n }\n append(element, instructions) {\n let existingInstructions = this._map.get(element);\n if (!existingInstructions) {\n this._map.set(element, existingInstructions = []);\n }\n existingInstructions.push(...instructions);\n }\n has(element) {\n return this._map.has(element);\n }\n clear() {\n this._map.clear();\n }\n}\nconst ONE_FRAME_IN_MILLISECONDS = 1;\nconst ENTER_TOKEN = ':enter';\nconst ENTER_TOKEN_REGEX = /* @__PURE__ */new RegExp(ENTER_TOKEN, 'g');\nconst LEAVE_TOKEN = ':leave';\nconst LEAVE_TOKEN_REGEX = /* @__PURE__ */new RegExp(LEAVE_TOKEN, 'g');\n/*\n * The code within this file aims to generate web-animations-compatible keyframes from Angular's\n * animation DSL code.\n *\n * The code below will be converted from:\n *\n * ```ts\n * sequence([\n * style({ opacity: 0 }),\n * animate(1000, style({ opacity: 0 }))\n * ])\n * ```\n *\n * To:\n * ```ts\n * keyframes = [{ opacity: 0, offset: 0 }, { opacity: 1, offset: 1 }]\n * duration = 1000\n * delay = 0\n * easing = ''\n * ```\n *\n * For this operation to cover the combination of animation verbs (style, animate, group, etc...) a\n * combination of AST traversal and merge-sort-like algorithms are used.\n *\n * [AST Traversal]\n * Each of the animation verbs, when executed, will return an string-map object representing what\n * type of action it is (style, animate, group, etc...) and the data associated with it. This means\n * that when functional composition mix of these functions is evaluated (like in the example above)\n * then it will end up producing a tree of objects representing the animation itself.\n *\n * When this animation object tree is processed by the visitor code below it will visit each of the\n * verb statements within the visitor. And during each visit it will build the context of the\n * animation keyframes by interacting with the `TimelineBuilder`.\n *\n * [TimelineBuilder]\n * This class is responsible for tracking the styles and building a series of keyframe objects for a\n * timeline between a start and end time. The builder starts off with an initial timeline and each\n * time the AST comes across a `group()`, `keyframes()` or a combination of the two within a\n * `sequence()` then it will generate a sub timeline for each step as well as a new one after\n * they are complete.\n *\n * As the AST is traversed, the timing state on each of the timelines will be incremented. If a sub\n * timeline was created (based on one of the cases above) then the parent timeline will attempt to\n * merge the styles used within the sub timelines into itself (only with group() this will happen).\n * This happens with a merge operation (much like how the merge works in mergeSort) and it will only\n * copy the most recently used styles from the sub timelines into the parent timeline. This ensures\n * that if the styles are used later on in another phase of the animation then they will be the most\n * up-to-date values.\n *\n * [How Missing Styles Are Updated]\n * Each timeline has a `backFill` property which is responsible for filling in new styles into\n * already processed keyframes if a new style shows up later within the animation sequence.\n *\n * ```ts\n * sequence([\n * style({ width: 0 }),\n * animate(1000, style({ width: 100 })),\n * animate(1000, style({ width: 200 })),\n * animate(1000, style({ width: 300 }))\n * animate(1000, style({ width: 400, height: 400 })) // notice how `height` doesn't exist anywhere\n * else\n * ])\n * ```\n *\n * What is happening here is that the `height` value is added later in the sequence, but is missing\n * from all previous animation steps. Therefore when a keyframe is created it would also be missing\n * from all previous keyframes up until where it is first used. For the timeline keyframe generation\n * to properly fill in the style it will place the previous value (the value from the parent\n * timeline) or a default value of `*` into the backFill map.\n *\n * When a sub-timeline is created it will have its own backFill property. This is done so that\n * styles present within the sub-timeline do not accidentally seep into the previous/future timeline\n * keyframes\n *\n * [Validation]\n * The code in this file is not responsible for validation. That functionality happens with within\n * the `AnimationValidatorVisitor` code.\n */\nfunction buildAnimationTimelines(driver, rootElement, ast, enterClassName, leaveClassName, startingStyles = new Map(), finalStyles = new Map(), options, subInstructions, errors = []) {\n return new AnimationTimelineBuilderVisitor().buildKeyframes(driver, rootElement, ast, enterClassName, leaveClassName, startingStyles, finalStyles, options, subInstructions, errors);\n}\nclass AnimationTimelineBuilderVisitor {\n buildKeyframes(driver, rootElement, ast, enterClassName, leaveClassName, startingStyles, finalStyles, options, subInstructions, errors = []) {\n subInstructions = subInstructions || new ElementInstructionMap();\n const context = new AnimationTimelineContext(driver, rootElement, subInstructions, enterClassName, leaveClassName, errors, []);\n context.options = options;\n const delay = options.delay ? resolveTimingValue(options.delay) : 0;\n context.currentTimeline.delayNextStep(delay);\n context.currentTimeline.setStyles([startingStyles], null, context.errors, options);\n visitDslNode(this, ast, context);\n // this checks to see if an actual animation happened\n const timelines = context.timelines.filter(timeline => timeline.containsAnimation());\n // note: we just want to apply the final styles for the rootElement, so we do not\n // just apply the styles to the last timeline but the last timeline which\n // element is the root one (basically `*`-styles are replaced with the actual\n // state style values only for the root element)\n if (timelines.length && finalStyles.size) {\n let lastRootTimeline;\n for (let i = timelines.length - 1; i >= 0; i--) {\n const timeline = timelines[i];\n if (timeline.element === rootElement) {\n lastRootTimeline = timeline;\n break;\n }\n }\n if (lastRootTimeline && !lastRootTimeline.allowOnlyTimelineStyles()) {\n lastRootTimeline.setStyles([finalStyles], null, context.errors, options);\n }\n }\n return timelines.length ? timelines.map(timeline => timeline.buildKeyframes()) : [createTimelineInstruction(rootElement, [], [], [], 0, delay, '', false)];\n }\n visitTrigger(ast, context) {\n // these values are not visited in this AST\n }\n visitState(ast, context) {\n // these values are not visited in this AST\n }\n visitTransition(ast, context) {\n // these values are not visited in this AST\n }\n visitAnimateChild(ast, context) {\n const elementInstructions = context.subInstructions.get(context.element);\n if (elementInstructions) {\n const innerContext = context.createSubContext(ast.options);\n const startTime = context.currentTimeline.currentTime;\n const endTime = this._visitSubInstructions(elementInstructions, innerContext, innerContext.options);\n if (startTime != endTime) {\n // we do this on the upper context because we created a sub context for\n // the sub child animations\n context.transformIntoNewTimeline(endTime);\n }\n }\n context.previousNode = ast;\n }\n visitAnimateRef(ast, context) {\n const innerContext = context.createSubContext(ast.options);\n innerContext.transformIntoNewTimeline();\n this._applyAnimationRefDelays([ast.options, ast.animation.options], context, innerContext);\n this.visitReference(ast.animation, innerContext);\n context.transformIntoNewTimeline(innerContext.currentTimeline.currentTime);\n context.previousNode = ast;\n }\n _applyAnimationRefDelays(animationsRefsOptions, context, innerContext) {\n for (const animationRefOptions of animationsRefsOptions) {\n const animationDelay = animationRefOptions?.delay;\n if (animationDelay) {\n const animationDelayValue = typeof animationDelay === 'number' ? animationDelay : resolveTimingValue(interpolateParams(animationDelay, animationRefOptions?.params ?? {}, context.errors));\n innerContext.delayNextStep(animationDelayValue);\n }\n }\n }\n _visitSubInstructions(instructions, context, options) {\n const startTime = context.currentTimeline.currentTime;\n let furthestTime = startTime;\n // this is a special-case for when a user wants to skip a sub\n // animation from being fired entirely.\n const duration = options.duration != null ? resolveTimingValue(options.duration) : null;\n const delay = options.delay != null ? resolveTimingValue(options.delay) : null;\n if (duration !== 0) {\n instructions.forEach(instruction => {\n const instructionTimings = context.appendInstructionToTimeline(instruction, duration, delay);\n furthestTime = Math.max(furthestTime, instructionTimings.duration + instructionTimings.delay);\n });\n }\n return furthestTime;\n }\n visitReference(ast, context) {\n context.updateOptions(ast.options, true);\n visitDslNode(this, ast.animation, context);\n context.previousNode = ast;\n }\n visitSequence(ast, context) {\n const subContextCount = context.subContextCount;\n let ctx = context;\n const options = ast.options;\n if (options && (options.params || options.delay)) {\n ctx = context.createSubContext(options);\n ctx.transformIntoNewTimeline();\n if (options.delay != null) {\n if (ctx.previousNode.type == AnimationMetadataType.Style) {\n ctx.currentTimeline.snapshotCurrentStyles();\n ctx.previousNode = DEFAULT_NOOP_PREVIOUS_NODE;\n }\n const delay = resolveTimingValue(options.delay);\n ctx.delayNextStep(delay);\n }\n }\n if (ast.steps.length) {\n ast.steps.forEach(s => visitDslNode(this, s, ctx));\n // this is here just in case the inner steps only contain or end with a style() call\n ctx.currentTimeline.applyStylesToKeyframe();\n // this means that some animation function within the sequence\n // ended up creating a sub timeline (which means the current\n // timeline cannot overlap with the contents of the sequence)\n if (ctx.subContextCount > subContextCount) {\n ctx.transformIntoNewTimeline();\n }\n }\n context.previousNode = ast;\n }\n visitGroup(ast, context) {\n const innerTimelines = [];\n let furthestTime = context.currentTimeline.currentTime;\n const delay = ast.options && ast.options.delay ? resolveTimingValue(ast.options.delay) : 0;\n ast.steps.forEach(s => {\n const innerContext = context.createSubContext(ast.options);\n if (delay) {\n innerContext.delayNextStep(delay);\n }\n visitDslNode(this, s, innerContext);\n furthestTime = Math.max(furthestTime, innerContext.currentTimeline.currentTime);\n innerTimelines.push(innerContext.currentTimeline);\n });\n // this operation is run after the AST loop because otherwise\n // if the parent timeline's collected styles were updated then\n // it would pass in invalid data into the new-to-be forked items\n innerTimelines.forEach(timeline => context.currentTimeline.mergeTimelineCollectedStyles(timeline));\n context.transformIntoNewTimeline(furthestTime);\n context.previousNode = ast;\n }\n _visitTiming(ast, context) {\n if (ast.dynamic) {\n const strValue = ast.strValue;\n const timingValue = context.params ? interpolateParams(strValue, context.params, context.errors) : strValue;\n return resolveTiming(timingValue, context.errors);\n } else {\n return {\n duration: ast.duration,\n delay: ast.delay,\n easing: ast.easing\n };\n }\n }\n visitAnimate(ast, context) {\n const timings = context.currentAnimateTimings = this._visitTiming(ast.timings, context);\n const timeline = context.currentTimeline;\n if (timings.delay) {\n context.incrementTime(timings.delay);\n timeline.snapshotCurrentStyles();\n }\n const style = ast.style;\n if (style.type == AnimationMetadataType.Keyframes) {\n this.visitKeyframes(style, context);\n } else {\n context.incrementTime(timings.duration);\n this.visitStyle(style, context);\n timeline.applyStylesToKeyframe();\n }\n context.currentAnimateTimings = null;\n context.previousNode = ast;\n }\n visitStyle(ast, context) {\n const timeline = context.currentTimeline;\n const timings = context.currentAnimateTimings;\n // this is a special case for when a style() call\n // directly follows an animate() call (but not inside of an animate() call)\n if (!timings && timeline.hasCurrentStyleProperties()) {\n timeline.forwardFrame();\n }\n const easing = timings && timings.easing || ast.easing;\n if (ast.isEmptyStep) {\n timeline.applyEmptyStep(easing);\n } else {\n timeline.setStyles(ast.styles, easing, context.errors, context.options);\n }\n context.previousNode = ast;\n }\n visitKeyframes(ast, context) {\n const currentAnimateTimings = context.currentAnimateTimings;\n const startTime = context.currentTimeline.duration;\n const duration = currentAnimateTimings.duration;\n const innerContext = context.createSubContext();\n const innerTimeline = innerContext.currentTimeline;\n innerTimeline.easing = currentAnimateTimings.easing;\n ast.styles.forEach(step => {\n const offset = step.offset || 0;\n innerTimeline.forwardTime(offset * duration);\n innerTimeline.setStyles(step.styles, step.easing, context.errors, context.options);\n innerTimeline.applyStylesToKeyframe();\n });\n // this will ensure that the parent timeline gets all the styles from\n // the child even if the new timeline below is not used\n context.currentTimeline.mergeTimelineCollectedStyles(innerTimeline);\n // we do this because the window between this timeline and the sub timeline\n // should ensure that the styles within are exactly the same as they were before\n context.transformIntoNewTimeline(startTime + duration);\n context.previousNode = ast;\n }\n visitQuery(ast, context) {\n // in the event that the first step before this is a style step we need\n // to ensure the styles are applied before the children are animated\n const startTime = context.currentTimeline.currentTime;\n const options = ast.options || {};\n const delay = options.delay ? resolveTimingValue(options.delay) : 0;\n if (delay && (context.previousNode.type === AnimationMetadataType.Style || startTime == 0 && context.currentTimeline.hasCurrentStyleProperties())) {\n context.currentTimeline.snapshotCurrentStyles();\n context.previousNode = DEFAULT_NOOP_PREVIOUS_NODE;\n }\n let furthestTime = startTime;\n const elms = context.invokeQuery(ast.selector, ast.originalSelector, ast.limit, ast.includeSelf, options.optional ? true : false, context.errors);\n context.currentQueryTotal = elms.length;\n let sameElementTimeline = null;\n elms.forEach((element, i) => {\n context.currentQueryIndex = i;\n const innerContext = context.createSubContext(ast.options, element);\n if (delay) {\n innerContext.delayNextStep(delay);\n }\n if (element === context.element) {\n sameElementTimeline = innerContext.currentTimeline;\n }\n visitDslNode(this, ast.animation, innerContext);\n // this is here just incase the inner steps only contain or end\n // with a style() call (which is here to signal that this is a preparatory\n // call to style an element before it is animated again)\n innerContext.currentTimeline.applyStylesToKeyframe();\n const endTime = innerContext.currentTimeline.currentTime;\n furthestTime = Math.max(furthestTime, endTime);\n });\n context.currentQueryIndex = 0;\n context.currentQueryTotal = 0;\n context.transformIntoNewTimeline(furthestTime);\n if (sameElementTimeline) {\n context.currentTimeline.mergeTimelineCollectedStyles(sameElementTimeline);\n context.currentTimeline.snapshotCurrentStyles();\n }\n context.previousNode = ast;\n }\n visitStagger(ast, context) {\n const parentContext = context.parentContext;\n const tl = context.currentTimeline;\n const timings = ast.timings;\n const duration = Math.abs(timings.duration);\n const maxTime = duration * (context.currentQueryTotal - 1);\n let delay = duration * context.currentQueryIndex;\n let staggerTransformer = timings.duration < 0 ? 'reverse' : timings.easing;\n switch (staggerTransformer) {\n case 'reverse':\n delay = maxTime - delay;\n break;\n case 'full':\n delay = parentContext.currentStaggerTime;\n break;\n }\n const timeline = context.currentTimeline;\n if (delay) {\n timeline.delayNextStep(delay);\n }\n const startingTime = timeline.currentTime;\n visitDslNode(this, ast.animation, context);\n context.previousNode = ast;\n // time = duration + delay\n // the reason why this computation is so complex is because\n // the inner timeline may either have a delay value or a stretched\n // keyframe depending on if a subtimeline is not used or is used.\n parentContext.currentStaggerTime = tl.currentTime - startingTime + (tl.startTime - parentContext.currentTimeline.startTime);\n }\n}\nconst DEFAULT_NOOP_PREVIOUS_NODE = {};\nclass AnimationTimelineContext {\n _driver;\n element;\n subInstructions;\n _enterClassName;\n _leaveClassName;\n errors;\n timelines;\n parentContext = null;\n currentTimeline;\n currentAnimateTimings = null;\n previousNode = DEFAULT_NOOP_PREVIOUS_NODE;\n subContextCount = 0;\n options = {};\n currentQueryIndex = 0;\n currentQueryTotal = 0;\n currentStaggerTime = 0;\n constructor(_driver, element, subInstructions, _enterClassName, _leaveClassName, errors, timelines, initialTimeline) {\n this._driver = _driver;\n this.element = element;\n this.subInstructions = subInstructions;\n this._enterClassName = _enterClassName;\n this._leaveClassName = _leaveClassName;\n this.errors = errors;\n this.timelines = timelines;\n this.currentTimeline = initialTimeline || new TimelineBuilder(this._driver, element, 0);\n timelines.push(this.currentTimeline);\n }\n get params() {\n return this.options.params;\n }\n updateOptions(options, skipIfExists) {\n if (!options) return;\n const newOptions = options;\n let optionsToUpdate = this.options;\n // NOTE: this will get patched up when other animation methods support duration overrides\n if (newOptions.duration != null) {\n optionsToUpdate.duration = resolveTimingValue(newOptions.duration);\n }\n if (newOptions.delay != null) {\n optionsToUpdate.delay = resolveTimingValue(newOptions.delay);\n }\n const newParams = newOptions.params;\n if (newParams) {\n let paramsToUpdate = optionsToUpdate.params;\n if (!paramsToUpdate) {\n paramsToUpdate = this.options.params = {};\n }\n Object.keys(newParams).forEach(name => {\n if (!skipIfExists || !paramsToUpdate.hasOwnProperty(name)) {\n paramsToUpdate[name] = interpolateParams(newParams[name], paramsToUpdate, this.errors);\n }\n });\n }\n }\n _copyOptions() {\n const options = {};\n if (this.options) {\n const oldParams = this.options.params;\n if (oldParams) {\n const params = options['params'] = {};\n Object.keys(oldParams).forEach(name => {\n params[name] = oldParams[name];\n });\n }\n }\n return options;\n }\n createSubContext(options = null, element, newTime) {\n const target = element || this.element;\n const context = new AnimationTimelineContext(this._driver, target, this.subInstructions, this._enterClassName, this._leaveClassName, this.errors, this.timelines, this.currentTimeline.fork(target, newTime || 0));\n context.previousNode = this.previousNode;\n context.currentAnimateTimings = this.currentAnimateTimings;\n context.options = this._copyOptions();\n context.updateOptions(options);\n context.currentQueryIndex = this.currentQueryIndex;\n context.currentQueryTotal = this.currentQueryTotal;\n context.parentContext = this;\n this.subContextCount++;\n return context;\n }\n transformIntoNewTimeline(newTime) {\n this.previousNode = DEFAULT_NOOP_PREVIOUS_NODE;\n this.currentTimeline = this.currentTimeline.fork(this.element, newTime);\n this.timelines.push(this.currentTimeline);\n return this.currentTimeline;\n }\n appendInstructionToTimeline(instruction, duration, delay) {\n const updatedTimings = {\n duration: duration != null ? duration : instruction.duration,\n delay: this.currentTimeline.currentTime + (delay != null ? delay : 0) + instruction.delay,\n easing: ''\n };\n const builder = new SubTimelineBuilder(this._driver, instruction.element, instruction.keyframes, instruction.preStyleProps, instruction.postStyleProps, updatedTimings, instruction.stretchStartingKeyframe);\n this.timelines.push(builder);\n return updatedTimings;\n }\n incrementTime(time) {\n this.currentTimeline.forwardTime(this.currentTimeline.duration + time);\n }\n delayNextStep(delay) {\n // negative delays are not yet supported\n if (delay > 0) {\n this.currentTimeline.delayNextStep(delay);\n }\n }\n invokeQuery(selector, originalSelector, limit, includeSelf, optional, errors) {\n let results = [];\n if (includeSelf) {\n results.push(this.element);\n }\n if (selector.length > 0) {\n // only if :self is used then the selector can be empty\n selector = selector.replace(ENTER_TOKEN_REGEX, '.' + this._enterClassName);\n selector = selector.replace(LEAVE_TOKEN_REGEX, '.' + this._leaveClassName);\n const multi = limit != 1;\n let elements = this._driver.query(this.element, selector, multi);\n if (limit !== 0) {\n elements = limit < 0 ? elements.slice(elements.length + limit, elements.length) : elements.slice(0, limit);\n }\n results.push(...elements);\n }\n if (!optional && results.length == 0) {\n errors.push(invalidQuery(originalSelector));\n }\n return results;\n }\n}\nclass TimelineBuilder {\n _driver;\n element;\n startTime;\n _elementTimelineStylesLookup;\n duration = 0;\n easing = null;\n _previousKeyframe = /*#__PURE__*/new Map();\n _currentKeyframe = /*#__PURE__*/new Map();\n _keyframes = /*#__PURE__*/new Map();\n _styleSummary = /*#__PURE__*/new Map();\n _localTimelineStyles = /*#__PURE__*/new Map();\n _globalTimelineStyles;\n _pendingStyles = /*#__PURE__*/new Map();\n _backFill = /*#__PURE__*/new Map();\n _currentEmptyStepKeyframe = null;\n constructor(_driver, element, startTime, _elementTimelineStylesLookup) {\n this._driver = _driver;\n this.element = element;\n this.startTime = startTime;\n this._elementTimelineStylesLookup = _elementTimelineStylesLookup;\n if (!this._elementTimelineStylesLookup) {\n this._elementTimelineStylesLookup = new Map();\n }\n this._globalTimelineStyles = this._elementTimelineStylesLookup.get(element);\n if (!this._globalTimelineStyles) {\n this._globalTimelineStyles = this._localTimelineStyles;\n this._elementTimelineStylesLookup.set(element, this._localTimelineStyles);\n }\n this._loadKeyframe();\n }\n containsAnimation() {\n switch (this._keyframes.size) {\n case 0:\n return false;\n case 1:\n return this.hasCurrentStyleProperties();\n default:\n return true;\n }\n }\n hasCurrentStyleProperties() {\n return this._currentKeyframe.size > 0;\n }\n get currentTime() {\n return this.startTime + this.duration;\n }\n delayNextStep(delay) {\n // in the event that a style() step is placed right before a stagger()\n // and that style() step is the very first style() value in the animation\n // then we need to make a copy of the keyframe [0, copy, 1] so that the delay\n // properly applies the style() values to work with the stagger...\n const hasPreStyleStep = this._keyframes.size === 1 && this._pendingStyles.size;\n if (this.duration || hasPreStyleStep) {\n this.forwardTime(this.currentTime + delay);\n if (hasPreStyleStep) {\n this.snapshotCurrentStyles();\n }\n } else {\n this.startTime += delay;\n }\n }\n fork(element, currentTime) {\n this.applyStylesToKeyframe();\n return new TimelineBuilder(this._driver, element, currentTime || this.currentTime, this._elementTimelineStylesLookup);\n }\n _loadKeyframe() {\n if (this._currentKeyframe) {\n this._previousKeyframe = this._currentKeyframe;\n }\n this._currentKeyframe = this._keyframes.get(this.duration);\n if (!this._currentKeyframe) {\n this._currentKeyframe = new Map();\n this._keyframes.set(this.duration, this._currentKeyframe);\n }\n }\n forwardFrame() {\n this.duration += ONE_FRAME_IN_MILLISECONDS;\n this._loadKeyframe();\n }\n forwardTime(time) {\n this.applyStylesToKeyframe();\n this.duration = time;\n this._loadKeyframe();\n }\n _updateStyle(prop, value) {\n this._localTimelineStyles.set(prop, value);\n this._globalTimelineStyles.set(prop, value);\n this._styleSummary.set(prop, {\n time: this.currentTime,\n value\n });\n }\n allowOnlyTimelineStyles() {\n return this._currentEmptyStepKeyframe !== this._currentKeyframe;\n }\n applyEmptyStep(easing) {\n if (easing) {\n this._previousKeyframe.set('easing', easing);\n }\n // special case for animate(duration):\n // all missing styles are filled with a `*` value then\n // if any destination styles are filled in later on the same\n // keyframe then they will override the overridden styles\n // We use `_globalTimelineStyles` here because there may be\n // styles in previous keyframes that are not present in this timeline\n for (let [prop, value] of this._globalTimelineStyles) {\n this._backFill.set(prop, value || AUTO_STYLE);\n this._currentKeyframe.set(prop, AUTO_STYLE);\n }\n this._currentEmptyStepKeyframe = this._currentKeyframe;\n }\n setStyles(input, easing, errors, options) {\n if (easing) {\n this._previousKeyframe.set('easing', easing);\n }\n const params = options && options.params || {};\n const styles = flattenStyles(input, this._globalTimelineStyles);\n for (let [prop, value] of styles) {\n const val = interpolateParams(value, params, errors);\n this._pendingStyles.set(prop, val);\n if (!this._localTimelineStyles.has(prop)) {\n this._backFill.set(prop, this._globalTimelineStyles.get(prop) ?? AUTO_STYLE);\n }\n this._updateStyle(prop, val);\n }\n }\n applyStylesToKeyframe() {\n if (this._pendingStyles.size == 0) return;\n this._pendingStyles.forEach((val, prop) => {\n this._currentKeyframe.set(prop, val);\n });\n this._pendingStyles.clear();\n this._localTimelineStyles.forEach((val, prop) => {\n if (!this._currentKeyframe.has(prop)) {\n this._currentKeyframe.set(prop, val);\n }\n });\n }\n snapshotCurrentStyles() {\n for (let [prop, val] of this._localTimelineStyles) {\n this._pendingStyles.set(prop, val);\n this._updateStyle(prop, val);\n }\n }\n getFinalKeyframe() {\n return this._keyframes.get(this.duration);\n }\n get properties() {\n const properties = [];\n for (let prop in this._currentKeyframe) {\n properties.push(prop);\n }\n return properties;\n }\n mergeTimelineCollectedStyles(timeline) {\n timeline._styleSummary.forEach((details1, prop) => {\n const details0 = this._styleSummary.get(prop);\n if (!details0 || details1.time > details0.time) {\n this._updateStyle(prop, details1.value);\n }\n });\n }\n buildKeyframes() {\n this.applyStylesToKeyframe();\n const preStyleProps = new Set();\n const postStyleProps = new Set();\n const isEmpty = this._keyframes.size === 1 && this.duration === 0;\n let finalKeyframes = [];\n this._keyframes.forEach((keyframe, time) => {\n const finalKeyframe = new Map([...this._backFill, ...keyframe]);\n finalKeyframe.forEach((value, prop) => {\n if (value === _PRE_STYLE) {\n preStyleProps.add(prop);\n } else if (value === AUTO_STYLE) {\n postStyleProps.add(prop);\n }\n });\n if (!isEmpty) {\n finalKeyframe.set('offset', time / this.duration);\n }\n finalKeyframes.push(finalKeyframe);\n });\n const preProps = [...preStyleProps.values()];\n const postProps = [...postStyleProps.values()];\n // special case for a 0-second animation (which is designed just to place styles onscreen)\n if (isEmpty) {\n const kf0 = finalKeyframes[0];\n const kf1 = new Map(kf0);\n kf0.set('offset', 0);\n kf1.set('offset', 1);\n finalKeyframes = [kf0, kf1];\n }\n return createTimelineInstruction(this.element, finalKeyframes, preProps, postProps, this.duration, this.startTime, this.easing, false);\n }\n}\nclass SubTimelineBuilder extends TimelineBuilder {\n keyframes;\n preStyleProps;\n postStyleProps;\n _stretchStartingKeyframe;\n timings;\n constructor(driver, element, keyframes, preStyleProps, postStyleProps, timings, _stretchStartingKeyframe = false) {\n super(driver, element, timings.delay);\n this.keyframes = keyframes;\n this.preStyleProps = preStyleProps;\n this.postStyleProps = postStyleProps;\n this._stretchStartingKeyframe = _stretchStartingKeyframe;\n this.timings = {\n duration: timings.duration,\n delay: timings.delay,\n easing: timings.easing\n };\n }\n containsAnimation() {\n return this.keyframes.length > 1;\n }\n buildKeyframes() {\n let keyframes = this.keyframes;\n let {\n delay,\n duration,\n easing\n } = this.timings;\n if (this._stretchStartingKeyframe && delay) {\n const newKeyframes = [];\n const totalTime = duration + delay;\n const startingGap = delay / totalTime;\n // the original starting keyframe now starts once the delay is done\n const newFirstKeyframe = new Map(keyframes[0]);\n newFirstKeyframe.set('offset', 0);\n newKeyframes.push(newFirstKeyframe);\n const oldFirstKeyframe = new Map(keyframes[0]);\n oldFirstKeyframe.set('offset', roundOffset(startingGap));\n newKeyframes.push(oldFirstKeyframe);\n /*\n When the keyframe is stretched then it means that the delay before the animation\n starts is gone. Instead the first keyframe is placed at the start of the animation\n and it is then copied to where it starts when the original delay is over. This basically\n means nothing animates during that delay, but the styles are still rendered. For this\n to work the original offset values that exist in the original keyframes must be \"warped\"\n so that they can take the new keyframe + delay into account.\n delay=1000, duration=1000, keyframes = 0 .5 1\n turns into\n delay=0, duration=2000, keyframes = 0 .33 .66 1\n */\n // offsets between 1 ... n -1 are all warped by the keyframe stretch\n const limit = keyframes.length - 1;\n for (let i = 1; i <= limit; i++) {\n let kf = new Map(keyframes[i]);\n const oldOffset = kf.get('offset');\n const timeAtKeyframe = delay + oldOffset * duration;\n kf.set('offset', roundOffset(timeAtKeyframe / totalTime));\n newKeyframes.push(kf);\n }\n // the new starting keyframe should be added at the start\n duration = totalTime;\n delay = 0;\n easing = '';\n keyframes = newKeyframes;\n }\n return createTimelineInstruction(this.element, keyframes, this.preStyleProps, this.postStyleProps, duration, delay, easing, true);\n }\n}\nfunction roundOffset(offset, decimalPoints = 3) {\n const mult = Math.pow(10, decimalPoints - 1);\n return Math.round(offset * mult) / mult;\n}\nfunction flattenStyles(input, allStyles) {\n const styles = new Map();\n let allProperties;\n input.forEach(token => {\n if (token === '*') {\n allProperties ??= allStyles.keys();\n for (let prop of allProperties) {\n styles.set(prop, AUTO_STYLE);\n }\n } else {\n for (let [prop, val] of token) {\n styles.set(prop, val);\n }\n }\n });\n return styles;\n}\nfunction createTransitionInstruction(element, triggerName, fromState, toState, isRemovalTransition, fromStyles, toStyles, timelines, queriedElements, preStyleProps, postStyleProps, totalTime, errors) {\n return {\n type: 0 /* AnimationTransitionInstructionType.TransitionAnimation */,\n element,\n triggerName,\n isRemovalTransition,\n fromState,\n fromStyles,\n toState,\n toStyles,\n timelines,\n queriedElements,\n preStyleProps,\n postStyleProps,\n totalTime,\n errors\n };\n}\nconst EMPTY_OBJECT = {};\nclass AnimationTransitionFactory {\n _triggerName;\n ast;\n _stateStyles;\n constructor(_triggerName, ast, _stateStyles) {\n this._triggerName = _triggerName;\n this.ast = ast;\n this._stateStyles = _stateStyles;\n }\n match(currentState, nextState, element, params) {\n return oneOrMoreTransitionsMatch(this.ast.matchers, currentState, nextState, element, params);\n }\n buildStyles(stateName, params, errors) {\n let styler = this._stateStyles.get('*');\n if (stateName !== undefined) {\n styler = this._stateStyles.get(stateName?.toString()) || styler;\n }\n return styler ? styler.buildStyles(params, errors) : new Map();\n }\n build(driver, element, currentState, nextState, enterClassName, leaveClassName, currentOptions, nextOptions, subInstructions, skipAstBuild) {\n const errors = [];\n const transitionAnimationParams = this.ast.options && this.ast.options.params || EMPTY_OBJECT;\n const currentAnimationParams = currentOptions && currentOptions.params || EMPTY_OBJECT;\n const currentStateStyles = this.buildStyles(currentState, currentAnimationParams, errors);\n const nextAnimationParams = nextOptions && nextOptions.params || EMPTY_OBJECT;\n const nextStateStyles = this.buildStyles(nextState, nextAnimationParams, errors);\n const queriedElements = new Set();\n const preStyleMap = new Map();\n const postStyleMap = new Map();\n const isRemoval = nextState === 'void';\n const animationOptions = {\n params: applyParamDefaults(nextAnimationParams, transitionAnimationParams),\n delay: this.ast.options?.delay\n };\n const timelines = skipAstBuild ? [] : buildAnimationTimelines(driver, element, this.ast.animation, enterClassName, leaveClassName, currentStateStyles, nextStateStyles, animationOptions, subInstructions, errors);\n let totalTime = 0;\n timelines.forEach(tl => {\n totalTime = Math.max(tl.duration + tl.delay, totalTime);\n });\n if (errors.length) {\n return createTransitionInstruction(element, this._triggerName, currentState, nextState, isRemoval, currentStateStyles, nextStateStyles, [], [], preStyleMap, postStyleMap, totalTime, errors);\n }\n timelines.forEach(tl => {\n const elm = tl.element;\n const preProps = getOrSetDefaultValue(preStyleMap, elm, new Set());\n tl.preStyleProps.forEach(prop => preProps.add(prop));\n const postProps = getOrSetDefaultValue(postStyleMap, elm, new Set());\n tl.postStyleProps.forEach(prop => postProps.add(prop));\n if (elm !== element) {\n queriedElements.add(elm);\n }\n });\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n checkNonAnimatableInTimelines(timelines, this._triggerName, driver);\n }\n return createTransitionInstruction(element, this._triggerName, currentState, nextState, isRemoval, currentStateStyles, nextStateStyles, timelines, [...queriedElements.values()], preStyleMap, postStyleMap, totalTime);\n }\n}\n/**\n * Checks inside a set of timelines if they try to animate a css property which is not considered\n * animatable, in that case it prints a warning on the console.\n * Besides that the function doesn't have any other effect.\n *\n * Note: this check is done here after the timelines are built instead of doing on a lower level so\n * that we can make sure that the warning appears only once per instruction (we can aggregate here\n * all the issues instead of finding them separately).\n *\n * @param timelines The built timelines for the current instruction.\n * @param triggerName The name of the trigger for the current instruction.\n * @param driver Animation driver used to perform the check.\n *\n */\nfunction checkNonAnimatableInTimelines(timelines, triggerName, driver) {\n if (!driver.validateAnimatableStyleProperty) {\n return;\n }\n const allowedNonAnimatableProps = new Set([\n // 'easing' is a utility/synthetic prop we use to represent\n // easing functions, it represents a property of the animation\n // which is not animatable but different values can be used\n // in different steps\n 'easing']);\n const invalidNonAnimatableProps = new Set();\n timelines.forEach(({\n keyframes\n }) => {\n const nonAnimatablePropsInitialValues = new Map();\n keyframes.forEach(keyframe => {\n const entriesToCheck = Array.from(keyframe.entries()).filter(([prop]) => !allowedNonAnimatableProps.has(prop));\n for (const [prop, value] of entriesToCheck) {\n if (!driver.validateAnimatableStyleProperty(prop)) {\n if (nonAnimatablePropsInitialValues.has(prop) && !invalidNonAnimatableProps.has(prop)) {\n const propInitialValue = nonAnimatablePropsInitialValues.get(prop);\n if (propInitialValue !== value) {\n invalidNonAnimatableProps.add(prop);\n }\n } else {\n nonAnimatablePropsInitialValues.set(prop, value);\n }\n }\n }\n });\n });\n if (invalidNonAnimatableProps.size > 0) {\n console.warn(`Warning: The animation trigger \"${triggerName}\" is attempting to animate the following` + ' not animatable properties: ' + Array.from(invalidNonAnimatableProps).join(', ') + '\\n' + '(to check the list of all animatable properties visit https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_animated_properties)');\n }\n}\nfunction oneOrMoreTransitionsMatch(matchFns, currentState, nextState, element, params) {\n return matchFns.some(fn => fn(currentState, nextState, element, params));\n}\nfunction applyParamDefaults(userParams, defaults) {\n const result = {\n ...defaults\n };\n Object.entries(userParams).forEach(([key, value]) => {\n if (value != null) {\n result[key] = value;\n }\n });\n return result;\n}\nclass AnimationStateStyles {\n styles;\n defaultParams;\n normalizer;\n constructor(styles, defaultParams, normalizer) {\n this.styles = styles;\n this.defaultParams = defaultParams;\n this.normalizer = normalizer;\n }\n buildStyles(params, errors) {\n const finalStyles = new Map();\n const combinedParams = applyParamDefaults(params, this.defaultParams);\n this.styles.styles.forEach(value => {\n if (typeof value !== 'string') {\n value.forEach((val, prop) => {\n if (val) {\n val = interpolateParams(val, combinedParams, errors);\n }\n const normalizedProp = this.normalizer.normalizePropertyName(prop, errors);\n val = this.normalizer.normalizeStyleValue(prop, normalizedProp, val, errors);\n finalStyles.set(prop, val);\n });\n }\n });\n return finalStyles;\n }\n}\nfunction buildTrigger(name, ast, normalizer) {\n return new AnimationTrigger(name, ast, normalizer);\n}\nclass AnimationTrigger {\n name;\n ast;\n _normalizer;\n transitionFactories = [];\n fallbackTransition;\n states = /*#__PURE__*/new Map();\n constructor(name, ast, _normalizer) {\n this.name = name;\n this.ast = ast;\n this._normalizer = _normalizer;\n ast.states.forEach(ast => {\n const defaultParams = ast.options && ast.options.params || {};\n this.states.set(ast.name, new AnimationStateStyles(ast.style, defaultParams, _normalizer));\n });\n balanceProperties(this.states, 'true', '1');\n balanceProperties(this.states, 'false', '0');\n ast.transitions.forEach(ast => {\n this.transitionFactories.push(new AnimationTransitionFactory(name, ast, this.states));\n });\n this.fallbackTransition = createFallbackTransition(name, this.states);\n }\n get containsQueries() {\n return this.ast.queryCount > 0;\n }\n matchTransition(currentState, nextState, element, params) {\n const entry = this.transitionFactories.find(f => f.match(currentState, nextState, element, params));\n return entry || null;\n }\n matchStyles(currentState, params, errors) {\n return this.fallbackTransition.buildStyles(currentState, params, errors);\n }\n}\nfunction createFallbackTransition(triggerName, states, normalizer) {\n const matchers = [(fromState, toState) => true];\n const animation = {\n type: AnimationMetadataType.Sequence,\n steps: [],\n options: null\n };\n const transition = {\n type: AnimationMetadataType.Transition,\n animation,\n matchers,\n options: null,\n queryCount: 0,\n depCount: 0\n };\n return new AnimationTransitionFactory(triggerName, transition, states);\n}\nfunction balanceProperties(stateMap, key1, key2) {\n if (stateMap.has(key1)) {\n if (!stateMap.has(key2)) {\n stateMap.set(key2, stateMap.get(key1));\n }\n } else if (stateMap.has(key2)) {\n stateMap.set(key1, stateMap.get(key2));\n }\n}\nconst EMPTY_INSTRUCTION_MAP = /*#__PURE__*/new ElementInstructionMap();\nclass TimelineAnimationEngine {\n bodyNode;\n _driver;\n _normalizer;\n _animations = /*#__PURE__*/new Map();\n _playersById = /*#__PURE__*/new Map();\n players = [];\n constructor(bodyNode, _driver, _normalizer) {\n this.bodyNode = bodyNode;\n this._driver = _driver;\n this._normalizer = _normalizer;\n }\n register(id, metadata) {\n const errors = [];\n const warnings = [];\n const ast = buildAnimationAst(this._driver, metadata, errors, warnings);\n if (errors.length) {\n throw registerFailed(errors);\n } else {\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n if (warnings.length) {\n warnRegister(warnings);\n }\n }\n this._animations.set(id, ast);\n }\n }\n _buildPlayer(i, preStyles, postStyles) {\n const element = i.element;\n const keyframes = normalizeKeyframes$1(this._normalizer, i.keyframes, preStyles, postStyles);\n return this._driver.animate(element, keyframes, i.duration, i.delay, i.easing, [], true);\n }\n create(id, element, options = {}) {\n const errors = [];\n const ast = this._animations.get(id);\n let instructions;\n const autoStylesMap = new Map();\n if (ast) {\n instructions = buildAnimationTimelines(this._driver, element, ast, ENTER_CLASSNAME, LEAVE_CLASSNAME, new Map(), new Map(), options, EMPTY_INSTRUCTION_MAP, errors);\n instructions.forEach(inst => {\n const styles = getOrSetDefaultValue(autoStylesMap, inst.element, new Map());\n inst.postStyleProps.forEach(prop => styles.set(prop, null));\n });\n } else {\n errors.push(missingOrDestroyedAnimation());\n instructions = [];\n }\n if (errors.length) {\n throw createAnimationFailed(errors);\n }\n autoStylesMap.forEach((styles, element) => {\n styles.forEach((_, prop) => {\n styles.set(prop, this._driver.computeStyle(element, prop, AUTO_STYLE));\n });\n });\n const players = instructions.map(i => {\n const styles = autoStylesMap.get(i.element);\n return this._buildPlayer(i, new Map(), styles);\n });\n const player = optimizeGroupPlayer(players);\n this._playersById.set(id, player);\n player.onDestroy(() => this.destroy(id));\n this.players.push(player);\n return player;\n }\n destroy(id) {\n const player = this._getPlayer(id);\n player.destroy();\n this._playersById.delete(id);\n const index = this.players.indexOf(player);\n if (index >= 0) {\n this.players.splice(index, 1);\n }\n }\n _getPlayer(id) {\n const player = this._playersById.get(id);\n if (!player) {\n throw missingPlayer(id);\n }\n return player;\n }\n listen(id, element, eventName, callback) {\n // triggerName, fromState, toState are all ignored for timeline animations\n const baseEvent = makeAnimationEvent(element, '', '', '');\n listenOnPlayer(this._getPlayer(id), eventName, baseEvent, callback);\n return () => {};\n }\n command(id, element, command, args) {\n if (command == 'register') {\n this.register(id, args[0]);\n return;\n }\n if (command == 'create') {\n const options = args[0] || {};\n this.create(id, element, options);\n return;\n }\n const player = this._getPlayer(id);\n switch (command) {\n case 'play':\n player.play();\n break;\n case 'pause':\n player.pause();\n break;\n case 'reset':\n player.reset();\n break;\n case 'restart':\n player.restart();\n break;\n case 'finish':\n player.finish();\n break;\n case 'init':\n player.init();\n break;\n case 'setPosition':\n player.setPosition(parseFloat(args[0]));\n break;\n case 'destroy':\n this.destroy(id);\n break;\n }\n }\n}\nconst QUEUED_CLASSNAME = 'ng-animate-queued';\nconst QUEUED_SELECTOR = '.ng-animate-queued';\nconst DISABLED_CLASSNAME = 'ng-animate-disabled';\nconst DISABLED_SELECTOR = '.ng-animate-disabled';\nconst STAR_CLASSNAME = 'ng-star-inserted';\nconst STAR_SELECTOR = '.ng-star-inserted';\nconst EMPTY_PLAYER_ARRAY = [];\nconst NULL_REMOVAL_STATE = {\n namespaceId: '',\n setForRemoval: false,\n setForMove: false,\n hasAnimation: false,\n removedBeforeQueried: false\n};\nconst NULL_REMOVED_QUERIED_STATE = {\n namespaceId: '',\n setForMove: false,\n setForRemoval: false,\n hasAnimation: false,\n removedBeforeQueried: true\n};\nconst REMOVAL_FLAG = '__ng_removed';\nclass StateValue {\n namespaceId;\n value;\n options;\n get params() {\n return this.options.params;\n }\n constructor(input, namespaceId = '') {\n this.namespaceId = namespaceId;\n const isObj = input && input.hasOwnProperty('value');\n const value = isObj ? input['value'] : input;\n this.value = normalizeTriggerValue(value);\n if (isObj) {\n // we drop the value property from options.\n const {\n value,\n ...options\n } = input;\n this.options = options;\n } else {\n this.options = {};\n }\n if (!this.options.params) {\n this.options.params = {};\n }\n }\n absorbOptions(options) {\n const newParams = options.params;\n if (newParams) {\n const oldParams = this.options.params;\n Object.keys(newParams).forEach(prop => {\n if (oldParams[prop] == null) {\n oldParams[prop] = newParams[prop];\n }\n });\n }\n }\n}\nconst VOID_VALUE = 'void';\nconst DEFAULT_STATE_VALUE = /*#__PURE__*/new StateValue(VOID_VALUE);\nclass AnimationTransitionNamespace {\n id;\n hostElement;\n _engine;\n players = [];\n _triggers = /*#__PURE__*/new Map();\n _queue = [];\n _elementListeners = /*#__PURE__*/new Map();\n _hostClassName;\n constructor(id, hostElement, _engine) {\n this.id = id;\n this.hostElement = hostElement;\n this._engine = _engine;\n this._hostClassName = 'ng-tns-' + id;\n addClass(hostElement, this._hostClassName);\n }\n listen(element, name, phase, callback) {\n if (!this._triggers.has(name)) {\n throw missingTrigger(phase, name);\n }\n if (phase == null || phase.length == 0) {\n throw missingEvent(name);\n }\n if (!isTriggerEventValid(phase)) {\n throw unsupportedTriggerEvent(phase, name);\n }\n const listeners = getOrSetDefaultValue(this._elementListeners, element, []);\n const data = {\n name,\n phase,\n callback\n };\n listeners.push(data);\n const triggersWithStates = getOrSetDefaultValue(this._engine.statesByElement, element, new Map());\n if (!triggersWithStates.has(name)) {\n addClass(element, NG_TRIGGER_CLASSNAME);\n addClass(element, NG_TRIGGER_CLASSNAME + '-' + name);\n triggersWithStates.set(name, DEFAULT_STATE_VALUE);\n }\n return () => {\n // the event listener is removed AFTER the flush has occurred such\n // that leave animations callbacks can fire (otherwise if the node\n // is removed in between then the listeners would be deregistered)\n this._engine.afterFlush(() => {\n const index = listeners.indexOf(data);\n if (index >= 0) {\n listeners.splice(index, 1);\n }\n if (!this._triggers.has(name)) {\n triggersWithStates.delete(name);\n }\n });\n };\n }\n register(name, ast) {\n if (this._triggers.has(name)) {\n // throw\n return false;\n } else {\n this._triggers.set(name, ast);\n return true;\n }\n }\n _getTrigger(name) {\n const trigger = this._triggers.get(name);\n if (!trigger) {\n throw unregisteredTrigger(name);\n }\n return trigger;\n }\n trigger(element, triggerName, value, defaultToFallback = true) {\n const trigger = this._getTrigger(triggerName);\n const player = new TransitionAnimationPlayer(this.id, triggerName, element);\n let triggersWithStates = this._engine.statesByElement.get(element);\n if (!triggersWithStates) {\n addClass(element, NG_TRIGGER_CLASSNAME);\n addClass(element, NG_TRIGGER_CLASSNAME + '-' + triggerName);\n this._engine.statesByElement.set(element, triggersWithStates = new Map());\n }\n let fromState = triggersWithStates.get(triggerName);\n const toState = new StateValue(value, this.id);\n const isObj = value && value.hasOwnProperty('value');\n if (!isObj && fromState) {\n toState.absorbOptions(fromState.options);\n }\n triggersWithStates.set(triggerName, toState);\n if (!fromState) {\n fromState = DEFAULT_STATE_VALUE;\n }\n const isRemoval = toState.value === VOID_VALUE;\n // normally this isn't reached by here, however, if an object expression\n // is passed in then it may be a new object each time. Comparing the value\n // is important since that will stay the same despite there being a new object.\n // The removal arc here is special cased because the same element is triggered\n // twice in the event that it contains animations on the outer/inner portions\n // of the host container\n if (!isRemoval && fromState.value === toState.value) {\n // this means that despite the value not changing, some inner params\n // have changed which means that the animation final styles need to be applied\n if (!objEquals(fromState.params, toState.params)) {\n const errors = [];\n const fromStyles = trigger.matchStyles(fromState.value, fromState.params, errors);\n const toStyles = trigger.matchStyles(toState.value, toState.params, errors);\n if (errors.length) {\n this._engine.reportError(errors);\n } else {\n this._engine.afterFlush(() => {\n eraseStyles(element, fromStyles);\n setStyles(element, toStyles);\n });\n }\n }\n return;\n }\n const playersOnElement = getOrSetDefaultValue(this._engine.playersByElement, element, []);\n playersOnElement.forEach(player => {\n // only remove the player if it is queued on the EXACT same trigger/namespace\n // we only also deal with queued players here because if the animation has\n // started then we want to keep the player alive until the flush happens\n // (which is where the previousPlayers are passed into the new player)\n if (player.namespaceId == this.id && player.triggerName == triggerName && player.queued) {\n player.destroy();\n }\n });\n let transition = trigger.matchTransition(fromState.value, toState.value, element, toState.params);\n let isFallbackTransition = false;\n if (!transition) {\n if (!defaultToFallback) return;\n transition = trigger.fallbackTransition;\n isFallbackTransition = true;\n }\n this._engine.totalQueuedPlayers++;\n this._queue.push({\n element,\n triggerName,\n transition,\n fromState,\n toState,\n player,\n isFallbackTransition\n });\n if (!isFallbackTransition) {\n addClass(element, QUEUED_CLASSNAME);\n player.onStart(() => {\n removeClass(element, QUEUED_CLASSNAME);\n });\n }\n player.onDone(() => {\n let index = this.players.indexOf(player);\n if (index >= 0) {\n this.players.splice(index, 1);\n }\n const players = this._engine.playersByElement.get(element);\n if (players) {\n let index = players.indexOf(player);\n if (index >= 0) {\n players.splice(index, 1);\n }\n }\n });\n this.players.push(player);\n playersOnElement.push(player);\n return player;\n }\n deregister(name) {\n this._triggers.delete(name);\n this._engine.statesByElement.forEach(stateMap => stateMap.delete(name));\n this._elementListeners.forEach((listeners, element) => {\n this._elementListeners.set(element, listeners.filter(entry => {\n return entry.name != name;\n }));\n });\n }\n clearElementCache(element) {\n this._engine.statesByElement.delete(element);\n this._elementListeners.delete(element);\n const elementPlayers = this._engine.playersByElement.get(element);\n if (elementPlayers) {\n elementPlayers.forEach(player => player.destroy());\n this._engine.playersByElement.delete(element);\n }\n }\n _signalRemovalForInnerTriggers(rootElement, context) {\n const elements = this._engine.driver.query(rootElement, NG_TRIGGER_SELECTOR, true);\n // emulate a leave animation for all inner nodes within this node.\n // If there are no animations found for any of the nodes then clear the cache\n // for the element.\n elements.forEach(elm => {\n // this means that an inner remove() operation has already kicked off\n // the animation on this element...\n if (elm[REMOVAL_FLAG]) return;\n const namespaces = this._engine.fetchNamespacesByElement(elm);\n if (namespaces.size) {\n namespaces.forEach(ns => ns.triggerLeaveAnimation(elm, context, false, true));\n } else {\n this.clearElementCache(elm);\n }\n });\n // If the child elements were removed along with the parent, their animations might not\n // have completed. Clear all the elements from the cache so we don't end up with a memory leak.\n this._engine.afterFlushAnimationsDone(() => elements.forEach(elm => this.clearElementCache(elm)));\n }\n triggerLeaveAnimation(element, context, destroyAfterComplete, defaultToFallback) {\n const triggerStates = this._engine.statesByElement.get(element);\n const previousTriggersValues = new Map();\n if (triggerStates) {\n const players = [];\n triggerStates.forEach((state, triggerName) => {\n previousTriggersValues.set(triggerName, state.value);\n // this check is here in the event that an element is removed\n // twice (both on the host level and the component level)\n if (this._triggers.has(triggerName)) {\n const player = this.trigger(element, triggerName, VOID_VALUE, defaultToFallback);\n if (player) {\n players.push(player);\n }\n }\n });\n if (players.length) {\n this._engine.markElementAsRemoved(this.id, element, true, context, previousTriggersValues);\n if (destroyAfterComplete) {\n optimizeGroupPlayer(players).onDone(() => this._engine.processLeaveNode(element));\n }\n return true;\n }\n }\n return false;\n }\n prepareLeaveAnimationListeners(element) {\n const listeners = this._elementListeners.get(element);\n const elementStates = this._engine.statesByElement.get(element);\n // if this statement fails then it means that the element was picked up\n // by an earlier flush (or there are no listeners at all to track the leave).\n if (listeners && elementStates) {\n const visitedTriggers = new Set();\n listeners.forEach(listener => {\n const triggerName = listener.name;\n if (visitedTriggers.has(triggerName)) return;\n visitedTriggers.add(triggerName);\n const trigger = this._triggers.get(triggerName);\n const transition = trigger.fallbackTransition;\n const fromState = elementStates.get(triggerName) || DEFAULT_STATE_VALUE;\n const toState = new StateValue(VOID_VALUE);\n const player = new TransitionAnimationPlayer(this.id, triggerName, element);\n this._engine.totalQueuedPlayers++;\n this._queue.push({\n element,\n triggerName,\n transition,\n fromState,\n toState,\n player,\n isFallbackTransition: true\n });\n });\n }\n }\n removeNode(element, context) {\n const engine = this._engine;\n if (element.childElementCount) {\n this._signalRemovalForInnerTriggers(element, context);\n }\n // this means that a * => VOID animation was detected and kicked off\n if (this.triggerLeaveAnimation(element, context, true)) return;\n // find the player that is animating and make sure that the\n // removal is delayed until that player has completed\n let containsPotentialParentTransition = false;\n if (engine.totalAnimations) {\n const currentPlayers = engine.players.length ? engine.playersByQueriedElement.get(element) : [];\n // when this `if statement` does not continue forward it means that\n // a previous animation query has selected the current element and\n // is animating it. In this situation want to continue forwards and\n // allow the element to be queued up for animation later.\n if (currentPlayers && currentPlayers.length) {\n containsPotentialParentTransition = true;\n } else {\n let parent = element;\n while (parent = parent.parentNode) {\n const triggers = engine.statesByElement.get(parent);\n if (triggers) {\n containsPotentialParentTransition = true;\n break;\n }\n }\n }\n }\n // at this stage we know that the element will either get removed\n // during flush or will be picked up by a parent query. Either way\n // we need to fire the listeners for this element when it DOES get\n // removed (once the query parent animation is done or after flush)\n this.prepareLeaveAnimationListeners(element);\n // whether or not a parent has an animation we need to delay the deferral of the leave\n // operation until we have more information (which we do after flush() has been called)\n if (containsPotentialParentTransition) {\n engine.markElementAsRemoved(this.id, element, false, context);\n } else {\n const removalFlag = element[REMOVAL_FLAG];\n if (!removalFlag || removalFlag === NULL_REMOVAL_STATE) {\n // we do this after the flush has occurred such\n // that the callbacks can be fired\n engine.afterFlush(() => this.clearElementCache(element));\n engine.destroyInnerAnimations(element);\n engine._onRemovalComplete(element, context);\n }\n }\n }\n insertNode(element, parent) {\n addClass(element, this._hostClassName);\n }\n drainQueuedTransitions(microtaskId) {\n const instructions = [];\n this._queue.forEach(entry => {\n const player = entry.player;\n if (player.destroyed) return;\n const element = entry.element;\n const listeners = this._elementListeners.get(element);\n if (listeners) {\n listeners.forEach(listener => {\n if (listener.name == entry.triggerName) {\n const baseEvent = makeAnimationEvent(element, entry.triggerName, entry.fromState.value, entry.toState.value);\n baseEvent['_data'] = microtaskId;\n listenOnPlayer(entry.player, listener.phase, baseEvent, listener.callback);\n }\n });\n }\n if (player.markedForDestroy) {\n this._engine.afterFlush(() => {\n // now we can destroy the element properly since the event listeners have\n // been bound to the player\n player.destroy();\n });\n } else {\n instructions.push(entry);\n }\n });\n this._queue = [];\n return instructions.sort((a, b) => {\n // if depCount == 0 them move to front\n // otherwise if a contains b then move back\n const d0 = a.transition.ast.depCount;\n const d1 = b.transition.ast.depCount;\n if (d0 == 0 || d1 == 0) {\n return d0 - d1;\n }\n return this._engine.driver.containsElement(a.element, b.element) ? 1 : -1;\n });\n }\n destroy(context) {\n this.players.forEach(p => p.destroy());\n this._signalRemovalForInnerTriggers(this.hostElement, context);\n }\n}\nclass TransitionAnimationEngine {\n bodyNode;\n driver;\n _normalizer;\n players = [];\n newHostElements = /*#__PURE__*/new Map();\n playersByElement = /*#__PURE__*/new Map();\n playersByQueriedElement = /*#__PURE__*/new Map();\n statesByElement = /*#__PURE__*/new Map();\n disabledNodes = /*#__PURE__*/new Set();\n totalAnimations = 0;\n totalQueuedPlayers = 0;\n _namespaceLookup = {};\n _namespaceList = [];\n _flushFns = [];\n _whenQuietFns = [];\n namespacesByHostElement = /*#__PURE__*/new Map();\n collectedEnterElements = [];\n collectedLeaveElements = [];\n // this method is designed to be overridden by the code that uses this engine\n onRemovalComplete = (element, context) => {};\n /** @internal */\n _onRemovalComplete(element, context) {\n this.onRemovalComplete(element, context);\n }\n constructor(bodyNode, driver, _normalizer) {\n this.bodyNode = bodyNode;\n this.driver = driver;\n this._normalizer = _normalizer;\n }\n get queuedPlayers() {\n const players = [];\n this._namespaceList.forEach(ns => {\n ns.players.forEach(player => {\n if (player.queued) {\n players.push(player);\n }\n });\n });\n return players;\n }\n createNamespace(namespaceId, hostElement) {\n const ns = new AnimationTransitionNamespace(namespaceId, hostElement, this);\n if (this.bodyNode && this.driver.containsElement(this.bodyNode, hostElement)) {\n this._balanceNamespaceList(ns, hostElement);\n } else {\n // defer this later until flush during when the host element has\n // been inserted so that we know exactly where to place it in\n // the namespace list\n this.newHostElements.set(hostElement, ns);\n // given that this host element is a part of the animation code, it\n // may or may not be inserted by a parent node that is of an\n // animation renderer type. If this happens then we can still have\n // access to this item when we query for :enter nodes. If the parent\n // is a renderer then the set data-structure will normalize the entry\n this.collectEnterElement(hostElement);\n }\n return this._namespaceLookup[namespaceId] = ns;\n }\n _balanceNamespaceList(ns, hostElement) {\n const namespaceList = this._namespaceList;\n const namespacesByHostElement = this.namespacesByHostElement;\n const limit = namespaceList.length - 1;\n if (limit >= 0) {\n let found = false;\n // Find the closest ancestor with an existing namespace so we can then insert `ns` after it,\n // establishing a top-down ordering of namespaces in `this._namespaceList`.\n let ancestor = this.driver.getParentElement(hostElement);\n while (ancestor) {\n const ancestorNs = namespacesByHostElement.get(ancestor);\n if (ancestorNs) {\n // An animation namespace has been registered for this ancestor, so we insert `ns`\n // right after it to establish top-down ordering of animation namespaces.\n const index = namespaceList.indexOf(ancestorNs);\n namespaceList.splice(index + 1, 0, ns);\n found = true;\n break;\n }\n ancestor = this.driver.getParentElement(ancestor);\n }\n if (!found) {\n // No namespace exists that is an ancestor of `ns`, so `ns` is inserted at the front to\n // ensure that any existing descendants are ordered after `ns`, retaining the desired\n // top-down ordering.\n namespaceList.unshift(ns);\n }\n } else {\n namespaceList.push(ns);\n }\n namespacesByHostElement.set(hostElement, ns);\n return ns;\n }\n register(namespaceId, hostElement) {\n let ns = this._namespaceLookup[namespaceId];\n if (!ns) {\n ns = this.createNamespace(namespaceId, hostElement);\n }\n return ns;\n }\n registerTrigger(namespaceId, name, trigger) {\n let ns = this._namespaceLookup[namespaceId];\n if (ns && ns.register(name, trigger)) {\n this.totalAnimations++;\n }\n }\n destroy(namespaceId, context) {\n if (!namespaceId) return;\n this.afterFlush(() => {});\n this.afterFlushAnimationsDone(() => {\n const ns = this._fetchNamespace(namespaceId);\n this.namespacesByHostElement.delete(ns.hostElement);\n const index = this._namespaceList.indexOf(ns);\n if (index >= 0) {\n this._namespaceList.splice(index, 1);\n }\n ns.destroy(context);\n delete this._namespaceLookup[namespaceId];\n });\n }\n _fetchNamespace(id) {\n return this._namespaceLookup[id];\n }\n fetchNamespacesByElement(element) {\n // normally there should only be one namespace per element, however\n // if @triggers are placed on both the component element and then\n // its host element (within the component code) then there will be\n // two namespaces returned. We use a set here to simply deduplicate\n // the namespaces in case (for the reason described above) there are multiple triggers\n const namespaces = new Set();\n const elementStates = this.statesByElement.get(element);\n if (elementStates) {\n for (let stateValue of elementStates.values()) {\n if (stateValue.namespaceId) {\n const ns = this._fetchNamespace(stateValue.namespaceId);\n if (ns) {\n namespaces.add(ns);\n }\n }\n }\n }\n return namespaces;\n }\n trigger(namespaceId, element, name, value) {\n if (isElementNode(element)) {\n const ns = this._fetchNamespace(namespaceId);\n if (ns) {\n ns.trigger(element, name, value);\n return true;\n }\n }\n return false;\n }\n insertNode(namespaceId, element, parent, insertBefore) {\n if (!isElementNode(element)) return;\n // special case for when an element is removed and reinserted (move operation)\n // when this occurs we do not want to use the element for deletion later\n const details = element[REMOVAL_FLAG];\n if (details && details.setForRemoval) {\n details.setForRemoval = false;\n details.setForMove = true;\n const index = this.collectedLeaveElements.indexOf(element);\n if (index >= 0) {\n this.collectedLeaveElements.splice(index, 1);\n }\n }\n // in the event that the namespaceId is blank then the caller\n // code does not contain any animation code in it, but it is\n // just being called so that the node is marked as being inserted\n if (namespaceId) {\n const ns = this._fetchNamespace(namespaceId);\n // This if-statement is a workaround for router issue #21947.\n // The router sometimes hits a race condition where while a route\n // is being instantiated a new navigation arrives, triggering leave\n // animation of DOM that has not been fully initialized, until this\n // is resolved, we need to handle the scenario when DOM is not in a\n // consistent state during the animation.\n if (ns) {\n ns.insertNode(element, parent);\n }\n }\n // only *directives and host elements are inserted before\n if (insertBefore) {\n this.collectEnterElement(element);\n }\n }\n collectEnterElement(element) {\n this.collectedEnterElements.push(element);\n }\n markElementAsDisabled(element, value) {\n if (value) {\n if (!this.disabledNodes.has(element)) {\n this.disabledNodes.add(element);\n addClass(element, DISABLED_CLASSNAME);\n }\n } else if (this.disabledNodes.has(element)) {\n this.disabledNodes.delete(element);\n removeClass(element, DISABLED_CLASSNAME);\n }\n }\n removeNode(namespaceId, element, context) {\n if (isElementNode(element)) {\n const ns = namespaceId ? this._fetchNamespace(namespaceId) : null;\n if (ns) {\n ns.removeNode(element, context);\n } else {\n this.markElementAsRemoved(namespaceId, element, false, context);\n }\n const hostNS = this.namespacesByHostElement.get(element);\n if (hostNS && hostNS.id !== namespaceId) {\n hostNS.removeNode(element, context);\n }\n } else {\n this._onRemovalComplete(element, context);\n }\n }\n markElementAsRemoved(namespaceId, element, hasAnimation, context, previousTriggersValues) {\n this.collectedLeaveElements.push(element);\n element[REMOVAL_FLAG] = {\n namespaceId,\n setForRemoval: context,\n hasAnimation,\n removedBeforeQueried: false,\n previousTriggersValues\n };\n }\n listen(namespaceId, element, name, phase, callback) {\n if (isElementNode(element)) {\n return this._fetchNamespace(namespaceId).listen(element, name, phase, callback);\n }\n return () => {};\n }\n _buildInstruction(entry, subTimelines, enterClassName, leaveClassName, skipBuildAst) {\n return entry.transition.build(this.driver, entry.element, entry.fromState.value, entry.toState.value, enterClassName, leaveClassName, entry.fromState.options, entry.toState.options, subTimelines, skipBuildAst);\n }\n destroyInnerAnimations(containerElement) {\n let elements = this.driver.query(containerElement, NG_TRIGGER_SELECTOR, true);\n elements.forEach(element => this.destroyActiveAnimationsForElement(element));\n if (this.playersByQueriedElement.size == 0) return;\n elements = this.driver.query(containerElement, NG_ANIMATING_SELECTOR, true);\n elements.forEach(element => this.finishActiveQueriedAnimationOnElement(element));\n }\n destroyActiveAnimationsForElement(element) {\n const players = this.playersByElement.get(element);\n if (players) {\n players.forEach(player => {\n // special case for when an element is set for destruction, but hasn't started.\n // in this situation we want to delay the destruction until the flush occurs\n // so that any event listeners attached to the player are triggered.\n if (player.queued) {\n player.markedForDestroy = true;\n } else {\n player.destroy();\n }\n });\n }\n }\n finishActiveQueriedAnimationOnElement(element) {\n const players = this.playersByQueriedElement.get(element);\n if (players) {\n players.forEach(player => player.finish());\n }\n }\n whenRenderingDone() {\n return new Promise(resolve => {\n if (this.players.length) {\n return optimizeGroupPlayer(this.players).onDone(() => resolve());\n } else {\n resolve();\n }\n });\n }\n processLeaveNode(element) {\n const details = element[REMOVAL_FLAG];\n if (details && details.setForRemoval) {\n // this will prevent it from removing it twice\n element[REMOVAL_FLAG] = NULL_REMOVAL_STATE;\n if (details.namespaceId) {\n this.destroyInnerAnimations(element);\n const ns = this._fetchNamespace(details.namespaceId);\n if (ns) {\n ns.clearElementCache(element);\n }\n }\n this._onRemovalComplete(element, details.setForRemoval);\n }\n if (element.classList?.contains(DISABLED_CLASSNAME)) {\n this.markElementAsDisabled(element, false);\n }\n this.driver.query(element, DISABLED_SELECTOR, true).forEach(node => {\n this.markElementAsDisabled(node, false);\n });\n }\n flush(microtaskId = -1) {\n let players = [];\n if (this.newHostElements.size) {\n this.newHostElements.forEach((ns, element) => this._balanceNamespaceList(ns, element));\n this.newHostElements.clear();\n }\n if (this.totalAnimations && this.collectedEnterElements.length) {\n for (let i = 0; i < this.collectedEnterElements.length; i++) {\n const elm = this.collectedEnterElements[i];\n addClass(elm, STAR_CLASSNAME);\n }\n }\n if (this._namespaceList.length && (this.totalQueuedPlayers || this.collectedLeaveElements.length)) {\n const cleanupFns = [];\n try {\n players = this._flushAnimations(cleanupFns, microtaskId);\n } finally {\n for (let i = 0; i < cleanupFns.length; i++) {\n cleanupFns[i]();\n }\n }\n } else {\n for (let i = 0; i < this.collectedLeaveElements.length; i++) {\n const element = this.collectedLeaveElements[i];\n this.processLeaveNode(element);\n }\n }\n this.totalQueuedPlayers = 0;\n this.collectedEnterElements.length = 0;\n this.collectedLeaveElements.length = 0;\n this._flushFns.forEach(fn => fn());\n this._flushFns = [];\n if (this._whenQuietFns.length) {\n // we move these over to a variable so that\n // if any new callbacks are registered in another\n // flush they do not populate the existing set\n const quietFns = this._whenQuietFns;\n this._whenQuietFns = [];\n if (players.length) {\n optimizeGroupPlayer(players).onDone(() => {\n quietFns.forEach(fn => fn());\n });\n } else {\n quietFns.forEach(fn => fn());\n }\n }\n }\n reportError(errors) {\n throw triggerTransitionsFailed(errors);\n }\n _flushAnimations(cleanupFns, microtaskId) {\n const subTimelines = new ElementInstructionMap();\n const skippedPlayers = [];\n const skippedPlayersMap = new Map();\n const queuedInstructions = [];\n const queriedElements = new Map();\n const allPreStyleElements = new Map();\n const allPostStyleElements = new Map();\n const disabledElementsSet = new Set();\n this.disabledNodes.forEach(node => {\n disabledElementsSet.add(node);\n const nodesThatAreDisabled = this.driver.query(node, QUEUED_SELECTOR, true);\n for (let i = 0; i < nodesThatAreDisabled.length; i++) {\n disabledElementsSet.add(nodesThatAreDisabled[i]);\n }\n });\n const bodyNode = this.bodyNode;\n const allTriggerElements = Array.from(this.statesByElement.keys());\n const enterNodeMap = buildRootMap(allTriggerElements, this.collectedEnterElements);\n // this must occur before the instructions are built below such that\n // the :enter queries match the elements (since the timeline queries\n // are fired during instruction building).\n const enterNodeMapIds = new Map();\n let i = 0;\n enterNodeMap.forEach((nodes, root) => {\n const className = ENTER_CLASSNAME + i++;\n enterNodeMapIds.set(root, className);\n nodes.forEach(node => addClass(node, className));\n });\n const allLeaveNodes = [];\n const mergedLeaveNodes = new Set();\n const leaveNodesWithoutAnimations = new Set();\n for (let i = 0; i < this.collectedLeaveElements.length; i++) {\n const element = this.collectedLeaveElements[i];\n const details = element[REMOVAL_FLAG];\n if (details && details.setForRemoval) {\n allLeaveNodes.push(element);\n mergedLeaveNodes.add(element);\n if (details.hasAnimation) {\n this.driver.query(element, STAR_SELECTOR, true).forEach(elm => mergedLeaveNodes.add(elm));\n } else {\n leaveNodesWithoutAnimations.add(element);\n }\n }\n }\n const leaveNodeMapIds = new Map();\n const leaveNodeMap = buildRootMap(allTriggerElements, Array.from(mergedLeaveNodes));\n leaveNodeMap.forEach((nodes, root) => {\n const className = LEAVE_CLASSNAME + i++;\n leaveNodeMapIds.set(root, className);\n nodes.forEach(node => addClass(node, className));\n });\n cleanupFns.push(() => {\n enterNodeMap.forEach((nodes, root) => {\n const className = enterNodeMapIds.get(root);\n nodes.forEach(node => removeClass(node, className));\n });\n leaveNodeMap.forEach((nodes, root) => {\n const className = leaveNodeMapIds.get(root);\n nodes.forEach(node => removeClass(node, className));\n });\n allLeaveNodes.forEach(element => {\n this.processLeaveNode(element);\n });\n });\n const allPlayers = [];\n const erroneousTransitions = [];\n for (let i = this._namespaceList.length - 1; i >= 0; i--) {\n const ns = this._namespaceList[i];\n ns.drainQueuedTransitions(microtaskId).forEach(entry => {\n const player = entry.player;\n const element = entry.element;\n allPlayers.push(player);\n if (this.collectedEnterElements.length) {\n const details = element[REMOVAL_FLAG];\n // animations for move operations (elements being removed and reinserted,\n // e.g. when the order of an *ngFor list changes) are currently not supported\n if (details && details.setForMove) {\n if (details.previousTriggersValues && details.previousTriggersValues.has(entry.triggerName)) {\n const previousValue = details.previousTriggersValues.get(entry.triggerName);\n // we need to restore the previous trigger value since the element has\n // only been moved and hasn't actually left the DOM\n const triggersWithStates = this.statesByElement.get(entry.element);\n if (triggersWithStates && triggersWithStates.has(entry.triggerName)) {\n const state = triggersWithStates.get(entry.triggerName);\n state.value = previousValue;\n triggersWithStates.set(entry.triggerName, state);\n }\n }\n player.destroy();\n return;\n }\n }\n const nodeIsOrphaned = !bodyNode || !this.driver.containsElement(bodyNode, element);\n const leaveClassName = leaveNodeMapIds.get(element);\n const enterClassName = enterNodeMapIds.get(element);\n const instruction = this._buildInstruction(entry, subTimelines, enterClassName, leaveClassName, nodeIsOrphaned);\n if (instruction.errors && instruction.errors.length) {\n erroneousTransitions.push(instruction);\n return;\n }\n // even though the element may not be in the DOM, it may still\n // be added at a later point (due to the mechanics of content\n // projection and/or dynamic component insertion) therefore it's\n // important to still style the element.\n if (nodeIsOrphaned) {\n player.onStart(() => eraseStyles(element, instruction.fromStyles));\n player.onDestroy(() => setStyles(element, instruction.toStyles));\n skippedPlayers.push(player);\n return;\n }\n // if an unmatched transition is queued and ready to go\n // then it SHOULD NOT render an animation and cancel the\n // previously running animations.\n if (entry.isFallbackTransition) {\n player.onStart(() => eraseStyles(element, instruction.fromStyles));\n player.onDestroy(() => setStyles(element, instruction.toStyles));\n skippedPlayers.push(player);\n return;\n }\n // this means that if a parent animation uses this animation as a sub-trigger\n // then it will instruct the timeline builder not to add a player delay, but\n // instead stretch the first keyframe gap until the animation starts. This is\n // important in order to prevent extra initialization styles from being\n // required by the user for the animation.\n const timelines = [];\n instruction.timelines.forEach(tl => {\n tl.stretchStartingKeyframe = true;\n if (!this.disabledNodes.has(tl.element)) {\n timelines.push(tl);\n }\n });\n instruction.timelines = timelines;\n subTimelines.append(element, instruction.timelines);\n const tuple = {\n instruction,\n player,\n element\n };\n queuedInstructions.push(tuple);\n instruction.queriedElements.forEach(element => getOrSetDefaultValue(queriedElements, element, []).push(player));\n instruction.preStyleProps.forEach((stringMap, element) => {\n if (stringMap.size) {\n let setVal = allPreStyleElements.get(element);\n if (!setVal) {\n allPreStyleElements.set(element, setVal = new Set());\n }\n stringMap.forEach((_, prop) => setVal.add(prop));\n }\n });\n instruction.postStyleProps.forEach((stringMap, element) => {\n let setVal = allPostStyleElements.get(element);\n if (!setVal) {\n allPostStyleElements.set(element, setVal = new Set());\n }\n stringMap.forEach((_, prop) => setVal.add(prop));\n });\n });\n }\n if (erroneousTransitions.length) {\n const errors = [];\n erroneousTransitions.forEach(instruction => {\n errors.push(transitionFailed(instruction.triggerName, instruction.errors));\n });\n allPlayers.forEach(player => player.destroy());\n this.reportError(errors);\n }\n const allPreviousPlayersMap = new Map();\n // this map tells us which element in the DOM tree is contained by\n // which animation. Further down this map will get populated once\n // the players are built and in doing so we can use it to efficiently\n // figure out if a sub player is skipped due to a parent player having priority.\n const animationElementMap = new Map();\n queuedInstructions.forEach(entry => {\n const element = entry.element;\n if (subTimelines.has(element)) {\n animationElementMap.set(element, element);\n this._beforeAnimationBuild(entry.player.namespaceId, entry.instruction, allPreviousPlayersMap);\n }\n });\n skippedPlayers.forEach(player => {\n const element = player.element;\n const previousPlayers = this._getPreviousPlayers(element, false, player.namespaceId, player.triggerName, null);\n previousPlayers.forEach(prevPlayer => {\n getOrSetDefaultValue(allPreviousPlayersMap, element, []).push(prevPlayer);\n prevPlayer.destroy();\n });\n });\n // this is a special case for nodes that will be removed either by\n // having their own leave animations or by being queried in a container\n // that will be removed once a parent animation is complete. The idea\n // here is that * styles must be identical to ! styles because of\n // backwards compatibility (* is also filled in by default in many places).\n // Otherwise * styles will return an empty value or \"auto\" since the element\n // passed to getComputedStyle will not be visible (since * === destination)\n const replaceNodes = allLeaveNodes.filter(node => {\n return replacePostStylesAsPre(node, allPreStyleElements, allPostStyleElements);\n });\n // POST STAGE: fill the * styles\n const postStylesMap = new Map();\n const allLeaveQueriedNodes = cloakAndComputeStyles(postStylesMap, this.driver, leaveNodesWithoutAnimations, allPostStyleElements, AUTO_STYLE);\n allLeaveQueriedNodes.forEach(node => {\n if (replacePostStylesAsPre(node, allPreStyleElements, allPostStyleElements)) {\n replaceNodes.push(node);\n }\n });\n // PRE STAGE: fill the ! styles\n const preStylesMap = new Map();\n enterNodeMap.forEach((nodes, root) => {\n cloakAndComputeStyles(preStylesMap, this.driver, new Set(nodes), allPreStyleElements, _PRE_STYLE);\n });\n replaceNodes.forEach(node => {\n const post = postStylesMap.get(node);\n const pre = preStylesMap.get(node);\n postStylesMap.set(node, new Map([...(post?.entries() ?? []), ...(pre?.entries() ?? [])]));\n });\n const rootPlayers = [];\n const subPlayers = [];\n const NO_PARENT_ANIMATION_ELEMENT_DETECTED = {};\n queuedInstructions.forEach(entry => {\n const {\n element,\n player,\n instruction\n } = entry;\n // this means that it was never consumed by a parent animation which\n // means that it is independent and therefore should be set for animation\n if (subTimelines.has(element)) {\n if (disabledElementsSet.has(element)) {\n player.onDestroy(() => setStyles(element, instruction.toStyles));\n player.disabled = true;\n player.overrideTotalTime(instruction.totalTime);\n skippedPlayers.push(player);\n return;\n }\n // this will flow up the DOM and query the map to figure out\n // if a parent animation has priority over it. In the situation\n // that a parent is detected then it will cancel the loop. If\n // nothing is detected, or it takes a few hops to find a parent,\n // then it will fill in the missing nodes and signal them as having\n // a detected parent (or a NO_PARENT value via a special constant).\n let parentWithAnimation = NO_PARENT_ANIMATION_ELEMENT_DETECTED;\n if (animationElementMap.size > 1) {\n let elm = element;\n const parentsToAdd = [];\n while (elm = elm.parentNode) {\n const detectedParent = animationElementMap.get(elm);\n if (detectedParent) {\n parentWithAnimation = detectedParent;\n break;\n }\n parentsToAdd.push(elm);\n }\n parentsToAdd.forEach(parent => animationElementMap.set(parent, parentWithAnimation));\n }\n const innerPlayer = this._buildAnimation(player.namespaceId, instruction, allPreviousPlayersMap, skippedPlayersMap, preStylesMap, postStylesMap);\n player.setRealPlayer(innerPlayer);\n if (parentWithAnimation === NO_PARENT_ANIMATION_ELEMENT_DETECTED) {\n rootPlayers.push(player);\n } else {\n const parentPlayers = this.playersByElement.get(parentWithAnimation);\n if (parentPlayers && parentPlayers.length) {\n player.parentPlayer = optimizeGroupPlayer(parentPlayers);\n }\n skippedPlayers.push(player);\n }\n } else {\n eraseStyles(element, instruction.fromStyles);\n player.onDestroy(() => setStyles(element, instruction.toStyles));\n // there still might be a ancestor player animating this\n // element therefore we will still add it as a sub player\n // even if its animation may be disabled\n subPlayers.push(player);\n if (disabledElementsSet.has(element)) {\n skippedPlayers.push(player);\n }\n }\n });\n // find all of the sub players' corresponding inner animation players\n subPlayers.forEach(player => {\n // even if no players are found for a sub animation it\n // will still complete itself after the next tick since it's Noop\n const playersForElement = skippedPlayersMap.get(player.element);\n if (playersForElement && playersForElement.length) {\n const innerPlayer = optimizeGroupPlayer(playersForElement);\n player.setRealPlayer(innerPlayer);\n }\n });\n // the reason why we don't actually play the animation is\n // because all that a skipped player is designed to do is to\n // fire the start/done transition callback events\n skippedPlayers.forEach(player => {\n if (player.parentPlayer) {\n player.syncPlayerEvents(player.parentPlayer);\n } else {\n player.destroy();\n }\n });\n // run through all of the queued removals and see if they\n // were picked up by a query. If not then perform the removal\n // operation right away unless a parent animation is ongoing.\n for (let i = 0; i < allLeaveNodes.length; i++) {\n const element = allLeaveNodes[i];\n const details = element[REMOVAL_FLAG];\n removeClass(element, LEAVE_CLASSNAME);\n // this means the element has a removal animation that is being\n // taken care of and therefore the inner elements will hang around\n // until that animation is over (or the parent queried animation)\n if (details && details.hasAnimation) continue;\n let players = [];\n // if this element is queried or if it contains queried children\n // then we want for the element not to be removed from the page\n // until the queried animations have finished\n if (queriedElements.size) {\n let queriedPlayerResults = queriedElements.get(element);\n if (queriedPlayerResults && queriedPlayerResults.length) {\n players.push(...queriedPlayerResults);\n }\n let queriedInnerElements = this.driver.query(element, NG_ANIMATING_SELECTOR, true);\n for (let j = 0; j < queriedInnerElements.length; j++) {\n let queriedPlayers = queriedElements.get(queriedInnerElements[j]);\n if (queriedPlayers && queriedPlayers.length) {\n players.push(...queriedPlayers);\n }\n }\n }\n const activePlayers = players.filter(p => !p.destroyed);\n if (activePlayers.length) {\n removeNodesAfterAnimationDone(this, element, activePlayers);\n } else {\n this.processLeaveNode(element);\n }\n }\n // this is required so the cleanup method doesn't remove them\n allLeaveNodes.length = 0;\n rootPlayers.forEach(player => {\n this.players.push(player);\n player.onDone(() => {\n player.destroy();\n const index = this.players.indexOf(player);\n this.players.splice(index, 1);\n });\n player.play();\n });\n return rootPlayers;\n }\n afterFlush(callback) {\n this._flushFns.push(callback);\n }\n afterFlushAnimationsDone(callback) {\n this._whenQuietFns.push(callback);\n }\n _getPreviousPlayers(element, isQueriedElement, namespaceId, triggerName, toStateValue) {\n let players = [];\n if (isQueriedElement) {\n const queriedElementPlayers = this.playersByQueriedElement.get(element);\n if (queriedElementPlayers) {\n players = queriedElementPlayers;\n }\n } else {\n const elementPlayers = this.playersByElement.get(element);\n if (elementPlayers) {\n const isRemovalAnimation = !toStateValue || toStateValue == VOID_VALUE;\n elementPlayers.forEach(player => {\n if (player.queued) return;\n if (!isRemovalAnimation && player.triggerName != triggerName) return;\n players.push(player);\n });\n }\n }\n if (namespaceId || triggerName) {\n players = players.filter(player => {\n if (namespaceId && namespaceId != player.namespaceId) return false;\n if (triggerName && triggerName != player.triggerName) return false;\n return true;\n });\n }\n return players;\n }\n _beforeAnimationBuild(namespaceId, instruction, allPreviousPlayersMap) {\n const triggerName = instruction.triggerName;\n const rootElement = instruction.element;\n // when a removal animation occurs, ALL previous players are collected\n // and destroyed (even if they are outside of the current namespace)\n const targetNameSpaceId = instruction.isRemovalTransition ? undefined : namespaceId;\n const targetTriggerName = instruction.isRemovalTransition ? undefined : triggerName;\n for (const timelineInstruction of instruction.timelines) {\n const element = timelineInstruction.element;\n const isQueriedElement = element !== rootElement;\n const players = getOrSetDefaultValue(allPreviousPlayersMap, element, []);\n const previousPlayers = this._getPreviousPlayers(element, isQueriedElement, targetNameSpaceId, targetTriggerName, instruction.toState);\n previousPlayers.forEach(player => {\n const realPlayer = player.getRealPlayer();\n if (realPlayer.beforeDestroy) {\n realPlayer.beforeDestroy();\n }\n player.destroy();\n players.push(player);\n });\n }\n // this needs to be done so that the PRE/POST styles can be\n // computed properly without interfering with the previous animation\n eraseStyles(rootElement, instruction.fromStyles);\n }\n _buildAnimation(namespaceId, instruction, allPreviousPlayersMap, skippedPlayersMap, preStylesMap, postStylesMap) {\n const triggerName = instruction.triggerName;\n const rootElement = instruction.element;\n // we first run this so that the previous animation player\n // data can be passed into the successive animation players\n const allQueriedPlayers = [];\n const allConsumedElements = new Set();\n const allSubElements = new Set();\n const allNewPlayers = instruction.timelines.map(timelineInstruction => {\n const element = timelineInstruction.element;\n allConsumedElements.add(element);\n // FIXME (matsko): make sure to-be-removed animations are removed properly\n const details = element[REMOVAL_FLAG];\n if (details && details.removedBeforeQueried) return new NoopAnimationPlayer(timelineInstruction.duration, timelineInstruction.delay);\n const isQueriedElement = element !== rootElement;\n const previousPlayers = flattenGroupPlayers((allPreviousPlayersMap.get(element) || EMPTY_PLAYER_ARRAY).map(p => p.getRealPlayer())).filter(p => {\n // the `element` is not apart of the AnimationPlayer definition, but\n // Mock/WebAnimations\n // use the element within their implementation. This will be added in Angular5 to\n // AnimationPlayer\n const pp = p;\n return pp.element ? pp.element === element : false;\n });\n const preStyles = preStylesMap.get(element);\n const postStyles = postStylesMap.get(element);\n const keyframes = normalizeKeyframes$1(this._normalizer, timelineInstruction.keyframes, preStyles, postStyles);\n const player = this._buildPlayer(timelineInstruction, keyframes, previousPlayers);\n // this means that this particular player belongs to a sub trigger. It is\n // important that we match this player up with the corresponding (@trigger.listener)\n if (timelineInstruction.subTimeline && skippedPlayersMap) {\n allSubElements.add(element);\n }\n if (isQueriedElement) {\n const wrappedPlayer = new TransitionAnimationPlayer(namespaceId, triggerName, element);\n wrappedPlayer.setRealPlayer(player);\n allQueriedPlayers.push(wrappedPlayer);\n }\n return player;\n });\n allQueriedPlayers.forEach(player => {\n getOrSetDefaultValue(this.playersByQueriedElement, player.element, []).push(player);\n player.onDone(() => deleteOrUnsetInMap(this.playersByQueriedElement, player.element, player));\n });\n allConsumedElements.forEach(element => addClass(element, NG_ANIMATING_CLASSNAME));\n const player = optimizeGroupPlayer(allNewPlayers);\n player.onDestroy(() => {\n allConsumedElements.forEach(element => removeClass(element, NG_ANIMATING_CLASSNAME));\n setStyles(rootElement, instruction.toStyles);\n });\n // this basically makes all of the callbacks for sub element animations\n // be dependent on the upper players for when they finish\n allSubElements.forEach(element => {\n getOrSetDefaultValue(skippedPlayersMap, element, []).push(player);\n });\n return player;\n }\n _buildPlayer(instruction, keyframes, previousPlayers) {\n if (keyframes.length > 0) {\n return this.driver.animate(instruction.element, keyframes, instruction.duration, instruction.delay, instruction.easing, previousPlayers);\n }\n // special case for when an empty transition|definition is provided\n // ... there is no point in rendering an empty animation\n return new NoopAnimationPlayer(instruction.duration, instruction.delay);\n }\n}\nclass TransitionAnimationPlayer {\n namespaceId;\n triggerName;\n element;\n _player = /*#__PURE__*/new NoopAnimationPlayer();\n _containsRealPlayer = false;\n _queuedCallbacks = /*#__PURE__*/new Map();\n destroyed = false;\n parentPlayer = null;\n markedForDestroy = false;\n disabled = false;\n queued = true;\n totalTime = 0;\n constructor(namespaceId, triggerName, element) {\n this.namespaceId = namespaceId;\n this.triggerName = triggerName;\n this.element = element;\n }\n setRealPlayer(player) {\n if (this._containsRealPlayer) return;\n this._player = player;\n this._queuedCallbacks.forEach((callbacks, phase) => {\n callbacks.forEach(callback => listenOnPlayer(player, phase, undefined, callback));\n });\n this._queuedCallbacks.clear();\n this._containsRealPlayer = true;\n this.overrideTotalTime(player.totalTime);\n this.queued = false;\n }\n getRealPlayer() {\n return this._player;\n }\n overrideTotalTime(totalTime) {\n this.totalTime = totalTime;\n }\n syncPlayerEvents(player) {\n const p = this._player;\n if (p.triggerCallback) {\n player.onStart(() => p.triggerCallback('start'));\n }\n player.onDone(() => this.finish());\n player.onDestroy(() => this.destroy());\n }\n _queueEvent(name, callback) {\n getOrSetDefaultValue(this._queuedCallbacks, name, []).push(callback);\n }\n onDone(fn) {\n if (this.queued) {\n this._queueEvent('done', fn);\n }\n this._player.onDone(fn);\n }\n onStart(fn) {\n if (this.queued) {\n this._queueEvent('start', fn);\n }\n this._player.onStart(fn);\n }\n onDestroy(fn) {\n if (this.queued) {\n this._queueEvent('destroy', fn);\n }\n this._player.onDestroy(fn);\n }\n init() {\n this._player.init();\n }\n hasStarted() {\n return this.queued ? false : this._player.hasStarted();\n }\n play() {\n !this.queued && this._player.play();\n }\n pause() {\n !this.queued && this._player.pause();\n }\n restart() {\n !this.queued && this._player.restart();\n }\n finish() {\n this._player.finish();\n }\n destroy() {\n this.destroyed = true;\n this._player.destroy();\n }\n reset() {\n !this.queued && this._player.reset();\n }\n setPosition(p) {\n if (!this.queued) {\n this._player.setPosition(p);\n }\n }\n getPosition() {\n return this.queued ? 0 : this._player.getPosition();\n }\n /** @internal */\n triggerCallback(phaseName) {\n const p = this._player;\n if (p.triggerCallback) {\n p.triggerCallback(phaseName);\n }\n }\n}\nfunction deleteOrUnsetInMap(map, key, value) {\n let currentValues = map.get(key);\n if (currentValues) {\n if (currentValues.length) {\n const index = currentValues.indexOf(value);\n currentValues.splice(index, 1);\n }\n if (currentValues.length == 0) {\n map.delete(key);\n }\n }\n return currentValues;\n}\nfunction normalizeTriggerValue(value) {\n // we use `!= null` here because it's the most simple\n // way to test against a \"falsy\" value without mixing\n // in empty strings or a zero value. DO NOT OPTIMIZE.\n return value != null ? value : null;\n}\nfunction isElementNode(node) {\n return node && node['nodeType'] === 1;\n}\nfunction isTriggerEventValid(eventName) {\n return eventName == 'start' || eventName == 'done';\n}\nfunction cloakElement(element, value) {\n const oldValue = element.style.display;\n element.style.display = value != null ? value : 'none';\n return oldValue;\n}\nfunction cloakAndComputeStyles(valuesMap, driver, elements, elementPropsMap, defaultStyle) {\n const cloakVals = [];\n elements.forEach(element => cloakVals.push(cloakElement(element)));\n const failedElements = [];\n elementPropsMap.forEach((props, element) => {\n const styles = new Map();\n props.forEach(prop => {\n const value = driver.computeStyle(element, prop, defaultStyle);\n styles.set(prop, value);\n // there is no easy way to detect this because a sub element could be removed\n // by a parent animation element being detached.\n if (!value || value.length == 0) {\n element[REMOVAL_FLAG] = NULL_REMOVED_QUERIED_STATE;\n failedElements.push(element);\n }\n });\n valuesMap.set(element, styles);\n });\n // we use a index variable here since Set.forEach(a, i) does not return\n // an index value for the closure (but instead just the value)\n let i = 0;\n elements.forEach(element => cloakElement(element, cloakVals[i++]));\n return failedElements;\n}\n/*\nSince the Angular renderer code will return a collection of inserted\nnodes in all areas of a DOM tree, it's up to this algorithm to figure\nout which nodes are roots for each animation @trigger.\n\nBy placing each inserted node into a Set and traversing upwards, it\nis possible to find the @trigger elements and well any direct *star\ninsertion nodes, if a @trigger root is found then the enter element\nis placed into the Map[@trigger] spot.\n */\nfunction buildRootMap(roots, nodes) {\n const rootMap = new Map();\n roots.forEach(root => rootMap.set(root, []));\n if (nodes.length == 0) return rootMap;\n const NULL_NODE = 1;\n const nodeSet = new Set(nodes);\n const localRootMap = new Map();\n function getRoot(node) {\n if (!node) return NULL_NODE;\n let root = localRootMap.get(node);\n if (root) return root;\n const parent = node.parentNode;\n if (rootMap.has(parent)) {\n // ngIf inside @trigger\n root = parent;\n } else if (nodeSet.has(parent)) {\n // ngIf inside ngIf\n root = NULL_NODE;\n } else {\n // recurse upwards\n root = getRoot(parent);\n }\n localRootMap.set(node, root);\n return root;\n }\n nodes.forEach(node => {\n const root = getRoot(node);\n if (root !== NULL_NODE) {\n rootMap.get(root).push(node);\n }\n });\n return rootMap;\n}\nfunction addClass(element, className) {\n element.classList?.add(className);\n}\nfunction removeClass(element, className) {\n element.classList?.remove(className);\n}\nfunction removeNodesAfterAnimationDone(engine, element, players) {\n optimizeGroupPlayer(players).onDone(() => engine.processLeaveNode(element));\n}\nfunction flattenGroupPlayers(players) {\n const finalPlayers = [];\n _flattenGroupPlayersRecur(players, finalPlayers);\n return finalPlayers;\n}\nfunction _flattenGroupPlayersRecur(players, finalPlayers) {\n for (let i = 0; i < players.length; i++) {\n const player = players[i];\n if (player instanceof _AnimationGroupPlayer) {\n _flattenGroupPlayersRecur(player.players, finalPlayers);\n } else {\n finalPlayers.push(player);\n }\n }\n}\nfunction objEquals(a, b) {\n const k1 = Object.keys(a);\n const k2 = Object.keys(b);\n if (k1.length != k2.length) return false;\n for (let i = 0; i < k1.length; i++) {\n const prop = k1[i];\n if (!b.hasOwnProperty(prop) || a[prop] !== b[prop]) return false;\n }\n return true;\n}\nfunction replacePostStylesAsPre(element, allPreStyleElements, allPostStyleElements) {\n const postEntry = allPostStyleElements.get(element);\n if (!postEntry) return false;\n let preEntry = allPreStyleElements.get(element);\n if (preEntry) {\n postEntry.forEach(data => preEntry.add(data));\n } else {\n allPreStyleElements.set(element, postEntry);\n }\n allPostStyleElements.delete(element);\n return true;\n}\nclass AnimationEngine {\n _driver;\n _normalizer;\n _transitionEngine;\n _timelineEngine;\n _triggerCache = {};\n // this method is designed to be overridden by the code that uses this engine\n onRemovalComplete = (element, context) => {};\n constructor(doc, _driver, _normalizer) {\n this._driver = _driver;\n this._normalizer = _normalizer;\n this._transitionEngine = new TransitionAnimationEngine(doc.body, _driver, _normalizer);\n this._timelineEngine = new TimelineAnimationEngine(doc.body, _driver, _normalizer);\n this._transitionEngine.onRemovalComplete = (element, context) => this.onRemovalComplete(element, context);\n }\n registerTrigger(componentId, namespaceId, hostElement, name, metadata) {\n const cacheKey = componentId + '-' + name;\n let trigger = this._triggerCache[cacheKey];\n if (!trigger) {\n const errors = [];\n const warnings = [];\n const ast = buildAnimationAst(this._driver, metadata, errors, warnings);\n if (errors.length) {\n throw triggerBuildFailed(name, errors);\n }\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n if (warnings.length) {\n warnTriggerBuild(name, warnings);\n }\n }\n trigger = buildTrigger(name, ast, this._normalizer);\n this._triggerCache[cacheKey] = trigger;\n }\n this._transitionEngine.registerTrigger(namespaceId, name, trigger);\n }\n register(namespaceId, hostElement) {\n this._transitionEngine.register(namespaceId, hostElement);\n }\n destroy(namespaceId, context) {\n this._transitionEngine.destroy(namespaceId, context);\n }\n onInsert(namespaceId, element, parent, insertBefore) {\n this._transitionEngine.insertNode(namespaceId, element, parent, insertBefore);\n }\n onRemove(namespaceId, element, context) {\n this._transitionEngine.removeNode(namespaceId, element, context);\n }\n disableAnimations(element, disable) {\n this._transitionEngine.markElementAsDisabled(element, disable);\n }\n process(namespaceId, element, property, value) {\n if (property.charAt(0) == '@') {\n const [id, action] = parseTimelineCommand(property);\n const args = value;\n this._timelineEngine.command(id, element, action, args);\n } else {\n this._transitionEngine.trigger(namespaceId, element, property, value);\n }\n }\n listen(namespaceId, element, eventName, eventPhase, callback) {\n // @@listen\n if (eventName.charAt(0) == '@') {\n const [id, action] = parseTimelineCommand(eventName);\n return this._timelineEngine.listen(id, element, action, callback);\n }\n return this._transitionEngine.listen(namespaceId, element, eventName, eventPhase, callback);\n }\n flush(microtaskId = -1) {\n this._transitionEngine.flush(microtaskId);\n }\n get players() {\n return [...this._transitionEngine.players, ...this._timelineEngine.players];\n }\n whenRenderingDone() {\n return this._transitionEngine.whenRenderingDone();\n }\n afterFlushAnimationsDone(cb) {\n this._transitionEngine.afterFlushAnimationsDone(cb);\n }\n}\n\n/**\n * Returns an instance of `SpecialCasedStyles` if and when any special (non animateable) styles are\n * detected.\n *\n * In CSS there exist properties that cannot be animated within a keyframe animation\n * (whether it be via CSS keyframes or web-animations) and the animation implementation\n * will ignore them. This function is designed to detect those special cased styles and\n * return a container that will be executed at the start and end of the animation.\n *\n * @returns an instance of `SpecialCasedStyles` if any special styles are detected otherwise `null`\n */\nfunction packageNonAnimatableStyles(element, styles) {\n let startStyles = null;\n let endStyles = null;\n if (Array.isArray(styles) && styles.length) {\n startStyles = filterNonAnimatableStyles(styles[0]);\n if (styles.length > 1) {\n endStyles = filterNonAnimatableStyles(styles[styles.length - 1]);\n }\n } else if (styles instanceof Map) {\n startStyles = filterNonAnimatableStyles(styles);\n }\n return startStyles || endStyles ? new SpecialCasedStyles(element, startStyles, endStyles) : null;\n}\n/**\n * Designed to be executed during a keyframe-based animation to apply any special-cased styles.\n *\n * When started (when the `start()` method is run) then the provided `startStyles`\n * will be applied. When finished (when the `finish()` method is called) the\n * `endStyles` will be applied as well any any starting styles. Finally when\n * `destroy()` is called then all styles will be removed.\n */\nlet SpecialCasedStyles = /*#__PURE__*/(() => {\n class SpecialCasedStyles {\n _element;\n _startStyles;\n _endStyles;\n static initialStylesByElement = /* @__PURE__ */new WeakMap();\n _state = 0 /* SpecialCasedStylesState.Pending */;\n _initialStyles;\n constructor(_element, _startStyles, _endStyles) {\n this._element = _element;\n this._startStyles = _startStyles;\n this._endStyles = _endStyles;\n let initialStyles = SpecialCasedStyles.initialStylesByElement.get(_element);\n if (!initialStyles) {\n SpecialCasedStyles.initialStylesByElement.set(_element, initialStyles = new Map());\n }\n this._initialStyles = initialStyles;\n }\n start() {\n if (this._state < 1 /* SpecialCasedStylesState.Started */) {\n if (this._startStyles) {\n setStyles(this._element, this._startStyles, this._initialStyles);\n }\n this._state = 1 /* SpecialCasedStylesState.Started */;\n }\n }\n finish() {\n this.start();\n if (this._state < 2 /* SpecialCasedStylesState.Finished */) {\n setStyles(this._element, this._initialStyles);\n if (this._endStyles) {\n setStyles(this._element, this._endStyles);\n this._endStyles = null;\n }\n this._state = 1 /* SpecialCasedStylesState.Started */;\n }\n }\n destroy() {\n this.finish();\n if (this._state < 3 /* SpecialCasedStylesState.Destroyed */) {\n SpecialCasedStyles.initialStylesByElement.delete(this._element);\n if (this._startStyles) {\n eraseStyles(this._element, this._startStyles);\n this._endStyles = null;\n }\n if (this._endStyles) {\n eraseStyles(this._element, this._endStyles);\n this._endStyles = null;\n }\n setStyles(this._element, this._initialStyles);\n this._state = 3 /* SpecialCasedStylesState.Destroyed */;\n }\n }\n }\n return SpecialCasedStyles;\n})();\nfunction filterNonAnimatableStyles(styles) {\n let result = null;\n styles.forEach((val, prop) => {\n if (isNonAnimatableStyle(prop)) {\n result = result || new Map();\n result.set(prop, val);\n }\n });\n return result;\n}\nfunction isNonAnimatableStyle(prop) {\n return prop === 'display' || prop === 'position';\n}\nclass WebAnimationsPlayer {\n element;\n keyframes;\n options;\n _specialStyles;\n _onDoneFns = [];\n _onStartFns = [];\n _onDestroyFns = [];\n _duration;\n _delay;\n _initialized = false;\n _finished = false;\n _started = false;\n _destroyed = false;\n _finalKeyframe;\n // the following original fns are persistent copies of the _onStartFns and _onDoneFns\n // and are used to reset the fns to their original values upon reset()\n // (since the _onStartFns and _onDoneFns get deleted after they are called)\n _originalOnDoneFns = [];\n _originalOnStartFns = [];\n // using non-null assertion because it's re(set) by init();\n domPlayer;\n time = 0;\n parentPlayer = null;\n currentSnapshot = /*#__PURE__*/new Map();\n constructor(element, keyframes, options, _specialStyles) {\n this.element = element;\n this.keyframes = keyframes;\n this.options = options;\n this._specialStyles = _specialStyles;\n this._duration = options['duration'];\n this._delay = options['delay'] || 0;\n this.time = this._duration + this._delay;\n }\n _onFinish() {\n if (!this._finished) {\n this._finished = true;\n this._onDoneFns.forEach(fn => fn());\n this._onDoneFns = [];\n }\n }\n init() {\n this._buildPlayer();\n this._preparePlayerBeforeStart();\n }\n _buildPlayer() {\n if (this._initialized) return;\n this._initialized = true;\n const keyframes = this.keyframes;\n // @ts-expect-error overwriting a readonly property\n this.domPlayer = this._triggerWebAnimation(this.element, keyframes, this.options);\n this._finalKeyframe = keyframes.length ? keyframes[keyframes.length - 1] : new Map();\n const onFinish = () => this._onFinish();\n this.domPlayer.addEventListener('finish', onFinish);\n this.onDestroy(() => {\n // We must remove the `finish` event listener once an animation has completed all its\n // iterations. This action is necessary to prevent a memory leak since the listener captures\n // `this`, creating a closure that prevents `this` from being garbage collected.\n this.domPlayer.removeEventListener('finish', onFinish);\n });\n }\n _preparePlayerBeforeStart() {\n // this is required so that the player doesn't start to animate right away\n if (this._delay) {\n this._resetDomPlayerState();\n } else {\n this.domPlayer.pause();\n }\n }\n _convertKeyframesToObject(keyframes) {\n const kfs = [];\n keyframes.forEach(frame => {\n kfs.push(Object.fromEntries(frame));\n });\n return kfs;\n }\n /** @internal */\n _triggerWebAnimation(element, keyframes, options) {\n return element.animate(this._convertKeyframesToObject(keyframes), options);\n }\n onStart(fn) {\n this._originalOnStartFns.push(fn);\n this._onStartFns.push(fn);\n }\n onDone(fn) {\n this._originalOnDoneFns.push(fn);\n this._onDoneFns.push(fn);\n }\n onDestroy(fn) {\n this._onDestroyFns.push(fn);\n }\n play() {\n this._buildPlayer();\n if (!this.hasStarted()) {\n this._onStartFns.forEach(fn => fn());\n this._onStartFns = [];\n this._started = true;\n if (this._specialStyles) {\n this._specialStyles.start();\n }\n }\n this.domPlayer.play();\n }\n pause() {\n this.init();\n this.domPlayer.pause();\n }\n finish() {\n this.init();\n if (this._specialStyles) {\n this._specialStyles.finish();\n }\n this._onFinish();\n this.domPlayer.finish();\n }\n reset() {\n this._resetDomPlayerState();\n this._destroyed = false;\n this._finished = false;\n this._started = false;\n this._onStartFns = this._originalOnStartFns;\n this._onDoneFns = this._originalOnDoneFns;\n }\n _resetDomPlayerState() {\n if (this.domPlayer) {\n this.domPlayer.cancel();\n }\n }\n restart() {\n this.reset();\n this.play();\n }\n hasStarted() {\n return this._started;\n }\n destroy() {\n if (!this._destroyed) {\n this._destroyed = true;\n this._resetDomPlayerState();\n this._onFinish();\n if (this._specialStyles) {\n this._specialStyles.destroy();\n }\n this._onDestroyFns.forEach(fn => fn());\n this._onDestroyFns = [];\n }\n }\n setPosition(p) {\n if (this.domPlayer === undefined) {\n this.init();\n }\n this.domPlayer.currentTime = p * this.time;\n }\n getPosition() {\n // tsc is complaining with TS2362 without the conversion to number\n return +(this.domPlayer.currentTime ?? 0) / this.time;\n }\n get totalTime() {\n return this._delay + this._duration;\n }\n beforeDestroy() {\n const styles = new Map();\n if (this.hasStarted()) {\n // note: this code is invoked only when the `play` function was called prior to this\n // (thus `hasStarted` returns true), this implies that the code that initializes\n // `_finalKeyframe` has also been executed and the non-null assertion can be safely used here\n const finalKeyframe = this._finalKeyframe;\n finalKeyframe.forEach((val, prop) => {\n if (prop !== 'offset') {\n styles.set(prop, this._finished ? val : computeStyle(this.element, prop));\n }\n });\n }\n this.currentSnapshot = styles;\n }\n /** @internal */\n triggerCallback(phaseName) {\n const methods = phaseName === 'start' ? this._onStartFns : this._onDoneFns;\n methods.forEach(fn => fn());\n methods.length = 0;\n }\n}\nclass WebAnimationsDriver {\n validateStyleProperty(prop) {\n // Perform actual validation in dev mode only, in prod mode this check is a noop.\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n return validateStyleProperty(prop);\n }\n return true;\n }\n validateAnimatableStyleProperty(prop) {\n // Perform actual validation in dev mode only, in prod mode this check is a noop.\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n const cssProp = camelCaseToDashCase(prop);\n return validateWebAnimatableStyleProperty(cssProp);\n }\n return true;\n }\n containsElement(elm1, elm2) {\n return containsElement(elm1, elm2);\n }\n getParentElement(element) {\n return getParentElement(element);\n }\n query(element, selector, multi) {\n return invokeQuery(element, selector, multi);\n }\n computeStyle(element, prop, defaultValue) {\n return computeStyle(element, prop);\n }\n animate(element, keyframes, duration, delay, easing, previousPlayers = []) {\n const fill = delay == 0 ? 'both' : 'forwards';\n const playerOptions = {\n duration,\n delay,\n fill\n };\n // we check for this to avoid having a null|undefined value be present\n // for the easing (which results in an error for certain browsers #9752)\n if (easing) {\n playerOptions['easing'] = easing;\n }\n const previousStyles = new Map();\n const previousWebAnimationPlayers = previousPlayers.filter(player => player instanceof WebAnimationsPlayer);\n if (allowPreviousPlayerStylesMerge(duration, delay)) {\n previousWebAnimationPlayers.forEach(player => {\n player.currentSnapshot.forEach((val, prop) => previousStyles.set(prop, val));\n });\n }\n let _keyframes = normalizeKeyframes(keyframes).map(styles => new Map(styles));\n _keyframes = balancePreviousStylesIntoKeyframes(element, _keyframes, previousStyles);\n const specialStyles = packageNonAnimatableStyles(element, _keyframes);\n return new WebAnimationsPlayer(element, _keyframes, playerOptions, specialStyles);\n }\n}\nfunction createEngine(type, doc) {\n // TODO: find a way to make this tree shakable.\n if (type === 'noop') {\n return new AnimationEngine(doc, new NoopAnimationDriver(), new NoopAnimationStyleNormalizer());\n }\n return new AnimationEngine(doc, new WebAnimationsDriver(), new WebAnimationsStyleNormalizer());\n}\nclass Animation {\n _driver;\n _animationAst;\n constructor(_driver, input) {\n this._driver = _driver;\n const errors = [];\n const warnings = [];\n const ast = buildAnimationAst(_driver, input, errors, warnings);\n if (errors.length) {\n throw validationFailed(errors);\n }\n if (typeof ngDevMode === 'undefined' || ngDevMode) {\n if (warnings.length) {\n warnValidation(warnings);\n }\n }\n this._animationAst = ast;\n }\n buildTimelines(element, startingStyles, destinationStyles, options, subInstructions) {\n const start = Array.isArray(startingStyles) ? normalizeStyles(startingStyles) : startingStyles;\n const dest = Array.isArray(destinationStyles) ? normalizeStyles(destinationStyles) : destinationStyles;\n const errors = [];\n subInstructions = subInstructions || new ElementInstructionMap();\n const result = buildAnimationTimelines(this._driver, element, this._animationAst, ENTER_CLASSNAME, LEAVE_CLASSNAME, start, dest, options, subInstructions, errors);\n if (errors.length) {\n throw buildingFailed(errors);\n }\n return result;\n }\n}\nconst ANIMATION_PREFIX = '@';\nconst DISABLE_ANIMATIONS_FLAG = '@.disabled';\nclass BaseAnimationRenderer {\n namespaceId;\n delegate;\n engine;\n _onDestroy;\n // We need to explicitly type this property because of an api-extractor bug\n // See https://github.com/microsoft/rushstack/issues/4390\n ɵtype = 0 /* AnimationRendererType.Regular */;\n constructor(namespaceId, delegate, engine, _onDestroy) {\n this.namespaceId = namespaceId;\n this.delegate = delegate;\n this.engine = engine;\n this._onDestroy = _onDestroy;\n }\n get data() {\n return this.delegate.data;\n }\n destroyNode(node) {\n this.delegate.destroyNode?.(node);\n }\n destroy() {\n this.engine.destroy(this.namespaceId, this.delegate);\n this.engine.afterFlushAnimationsDone(() => {\n // Call the renderer destroy method after the animations has finished as otherwise\n // styles will be removed too early which will cause an unstyled animation.\n queueMicrotask(() => {\n this.delegate.destroy();\n });\n });\n this._onDestroy?.();\n }\n createElement(name, namespace) {\n return this.delegate.createElement(name, namespace);\n }\n createComment(value) {\n return this.delegate.createComment(value);\n }\n createText(value) {\n return this.delegate.createText(value);\n }\n appendChild(parent, newChild) {\n this.delegate.appendChild(parent, newChild);\n this.engine.onInsert(this.namespaceId, newChild, parent, false);\n }\n insertBefore(parent, newChild, refChild, isMove = true) {\n this.delegate.insertBefore(parent, newChild, refChild);\n // If `isMove` true than we should animate this insert.\n this.engine.onInsert(this.namespaceId, newChild, parent, isMove);\n }\n removeChild(parent, oldChild, isHostElement) {\n // Prior to the changes in #57203, this method wasn't being called at all by `core` if the child\n // doesn't have a parent. There appears to be some animation-specific downstream logic that\n // depends on the null check happening before the animation engine. This check keeps the old\n // behavior while allowing `core` to not have to check for the parent element anymore.\n if (this.parentNode(oldChild)) {\n this.engine.onRemove(this.namespaceId, oldChild, this.delegate);\n }\n }\n selectRootElement(selectorOrNode, preserveContent) {\n return this.delegate.selectRootElement(selectorOrNode, preserveContent);\n }\n parentNode(node) {\n return this.delegate.parentNode(node);\n }\n nextSibling(node) {\n return this.delegate.nextSibling(node);\n }\n setAttribute(el, name, value, namespace) {\n this.delegate.setAttribute(el, name, value, namespace);\n }\n removeAttribute(el, name, namespace) {\n this.delegate.removeAttribute(el, name, namespace);\n }\n addClass(el, name) {\n this.delegate.addClass(el, name);\n }\n removeClass(el, name) {\n this.delegate.removeClass(el, name);\n }\n setStyle(el, style, value, flags) {\n this.delegate.setStyle(el, style, value, flags);\n }\n removeStyle(el, style, flags) {\n this.delegate.removeStyle(el, style, flags);\n }\n setProperty(el, name, value) {\n if (name.charAt(0) == ANIMATION_PREFIX && name == DISABLE_ANIMATIONS_FLAG) {\n this.disableAnimations(el, !!value);\n } else {\n this.delegate.setProperty(el, name, value);\n }\n }\n setValue(node, value) {\n this.delegate.setValue(node, value);\n }\n listen(target, eventName, callback, options) {\n return this.delegate.listen(target, eventName, callback, options);\n }\n disableAnimations(element, value) {\n this.engine.disableAnimations(element, value);\n }\n}\nclass AnimationRenderer extends BaseAnimationRenderer {\n factory;\n constructor(factory, namespaceId, delegate, engine, onDestroy) {\n super(namespaceId, delegate, engine, onDestroy);\n this.factory = factory;\n this.namespaceId = namespaceId;\n }\n setProperty(el, name, value) {\n if (name.charAt(0) == ANIMATION_PREFIX) {\n if (name.charAt(1) == '.' && name == DISABLE_ANIMATIONS_FLAG) {\n value = value === undefined ? true : !!value;\n this.disableAnimations(el, value);\n } else {\n this.engine.process(this.namespaceId, el, name.slice(1), value);\n }\n } else {\n this.delegate.setProperty(el, name, value);\n }\n }\n listen(target, eventName, callback, options) {\n if (eventName.charAt(0) == ANIMATION_PREFIX) {\n const element = resolveElementFromTarget(target);\n let name = eventName.slice(1);\n let phase = '';\n // @listener.phase is for trigger animation callbacks\n // @@listener is for animation builder callbacks\n if (name.charAt(0) != ANIMATION_PREFIX) {\n [name, phase] = parseTriggerCallbackName(name);\n }\n return this.engine.listen(this.namespaceId, element, name, phase, event => {\n const countId = event['_data'] || -1;\n this.factory.scheduleListenerCallback(countId, callback, event);\n });\n }\n return this.delegate.listen(target, eventName, callback, options);\n }\n}\nfunction resolveElementFromTarget(target) {\n switch (target) {\n case 'body':\n return document.body;\n case 'document':\n return document;\n case 'window':\n return window;\n default:\n return target;\n }\n}\nfunction parseTriggerCallbackName(triggerName) {\n const dotIndex = triggerName.indexOf('.');\n const trigger = triggerName.substring(0, dotIndex);\n const phase = triggerName.slice(dotIndex + 1);\n return [trigger, phase];\n}\nclass AnimationRendererFactory {\n delegate;\n engine;\n _zone;\n _currentId = 0;\n _microtaskId = 1;\n _animationCallbacksBuffer = [];\n _rendererCache = /*#__PURE__*/new Map();\n _cdRecurDepth = 0;\n constructor(delegate, engine, _zone) {\n this.delegate = delegate;\n this.engine = engine;\n this._zone = _zone;\n engine.onRemovalComplete = (element, delegate) => {\n delegate?.removeChild(null, element);\n };\n }\n createRenderer(hostElement, type) {\n const EMPTY_NAMESPACE_ID = '';\n // cache the delegates to find out which cached delegate can\n // be used by which cached renderer\n const delegate = this.delegate.createRenderer(hostElement, type);\n if (!hostElement || !type?.data?.['animation']) {\n const cache = this._rendererCache;\n let renderer = cache.get(delegate);\n if (!renderer) {\n // Ensure that the renderer is removed from the cache on destroy\n // since it may contain references to detached DOM nodes.\n const onRendererDestroy = () => cache.delete(delegate);\n renderer = new BaseAnimationRenderer(EMPTY_NAMESPACE_ID, delegate, this.engine, onRendererDestroy);\n // only cache this result when the base renderer is used\n cache.set(delegate, renderer);\n }\n return renderer;\n }\n const componentId = type.id;\n const namespaceId = type.id + '-' + this._currentId;\n this._currentId++;\n this.engine.register(namespaceId, hostElement);\n const registerTrigger = trigger => {\n if (Array.isArray(trigger)) {\n trigger.forEach(registerTrigger);\n } else {\n this.engine.registerTrigger(componentId, namespaceId, hostElement, trigger.name, trigger);\n }\n };\n const animationTriggers = type.data['animation'];\n animationTriggers.forEach(registerTrigger);\n return new AnimationRenderer(this, namespaceId, delegate, this.engine);\n }\n begin() {\n this._cdRecurDepth++;\n if (this.delegate.begin) {\n this.delegate.begin();\n }\n }\n _scheduleCountTask() {\n queueMicrotask(() => {\n this._microtaskId++;\n });\n }\n /** @internal */\n scheduleListenerCallback(count, fn, data) {\n if (count >= 0 && count < this._microtaskId) {\n this._zone.run(() => fn(data));\n return;\n }\n const animationCallbacksBuffer = this._animationCallbacksBuffer;\n if (animationCallbacksBuffer.length == 0) {\n queueMicrotask(() => {\n this._zone.run(() => {\n animationCallbacksBuffer.forEach(tuple => {\n const [fn, data] = tuple;\n fn(data);\n });\n this._animationCallbacksBuffer = [];\n });\n });\n }\n animationCallbacksBuffer.push([fn, data]);\n }\n end() {\n this._cdRecurDepth--;\n // this is to prevent animations from running twice when an inner\n // component does CD when a parent component instead has inserted it\n if (this._cdRecurDepth == 0) {\n this._zone.runOutsideAngular(() => {\n this._scheduleCountTask();\n this.engine.flush(this._microtaskId);\n });\n }\n if (this.delegate.end) {\n this.delegate.end();\n }\n }\n whenRenderingDone() {\n return this.engine.whenRenderingDone();\n }\n /**\n * Used during HMR to clear any cached data about a component.\n * @param componentId ID of the component that is being replaced.\n */\n componentReplaced(componentId) {\n // Flush the engine since the renderer destruction waits for animations to be done.\n this.engine.flush();\n this.delegate.componentReplaced?.(componentId);\n }\n}\nexport { AnimationDriver, NoopAnimationDriver, Animation as ɵAnimation, AnimationEngine as ɵAnimationEngine, AnimationRenderer as ɵAnimationRenderer, AnimationRendererFactory as ɵAnimationRendererFactory, AnimationStyleNormalizer as ɵAnimationStyleNormalizer, BaseAnimationRenderer as ɵBaseAnimationRenderer, NoopAnimationStyleNormalizer as ɵNoopAnimationStyleNormalizer, WebAnimationsDriver as ɵWebAnimationsDriver, WebAnimationsPlayer as ɵWebAnimationsPlayer, WebAnimationsStyleNormalizer as ɵWebAnimationsStyleNormalizer, allowPreviousPlayerStylesMerge as ɵallowPreviousPlayerStylesMerge, camelCaseToDashCase as ɵcamelCaseToDashCase, containsElement as ɵcontainsElement, createEngine as ɵcreateEngine, getParentElement as ɵgetParentElement, invokeQuery as ɵinvokeQuery, normalizeKeyframes as ɵnormalizeKeyframes, validateStyleProperty as ɵvalidateStyleProperty, validateWebAnimatableStyleProperty as ɵvalidateWebAnimatableStyleProperty };\n","/**\n * @license Angular v19.2.2\n * (c) 2010-2025 Google LLC. https://angular.io/\n * License: MIT\n */\n\nimport * as i0 from '@angular/core';\nimport { ANIMATION_MODULE_TYPE, NgZone, RendererFactory2, Inject, Injectable, ɵperformanceMarkFeature as _performanceMarkFeature, NgModule } from '@angular/core';\nexport { ANIMATION_MODULE_TYPE } from '@angular/core';\nimport { ɵDomRendererFactory2 as _DomRendererFactory2, BrowserModule } from '@angular/platform-browser';\nimport * as i1 from '@angular/animations/browser';\nimport { NoopAnimationDriver, AnimationDriver, ɵAnimationStyleNormalizer as _AnimationStyleNormalizer, ɵAnimationEngine as _AnimationEngine, ɵWebAnimationsDriver as _WebAnimationsDriver, ɵWebAnimationsStyleNormalizer as _WebAnimationsStyleNormalizer, ɵAnimationRendererFactory as _AnimationRendererFactory } from '@angular/animations/browser';\nimport { DOCUMENT } from '@angular/common';\nlet InjectableAnimationEngine = /*#__PURE__*/(() => {\n class InjectableAnimationEngine extends _AnimationEngine {\n // The `ApplicationRef` is injected here explicitly to force the dependency ordering.\n // Since the `ApplicationRef` should be created earlier before the `AnimationEngine`, they\n // both have `ngOnDestroy` hooks and `flush()` must be called after all views are destroyed.\n constructor(doc, driver, normalizer) {\n super(doc, driver, normalizer);\n }\n ngOnDestroy() {\n this.flush();\n }\n static ɵfac = function InjectableAnimationEngine_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || InjectableAnimationEngine)(i0.ɵɵinject(DOCUMENT), i0.ɵɵinject(i1.AnimationDriver), i0.ɵɵinject(i1.ɵAnimationStyleNormalizer));\n };\n static ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: InjectableAnimationEngine,\n factory: InjectableAnimationEngine.ɵfac\n });\n }\n return InjectableAnimationEngine;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nfunction instantiateDefaultStyleNormalizer() {\n return new _WebAnimationsStyleNormalizer();\n}\nfunction instantiateRendererFactory(renderer, engine, zone) {\n return new _AnimationRendererFactory(renderer, engine, zone);\n}\nconst SHARED_ANIMATION_PROVIDERS = [{\n provide: _AnimationStyleNormalizer,\n useFactory: instantiateDefaultStyleNormalizer\n}, {\n provide: _AnimationEngine,\n useClass: InjectableAnimationEngine\n}, {\n provide: RendererFactory2,\n useFactory: instantiateRendererFactory,\n deps: [_DomRendererFactory2, _AnimationEngine, NgZone]\n}];\n/**\n * Separate providers from the actual module so that we can do a local modification in Google3 to\n * include them in the BrowserTestingModule.\n */\nconst BROWSER_NOOP_ANIMATIONS_PROVIDERS = [{\n provide: AnimationDriver,\n useClass: NoopAnimationDriver\n}, {\n provide: ANIMATION_MODULE_TYPE,\n useValue: 'NoopAnimations'\n}, ...SHARED_ANIMATION_PROVIDERS];\n/**\n * Separate providers from the actual module so that we can do a local modification in Google3 to\n * include them in the BrowserModule.\n */\nconst BROWSER_ANIMATIONS_PROVIDERS = [\n// Note: the `ngServerMode` happen inside factories to give the variable time to initialize.\n{\n provide: AnimationDriver,\n useFactory: () => typeof ngServerMode !== 'undefined' && ngServerMode ? new NoopAnimationDriver() : new _WebAnimationsDriver()\n}, {\n provide: ANIMATION_MODULE_TYPE,\n useFactory: () => typeof ngServerMode !== 'undefined' && ngServerMode ? 'NoopAnimations' : 'BrowserAnimations'\n}, ...SHARED_ANIMATION_PROVIDERS];\n\n/**\n * Exports `BrowserModule` with additional dependency-injection providers\n * for use with animations. See [Animations](guide/animations).\n * @publicApi\n */\nlet BrowserAnimationsModule = /*#__PURE__*/(() => {\n class BrowserAnimationsModule {\n /**\n * Configures the module based on the specified object.\n *\n * @param config Object used to configure the behavior of the `BrowserAnimationsModule`.\n * @see {@link BrowserAnimationsModuleConfig}\n *\n * @usageNotes\n * When registering the `BrowserAnimationsModule`, you can use the `withConfig`\n * function as follows:\n * ```ts\n * @NgModule({\n * imports: [BrowserAnimationsModule.withConfig(config)]\n * })\n * class MyNgModule {}\n * ```\n */\n static withConfig(config) {\n return {\n ngModule: BrowserAnimationsModule,\n providers: config.disableAnimations ? BROWSER_NOOP_ANIMATIONS_PROVIDERS : BROWSER_ANIMATIONS_PROVIDERS\n };\n }\n static ɵfac = function BrowserAnimationsModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || BrowserAnimationsModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: BrowserAnimationsModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: BROWSER_ANIMATIONS_PROVIDERS,\n imports: [BrowserModule]\n });\n }\n return BrowserAnimationsModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Returns the set of dependency-injection providers\n * to enable animations in an application. See [animations guide](guide/animations)\n * to learn more about animations in Angular.\n *\n * @usageNotes\n *\n * The function is useful when you want to enable animations in an application\n * bootstrapped using the `bootstrapApplication` function. In this scenario there\n * is no need to import the `BrowserAnimationsModule` NgModule at all, just add\n * providers returned by this function to the `providers` list as show below.\n *\n * ```ts\n * bootstrapApplication(RootComponent, {\n * providers: [\n * provideAnimations()\n * ]\n * });\n * ```\n *\n * @publicApi\n */\nfunction provideAnimations() {\n _performanceMarkFeature('NgEagerAnimations');\n // Return a copy to prevent changes to the original array in case any in-place\n // alterations are performed to the `provideAnimations` call results in app code.\n return [...BROWSER_ANIMATIONS_PROVIDERS];\n}\n/**\n * A null player that must be imported to allow disabling of animations.\n * @publicApi\n */\nlet NoopAnimationsModule = /*#__PURE__*/(() => {\n class NoopAnimationsModule {\n static ɵfac = function NoopAnimationsModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NoopAnimationsModule)();\n };\n static ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: NoopAnimationsModule\n });\n static ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({\n providers: BROWSER_NOOP_ANIMATIONS_PROVIDERS,\n imports: [BrowserModule]\n });\n }\n return NoopAnimationsModule;\n})();\n/*#__PURE__*/(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n * Returns the set of dependency-injection providers\n * to disable animations in an application. See [animations guide](guide/animations)\n * to learn more about animations in Angular.\n *\n * @usageNotes\n *\n * The function is useful when you want to bootstrap an application using\n * the `bootstrapApplication` function, but you need to disable animations\n * (for example, when running tests).\n *\n * ```ts\n * bootstrapApplication(RootComponent, {\n * providers: [\n * provideNoopAnimations()\n * ]\n * });\n * ```\n *\n * @publicApi\n */\nfunction provideNoopAnimations() {\n // Return a copy to prevent changes to the original array in case any in-place\n // alterations are performed to the `provideNoopAnimations` call results in app code.\n return [...BROWSER_NOOP_ANIMATIONS_PROVIDERS];\n}\nexport { BrowserAnimationsModule, NoopAnimationsModule, provideAnimations, provideNoopAnimations, InjectableAnimationEngine as ɵInjectableAnimationEngine };\n","import { InjectionToken } from '@angular/core';\r\n\r\nexport const BASE_URL = new InjectionToken('BASE_URL');\r\nexport const APIBASE_URL = new InjectionToken('APIBASE_URL');","import { inject, Injectable } from '@angular/core';\r\nimport { HttpInterceptor, HttpEvent, HttpHandler, HttpRequest } from '@angular/common/http';\r\nimport { Observable, throwError } from 'rxjs';\r\nimport { catchError, finalize, switchMap, tap } from 'rxjs/operators';\r\nimport { OidcSecurityService } from 'angular-auth-oidc-client';\r\n\r\n@Injectable({ providedIn: 'root' })\r\nexport class ApiInterceptor implements HttpInterceptor {\r\n\toidcSecurityService = inject(OidcSecurityService);\r\n\tintercept(request: HttpRequest, next: HttpHandler): Observable> {\r\n\t\tthis.showLoader();\r\n\t\treturn this.oidcSecurityService.isAuthenticated$.pipe(\r\n\t\t\tswitchMap(({ isAuthenticated }) => {\r\n\t\t\t\tif (isAuthenticated) {\r\n\t\t\t\t\tconst accessToken = this.oidcSecurityService.getAccessToken();\r\n\t\t\t\t\tif (accessToken) {\r\n\t\t\t\t\t\tconst authReq = request.clone({\r\n\t\t\t\t\t\t\tsetHeaders: {\r\n\t\t\t\t\t\t\t\tAuthorization: `Bearer ${accessToken}`,\r\n\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t});\r\n\t\t\t\t\t\treturn next.handle(authReq).pipe(\r\n\t\t\t\t\t\t\tfinalize(() => this.hideLoader()),\r\n\t\t\t\t\t\t\tcatchError((error) => {\r\n\t\t\t\t\t\t\t\treturn throwError(() => error);\r\n\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t);\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\treturn next.handle(request).pipe(\r\n\t\t\t\t\tfinalize(() => this.hideLoader()),\r\n\t\t\t\t\tcatchError((error) => {\r\n\t\t\t\t\t\treturn throwError(() => error);\r\n\t\t\t\t\t})\r\n\t\t\t\t);\r\n\t\t\t})\r\n\t\t);\r\n\t}\r\n\r\n\tprivate showLoader(): void {\r\n\r\n\t}\r\n\r\n\tprivate hideLoader(): void {\r\n\t}\r\n}\r\n","export var tylIconAbTesting = {\n name: 'ab_testing',\n data: \"\"\n};\nexport var tylIconAbacus = {\n name: 'abacus',\n data: \"\"\n};\nexport var tylIconAbjadArabic = {\n name: 'abjad_arabic',\n data: \"\"\n};\nexport var tylIconAbjadHebrew = {\n name: 'abjad_hebrew',\n data: \"\"\n};\nexport var tylIconAbugidaDevanagari = {\n name: 'abugida_devanagari',\n data: \"\"\n};\nexport var tylIconAbugidaThai = {\n name: 'abugida_thai',\n data: \"\"\n};\nexport var tylIconAccessPointCheck = {\n name: 'access_point_check',\n data: \"\"\n};\nexport var tylIconAccessPointMinus = {\n name: 'access_point_minus',\n data: \"\"\n};\nexport var tylIconAccessPointNetworkOff = {\n name: 'access_point_network_off',\n data: \"\"\n};\nexport var tylIconAccessPointNetwork = {\n name: 'access_point_network',\n data: \"\"\n};\nexport var tylIconAccessPointOff = {\n name: 'access_point_off',\n data: \"\"\n};\nexport var tylIconAccessPointPlus = {\n name: 'access_point_plus',\n data: \"\"\n};\nexport var tylIconAccessPointRemove = {\n name: 'access_point_remove',\n data: \"\"\n};\nexport var tylIconAccessPoint = {\n name: 'access_point',\n data: \"\"\n};\nexport var tylIconAccountAlertOutline = {\n name: 'account_alert_outline',\n data: \"\"\n};\nexport var tylIconAccountAlert = {\n name: 'account_alert',\n data: \"\"\n};\nexport var tylIconAccountArrowLeftOutline = {\n name: 'account_arrow_left_outline',\n data: \"\"\n};\nexport var tylIconAccountArrowLeft = {\n name: 'account_arrow_left',\n data: \"\"\n};\nexport var tylIconAccountArrowRightOutline = {\n name: 'account_arrow_right_outline',\n data: \"\"\n};\nexport var tylIconAccountArrowRight = {\n name: 'account_arrow_right',\n data: \"\"\n};\nexport var tylIconAccountBoxMultipleOutline = {\n name: 'account_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconAccountBoxMultiple = {\n name: 'account_box_multiple',\n data: \"\"\n};\nexport var tylIconAccountBoxOutline = {\n name: 'account_box_outline',\n data: \"\"\n};\nexport var tylIconAccountBox = {\n name: 'account_box',\n data: \"\"\n};\nexport var tylIconAccountCancelOutline = {\n name: 'account_cancel_outline',\n data: \"\"\n};\nexport var tylIconAccountCancel = {\n name: 'account_cancel',\n data: \"\"\n};\nexport var tylIconAccountCashOutline = {\n name: 'account_cash_outline',\n data: \"\"\n};\nexport var tylIconAccountCash = {\n name: 'account_cash',\n data: \"\"\n};\nexport var tylIconAccountCheckOutline = {\n name: 'account_check_outline',\n data: \"\"\n};\nexport var tylIconAccountCheck = {\n name: 'account_check',\n data: \"\"\n};\nexport var tylIconAccountChildCircle = {\n name: 'account_child_circle',\n data: \"\"\n};\nexport var tylIconAccountChildOutline = {\n name: 'account_child_outline',\n data: \"\"\n};\nexport var tylIconAccountChild = {\n name: 'account_child',\n data: \"\"\n};\nexport var tylIconAccountCircleOutline = {\n name: 'account_circle_outline',\n data: \"\"\n};\nexport var tylIconAccountCircle = {\n name: 'account_circle',\n data: \"\"\n};\nexport var tylIconAccountClockOutline = {\n name: 'account_clock_outline',\n data: \"\"\n};\nexport var tylIconAccountClock = {\n name: 'account_clock',\n data: \"\"\n};\nexport var tylIconAccountCogOutline = {\n name: 'account_cog_outline',\n data: \"\"\n};\nexport var tylIconAccountCog = {\n name: 'account_cog',\n data: \"\"\n};\nexport var tylIconAccountConvertOutline = {\n name: 'account_convert_outline',\n data: \"\"\n};\nexport var tylIconAccountConvert = {\n name: 'account_convert',\n data: \"\"\n};\nexport var tylIconAccountCowboyHat = {\n name: 'account_cowboy_hat',\n data: \"\"\n};\nexport var tylIconAccountDetailsOutline = {\n name: 'account_details_outline',\n data: \"\"\n};\nexport var tylIconAccountDetails = {\n name: 'account_details',\n data: \"\"\n};\nexport var tylIconAccountEditOutline = {\n name: 'account_edit_outline',\n data: \"\"\n};\nexport var tylIconAccountEdit = {\n name: 'account_edit',\n data: \"\"\n};\nexport var tylIconAccountGroupOutline = {\n name: 'account_group_outline',\n data: \"\"\n};\nexport var tylIconAccountGroup = {\n name: 'account_group',\n data: \"\"\n};\nexport var tylIconAccountHardHat = {\n name: 'account_hard_hat',\n data: \"\"\n};\nexport var tylIconAccountHeartOutline = {\n name: 'account_heart_outline',\n data: \"\"\n};\nexport var tylIconAccountHeart = {\n name: 'account_heart',\n data: \"\"\n};\nexport var tylIconAccountKeyOutline = {\n name: 'account_key_outline',\n data: \"\"\n};\nexport var tylIconAccountKey = {\n name: 'account_key',\n data: \"\"\n};\nexport var tylIconAccountLockOutline = {\n name: 'account_lock_outline',\n data: \"\"\n};\nexport var tylIconAccountLock = {\n name: 'account_lock',\n data: \"\"\n};\nexport var tylIconAccountMinusOutline = {\n name: 'account_minus_outline',\n data: \"\"\n};\nexport var tylIconAccountMinus = {\n name: 'account_minus',\n data: \"\"\n};\nexport var tylIconAccountMultipleCheckOutline = {\n name: 'account_multiple_check_outline',\n data: \"\"\n};\nexport var tylIconAccountMultipleCheck = {\n name: 'account_multiple_check',\n data: \"\"\n};\nexport var tylIconAccountMultipleMinusOutline = {\n name: 'account_multiple_minus_outline',\n data: \"\"\n};\nexport var tylIconAccountMultipleMinus = {\n name: 'account_multiple_minus',\n data: \"\"\n};\nexport var tylIconAccountMultipleOutline = {\n name: 'account_multiple_outline',\n data: \"\"\n};\nexport var tylIconAccountMultiplePlusOutline = {\n name: 'account_multiple_plus_outline',\n data: \"\"\n};\nexport var tylIconAccountMultiplePlus = {\n name: 'account_multiple_plus',\n data: \"\"\n};\nexport var tylIconAccountMultipleRemoveOutline = {\n name: 'account_multiple_remove_outline',\n data: \"\"\n};\nexport var tylIconAccountMultipleRemove = {\n name: 'account_multiple_remove',\n data: \"\"\n};\nexport var tylIconAccountMultiple = {\n name: 'account_multiple',\n data: \"\"\n};\nexport var tylIconAccountMusicOutline = {\n name: 'account_music_outline',\n data: \"\"\n};\nexport var tylIconAccountMusic = {\n name: 'account_music',\n data: \"\"\n};\nexport var tylIconAccountNetworkOutline = {\n name: 'account_network_outline',\n data: \"\"\n};\nexport var tylIconAccountNetwork = {\n name: 'account_network',\n data: \"\"\n};\nexport var tylIconAccountOffOutline = {\n name: 'account_off_outline',\n data: \"\"\n};\nexport var tylIconAccountOff = {\n name: 'account_off',\n data: \"\"\n};\nexport var tylIconAccountOutline = {\n name: 'account_outline',\n data: \"\"\n};\nexport var tylIconAccountPlusOutline = {\n name: 'account_plus_outline',\n data: \"\"\n};\nexport var tylIconAccountPlus = {\n name: 'account_plus',\n data: \"\"\n};\nexport var tylIconAccountQuestionOutline = {\n name: 'account_question_outline',\n data: \"\"\n};\nexport var tylIconAccountQuestion = {\n name: 'account_question',\n data: \"\"\n};\nexport var tylIconAccountReactivateOutline = {\n name: 'account_reactivate_outline',\n data: \"\"\n};\nexport var tylIconAccountReactivate = {\n name: 'account_reactivate',\n data: \"\"\n};\nexport var tylIconAccountRemoveOutline = {\n name: 'account_remove_outline',\n data: \"\"\n};\nexport var tylIconAccountRemove = {\n name: 'account_remove',\n data: \"\"\n};\nexport var tylIconAccountSearchOutline = {\n name: 'account_search_outline',\n data: \"\"\n};\nexport var tylIconAccountSearch = {\n name: 'account_search',\n data: \"\"\n};\nexport var tylIconAccountSettingsOutline = {\n name: 'account_settings_outline',\n data: \"\"\n};\nexport var tylIconAccountSettings = {\n name: 'account_settings',\n data: \"\"\n};\nexport var tylIconAccountStarOutline = {\n name: 'account_star_outline',\n data: \"\"\n};\nexport var tylIconAccountStar = {\n name: 'account_star',\n data: \"\"\n};\nexport var tylIconAccountSupervisorCircleOutline = {\n name: 'account_supervisor_circle_outline',\n data: \"\"\n};\nexport var tylIconAccountSupervisorCircle = {\n name: 'account_supervisor_circle',\n data: \"\"\n};\nexport var tylIconAccountSupervisorOutline = {\n name: 'account_supervisor_outline',\n data: \"\"\n};\nexport var tylIconAccountSupervisor = {\n name: 'account_supervisor',\n data: \"\"\n};\nexport var tylIconAccountSwitchOutline = {\n name: 'account_switch_outline',\n data: \"\"\n};\nexport var tylIconAccountSwitch = {\n name: 'account_switch',\n data: \"\"\n};\nexport var tylIconAccountTieOutline = {\n name: 'account_tie_outline',\n data: \"\"\n};\nexport var tylIconAccountTieVoiceOffOutline = {\n name: 'account_tie_voice_off_outline',\n data: \"\"\n};\nexport var tylIconAccountTieVoiceOff = {\n name: 'account_tie_voice_off',\n data: \"\"\n};\nexport var tylIconAccountTieVoiceOutline = {\n name: 'account_tie_voice_outline',\n data: \"\"\n};\nexport var tylIconAccountTieVoice = {\n name: 'account_tie_voice',\n data: \"\"\n};\nexport var tylIconAccountTie = {\n name: 'account_tie',\n data: \"\"\n};\nexport var tylIconAccountVoice = {\n name: 'account_voice',\n data: \"\"\n};\nexport var tylIconAccount = {\n name: 'account',\n data: \"\"\n};\nexport var tylIconAdjust = {\n name: 'adjust',\n data: \"\"\n};\nexport var tylIconAdobeAcrobat = {\n name: 'adobe_acrobat',\n data: \"\"\n};\nexport var tylIconAdobe = {\n name: 'adobe',\n data: \"\"\n};\nexport var tylIconAirConditioner = {\n name: 'air_conditioner',\n data: \"\"\n};\nexport var tylIconAirFilter = {\n name: 'air_filter',\n data: \"\"\n};\nexport var tylIconAirHorn = {\n name: 'air_horn',\n data: \"\"\n};\nexport var tylIconAirHumidifierOff = {\n name: 'air_humidifier_off',\n data: \"\"\n};\nexport var tylIconAirHumidifier = {\n name: 'air_humidifier',\n data: \"\"\n};\nexport var tylIconAirPurifier = {\n name: 'air_purifier',\n data: \"\"\n};\nexport var tylIconAirbag = {\n name: 'airbag',\n data: \"\"\n};\nexport var tylIconAirballoonOutline = {\n name: 'airballoon_outline',\n data: \"\"\n};\nexport var tylIconAirballoon = {\n name: 'airballoon',\n data: \"\"\n};\nexport var tylIconAirplaneLanding = {\n name: 'airplane_landing',\n data: \"\"\n};\nexport var tylIconAirplaneOff = {\n name: 'airplane_off',\n data: \"\"\n};\nexport var tylIconAirplaneTakeoff = {\n name: 'airplane_takeoff',\n data: \"\"\n};\nexport var tylIconAirplane = {\n name: 'airplane',\n data: \"\"\n};\nexport var tylIconAirport = {\n name: 'airport',\n data: \"\"\n};\nexport var tylIconAlarmBell = {\n name: 'alarm_bell',\n data: \"\"\n};\nexport var tylIconAlarmCheck = {\n name: 'alarm_check',\n data: \"\"\n};\nexport var tylIconAlarmLightOutline = {\n name: 'alarm_light_outline',\n data: \"\"\n};\nexport var tylIconAlarmLight = {\n name: 'alarm_light',\n data: \"\"\n};\nexport var tylIconAlarmMultiple = {\n name: 'alarm_multiple',\n data: \"\"\n};\nexport var tylIconAlarmNoteOff = {\n name: 'alarm_note_off',\n data: \"\"\n};\nexport var tylIconAlarmNote = {\n name: 'alarm_note',\n data: \"\"\n};\nexport var tylIconAlarmOff = {\n name: 'alarm_off',\n data: \"\"\n};\nexport var tylIconAlarmPanelOutline = {\n name: 'alarm_panel_outline',\n data: \"\"\n};\nexport var tylIconAlarmPanel = {\n name: 'alarm_panel',\n data: \"\"\n};\nexport var tylIconAlarmPlus = {\n name: 'alarm_plus',\n data: \"\"\n};\nexport var tylIconAlarmSnooze = {\n name: 'alarm_snooze',\n data: \"\"\n};\nexport var tylIconAlarm = {\n name: 'alarm',\n data: \"\"\n};\nexport var tylIconAlbum = {\n name: 'album',\n data: \"\"\n};\nexport var tylIconAlertBoxOutline = {\n name: 'alert_box_outline',\n data: \"\"\n};\nexport var tylIconAlertBox = {\n name: 'alert_box',\n data: \"\"\n};\nexport var tylIconAlertCircleCheckOutline = {\n name: 'alert_circle_check_outline',\n data: \"\"\n};\nexport var tylIconAlertCircleCheck = {\n name: 'alert_circle_check',\n data: \"\"\n};\nexport var tylIconAlertCircleOutline = {\n name: 'alert_circle_outline',\n data: \"\"\n};\nexport var tylIconAlertCircle = {\n name: 'alert_circle',\n data: \"\"\n};\nexport var tylIconAlertDecagramOutline = {\n name: 'alert_decagram_outline',\n data: \"\"\n};\nexport var tylIconAlertDecagram = {\n name: 'alert_decagram',\n data: \"\"\n};\nexport var tylIconAlertMinusOutline = {\n name: 'alert_minus_outline',\n data: \"\"\n};\nexport var tylIconAlertMinus = {\n name: 'alert_minus',\n data: \"\"\n};\nexport var tylIconAlertOctagonOutline = {\n name: 'alert_octagon_outline',\n data: \"\"\n};\nexport var tylIconAlertOctagon = {\n name: 'alert_octagon',\n data: \"\"\n};\nexport var tylIconAlertOctagramOutline = {\n name: 'alert_octagram_outline',\n data: \"\"\n};\nexport var tylIconAlertOctagram = {\n name: 'alert_octagram',\n data: \"\"\n};\nexport var tylIconAlertOutline = {\n name: 'alert_outline',\n data: \"\"\n};\nexport var tylIconAlertPlusOutline = {\n name: 'alert_plus_outline',\n data: \"\"\n};\nexport var tylIconAlertPlus = {\n name: 'alert_plus',\n data: \"\"\n};\nexport var tylIconAlertRemoveOutline = {\n name: 'alert_remove_outline',\n data: \"\"\n};\nexport var tylIconAlertRemove = {\n name: 'alert_remove',\n data: \"\"\n};\nexport var tylIconAlertRhombusOutline = {\n name: 'alert_rhombus_outline',\n data: \"\"\n};\nexport var tylIconAlertRhombus = {\n name: 'alert_rhombus',\n data: \"\"\n};\nexport var tylIconAlert = {\n name: 'alert',\n data: \"\"\n};\nexport var tylIconAlienOutline = {\n name: 'alien_outline',\n data: \"\"\n};\nexport var tylIconAlien = {\n name: 'alien',\n data: \"\"\n};\nexport var tylIconAlignHorizontalCenter = {\n name: 'align_horizontal_center',\n data: \"\"\n};\nexport var tylIconAlignHorizontalLeft = {\n name: 'align_horizontal_left',\n data: \"\"\n};\nexport var tylIconAlignHorizontalRight = {\n name: 'align_horizontal_right',\n data: \"\"\n};\nexport var tylIconAlignVerticalBottom = {\n name: 'align_vertical_bottom',\n data: \"\"\n};\nexport var tylIconAlignVerticalCenter = {\n name: 'align_vertical_center',\n data: \"\"\n};\nexport var tylIconAlignVerticalTop = {\n name: 'align_vertical_top',\n data: \"\"\n};\nexport var tylIconAllInclusive = {\n name: 'all_inclusive',\n data: \"\"\n};\nexport var tylIconAllergy = {\n name: 'allergy',\n data: \"\"\n};\nexport var tylIconAlphaABoxOutline = {\n name: 'alpha_a_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaABox = {\n name: 'alpha_a_box',\n data: \"\"\n};\nexport var tylIconAlphaACircleOutline = {\n name: 'alpha_a_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaACircle = {\n name: 'alpha_a_circle',\n data: \"\"\n};\nexport var tylIconAlphaA = {\n name: 'alpha_a',\n data: \"\"\n};\nexport var tylIconAlphaBBoxOutline = {\n name: 'alpha_b_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaBBox = {\n name: 'alpha_b_box',\n data: \"\"\n};\nexport var tylIconAlphaBCircleOutline = {\n name: 'alpha_b_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaBCircle = {\n name: 'alpha_b_circle',\n data: \"\"\n};\nexport var tylIconAlphaB = {\n name: 'alpha_b',\n data: \"\"\n};\nexport var tylIconAlphaCBoxOutline = {\n name: 'alpha_c_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaCBox = {\n name: 'alpha_c_box',\n data: \"\"\n};\nexport var tylIconAlphaCCircleOutline = {\n name: 'alpha_c_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaCCircle = {\n name: 'alpha_c_circle',\n data: \"\"\n};\nexport var tylIconAlphaC = {\n name: 'alpha_c',\n data: \"\"\n};\nexport var tylIconAlphaDBoxOutline = {\n name: 'alpha_d_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaDBox = {\n name: 'alpha_d_box',\n data: \"\"\n};\nexport var tylIconAlphaDCircleOutline = {\n name: 'alpha_d_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaDCircle = {\n name: 'alpha_d_circle',\n data: \"\"\n};\nexport var tylIconAlphaD = {\n name: 'alpha_d',\n data: \"\"\n};\nexport var tylIconAlphaEBoxOutline = {\n name: 'alpha_e_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaEBox = {\n name: 'alpha_e_box',\n data: \"\"\n};\nexport var tylIconAlphaECircleOutline = {\n name: 'alpha_e_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaECircle = {\n name: 'alpha_e_circle',\n data: \"\"\n};\nexport var tylIconAlphaE = {\n name: 'alpha_e',\n data: \"\"\n};\nexport var tylIconAlphaFBoxOutline = {\n name: 'alpha_f_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaFBox = {\n name: 'alpha_f_box',\n data: \"\"\n};\nexport var tylIconAlphaFCircleOutline = {\n name: 'alpha_f_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaFCircle = {\n name: 'alpha_f_circle',\n data: \"\"\n};\nexport var tylIconAlphaF = {\n name: 'alpha_f',\n data: \"\"\n};\nexport var tylIconAlphaGBoxOutline = {\n name: 'alpha_g_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaGBox = {\n name: 'alpha_g_box',\n data: \"\"\n};\nexport var tylIconAlphaGCircleOutline = {\n name: 'alpha_g_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaGCircle = {\n name: 'alpha_g_circle',\n data: \"\"\n};\nexport var tylIconAlphaG = {\n name: 'alpha_g',\n data: \"\"\n};\nexport var tylIconAlphaHBoxOutline = {\n name: 'alpha_h_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaHBox = {\n name: 'alpha_h_box',\n data: \"\"\n};\nexport var tylIconAlphaHCircleOutline = {\n name: 'alpha_h_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaHCircle = {\n name: 'alpha_h_circle',\n data: \"\"\n};\nexport var tylIconAlphaH = {\n name: 'alpha_h',\n data: \"\"\n};\nexport var tylIconAlphaIBoxOutline = {\n name: 'alpha_i_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaIBox = {\n name: 'alpha_i_box',\n data: \"\"\n};\nexport var tylIconAlphaICircleOutline = {\n name: 'alpha_i_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaICircle = {\n name: 'alpha_i_circle',\n data: \"\"\n};\nexport var tylIconAlphaI = {\n name: 'alpha_i',\n data: \"\"\n};\nexport var tylIconAlphaJBoxOutline = {\n name: 'alpha_j_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaJBox = {\n name: 'alpha_j_box',\n data: \"\"\n};\nexport var tylIconAlphaJCircleOutline = {\n name: 'alpha_j_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaJCircle = {\n name: 'alpha_j_circle',\n data: \"\"\n};\nexport var tylIconAlphaJ = {\n name: 'alpha_j',\n data: \"\"\n};\nexport var tylIconAlphaKBoxOutline = {\n name: 'alpha_k_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaKBox = {\n name: 'alpha_k_box',\n data: \"\"\n};\nexport var tylIconAlphaKCircleOutline = {\n name: 'alpha_k_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaKCircle = {\n name: 'alpha_k_circle',\n data: \"\"\n};\nexport var tylIconAlphaK = {\n name: 'alpha_k',\n data: \"\"\n};\nexport var tylIconAlphaLBoxOutline = {\n name: 'alpha_l_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaLBox = {\n name: 'alpha_l_box',\n data: \"\"\n};\nexport var tylIconAlphaLCircleOutline = {\n name: 'alpha_l_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaLCircle = {\n name: 'alpha_l_circle',\n data: \"\"\n};\nexport var tylIconAlphaL = {\n name: 'alpha_l',\n data: \"\"\n};\nexport var tylIconAlphaMBoxOutline = {\n name: 'alpha_m_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaMBox = {\n name: 'alpha_m_box',\n data: \"\"\n};\nexport var tylIconAlphaMCircleOutline = {\n name: 'alpha_m_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaMCircle = {\n name: 'alpha_m_circle',\n data: \"\"\n};\nexport var tylIconAlphaM = {\n name: 'alpha_m',\n data: \"\"\n};\nexport var tylIconAlphaNBoxOutline = {\n name: 'alpha_n_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaNBox = {\n name: 'alpha_n_box',\n data: \"\"\n};\nexport var tylIconAlphaNCircleOutline = {\n name: 'alpha_n_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaNCircle = {\n name: 'alpha_n_circle',\n data: \"\"\n};\nexport var tylIconAlphaN = {\n name: 'alpha_n',\n data: \"\"\n};\nexport var tylIconAlphaOBoxOutline = {\n name: 'alpha_o_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaOBox = {\n name: 'alpha_o_box',\n data: \"\"\n};\nexport var tylIconAlphaOCircleOutline = {\n name: 'alpha_o_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaOCircle = {\n name: 'alpha_o_circle',\n data: \"\"\n};\nexport var tylIconAlphaO = {\n name: 'alpha_o',\n data: \"\"\n};\nexport var tylIconAlphaPBoxOutline = {\n name: 'alpha_p_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaPBox = {\n name: 'alpha_p_box',\n data: \"\"\n};\nexport var tylIconAlphaPCircleOutline = {\n name: 'alpha_p_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaPCircle = {\n name: 'alpha_p_circle',\n data: \"\"\n};\nexport var tylIconAlphaP = {\n name: 'alpha_p',\n data: \"\"\n};\nexport var tylIconAlphaQBoxOutline = {\n name: 'alpha_q_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaQBox = {\n name: 'alpha_q_box',\n data: \"\"\n};\nexport var tylIconAlphaQCircleOutline = {\n name: 'alpha_q_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaQCircle = {\n name: 'alpha_q_circle',\n data: \"\"\n};\nexport var tylIconAlphaQ = {\n name: 'alpha_q',\n data: \"\"\n};\nexport var tylIconAlphaRBoxOutline = {\n name: 'alpha_r_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaRBox = {\n name: 'alpha_r_box',\n data: \"\"\n};\nexport var tylIconAlphaRCircleOutline = {\n name: 'alpha_r_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaRCircle = {\n name: 'alpha_r_circle',\n data: \"\"\n};\nexport var tylIconAlphaR = {\n name: 'alpha_r',\n data: \"\"\n};\nexport var tylIconAlphaSBoxOutline = {\n name: 'alpha_s_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaSBox = {\n name: 'alpha_s_box',\n data: \"\"\n};\nexport var tylIconAlphaSCircleOutline = {\n name: 'alpha_s_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaSCircle = {\n name: 'alpha_s_circle',\n data: \"\"\n};\nexport var tylIconAlphaS = {\n name: 'alpha_s',\n data: \"\"\n};\nexport var tylIconAlphaTBoxOutline = {\n name: 'alpha_t_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaTBox = {\n name: 'alpha_t_box',\n data: \"\"\n};\nexport var tylIconAlphaTCircleOutline = {\n name: 'alpha_t_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaTCircle = {\n name: 'alpha_t_circle',\n data: \"\"\n};\nexport var tylIconAlphaT = {\n name: 'alpha_t',\n data: \"\"\n};\nexport var tylIconAlphaUBoxOutline = {\n name: 'alpha_u_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaUBox = {\n name: 'alpha_u_box',\n data: \"\"\n};\nexport var tylIconAlphaUCircleOutline = {\n name: 'alpha_u_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaUCircle = {\n name: 'alpha_u_circle',\n data: \"\"\n};\nexport var tylIconAlphaU = {\n name: 'alpha_u',\n data: \"\"\n};\nexport var tylIconAlphaVBoxOutline = {\n name: 'alpha_v_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaVBox = {\n name: 'alpha_v_box',\n data: \"\"\n};\nexport var tylIconAlphaVCircleOutline = {\n name: 'alpha_v_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaVCircle = {\n name: 'alpha_v_circle',\n data: \"\"\n};\nexport var tylIconAlphaV = {\n name: 'alpha_v',\n data: \"\"\n};\nexport var tylIconAlphaWBoxOutline = {\n name: 'alpha_w_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaWBox = {\n name: 'alpha_w_box',\n data: \"\"\n};\nexport var tylIconAlphaWCircleOutline = {\n name: 'alpha_w_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaWCircle = {\n name: 'alpha_w_circle',\n data: \"\"\n};\nexport var tylIconAlphaW = {\n name: 'alpha_w',\n data: \"\"\n};\nexport var tylIconAlphaXBoxOutline = {\n name: 'alpha_x_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaXBox = {\n name: 'alpha_x_box',\n data: \"\"\n};\nexport var tylIconAlphaXCircleOutline = {\n name: 'alpha_x_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaXCircle = {\n name: 'alpha_x_circle',\n data: \"\"\n};\nexport var tylIconAlphaX = {\n name: 'alpha_x',\n data: \"\"\n};\nexport var tylIconAlphaYBoxOutline = {\n name: 'alpha_y_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaYBox = {\n name: 'alpha_y_box',\n data: \"\"\n};\nexport var tylIconAlphaYCircleOutline = {\n name: 'alpha_y_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaYCircle = {\n name: 'alpha_y_circle',\n data: \"\"\n};\nexport var tylIconAlphaY = {\n name: 'alpha_y',\n data: \"\"\n};\nexport var tylIconAlphaZBoxOutline = {\n name: 'alpha_z_box_outline',\n data: \"\"\n};\nexport var tylIconAlphaZBox = {\n name: 'alpha_z_box',\n data: \"\"\n};\nexport var tylIconAlphaZCircleOutline = {\n name: 'alpha_z_circle_outline',\n data: \"\"\n};\nexport var tylIconAlphaZCircle = {\n name: 'alpha_z_circle',\n data: \"\"\n};\nexport var tylIconAlphaZ = {\n name: 'alpha_z',\n data: \"\"\n};\nexport var tylIconAlpha = {\n name: 'alpha',\n data: \"\"\n};\nexport var tylIconAlphabetAurebesh = {\n name: 'alphabet_aurebesh',\n data: \"\"\n};\nexport var tylIconAlphabetCyrillic = {\n name: 'alphabet_cyrillic',\n data: \"\"\n};\nexport var tylIconAlphabetGreek = {\n name: 'alphabet_greek',\n data: \"\"\n};\nexport var tylIconAlphabetLatin = {\n name: 'alphabet_latin',\n data: \"\"\n};\nexport var tylIconAlphabetPiqad = {\n name: 'alphabet_piqad',\n data: \"\"\n};\nexport var tylIconAlphabetTengwar = {\n name: 'alphabet_tengwar',\n data: \"\"\n};\nexport var tylIconAlphabeticalOff = {\n name: 'alphabetical_off',\n data: \"\"\n};\nexport var tylIconAlphabeticalVariantOff = {\n name: 'alphabetical_variant_off',\n data: \"\"\n};\nexport var tylIconAlphabeticalVariant = {\n name: 'alphabetical_variant',\n data: \"\"\n};\nexport var tylIconAlphabetical = {\n name: 'alphabetical',\n data: \"\"\n};\nexport var tylIconAltimeter = {\n name: 'altimeter',\n data: \"\"\n};\nexport var tylIconAmazonAlexa = {\n name: 'amazon_alexa',\n data: \"\"\n};\nexport var tylIconAmazon = {\n name: 'amazon',\n data: \"\"\n};\nexport var tylIconAmbulance = {\n name: 'ambulance',\n data: \"\"\n};\nexport var tylIconAmmunition = {\n name: 'ammunition',\n data: \"\"\n};\nexport var tylIconAmpersand = {\n name: 'ampersand',\n data: \"\"\n};\nexport var tylIconAmplifierOff = {\n name: 'amplifier_off',\n data: \"\"\n};\nexport var tylIconAmplifier = {\n name: 'amplifier',\n data: \"\"\n};\nexport var tylIconAnchor = {\n name: 'anchor',\n data: \"\"\n};\nexport var tylIconAndroidAuto = {\n name: 'android_auto',\n data: \"\"\n};\nexport var tylIconAndroidDebugBridge = {\n name: 'android_debug_bridge',\n data: \"\"\n};\nexport var tylIconAndroidMessages = {\n name: 'android_messages',\n data: \"\"\n};\nexport var tylIconAndroidStudio = {\n name: 'android_studio',\n data: \"\"\n};\nexport var tylIconAndroid = {\n name: 'android',\n data: \"\"\n};\nexport var tylIconAngleAcute = {\n name: 'angle_acute',\n data: \"\"\n};\nexport var tylIconAngleObtuse = {\n name: 'angle_obtuse',\n data: \"\"\n};\nexport var tylIconAngleRight = {\n name: 'angle_right',\n data: \"\"\n};\nexport var tylIconAngular = {\n name: 'angular',\n data: \"\"\n};\nexport var tylIconAngularjs = {\n name: 'angularjs',\n data: \"\"\n};\nexport var tylIconAnimationOutline = {\n name: 'animation_outline',\n data: \"\"\n};\nexport var tylIconAnimationPlayOutline = {\n name: 'animation_play_outline',\n data: \"\"\n};\nexport var tylIconAnimationPlay = {\n name: 'animation_play',\n data: \"\"\n};\nexport var tylIconAnimation = {\n name: 'animation',\n data: \"\"\n};\nexport var tylIconAnsible = {\n name: 'ansible',\n data: \"\"\n};\nexport var tylIconAntenna = {\n name: 'antenna',\n data: \"\"\n};\nexport var tylIconAnvil = {\n name: 'anvil',\n data: \"\"\n};\nexport var tylIconApacheKafka = {\n name: 'apache_kafka',\n data: \"\"\n};\nexport var tylIconApiOff = {\n name: 'api_off',\n data: \"\"\n};\nexport var tylIconApi = {\n name: 'api',\n data: \"\"\n};\nexport var tylIconAppleAirplay = {\n name: 'apple_airplay',\n data: \"\"\n};\nexport var tylIconAppleFinder = {\n name: 'apple_finder',\n data: \"\"\n};\nexport var tylIconAppleIcloud = {\n name: 'apple_icloud',\n data: \"\"\n};\nexport var tylIconAppleIos = {\n name: 'apple_ios',\n data: \"\"\n};\nexport var tylIconAppleKeyboardCaps = {\n name: 'apple_keyboard_caps',\n data: \"\"\n};\nexport var tylIconAppleKeyboardCommand = {\n name: 'apple_keyboard_command',\n data: \"\"\n};\nexport var tylIconAppleKeyboardControl = {\n name: 'apple_keyboard_control',\n data: \"\"\n};\nexport var tylIconAppleKeyboardOption = {\n name: 'apple_keyboard_option',\n data: \"\"\n};\nexport var tylIconAppleKeyboardShift = {\n name: 'apple_keyboard_shift',\n data: \"\"\n};\nexport var tylIconAppleSafari = {\n name: 'apple_safari',\n data: \"\"\n};\nexport var tylIconApple = {\n name: 'apple',\n data: \"\"\n};\nexport var tylIconApplicationCog = {\n name: 'application_cog',\n data: \"\"\n};\nexport var tylIconApplicationExport = {\n name: 'application_export',\n data: \"\"\n};\nexport var tylIconApplicationImport = {\n name: 'application_import',\n data: \"\"\n};\nexport var tylIconApplicationSettings = {\n name: 'application_settings',\n data: \"\"\n};\nexport var tylIconApplication = {\n name: 'application',\n data: \"\"\n};\nexport var tylIconApproximatelyEqualBox = {\n name: 'approximately_equal_box',\n data: \"\"\n};\nexport var tylIconApproximatelyEqual = {\n name: 'approximately_equal',\n data: \"\"\n};\nexport var tylIconAppsBox = {\n name: 'apps_box',\n data: \"\"\n};\nexport var tylIconApps = {\n name: 'apps',\n data: \"\"\n};\nexport var tylIconArch = {\n name: 'arch',\n data: \"\"\n};\nexport var tylIconArchiveAlertOutline = {\n name: 'archive_alert_outline',\n data: \"\"\n};\nexport var tylIconArchiveAlert = {\n name: 'archive_alert',\n data: \"\"\n};\nexport var tylIconArchiveArrowDownOutline = {\n name: 'archive_arrow_down_outline',\n data: \"\"\n};\nexport var tylIconArchiveArrowDown = {\n name: 'archive_arrow_down',\n data: \"\"\n};\nexport var tylIconArchiveArrowUpOutline = {\n name: 'archive_arrow_up_outline',\n data: \"\"\n};\nexport var tylIconArchiveArrowUp = {\n name: 'archive_arrow_up',\n data: \"\"\n};\nexport var tylIconArchiveOutline = {\n name: 'archive_outline',\n data: \"\"\n};\nexport var tylIconArchive = {\n name: 'archive',\n data: \"\"\n};\nexport var tylIconArmFlexOutline = {\n name: 'arm_flex_outline',\n data: \"\"\n};\nexport var tylIconArmFlex = {\n name: 'arm_flex',\n data: \"\"\n};\nexport var tylIconArrangeBringForward = {\n name: 'arrange_bring_forward',\n data: \"\"\n};\nexport var tylIconArrangeBringToFront = {\n name: 'arrange_bring_to_front',\n data: \"\"\n};\nexport var tylIconArrangeSendBackward = {\n name: 'arrange_send_backward',\n data: \"\"\n};\nexport var tylIconArrangeSendToBack = {\n name: 'arrange_send_to_back',\n data: \"\"\n};\nexport var tylIconArrowAll = {\n name: 'arrow_all',\n data: \"\"\n};\nexport var tylIconArrowBottomLeftBoldOutline = {\n name: 'arrow_bottom_left_bold_outline',\n data: \"\"\n};\nexport var tylIconArrowBottomLeftThick = {\n name: 'arrow_bottom_left_thick',\n data: \"\"\n};\nexport var tylIconArrowBottomLeftThinCircleOutline = {\n name: 'arrow_bottom_left_thin_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowBottomLeft = {\n name: 'arrow_bottom_left',\n data: \"\"\n};\nexport var tylIconArrowBottomRightBoldOutline = {\n name: 'arrow_bottom_right_bold_outline',\n data: \"\"\n};\nexport var tylIconArrowBottomRightThick = {\n name: 'arrow_bottom_right_thick',\n data: \"\"\n};\nexport var tylIconArrowBottomRightThinCircleOutline = {\n name: 'arrow_bottom_right_thin_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowBottomRight = {\n name: 'arrow_bottom_right',\n data: \"\"\n};\nexport var tylIconArrowCollapseAll = {\n name: 'arrow_collapse_all',\n data: \"\"\n};\nexport var tylIconArrowCollapseDown = {\n name: 'arrow_collapse_down',\n data: \"\"\n};\nexport var tylIconArrowCollapseHorizontal = {\n name: 'arrow_collapse_horizontal',\n data: \"\"\n};\nexport var tylIconArrowCollapseLeft = {\n name: 'arrow_collapse_left',\n data: \"\"\n};\nexport var tylIconArrowCollapseRight = {\n name: 'arrow_collapse_right',\n data: \"\"\n};\nexport var tylIconArrowCollapseUp = {\n name: 'arrow_collapse_up',\n data: \"\"\n};\nexport var tylIconArrowCollapseVertical = {\n name: 'arrow_collapse_vertical',\n data: \"\"\n};\nexport var tylIconArrowCollapse = {\n name: 'arrow_collapse',\n data: \"\"\n};\nexport var tylIconArrowDecisionAutoOutline = {\n name: 'arrow_decision_auto_outline',\n data: \"\"\n};\nexport var tylIconArrowDecisionAuto = {\n name: 'arrow_decision_auto',\n data: \"\"\n};\nexport var tylIconArrowDecisionOutline = {\n name: 'arrow_decision_outline',\n data: \"\"\n};\nexport var tylIconArrowDecision = {\n name: 'arrow_decision',\n data: \"\"\n};\nexport var tylIconArrowDownBoldBoxOutline = {\n name: 'arrow_down_bold_box_outline',\n data: \"\"\n};\nexport var tylIconArrowDownBoldBox = {\n name: 'arrow_down_bold_box',\n data: \"\"\n};\nexport var tylIconArrowDownBoldCircleOutline = {\n name: 'arrow_down_bold_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowDownBoldCircle = {\n name: 'arrow_down_bold_circle',\n data: \"\"\n};\nexport var tylIconArrowDownBoldHexagonOutline = {\n name: 'arrow_down_bold_hexagon_outline',\n data: \"\"\n};\nexport var tylIconArrowDownBoldOutline = {\n name: 'arrow_down_bold_outline',\n data: \"\"\n};\nexport var tylIconArrowDownBold = {\n name: 'arrow_down_bold',\n data: \"\"\n};\nexport var tylIconArrowDownBox = {\n name: 'arrow_down_box',\n data: \"\"\n};\nexport var tylIconArrowDownCircleOutline = {\n name: 'arrow_down_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowDownCircle = {\n name: 'arrow_down_circle',\n data: \"\"\n};\nexport var tylIconArrowDownDropCircleOutline = {\n name: 'arrow_down_drop_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowDownDropCircle = {\n name: 'arrow_down_drop_circle',\n data: \"\"\n};\nexport var tylIconArrowDownThick = {\n name: 'arrow_down_thick',\n data: \"\"\n};\nexport var tylIconArrowDownThinCircleOutline = {\n name: 'arrow_down_thin_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowDown = {\n name: 'arrow_down',\n data: \"\"\n};\nexport var tylIconArrowExpandAll = {\n name: 'arrow_expand_all',\n data: \"\"\n};\nexport var tylIconArrowExpandDown = {\n name: 'arrow_expand_down',\n data: \"\"\n};\nexport var tylIconArrowExpandHorizontal = {\n name: 'arrow_expand_horizontal',\n data: \"\"\n};\nexport var tylIconArrowExpandLeft = {\n name: 'arrow_expand_left',\n data: \"\"\n};\nexport var tylIconArrowExpandRight = {\n name: 'arrow_expand_right',\n data: \"\"\n};\nexport var tylIconArrowExpandUp = {\n name: 'arrow_expand_up',\n data: \"\"\n};\nexport var tylIconArrowExpandVertical = {\n name: 'arrow_expand_vertical',\n data: \"\"\n};\nexport var tylIconArrowExpand = {\n name: 'arrow_expand',\n data: \"\"\n};\nexport var tylIconArrowHorizontalLock = {\n name: 'arrow_horizontal_lock',\n data: \"\"\n};\nexport var tylIconArrowLeftBoldBoxOutline = {\n name: 'arrow_left_bold_box_outline',\n data: \"\"\n};\nexport var tylIconArrowLeftBoldBox = {\n name: 'arrow_left_bold_box',\n data: \"\"\n};\nexport var tylIconArrowLeftBoldCircleOutline = {\n name: 'arrow_left_bold_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowLeftBoldCircle = {\n name: 'arrow_left_bold_circle',\n data: \"\"\n};\nexport var tylIconArrowLeftBoldHexagonOutline = {\n name: 'arrow_left_bold_hexagon_outline',\n data: \"\"\n};\nexport var tylIconArrowLeftBoldOutline = {\n name: 'arrow_left_bold_outline',\n data: \"\"\n};\nexport var tylIconArrowLeftBold = {\n name: 'arrow_left_bold',\n data: \"\"\n};\nexport var tylIconArrowLeftBox = {\n name: 'arrow_left_box',\n data: \"\"\n};\nexport var tylIconArrowLeftCircleOutline = {\n name: 'arrow_left_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowLeftCircle = {\n name: 'arrow_left_circle',\n data: \"\"\n};\nexport var tylIconArrowLeftDropCircleOutline = {\n name: 'arrow_left_drop_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowLeftDropCircle = {\n name: 'arrow_left_drop_circle',\n data: \"\"\n};\nexport var tylIconArrowLeftRightBoldOutline = {\n name: 'arrow_left_right_bold_outline',\n data: \"\"\n};\nexport var tylIconArrowLeftRightBold = {\n name: 'arrow_left_right_bold',\n data: \"\"\n};\nexport var tylIconArrowLeftRight = {\n name: 'arrow_left_right',\n data: \"\"\n};\nexport var tylIconArrowLeftThick = {\n name: 'arrow_left_thick',\n data: \"\"\n};\nexport var tylIconArrowLeftThinCircleOutline = {\n name: 'arrow_left_thin_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowLeft = {\n name: 'arrow_left',\n data: \"\"\n};\nexport var tylIconArrowRightBoldBoxOutline = {\n name: 'arrow_right_bold_box_outline',\n data: \"\"\n};\nexport var tylIconArrowRightBoldBox = {\n name: 'arrow_right_bold_box',\n data: \"\"\n};\nexport var tylIconArrowRightBoldCircleOutline = {\n name: 'arrow_right_bold_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowRightBoldCircle = {\n name: 'arrow_right_bold_circle',\n data: \"\"\n};\nexport var tylIconArrowRightBoldHexagonOutline = {\n name: 'arrow_right_bold_hexagon_outline',\n data: \"\"\n};\nexport var tylIconArrowRightBoldOutline = {\n name: 'arrow_right_bold_outline',\n data: \"\"\n};\nexport var tylIconArrowRightBold = {\n name: 'arrow_right_bold',\n data: \"\"\n};\nexport var tylIconArrowRightBox = {\n name: 'arrow_right_box',\n data: \"\"\n};\nexport var tylIconArrowRightCircleOutline = {\n name: 'arrow_right_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowRightCircle = {\n name: 'arrow_right_circle',\n data: \"\"\n};\nexport var tylIconArrowRightDropCircleOutline = {\n name: 'arrow_right_drop_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowRightDropCircle = {\n name: 'arrow_right_drop_circle',\n data: \"\"\n};\nexport var tylIconArrowRightThick = {\n name: 'arrow_right_thick',\n data: \"\"\n};\nexport var tylIconArrowRightThinCircleOutline = {\n name: 'arrow_right_thin_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowRight = {\n name: 'arrow_right',\n data: \"\"\n};\nexport var tylIconArrowSplitHorizontal = {\n name: 'arrow_split_horizontal',\n data: \"\"\n};\nexport var tylIconArrowSplitVertical = {\n name: 'arrow_split_vertical',\n data: \"\"\n};\nexport var tylIconArrowTopLeftBoldOutline = {\n name: 'arrow_top_left_bold_outline',\n data: \"\"\n};\nexport var tylIconArrowTopLeftBottomRightBold = {\n name: 'arrow_top_left_bottom_right_bold',\n data: \"\"\n};\nexport var tylIconArrowTopLeftBottomRight = {\n name: 'arrow_top_left_bottom_right',\n data: \"\"\n};\nexport var tylIconArrowTopLeftThick = {\n name: 'arrow_top_left_thick',\n data: \"\"\n};\nexport var tylIconArrowTopLeftThinCircleOutline = {\n name: 'arrow_top_left_thin_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowTopLeft = {\n name: 'arrow_top_left',\n data: \"\"\n};\nexport var tylIconArrowTopRightBoldOutline = {\n name: 'arrow_top_right_bold_outline',\n data: \"\"\n};\nexport var tylIconArrowTopRightBottomLeftBold = {\n name: 'arrow_top_right_bottom_left_bold',\n data: \"\"\n};\nexport var tylIconArrowTopRightBottomLeft = {\n name: 'arrow_top_right_bottom_left',\n data: \"\"\n};\nexport var tylIconArrowTopRightThick = {\n name: 'arrow_top_right_thick',\n data: \"\"\n};\nexport var tylIconArrowTopRightThinCircleOutline = {\n name: 'arrow_top_right_thin_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowTopRight = {\n name: 'arrow_top_right',\n data: \"\"\n};\nexport var tylIconArrowUpBoldBoxOutline = {\n name: 'arrow_up_bold_box_outline',\n data: \"\"\n};\nexport var tylIconArrowUpBoldBox = {\n name: 'arrow_up_bold_box',\n data: \"\"\n};\nexport var tylIconArrowUpBoldCircleOutline = {\n name: 'arrow_up_bold_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowUpBoldCircle = {\n name: 'arrow_up_bold_circle',\n data: \"\"\n};\nexport var tylIconArrowUpBoldHexagonOutline = {\n name: 'arrow_up_bold_hexagon_outline',\n data: \"\"\n};\nexport var tylIconArrowUpBoldOutline = {\n name: 'arrow_up_bold_outline',\n data: \"\"\n};\nexport var tylIconArrowUpBold = {\n name: 'arrow_up_bold',\n data: \"\"\n};\nexport var tylIconArrowUpBox = {\n name: 'arrow_up_box',\n data: \"\"\n};\nexport var tylIconArrowUpCircleOutline = {\n name: 'arrow_up_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowUpCircle = {\n name: 'arrow_up_circle',\n data: \"\"\n};\nexport var tylIconArrowUpDownBoldOutline = {\n name: 'arrow_up_down_bold_outline',\n data: \"\"\n};\nexport var tylIconArrowUpDownBold = {\n name: 'arrow_up_down_bold',\n data: \"\"\n};\nexport var tylIconArrowUpDown = {\n name: 'arrow_up_down',\n data: \"\"\n};\nexport var tylIconArrowUpDropCircleOutline = {\n name: 'arrow_up_drop_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowUpDropCircle = {\n name: 'arrow_up_drop_circle',\n data: \"\"\n};\nexport var tylIconArrowUpThick = {\n name: 'arrow_up_thick',\n data: \"\"\n};\nexport var tylIconArrowUpThinCircleOutline = {\n name: 'arrow_up_thin_circle_outline',\n data: \"\"\n};\nexport var tylIconArrowUp = {\n name: 'arrow_up',\n data: \"\"\n};\nexport var tylIconArrowVerticalLock = {\n name: 'arrow_vertical_lock',\n data: \"\"\n};\nexport var tylIconArtstation = {\n name: 'artstation',\n data: \"\"\n};\nexport var tylIconAspectRatio = {\n name: 'aspect_ratio',\n data: \"\"\n};\nexport var tylIconAssistant = {\n name: 'assistant',\n data: \"\"\n};\nexport var tylIconAsterisk = {\n name: 'asterisk',\n data: \"\"\n};\nexport var tylIconAt = {\n name: 'at',\n data: \"\"\n};\nexport var tylIconAtlassian = {\n name: 'atlassian',\n data: \"\"\n};\nexport var tylIconAtm = {\n name: 'atm',\n data: \"\"\n};\nexport var tylIconAtomVariant = {\n name: 'atom_variant',\n data: \"\"\n};\nexport var tylIconAtom = {\n name: 'atom',\n data: \"\"\n};\nexport var tylIconAttachment = {\n name: 'attachment',\n data: \"\"\n};\nexport var tylIconAudioVideoOff = {\n name: 'audio_video_off',\n data: \"\"\n};\nexport var tylIconAudioVideo = {\n name: 'audio_video',\n data: \"\"\n};\nexport var tylIconAugmentedReality = {\n name: 'augmented_reality',\n data: \"\"\n};\nexport var tylIconAutoDownload = {\n name: 'auto_download',\n data: \"\"\n};\nexport var tylIconAutoFix = {\n name: 'auto_fix',\n data: \"\"\n};\nexport var tylIconAutoUpload = {\n name: 'auto_upload',\n data: \"\"\n};\nexport var tylIconAutorenew = {\n name: 'autorenew',\n data: \"\"\n};\nexport var tylIconAvTimer = {\n name: 'av_timer',\n data: \"\"\n};\nexport var tylIconAws = {\n name: 'aws',\n data: \"\"\n};\nexport var tylIconAxe = {\n name: 'axe',\n data: \"\"\n};\nexport var tylIconAxisArrowInfo = {\n name: 'axis_arrow_info',\n data: \"\"\n};\nexport var tylIconAxisArrowLock = {\n name: 'axis_arrow_lock',\n data: \"\"\n};\nexport var tylIconAxisArrow = {\n name: 'axis_arrow',\n data: \"\"\n};\nexport var tylIconAxisLock = {\n name: 'axis_lock',\n data: \"\"\n};\nexport var tylIconAxisXArrowLock = {\n name: 'axis_x_arrow_lock',\n data: \"\"\n};\nexport var tylIconAxisXArrow = {\n name: 'axis_x_arrow',\n data: \"\"\n};\nexport var tylIconAxisXRotateClockwise = {\n name: 'axis_x_rotate_clockwise',\n data: \"\"\n};\nexport var tylIconAxisXRotateCounterclockwise = {\n name: 'axis_x_rotate_counterclockwise',\n data: \"\"\n};\nexport var tylIconAxisXYArrowLock = {\n name: 'axis_x_y_arrow_lock',\n data: \"\"\n};\nexport var tylIconAxisYArrowLock = {\n name: 'axis_y_arrow_lock',\n data: \"\"\n};\nexport var tylIconAxisYArrow = {\n name: 'axis_y_arrow',\n data: \"\"\n};\nexport var tylIconAxisYRotateClockwise = {\n name: 'axis_y_rotate_clockwise',\n data: \"\"\n};\nexport var tylIconAxisYRotateCounterclockwise = {\n name: 'axis_y_rotate_counterclockwise',\n data: \"\"\n};\nexport var tylIconAxisZArrowLock = {\n name: 'axis_z_arrow_lock',\n data: \"\"\n};\nexport var tylIconAxisZArrow = {\n name: 'axis_z_arrow',\n data: \"\"\n};\nexport var tylIconAxisZRotateClockwise = {\n name: 'axis_z_rotate_clockwise',\n data: \"\"\n};\nexport var tylIconAxisZRotateCounterclockwise = {\n name: 'axis_z_rotate_counterclockwise',\n data: \"\"\n};\nexport var tylIconAxis = {\n name: 'axis',\n data: \"\"\n};\nexport var tylIconBabel = {\n name: 'babel',\n data: \"\"\n};\nexport var tylIconBabyBottleOutline = {\n name: 'baby_bottle_outline',\n data: \"\"\n};\nexport var tylIconBabyBottle = {\n name: 'baby_bottle',\n data: \"\"\n};\nexport var tylIconBabyBuggy = {\n name: 'baby_buggy',\n data: \"\"\n};\nexport var tylIconBabyCarriageOff = {\n name: 'baby_carriage_off',\n data: \"\"\n};\nexport var tylIconBabyCarriage = {\n name: 'baby_carriage',\n data: \"\"\n};\nexport var tylIconBabyFaceOutline = {\n name: 'baby_face_outline',\n data: \"\"\n};\nexport var tylIconBabyFace = {\n name: 'baby_face',\n data: \"\"\n};\nexport var tylIconBaby = {\n name: 'baby',\n data: \"\"\n};\nexport var tylIconBackburger = {\n name: 'backburger',\n data: \"\"\n};\nexport var tylIconBackspaceOutline = {\n name: 'backspace_outline',\n data: \"\"\n};\nexport var tylIconBackspaceReverseOutline = {\n name: 'backspace_reverse_outline',\n data: \"\"\n};\nexport var tylIconBackspaceReverse = {\n name: 'backspace_reverse',\n data: \"\"\n};\nexport var tylIconBackspace = {\n name: 'backspace',\n data: \"\"\n};\nexport var tylIconBackupRestore = {\n name: 'backup_restore',\n data: \"\"\n};\nexport var tylIconBacteriaOutline = {\n name: 'bacteria_outline',\n data: \"\"\n};\nexport var tylIconBacteria = {\n name: 'bacteria',\n data: \"\"\n};\nexport var tylIconBadgeAccountAlertOutline = {\n name: 'badge_account_alert_outline',\n data: \"\"\n};\nexport var tylIconBadgeAccountAlert = {\n name: 'badge_account_alert',\n data: \"\"\n};\nexport var tylIconBadgeAccountHorizontalOutline = {\n name: 'badge_account_horizontal_outline',\n data: \"\"\n};\nexport var tylIconBadgeAccountHorizontal = {\n name: 'badge_account_horizontal',\n data: \"\"\n};\nexport var tylIconBadgeAccountOutline = {\n name: 'badge_account_outline',\n data: \"\"\n};\nexport var tylIconBadgeAccount = {\n name: 'badge_account',\n data: \"\"\n};\nexport var tylIconBadminton = {\n name: 'badminton',\n data: \"\"\n};\nexport var tylIconBagCarryOnCheck = {\n name: 'bag_carry_on_check',\n data: \"\"\n};\nexport var tylIconBagCarryOnOff = {\n name: 'bag_carry_on_off',\n data: \"\"\n};\nexport var tylIconBagCarryOn = {\n name: 'bag_carry_on',\n data: \"\"\n};\nexport var tylIconBagChecked = {\n name: 'bag_checked',\n data: \"\"\n};\nexport var tylIconBagPersonalOffOutline = {\n name: 'bag_personal_off_outline',\n data: \"\"\n};\nexport var tylIconBagPersonalOff = {\n name: 'bag_personal_off',\n data: \"\"\n};\nexport var tylIconBagPersonalOutline = {\n name: 'bag_personal_outline',\n data: \"\"\n};\nexport var tylIconBagPersonal = {\n name: 'bag_personal',\n data: \"\"\n};\nexport var tylIconBagSuitcaseOffOutline = {\n name: 'bag_suitcase_off_outline',\n data: \"\"\n};\nexport var tylIconBagSuitcaseOff = {\n name: 'bag_suitcase_off',\n data: \"\"\n};\nexport var tylIconBagSuitcaseOutline = {\n name: 'bag_suitcase_outline',\n data: \"\"\n};\nexport var tylIconBagSuitcase = {\n name: 'bag_suitcase',\n data: \"\"\n};\nexport var tylIconBaguette = {\n name: 'baguette',\n data: \"\"\n};\nexport var tylIconBalloon = {\n name: 'balloon',\n data: \"\"\n};\nexport var tylIconBallotOutline = {\n name: 'ballot_outline',\n data: \"\"\n};\nexport var tylIconBallotRecountOutline = {\n name: 'ballot_recount_outline',\n data: \"\"\n};\nexport var tylIconBallotRecount = {\n name: 'ballot_recount',\n data: \"\"\n};\nexport var tylIconBallot = {\n name: 'ballot',\n data: \"\"\n};\nexport var tylIconBandage = {\n name: 'bandage',\n data: \"\"\n};\nexport var tylIconBandcamp = {\n name: 'bandcamp',\n data: \"\"\n};\nexport var tylIconBankCheck = {\n name: 'bank_check',\n data: \"\"\n};\nexport var tylIconBankMinus = {\n name: 'bank_minus',\n data: \"\"\n};\nexport var tylIconBankOffOutline = {\n name: 'bank_off_outline',\n data: \"\"\n};\nexport var tylIconBankOff = {\n name: 'bank_off',\n data: \"\"\n};\nexport var tylIconBankOutline = {\n name: 'bank_outline',\n data: \"\"\n};\nexport var tylIconBankPlus = {\n name: 'bank_plus',\n data: \"\"\n};\nexport var tylIconBankRemove = {\n name: 'bank_remove',\n data: \"\"\n};\nexport var tylIconBankTransferIn = {\n name: 'bank_transfer_in',\n data: \"\"\n};\nexport var tylIconBankTransferOut = {\n name: 'bank_transfer_out',\n data: \"\"\n};\nexport var tylIconBankTransfer = {\n name: 'bank_transfer',\n data: \"\"\n};\nexport var tylIconBank = {\n name: 'bank',\n data: \"\"\n};\nexport var tylIconBarcodeOff = {\n name: 'barcode_off',\n data: \"\"\n};\nexport var tylIconBarcodeScan = {\n name: 'barcode_scan',\n data: \"\"\n};\nexport var tylIconBarcode = {\n name: 'barcode',\n data: \"\"\n};\nexport var tylIconBarleyOff = {\n name: 'barley_off',\n data: \"\"\n};\nexport var tylIconBarley = {\n name: 'barley',\n data: \"\"\n};\nexport var tylIconBarn = {\n name: 'barn',\n data: \"\"\n};\nexport var tylIconBarrel = {\n name: 'barrel',\n data: \"\"\n};\nexport var tylIconBaseballBat = {\n name: 'baseball_bat',\n data: \"\"\n};\nexport var tylIconBaseballDiamondOutline = {\n name: 'baseball_diamond_outline',\n data: \"\"\n};\nexport var tylIconBaseballDiamond = {\n name: 'baseball_diamond',\n data: \"\"\n};\nexport var tylIconBaseball = {\n name: 'baseball',\n data: \"\"\n};\nexport var tylIconBash = {\n name: 'bash',\n data: \"\"\n};\nexport var tylIconBasketFill = {\n name: 'basket_fill',\n data: \"\"\n};\nexport var tylIconBasketMinusOutline = {\n name: 'basket_minus_outline',\n data: \"\"\n};\nexport var tylIconBasketMinus = {\n name: 'basket_minus',\n data: \"\"\n};\nexport var tylIconBasketOffOutline = {\n name: 'basket_off_outline',\n data: \"\"\n};\nexport var tylIconBasketOff = {\n name: 'basket_off',\n data: \"\"\n};\nexport var tylIconBasketOutline = {\n name: 'basket_outline',\n data: \"\"\n};\nexport var tylIconBasketPlusOutline = {\n name: 'basket_plus_outline',\n data: \"\"\n};\nexport var tylIconBasketPlus = {\n name: 'basket_plus',\n data: \"\"\n};\nexport var tylIconBasketRemoveOutline = {\n name: 'basket_remove_outline',\n data: \"\"\n};\nexport var tylIconBasketRemove = {\n name: 'basket_remove',\n data: \"\"\n};\nexport var tylIconBasketUnfill = {\n name: 'basket_unfill',\n data: \"\"\n};\nexport var tylIconBasket = {\n name: 'basket',\n data: \"\"\n};\nexport var tylIconBasketballHoopOutline = {\n name: 'basketball_hoop_outline',\n data: \"\"\n};\nexport var tylIconBasketballHoop = {\n name: 'basketball_hoop',\n data: \"\"\n};\nexport var tylIconBasketball = {\n name: 'basketball',\n data: \"\"\n};\nexport var tylIconBat = {\n name: 'bat',\n data: \"\"\n};\nexport var tylIconBattery10Bluetooth = {\n name: 'battery_10_bluetooth',\n data: \"\"\n};\nexport var tylIconBattery10 = {\n name: 'battery_10',\n data: \"\"\n};\nexport var tylIconBattery20Bluetooth = {\n name: 'battery_20_bluetooth',\n data: \"\"\n};\nexport var tylIconBattery20 = {\n name: 'battery_20',\n data: \"\"\n};\nexport var tylIconBattery30Bluetooth = {\n name: 'battery_30_bluetooth',\n data: \"\"\n};\nexport var tylIconBattery30 = {\n name: 'battery_30',\n data: \"\"\n};\nexport var tylIconBattery40Bluetooth = {\n name: 'battery_40_bluetooth',\n data: \"\"\n};\nexport var tylIconBattery40 = {\n name: 'battery_40',\n data: \"\"\n};\nexport var tylIconBattery50Bluetooth = {\n name: 'battery_50_bluetooth',\n data: \"\"\n};\nexport var tylIconBattery50 = {\n name: 'battery_50',\n data: \"\"\n};\nexport var tylIconBattery60Bluetooth = {\n name: 'battery_60_bluetooth',\n data: \"\"\n};\nexport var tylIconBattery60 = {\n name: 'battery_60',\n data: \"\"\n};\nexport var tylIconBattery70Bluetooth = {\n name: 'battery_70_bluetooth',\n data: \"\"\n};\nexport var tylIconBattery70 = {\n name: 'battery_70',\n data: \"\"\n};\nexport var tylIconBattery80Bluetooth = {\n name: 'battery_80_bluetooth',\n data: \"\"\n};\nexport var tylIconBattery80 = {\n name: 'battery_80',\n data: \"\"\n};\nexport var tylIconBattery90Bluetooth = {\n name: 'battery_90_bluetooth',\n data: \"\"\n};\nexport var tylIconBattery90 = {\n name: 'battery_90',\n data: \"\"\n};\nexport var tylIconBatteryAlertBluetooth = {\n name: 'battery_alert_bluetooth',\n data: \"\"\n};\nexport var tylIconBatteryAlertVariantOutline = {\n name: 'battery_alert_variant_outline',\n data: \"\"\n};\nexport var tylIconBatteryAlertVariant = {\n name: 'battery_alert_variant',\n data: \"\"\n};\nexport var tylIconBatteryAlert = {\n name: 'battery_alert',\n data: \"\"\n};\nexport var tylIconBatteryBluetoothVariant = {\n name: 'battery_bluetooth_variant',\n data: \"\"\n};\nexport var tylIconBatteryBluetooth = {\n name: 'battery_bluetooth',\n data: \"\"\n};\nexport var tylIconBatteryCharging10 = {\n name: 'battery_charging_10',\n data: \"\"\n};\nexport var tylIconBatteryCharging100 = {\n name: 'battery_charging_100',\n data: \"\"\n};\nexport var tylIconBatteryCharging20 = {\n name: 'battery_charging_20',\n data: \"\"\n};\nexport var tylIconBatteryCharging30 = {\n name: 'battery_charging_30',\n data: \"\"\n};\nexport var tylIconBatteryCharging40 = {\n name: 'battery_charging_40',\n data: \"\"\n};\nexport var tylIconBatteryCharging50 = {\n name: 'battery_charging_50',\n data: \"\"\n};\nexport var tylIconBatteryCharging60 = {\n name: 'battery_charging_60',\n data: \"\"\n};\nexport var tylIconBatteryCharging70 = {\n name: 'battery_charging_70',\n data: \"\"\n};\nexport var tylIconBatteryCharging80 = {\n name: 'battery_charging_80',\n data: \"\"\n};\nexport var tylIconBatteryCharging90 = {\n name: 'battery_charging_90',\n data: \"\"\n};\nexport var tylIconBatteryChargingHigh = {\n name: 'battery_charging_high',\n data: \"\"\n};\nexport var tylIconBatteryChargingLow = {\n name: 'battery_charging_low',\n data: \"\"\n};\nexport var tylIconBatteryChargingMedium = {\n name: 'battery_charging_medium',\n data: \"\"\n};\nexport var tylIconBatteryChargingOutline = {\n name: 'battery_charging_outline',\n data: \"\"\n};\nexport var tylIconBatteryChargingWireless10 = {\n name: 'battery_charging_wireless_10',\n data: \"\"\n};\nexport var tylIconBatteryChargingWireless20 = {\n name: 'battery_charging_wireless_20',\n data: \"\"\n};\nexport var tylIconBatteryChargingWireless30 = {\n name: 'battery_charging_wireless_30',\n data: \"\"\n};\nexport var tylIconBatteryChargingWireless40 = {\n name: 'battery_charging_wireless_40',\n data: \"\"\n};\nexport var tylIconBatteryChargingWireless50 = {\n name: 'battery_charging_wireless_50',\n data: \"\"\n};\nexport var tylIconBatteryChargingWireless60 = {\n name: 'battery_charging_wireless_60',\n data: \"\"\n};\nexport var tylIconBatteryChargingWireless70 = {\n name: 'battery_charging_wireless_70',\n data: \"\"\n};\nexport var tylIconBatteryChargingWireless80 = {\n name: 'battery_charging_wireless_80',\n data: \"\"\n};\nexport var tylIconBatteryChargingWireless90 = {\n name: 'battery_charging_wireless_90',\n data: \"\"\n};\nexport var tylIconBatteryChargingWirelessAlert = {\n name: 'battery_charging_wireless_alert',\n data: \"\"\n};\nexport var tylIconBatteryChargingWirelessOutline = {\n name: 'battery_charging_wireless_outline',\n data: \"\"\n};\nexport var tylIconBatteryChargingWireless = {\n name: 'battery_charging_wireless',\n data: \"\"\n};\nexport var tylIconBatteryCharging = {\n name: 'battery_charging',\n data: \"\"\n};\nexport var tylIconBatteryHeartOutline = {\n name: 'battery_heart_outline',\n data: \"\"\n};\nexport var tylIconBatteryHeartVariant = {\n name: 'battery_heart_variant',\n data: \"\"\n};\nexport var tylIconBatteryHeart = {\n name: 'battery_heart',\n data: \"\"\n};\nexport var tylIconBatteryHigh = {\n name: 'battery_high',\n data: \"\"\n};\nexport var tylIconBatteryLow = {\n name: 'battery_low',\n data: \"\"\n};\nexport var tylIconBatteryMedium = {\n name: 'battery_medium',\n data: \"\"\n};\nexport var tylIconBatteryMinus = {\n name: 'battery_minus',\n data: \"\"\n};\nexport var tylIconBatteryNegative = {\n name: 'battery_negative',\n data: \"\"\n};\nexport var tylIconBatteryOffOutline = {\n name: 'battery_off_outline',\n data: \"\"\n};\nexport var tylIconBatteryOff = {\n name: 'battery_off',\n data: \"\"\n};\nexport var tylIconBatteryOutline = {\n name: 'battery_outline',\n data: \"\"\n};\nexport var tylIconBatteryPlus = {\n name: 'battery_plus',\n data: \"\"\n};\nexport var tylIconBatteryPositive = {\n name: 'battery_positive',\n data: \"\"\n};\nexport var tylIconBatteryUnknownBluetooth = {\n name: 'battery_unknown_bluetooth',\n data: \"\"\n};\nexport var tylIconBatteryUnknown = {\n name: 'battery_unknown',\n data: \"\"\n};\nexport var tylIconBattery = {\n name: 'battery',\n data: \"\"\n};\nexport var tylIconBattlenet = {\n name: 'battlenet',\n data: \"\"\n};\nexport var tylIconBeach = {\n name: 'beach',\n data: \"\"\n};\nexport var tylIconBeakerAlertOutline = {\n name: 'beaker_alert_outline',\n data: \"\"\n};\nexport var tylIconBeakerAlert = {\n name: 'beaker_alert',\n data: \"\"\n};\nexport var tylIconBeakerCheckOutline = {\n name: 'beaker_check_outline',\n data: \"\"\n};\nexport var tylIconBeakerCheck = {\n name: 'beaker_check',\n data: \"\"\n};\nexport var tylIconBeakerMinusOutline = {\n name: 'beaker_minus_outline',\n data: \"\"\n};\nexport var tylIconBeakerMinus = {\n name: 'beaker_minus',\n data: \"\"\n};\nexport var tylIconBeakerOutline = {\n name: 'beaker_outline',\n data: \"\"\n};\nexport var tylIconBeakerPlusOutline = {\n name: 'beaker_plus_outline',\n data: \"\"\n};\nexport var tylIconBeakerPlus = {\n name: 'beaker_plus',\n data: \"\"\n};\nexport var tylIconBeakerQuestionOutline = {\n name: 'beaker_question_outline',\n data: \"\"\n};\nexport var tylIconBeakerQuestion = {\n name: 'beaker_question',\n data: \"\"\n};\nexport var tylIconBeakerRemoveOutline = {\n name: 'beaker_remove_outline',\n data: \"\"\n};\nexport var tylIconBeakerRemove = {\n name: 'beaker_remove',\n data: \"\"\n};\nexport var tylIconBeaker = {\n name: 'beaker',\n data: \"\"\n};\nexport var tylIconBedDoubleOutline = {\n name: 'bed_double_outline',\n data: \"\"\n};\nexport var tylIconBedDouble = {\n name: 'bed_double',\n data: \"\"\n};\nexport var tylIconBedEmpty = {\n name: 'bed_empty',\n data: \"\"\n};\nexport var tylIconBedKingOutline = {\n name: 'bed_king_outline',\n data: \"\"\n};\nexport var tylIconBedKing = {\n name: 'bed_king',\n data: \"\"\n};\nexport var tylIconBedOutline = {\n name: 'bed_outline',\n data: \"\"\n};\nexport var tylIconBedQueenOutline = {\n name: 'bed_queen_outline',\n data: \"\"\n};\nexport var tylIconBedQueen = {\n name: 'bed_queen',\n data: \"\"\n};\nexport var tylIconBedSingleOutline = {\n name: 'bed_single_outline',\n data: \"\"\n};\nexport var tylIconBedSingle = {\n name: 'bed_single',\n data: \"\"\n};\nexport var tylIconBed = {\n name: 'bed',\n data: \"\"\n};\nexport var tylIconBeeFlower = {\n name: 'bee_flower',\n data: \"\"\n};\nexport var tylIconBee = {\n name: 'bee',\n data: \"\"\n};\nexport var tylIconBeehiveOffOutline = {\n name: 'beehive_off_outline',\n data: \"\"\n};\nexport var tylIconBeehiveOutline = {\n name: 'beehive_outline',\n data: \"\"\n};\nexport var tylIconBeekeeper = {\n name: 'beekeeper',\n data: \"\"\n};\nexport var tylIconBeerOutline = {\n name: 'beer_outline',\n data: \"\"\n};\nexport var tylIconBeer = {\n name: 'beer',\n data: \"\"\n};\nexport var tylIconBellAlertOutline = {\n name: 'bell_alert_outline',\n data: \"\"\n};\nexport var tylIconBellAlert = {\n name: 'bell_alert',\n data: \"\"\n};\nexport var tylIconBellCancelOutline = {\n name: 'bell_cancel_outline',\n data: \"\"\n};\nexport var tylIconBellCancel = {\n name: 'bell_cancel',\n data: \"\"\n};\nexport var tylIconBellCheckOutline = {\n name: 'bell_check_outline',\n data: \"\"\n};\nexport var tylIconBellCheck = {\n name: 'bell_check',\n data: \"\"\n};\nexport var tylIconBellCircleOutline = {\n name: 'bell_circle_outline',\n data: \"\"\n};\nexport var tylIconBellCircle = {\n name: 'bell_circle',\n data: \"\"\n};\nexport var tylIconBellMinusOutline = {\n name: 'bell_minus_outline',\n data: \"\"\n};\nexport var tylIconBellMinus = {\n name: 'bell_minus',\n data: \"\"\n};\nexport var tylIconBellOffOutline = {\n name: 'bell_off_outline',\n data: \"\"\n};\nexport var tylIconBellOff = {\n name: 'bell_off',\n data: \"\"\n};\nexport var tylIconBellOutline = {\n name: 'bell_outline',\n data: \"\"\n};\nexport var tylIconBellPlusOutline = {\n name: 'bell_plus_outline',\n data: \"\"\n};\nexport var tylIconBellPlus = {\n name: 'bell_plus',\n data: \"\"\n};\nexport var tylIconBellRemoveOutline = {\n name: 'bell_remove_outline',\n data: \"\"\n};\nexport var tylIconBellRemove = {\n name: 'bell_remove',\n data: \"\"\n};\nexport var tylIconBellRingOutline = {\n name: 'bell_ring_outline',\n data: \"\"\n};\nexport var tylIconBellRing = {\n name: 'bell_ring',\n data: \"\"\n};\nexport var tylIconBellSleepOutline = {\n name: 'bell_sleep_outline',\n data: \"\"\n};\nexport var tylIconBellSleep = {\n name: 'bell_sleep',\n data: \"\"\n};\nexport var tylIconBell = {\n name: 'bell',\n data: \"\"\n};\nexport var tylIconBeta = {\n name: 'beta',\n data: \"\"\n};\nexport var tylIconBetamax = {\n name: 'betamax',\n data: \"\"\n};\nexport var tylIconBiathlon = {\n name: 'biathlon',\n data: \"\"\n};\nexport var tylIconBicycleBasket = {\n name: 'bicycle_basket',\n data: \"\"\n};\nexport var tylIconBicycleElectric = {\n name: 'bicycle_electric',\n data: \"\"\n};\nexport var tylIconBicyclePennyFarthing = {\n name: 'bicycle_penny_farthing',\n data: \"\"\n};\nexport var tylIconBicycle = {\n name: 'bicycle',\n data: \"\"\n};\nexport var tylIconBikeFast = {\n name: 'bike_fast',\n data: \"\"\n};\nexport var tylIconBike = {\n name: 'bike',\n data: \"\"\n};\nexport var tylIconBillboard = {\n name: 'billboard',\n data: \"\"\n};\nexport var tylIconBilliardsRack = {\n name: 'billiards_rack',\n data: \"\"\n};\nexport var tylIconBilliards = {\n name: 'billiards',\n data: \"\"\n};\nexport var tylIconBinoculars = {\n name: 'binoculars',\n data: \"\"\n};\nexport var tylIconBio = {\n name: 'bio',\n data: \"\"\n};\nexport var tylIconBiohazard = {\n name: 'biohazard',\n data: \"\"\n};\nexport var tylIconBird = {\n name: 'bird',\n data: \"\"\n};\nexport var tylIconBitbucket = {\n name: 'bitbucket',\n data: \"\"\n};\nexport var tylIconBitcoin = {\n name: 'bitcoin',\n data: \"\"\n};\nexport var tylIconBlackMesa = {\n name: 'black_mesa',\n data: \"\"\n};\nexport var tylIconBlenderSoftware = {\n name: 'blender_software',\n data: \"\"\n};\nexport var tylIconBlender = {\n name: 'blender',\n data: \"\"\n};\nexport var tylIconBlindsOpen = {\n name: 'blinds_open',\n data: \"\"\n};\nexport var tylIconBlinds = {\n name: 'blinds',\n data: \"\"\n};\nexport var tylIconBlockHelper = {\n name: 'block_helper',\n data: \"\"\n};\nexport var tylIconBlogger = {\n name: 'blogger',\n data: \"\"\n};\nexport var tylIconBloodBag = {\n name: 'blood_bag',\n data: \"\"\n};\nexport var tylIconBluetoothAudio = {\n name: 'bluetooth_audio',\n data: \"\"\n};\nexport var tylIconBluetoothConnect = {\n name: 'bluetooth_connect',\n data: \"\"\n};\nexport var tylIconBluetoothOff = {\n name: 'bluetooth_off',\n data: \"\"\n};\nexport var tylIconBluetoothSettings = {\n name: 'bluetooth_settings',\n data: \"\"\n};\nexport var tylIconBluetoothTransfer = {\n name: 'bluetooth_transfer',\n data: \"\"\n};\nexport var tylIconBluetooth = {\n name: 'bluetooth',\n data: \"\"\n};\nexport var tylIconBlurLinear = {\n name: 'blur_linear',\n data: \"\"\n};\nexport var tylIconBlurOff = {\n name: 'blur_off',\n data: \"\"\n};\nexport var tylIconBlurRadial = {\n name: 'blur_radial',\n data: \"\"\n};\nexport var tylIconBlur = {\n name: 'blur',\n data: \"\"\n};\nexport var tylIconBolnisiCross = {\n name: 'bolnisi_cross',\n data: \"\"\n};\nexport var tylIconBolt = {\n name: 'bolt',\n data: \"\"\n};\nexport var tylIconBombOff = {\n name: 'bomb_off',\n data: \"\"\n};\nexport var tylIconBomb = {\n name: 'bomb',\n data: \"\"\n};\nexport var tylIconBone = {\n name: 'bone',\n data: \"\"\n};\nexport var tylIconBookAccountOutline = {\n name: 'book_account_outline',\n data: \"\"\n};\nexport var tylIconBookAccount = {\n name: 'book_account',\n data: \"\"\n};\nexport var tylIconBookAlertOutline = {\n name: 'book_alert_outline',\n data: \"\"\n};\nexport var tylIconBookAlert = {\n name: 'book_alert',\n data: \"\"\n};\nexport var tylIconBookAlphabet = {\n name: 'book_alphabet',\n data: \"\"\n};\nexport var tylIconBookArrowDownOutline = {\n name: 'book_arrow_down_outline',\n data: \"\"\n};\nexport var tylIconBookArrowDown = {\n name: 'book_arrow_down',\n data: \"\"\n};\nexport var tylIconBookArrowLeftOutline = {\n name: 'book_arrow_left_outline',\n data: \"\"\n};\nexport var tylIconBookArrowLeft = {\n name: 'book_arrow_left',\n data: \"\"\n};\nexport var tylIconBookArrowRightOutline = {\n name: 'book_arrow_right_outline',\n data: \"\"\n};\nexport var tylIconBookArrowRight = {\n name: 'book_arrow_right',\n data: \"\"\n};\nexport var tylIconBookArrowUpOutline = {\n name: 'book_arrow_up_outline',\n data: \"\"\n};\nexport var tylIconBookArrowUp = {\n name: 'book_arrow_up',\n data: \"\"\n};\nexport var tylIconBookCancelOutline = {\n name: 'book_cancel_outline',\n data: \"\"\n};\nexport var tylIconBookCancel = {\n name: 'book_cancel',\n data: \"\"\n};\nexport var tylIconBookCheckOutline = {\n name: 'book_check_outline',\n data: \"\"\n};\nexport var tylIconBookCheck = {\n name: 'book_check',\n data: \"\"\n};\nexport var tylIconBookClockOutline = {\n name: 'book_clock_outline',\n data: \"\"\n};\nexport var tylIconBookClock = {\n name: 'book_clock',\n data: \"\"\n};\nexport var tylIconBookCogOutline = {\n name: 'book_cog_outline',\n data: \"\"\n};\nexport var tylIconBookCog = {\n name: 'book_cog',\n data: \"\"\n};\nexport var tylIconBookCross = {\n name: 'book_cross',\n data: \"\"\n};\nexport var tylIconBookEditOutline = {\n name: 'book_edit_outline',\n data: \"\"\n};\nexport var tylIconBookEdit = {\n name: 'book_edit',\n data: \"\"\n};\nexport var tylIconBookEducationOutline = {\n name: 'book_education_outline',\n data: \"\"\n};\nexport var tylIconBookEducation = {\n name: 'book_education',\n data: \"\"\n};\nexport var tylIconBookInformationVariant = {\n name: 'book_information_variant',\n data: \"\"\n};\nexport var tylIconBookLockOpenOutline = {\n name: 'book_lock_open_outline',\n data: \"\"\n};\nexport var tylIconBookLockOpen = {\n name: 'book_lock_open',\n data: \"\"\n};\nexport var tylIconBookLockOutline = {\n name: 'book_lock_outline',\n data: \"\"\n};\nexport var tylIconBookLock = {\n name: 'book_lock',\n data: \"\"\n};\nexport var tylIconBookMarkerOutline = {\n name: 'book_marker_outline',\n data: \"\"\n};\nexport var tylIconBookMarker = {\n name: 'book_marker',\n data: \"\"\n};\nexport var tylIconBookMinusMultipleOutline = {\n name: 'book_minus_multiple_outline',\n data: \"\"\n};\nexport var tylIconBookMinusMultiple = {\n name: 'book_minus_multiple',\n data: \"\"\n};\nexport var tylIconBookMinusOutline = {\n name: 'book_minus_outline',\n data: \"\"\n};\nexport var tylIconBookMinus = {\n name: 'book_minus',\n data: \"\"\n};\nexport var tylIconBookMultipleOutline = {\n name: 'book_multiple_outline',\n data: \"\"\n};\nexport var tylIconBookMultiple = {\n name: 'book_multiple',\n data: \"\"\n};\nexport var tylIconBookMusicOutline = {\n name: 'book_music_outline',\n data: \"\"\n};\nexport var tylIconBookMusic = {\n name: 'book_music',\n data: \"\"\n};\nexport var tylIconBookOffOutline = {\n name: 'book_off_outline',\n data: \"\"\n};\nexport var tylIconBookOff = {\n name: 'book_off',\n data: \"\"\n};\nexport var tylIconBookOpenBlankVariant = {\n name: 'book_open_blank_variant',\n data: \"\"\n};\nexport var tylIconBookOpenOutline = {\n name: 'book_open_outline',\n data: \"\"\n};\nexport var tylIconBookOpenPageVariantOutline = {\n name: 'book_open_page_variant_outline',\n data: \"\"\n};\nexport var tylIconBookOpenPageVariant = {\n name: 'book_open_page_variant',\n data: \"\"\n};\nexport var tylIconBookOpenVariant = {\n name: 'book_open_variant',\n data: \"\"\n};\nexport var tylIconBookOpen = {\n name: 'book_open',\n data: \"\"\n};\nexport var tylIconBookOutline = {\n name: 'book_outline',\n data: \"\"\n};\nexport var tylIconBookPlayOutline = {\n name: 'book_play_outline',\n data: \"\"\n};\nexport var tylIconBookPlay = {\n name: 'book_play',\n data: \"\"\n};\nexport var tylIconBookPlusMultipleOutline = {\n name: 'book_plus_multiple_outline',\n data: \"\"\n};\nexport var tylIconBookPlusMultiple = {\n name: 'book_plus_multiple',\n data: \"\"\n};\nexport var tylIconBookPlusOutline = {\n name: 'book_plus_outline',\n data: \"\"\n};\nexport var tylIconBookPlus = {\n name: 'book_plus',\n data: \"\"\n};\nexport var tylIconBookRefreshOutline = {\n name: 'book_refresh_outline',\n data: \"\"\n};\nexport var tylIconBookRefresh = {\n name: 'book_refresh',\n data: \"\"\n};\nexport var tylIconBookRemoveMultipleOutline = {\n name: 'book_remove_multiple_outline',\n data: \"\"\n};\nexport var tylIconBookRemoveMultiple = {\n name: 'book_remove_multiple',\n data: \"\"\n};\nexport var tylIconBookRemoveOutline = {\n name: 'book_remove_outline',\n data: \"\"\n};\nexport var tylIconBookRemove = {\n name: 'book_remove',\n data: \"\"\n};\nexport var tylIconBookSearchOutline = {\n name: 'book_search_outline',\n data: \"\"\n};\nexport var tylIconBookSearch = {\n name: 'book_search',\n data: \"\"\n};\nexport var tylIconBookSettingsOutline = {\n name: 'book_settings_outline',\n data: \"\"\n};\nexport var tylIconBookSettings = {\n name: 'book_settings',\n data: \"\"\n};\nexport var tylIconBookSyncOutline = {\n name: 'book_sync_outline',\n data: \"\"\n};\nexport var tylIconBookSync = {\n name: 'book_sync',\n data: \"\"\n};\nexport var tylIconBookVariantMultiple = {\n name: 'book_variant_multiple',\n data: \"\"\n};\nexport var tylIconBookVariant = {\n name: 'book_variant',\n data: \"\"\n};\nexport var tylIconBook = {\n name: 'book',\n data: \"\"\n};\nexport var tylIconBookmarkCheckOutline = {\n name: 'bookmark_check_outline',\n data: \"\"\n};\nexport var tylIconBookmarkCheck = {\n name: 'bookmark_check',\n data: \"\"\n};\nexport var tylIconBookmarkMinusOutline = {\n name: 'bookmark_minus_outline',\n data: \"\"\n};\nexport var tylIconBookmarkMinus = {\n name: 'bookmark_minus',\n data: \"\"\n};\nexport var tylIconBookmarkMultipleOutline = {\n name: 'bookmark_multiple_outline',\n data: \"\"\n};\nexport var tylIconBookmarkMultiple = {\n name: 'bookmark_multiple',\n data: \"\"\n};\nexport var tylIconBookmarkMusicOutline = {\n name: 'bookmark_music_outline',\n data: \"\"\n};\nexport var tylIconBookmarkMusic = {\n name: 'bookmark_music',\n data: \"\"\n};\nexport var tylIconBookmarkOffOutline = {\n name: 'bookmark_off_outline',\n data: \"\"\n};\nexport var tylIconBookmarkOff = {\n name: 'bookmark_off',\n data: \"\"\n};\nexport var tylIconBookmarkOutline = {\n name: 'bookmark_outline',\n data: \"\"\n};\nexport var tylIconBookmarkPlusOutline = {\n name: 'bookmark_plus_outline',\n data: \"\"\n};\nexport var tylIconBookmarkPlus = {\n name: 'bookmark_plus',\n data: \"\"\n};\nexport var tylIconBookmarkRemoveOutline = {\n name: 'bookmark_remove_outline',\n data: \"\"\n};\nexport var tylIconBookmarkRemove = {\n name: 'bookmark_remove',\n data: \"\"\n};\nexport var tylIconBookmark = {\n name: 'bookmark',\n data: \"\"\n};\nexport var tylIconBookshelf = {\n name: 'bookshelf',\n data: \"\"\n};\nexport var tylIconBoomGateAlertOutline = {\n name: 'boom_gate_alert_outline',\n data: \"\"\n};\nexport var tylIconBoomGateAlert = {\n name: 'boom_gate_alert',\n data: \"\"\n};\nexport var tylIconBoomGateDownOutline = {\n name: 'boom_gate_down_outline',\n data: \"\"\n};\nexport var tylIconBoomGateDown = {\n name: 'boom_gate_down',\n data: \"\"\n};\nexport var tylIconBoomGateOutline = {\n name: 'boom_gate_outline',\n data: \"\"\n};\nexport var tylIconBoomGateUpOutline = {\n name: 'boom_gate_up_outline',\n data: \"\"\n};\nexport var tylIconBoomGateUp = {\n name: 'boom_gate_up',\n data: \"\"\n};\nexport var tylIconBoomGate = {\n name: 'boom_gate',\n data: \"\"\n};\nexport var tylIconBoombox = {\n name: 'boombox',\n data: \"\"\n};\nexport var tylIconBoomerang = {\n name: 'boomerang',\n data: \"\"\n};\nexport var tylIconBootstrap = {\n name: 'bootstrap',\n data: \"\"\n};\nexport var tylIconBorderAllVariant = {\n name: 'border_all_variant',\n data: \"\"\n};\nexport var tylIconBorderAll = {\n name: 'border_all',\n data: \"\"\n};\nexport var tylIconBorderBottomVariant = {\n name: 'border_bottom_variant',\n data: \"\"\n};\nexport var tylIconBorderBottom = {\n name: 'border_bottom',\n data: \"\"\n};\nexport var tylIconBorderColor = {\n name: 'border_color',\n data: \"\"\n};\nexport var tylIconBorderHorizontal = {\n name: 'border_horizontal',\n data: \"\"\n};\nexport var tylIconBorderInside = {\n name: 'border_inside',\n data: \"\"\n};\nexport var tylIconBorderLeftVariant = {\n name: 'border_left_variant',\n data: \"\"\n};\nexport var tylIconBorderLeft = {\n name: 'border_left',\n data: \"\"\n};\nexport var tylIconBorderNoneVariant = {\n name: 'border_none_variant',\n data: \"\"\n};\nexport var tylIconBorderNone = {\n name: 'border_none',\n data: \"\"\n};\nexport var tylIconBorderOutside = {\n name: 'border_outside',\n data: \"\"\n};\nexport var tylIconBorderRightVariant = {\n name: 'border_right_variant',\n data: \"\"\n};\nexport var tylIconBorderRight = {\n name: 'border_right',\n data: \"\"\n};\nexport var tylIconBorderStyle = {\n name: 'border_style',\n data: \"\"\n};\nexport var tylIconBorderTopVariant = {\n name: 'border_top_variant',\n data: \"\"\n};\nexport var tylIconBorderTop = {\n name: 'border_top',\n data: \"\"\n};\nexport var tylIconBorderVertical = {\n name: 'border_vertical',\n data: \"\"\n};\nexport var tylIconBottleSodaClassicOutline = {\n name: 'bottle_soda_classic_outline',\n data: \"\"\n};\nexport var tylIconBottleSodaClassic = {\n name: 'bottle_soda_classic',\n data: \"\"\n};\nexport var tylIconBottleSodaOutline = {\n name: 'bottle_soda_outline',\n data: \"\"\n};\nexport var tylIconBottleSoda = {\n name: 'bottle_soda',\n data: \"\"\n};\nexport var tylIconBottleTonicOutline = {\n name: 'bottle_tonic_outline',\n data: \"\"\n};\nexport var tylIconBottleTonicPlusOutline = {\n name: 'bottle_tonic_plus_outline',\n data: \"\"\n};\nexport var tylIconBottleTonicPlus = {\n name: 'bottle_tonic_plus',\n data: \"\"\n};\nexport var tylIconBottleTonicSkullOutline = {\n name: 'bottle_tonic_skull_outline',\n data: \"\"\n};\nexport var tylIconBottleTonicSkull = {\n name: 'bottle_tonic_skull',\n data: \"\"\n};\nexport var tylIconBottleTonic = {\n name: 'bottle_tonic',\n data: \"\"\n};\nexport var tylIconBottleWineOutline = {\n name: 'bottle_wine_outline',\n data: \"\"\n};\nexport var tylIconBottleWine = {\n name: 'bottle_wine',\n data: \"\"\n};\nexport var tylIconBowTie = {\n name: 'bow_tie',\n data: \"\"\n};\nexport var tylIconBowlMixOutline = {\n name: 'bowl_mix_outline',\n data: \"\"\n};\nexport var tylIconBowlMix = {\n name: 'bowl_mix',\n data: \"\"\n};\nexport var tylIconBowlOutline = {\n name: 'bowl_outline',\n data: \"\"\n};\nexport var tylIconBowl = {\n name: 'bowl',\n data: \"\"\n};\nexport var tylIconBowling = {\n name: 'bowling',\n data: \"\"\n};\nexport var tylIconBoxCutterOff = {\n name: 'box_cutter_off',\n data: \"\"\n};\nexport var tylIconBoxCutter = {\n name: 'box_cutter',\n data: \"\"\n};\nexport var tylIconBoxShadow = {\n name: 'box_shadow',\n data: \"\"\n};\nexport var tylIconBox = {\n name: 'box',\n data: \"\"\n};\nexport var tylIconBoxingGlove = {\n name: 'boxing_glove',\n data: \"\"\n};\nexport var tylIconBraille = {\n name: 'braille',\n data: \"\"\n};\nexport var tylIconBrain = {\n name: 'brain',\n data: \"\"\n};\nexport var tylIconBreadSliceOutline = {\n name: 'bread_slice_outline',\n data: \"\"\n};\nexport var tylIconBreadSlice = {\n name: 'bread_slice',\n data: \"\"\n};\nexport var tylIconBridge = {\n name: 'bridge',\n data: \"\"\n};\nexport var tylIconBriefcaseAccountOutline = {\n name: 'briefcase_account_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseAccount = {\n name: 'briefcase_account',\n data: \"\"\n};\nexport var tylIconBriefcaseCheckOutline = {\n name: 'briefcase_check_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseCheck = {\n name: 'briefcase_check',\n data: \"\"\n};\nexport var tylIconBriefcaseClockOutline = {\n name: 'briefcase_clock_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseClock = {\n name: 'briefcase_clock',\n data: \"\"\n};\nexport var tylIconBriefcaseDownloadOutline = {\n name: 'briefcase_download_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseDownload = {\n name: 'briefcase_download',\n data: \"\"\n};\nexport var tylIconBriefcaseEditOutline = {\n name: 'briefcase_edit_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseEdit = {\n name: 'briefcase_edit',\n data: \"\"\n};\nexport var tylIconBriefcaseMinusOutline = {\n name: 'briefcase_minus_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseMinus = {\n name: 'briefcase_minus',\n data: \"\"\n};\nexport var tylIconBriefcaseOffOutline = {\n name: 'briefcase_off_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseOff = {\n name: 'briefcase_off',\n data: \"\"\n};\nexport var tylIconBriefcaseOutline = {\n name: 'briefcase_outline',\n data: \"\"\n};\nexport var tylIconBriefcasePlusOutline = {\n name: 'briefcase_plus_outline',\n data: \"\"\n};\nexport var tylIconBriefcasePlus = {\n name: 'briefcase_plus',\n data: \"\"\n};\nexport var tylIconBriefcaseRemoveOutline = {\n name: 'briefcase_remove_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseRemove = {\n name: 'briefcase_remove',\n data: \"\"\n};\nexport var tylIconBriefcaseSearchOutline = {\n name: 'briefcase_search_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseSearch = {\n name: 'briefcase_search',\n data: \"\"\n};\nexport var tylIconBriefcaseUploadOutline = {\n name: 'briefcase_upload_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseUpload = {\n name: 'briefcase_upload',\n data: \"\"\n};\nexport var tylIconBriefcaseVariantOffOutline = {\n name: 'briefcase_variant_off_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseVariantOff = {\n name: 'briefcase_variant_off',\n data: \"\"\n};\nexport var tylIconBriefcaseVariantOutline = {\n name: 'briefcase_variant_outline',\n data: \"\"\n};\nexport var tylIconBriefcaseVariant = {\n name: 'briefcase_variant',\n data: \"\"\n};\nexport var tylIconBriefcase = {\n name: 'briefcase',\n data: \"\"\n};\nexport var tylIconBrightness1 = {\n name: 'brightness_1',\n data: \"\"\n};\nexport var tylIconBrightness2 = {\n name: 'brightness_2',\n data: \"\"\n};\nexport var tylIconBrightness3 = {\n name: 'brightness_3',\n data: \"\"\n};\nexport var tylIconBrightness4 = {\n name: 'brightness_4',\n data: \"\"\n};\nexport var tylIconBrightness5 = {\n name: 'brightness_5',\n data: \"\"\n};\nexport var tylIconBrightness6 = {\n name: 'brightness_6',\n data: \"\"\n};\nexport var tylIconBrightness7 = {\n name: 'brightness_7',\n data: \"\"\n};\nexport var tylIconBrightnessAuto = {\n name: 'brightness_auto',\n data: \"\"\n};\nexport var tylIconBrightnessPercent = {\n name: 'brightness_percent',\n data: \"\"\n};\nexport var tylIconBroom = {\n name: 'broom',\n data: \"\"\n};\nexport var tylIconBrush = {\n name: 'brush',\n data: \"\"\n};\nexport var tylIconBucketOutline = {\n name: 'bucket_outline',\n data: \"\"\n};\nexport var tylIconBucket = {\n name: 'bucket',\n data: \"\"\n};\nexport var tylIconBuddhism = {\n name: 'buddhism',\n data: \"\"\n};\nexport var tylIconBuffer = {\n name: 'buffer',\n data: \"\"\n};\nexport var tylIconBuffet = {\n name: 'buffet',\n data: \"\"\n};\nexport var tylIconBugCheckOutline = {\n name: 'bug_check_outline',\n data: \"\"\n};\nexport var tylIconBugCheck = {\n name: 'bug_check',\n data: \"\"\n};\nexport var tylIconBugOutline = {\n name: 'bug_outline',\n data: \"\"\n};\nexport var tylIconBug = {\n name: 'bug',\n data: \"\"\n};\nexport var tylIconBugle = {\n name: 'bugle',\n data: \"\"\n};\nexport var tylIconBulldozer = {\n name: 'bulldozer',\n data: \"\"\n};\nexport var tylIconBullet = {\n name: 'bullet',\n data: \"\"\n};\nexport var tylIconBulletinBoard = {\n name: 'bulletin_board',\n data: \"\"\n};\nexport var tylIconBullhornOutline = {\n name: 'bullhorn_outline',\n data: \"\"\n};\nexport var tylIconBullhorn = {\n name: 'bullhorn',\n data: \"\"\n};\nexport var tylIconBullseyeArrow = {\n name: 'bullseye_arrow',\n data: \"\"\n};\nexport var tylIconBullseye = {\n name: 'bullseye',\n data: \"\"\n};\nexport var tylIconBulma = {\n name: 'bulma',\n data: \"\"\n};\nexport var tylIconBunkBedOutline = {\n name: 'bunk_bed_outline',\n data: \"\"\n};\nexport var tylIconBunkBed = {\n name: 'bunk_bed',\n data: \"\"\n};\nexport var tylIconBusAlert = {\n name: 'bus_alert',\n data: \"\"\n};\nexport var tylIconBusArticulatedEnd = {\n name: 'bus_articulated_end',\n data: \"\"\n};\nexport var tylIconBusArticulatedFront = {\n name: 'bus_articulated_front',\n data: \"\"\n};\nexport var tylIconBusClock = {\n name: 'bus_clock',\n data: \"\"\n};\nexport var tylIconBusDoubleDecker = {\n name: 'bus_double_decker',\n data: \"\"\n};\nexport var tylIconBusMarker = {\n name: 'bus_marker',\n data: \"\"\n};\nexport var tylIconBusMultiple = {\n name: 'bus_multiple',\n data: \"\"\n};\nexport var tylIconBusSchool = {\n name: 'bus_school',\n data: \"\"\n};\nexport var tylIconBusSide = {\n name: 'bus_side',\n data: \"\"\n};\nexport var tylIconBusStopCovered = {\n name: 'bus_stop_covered',\n data: \"\"\n};\nexport var tylIconBusStopUncovered = {\n name: 'bus_stop_uncovered',\n data: \"\"\n};\nexport var tylIconBusStop = {\n name: 'bus_stop',\n data: \"\"\n};\nexport var tylIconBus = {\n name: 'bus',\n data: \"\"\n};\nexport var tylIconButterflyOutline = {\n name: 'butterfly_outline',\n data: \"\"\n};\nexport var tylIconButterfly = {\n name: 'butterfly',\n data: \"\"\n};\nexport var tylIconCableData = {\n name: 'cable_data',\n data: \"\"\n};\nexport var tylIconCached = {\n name: 'cached',\n data: \"\"\n};\nexport var tylIconCactus = {\n name: 'cactus',\n data: \"\"\n};\nexport var tylIconCakeLayered = {\n name: 'cake_layered',\n data: \"\"\n};\nexport var tylIconCakeVariant = {\n name: 'cake_variant',\n data: \"\"\n};\nexport var tylIconCake = {\n name: 'cake',\n data: \"\"\n};\nexport var tylIconCalculatorVariantOutline = {\n name: 'calculator_variant_outline',\n data: \"\"\n};\nexport var tylIconCalculatorVariant = {\n name: 'calculator_variant',\n data: \"\"\n};\nexport var tylIconCalculator = {\n name: 'calculator',\n data: \"\"\n};\nexport var tylIconCalendarAccountOutline = {\n name: 'calendar_account_outline',\n data: \"\"\n};\nexport var tylIconCalendarAccount = {\n name: 'calendar_account',\n data: \"\"\n};\nexport var tylIconCalendarAlert = {\n name: 'calendar_alert',\n data: \"\"\n};\nexport var tylIconCalendarArrowLeft = {\n name: 'calendar_arrow_left',\n data: \"\"\n};\nexport var tylIconCalendarArrowRight = {\n name: 'calendar_arrow_right',\n data: \"\"\n};\nexport var tylIconCalendarBlankMultiple = {\n name: 'calendar_blank_multiple',\n data: \"\"\n};\nexport var tylIconCalendarBlankOutline = {\n name: 'calendar_blank_outline',\n data: \"\"\n};\nexport var tylIconCalendarBlank = {\n name: 'calendar_blank',\n data: \"\"\n};\nexport var tylIconCalendarCheckOutline = {\n name: 'calendar_check_outline',\n data: \"\"\n};\nexport var tylIconCalendarCheck = {\n name: 'calendar_check',\n data: \"\"\n};\nexport var tylIconCalendarClockOutline = {\n name: 'calendar_clock_outline',\n data: \"\"\n};\nexport var tylIconCalendarClock = {\n name: 'calendar_clock',\n data: \"\"\n};\nexport var tylIconCalendarCursor = {\n name: 'calendar_cursor',\n data: \"\"\n};\nexport var tylIconCalendarEdit = {\n name: 'calendar_edit',\n data: \"\"\n};\nexport var tylIconCalendarEnd = {\n name: 'calendar_end',\n data: \"\"\n};\nexport var tylIconCalendarExport = {\n name: 'calendar_export',\n data: \"\"\n};\nexport var tylIconCalendarHeart = {\n name: 'calendar_heart',\n data: \"\"\n};\nexport var tylIconCalendarImport = {\n name: 'calendar_import',\n data: \"\"\n};\nexport var tylIconCalendarLockOutline = {\n name: 'calendar_lock_outline',\n data: \"\"\n};\nexport var tylIconCalendarLock = {\n name: 'calendar_lock',\n data: \"\"\n};\nexport var tylIconCalendarMinus = {\n name: 'calendar_minus',\n data: \"\"\n};\nexport var tylIconCalendarMonthOutline = {\n name: 'calendar_month_outline',\n data: \"\"\n};\nexport var tylIconCalendarMonth = {\n name: 'calendar_month',\n data: \"\"\n};\nexport var tylIconCalendarMultipleCheck = {\n name: 'calendar_multiple_check',\n data: \"\"\n};\nexport var tylIconCalendarMultiple = {\n name: 'calendar_multiple',\n data: \"\"\n};\nexport var tylIconCalendarMultiselect = {\n name: 'calendar_multiselect',\n data: \"\"\n};\nexport var tylIconCalendarOutline = {\n name: 'calendar_outline',\n data: \"\"\n};\nexport var tylIconCalendarPlus = {\n name: 'calendar_plus',\n data: \"\"\n};\nexport var tylIconCalendarQuestion = {\n name: 'calendar_question',\n data: \"\"\n};\nexport var tylIconCalendarRangeOutline = {\n name: 'calendar_range_outline',\n data: \"\"\n};\nexport var tylIconCalendarRange = {\n name: 'calendar_range',\n data: \"\"\n};\nexport var tylIconCalendarRefreshOutline = {\n name: 'calendar_refresh_outline',\n data: \"\"\n};\nexport var tylIconCalendarRefresh = {\n name: 'calendar_refresh',\n data: \"\"\n};\nexport var tylIconCalendarRemoveOutline = {\n name: 'calendar_remove_outline',\n data: \"\"\n};\nexport var tylIconCalendarRemove = {\n name: 'calendar_remove',\n data: \"\"\n};\nexport var tylIconCalendarSearch = {\n name: 'calendar_search',\n data: \"\"\n};\nexport var tylIconCalendarStar = {\n name: 'calendar_star',\n data: \"\"\n};\nexport var tylIconCalendarStart = {\n name: 'calendar_start',\n data: \"\"\n};\nexport var tylIconCalendarSyncOutline = {\n name: 'calendar_sync_outline',\n data: \"\"\n};\nexport var tylIconCalendarSync = {\n name: 'calendar_sync',\n data: \"\"\n};\nexport var tylIconCalendarTextOutline = {\n name: 'calendar_text_outline',\n data: \"\"\n};\nexport var tylIconCalendarText = {\n name: 'calendar_text',\n data: \"\"\n};\nexport var tylIconCalendarToday = {\n name: 'calendar_today',\n data: \"\"\n};\nexport var tylIconCalendarWeekBegin = {\n name: 'calendar_week_begin',\n data: \"\"\n};\nexport var tylIconCalendarWeek = {\n name: 'calendar_week',\n data: \"\"\n};\nexport var tylIconCalendarWeekendOutline = {\n name: 'calendar_weekend_outline',\n data: \"\"\n};\nexport var tylIconCalendarWeekend = {\n name: 'calendar_weekend',\n data: \"\"\n};\nexport var tylIconCalendar = {\n name: 'calendar',\n data: \"\"\n};\nexport var tylIconCallMade = {\n name: 'call_made',\n data: \"\"\n};\nexport var tylIconCallMerge = {\n name: 'call_merge',\n data: \"\"\n};\nexport var tylIconCallMissed = {\n name: 'call_missed',\n data: \"\"\n};\nexport var tylIconCallReceived = {\n name: 'call_received',\n data: \"\"\n};\nexport var tylIconCallSplit = {\n name: 'call_split',\n data: \"\"\n};\nexport var tylIconCamcorderOff = {\n name: 'camcorder_off',\n data: \"\"\n};\nexport var tylIconCamcorder = {\n name: 'camcorder',\n data: \"\"\n};\nexport var tylIconCameraAccount = {\n name: 'camera_account',\n data: \"\"\n};\nexport var tylIconCameraBurst = {\n name: 'camera_burst',\n data: \"\"\n};\nexport var tylIconCameraControl = {\n name: 'camera_control',\n data: \"\"\n};\nexport var tylIconCameraEnhanceOutline = {\n name: 'camera_enhance_outline',\n data: \"\"\n};\nexport var tylIconCameraEnhance = {\n name: 'camera_enhance',\n data: \"\"\n};\nexport var tylIconCameraFlipOutline = {\n name: 'camera_flip_outline',\n data: \"\"\n};\nexport var tylIconCameraFlip = {\n name: 'camera_flip',\n data: \"\"\n};\nexport var tylIconCameraFrontVariant = {\n name: 'camera_front_variant',\n data: \"\"\n};\nexport var tylIconCameraFront = {\n name: 'camera_front',\n data: \"\"\n};\nexport var tylIconCameraGopro = {\n name: 'camera_gopro',\n data: \"\"\n};\nexport var tylIconCameraImage = {\n name: 'camera_image',\n data: \"\"\n};\nexport var tylIconCameraIris = {\n name: 'camera_iris',\n data: \"\"\n};\nexport var tylIconCameraMeteringCenter = {\n name: 'camera_metering_center',\n data: \"\"\n};\nexport var tylIconCameraMeteringMatrix = {\n name: 'camera_metering_matrix',\n data: \"\"\n};\nexport var tylIconCameraMeteringPartial = {\n name: 'camera_metering_partial',\n data: \"\"\n};\nexport var tylIconCameraMeteringSpot = {\n name: 'camera_metering_spot',\n data: \"\"\n};\nexport var tylIconCameraOff = {\n name: 'camera_off',\n data: \"\"\n};\nexport var tylIconCameraOutline = {\n name: 'camera_outline',\n data: \"\"\n};\nexport var tylIconCameraPartyMode = {\n name: 'camera_party_mode',\n data: \"\"\n};\nexport var tylIconCameraPlusOutline = {\n name: 'camera_plus_outline',\n data: \"\"\n};\nexport var tylIconCameraPlus = {\n name: 'camera_plus',\n data: \"\"\n};\nexport var tylIconCameraRearVariant = {\n name: 'camera_rear_variant',\n data: \"\"\n};\nexport var tylIconCameraRear = {\n name: 'camera_rear',\n data: \"\"\n};\nexport var tylIconCameraRetakeOutline = {\n name: 'camera_retake_outline',\n data: \"\"\n};\nexport var tylIconCameraRetake = {\n name: 'camera_retake',\n data: \"\"\n};\nexport var tylIconCameraSwitchOutline = {\n name: 'camera_switch_outline',\n data: \"\"\n};\nexport var tylIconCameraSwitch = {\n name: 'camera_switch',\n data: \"\"\n};\nexport var tylIconCameraTimer = {\n name: 'camera_timer',\n data: \"\"\n};\nexport var tylIconCameraWirelessOutline = {\n name: 'camera_wireless_outline',\n data: \"\"\n};\nexport var tylIconCameraWireless = {\n name: 'camera_wireless',\n data: \"\"\n};\nexport var tylIconCamera = {\n name: 'camera',\n data: \"\"\n};\nexport var tylIconCampfire = {\n name: 'campfire',\n data: \"\"\n};\nexport var tylIconCancel = {\n name: 'cancel',\n data: \"\"\n};\nexport var tylIconCandle = {\n name: 'candle',\n data: \"\"\n};\nexport var tylIconCandycane = {\n name: 'candycane',\n data: \"\"\n};\nexport var tylIconCannabisOff = {\n name: 'cannabis_off',\n data: \"\"\n};\nexport var tylIconCannabis = {\n name: 'cannabis',\n data: \"\"\n};\nexport var tylIconCapsLock = {\n name: 'caps_lock',\n data: \"\"\n};\nexport var tylIconCar2Plus = {\n name: 'car_2_plus',\n data: \"\"\n};\nexport var tylIconCar3Plus = {\n name: 'car_3_plus',\n data: \"\"\n};\nexport var tylIconCarArrowLeft = {\n name: 'car_arrow_left',\n data: \"\"\n};\nexport var tylIconCarArrowRight = {\n name: 'car_arrow_right',\n data: \"\"\n};\nexport var tylIconCarBack = {\n name: 'car_back',\n data: \"\"\n};\nexport var tylIconCarBattery = {\n name: 'car_battery',\n data: \"\"\n};\nexport var tylIconCarBrakeAbs = {\n name: 'car_brake_abs',\n data: \"\"\n};\nexport var tylIconCarBrakeAlert = {\n name: 'car_brake_alert',\n data: \"\"\n};\nexport var tylIconCarBrakeHold = {\n name: 'car_brake_hold',\n data: \"\"\n};\nexport var tylIconCarBrakeParking = {\n name: 'car_brake_parking',\n data: \"\"\n};\nexport var tylIconCarBrakeRetarder = {\n name: 'car_brake_retarder',\n data: \"\"\n};\nexport var tylIconCarChildSeat = {\n name: 'car_child_seat',\n data: \"\"\n};\nexport var tylIconCarClutch = {\n name: 'car_clutch',\n data: \"\"\n};\nexport var tylIconCarCog = {\n name: 'car_cog',\n data: \"\"\n};\nexport var tylIconCarConnected = {\n name: 'car_connected',\n data: \"\"\n};\nexport var tylIconCarConvertible = {\n name: 'car_convertible',\n data: \"\"\n};\nexport var tylIconCarCoolantLevel = {\n name: 'car_coolant_level',\n data: \"\"\n};\nexport var tylIconCarCruiseControl = {\n name: 'car_cruise_control',\n data: \"\"\n};\nexport var tylIconCarDefrostFront = {\n name: 'car_defrost_front',\n data: \"\"\n};\nexport var tylIconCarDefrostRear = {\n name: 'car_defrost_rear',\n data: \"\"\n};\nexport var tylIconCarDoorLock = {\n name: 'car_door_lock',\n data: \"\"\n};\nexport var tylIconCarDoor = {\n name: 'car_door',\n data: \"\"\n};\nexport var tylIconCarElectricOutline = {\n name: 'car_electric_outline',\n data: \"\"\n};\nexport var tylIconCarElectric = {\n name: 'car_electric',\n data: \"\"\n};\nexport var tylIconCarEmergency = {\n name: 'car_emergency',\n data: \"\"\n};\nexport var tylIconCarEsp = {\n name: 'car_esp',\n data: \"\"\n};\nexport var tylIconCarEstate = {\n name: 'car_estate',\n data: \"\"\n};\nexport var tylIconCarHatchback = {\n name: 'car_hatchback',\n data: \"\"\n};\nexport var tylIconCarInfo = {\n name: 'car_info',\n data: \"\"\n};\nexport var tylIconCarKey = {\n name: 'car_key',\n data: \"\"\n};\nexport var tylIconCarLiftedPickup = {\n name: 'car_lifted_pickup',\n data: \"\"\n};\nexport var tylIconCarLightDimmed = {\n name: 'car_light_dimmed',\n data: \"\"\n};\nexport var tylIconCarLightFog = {\n name: 'car_light_fog',\n data: \"\"\n};\nexport var tylIconCarLightHigh = {\n name: 'car_light_high',\n data: \"\"\n};\nexport var tylIconCarLimousine = {\n name: 'car_limousine',\n data: \"\"\n};\nexport var tylIconCarMultiple = {\n name: 'car_multiple',\n data: \"\"\n};\nexport var tylIconCarOff = {\n name: 'car_off',\n data: \"\"\n};\nexport var tylIconCarOutline = {\n name: 'car_outline',\n data: \"\"\n};\nexport var tylIconCarParkingLights = {\n name: 'car_parking_lights',\n data: \"\"\n};\nexport var tylIconCarPickup = {\n name: 'car_pickup',\n data: \"\"\n};\nexport var tylIconCarSeatCooler = {\n name: 'car_seat_cooler',\n data: \"\"\n};\nexport var tylIconCarSeatHeater = {\n name: 'car_seat_heater',\n data: \"\"\n};\nexport var tylIconCarSeat = {\n name: 'car_seat',\n data: \"\"\n};\nexport var tylIconCarSettings = {\n name: 'car_settings',\n data: \"\"\n};\nexport var tylIconCarShiftPattern = {\n name: 'car_shift_pattern',\n data: \"\"\n};\nexport var tylIconCarSide = {\n name: 'car_side',\n data: \"\"\n};\nexport var tylIconCarSports = {\n name: 'car_sports',\n data: \"\"\n};\nexport var tylIconCarTireAlert = {\n name: 'car_tire_alert',\n data: \"\"\n};\nexport var tylIconCarTractionControl = {\n name: 'car_traction_control',\n data: \"\"\n};\nexport var tylIconCarTurbocharger = {\n name: 'car_turbocharger',\n data: \"\"\n};\nexport var tylIconCarWash = {\n name: 'car_wash',\n data: \"\"\n};\nexport var tylIconCarWindshieldOutline = {\n name: 'car_windshield_outline',\n data: \"\"\n};\nexport var tylIconCarWindshield = {\n name: 'car_windshield',\n data: \"\"\n};\nexport var tylIconCar = {\n name: 'car',\n data: \"\"\n};\nexport var tylIconCarabiner = {\n name: 'carabiner',\n data: \"\"\n};\nexport var tylIconCaravan = {\n name: 'caravan',\n data: \"\"\n};\nexport var tylIconCardAccountDetailsOutline = {\n name: 'card_account_details_outline',\n data: \"\"\n};\nexport var tylIconCardAccountDetailsStarOutline = {\n name: 'card_account_details_star_outline',\n data: \"\"\n};\nexport var tylIconCardAccountDetailsStar = {\n name: 'card_account_details_star',\n data: \"\"\n};\nexport var tylIconCardAccountDetails = {\n name: 'card_account_details',\n data: \"\"\n};\nexport var tylIconCardAccountMailOutline = {\n name: 'card_account_mail_outline',\n data: \"\"\n};\nexport var tylIconCardAccountMail = {\n name: 'card_account_mail',\n data: \"\"\n};\nexport var tylIconCardAccountPhoneOutline = {\n name: 'card_account_phone_outline',\n data: \"\"\n};\nexport var tylIconCardAccountPhone = {\n name: 'card_account_phone',\n data: \"\"\n};\nexport var tylIconCardBulletedOffOutline = {\n name: 'card_bulleted_off_outline',\n data: \"\"\n};\nexport var tylIconCardBulletedOff = {\n name: 'card_bulleted_off',\n data: \"\"\n};\nexport var tylIconCardBulletedOutline = {\n name: 'card_bulleted_outline',\n data: \"\"\n};\nexport var tylIconCardBulletedSettingsOutline = {\n name: 'card_bulleted_settings_outline',\n data: \"\"\n};\nexport var tylIconCardBulletedSettings = {\n name: 'card_bulleted_settings',\n data: \"\"\n};\nexport var tylIconCardBulleted = {\n name: 'card_bulleted',\n data: \"\"\n};\nexport var tylIconCardMinusOutline = {\n name: 'card_minus_outline',\n data: \"\"\n};\nexport var tylIconCardMinus = {\n name: 'card_minus',\n data: \"\"\n};\nexport var tylIconCardOffOutline = {\n name: 'card_off_outline',\n data: \"\"\n};\nexport var tylIconCardOff = {\n name: 'card_off',\n data: \"\"\n};\nexport var tylIconCardOutline = {\n name: 'card_outline',\n data: \"\"\n};\nexport var tylIconCardPlusOutline = {\n name: 'card_plus_outline',\n data: \"\"\n};\nexport var tylIconCardPlus = {\n name: 'card_plus',\n data: \"\"\n};\nexport var tylIconCardRemoveOutline = {\n name: 'card_remove_outline',\n data: \"\"\n};\nexport var tylIconCardRemove = {\n name: 'card_remove',\n data: \"\"\n};\nexport var tylIconCardSearchOutline = {\n name: 'card_search_outline',\n data: \"\"\n};\nexport var tylIconCardSearch = {\n name: 'card_search',\n data: \"\"\n};\nexport var tylIconCardTextOutline = {\n name: 'card_text_outline',\n data: \"\"\n};\nexport var tylIconCardText = {\n name: 'card_text',\n data: \"\"\n};\nexport var tylIconCard = {\n name: 'card',\n data: \"\"\n};\nexport var tylIconCardsClub = {\n name: 'cards_club',\n data: \"\"\n};\nexport var tylIconCardsDiamondOutline = {\n name: 'cards_diamond_outline',\n data: \"\"\n};\nexport var tylIconCardsDiamond = {\n name: 'cards_diamond',\n data: \"\"\n};\nexport var tylIconCardsHeart = {\n name: 'cards_heart',\n data: \"\"\n};\nexport var tylIconCardsOutline = {\n name: 'cards_outline',\n data: \"\"\n};\nexport var tylIconCardsPlayingOutline = {\n name: 'cards_playing_outline',\n data: \"\"\n};\nexport var tylIconCardsSpade = {\n name: 'cards_spade',\n data: \"\"\n};\nexport var tylIconCardsVariant = {\n name: 'cards_variant',\n data: \"\"\n};\nexport var tylIconCards = {\n name: 'cards',\n data: \"\"\n};\nexport var tylIconCarrot = {\n name: 'carrot',\n data: \"\"\n};\nexport var tylIconCartArrowDown = {\n name: 'cart_arrow_down',\n data: \"\"\n};\nexport var tylIconCartArrowRight = {\n name: 'cart_arrow_right',\n data: \"\"\n};\nexport var tylIconCartArrowUp = {\n name: 'cart_arrow_up',\n data: \"\"\n};\nexport var tylIconCartCheck = {\n name: 'cart_check',\n data: \"\"\n};\nexport var tylIconCartMinus = {\n name: 'cart_minus',\n data: \"\"\n};\nexport var tylIconCartOff = {\n name: 'cart_off',\n data: \"\"\n};\nexport var tylIconCartOutline = {\n name: 'cart_outline',\n data: \"\"\n};\nexport var tylIconCartPlus = {\n name: 'cart_plus',\n data: \"\"\n};\nexport var tylIconCartRemove = {\n name: 'cart_remove',\n data: \"\"\n};\nexport var tylIconCartVariant = {\n name: 'cart_variant',\n data: \"\"\n};\nexport var tylIconCart = {\n name: 'cart',\n data: \"\"\n};\nexport var tylIconCaseSensitiveAlt = {\n name: 'case_sensitive_alt',\n data: \"\"\n};\nexport var tylIconCash100 = {\n name: 'cash_100',\n data: \"\"\n};\nexport var tylIconCashCheck = {\n name: 'cash_check',\n data: \"\"\n};\nexport var tylIconCashLockOpen = {\n name: 'cash_lock_open',\n data: \"\"\n};\nexport var tylIconCashLock = {\n name: 'cash_lock',\n data: \"\"\n};\nexport var tylIconCashMarker = {\n name: 'cash_marker',\n data: \"\"\n};\nexport var tylIconCashMinus = {\n name: 'cash_minus',\n data: \"\"\n};\nexport var tylIconCashMultiple = {\n name: 'cash_multiple',\n data: \"\"\n};\nexport var tylIconCashPlus = {\n name: 'cash_plus',\n data: \"\"\n};\nexport var tylIconCashRefund = {\n name: 'cash_refund',\n data: \"\"\n};\nexport var tylIconCashRegister = {\n name: 'cash_register',\n data: \"\"\n};\nexport var tylIconCashRemove = {\n name: 'cash_remove',\n data: \"\"\n};\nexport var tylIconCashUsdOutline = {\n name: 'cash_usd_outline',\n data: \"\"\n};\nexport var tylIconCashUsd = {\n name: 'cash_usd',\n data: \"\"\n};\nexport var tylIconCash = {\n name: 'cash',\n data: \"\"\n};\nexport var tylIconCassette = {\n name: 'cassette',\n data: \"\"\n};\nexport var tylIconCastAudio = {\n name: 'cast_audio',\n data: \"\"\n};\nexport var tylIconCastConnected = {\n name: 'cast_connected',\n data: \"\"\n};\nexport var tylIconCastEducation = {\n name: 'cast_education',\n data: \"\"\n};\nexport var tylIconCastOff = {\n name: 'cast_off',\n data: \"\"\n};\nexport var tylIconCast = {\n name: 'cast',\n data: \"\"\n};\nexport var tylIconCastle = {\n name: 'castle',\n data: \"\"\n};\nexport var tylIconCat = {\n name: 'cat',\n data: \"\"\n};\nexport var tylIconCctv = {\n name: 'cctv',\n data: \"\"\n};\nexport var tylIconCeilingLight = {\n name: 'ceiling_light',\n data: \"\"\n};\nexport var tylIconCellphoneAndroid = {\n name: 'cellphone_android',\n data: \"\"\n};\nexport var tylIconCellphoneArrowDown = {\n name: 'cellphone_arrow_down',\n data: \"\"\n};\nexport var tylIconCellphoneBasic = {\n name: 'cellphone_basic',\n data: \"\"\n};\nexport var tylIconCellphoneCharging = {\n name: 'cellphone_charging',\n data: \"\"\n};\nexport var tylIconCellphoneCog = {\n name: 'cellphone_cog',\n data: \"\"\n};\nexport var tylIconCellphoneDock = {\n name: 'cellphone_dock',\n data: \"\"\n};\nexport var tylIconCellphoneErase = {\n name: 'cellphone_erase',\n data: \"\"\n};\nexport var tylIconCellphoneInformation = {\n name: 'cellphone_information',\n data: \"\"\n};\nexport var tylIconCellphoneIphone = {\n name: 'cellphone_iphone',\n data: \"\"\n};\nexport var tylIconCellphoneKey = {\n name: 'cellphone_key',\n data: \"\"\n};\nexport var tylIconCellphoneLinkOff = {\n name: 'cellphone_link_off',\n data: \"\"\n};\nexport var tylIconCellphoneLink = {\n name: 'cellphone_link',\n data: \"\"\n};\nexport var tylIconCellphoneLock = {\n name: 'cellphone_lock',\n data: \"\"\n};\nexport var tylIconCellphoneMessageOff = {\n name: 'cellphone_message_off',\n data: \"\"\n};\nexport var tylIconCellphoneMessage = {\n name: 'cellphone_message',\n data: \"\"\n};\nexport var tylIconCellphoneNfcOff = {\n name: 'cellphone_nfc_off',\n data: \"\"\n};\nexport var tylIconCellphoneNfc = {\n name: 'cellphone_nfc',\n data: \"\"\n};\nexport var tylIconCellphoneOff = {\n name: 'cellphone_off',\n data: \"\"\n};\nexport var tylIconCellphonePlay = {\n name: 'cellphone_play',\n data: \"\"\n};\nexport var tylIconCellphoneScreenshot = {\n name: 'cellphone_screenshot',\n data: \"\"\n};\nexport var tylIconCellphoneSettings = {\n name: 'cellphone_settings',\n data: \"\"\n};\nexport var tylIconCellphoneSound = {\n name: 'cellphone_sound',\n data: \"\"\n};\nexport var tylIconCellphoneText = {\n name: 'cellphone_text',\n data: \"\"\n};\nexport var tylIconCellphoneWireless = {\n name: 'cellphone_wireless',\n data: \"\"\n};\nexport var tylIconCellphone = {\n name: 'cellphone',\n data: \"\"\n};\nexport var tylIconCelticCross = {\n name: 'celtic_cross',\n data: \"\"\n};\nexport var tylIconCentos = {\n name: 'centos',\n data: \"\"\n};\nexport var tylIconCertificateOutline = {\n name: 'certificate_outline',\n data: \"\"\n};\nexport var tylIconCertificate = {\n name: 'certificate',\n data: \"\"\n};\nexport var tylIconChairRolling = {\n name: 'chair_rolling',\n data: \"\"\n};\nexport var tylIconChairSchool = {\n name: 'chair_school',\n data: \"\"\n};\nexport var tylIconCharity = {\n name: 'charity',\n data: \"\"\n};\nexport var tylIconChartArc = {\n name: 'chart_arc',\n data: \"\"\n};\nexport var tylIconChartAreasplineVariant = {\n name: 'chart_areaspline_variant',\n data: \"\"\n};\nexport var tylIconChartAreaspline = {\n name: 'chart_areaspline',\n data: \"\"\n};\nexport var tylIconChartBarStacked = {\n name: 'chart_bar_stacked',\n data: \"\"\n};\nexport var tylIconChartBar = {\n name: 'chart_bar',\n data: \"\"\n};\nexport var tylIconChartBellCurveCumulative = {\n name: 'chart_bell_curve_cumulative',\n data: \"\"\n};\nexport var tylIconChartBellCurve = {\n name: 'chart_bell_curve',\n data: \"\"\n};\nexport var tylIconChartBoxOutline = {\n name: 'chart_box_outline',\n data: \"\"\n};\nexport var tylIconChartBoxPlusOutline = {\n name: 'chart_box_plus_outline',\n data: \"\"\n};\nexport var tylIconChartBox = {\n name: 'chart_box',\n data: \"\"\n};\nexport var tylIconChartBubble = {\n name: 'chart_bubble',\n data: \"\"\n};\nexport var tylIconChartDonutVariant = {\n name: 'chart_donut_variant',\n data: \"\"\n};\nexport var tylIconChartDonut = {\n name: 'chart_donut',\n data: \"\"\n};\nexport var tylIconChartGantt = {\n name: 'chart_gantt',\n data: \"\"\n};\nexport var tylIconChartHistogram = {\n name: 'chart_histogram',\n data: \"\"\n};\nexport var tylIconChartLineStacked = {\n name: 'chart_line_stacked',\n data: \"\"\n};\nexport var tylIconChartLineVariant = {\n name: 'chart_line_variant',\n data: \"\"\n};\nexport var tylIconChartLine = {\n name: 'chart_line',\n data: \"\"\n};\nexport var tylIconChartMultiline = {\n name: 'chart_multiline',\n data: \"\"\n};\nexport var tylIconChartMultiple = {\n name: 'chart_multiple',\n data: \"\"\n};\nexport var tylIconChartPie = {\n name: 'chart_pie',\n data: \"\"\n};\nexport var tylIconChartPpf = {\n name: 'chart_ppf',\n data: \"\"\n};\nexport var tylIconChartSankeyVariant = {\n name: 'chart_sankey_variant',\n data: \"\"\n};\nexport var tylIconChartSankey = {\n name: 'chart_sankey',\n data: \"\"\n};\nexport var tylIconChartScatterPlotHexbin = {\n name: 'chart_scatter_plot_hexbin',\n data: \"\"\n};\nexport var tylIconChartScatterPlot = {\n name: 'chart_scatter_plot',\n data: \"\"\n};\nexport var tylIconChartTimelineVariantShimmer = {\n name: 'chart_timeline_variant_shimmer',\n data: \"\"\n};\nexport var tylIconChartTimelineVariant = {\n name: 'chart_timeline_variant',\n data: \"\"\n};\nexport var tylIconChartTimeline = {\n name: 'chart_timeline',\n data: \"\"\n};\nexport var tylIconChartTree = {\n name: 'chart_tree',\n data: \"\"\n};\nexport var tylIconChatAlertOutline = {\n name: 'chat_alert_outline',\n data: \"\"\n};\nexport var tylIconChatAlert = {\n name: 'chat_alert',\n data: \"\"\n};\nexport var tylIconChatMinusOutline = {\n name: 'chat_minus_outline',\n data: \"\"\n};\nexport var tylIconChatMinus = {\n name: 'chat_minus',\n data: \"\"\n};\nexport var tylIconChatOutline = {\n name: 'chat_outline',\n data: \"\"\n};\nexport var tylIconChatPlusOutline = {\n name: 'chat_plus_outline',\n data: \"\"\n};\nexport var tylIconChatPlus = {\n name: 'chat_plus',\n data: \"\"\n};\nexport var tylIconChatProcessingOutline = {\n name: 'chat_processing_outline',\n data: \"\"\n};\nexport var tylIconChatProcessing = {\n name: 'chat_processing',\n data: \"\"\n};\nexport var tylIconChatRemoveOutline = {\n name: 'chat_remove_outline',\n data: \"\"\n};\nexport var tylIconChatRemove = {\n name: 'chat_remove',\n data: \"\"\n};\nexport var tylIconChatSleepOutline = {\n name: 'chat_sleep_outline',\n data: \"\"\n};\nexport var tylIconChatSleep = {\n name: 'chat_sleep',\n data: \"\"\n};\nexport var tylIconChat = {\n name: 'chat',\n data: \"\"\n};\nexport var tylIconCheckAll = {\n name: 'check_all',\n data: \"\"\n};\nexport var tylIconCheckBold = {\n name: 'check_bold',\n data: \"\"\n};\nexport var tylIconCheckBoxMultipleOutline = {\n name: 'check_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconCheckBoxOutline = {\n name: 'check_box_outline',\n data: \"\"\n};\nexport var tylIconCheckCircleOutline = {\n name: 'check_circle_outline',\n data: \"\"\n};\nexport var tylIconCheckCircle = {\n name: 'check_circle',\n data: \"\"\n};\nexport var tylIconCheckDecagram = {\n name: 'check_decagram',\n data: \"\"\n};\nexport var tylIconCheckNetworkOutline = {\n name: 'check_network_outline',\n data: \"\"\n};\nexport var tylIconCheckNetwork = {\n name: 'check_network',\n data: \"\"\n};\nexport var tylIconCheckOutline = {\n name: 'check_outline',\n data: \"\"\n};\nexport var tylIconCheckUnderlineCircleOutline = {\n name: 'check_underline_circle_outline',\n data: \"\"\n};\nexport var tylIconCheckUnderlineCircle = {\n name: 'check_underline_circle',\n data: \"\"\n};\nexport var tylIconCheckUnderline = {\n name: 'check_underline',\n data: \"\"\n};\nexport var tylIconCheck = {\n name: 'check',\n data: \"\"\n};\nexport var tylIconCheckbook = {\n name: 'checkbook',\n data: \"\"\n};\nexport var tylIconCheckboxBlankCircleOutline = {\n name: 'checkbox_blank_circle_outline',\n data: \"\"\n};\nexport var tylIconCheckboxBlankCircle = {\n name: 'checkbox_blank_circle',\n data: \"\"\n};\nexport var tylIconCheckboxBlankOffOutline = {\n name: 'checkbox_blank_off_outline',\n data: \"\"\n};\nexport var tylIconCheckboxBlankOff = {\n name: 'checkbox_blank_off',\n data: \"\"\n};\nexport var tylIconCheckboxBlankOutline = {\n name: 'checkbox_blank_outline',\n data: \"\"\n};\nexport var tylIconCheckboxBlank = {\n name: 'checkbox_blank',\n data: \"\"\n};\nexport var tylIconCheckboxIntermediate = {\n name: 'checkbox_intermediate',\n data: \"\"\n};\nexport var tylIconCheckboxMarkedCircleOutline = {\n name: 'checkbox_marked_circle_outline',\n data: \"\"\n};\nexport var tylIconCheckboxMarkedCircle = {\n name: 'checkbox_marked_circle',\n data: \"\"\n};\nexport var tylIconCheckboxMarkedOutline = {\n name: 'checkbox_marked_outline',\n data: \"\"\n};\nexport var tylIconCheckboxMarked = {\n name: 'checkbox_marked',\n data: \"\"\n};\nexport var tylIconCheckboxMultipleBlankCircleOutline = {\n name: 'checkbox_multiple_blank_circle_outline',\n data: \"\"\n};\nexport var tylIconCheckboxMultipleBlankCircle = {\n name: 'checkbox_multiple_blank_circle',\n data: \"\"\n};\nexport var tylIconCheckboxMultipleBlankOutline = {\n name: 'checkbox_multiple_blank_outline',\n data: \"\"\n};\nexport var tylIconCheckboxMultipleBlank = {\n name: 'checkbox_multiple_blank',\n data: \"\"\n};\nexport var tylIconCheckboxMultipleMarkedCircleOutline = {\n name: 'checkbox_multiple_marked_circle_outline',\n data: \"\"\n};\nexport var tylIconCheckboxMultipleMarkedCircle = {\n name: 'checkbox_multiple_marked_circle',\n data: \"\"\n};\nexport var tylIconCheckboxMultipleMarkedOutline = {\n name: 'checkbox_multiple_marked_outline',\n data: \"\"\n};\nexport var tylIconCheckboxMultipleMarked = {\n name: 'checkbox_multiple_marked',\n data: \"\"\n};\nexport var tylIconCheckerboardMinus = {\n name: 'checkerboard_minus',\n data: \"\"\n};\nexport var tylIconCheckerboardPlus = {\n name: 'checkerboard_plus',\n data: \"\"\n};\nexport var tylIconCheckerboardRemove = {\n name: 'checkerboard_remove',\n data: \"\"\n};\nexport var tylIconCheckerboard = {\n name: 'checkerboard',\n data: \"\"\n};\nexport var tylIconChecklist = {\n name: 'checklist',\n data: \"\"\n};\nexport var tylIconCheeseOff = {\n name: 'cheese_off',\n data: \"\"\n};\nexport var tylIconCheese = {\n name: 'cheese',\n data: \"\"\n};\nexport var tylIconChefHat = {\n name: 'chef_hat',\n data: \"\"\n};\nexport var tylIconChemicalWeapon = {\n name: 'chemical_weapon',\n data: \"\"\n};\nexport var tylIconChessBishop = {\n name: 'chess_bishop',\n data: \"\"\n};\nexport var tylIconChessKing = {\n name: 'chess_king',\n data: \"\"\n};\nexport var tylIconChessKnight = {\n name: 'chess_knight',\n data: \"\"\n};\nexport var tylIconChessPawn = {\n name: 'chess_pawn',\n data: \"\"\n};\nexport var tylIconChessQueen = {\n name: 'chess_queen',\n data: \"\"\n};\nexport var tylIconChessRook = {\n name: 'chess_rook',\n data: \"\"\n};\nexport var tylIconChevronDoubleDown = {\n name: 'chevron_double_down',\n data: \"\"\n};\nexport var tylIconChevronDoubleLeft = {\n name: 'chevron_double_left',\n data: \"\"\n};\nexport var tylIconChevronDoubleRight = {\n name: 'chevron_double_right',\n data: \"\"\n};\nexport var tylIconChevronDoubleUp = {\n name: 'chevron_double_up',\n data: \"\"\n};\nexport var tylIconChevronDownBoxOutline = {\n name: 'chevron_down_box_outline',\n data: \"\"\n};\nexport var tylIconChevronDownBox = {\n name: 'chevron_down_box',\n data: \"\"\n};\nexport var tylIconChevronDownCircleOutline = {\n name: 'chevron_down_circle_outline',\n data: \"\"\n};\nexport var tylIconChevronDownCircle = {\n name: 'chevron_down_circle',\n data: \"\"\n};\nexport var tylIconChevronDown = {\n name: 'chevron_down',\n data: \"\"\n};\nexport var tylIconChevronLeftBoxOutline = {\n name: 'chevron_left_box_outline',\n data: \"\"\n};\nexport var tylIconChevronLeftBox = {\n name: 'chevron_left_box',\n data: \"\"\n};\nexport var tylIconChevronLeftCircleOutline = {\n name: 'chevron_left_circle_outline',\n data: \"\"\n};\nexport var tylIconChevronLeftCircle = {\n name: 'chevron_left_circle',\n data: \"\"\n};\nexport var tylIconChevronLeft = {\n name: 'chevron_left',\n data: \"\"\n};\nexport var tylIconChevronRightBoxOutline = {\n name: 'chevron_right_box_outline',\n data: \"\"\n};\nexport var tylIconChevronRightBox = {\n name: 'chevron_right_box',\n data: \"\"\n};\nexport var tylIconChevronRightCircleOutline = {\n name: 'chevron_right_circle_outline',\n data: \"\"\n};\nexport var tylIconChevronRightCircle = {\n name: 'chevron_right_circle',\n data: \"\"\n};\nexport var tylIconChevronRight = {\n name: 'chevron_right',\n data: \"\"\n};\nexport var tylIconChevronTripleDown = {\n name: 'chevron_triple_down',\n data: \"\"\n};\nexport var tylIconChevronTripleLeft = {\n name: 'chevron_triple_left',\n data: \"\"\n};\nexport var tylIconChevronTripleRight = {\n name: 'chevron_triple_right',\n data: \"\"\n};\nexport var tylIconChevronTripleUp = {\n name: 'chevron_triple_up',\n data: \"\"\n};\nexport var tylIconChevronUpBoxOutline = {\n name: 'chevron_up_box_outline',\n data: \"\"\n};\nexport var tylIconChevronUpBox = {\n name: 'chevron_up_box',\n data: \"\"\n};\nexport var tylIconChevronUpCircleOutline = {\n name: 'chevron_up_circle_outline',\n data: \"\"\n};\nexport var tylIconChevronUpCircle = {\n name: 'chevron_up_circle',\n data: \"\"\n};\nexport var tylIconChevronUp = {\n name: 'chevron_up',\n data: \"\"\n};\nexport var tylIconChiliHot = {\n name: 'chili_hot',\n data: \"\"\n};\nexport var tylIconChiliMedium = {\n name: 'chili_medium',\n data: \"\"\n};\nexport var tylIconChiliMild = {\n name: 'chili_mild',\n data: \"\"\n};\nexport var tylIconChiliOff = {\n name: 'chili_off',\n data: \"\"\n};\nexport var tylIconChip = {\n name: 'chip',\n data: \"\"\n};\nexport var tylIconChristianityOutline = {\n name: 'christianity_outline',\n data: \"\"\n};\nexport var tylIconChristianity = {\n name: 'christianity',\n data: \"\"\n};\nexport var tylIconChurch = {\n name: 'church',\n data: \"\"\n};\nexport var tylIconCigarOff = {\n name: 'cigar_off',\n data: \"\"\n};\nexport var tylIconCigar = {\n name: 'cigar',\n data: \"\"\n};\nexport var tylIconCircleBoxOutline = {\n name: 'circle_box_outline',\n data: \"\"\n};\nexport var tylIconCircleBox = {\n name: 'circle_box',\n data: \"\"\n};\nexport var tylIconCircleDouble = {\n name: 'circle_double',\n data: \"\"\n};\nexport var tylIconCircleEditOutline = {\n name: 'circle_edit_outline',\n data: \"\"\n};\nexport var tylIconCircleExpand = {\n name: 'circle_expand',\n data: \"\"\n};\nexport var tylIconCircleHalfFull = {\n name: 'circle_half_full',\n data: \"\"\n};\nexport var tylIconCircleHalf = {\n name: 'circle_half',\n data: \"\"\n};\nexport var tylIconCircleMedium = {\n name: 'circle_medium',\n data: \"\"\n};\nexport var tylIconCircleMultipleOutline = {\n name: 'circle_multiple_outline',\n data: \"\"\n};\nexport var tylIconCircleMultiple = {\n name: 'circle_multiple',\n data: \"\"\n};\nexport var tylIconCircleOffOutline = {\n name: 'circle_off_outline',\n data: \"\"\n};\nexport var tylIconCircleOutline = {\n name: 'circle_outline',\n data: \"\"\n};\nexport var tylIconCircleSlice1 = {\n name: 'circle_slice_1',\n data: \"\"\n};\nexport var tylIconCircleSlice2 = {\n name: 'circle_slice_2',\n data: \"\"\n};\nexport var tylIconCircleSlice3 = {\n name: 'circle_slice_3',\n data: \"\"\n};\nexport var tylIconCircleSlice4 = {\n name: 'circle_slice_4',\n data: \"\"\n};\nexport var tylIconCircleSlice5 = {\n name: 'circle_slice_5',\n data: \"\"\n};\nexport var tylIconCircleSlice6 = {\n name: 'circle_slice_6',\n data: \"\"\n};\nexport var tylIconCircleSlice7 = {\n name: 'circle_slice_7',\n data: \"\"\n};\nexport var tylIconCircleSlice8 = {\n name: 'circle_slice_8',\n data: \"\"\n};\nexport var tylIconCircleSmall = {\n name: 'circle_small',\n data: \"\"\n};\nexport var tylIconCircle = {\n name: 'circle',\n data: \"\"\n};\nexport var tylIconCircularSaw = {\n name: 'circular_saw',\n data: \"\"\n};\nexport var tylIconCityVariantOutline = {\n name: 'city_variant_outline',\n data: \"\"\n};\nexport var tylIconCityVariant = {\n name: 'city_variant',\n data: \"\"\n};\nexport var tylIconCity = {\n name: 'city',\n data: \"\"\n};\nexport var tylIconClipboardAccountOutline = {\n name: 'clipboard_account_outline',\n data: \"\"\n};\nexport var tylIconClipboardAccount = {\n name: 'clipboard_account',\n data: \"\"\n};\nexport var tylIconClipboardAlertOutline = {\n name: 'clipboard_alert_outline',\n data: \"\"\n};\nexport var tylIconClipboardAlert = {\n name: 'clipboard_alert',\n data: \"\"\n};\nexport var tylIconClipboardArrowDownOutline = {\n name: 'clipboard_arrow_down_outline',\n data: \"\"\n};\nexport var tylIconClipboardArrowDown = {\n name: 'clipboard_arrow_down',\n data: \"\"\n};\nexport var tylIconClipboardArrowLeftOutline = {\n name: 'clipboard_arrow_left_outline',\n data: \"\"\n};\nexport var tylIconClipboardArrowLeft = {\n name: 'clipboard_arrow_left',\n data: \"\"\n};\nexport var tylIconClipboardArrowRightOutline = {\n name: 'clipboard_arrow_right_outline',\n data: \"\"\n};\nexport var tylIconClipboardArrowRight = {\n name: 'clipboard_arrow_right',\n data: \"\"\n};\nexport var tylIconClipboardArrowUpOutline = {\n name: 'clipboard_arrow_up_outline',\n data: \"\"\n};\nexport var tylIconClipboardArrowUp = {\n name: 'clipboard_arrow_up',\n data: \"\"\n};\nexport var tylIconClipboardCheckMultipleOutline = {\n name: 'clipboard_check_multiple_outline',\n data: \"\"\n};\nexport var tylIconClipboardCheckMultiple = {\n name: 'clipboard_check_multiple',\n data: \"\"\n};\nexport var tylIconClipboardCheckOutline = {\n name: 'clipboard_check_outline',\n data: \"\"\n};\nexport var tylIconClipboardCheck = {\n name: 'clipboard_check',\n data: \"\"\n};\nexport var tylIconClipboardClockOutline = {\n name: 'clipboard_clock_outline',\n data: \"\"\n};\nexport var tylIconClipboardClock = {\n name: 'clipboard_clock',\n data: \"\"\n};\nexport var tylIconClipboardEditOutline = {\n name: 'clipboard_edit_outline',\n data: \"\"\n};\nexport var tylIconClipboardEdit = {\n name: 'clipboard_edit',\n data: \"\"\n};\nexport var tylIconClipboardFileOutline = {\n name: 'clipboard_file_outline',\n data: \"\"\n};\nexport var tylIconClipboardFile = {\n name: 'clipboard_file',\n data: \"\"\n};\nexport var tylIconClipboardFlowOutline = {\n name: 'clipboard_flow_outline',\n data: \"\"\n};\nexport var tylIconClipboardFlow = {\n name: 'clipboard_flow',\n data: \"\"\n};\nexport var tylIconClipboardListOutline = {\n name: 'clipboard_list_outline',\n data: \"\"\n};\nexport var tylIconClipboardList = {\n name: 'clipboard_list',\n data: \"\"\n};\nexport var tylIconClipboardMinusOutline = {\n name: 'clipboard_minus_outline',\n data: \"\"\n};\nexport var tylIconClipboardMinus = {\n name: 'clipboard_minus',\n data: \"\"\n};\nexport var tylIconClipboardMultipleOutline = {\n name: 'clipboard_multiple_outline',\n data: \"\"\n};\nexport var tylIconClipboardMultiple = {\n name: 'clipboard_multiple',\n data: \"\"\n};\nexport var tylIconClipboardOffOutline = {\n name: 'clipboard_off_outline',\n data: \"\"\n};\nexport var tylIconClipboardOff = {\n name: 'clipboard_off',\n data: \"\"\n};\nexport var tylIconClipboardOutline = {\n name: 'clipboard_outline',\n data: \"\"\n};\nexport var tylIconClipboardPlayMultipleOutline = {\n name: 'clipboard_play_multiple_outline',\n data: \"\"\n};\nexport var tylIconClipboardPlayMultiple = {\n name: 'clipboard_play_multiple',\n data: \"\"\n};\nexport var tylIconClipboardPlayOutline = {\n name: 'clipboard_play_outline',\n data: \"\"\n};\nexport var tylIconClipboardPlay = {\n name: 'clipboard_play',\n data: \"\"\n};\nexport var tylIconClipboardPlusOutline = {\n name: 'clipboard_plus_outline',\n data: \"\"\n};\nexport var tylIconClipboardPlus = {\n name: 'clipboard_plus',\n data: \"\"\n};\nexport var tylIconClipboardPulseOutline = {\n name: 'clipboard_pulse_outline',\n data: \"\"\n};\nexport var tylIconClipboardPulse = {\n name: 'clipboard_pulse',\n data: \"\"\n};\nexport var tylIconClipboardRemoveOutline = {\n name: 'clipboard_remove_outline',\n data: \"\"\n};\nexport var tylIconClipboardRemove = {\n name: 'clipboard_remove',\n data: \"\"\n};\nexport var tylIconClipboardSearchOutline = {\n name: 'clipboard_search_outline',\n data: \"\"\n};\nexport var tylIconClipboardSearch = {\n name: 'clipboard_search',\n data: \"\"\n};\nexport var tylIconClipboardTextMultipleOutline = {\n name: 'clipboard_text_multiple_outline',\n data: \"\"\n};\nexport var tylIconClipboardTextMultiple = {\n name: 'clipboard_text_multiple',\n data: \"\"\n};\nexport var tylIconClipboardTextOffOutline = {\n name: 'clipboard_text_off_outline',\n data: \"\"\n};\nexport var tylIconClipboardTextOff = {\n name: 'clipboard_text_off',\n data: \"\"\n};\nexport var tylIconClipboardTextOutline = {\n name: 'clipboard_text_outline',\n data: \"\"\n};\nexport var tylIconClipboardTextPlayOutline = {\n name: 'clipboard_text_play_outline',\n data: \"\"\n};\nexport var tylIconClipboardTextPlay = {\n name: 'clipboard_text_play',\n data: \"\"\n};\nexport var tylIconClipboardTextSearchOutline = {\n name: 'clipboard_text_search_outline',\n data: \"\"\n};\nexport var tylIconClipboardTextSearch = {\n name: 'clipboard_text_search',\n data: \"\"\n};\nexport var tylIconClipboardText = {\n name: 'clipboard_text',\n data: \"\"\n};\nexport var tylIconClipboard = {\n name: 'clipboard',\n data: \"\"\n};\nexport var tylIconClippy = {\n name: 'clippy',\n data: \"\"\n};\nexport var tylIconClockAlertOutline = {\n name: 'clock_alert_outline',\n data: \"\"\n};\nexport var tylIconClockAlert = {\n name: 'clock_alert',\n data: \"\"\n};\nexport var tylIconClockCheckOutline = {\n name: 'clock_check_outline',\n data: \"\"\n};\nexport var tylIconClockCheck = {\n name: 'clock_check',\n data: \"\"\n};\nexport var tylIconClockDigital = {\n name: 'clock_digital',\n data: \"\"\n};\nexport var tylIconClockEnd = {\n name: 'clock_end',\n data: \"\"\n};\nexport var tylIconClockFast = {\n name: 'clock_fast',\n data: \"\"\n};\nexport var tylIconClockIn = {\n name: 'clock_in',\n data: \"\"\n};\nexport var tylIconClockOut = {\n name: 'clock_out',\n data: \"\"\n};\nexport var tylIconClockOutline = {\n name: 'clock_outline',\n data: \"\"\n};\nexport var tylIconClockStart = {\n name: 'clock_start',\n data: \"\"\n};\nexport var tylIconClockTimeEightOutline = {\n name: 'clock_time_eight_outline',\n data: \"\"\n};\nexport var tylIconClockTimeEight = {\n name: 'clock_time_eight',\n data: \"\"\n};\nexport var tylIconClockTimeElevenOutline = {\n name: 'clock_time_eleven_outline',\n data: \"\"\n};\nexport var tylIconClockTimeEleven = {\n name: 'clock_time_eleven',\n data: \"\"\n};\nexport var tylIconClockTimeFiveOutline = {\n name: 'clock_time_five_outline',\n data: \"\"\n};\nexport var tylIconClockTimeFive = {\n name: 'clock_time_five',\n data: \"\"\n};\nexport var tylIconClockTimeFourOutline = {\n name: 'clock_time_four_outline',\n data: \"\"\n};\nexport var tylIconClockTimeFour = {\n name: 'clock_time_four',\n data: \"\"\n};\nexport var tylIconClockTimeNineOutline = {\n name: 'clock_time_nine_outline',\n data: \"\"\n};\nexport var tylIconClockTimeNine = {\n name: 'clock_time_nine',\n data: \"\"\n};\nexport var tylIconClockTimeOneOutline = {\n name: 'clock_time_one_outline',\n data: \"\"\n};\nexport var tylIconClockTimeOne = {\n name: 'clock_time_one',\n data: \"\"\n};\nexport var tylIconClockTimeSevenOutline = {\n name: 'clock_time_seven_outline',\n data: \"\"\n};\nexport var tylIconClockTimeSeven = {\n name: 'clock_time_seven',\n data: \"\"\n};\nexport var tylIconClockTimeSixOutline = {\n name: 'clock_time_six_outline',\n data: \"\"\n};\nexport var tylIconClockTimeSix = {\n name: 'clock_time_six',\n data: \"\"\n};\nexport var tylIconClockTimeTenOutline = {\n name: 'clock_time_ten_outline',\n data: \"\"\n};\nexport var tylIconClockTimeTen = {\n name: 'clock_time_ten',\n data: \"\"\n};\nexport var tylIconClockTimeThreeOutline = {\n name: 'clock_time_three_outline',\n data: \"\"\n};\nexport var tylIconClockTimeThree = {\n name: 'clock_time_three',\n data: \"\"\n};\nexport var tylIconClockTimeTwelveOutline = {\n name: 'clock_time_twelve_outline',\n data: \"\"\n};\nexport var tylIconClockTimeTwelve = {\n name: 'clock_time_twelve',\n data: \"\"\n};\nexport var tylIconClockTimeTwoOutline = {\n name: 'clock_time_two_outline',\n data: \"\"\n};\nexport var tylIconClockTimeTwo = {\n name: 'clock_time_two',\n data: \"\"\n};\nexport var tylIconClock = {\n name: 'clock',\n data: \"\"\n};\nexport var tylIconCloseBoxMultipleOutline = {\n name: 'close_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconCloseBoxMultiple = {\n name: 'close_box_multiple',\n data: \"\"\n};\nexport var tylIconCloseBoxOutline = {\n name: 'close_box_outline',\n data: \"\"\n};\nexport var tylIconCloseBox = {\n name: 'close_box',\n data: \"\"\n};\nexport var tylIconCloseCircleMultipleOutline = {\n name: 'close_circle_multiple_outline',\n data: \"\"\n};\nexport var tylIconCloseCircleMultiple = {\n name: 'close_circle_multiple',\n data: \"\"\n};\nexport var tylIconCloseCircleOutline = {\n name: 'close_circle_outline',\n data: \"\"\n};\nexport var tylIconCloseCircle = {\n name: 'close_circle',\n data: \"\"\n};\nexport var tylIconCloseNetworkOutline = {\n name: 'close_network_outline',\n data: \"\"\n};\nexport var tylIconCloseNetwork = {\n name: 'close_network',\n data: \"\"\n};\nexport var tylIconCloseOctagonOutline = {\n name: 'close_octagon_outline',\n data: \"\"\n};\nexport var tylIconCloseOctagon = {\n name: 'close_octagon',\n data: \"\"\n};\nexport var tylIconCloseOutline = {\n name: 'close_outline',\n data: \"\"\n};\nexport var tylIconCloseThick = {\n name: 'close_thick',\n data: \"\"\n};\nexport var tylIconClose = {\n name: 'close',\n data: \"\"\n};\nexport var tylIconClosedCaptionOutline = {\n name: 'closed_caption_outline',\n data: \"\"\n};\nexport var tylIconClosedCaption = {\n name: 'closed_caption',\n data: \"\"\n};\nexport var tylIconCloudAlert = {\n name: 'cloud_alert',\n data: \"\"\n};\nexport var tylIconCloudBraces = {\n name: 'cloud_braces',\n data: \"\"\n};\nexport var tylIconCloudCheckOutline = {\n name: 'cloud_check_outline',\n data: \"\"\n};\nexport var tylIconCloudCheck = {\n name: 'cloud_check',\n data: \"\"\n};\nexport var tylIconCloudCircle = {\n name: 'cloud_circle',\n data: \"\"\n};\nexport var tylIconCloudDownloadOutline = {\n name: 'cloud_download_outline',\n data: \"\"\n};\nexport var tylIconCloudDownload = {\n name: 'cloud_download',\n data: \"\"\n};\nexport var tylIconCloudLockOutline = {\n name: 'cloud_lock_outline',\n data: \"\"\n};\nexport var tylIconCloudLock = {\n name: 'cloud_lock',\n data: \"\"\n};\nexport var tylIconCloudOffOutline = {\n name: 'cloud_off_outline',\n data: \"\"\n};\nexport var tylIconCloudOutline = {\n name: 'cloud_outline',\n data: \"\"\n};\nexport var tylIconCloudPrintOutline = {\n name: 'cloud_print_outline',\n data: \"\"\n};\nexport var tylIconCloudPrint = {\n name: 'cloud_print',\n data: \"\"\n};\nexport var tylIconCloudQuestion = {\n name: 'cloud_question',\n data: \"\"\n};\nexport var tylIconCloudRefresh = {\n name: 'cloud_refresh',\n data: \"\"\n};\nexport var tylIconCloudSearchOutline = {\n name: 'cloud_search_outline',\n data: \"\"\n};\nexport var tylIconCloudSearch = {\n name: 'cloud_search',\n data: \"\"\n};\nexport var tylIconCloudSyncOutline = {\n name: 'cloud_sync_outline',\n data: \"\"\n};\nexport var tylIconCloudSync = {\n name: 'cloud_sync',\n data: \"\"\n};\nexport var tylIconCloudTags = {\n name: 'cloud_tags',\n data: \"\"\n};\nexport var tylIconCloudUploadOutline = {\n name: 'cloud_upload_outline',\n data: \"\"\n};\nexport var tylIconCloudUpload = {\n name: 'cloud_upload',\n data: \"\"\n};\nexport var tylIconCloud = {\n name: 'cloud',\n data: \"\"\n};\nexport var tylIconClover = {\n name: 'clover',\n data: \"\"\n};\nexport var tylIconCoachLamp = {\n name: 'coach_lamp',\n data: \"\"\n};\nexport var tylIconCoatRack = {\n name: 'coat_rack',\n data: \"\"\n};\nexport var tylIconCodeArray = {\n name: 'code_array',\n data: \"\"\n};\nexport var tylIconCodeBracesBox = {\n name: 'code_braces_box',\n data: \"\"\n};\nexport var tylIconCodeBraces = {\n name: 'code_braces',\n data: \"\"\n};\nexport var tylIconCodeBrackets = {\n name: 'code_brackets',\n data: \"\"\n};\nexport var tylIconCodeEqual = {\n name: 'code_equal',\n data: \"\"\n};\nexport var tylIconCodeGreaterThanOrEqual = {\n name: 'code_greater_than_or_equal',\n data: \"\"\n};\nexport var tylIconCodeGreaterThan = {\n name: 'code_greater_than',\n data: \"\"\n};\nexport var tylIconCodeJson = {\n name: 'code_json',\n data: \"\"\n};\nexport var tylIconCodeLessThanOrEqual = {\n name: 'code_less_than_or_equal',\n data: \"\"\n};\nexport var tylIconCodeLessThan = {\n name: 'code_less_than',\n data: \"\"\n};\nexport var tylIconCodeNotEqualVariant = {\n name: 'code_not_equal_variant',\n data: \"\"\n};\nexport var tylIconCodeNotEqual = {\n name: 'code_not_equal',\n data: \"\"\n};\nexport var tylIconCodeParenthesesBox = {\n name: 'code_parentheses_box',\n data: \"\"\n};\nexport var tylIconCodeParentheses = {\n name: 'code_parentheses',\n data: \"\"\n};\nexport var tylIconCodeString = {\n name: 'code_string',\n data: \"\"\n};\nexport var tylIconCodeTagsCheck = {\n name: 'code_tags_check',\n data: \"\"\n};\nexport var tylIconCodeTags = {\n name: 'code_tags',\n data: \"\"\n};\nexport var tylIconCodepen = {\n name: 'codepen',\n data: \"\"\n};\nexport var tylIconCoffeeMaker = {\n name: 'coffee_maker',\n data: \"\"\n};\nexport var tylIconCoffeeOffOutline = {\n name: 'coffee_off_outline',\n data: \"\"\n};\nexport var tylIconCoffeeOff = {\n name: 'coffee_off',\n data: \"\"\n};\nexport var tylIconCoffeeOutline = {\n name: 'coffee_outline',\n data: \"\"\n};\nexport var tylIconCoffeeToGoOutline = {\n name: 'coffee_to_go_outline',\n data: \"\"\n};\nexport var tylIconCoffeeToGo = {\n name: 'coffee_to_go',\n data: \"\"\n};\nexport var tylIconCoffee = {\n name: 'coffee',\n data: \"\"\n};\nexport var tylIconCoffin = {\n name: 'coffin',\n data: \"\"\n};\nexport var tylIconCogBox = {\n name: 'cog_box',\n data: \"\"\n};\nexport var tylIconCogClockwise = {\n name: 'cog_clockwise',\n data: \"\"\n};\nexport var tylIconCogCounterclockwise = {\n name: 'cog_counterclockwise',\n data: \"\"\n};\nexport var tylIconCogOffOutline = {\n name: 'cog_off_outline',\n data: \"\"\n};\nexport var tylIconCogOff = {\n name: 'cog_off',\n data: \"\"\n};\nexport var tylIconCogOutline = {\n name: 'cog_outline',\n data: \"\"\n};\nexport var tylIconCogRefreshOutline = {\n name: 'cog_refresh_outline',\n data: \"\"\n};\nexport var tylIconCogRefresh = {\n name: 'cog_refresh',\n data: \"\"\n};\nexport var tylIconCogSyncOutline = {\n name: 'cog_sync_outline',\n data: \"\"\n};\nexport var tylIconCogSync = {\n name: 'cog_sync',\n data: \"\"\n};\nexport var tylIconCogTransferOutline = {\n name: 'cog_transfer_outline',\n data: \"\"\n};\nexport var tylIconCogTransfer = {\n name: 'cog_transfer',\n data: \"\"\n};\nexport var tylIconCog = {\n name: 'cog',\n data: \"\"\n};\nexport var tylIconCogs = {\n name: 'cogs',\n data: \"\"\n};\nexport var tylIconCollage = {\n name: 'collage',\n data: \"\"\n};\nexport var tylIconCollapseAllOutline = {\n name: 'collapse_all_outline',\n data: \"\"\n};\nexport var tylIconCollapseAll = {\n name: 'collapse_all',\n data: \"\"\n};\nexport var tylIconColorHelper = {\n name: 'color_helper',\n data: \"\"\n};\nexport var tylIconCommaBoxOutline = {\n name: 'comma_box_outline',\n data: \"\"\n};\nexport var tylIconCommaBox = {\n name: 'comma_box',\n data: \"\"\n};\nexport var tylIconCommaCircleOutline = {\n name: 'comma_circle_outline',\n data: \"\"\n};\nexport var tylIconCommaCircle = {\n name: 'comma_circle',\n data: \"\"\n};\nexport var tylIconComma = {\n name: 'comma',\n data: \"\"\n};\nexport var tylIconCommentAccountOutline = {\n name: 'comment_account_outline',\n data: \"\"\n};\nexport var tylIconCommentAccount = {\n name: 'comment_account',\n data: \"\"\n};\nexport var tylIconCommentAlertOutline = {\n name: 'comment_alert_outline',\n data: \"\"\n};\nexport var tylIconCommentAlert = {\n name: 'comment_alert',\n data: \"\"\n};\nexport var tylIconCommentArrowLeftOutline = {\n name: 'comment_arrow_left_outline',\n data: \"\"\n};\nexport var tylIconCommentArrowLeft = {\n name: 'comment_arrow_left',\n data: \"\"\n};\nexport var tylIconCommentArrowRightOutline = {\n name: 'comment_arrow_right_outline',\n data: \"\"\n};\nexport var tylIconCommentArrowRight = {\n name: 'comment_arrow_right',\n data: \"\"\n};\nexport var tylIconCommentBookmarkOutline = {\n name: 'comment_bookmark_outline',\n data: \"\"\n};\nexport var tylIconCommentBookmark = {\n name: 'comment_bookmark',\n data: \"\"\n};\nexport var tylIconCommentCheckOutline = {\n name: 'comment_check_outline',\n data: \"\"\n};\nexport var tylIconCommentCheck = {\n name: 'comment_check',\n data: \"\"\n};\nexport var tylIconCommentEditOutline = {\n name: 'comment_edit_outline',\n data: \"\"\n};\nexport var tylIconCommentEdit = {\n name: 'comment_edit',\n data: \"\"\n};\nexport var tylIconCommentEyeOutline = {\n name: 'comment_eye_outline',\n data: \"\"\n};\nexport var tylIconCommentEye = {\n name: 'comment_eye',\n data: \"\"\n};\nexport var tylIconCommentFlashOutline = {\n name: 'comment_flash_outline',\n data: \"\"\n};\nexport var tylIconCommentFlash = {\n name: 'comment_flash',\n data: \"\"\n};\nexport var tylIconCommentMinusOutline = {\n name: 'comment_minus_outline',\n data: \"\"\n};\nexport var tylIconCommentMinus = {\n name: 'comment_minus',\n data: \"\"\n};\nexport var tylIconCommentMultipleOutline = {\n name: 'comment_multiple_outline',\n data: \"\"\n};\nexport var tylIconCommentMultiple = {\n name: 'comment_multiple',\n data: \"\"\n};\nexport var tylIconCommentOffOutline = {\n name: 'comment_off_outline',\n data: \"\"\n};\nexport var tylIconCommentOff = {\n name: 'comment_off',\n data: \"\"\n};\nexport var tylIconCommentOutline = {\n name: 'comment_outline',\n data: \"\"\n};\nexport var tylIconCommentPlusOutline = {\n name: 'comment_plus_outline',\n data: \"\"\n};\nexport var tylIconCommentPlus = {\n name: 'comment_plus',\n data: \"\"\n};\nexport var tylIconCommentProcessingOutline = {\n name: 'comment_processing_outline',\n data: \"\"\n};\nexport var tylIconCommentProcessing = {\n name: 'comment_processing',\n data: \"\"\n};\nexport var tylIconCommentQuestionOutline = {\n name: 'comment_question_outline',\n data: \"\"\n};\nexport var tylIconCommentQuestion = {\n name: 'comment_question',\n data: \"\"\n};\nexport var tylIconCommentQuoteOutline = {\n name: 'comment_quote_outline',\n data: \"\"\n};\nexport var tylIconCommentQuote = {\n name: 'comment_quote',\n data: \"\"\n};\nexport var tylIconCommentRemoveOutline = {\n name: 'comment_remove_outline',\n data: \"\"\n};\nexport var tylIconCommentRemove = {\n name: 'comment_remove',\n data: \"\"\n};\nexport var tylIconCommentSearchOutline = {\n name: 'comment_search_outline',\n data: \"\"\n};\nexport var tylIconCommentSearch = {\n name: 'comment_search',\n data: \"\"\n};\nexport var tylIconCommentTextMultipleOutline = {\n name: 'comment_text_multiple_outline',\n data: \"\"\n};\nexport var tylIconCommentTextMultiple = {\n name: 'comment_text_multiple',\n data: \"\"\n};\nexport var tylIconCommentTextOutline = {\n name: 'comment_text_outline',\n data: \"\"\n};\nexport var tylIconCommentText = {\n name: 'comment_text',\n data: \"\"\n};\nexport var tylIconComment = {\n name: 'comment',\n data: \"\"\n};\nexport var tylIconCompareHorizontal = {\n name: 'compare_horizontal',\n data: \"\"\n};\nexport var tylIconCompareVertical = {\n name: 'compare_vertical',\n data: \"\"\n};\nexport var tylIconCompare = {\n name: 'compare',\n data: \"\"\n};\nexport var tylIconCompassOffOutline = {\n name: 'compass_off_outline',\n data: \"\"\n};\nexport var tylIconCompassOff = {\n name: 'compass_off',\n data: \"\"\n};\nexport var tylIconCompassOutline = {\n name: 'compass_outline',\n data: \"\"\n};\nexport var tylIconCompassRose = {\n name: 'compass_rose',\n data: \"\"\n};\nexport var tylIconCompass = {\n name: 'compass',\n data: \"\"\n};\nexport var tylIconConcourseCi = {\n name: 'concourse_ci',\n data: \"\"\n};\nexport var tylIconConnection = {\n name: 'connection',\n data: \"\"\n};\nexport var tylIconConsoleLine = {\n name: 'console_line',\n data: \"\"\n};\nexport var tylIconConsoleNetworkOutline = {\n name: 'console_network_outline',\n data: \"\"\n};\nexport var tylIconConsoleNetwork = {\n name: 'console_network',\n data: \"\"\n};\nexport var tylIconConsole = {\n name: 'console',\n data: \"\"\n};\nexport var tylIconConsolidate = {\n name: 'consolidate',\n data: \"\"\n};\nexport var tylIconContactlessPaymentCircleOutline = {\n name: 'contactless_payment_circle_outline',\n data: \"\"\n};\nexport var tylIconContactlessPaymentCircle = {\n name: 'contactless_payment_circle',\n data: \"\"\n};\nexport var tylIconContactlessPayment = {\n name: 'contactless_payment',\n data: \"\"\n};\nexport var tylIconContactsOutline = {\n name: 'contacts_outline',\n data: \"\"\n};\nexport var tylIconContacts = {\n name: 'contacts',\n data: \"\"\n};\nexport var tylIconContainEnd = {\n name: 'contain_end',\n data: \"\"\n};\nexport var tylIconContainStart = {\n name: 'contain_start',\n data: \"\"\n};\nexport var tylIconContain = {\n name: 'contain',\n data: \"\"\n};\nexport var tylIconContentCopy = {\n name: 'content_copy',\n data: \"\"\n};\nexport var tylIconContentCut = {\n name: 'content_cut',\n data: \"\"\n};\nexport var tylIconContentDuplicate = {\n name: 'content_duplicate',\n data: \"\"\n};\nexport var tylIconContentPaste = {\n name: 'content_paste',\n data: \"\"\n};\nexport var tylIconContentSaveAlertOutline = {\n name: 'content_save_alert_outline',\n data: \"\"\n};\nexport var tylIconContentSaveAlert = {\n name: 'content_save_alert',\n data: \"\"\n};\nexport var tylIconContentSaveAllOutline = {\n name: 'content_save_all_outline',\n data: \"\"\n};\nexport var tylIconContentSaveAll = {\n name: 'content_save_all',\n data: \"\"\n};\nexport var tylIconContentSaveCogOutline = {\n name: 'content_save_cog_outline',\n data: \"\"\n};\nexport var tylIconContentSaveCog = {\n name: 'content_save_cog',\n data: \"\"\n};\nexport var tylIconContentSaveEditOutline = {\n name: 'content_save_edit_outline',\n data: \"\"\n};\nexport var tylIconContentSaveEdit = {\n name: 'content_save_edit',\n data: \"\"\n};\nexport var tylIconContentSaveMoveOutline = {\n name: 'content_save_move_outline',\n data: \"\"\n};\nexport var tylIconContentSaveMove = {\n name: 'content_save_move',\n data: \"\"\n};\nexport var tylIconContentSaveOffOutline = {\n name: 'content_save_off_outline',\n data: \"\"\n};\nexport var tylIconContentSaveOff = {\n name: 'content_save_off',\n data: \"\"\n};\nexport var tylIconContentSaveOutline = {\n name: 'content_save_outline',\n data: \"\"\n};\nexport var tylIconContentSaveSettingsOutline = {\n name: 'content_save_settings_outline',\n data: \"\"\n};\nexport var tylIconContentSaveSettings = {\n name: 'content_save_settings',\n data: \"\"\n};\nexport var tylIconContentSave = {\n name: 'content_save',\n data: \"\"\n};\nexport var tylIconContrastBox = {\n name: 'contrast_box',\n data: \"\"\n};\nexport var tylIconContrastCircle = {\n name: 'contrast_circle',\n data: \"\"\n};\nexport var tylIconContrast = {\n name: 'contrast',\n data: \"\"\n};\nexport var tylIconControllerClassicOutline = {\n name: 'controller_classic_outline',\n data: \"\"\n};\nexport var tylIconControllerClassic = {\n name: 'controller_classic',\n data: \"\"\n};\nexport var tylIconCookieAlertOutline = {\n name: 'cookie_alert_outline',\n data: \"\"\n};\nexport var tylIconCookieAlert = {\n name: 'cookie_alert',\n data: \"\"\n};\nexport var tylIconCookieCheckOutline = {\n name: 'cookie_check_outline',\n data: \"\"\n};\nexport var tylIconCookieCheck = {\n name: 'cookie_check',\n data: \"\"\n};\nexport var tylIconCookieClockOutline = {\n name: 'cookie_clock_outline',\n data: \"\"\n};\nexport var tylIconCookieClock = {\n name: 'cookie_clock',\n data: \"\"\n};\nexport var tylIconCookieCogOutline = {\n name: 'cookie_cog_outline',\n data: \"\"\n};\nexport var tylIconCookieCog = {\n name: 'cookie_cog',\n data: \"\"\n};\nexport var tylIconCookieEditOutline = {\n name: 'cookie_edit_outline',\n data: \"\"\n};\nexport var tylIconCookieEdit = {\n name: 'cookie_edit',\n data: \"\"\n};\nexport var tylIconCookieLockOutline = {\n name: 'cookie_lock_outline',\n data: \"\"\n};\nexport var tylIconCookieLock = {\n name: 'cookie_lock',\n data: \"\"\n};\nexport var tylIconCookieMinusOutline = {\n name: 'cookie_minus_outline',\n data: \"\"\n};\nexport var tylIconCookieMinus = {\n name: 'cookie_minus',\n data: \"\"\n};\nexport var tylIconCookieOffOutline = {\n name: 'cookie_off_outline',\n data: \"\"\n};\nexport var tylIconCookieOff = {\n name: 'cookie_off',\n data: \"\"\n};\nexport var tylIconCookieOutline = {\n name: 'cookie_outline',\n data: \"\"\n};\nexport var tylIconCookiePlusOutline = {\n name: 'cookie_plus_outline',\n data: \"\"\n};\nexport var tylIconCookiePlus = {\n name: 'cookie_plus',\n data: \"\"\n};\nexport var tylIconCookieRefreshOutline = {\n name: 'cookie_refresh_outline',\n data: \"\"\n};\nexport var tylIconCookieRefresh = {\n name: 'cookie_refresh',\n data: \"\"\n};\nexport var tylIconCookieRemoveOutline = {\n name: 'cookie_remove_outline',\n data: \"\"\n};\nexport var tylIconCookieRemove = {\n name: 'cookie_remove',\n data: \"\"\n};\nexport var tylIconCookieSettingsOutline = {\n name: 'cookie_settings_outline',\n data: \"\"\n};\nexport var tylIconCookieSettings = {\n name: 'cookie_settings',\n data: \"\"\n};\nexport var tylIconCookie = {\n name: 'cookie',\n data: \"\"\n};\nexport var tylIconCoolantTemperature = {\n name: 'coolant_temperature',\n data: \"\"\n};\nexport var tylIconCopyright = {\n name: 'copyright',\n data: \"\"\n};\nexport var tylIconCordova = {\n name: 'cordova',\n data: \"\"\n};\nexport var tylIconCornOff = {\n name: 'corn_off',\n data: \"\"\n};\nexport var tylIconCorn = {\n name: 'corn',\n data: \"\"\n};\nexport var tylIconCosineWave = {\n name: 'cosine_wave',\n data: \"\"\n};\nexport var tylIconCounter = {\n name: 'counter',\n data: \"\"\n};\nexport var tylIconCow = {\n name: 'cow',\n data: \"\"\n};\nexport var tylIconCpu32Bit = {\n name: 'cpu_32_bit',\n data: \"\"\n};\nexport var tylIconCpu64Bit = {\n name: 'cpu_64_bit',\n data: \"\"\n};\nexport var tylIconCrane = {\n name: 'crane',\n data: \"\"\n};\nexport var tylIconCreation = {\n name: 'creation',\n data: \"\"\n};\nexport var tylIconCreativeCommons = {\n name: 'creative_commons',\n data: \"\"\n};\nexport var tylIconCreditCardCheckOutline = {\n name: 'credit_card_check_outline',\n data: \"\"\n};\nexport var tylIconCreditCardCheck = {\n name: 'credit_card_check',\n data: \"\"\n};\nexport var tylIconCreditCardClockOutline = {\n name: 'credit_card_clock_outline',\n data: \"\"\n};\nexport var tylIconCreditCardClock = {\n name: 'credit_card_clock',\n data: \"\"\n};\nexport var tylIconCreditCardMarkerOutline = {\n name: 'credit_card_marker_outline',\n data: \"\"\n};\nexport var tylIconCreditCardMarker = {\n name: 'credit_card_marker',\n data: \"\"\n};\nexport var tylIconCreditCardMinusOutline = {\n name: 'credit_card_minus_outline',\n data: \"\"\n};\nexport var tylIconCreditCardMinus = {\n name: 'credit_card_minus',\n data: \"\"\n};\nexport var tylIconCreditCardMultipleOutline = {\n name: 'credit_card_multiple_outline',\n data: \"\"\n};\nexport var tylIconCreditCardMultiple = {\n name: 'credit_card_multiple',\n data: \"\"\n};\nexport var tylIconCreditCardOffOutline = {\n name: 'credit_card_off_outline',\n data: \"\"\n};\nexport var tylIconCreditCardOff = {\n name: 'credit_card_off',\n data: \"\"\n};\nexport var tylIconCreditCardOutline = {\n name: 'credit_card_outline',\n data: \"\"\n};\nexport var tylIconCreditCardPlusOutline = {\n name: 'credit_card_plus_outline',\n data: \"\"\n};\nexport var tylIconCreditCardPlus = {\n name: 'credit_card_plus',\n data: \"\"\n};\nexport var tylIconCreditCardRefreshOutline = {\n name: 'credit_card_refresh_outline',\n data: \"\"\n};\nexport var tylIconCreditCardRefresh = {\n name: 'credit_card_refresh',\n data: \"\"\n};\nexport var tylIconCreditCardRefundOutline = {\n name: 'credit_card_refund_outline',\n data: \"\"\n};\nexport var tylIconCreditCardRefund = {\n name: 'credit_card_refund',\n data: \"\"\n};\nexport var tylIconCreditCardRemoveOutline = {\n name: 'credit_card_remove_outline',\n data: \"\"\n};\nexport var tylIconCreditCardRemove = {\n name: 'credit_card_remove',\n data: \"\"\n};\nexport var tylIconCreditCardScanOutline = {\n name: 'credit_card_scan_outline',\n data: \"\"\n};\nexport var tylIconCreditCardScan = {\n name: 'credit_card_scan',\n data: \"\"\n};\nexport var tylIconCreditCardSearchOutline = {\n name: 'credit_card_search_outline',\n data: \"\"\n};\nexport var tylIconCreditCardSearch = {\n name: 'credit_card_search',\n data: \"\"\n};\nexport var tylIconCreditCardSettingsOutline = {\n name: 'credit_card_settings_outline',\n data: \"\"\n};\nexport var tylIconCreditCardSettings = {\n name: 'credit_card_settings',\n data: \"\"\n};\nexport var tylIconCreditCardSyncOutline = {\n name: 'credit_card_sync_outline',\n data: \"\"\n};\nexport var tylIconCreditCardSync = {\n name: 'credit_card_sync',\n data: \"\"\n};\nexport var tylIconCreditCardWirelessOffOutline = {\n name: 'credit_card_wireless_off_outline',\n data: \"\"\n};\nexport var tylIconCreditCardWirelessOff = {\n name: 'credit_card_wireless_off',\n data: \"\"\n};\nexport var tylIconCreditCardWirelessOutline = {\n name: 'credit_card_wireless_outline',\n data: \"\"\n};\nexport var tylIconCreditCardWireless = {\n name: 'credit_card_wireless',\n data: \"\"\n};\nexport var tylIconCreditCard = {\n name: 'credit_card',\n data: \"\"\n};\nexport var tylIconCricket = {\n name: 'cricket',\n data: \"\"\n};\nexport var tylIconCropFree = {\n name: 'crop_free',\n data: \"\"\n};\nexport var tylIconCropLandscape = {\n name: 'crop_landscape',\n data: \"\"\n};\nexport var tylIconCropPortrait = {\n name: 'crop_portrait',\n data: \"\"\n};\nexport var tylIconCropRotate = {\n name: 'crop_rotate',\n data: \"\"\n};\nexport var tylIconCropSquare = {\n name: 'crop_square',\n data: \"\"\n};\nexport var tylIconCrop = {\n name: 'crop',\n data: \"\"\n};\nexport var tylIconCrosshairsGps = {\n name: 'crosshairs_gps',\n data: \"\"\n};\nexport var tylIconCrosshairsOff = {\n name: 'crosshairs_off',\n data: \"\"\n};\nexport var tylIconCrosshairsQuestion = {\n name: 'crosshairs_question',\n data: \"\"\n};\nexport var tylIconCrosshairs = {\n name: 'crosshairs',\n data: \"\"\n};\nexport var tylIconCrownOutline = {\n name: 'crown_outline',\n data: \"\"\n};\nexport var tylIconCrown = {\n name: 'crown',\n data: \"\"\n};\nexport var tylIconCryengine = {\n name: 'cryengine',\n data: \"\"\n};\nexport var tylIconCrystalBall = {\n name: 'crystal_ball',\n data: \"\"\n};\nexport var tylIconCubeOffOutline = {\n name: 'cube_off_outline',\n data: \"\"\n};\nexport var tylIconCubeOff = {\n name: 'cube_off',\n data: \"\"\n};\nexport var tylIconCubeOutline = {\n name: 'cube_outline',\n data: \"\"\n};\nexport var tylIconCubeScan = {\n name: 'cube_scan',\n data: \"\"\n};\nexport var tylIconCubeSend = {\n name: 'cube_send',\n data: \"\"\n};\nexport var tylIconCubeUnfolded = {\n name: 'cube_unfolded',\n data: \"\"\n};\nexport var tylIconCube = {\n name: 'cube',\n data: \"\"\n};\nexport var tylIconCupOffOutline = {\n name: 'cup_off_outline',\n data: \"\"\n};\nexport var tylIconCupOff = {\n name: 'cup_off',\n data: \"\"\n};\nexport var tylIconCupOutline = {\n name: 'cup_outline',\n data: \"\"\n};\nexport var tylIconCupWater = {\n name: 'cup_water',\n data: \"\"\n};\nexport var tylIconCup = {\n name: 'cup',\n data: \"\"\n};\nexport var tylIconCupboardOutline = {\n name: 'cupboard_outline',\n data: \"\"\n};\nexport var tylIconCupboard = {\n name: 'cupboard',\n data: \"\"\n};\nexport var tylIconCupcake = {\n name: 'cupcake',\n data: \"\"\n};\nexport var tylIconCurling = {\n name: 'curling',\n data: \"\"\n};\nexport var tylIconCurrencyBdt = {\n name: 'currency_bdt',\n data: \"\"\n};\nexport var tylIconCurrencyBrl = {\n name: 'currency_brl',\n data: \"\"\n};\nexport var tylIconCurrencyBtc = {\n name: 'currency_btc',\n data: \"\"\n};\nexport var tylIconCurrencyCny = {\n name: 'currency_cny',\n data: \"\"\n};\nexport var tylIconCurrencyEth = {\n name: 'currency_eth',\n data: \"\"\n};\nexport var tylIconCurrencyEurOff = {\n name: 'currency_eur_off',\n data: \"\"\n};\nexport var tylIconCurrencyEur = {\n name: 'currency_eur',\n data: \"\"\n};\nexport var tylIconCurrencyGbp = {\n name: 'currency_gbp',\n data: \"\"\n};\nexport var tylIconCurrencyIls = {\n name: 'currency_ils',\n data: \"\"\n};\nexport var tylIconCurrencyInr = {\n name: 'currency_inr',\n data: \"\"\n};\nexport var tylIconCurrencyJpy = {\n name: 'currency_jpy',\n data: \"\"\n};\nexport var tylIconCurrencyKrw = {\n name: 'currency_krw',\n data: \"\"\n};\nexport var tylIconCurrencyKzt = {\n name: 'currency_kzt',\n data: \"\"\n};\nexport var tylIconCurrencyMnt = {\n name: 'currency_mnt',\n data: \"\"\n};\nexport var tylIconCurrencyNgn = {\n name: 'currency_ngn',\n data: \"\"\n};\nexport var tylIconCurrencyPhp = {\n name: 'currency_php',\n data: \"\"\n};\nexport var tylIconCurrencyRial = {\n name: 'currency_rial',\n data: \"\"\n};\nexport var tylIconCurrencyRub = {\n name: 'currency_rub',\n data: \"\"\n};\nexport var tylIconCurrencySign = {\n name: 'currency_sign',\n data: \"\"\n};\nexport var tylIconCurrencyTry = {\n name: 'currency_try',\n data: \"\"\n};\nexport var tylIconCurrencyTwd = {\n name: 'currency_twd',\n data: \"\"\n};\nexport var tylIconCurrencyUsdCircleOutline = {\n name: 'currency_usd_circle_outline',\n data: \"\"\n};\nexport var tylIconCurrencyUsdCircle = {\n name: 'currency_usd_circle',\n data: \"\"\n};\nexport var tylIconCurrencyUsdOff = {\n name: 'currency_usd_off',\n data: \"\"\n};\nexport var tylIconCurrencyUsd = {\n name: 'currency_usd',\n data: \"\"\n};\nexport var tylIconCurrentAc = {\n name: 'current_ac',\n data: \"\"\n};\nexport var tylIconCurrentDc = {\n name: 'current_dc',\n data: \"\"\n};\nexport var tylIconCursorDefaultClickOutline = {\n name: 'cursor_default_click_outline',\n data: \"\"\n};\nexport var tylIconCursorDefaultClick = {\n name: 'cursor_default_click',\n data: \"\"\n};\nexport var tylIconCursorDefaultGestureOutline = {\n name: 'cursor_default_gesture_outline',\n data: \"\"\n};\nexport var tylIconCursorDefaultGesture = {\n name: 'cursor_default_gesture',\n data: \"\"\n};\nexport var tylIconCursorDefaultOutline = {\n name: 'cursor_default_outline',\n data: \"\"\n};\nexport var tylIconCursorDefault = {\n name: 'cursor_default',\n data: \"\"\n};\nexport var tylIconCursorMove = {\n name: 'cursor_move',\n data: \"\"\n};\nexport var tylIconCursorPointer = {\n name: 'cursor_pointer',\n data: \"\"\n};\nexport var tylIconCursorText = {\n name: 'cursor_text',\n data: \"\"\n};\nexport var tylIconDanceBallroom = {\n name: 'dance_ballroom',\n data: \"\"\n};\nexport var tylIconDancePole = {\n name: 'dance_pole',\n data: \"\"\n};\nexport var tylIconDataMatrixEdit = {\n name: 'data_matrix_edit',\n data: \"\"\n};\nexport var tylIconDataMatrixMinus = {\n name: 'data_matrix_minus',\n data: \"\"\n};\nexport var tylIconDataMatrixPlus = {\n name: 'data_matrix_plus',\n data: \"\"\n};\nexport var tylIconDataMatrixRemove = {\n name: 'data_matrix_remove',\n data: \"\"\n};\nexport var tylIconDataMatrixScan = {\n name: 'data_matrix_scan',\n data: \"\"\n};\nexport var tylIconDataMatrix = {\n name: 'data_matrix',\n data: \"\"\n};\nexport var tylIconDatabaseAlertOutline = {\n name: 'database_alert_outline',\n data: \"\"\n};\nexport var tylIconDatabaseAlert = {\n name: 'database_alert',\n data: \"\"\n};\nexport var tylIconDatabaseArrowDownOutline = {\n name: 'database_arrow_down_outline',\n data: \"\"\n};\nexport var tylIconDatabaseArrowDown = {\n name: 'database_arrow_down',\n data: \"\"\n};\nexport var tylIconDatabaseArrowLeftOutline = {\n name: 'database_arrow_left_outline',\n data: \"\"\n};\nexport var tylIconDatabaseArrowLeft = {\n name: 'database_arrow_left',\n data: \"\"\n};\nexport var tylIconDatabaseArrowRightOutline = {\n name: 'database_arrow_right_outline',\n data: \"\"\n};\nexport var tylIconDatabaseArrowRight = {\n name: 'database_arrow_right',\n data: \"\"\n};\nexport var tylIconDatabaseArrowUpOutline = {\n name: 'database_arrow_up_outline',\n data: \"\"\n};\nexport var tylIconDatabaseArrowUp = {\n name: 'database_arrow_up',\n data: \"\"\n};\nexport var tylIconDatabaseCheckOutline = {\n name: 'database_check_outline',\n data: \"\"\n};\nexport var tylIconDatabaseCheck = {\n name: 'database_check',\n data: \"\"\n};\nexport var tylIconDatabaseClockOutline = {\n name: 'database_clock_outline',\n data: \"\"\n};\nexport var tylIconDatabaseClock = {\n name: 'database_clock',\n data: \"\"\n};\nexport var tylIconDatabaseCogOutline = {\n name: 'database_cog_outline',\n data: \"\"\n};\nexport var tylIconDatabaseCog = {\n name: 'database_cog',\n data: \"\"\n};\nexport var tylIconDatabaseEditOutline = {\n name: 'database_edit_outline',\n data: \"\"\n};\nexport var tylIconDatabaseEdit = {\n name: 'database_edit',\n data: \"\"\n};\nexport var tylIconDatabaseExportOutline = {\n name: 'database_export_outline',\n data: \"\"\n};\nexport var tylIconDatabaseExport = {\n name: 'database_export',\n data: \"\"\n};\nexport var tylIconDatabaseImportOutline = {\n name: 'database_import_outline',\n data: \"\"\n};\nexport var tylIconDatabaseImport = {\n name: 'database_import',\n data: \"\"\n};\nexport var tylIconDatabaseLockOutline = {\n name: 'database_lock_outline',\n data: \"\"\n};\nexport var tylIconDatabaseLock = {\n name: 'database_lock',\n data: \"\"\n};\nexport var tylIconDatabaseMarkerOutline = {\n name: 'database_marker_outline',\n data: \"\"\n};\nexport var tylIconDatabaseMarker = {\n name: 'database_marker',\n data: \"\"\n};\nexport var tylIconDatabaseMinusOutline = {\n name: 'database_minus_outline',\n data: \"\"\n};\nexport var tylIconDatabaseMinus = {\n name: 'database_minus',\n data: \"\"\n};\nexport var tylIconDatabaseOffOutline = {\n name: 'database_off_outline',\n data: \"\"\n};\nexport var tylIconDatabaseOff = {\n name: 'database_off',\n data: \"\"\n};\nexport var tylIconDatabaseOutline = {\n name: 'database_outline',\n data: \"\"\n};\nexport var tylIconDatabasePlusOutline = {\n name: 'database_plus_outline',\n data: \"\"\n};\nexport var tylIconDatabasePlus = {\n name: 'database_plus',\n data: \"\"\n};\nexport var tylIconDatabaseRefreshOutline = {\n name: 'database_refresh_outline',\n data: \"\"\n};\nexport var tylIconDatabaseRefresh = {\n name: 'database_refresh',\n data: \"\"\n};\nexport var tylIconDatabaseRemoveOutline = {\n name: 'database_remove_outline',\n data: \"\"\n};\nexport var tylIconDatabaseRemove = {\n name: 'database_remove',\n data: \"\"\n};\nexport var tylIconDatabaseSearchOutline = {\n name: 'database_search_outline',\n data: \"\"\n};\nexport var tylIconDatabaseSearch = {\n name: 'database_search',\n data: \"\"\n};\nexport var tylIconDatabaseSettingsOutline = {\n name: 'database_settings_outline',\n data: \"\"\n};\nexport var tylIconDatabaseSettings = {\n name: 'database_settings',\n data: \"\"\n};\nexport var tylIconDatabaseSyncOutline = {\n name: 'database_sync_outline',\n data: \"\"\n};\nexport var tylIconDatabaseSync = {\n name: 'database_sync',\n data: \"\"\n};\nexport var tylIconDatabase = {\n name: 'database',\n data: \"\"\n};\nexport var tylIconDeathStarVariant = {\n name: 'death_star_variant',\n data: \"\"\n};\nexport var tylIconDeathStar = {\n name: 'death_star',\n data: \"\"\n};\nexport var tylIconDeathlyHallows = {\n name: 'deathly_hallows',\n data: \"\"\n};\nexport var tylIconDebian = {\n name: 'debian',\n data: \"\"\n};\nexport var tylIconDebugStepInto = {\n name: 'debug_step_into',\n data: \"\"\n};\nexport var tylIconDebugStepOut = {\n name: 'debug_step_out',\n data: \"\"\n};\nexport var tylIconDebugStepOver = {\n name: 'debug_step_over',\n data: \"\"\n};\nexport var tylIconDecagramOutline = {\n name: 'decagram_outline',\n data: \"\"\n};\nexport var tylIconDecagram = {\n name: 'decagram',\n data: \"\"\n};\nexport var tylIconDecimalCommaDecrease = {\n name: 'decimal_comma_decrease',\n data: \"\"\n};\nexport var tylIconDecimalCommaIncrease = {\n name: 'decimal_comma_increase',\n data: \"\"\n};\nexport var tylIconDecimalComma = {\n name: 'decimal_comma',\n data: \"\"\n};\nexport var tylIconDecimalDecrease = {\n name: 'decimal_decrease',\n data: \"\"\n};\nexport var tylIconDecimalIncrease = {\n name: 'decimal_increase',\n data: \"\"\n};\nexport var tylIconDecimal = {\n name: 'decimal',\n data: \"\"\n};\nexport var tylIconDeleteAlertOutline = {\n name: 'delete_alert_outline',\n data: \"\"\n};\nexport var tylIconDeleteAlert = {\n name: 'delete_alert',\n data: \"\"\n};\nexport var tylIconDeleteCircleOutline = {\n name: 'delete_circle_outline',\n data: \"\"\n};\nexport var tylIconDeleteCircle = {\n name: 'delete_circle',\n data: \"\"\n};\nexport var tylIconDeleteClockOutline = {\n name: 'delete_clock_outline',\n data: \"\"\n};\nexport var tylIconDeleteClock = {\n name: 'delete_clock',\n data: \"\"\n};\nexport var tylIconDeleteEmptyOutline = {\n name: 'delete_empty_outline',\n data: \"\"\n};\nexport var tylIconDeleteEmpty = {\n name: 'delete_empty',\n data: \"\"\n};\nexport var tylIconDeleteForeverOutline = {\n name: 'delete_forever_outline',\n data: \"\"\n};\nexport var tylIconDeleteForever = {\n name: 'delete_forever',\n data: \"\"\n};\nexport var tylIconDeleteOffOutline = {\n name: 'delete_off_outline',\n data: \"\"\n};\nexport var tylIconDeleteOff = {\n name: 'delete_off',\n data: \"\"\n};\nexport var tylIconDeleteOutline = {\n name: 'delete_outline',\n data: \"\"\n};\nexport var tylIconDeleteRestore = {\n name: 'delete_restore',\n data: \"\"\n};\nexport var tylIconDeleteSweepOutline = {\n name: 'delete_sweep_outline',\n data: \"\"\n};\nexport var tylIconDeleteSweep = {\n name: 'delete_sweep',\n data: \"\"\n};\nexport var tylIconDeleteVariant = {\n name: 'delete_variant',\n data: \"\"\n};\nexport var tylIconDelete = {\n name: 'delete',\n data: \"\"\n};\nexport var tylIconDelta = {\n name: 'delta',\n data: \"\"\n};\nexport var tylIconDeskLamp = {\n name: 'desk_lamp',\n data: \"\"\n};\nexport var tylIconDesk = {\n name: 'desk',\n data: \"\"\n};\nexport var tylIconDeskphone = {\n name: 'deskphone',\n data: \"\"\n};\nexport var tylIconDesktopClassic = {\n name: 'desktop_classic',\n data: \"\"\n};\nexport var tylIconDesktopMacDashboard = {\n name: 'desktop_mac_dashboard',\n data: \"\"\n};\nexport var tylIconDesktopMac = {\n name: 'desktop_mac',\n data: \"\"\n};\nexport var tylIconDesktopTowerMonitor = {\n name: 'desktop_tower_monitor',\n data: \"\"\n};\nexport var tylIconDesktopTower = {\n name: 'desktop_tower',\n data: \"\"\n};\nexport var tylIconDetails = {\n name: 'details',\n data: \"\"\n};\nexport var tylIconDevTo = {\n name: 'dev_to',\n data: \"\"\n};\nexport var tylIconDeveloperBoard = {\n name: 'developer_board',\n data: \"\"\n};\nexport var tylIconDeviantart = {\n name: 'deviantart',\n data: \"\"\n};\nexport var tylIconDevices = {\n name: 'devices',\n data: \"\"\n};\nexport var tylIconDiabetes = {\n name: 'diabetes',\n data: \"\"\n};\nexport var tylIconDialpad = {\n name: 'dialpad',\n data: \"\"\n};\nexport var tylIconDiameterOutline = {\n name: 'diameter_outline',\n data: \"\"\n};\nexport var tylIconDiameterVariant = {\n name: 'diameter_variant',\n data: \"\"\n};\nexport var tylIconDiameter = {\n name: 'diameter',\n data: \"\"\n};\nexport var tylIconDiamondOutline = {\n name: 'diamond_outline',\n data: \"\"\n};\nexport var tylIconDiamondStone = {\n name: 'diamond_stone',\n data: \"\"\n};\nexport var tylIconDiamond = {\n name: 'diamond',\n data: \"\"\n};\nexport var tylIconDice1Outline = {\n name: 'dice_1_outline',\n data: \"\"\n};\nexport var tylIconDice1 = {\n name: 'dice_1',\n data: \"\"\n};\nexport var tylIconDice2Outline = {\n name: 'dice_2_outline',\n data: \"\"\n};\nexport var tylIconDice2 = {\n name: 'dice_2',\n data: \"\"\n};\nexport var tylIconDice3Outline = {\n name: 'dice_3_outline',\n data: \"\"\n};\nexport var tylIconDice3 = {\n name: 'dice_3',\n data: \"\"\n};\nexport var tylIconDice4Outline = {\n name: 'dice_4_outline',\n data: \"\"\n};\nexport var tylIconDice4 = {\n name: 'dice_4',\n data: \"\"\n};\nexport var tylIconDice5Outline = {\n name: 'dice_5_outline',\n data: \"\"\n};\nexport var tylIconDice5 = {\n name: 'dice_5',\n data: \"\"\n};\nexport var tylIconDice6Outline = {\n name: 'dice_6_outline',\n data: \"\"\n};\nexport var tylIconDice6 = {\n name: 'dice_6',\n data: \"\"\n};\nexport var tylIconDiceD10Outline = {\n name: 'dice_d_10_outline',\n data: \"\"\n};\nexport var tylIconDiceD10 = {\n name: 'dice_d_10',\n data: \"\"\n};\nexport var tylIconDiceD12Outline = {\n name: 'dice_d_12_outline',\n data: \"\"\n};\nexport var tylIconDiceD12 = {\n name: 'dice_d_12',\n data: \"\"\n};\nexport var tylIconDiceD20Outline = {\n name: 'dice_d_20_outline',\n data: \"\"\n};\nexport var tylIconDiceD20 = {\n name: 'dice_d_20',\n data: \"\"\n};\nexport var tylIconDiceD4Outline = {\n name: 'dice_d_4_outline',\n data: \"\"\n};\nexport var tylIconDiceD4 = {\n name: 'dice_d_4',\n data: \"\"\n};\nexport var tylIconDiceD6Outline = {\n name: 'dice_d_6_outline',\n data: \"\"\n};\nexport var tylIconDiceD6 = {\n name: 'dice_d_6',\n data: \"\"\n};\nexport var tylIconDiceD8Outline = {\n name: 'dice_d_8_outline',\n data: \"\"\n};\nexport var tylIconDiceD8 = {\n name: 'dice_d_8',\n data: \"\"\n};\nexport var tylIconDiceMultipleOutline = {\n name: 'dice_multiple_outline',\n data: \"\"\n};\nexport var tylIconDiceMultiple = {\n name: 'dice_multiple',\n data: \"\"\n};\nexport var tylIconDigitalOcean = {\n name: 'digital_ocean',\n data: \"\"\n};\nexport var tylIconDipSwitch = {\n name: 'dip_switch',\n data: \"\"\n};\nexport var tylIconDirectionsFork = {\n name: 'directions_fork',\n data: \"\"\n};\nexport var tylIconDirections = {\n name: 'directions',\n data: \"\"\n};\nexport var tylIconDiscAlert = {\n name: 'disc_alert',\n data: \"\"\n};\nexport var tylIconDiscPlayer = {\n name: 'disc_player',\n data: \"\"\n};\nexport var tylIconDisc = {\n name: 'disc',\n data: \"\"\n};\nexport var tylIconDiscord = {\n name: 'discord',\n data: \"\"\n};\nexport var tylIconDishwasherAlert = {\n name: 'dishwasher_alert',\n data: \"\"\n};\nexport var tylIconDishwasherOff = {\n name: 'dishwasher_off',\n data: \"\"\n};\nexport var tylIconDishwasher = {\n name: 'dishwasher',\n data: \"\"\n};\nexport var tylIconDisqus = {\n name: 'disqus',\n data: \"\"\n};\nexport var tylIconDistributeHorizontalCenter = {\n name: 'distribute_horizontal_center',\n data: \"\"\n};\nexport var tylIconDistributeHorizontalLeft = {\n name: 'distribute_horizontal_left',\n data: \"\"\n};\nexport var tylIconDistributeHorizontalRight = {\n name: 'distribute_horizontal_right',\n data: \"\"\n};\nexport var tylIconDistributeVerticalBottom = {\n name: 'distribute_vertical_bottom',\n data: \"\"\n};\nexport var tylIconDistributeVerticalCenter = {\n name: 'distribute_vertical_center',\n data: \"\"\n};\nexport var tylIconDistributeVerticalTop = {\n name: 'distribute_vertical_top',\n data: \"\"\n};\nexport var tylIconDivingFlippers = {\n name: 'diving_flippers',\n data: \"\"\n};\nexport var tylIconDivingHelmet = {\n name: 'diving_helmet',\n data: \"\"\n};\nexport var tylIconDivingScubaFlag = {\n name: 'diving_scuba_flag',\n data: \"\"\n};\nexport var tylIconDivingScubaTankMultiple = {\n name: 'diving_scuba_tank_multiple',\n data: \"\"\n};\nexport var tylIconDivingScubaTank = {\n name: 'diving_scuba_tank',\n data: \"\"\n};\nexport var tylIconDivingScuba = {\n name: 'diving_scuba',\n data: \"\"\n};\nexport var tylIconDivingSnorkel = {\n name: 'diving_snorkel',\n data: \"\"\n};\nexport var tylIconDivisionBox = {\n name: 'division_box',\n data: \"\"\n};\nexport var tylIconDivision = {\n name: 'division',\n data: \"\"\n};\nexport var tylIconDlna = {\n name: 'dlna',\n data: \"\"\n};\nexport var tylIconDna = {\n name: 'dna',\n data: \"\"\n};\nexport var tylIconDnsOutline = {\n name: 'dns_outline',\n data: \"\"\n};\nexport var tylIconDns = {\n name: 'dns',\n data: \"\"\n};\nexport var tylIconDoNotDisturbOff = {\n name: 'do_not_disturb_off',\n data: \"\"\n};\nexport var tylIconDoNotDisturb = {\n name: 'do_not_disturb',\n data: \"\"\n};\nexport var tylIconDockBottom = {\n name: 'dock_bottom',\n data: \"\"\n};\nexport var tylIconDockLeft = {\n name: 'dock_left',\n data: \"\"\n};\nexport var tylIconDockRight = {\n name: 'dock_right',\n data: \"\"\n};\nexport var tylIconDockTop = {\n name: 'dock_top',\n data: \"\"\n};\nexport var tylIconDockWindow = {\n name: 'dock_window',\n data: \"\"\n};\nexport var tylIconDocker = {\n name: 'docker',\n data: \"\"\n};\nexport var tylIconDoctor = {\n name: 'doctor',\n data: \"\"\n};\nexport var tylIconDogService = {\n name: 'dog_service',\n data: \"\"\n};\nexport var tylIconDogSideOff = {\n name: 'dog_side_off',\n data: \"\"\n};\nexport var tylIconDogSide = {\n name: 'dog_side',\n data: \"\"\n};\nexport var tylIconDog = {\n name: 'dog',\n data: \"\"\n};\nexport var tylIconDolby = {\n name: 'dolby',\n data: \"\"\n};\nexport var tylIconDolly = {\n name: 'dolly',\n data: \"\"\n};\nexport var tylIconDomainOff = {\n name: 'domain_off',\n data: \"\"\n};\nexport var tylIconDomainPlus = {\n name: 'domain_plus',\n data: \"\"\n};\nexport var tylIconDomainRemove = {\n name: 'domain_remove',\n data: \"\"\n};\nexport var tylIconDomain = {\n name: 'domain',\n data: \"\"\n};\nexport var tylIconDomeLight = {\n name: 'dome_light',\n data: \"\"\n};\nexport var tylIconDominoMask = {\n name: 'domino_mask',\n data: \"\"\n};\nexport var tylIconDonkey = {\n name: 'donkey',\n data: \"\"\n};\nexport var tylIconDoorClosedLock = {\n name: 'door_closed_lock',\n data: \"\"\n};\nexport var tylIconDoorClosed = {\n name: 'door_closed',\n data: \"\"\n};\nexport var tylIconDoorOpen = {\n name: 'door_open',\n data: \"\"\n};\nexport var tylIconDoor = {\n name: 'door',\n data: \"\"\n};\nexport var tylIconDoorbellVideo = {\n name: 'doorbell_video',\n data: \"\"\n};\nexport var tylIconDoorbell = {\n name: 'doorbell',\n data: \"\"\n};\nexport var tylIconDotNet = {\n name: 'dot_net',\n data: \"\"\n};\nexport var tylIconDotsGrid = {\n name: 'dots_grid',\n data: \"\"\n};\nexport var tylIconDotsHexagon = {\n name: 'dots_hexagon',\n data: \"\"\n};\nexport var tylIconDotsHorizontalCircleOutline = {\n name: 'dots_horizontal_circle_outline',\n data: \"\"\n};\nexport var tylIconDotsHorizontalCircle = {\n name: 'dots_horizontal_circle',\n data: \"\"\n};\nexport var tylIconDotsHorizontal = {\n name: 'dots_horizontal',\n data: \"\"\n};\nexport var tylIconDotsSquare = {\n name: 'dots_square',\n data: \"\"\n};\nexport var tylIconDotsTriangle = {\n name: 'dots_triangle',\n data: \"\"\n};\nexport var tylIconDotsVerticalCircleOutline = {\n name: 'dots_vertical_circle_outline',\n data: \"\"\n};\nexport var tylIconDotsVerticalCircle = {\n name: 'dots_vertical_circle',\n data: \"\"\n};\nexport var tylIconDotsVertical = {\n name: 'dots_vertical',\n data: \"\"\n};\nexport var tylIconDouban = {\n name: 'douban',\n data: \"\"\n};\nexport var tylIconDownloadBoxOutline = {\n name: 'download_box_outline',\n data: \"\"\n};\nexport var tylIconDownloadBox = {\n name: 'download_box',\n data: \"\"\n};\nexport var tylIconDownloadCircleOutline = {\n name: 'download_circle_outline',\n data: \"\"\n};\nexport var tylIconDownloadCircle = {\n name: 'download_circle',\n data: \"\"\n};\nexport var tylIconDownloadLockOutline = {\n name: 'download_lock_outline',\n data: \"\"\n};\nexport var tylIconDownloadLock = {\n name: 'download_lock',\n data: \"\"\n};\nexport var tylIconDownloadMultiple = {\n name: 'download_multiple',\n data: \"\"\n};\nexport var tylIconDownloadNetworkOutline = {\n name: 'download_network_outline',\n data: \"\"\n};\nexport var tylIconDownloadNetwork = {\n name: 'download_network',\n data: \"\"\n};\nexport var tylIconDownloadOffOutline = {\n name: 'download_off_outline',\n data: \"\"\n};\nexport var tylIconDownloadOff = {\n name: 'download_off',\n data: \"\"\n};\nexport var tylIconDownloadOutline = {\n name: 'download_outline',\n data: \"\"\n};\nexport var tylIconDownload = {\n name: 'download',\n data: \"\"\n};\nexport var tylIconDragHorizontalVariant = {\n name: 'drag_horizontal_variant',\n data: \"\"\n};\nexport var tylIconDragHorizontal = {\n name: 'drag_horizontal',\n data: \"\"\n};\nexport var tylIconDragVariant = {\n name: 'drag_variant',\n data: \"\"\n};\nexport var tylIconDragVerticalVariant = {\n name: 'drag_vertical_variant',\n data: \"\"\n};\nexport var tylIconDragVertical = {\n name: 'drag_vertical',\n data: \"\"\n};\nexport var tylIconDrag = {\n name: 'drag',\n data: \"\"\n};\nexport var tylIconDramaMasks = {\n name: 'drama_masks',\n data: \"\"\n};\nexport var tylIconDraw = {\n name: 'draw',\n data: \"\"\n};\nexport var tylIconDrawingBox = {\n name: 'drawing_box',\n data: \"\"\n};\nexport var tylIconDrawing = {\n name: 'drawing',\n data: \"\"\n};\nexport var tylIconDresserOutline = {\n name: 'dresser_outline',\n data: \"\"\n};\nexport var tylIconDresser = {\n name: 'dresser',\n data: \"\"\n};\nexport var tylIconDrone = {\n name: 'drone',\n data: \"\"\n};\nexport var tylIconDropbox = {\n name: 'dropbox',\n data: \"\"\n};\nexport var tylIconDrupal = {\n name: 'drupal',\n data: \"\"\n};\nexport var tylIconDuck = {\n name: 'duck',\n data: \"\"\n};\nexport var tylIconDumbbell = {\n name: 'dumbbell',\n data: \"\"\n};\nexport var tylIconDumpTruck = {\n name: 'dump_truck',\n data: \"\"\n};\nexport var tylIconEarHearingOff = {\n name: 'ear_hearing_off',\n data: \"\"\n};\nexport var tylIconEarHearing = {\n name: 'ear_hearing',\n data: \"\"\n};\nexport var tylIconEarthArrowRight = {\n name: 'earth_arrow_right',\n data: \"\"\n};\nexport var tylIconEarthBoxMinus = {\n name: 'earth_box_minus',\n data: \"\"\n};\nexport var tylIconEarthBoxOff = {\n name: 'earth_box_off',\n data: \"\"\n};\nexport var tylIconEarthBoxPlus = {\n name: 'earth_box_plus',\n data: \"\"\n};\nexport var tylIconEarthBoxRemove = {\n name: 'earth_box_remove',\n data: \"\"\n};\nexport var tylIconEarthBox = {\n name: 'earth_box',\n data: \"\"\n};\nexport var tylIconEarthMinus = {\n name: 'earth_minus',\n data: \"\"\n};\nexport var tylIconEarthOff = {\n name: 'earth_off',\n data: \"\"\n};\nexport var tylIconEarthPlus = {\n name: 'earth_plus',\n data: \"\"\n};\nexport var tylIconEarthRemove = {\n name: 'earth_remove',\n data: \"\"\n};\nexport var tylIconEarth = {\n name: 'earth',\n data: \"\"\n};\nexport var tylIconEggEaster = {\n name: 'egg_easter',\n data: \"\"\n};\nexport var tylIconEggOffOutline = {\n name: 'egg_off_outline',\n data: \"\"\n};\nexport var tylIconEggOff = {\n name: 'egg_off',\n data: \"\"\n};\nexport var tylIconEggOutline = {\n name: 'egg_outline',\n data: \"\"\n};\nexport var tylIconEgg = {\n name: 'egg',\n data: \"\"\n};\nexport var tylIconEiffelTower = {\n name: 'eiffel_tower',\n data: \"\"\n};\nexport var tylIconEightTrack = {\n name: 'eight_track',\n data: \"\"\n};\nexport var tylIconEjectOutline = {\n name: 'eject_outline',\n data: \"\"\n};\nexport var tylIconEject = {\n name: 'eject',\n data: \"\"\n};\nexport var tylIconElectricSwitchClosed = {\n name: 'electric_switch_closed',\n data: \"\"\n};\nexport var tylIconElectricSwitch = {\n name: 'electric_switch',\n data: \"\"\n};\nexport var tylIconElectronFramework = {\n name: 'electron_framework',\n data: \"\"\n};\nexport var tylIconElephant = {\n name: 'elephant',\n data: \"\"\n};\nexport var tylIconElevationDecline = {\n name: 'elevation_decline',\n data: \"\"\n};\nexport var tylIconElevationRise = {\n name: 'elevation_rise',\n data: \"\"\n};\nexport var tylIconElevatorDown = {\n name: 'elevator_down',\n data: \"\"\n};\nexport var tylIconElevatorPassenger = {\n name: 'elevator_passenger',\n data: \"\"\n};\nexport var tylIconElevatorUp = {\n name: 'elevator_up',\n data: \"\"\n};\nexport var tylIconElevator = {\n name: 'elevator',\n data: \"\"\n};\nexport var tylIconEllipseOutline = {\n name: 'ellipse_outline',\n data: \"\"\n};\nexport var tylIconEllipse = {\n name: 'ellipse',\n data: \"\"\n};\nexport var tylIconEmailAlertOutline = {\n name: 'email_alert_outline',\n data: \"\"\n};\nexport var tylIconEmailAlert = {\n name: 'email_alert',\n data: \"\"\n};\nexport var tylIconEmailBox = {\n name: 'email_box',\n data: \"\"\n};\nexport var tylIconEmailCheckOutline = {\n name: 'email_check_outline',\n data: \"\"\n};\nexport var tylIconEmailCheck = {\n name: 'email_check',\n data: \"\"\n};\nexport var tylIconEmailEditOutline = {\n name: 'email_edit_outline',\n data: \"\"\n};\nexport var tylIconEmailEdit = {\n name: 'email_edit',\n data: \"\"\n};\nexport var tylIconEmailLock = {\n name: 'email_lock',\n data: \"\"\n};\nexport var tylIconEmailMarkAsUnread = {\n name: 'email_mark_as_unread',\n data: \"\"\n};\nexport var tylIconEmailMinusOutline = {\n name: 'email_minus_outline',\n data: \"\"\n};\nexport var tylIconEmailMinus = {\n name: 'email_minus',\n data: \"\"\n};\nexport var tylIconEmailMultipleOutline = {\n name: 'email_multiple_outline',\n data: \"\"\n};\nexport var tylIconEmailMultiple = {\n name: 'email_multiple',\n data: \"\"\n};\nexport var tylIconEmailNewsletter = {\n name: 'email_newsletter',\n data: \"\"\n};\nexport var tylIconEmailOffOutline = {\n name: 'email_off_outline',\n data: \"\"\n};\nexport var tylIconEmailOff = {\n name: 'email_off',\n data: \"\"\n};\nexport var tylIconEmailOpenMultipleOutline = {\n name: 'email_open_multiple_outline',\n data: \"\"\n};\nexport var tylIconEmailOpenMultiple = {\n name: 'email_open_multiple',\n data: \"\"\n};\nexport var tylIconEmailOpenOutline = {\n name: 'email_open_outline',\n data: \"\"\n};\nexport var tylIconEmailOpen = {\n name: 'email_open',\n data: \"\"\n};\nexport var tylIconEmailOutline = {\n name: 'email_outline',\n data: \"\"\n};\nexport var tylIconEmailPlusOutline = {\n name: 'email_plus_outline',\n data: \"\"\n};\nexport var tylIconEmailPlus = {\n name: 'email_plus',\n data: \"\"\n};\nexport var tylIconEmailReceiveOutline = {\n name: 'email_receive_outline',\n data: \"\"\n};\nexport var tylIconEmailReceive = {\n name: 'email_receive',\n data: \"\"\n};\nexport var tylIconEmailRemoveOutline = {\n name: 'email_remove_outline',\n data: \"\"\n};\nexport var tylIconEmailRemove = {\n name: 'email_remove',\n data: \"\"\n};\nexport var tylIconEmailSearchOutline = {\n name: 'email_search_outline',\n data: \"\"\n};\nexport var tylIconEmailSearch = {\n name: 'email_search',\n data: \"\"\n};\nexport var tylIconEmailSendOutline = {\n name: 'email_send_outline',\n data: \"\"\n};\nexport var tylIconEmailSend = {\n name: 'email_send',\n data: \"\"\n};\nexport var tylIconEmailSyncOutline = {\n name: 'email_sync_outline',\n data: \"\"\n};\nexport var tylIconEmailSync = {\n name: 'email_sync',\n data: \"\"\n};\nexport var tylIconEmailVariant = {\n name: 'email_variant',\n data: \"\"\n};\nexport var tylIconEmail = {\n name: 'email',\n data: \"\"\n};\nexport var tylIconEmber = {\n name: 'ember',\n data: \"\"\n};\nexport var tylIconEmby = {\n name: 'emby',\n data: \"\"\n};\nexport var tylIconEmoticonAngryOutline = {\n name: 'emoticon_angry_outline',\n data: \"\"\n};\nexport var tylIconEmoticonAngry = {\n name: 'emoticon_angry',\n data: \"\"\n};\nexport var tylIconEmoticonConfusedOutline = {\n name: 'emoticon_confused_outline',\n data: \"\"\n};\nexport var tylIconEmoticonConfused = {\n name: 'emoticon_confused',\n data: \"\"\n};\nexport var tylIconEmoticonCoolOutline = {\n name: 'emoticon_cool_outline',\n data: \"\"\n};\nexport var tylIconEmoticonCool = {\n name: 'emoticon_cool',\n data: \"\"\n};\nexport var tylIconEmoticonCryOutline = {\n name: 'emoticon_cry_outline',\n data: \"\"\n};\nexport var tylIconEmoticonCry = {\n name: 'emoticon_cry',\n data: \"\"\n};\nexport var tylIconEmoticonDeadOutline = {\n name: 'emoticon_dead_outline',\n data: \"\"\n};\nexport var tylIconEmoticonDead = {\n name: 'emoticon_dead',\n data: \"\"\n};\nexport var tylIconEmoticonDevilOutline = {\n name: 'emoticon_devil_outline',\n data: \"\"\n};\nexport var tylIconEmoticonDevil = {\n name: 'emoticon_devil',\n data: \"\"\n};\nexport var tylIconEmoticonExcitedOutline = {\n name: 'emoticon_excited_outline',\n data: \"\"\n};\nexport var tylIconEmoticonExcited = {\n name: 'emoticon_excited',\n data: \"\"\n};\nexport var tylIconEmoticonFrownOutline = {\n name: 'emoticon_frown_outline',\n data: \"\"\n};\nexport var tylIconEmoticonFrown = {\n name: 'emoticon_frown',\n data: \"\"\n};\nexport var tylIconEmoticonHappyOutline = {\n name: 'emoticon_happy_outline',\n data: \"\"\n};\nexport var tylIconEmoticonHappy = {\n name: 'emoticon_happy',\n data: \"\"\n};\nexport var tylIconEmoticonKissOutline = {\n name: 'emoticon_kiss_outline',\n data: \"\"\n};\nexport var tylIconEmoticonKiss = {\n name: 'emoticon_kiss',\n data: \"\"\n};\nexport var tylIconEmoticonLolOutline = {\n name: 'emoticon_lol_outline',\n data: \"\"\n};\nexport var tylIconEmoticonLol = {\n name: 'emoticon_lol',\n data: \"\"\n};\nexport var tylIconEmoticonNeutralOutline = {\n name: 'emoticon_neutral_outline',\n data: \"\"\n};\nexport var tylIconEmoticonNeutral = {\n name: 'emoticon_neutral',\n data: \"\"\n};\nexport var tylIconEmoticonOutline = {\n name: 'emoticon_outline',\n data: \"\"\n};\nexport var tylIconEmoticonPoopOutline = {\n name: 'emoticon_poop_outline',\n data: \"\"\n};\nexport var tylIconEmoticonPoop = {\n name: 'emoticon_poop',\n data: \"\"\n};\nexport var tylIconEmoticonSadOutline = {\n name: 'emoticon_sad_outline',\n data: \"\"\n};\nexport var tylIconEmoticonSad = {\n name: 'emoticon_sad',\n data: \"\"\n};\nexport var tylIconEmoticonSickOutline = {\n name: 'emoticon_sick_outline',\n data: \"\"\n};\nexport var tylIconEmoticonSick = {\n name: 'emoticon_sick',\n data: \"\"\n};\nexport var tylIconEmoticonTongueOutline = {\n name: 'emoticon_tongue_outline',\n data: \"\"\n};\nexport var tylIconEmoticonTongue = {\n name: 'emoticon_tongue',\n data: \"\"\n};\nexport var tylIconEmoticonWinkOutline = {\n name: 'emoticon_wink_outline',\n data: \"\"\n};\nexport var tylIconEmoticonWink = {\n name: 'emoticon_wink',\n data: \"\"\n};\nexport var tylIconEmoticon = {\n name: 'emoticon',\n data: \"\"\n};\nexport var tylIconEngineOffOutline = {\n name: 'engine_off_outline',\n data: \"\"\n};\nexport var tylIconEngineOff = {\n name: 'engine_off',\n data: \"\"\n};\nexport var tylIconEngineOutline = {\n name: 'engine_outline',\n data: \"\"\n};\nexport var tylIconEngine = {\n name: 'engine',\n data: \"\"\n};\nexport var tylIconEpsilon = {\n name: 'epsilon',\n data: \"\"\n};\nexport var tylIconEqualBox = {\n name: 'equal_box',\n data: \"\"\n};\nexport var tylIconEqual = {\n name: 'equal',\n data: \"\"\n};\nexport var tylIconEqualizerOutline = {\n name: 'equalizer_outline',\n data: \"\"\n};\nexport var tylIconEqualizer = {\n name: 'equalizer',\n data: \"\"\n};\nexport var tylIconEraserVariant = {\n name: 'eraser_variant',\n data: \"\"\n};\nexport var tylIconEraser = {\n name: 'eraser',\n data: \"\"\n};\nexport var tylIconEscalatorBox = {\n name: 'escalator_box',\n data: \"\"\n};\nexport var tylIconEscalatorDown = {\n name: 'escalator_down',\n data: \"\"\n};\nexport var tylIconEscalatorUp = {\n name: 'escalator_up',\n data: \"\"\n};\nexport var tylIconEscalator = {\n name: 'escalator',\n data: \"\"\n};\nexport var tylIconEslint = {\n name: 'eslint',\n data: \"\"\n};\nexport var tylIconEt = {\n name: 'et',\n data: \"\"\n};\nexport var tylIconEthereum = {\n name: 'ethereum',\n data: \"\"\n};\nexport var tylIconEthernetCableOff = {\n name: 'ethernet_cable_off',\n data: \"\"\n};\nexport var tylIconEthernetCable = {\n name: 'ethernet_cable',\n data: \"\"\n};\nexport var tylIconEthernet = {\n name: 'ethernet',\n data: \"\"\n};\nexport var tylIconEvPlugCcs1 = {\n name: 'ev_plug_ccs_1',\n data: \"\"\n};\nexport var tylIconEvPlugCcs2 = {\n name: 'ev_plug_ccs_2',\n data: \"\"\n};\nexport var tylIconEvPlugChademo = {\n name: 'ev_plug_chademo',\n data: \"\"\n};\nexport var tylIconEvPlugTesla = {\n name: 'ev_plug_tesla',\n data: \"\"\n};\nexport var tylIconEvPlugType1 = {\n name: 'ev_plug_type_1',\n data: \"\"\n};\nexport var tylIconEvPlugType2 = {\n name: 'ev_plug_type_2',\n data: \"\"\n};\nexport var tylIconEvStation = {\n name: 'ev_station',\n data: \"\"\n};\nexport var tylIconEvernote = {\n name: 'evernote',\n data: \"\"\n};\nexport var tylIconExcavator = {\n name: 'excavator',\n data: \"\"\n};\nexport var tylIconExclamationThick = {\n name: 'exclamation_thick',\n data: \"\"\n};\nexport var tylIconExclamation = {\n name: 'exclamation',\n data: \"\"\n};\nexport var tylIconExitRun = {\n name: 'exit_run',\n data: \"\"\n};\nexport var tylIconExitToApp = {\n name: 'exit_to_app',\n data: \"\"\n};\nexport var tylIconExpandAllOutline = {\n name: 'expand_all_outline',\n data: \"\"\n};\nexport var tylIconExpandAll = {\n name: 'expand_all',\n data: \"\"\n};\nexport var tylIconExpansionCardVariant = {\n name: 'expansion_card_variant',\n data: \"\"\n};\nexport var tylIconExpansionCard = {\n name: 'expansion_card',\n data: \"\"\n};\nexport var tylIconExponentBox = {\n name: 'exponent_box',\n data: \"\"\n};\nexport var tylIconExponent = {\n name: 'exponent',\n data: \"\"\n};\nexport var tylIconExportVariant = {\n name: 'export_variant',\n data: \"\"\n};\nexport var tylIconExport = {\n name: 'export',\n data: \"\"\n};\nexport var tylIconEyeCheckOutline = {\n name: 'eye_check_outline',\n data: \"\"\n};\nexport var tylIconEyeCheck = {\n name: 'eye_check',\n data: \"\"\n};\nexport var tylIconEyeCircleOutline = {\n name: 'eye_circle_outline',\n data: \"\"\n};\nexport var tylIconEyeCircle = {\n name: 'eye_circle',\n data: \"\"\n};\nexport var tylIconEyeMinusOutline = {\n name: 'eye_minus_outline',\n data: \"\"\n};\nexport var tylIconEyeMinus = {\n name: 'eye_minus',\n data: \"\"\n};\nexport var tylIconEyeOffOutline = {\n name: 'eye_off_outline',\n data: \"\"\n};\nexport var tylIconEyeOff = {\n name: 'eye_off',\n data: \"\"\n};\nexport var tylIconEyeOutline = {\n name: 'eye_outline',\n data: \"\"\n};\nexport var tylIconEyePlusOutline = {\n name: 'eye_plus_outline',\n data: \"\"\n};\nexport var tylIconEyePlus = {\n name: 'eye_plus',\n data: \"\"\n};\nexport var tylIconEyeRemoveOutline = {\n name: 'eye_remove_outline',\n data: \"\"\n};\nexport var tylIconEyeRemove = {\n name: 'eye_remove',\n data: \"\"\n};\nexport var tylIconEyeSettingsOutline = {\n name: 'eye_settings_outline',\n data: \"\"\n};\nexport var tylIconEyeSettings = {\n name: 'eye_settings',\n data: \"\"\n};\nexport var tylIconEye = {\n name: 'eye',\n data: \"\"\n};\nexport var tylIconEyedropperMinus = {\n name: 'eyedropper_minus',\n data: \"\"\n};\nexport var tylIconEyedropperOff = {\n name: 'eyedropper_off',\n data: \"\"\n};\nexport var tylIconEyedropperPlus = {\n name: 'eyedropper_plus',\n data: \"\"\n};\nexport var tylIconEyedropperRemove = {\n name: 'eyedropper_remove',\n data: \"\"\n};\nexport var tylIconEyedropperVariant = {\n name: 'eyedropper_variant',\n data: \"\"\n};\nexport var tylIconEyedropper = {\n name: 'eyedropper',\n data: \"\"\n};\nexport var tylIconFaceAgent = {\n name: 'face_agent',\n data: \"\"\n};\nexport var tylIconFaceMaskOutline = {\n name: 'face_mask_outline',\n data: \"\"\n};\nexport var tylIconFaceMask = {\n name: 'face_mask',\n data: \"\"\n};\nexport var tylIconFaceOutline = {\n name: 'face_outline',\n data: \"\"\n};\nexport var tylIconFaceProfileWoman = {\n name: 'face_profile_woman',\n data: \"\"\n};\nexport var tylIconFaceProfile = {\n name: 'face_profile',\n data: \"\"\n};\nexport var tylIconFaceRecognition = {\n name: 'face_recognition',\n data: \"\"\n};\nexport var tylIconFaceShimmerOutline = {\n name: 'face_shimmer_outline',\n data: \"\"\n};\nexport var tylIconFaceShimmer = {\n name: 'face_shimmer',\n data: \"\"\n};\nexport var tylIconFaceWomanOutline = {\n name: 'face_woman_outline',\n data: \"\"\n};\nexport var tylIconFaceWomanShimmerOutline = {\n name: 'face_woman_shimmer_outline',\n data: \"\"\n};\nexport var tylIconFaceWomanShimmer = {\n name: 'face_woman_shimmer',\n data: \"\"\n};\nexport var tylIconFaceWoman = {\n name: 'face_woman',\n data: \"\"\n};\nexport var tylIconFace = {\n name: 'face',\n data: \"\"\n};\nexport var tylIconFacebookGaming = {\n name: 'facebook_gaming',\n data: \"\"\n};\nexport var tylIconFacebookMessenger = {\n name: 'facebook_messenger',\n data: \"\"\n};\nexport var tylIconFacebookWorkplace = {\n name: 'facebook_workplace',\n data: \"\"\n};\nexport var tylIconFacebook = {\n name: 'facebook',\n data: \"\"\n};\nexport var tylIconFactory = {\n name: 'factory',\n data: \"\"\n};\nexport var tylIconFamilyTree = {\n name: 'family_tree',\n data: \"\"\n};\nexport var tylIconFanAlert = {\n name: 'fan_alert',\n data: \"\"\n};\nexport var tylIconFanAuto = {\n name: 'fan_auto',\n data: \"\"\n};\nexport var tylIconFanChevronDown = {\n name: 'fan_chevron_down',\n data: \"\"\n};\nexport var tylIconFanChevronUp = {\n name: 'fan_chevron_up',\n data: \"\"\n};\nexport var tylIconFanMinus = {\n name: 'fan_minus',\n data: \"\"\n};\nexport var tylIconFanOff = {\n name: 'fan_off',\n data: \"\"\n};\nexport var tylIconFanPlus = {\n name: 'fan_plus',\n data: \"\"\n};\nexport var tylIconFanRemove = {\n name: 'fan_remove',\n data: \"\"\n};\nexport var tylIconFanSpeed1 = {\n name: 'fan_speed_1',\n data: \"\"\n};\nexport var tylIconFanSpeed2 = {\n name: 'fan_speed_2',\n data: \"\"\n};\nexport var tylIconFanSpeed3 = {\n name: 'fan_speed_3',\n data: \"\"\n};\nexport var tylIconFan = {\n name: 'fan',\n data: \"\"\n};\nexport var tylIconFastForward10 = {\n name: 'fast_forward_10',\n data: \"\"\n};\nexport var tylIconFastForward30 = {\n name: 'fast_forward_30',\n data: \"\"\n};\nexport var tylIconFastForward5 = {\n name: 'fast_forward_5',\n data: \"\"\n};\nexport var tylIconFastForward60 = {\n name: 'fast_forward_60',\n data: \"\"\n};\nexport var tylIconFastForwardOutline = {\n name: 'fast_forward_outline',\n data: \"\"\n};\nexport var tylIconFastForward = {\n name: 'fast_forward',\n data: \"\"\n};\nexport var tylIconFax = {\n name: 'fax',\n data: \"\"\n};\nexport var tylIconFeather = {\n name: 'feather',\n data: \"\"\n};\nexport var tylIconFeatureSearchOutline = {\n name: 'feature_search_outline',\n data: \"\"\n};\nexport var tylIconFeatureSearch = {\n name: 'feature_search',\n data: \"\"\n};\nexport var tylIconFedora = {\n name: 'fedora',\n data: \"\"\n};\nexport var tylIconFencing = {\n name: 'fencing',\n data: \"\"\n};\nexport var tylIconFerrisWheel = {\n name: 'ferris_wheel',\n data: \"\"\n};\nexport var tylIconFerry = {\n name: 'ferry',\n data: \"\"\n};\nexport var tylIconFileAccountOutline = {\n name: 'file_account_outline',\n data: \"\"\n};\nexport var tylIconFileAccount = {\n name: 'file_account',\n data: \"\"\n};\nexport var tylIconFileAlertOutline = {\n name: 'file_alert_outline',\n data: \"\"\n};\nexport var tylIconFileAlert = {\n name: 'file_alert',\n data: \"\"\n};\nexport var tylIconFileCabinet = {\n name: 'file_cabinet',\n data: \"\"\n};\nexport var tylIconFileCadBox = {\n name: 'file_cad_box',\n data: \"\"\n};\nexport var tylIconFileCad = {\n name: 'file_cad',\n data: \"\"\n};\nexport var tylIconFileCancelOutline = {\n name: 'file_cancel_outline',\n data: \"\"\n};\nexport var tylIconFileCancel = {\n name: 'file_cancel',\n data: \"\"\n};\nexport var tylIconFileCertificateOutline = {\n name: 'file_certificate_outline',\n data: \"\"\n};\nexport var tylIconFileCertificate = {\n name: 'file_certificate',\n data: \"\"\n};\nexport var tylIconFileChartOutline = {\n name: 'file_chart_outline',\n data: \"\"\n};\nexport var tylIconFileChart = {\n name: 'file_chart',\n data: \"\"\n};\nexport var tylIconFileCheckOutline = {\n name: 'file_check_outline',\n data: \"\"\n};\nexport var tylIconFileCheck = {\n name: 'file_check',\n data: \"\"\n};\nexport var tylIconFileClockOutline = {\n name: 'file_clock_outline',\n data: \"\"\n};\nexport var tylIconFileClock = {\n name: 'file_clock',\n data: \"\"\n};\nexport var tylIconFileCloudOutline = {\n name: 'file_cloud_outline',\n data: \"\"\n};\nexport var tylIconFileCloud = {\n name: 'file_cloud',\n data: \"\"\n};\nexport var tylIconFileCodeOutline = {\n name: 'file_code_outline',\n data: \"\"\n};\nexport var tylIconFileCode = {\n name: 'file_code',\n data: \"\"\n};\nexport var tylIconFileCogOutline = {\n name: 'file_cog_outline',\n data: \"\"\n};\nexport var tylIconFileCog = {\n name: 'file_cog',\n data: \"\"\n};\nexport var tylIconFileCompare = {\n name: 'file_compare',\n data: \"\"\n};\nexport var tylIconFileDelimitedOutline = {\n name: 'file_delimited_outline',\n data: \"\"\n};\nexport var tylIconFileDelimited = {\n name: 'file_delimited',\n data: \"\"\n};\nexport var tylIconFileDocumentEditOutline = {\n name: 'file_document_edit_outline',\n data: \"\"\n};\nexport var tylIconFileDocumentEdit = {\n name: 'file_document_edit',\n data: \"\"\n};\nexport var tylIconFileDocumentMultipleOutline = {\n name: 'file_document_multiple_outline',\n data: \"\"\n};\nexport var tylIconFileDocumentMultiple = {\n name: 'file_document_multiple',\n data: \"\"\n};\nexport var tylIconFileDocumentOutline = {\n name: 'file_document_outline',\n data: \"\"\n};\nexport var tylIconFileDocument = {\n name: 'file_document',\n data: \"\"\n};\nexport var tylIconFileDownloadOutline = {\n name: 'file_download_outline',\n data: \"\"\n};\nexport var tylIconFileDownload = {\n name: 'file_download',\n data: \"\"\n};\nexport var tylIconFileEditOutline = {\n name: 'file_edit_outline',\n data: \"\"\n};\nexport var tylIconFileEdit = {\n name: 'file_edit',\n data: \"\"\n};\nexport var tylIconFileExcelBoxOutline = {\n name: 'file_excel_box_outline',\n data: \"\"\n};\nexport var tylIconFileExcelBox = {\n name: 'file_excel_box',\n data: \"\"\n};\nexport var tylIconFileExcelOutline = {\n name: 'file_excel_outline',\n data: \"\"\n};\nexport var tylIconFileExcel = {\n name: 'file_excel',\n data: \"\"\n};\nexport var tylIconFileExportOutline = {\n name: 'file_export_outline',\n data: \"\"\n};\nexport var tylIconFileExport = {\n name: 'file_export',\n data: \"\"\n};\nexport var tylIconFileEyeOutline = {\n name: 'file_eye_outline',\n data: \"\"\n};\nexport var tylIconFileEye = {\n name: 'file_eye',\n data: \"\"\n};\nexport var tylIconFileFindOutline = {\n name: 'file_find_outline',\n data: \"\"\n};\nexport var tylIconFileFind = {\n name: 'file_find',\n data: \"\"\n};\nexport var tylIconFileHidden = {\n name: 'file_hidden',\n data: \"\"\n};\nexport var tylIconFileImageOutline = {\n name: 'file_image_outline',\n data: \"\"\n};\nexport var tylIconFileImage = {\n name: 'file_image',\n data: \"\"\n};\nexport var tylIconFileImportOutline = {\n name: 'file_import_outline',\n data: \"\"\n};\nexport var tylIconFileImport = {\n name: 'file_import',\n data: \"\"\n};\nexport var tylIconFileKeyOutline = {\n name: 'file_key_outline',\n data: \"\"\n};\nexport var tylIconFileKey = {\n name: 'file_key',\n data: \"\"\n};\nexport var tylIconFileLinkOutline = {\n name: 'file_link_outline',\n data: \"\"\n};\nexport var tylIconFileLink = {\n name: 'file_link',\n data: \"\"\n};\nexport var tylIconFileLockOutline = {\n name: 'file_lock_outline',\n data: \"\"\n};\nexport var tylIconFileLock = {\n name: 'file_lock',\n data: \"\"\n};\nexport var tylIconFileMoveOutline = {\n name: 'file_move_outline',\n data: \"\"\n};\nexport var tylIconFileMove = {\n name: 'file_move',\n data: \"\"\n};\nexport var tylIconFileMultipleOutline = {\n name: 'file_multiple_outline',\n data: \"\"\n};\nexport var tylIconFileMultiple = {\n name: 'file_multiple',\n data: \"\"\n};\nexport var tylIconFileMusicOutline = {\n name: 'file_music_outline',\n data: \"\"\n};\nexport var tylIconFileMusic = {\n name: 'file_music',\n data: \"\"\n};\nexport var tylIconFileOutline = {\n name: 'file_outline',\n data: \"\"\n};\nexport var tylIconFilePdfBoxOutline = {\n name: 'file_pdf_box_outline',\n data: \"\"\n};\nexport var tylIconFilePdfBox = {\n name: 'file_pdf_box',\n data: \"\"\n};\nexport var tylIconFilePdfOutline = {\n name: 'file_pdf_outline',\n data: \"\"\n};\nexport var tylIconFilePdf = {\n name: 'file_pdf',\n data: \"\"\n};\nexport var tylIconFilePercentOutline = {\n name: 'file_percent_outline',\n data: \"\"\n};\nexport var tylIconFilePercent = {\n name: 'file_percent',\n data: \"\"\n};\nexport var tylIconFilePhoneOutline = {\n name: 'file_phone_outline',\n data: \"\"\n};\nexport var tylIconFilePhone = {\n name: 'file_phone',\n data: \"\"\n};\nexport var tylIconFilePlusOutline = {\n name: 'file_plus_outline',\n data: \"\"\n};\nexport var tylIconFilePlus = {\n name: 'file_plus',\n data: \"\"\n};\nexport var tylIconFilePowerpointBoxOutline = {\n name: 'file_powerpoint_box_outline',\n data: \"\"\n};\nexport var tylIconFilePowerpointBox = {\n name: 'file_powerpoint_box',\n data: \"\"\n};\nexport var tylIconFilePowerpointOutline = {\n name: 'file_powerpoint_outline',\n data: \"\"\n};\nexport var tylIconFilePowerpoint = {\n name: 'file_powerpoint',\n data: \"\"\n};\nexport var tylIconFilePresentationBox = {\n name: 'file_presentation_box',\n data: \"\"\n};\nexport var tylIconFileQuestionOutline = {\n name: 'file_question_outline',\n data: \"\"\n};\nexport var tylIconFileQuestion = {\n name: 'file_question',\n data: \"\"\n};\nexport var tylIconFileRefreshOutline = {\n name: 'file_refresh_outline',\n data: \"\"\n};\nexport var tylIconFileRefresh = {\n name: 'file_refresh',\n data: \"\"\n};\nexport var tylIconFileRemoveOutline = {\n name: 'file_remove_outline',\n data: \"\"\n};\nexport var tylIconFileRemove = {\n name: 'file_remove',\n data: \"\"\n};\nexport var tylIconFileReplaceOutline = {\n name: 'file_replace_outline',\n data: \"\"\n};\nexport var tylIconFileReplace = {\n name: 'file_replace',\n data: \"\"\n};\nexport var tylIconFileRestoreOutline = {\n name: 'file_restore_outline',\n data: \"\"\n};\nexport var tylIconFileRestore = {\n name: 'file_restore',\n data: \"\"\n};\nexport var tylIconFileRotateLeftOutline = {\n name: 'file_rotate_left_outline',\n data: \"\"\n};\nexport var tylIconFileRotateLeft = {\n name: 'file_rotate_left',\n data: \"\"\n};\nexport var tylIconFileRotateRightOutline = {\n name: 'file_rotate_right_outline',\n data: \"\"\n};\nexport var tylIconFileRotateRight = {\n name: 'file_rotate_right',\n data: \"\"\n};\nexport var tylIconFileSearchOutline = {\n name: 'file_search_outline',\n data: \"\"\n};\nexport var tylIconFileSearch = {\n name: 'file_search',\n data: \"\"\n};\nexport var tylIconFileSendOutline = {\n name: 'file_send_outline',\n data: \"\"\n};\nexport var tylIconFileSend = {\n name: 'file_send',\n data: \"\"\n};\nexport var tylIconFileSettingsOutline = {\n name: 'file_settings_outline',\n data: \"\"\n};\nexport var tylIconFileSettings = {\n name: 'file_settings',\n data: \"\"\n};\nexport var tylIconFileStarOutline = {\n name: 'file_star_outline',\n data: \"\"\n};\nexport var tylIconFileStar = {\n name: 'file_star',\n data: \"\"\n};\nexport var tylIconFileSwapOutline = {\n name: 'file_swap_outline',\n data: \"\"\n};\nexport var tylIconFileSwap = {\n name: 'file_swap',\n data: \"\"\n};\nexport var tylIconFileSyncOutline = {\n name: 'file_sync_outline',\n data: \"\"\n};\nexport var tylIconFileSync = {\n name: 'file_sync',\n data: \"\"\n};\nexport var tylIconFileTableBoxMultipleOutline = {\n name: 'file_table_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconFileTableBoxMultiple = {\n name: 'file_table_box_multiple',\n data: \"\"\n};\nexport var tylIconFileTableBoxOutline = {\n name: 'file_table_box_outline',\n data: \"\"\n};\nexport var tylIconFileTableBox = {\n name: 'file_table_box',\n data: \"\"\n};\nexport var tylIconFileTableOutline = {\n name: 'file_table_outline',\n data: \"\"\n};\nexport var tylIconFileTable = {\n name: 'file_table',\n data: \"\"\n};\nexport var tylIconFileTreeOutline = {\n name: 'file_tree_outline',\n data: \"\"\n};\nexport var tylIconFileTree = {\n name: 'file_tree',\n data: \"\"\n};\nexport var tylIconFileUndoOutline = {\n name: 'file_undo_outline',\n data: \"\"\n};\nexport var tylIconFileUndo = {\n name: 'file_undo',\n data: \"\"\n};\nexport var tylIconFileUploadOutline = {\n name: 'file_upload_outline',\n data: \"\"\n};\nexport var tylIconFileUpload = {\n name: 'file_upload',\n data: \"\"\n};\nexport var tylIconFileVideoOutline = {\n name: 'file_video_outline',\n data: \"\"\n};\nexport var tylIconFileVideo = {\n name: 'file_video',\n data: \"\"\n};\nexport var tylIconFileWordBoxOutline = {\n name: 'file_word_box_outline',\n data: \"\"\n};\nexport var tylIconFileWordBox = {\n name: 'file_word_box',\n data: \"\"\n};\nexport var tylIconFileWordOutline = {\n name: 'file_word_outline',\n data: \"\"\n};\nexport var tylIconFileWord = {\n name: 'file_word',\n data: \"\"\n};\nexport var tylIconFile = {\n name: 'file',\n data: \"\"\n};\nexport var tylIconFilm = {\n name: 'film',\n data: \"\"\n};\nexport var tylIconFilmstripBoxMultiple = {\n name: 'filmstrip_box_multiple',\n data: \"\"\n};\nexport var tylIconFilmstripBox = {\n name: 'filmstrip_box',\n data: \"\"\n};\nexport var tylIconFilmstripOff = {\n name: 'filmstrip_off',\n data: \"\"\n};\nexport var tylIconFilmstrip = {\n name: 'filmstrip',\n data: \"\"\n};\nexport var tylIconFilterMenuOutline = {\n name: 'filter_menu_outline',\n data: \"\"\n};\nexport var tylIconFilterMenu = {\n name: 'filter_menu',\n data: \"\"\n};\nexport var tylIconFilterMinusOutline = {\n name: 'filter_minus_outline',\n data: \"\"\n};\nexport var tylIconFilterMinus = {\n name: 'filter_minus',\n data: \"\"\n};\nexport var tylIconFilterOffOutline = {\n name: 'filter_off_outline',\n data: \"\"\n};\nexport var tylIconFilterOff = {\n name: 'filter_off',\n data: \"\"\n};\nexport var tylIconFilterOutline = {\n name: 'filter_outline',\n data: \"\"\n};\nexport var tylIconFilterPlusOutline = {\n name: 'filter_plus_outline',\n data: \"\"\n};\nexport var tylIconFilterPlus = {\n name: 'filter_plus',\n data: \"\"\n};\nexport var tylIconFilterRemoveOutline = {\n name: 'filter_remove_outline',\n data: \"\"\n};\nexport var tylIconFilterRemove = {\n name: 'filter_remove',\n data: \"\"\n};\nexport var tylIconFilterVariantMinus = {\n name: 'filter_variant_minus',\n data: \"\"\n};\nexport var tylIconFilterVariantPlus = {\n name: 'filter_variant_plus',\n data: \"\"\n};\nexport var tylIconFilterVariantRemove = {\n name: 'filter_variant_remove',\n data: \"\"\n};\nexport var tylIconFilterVariant = {\n name: 'filter_variant',\n data: \"\"\n};\nexport var tylIconFilter = {\n name: 'filter',\n data: \"\"\n};\nexport var tylIconFinance = {\n name: 'finance',\n data: \"\"\n};\nexport var tylIconFindReplace = {\n name: 'find_replace',\n data: \"\"\n};\nexport var tylIconFingerprintOff = {\n name: 'fingerprint_off',\n data: \"\"\n};\nexport var tylIconFingerprint = {\n name: 'fingerprint',\n data: \"\"\n};\nexport var tylIconFireAlert = {\n name: 'fire_alert',\n data: \"\"\n};\nexport var tylIconFireExtinguisher = {\n name: 'fire_extinguisher',\n data: \"\"\n};\nexport var tylIconFireHydrantAlert = {\n name: 'fire_hydrant_alert',\n data: \"\"\n};\nexport var tylIconFireHydrantOff = {\n name: 'fire_hydrant_off',\n data: \"\"\n};\nexport var tylIconFireHydrant = {\n name: 'fire_hydrant',\n data: \"\"\n};\nexport var tylIconFireTruck = {\n name: 'fire_truck',\n data: \"\"\n};\nexport var tylIconFire = {\n name: 'fire',\n data: \"\"\n};\nexport var tylIconFirebase = {\n name: 'firebase',\n data: \"\"\n};\nexport var tylIconFirefox = {\n name: 'firefox',\n data: \"\"\n};\nexport var tylIconFireplaceOff = {\n name: 'fireplace_off',\n data: \"\"\n};\nexport var tylIconFireplace = {\n name: 'fireplace',\n data: \"\"\n};\nexport var tylIconFirework = {\n name: 'firework',\n data: \"\"\n};\nexport var tylIconFishOff = {\n name: 'fish_off',\n data: \"\"\n};\nexport var tylIconFish = {\n name: 'fish',\n data: \"\"\n};\nexport var tylIconFishbowlOutline = {\n name: 'fishbowl_outline',\n data: \"\"\n};\nexport var tylIconFishbowl = {\n name: 'fishbowl',\n data: \"\"\n};\nexport var tylIconFitToPageOutline = {\n name: 'fit_to_page_outline',\n data: \"\"\n};\nexport var tylIconFitToPage = {\n name: 'fit_to_page',\n data: \"\"\n};\nexport var tylIconFlagCheckered = {\n name: 'flag_checkered',\n data: \"\"\n};\nexport var tylIconFlagMinusOutline = {\n name: 'flag_minus_outline',\n data: \"\"\n};\nexport var tylIconFlagMinus = {\n name: 'flag_minus',\n data: \"\"\n};\nexport var tylIconFlagOutline = {\n name: 'flag_outline',\n data: \"\"\n};\nexport var tylIconFlagPlusOutline = {\n name: 'flag_plus_outline',\n data: \"\"\n};\nexport var tylIconFlagPlus = {\n name: 'flag_plus',\n data: \"\"\n};\nexport var tylIconFlagRemoveOutline = {\n name: 'flag_remove_outline',\n data: \"\"\n};\nexport var tylIconFlagRemove = {\n name: 'flag_remove',\n data: \"\"\n};\nexport var tylIconFlagTriangle = {\n name: 'flag_triangle',\n data: \"\"\n};\nexport var tylIconFlagVariantOutline = {\n name: 'flag_variant_outline',\n data: \"\"\n};\nexport var tylIconFlagVariant = {\n name: 'flag_variant',\n data: \"\"\n};\nexport var tylIconFlag = {\n name: 'flag',\n data: \"\"\n};\nexport var tylIconFlare = {\n name: 'flare',\n data: \"\"\n};\nexport var tylIconFlashAlertOutline = {\n name: 'flash_alert_outline',\n data: \"\"\n};\nexport var tylIconFlashAlert = {\n name: 'flash_alert',\n data: \"\"\n};\nexport var tylIconFlashAuto = {\n name: 'flash_auto',\n data: \"\"\n};\nexport var tylIconFlashCircle = {\n name: 'flash_circle',\n data: \"\"\n};\nexport var tylIconFlashOff = {\n name: 'flash_off',\n data: \"\"\n};\nexport var tylIconFlashOutline = {\n name: 'flash_outline',\n data: \"\"\n};\nexport var tylIconFlashRedEye = {\n name: 'flash_red_eye',\n data: \"\"\n};\nexport var tylIconFlash = {\n name: 'flash',\n data: \"\"\n};\nexport var tylIconFlashlightOff = {\n name: 'flashlight_off',\n data: \"\"\n};\nexport var tylIconFlashlight = {\n name: 'flashlight',\n data: \"\"\n};\nexport var tylIconFlaskEmptyMinusOutline = {\n name: 'flask_empty_minus_outline',\n data: \"\"\n};\nexport var tylIconFlaskEmptyMinus = {\n name: 'flask_empty_minus',\n data: \"\"\n};\nexport var tylIconFlaskEmptyOffOutline = {\n name: 'flask_empty_off_outline',\n data: \"\"\n};\nexport var tylIconFlaskEmptyOff = {\n name: 'flask_empty_off',\n data: \"\"\n};\nexport var tylIconFlaskEmptyOutline = {\n name: 'flask_empty_outline',\n data: \"\"\n};\nexport var tylIconFlaskEmptyPlusOutline = {\n name: 'flask_empty_plus_outline',\n data: \"\"\n};\nexport var tylIconFlaskEmptyPlus = {\n name: 'flask_empty_plus',\n data: \"\"\n};\nexport var tylIconFlaskEmptyRemoveOutline = {\n name: 'flask_empty_remove_outline',\n data: \"\"\n};\nexport var tylIconFlaskEmptyRemove = {\n name: 'flask_empty_remove',\n data: \"\"\n};\nexport var tylIconFlaskEmpty = {\n name: 'flask_empty',\n data: \"\"\n};\nexport var tylIconFlaskMinusOutline = {\n name: 'flask_minus_outline',\n data: \"\"\n};\nexport var tylIconFlaskMinus = {\n name: 'flask_minus',\n data: \"\"\n};\nexport var tylIconFlaskOffOutline = {\n name: 'flask_off_outline',\n data: \"\"\n};\nexport var tylIconFlaskOff = {\n name: 'flask_off',\n data: \"\"\n};\nexport var tylIconFlaskOutline = {\n name: 'flask_outline',\n data: \"\"\n};\nexport var tylIconFlaskPlusOutline = {\n name: 'flask_plus_outline',\n data: \"\"\n};\nexport var tylIconFlaskPlus = {\n name: 'flask_plus',\n data: \"\"\n};\nexport var tylIconFlaskRemoveOutline = {\n name: 'flask_remove_outline',\n data: \"\"\n};\nexport var tylIconFlaskRemove = {\n name: 'flask_remove',\n data: \"\"\n};\nexport var tylIconFlaskRoundBottomEmptyOutline = {\n name: 'flask_round_bottom_empty_outline',\n data: \"\"\n};\nexport var tylIconFlaskRoundBottomEmpty = {\n name: 'flask_round_bottom_empty',\n data: \"\"\n};\nexport var tylIconFlaskRoundBottomOutline = {\n name: 'flask_round_bottom_outline',\n data: \"\"\n};\nexport var tylIconFlaskRoundBottom = {\n name: 'flask_round_bottom',\n data: \"\"\n};\nexport var tylIconFlask = {\n name: 'flask',\n data: \"\"\n};\nexport var tylIconFleurDeLis = {\n name: 'fleur_de_lis',\n data: \"\"\n};\nexport var tylIconFlipHorizontal = {\n name: 'flip_horizontal',\n data: \"\"\n};\nexport var tylIconFlipToBack = {\n name: 'flip_to_back',\n data: \"\"\n};\nexport var tylIconFlipToFront = {\n name: 'flip_to_front',\n data: \"\"\n};\nexport var tylIconFlipVertical = {\n name: 'flip_vertical',\n data: \"\"\n};\nexport var tylIconFloorLampDual = {\n name: 'floor_lamp_dual',\n data: \"\"\n};\nexport var tylIconFloorLampVariant = {\n name: 'floor_lamp_variant',\n data: \"\"\n};\nexport var tylIconFloorLamp = {\n name: 'floor_lamp',\n data: \"\"\n};\nexport var tylIconFloorPlan = {\n name: 'floor_plan',\n data: \"\"\n};\nexport var tylIconFloppyVariant = {\n name: 'floppy_variant',\n data: \"\"\n};\nexport var tylIconFloppy = {\n name: 'floppy',\n data: \"\"\n};\nexport var tylIconFlowerOutline = {\n name: 'flower_outline',\n data: \"\"\n};\nexport var tylIconFlowerPoppy = {\n name: 'flower_poppy',\n data: \"\"\n};\nexport var tylIconFlowerTulipOutline = {\n name: 'flower_tulip_outline',\n data: \"\"\n};\nexport var tylIconFlowerTulip = {\n name: 'flower_tulip',\n data: \"\"\n};\nexport var tylIconFlower = {\n name: 'flower',\n data: \"\"\n};\nexport var tylIconFocusAuto = {\n name: 'focus_auto',\n data: \"\"\n};\nexport var tylIconFocusFieldHorizontal = {\n name: 'focus_field_horizontal',\n data: \"\"\n};\nexport var tylIconFocusFieldVertical = {\n name: 'focus_field_vertical',\n data: \"\"\n};\nexport var tylIconFocusField = {\n name: 'focus_field',\n data: \"\"\n};\nexport var tylIconFolderAccountOutline = {\n name: 'folder_account_outline',\n data: \"\"\n};\nexport var tylIconFolderAccount = {\n name: 'folder_account',\n data: \"\"\n};\nexport var tylIconFolderAlertOutline = {\n name: 'folder_alert_outline',\n data: \"\"\n};\nexport var tylIconFolderAlert = {\n name: 'folder_alert',\n data: \"\"\n};\nexport var tylIconFolderClockOutline = {\n name: 'folder_clock_outline',\n data: \"\"\n};\nexport var tylIconFolderClock = {\n name: 'folder_clock',\n data: \"\"\n};\nexport var tylIconFolderCogOutline = {\n name: 'folder_cog_outline',\n data: \"\"\n};\nexport var tylIconFolderCog = {\n name: 'folder_cog',\n data: \"\"\n};\nexport var tylIconFolderDownloadOutline = {\n name: 'folder_download_outline',\n data: \"\"\n};\nexport var tylIconFolderDownload = {\n name: 'folder_download',\n data: \"\"\n};\nexport var tylIconFolderEditOutline = {\n name: 'folder_edit_outline',\n data: \"\"\n};\nexport var tylIconFolderEdit = {\n name: 'folder_edit',\n data: \"\"\n};\nexport var tylIconFolderGoogleDrive = {\n name: 'folder_google_drive',\n data: \"\"\n};\nexport var tylIconFolderHeartOutline = {\n name: 'folder_heart_outline',\n data: \"\"\n};\nexport var tylIconFolderHeart = {\n name: 'folder_heart',\n data: \"\"\n};\nexport var tylIconFolderHomeOutline = {\n name: 'folder_home_outline',\n data: \"\"\n};\nexport var tylIconFolderHome = {\n name: 'folder_home',\n data: \"\"\n};\nexport var tylIconFolderImage = {\n name: 'folder_image',\n data: \"\"\n};\nexport var tylIconFolderInformationOutline = {\n name: 'folder_information_outline',\n data: \"\"\n};\nexport var tylIconFolderInformation = {\n name: 'folder_information',\n data: \"\"\n};\nexport var tylIconFolderKeyNetworkOutline = {\n name: 'folder_key_network_outline',\n data: \"\"\n};\nexport var tylIconFolderKeyNetwork = {\n name: 'folder_key_network',\n data: \"\"\n};\nexport var tylIconFolderKeyOutline = {\n name: 'folder_key_outline',\n data: \"\"\n};\nexport var tylIconFolderKey = {\n name: 'folder_key',\n data: \"\"\n};\nexport var tylIconFolderLockOpen = {\n name: 'folder_lock_open',\n data: \"\"\n};\nexport var tylIconFolderLock = {\n name: 'folder_lock',\n data: \"\"\n};\nexport var tylIconFolderMarkerOutline = {\n name: 'folder_marker_outline',\n data: \"\"\n};\nexport var tylIconFolderMarker = {\n name: 'folder_marker',\n data: \"\"\n};\nexport var tylIconFolderMoveOutline = {\n name: 'folder_move_outline',\n data: \"\"\n};\nexport var tylIconFolderMove = {\n name: 'folder_move',\n data: \"\"\n};\nexport var tylIconFolderMultipleImage = {\n name: 'folder_multiple_image',\n data: \"\"\n};\nexport var tylIconFolderMultipleOutline = {\n name: 'folder_multiple_outline',\n data: \"\"\n};\nexport var tylIconFolderMultiplePlusOutline = {\n name: 'folder_multiple_plus_outline',\n data: \"\"\n};\nexport var tylIconFolderMultiplePlus = {\n name: 'folder_multiple_plus',\n data: \"\"\n};\nexport var tylIconFolderMultiple = {\n name: 'folder_multiple',\n data: \"\"\n};\nexport var tylIconFolderMusicOutline = {\n name: 'folder_music_outline',\n data: \"\"\n};\nexport var tylIconFolderMusic = {\n name: 'folder_music',\n data: \"\"\n};\nexport var tylIconFolderNetworkOutline = {\n name: 'folder_network_outline',\n data: \"\"\n};\nexport var tylIconFolderNetwork = {\n name: 'folder_network',\n data: \"\"\n};\nexport var tylIconFolderOpenOutline = {\n name: 'folder_open_outline',\n data: \"\"\n};\nexport var tylIconFolderOpen = {\n name: 'folder_open',\n data: \"\"\n};\nexport var tylIconFolderOutline = {\n name: 'folder_outline',\n data: \"\"\n};\nexport var tylIconFolderPlusOutline = {\n name: 'folder_plus_outline',\n data: \"\"\n};\nexport var tylIconFolderPlus = {\n name: 'folder_plus',\n data: \"\"\n};\nexport var tylIconFolderPoundOutline = {\n name: 'folder_pound_outline',\n data: \"\"\n};\nexport var tylIconFolderPound = {\n name: 'folder_pound',\n data: \"\"\n};\nexport var tylIconFolderRefreshOutline = {\n name: 'folder_refresh_outline',\n data: \"\"\n};\nexport var tylIconFolderRefresh = {\n name: 'folder_refresh',\n data: \"\"\n};\nexport var tylIconFolderRemoveOutline = {\n name: 'folder_remove_outline',\n data: \"\"\n};\nexport var tylIconFolderRemove = {\n name: 'folder_remove',\n data: \"\"\n};\nexport var tylIconFolderSearchOutline = {\n name: 'folder_search_outline',\n data: \"\"\n};\nexport var tylIconFolderSearch = {\n name: 'folder_search',\n data: \"\"\n};\nexport var tylIconFolderSettingsOutline = {\n name: 'folder_settings_outline',\n data: \"\"\n};\nexport var tylIconFolderSettings = {\n name: 'folder_settings',\n data: \"\"\n};\nexport var tylIconFolderStarMultipleOutline = {\n name: 'folder_star_multiple_outline',\n data: \"\"\n};\nexport var tylIconFolderStarMultiple = {\n name: 'folder_star_multiple',\n data: \"\"\n};\nexport var tylIconFolderStarOutline = {\n name: 'folder_star_outline',\n data: \"\"\n};\nexport var tylIconFolderStar = {\n name: 'folder_star',\n data: \"\"\n};\nexport var tylIconFolderSwapOutline = {\n name: 'folder_swap_outline',\n data: \"\"\n};\nexport var tylIconFolderSwap = {\n name: 'folder_swap',\n data: \"\"\n};\nexport var tylIconFolderSyncOutline = {\n name: 'folder_sync_outline',\n data: \"\"\n};\nexport var tylIconFolderSync = {\n name: 'folder_sync',\n data: \"\"\n};\nexport var tylIconFolderTableOutline = {\n name: 'folder_table_outline',\n data: \"\"\n};\nexport var tylIconFolderTable = {\n name: 'folder_table',\n data: \"\"\n};\nexport var tylIconFolderTextOutline = {\n name: 'folder_text_outline',\n data: \"\"\n};\nexport var tylIconFolderText = {\n name: 'folder_text',\n data: \"\"\n};\nexport var tylIconFolderUploadOutline = {\n name: 'folder_upload_outline',\n data: \"\"\n};\nexport var tylIconFolderUpload = {\n name: 'folder_upload',\n data: \"\"\n};\nexport var tylIconFolderZipOutline = {\n name: 'folder_zip_outline',\n data: \"\"\n};\nexport var tylIconFolderZip = {\n name: 'folder_zip',\n data: \"\"\n};\nexport var tylIconFolder = {\n name: 'folder',\n data: \"\"\n};\nexport var tylIconFontAwesome = {\n name: 'font_awesome',\n data: \"\"\n};\nexport var tylIconFoodAppleOutline = {\n name: 'food_apple_outline',\n data: \"\"\n};\nexport var tylIconFoodApple = {\n name: 'food_apple',\n data: \"\"\n};\nexport var tylIconFoodCroissant = {\n name: 'food_croissant',\n data: \"\"\n};\nexport var tylIconFoodDrumstickOffOutline = {\n name: 'food_drumstick_off_outline',\n data: \"\"\n};\nexport var tylIconFoodDrumstickOff = {\n name: 'food_drumstick_off',\n data: \"\"\n};\nexport var tylIconFoodDrumstickOutline = {\n name: 'food_drumstick_outline',\n data: \"\"\n};\nexport var tylIconFoodDrumstick = {\n name: 'food_drumstick',\n data: \"\"\n};\nexport var tylIconFoodForkDrink = {\n name: 'food_fork_drink',\n data: \"\"\n};\nexport var tylIconFoodHalal = {\n name: 'food_halal',\n data: \"\"\n};\nexport var tylIconFoodKosher = {\n name: 'food_kosher',\n data: \"\"\n};\nexport var tylIconFoodOff = {\n name: 'food_off',\n data: \"\"\n};\nexport var tylIconFoodSteakOff = {\n name: 'food_steak_off',\n data: \"\"\n};\nexport var tylIconFoodSteak = {\n name: 'food_steak',\n data: \"\"\n};\nexport var tylIconFoodTurkey = {\n name: 'food_turkey',\n data: \"\"\n};\nexport var tylIconFoodVariantOff = {\n name: 'food_variant_off',\n data: \"\"\n};\nexport var tylIconFoodVariant = {\n name: 'food_variant',\n data: \"\"\n};\nexport var tylIconFood = {\n name: 'food',\n data: \"\"\n};\nexport var tylIconFootPrint = {\n name: 'foot_print',\n data: \"\"\n};\nexport var tylIconFootballAustralian = {\n name: 'football_australian',\n data: \"\"\n};\nexport var tylIconFootballHelmet = {\n name: 'football_helmet',\n data: \"\"\n};\nexport var tylIconFootball = {\n name: 'football',\n data: \"\"\n};\nexport var tylIconForklift = {\n name: 'forklift',\n data: \"\"\n};\nexport var tylIconFormDropdown = {\n name: 'form_dropdown',\n data: \"\"\n};\nexport var tylIconFormSelect = {\n name: 'form_select',\n data: \"\"\n};\nexport var tylIconFormTextarea = {\n name: 'form_textarea',\n data: \"\"\n};\nexport var tylIconFormTextboxLock = {\n name: 'form_textbox_lock',\n data: \"\"\n};\nexport var tylIconFormTextboxPassword = {\n name: 'form_textbox_password',\n data: \"\"\n};\nexport var tylIconFormTextbox = {\n name: 'form_textbox',\n data: \"\"\n};\nexport var tylIconFormatAlignBottom = {\n name: 'format_align_bottom',\n data: \"\"\n};\nexport var tylIconFormatAlignCenter = {\n name: 'format_align_center',\n data: \"\"\n};\nexport var tylIconFormatAlignJustify = {\n name: 'format_align_justify',\n data: \"\"\n};\nexport var tylIconFormatAlignLeft = {\n name: 'format_align_left',\n data: \"\"\n};\nexport var tylIconFormatAlignMiddle = {\n name: 'format_align_middle',\n data: \"\"\n};\nexport var tylIconFormatAlignRight = {\n name: 'format_align_right',\n data: \"\"\n};\nexport var tylIconFormatAlignTop = {\n name: 'format_align_top',\n data: \"\"\n};\nexport var tylIconFormatAnnotationMinus = {\n name: 'format_annotation_minus',\n data: \"\"\n};\nexport var tylIconFormatAnnotationPlus = {\n name: 'format_annotation_plus',\n data: \"\"\n};\nexport var tylIconFormatBold = {\n name: 'format_bold',\n data: \"\"\n};\nexport var tylIconFormatClear = {\n name: 'format_clear',\n data: \"\"\n};\nexport var tylIconFormatColorFill = {\n name: 'format_color_fill',\n data: \"\"\n};\nexport var tylIconFormatColorHighlight = {\n name: 'format_color_highlight',\n data: \"\"\n};\nexport var tylIconFormatColorMarkerCancel = {\n name: 'format_color_marker_cancel',\n data: \"\"\n};\nexport var tylIconFormatColorText = {\n name: 'format_color_text',\n data: \"\"\n};\nexport var tylIconFormatColumns = {\n name: 'format_columns',\n data: \"\"\n};\nexport var tylIconFormatFloatCenter = {\n name: 'format_float_center',\n data: \"\"\n};\nexport var tylIconFormatFloatLeft = {\n name: 'format_float_left',\n data: \"\"\n};\nexport var tylIconFormatFloatNone = {\n name: 'format_float_none',\n data: \"\"\n};\nexport var tylIconFormatFloatRight = {\n name: 'format_float_right',\n data: \"\"\n};\nexport var tylIconFormatFontSizeDecrease = {\n name: 'format_font_size_decrease',\n data: \"\"\n};\nexport var tylIconFormatFontSizeIncrease = {\n name: 'format_font_size_increase',\n data: \"\"\n};\nexport var tylIconFormatFont = {\n name: 'format_font',\n data: \"\"\n};\nexport var tylIconFormatHeader1 = {\n name: 'format_header_1',\n data: \"\"\n};\nexport var tylIconFormatHeader2 = {\n name: 'format_header_2',\n data: \"\"\n};\nexport var tylIconFormatHeader3 = {\n name: 'format_header_3',\n data: \"\"\n};\nexport var tylIconFormatHeader4 = {\n name: 'format_header_4',\n data: \"\"\n};\nexport var tylIconFormatHeader5 = {\n name: 'format_header_5',\n data: \"\"\n};\nexport var tylIconFormatHeader6 = {\n name: 'format_header_6',\n data: \"\"\n};\nexport var tylIconFormatHeaderDecrease = {\n name: 'format_header_decrease',\n data: \"\"\n};\nexport var tylIconFormatHeaderEqual = {\n name: 'format_header_equal',\n data: \"\"\n};\nexport var tylIconFormatHeaderIncrease = {\n name: 'format_header_increase',\n data: \"\"\n};\nexport var tylIconFormatHeaderPound = {\n name: 'format_header_pound',\n data: \"\"\n};\nexport var tylIconFormatHorizontalAlignCenter = {\n name: 'format_horizontal_align_center',\n data: \"\"\n};\nexport var tylIconFormatHorizontalAlignLeft = {\n name: 'format_horizontal_align_left',\n data: \"\"\n};\nexport var tylIconFormatHorizontalAlignRight = {\n name: 'format_horizontal_align_right',\n data: \"\"\n};\nexport var tylIconFormatIndentDecrease = {\n name: 'format_indent_decrease',\n data: \"\"\n};\nexport var tylIconFormatIndentIncrease = {\n name: 'format_indent_increase',\n data: \"\"\n};\nexport var tylIconFormatItalic = {\n name: 'format_italic',\n data: \"\"\n};\nexport var tylIconFormatLetterCaseLower = {\n name: 'format_letter_case_lower',\n data: \"\"\n};\nexport var tylIconFormatLetterCaseUpper = {\n name: 'format_letter_case_upper',\n data: \"\"\n};\nexport var tylIconFormatLetterCase = {\n name: 'format_letter_case',\n data: \"\"\n};\nexport var tylIconFormatLetterEndsWith = {\n name: 'format_letter_ends_with',\n data: \"\"\n};\nexport var tylIconFormatLetterMatches = {\n name: 'format_letter_matches',\n data: \"\"\n};\nexport var tylIconFormatLetterStartsWith = {\n name: 'format_letter_starts_with',\n data: \"\"\n};\nexport var tylIconFormatLineSpacing = {\n name: 'format_line_spacing',\n data: \"\"\n};\nexport var tylIconFormatLineStyle = {\n name: 'format_line_style',\n data: \"\"\n};\nexport var tylIconFormatLineWeight = {\n name: 'format_line_weight',\n data: \"\"\n};\nexport var tylIconFormatListBulletedSquare = {\n name: 'format_list_bulleted_square',\n data: \"\"\n};\nexport var tylIconFormatListBulletedTriangle = {\n name: 'format_list_bulleted_triangle',\n data: \"\"\n};\nexport var tylIconFormatListBulletedType = {\n name: 'format_list_bulleted_type',\n data: \"\"\n};\nexport var tylIconFormatListBulleted = {\n name: 'format_list_bulleted',\n data: \"\"\n};\nexport var tylIconFormatListCheckbox = {\n name: 'format_list_checkbox',\n data: \"\"\n};\nexport var tylIconFormatListChecks = {\n name: 'format_list_checks',\n data: \"\"\n};\nexport var tylIconFormatListNumberedRtl = {\n name: 'format_list_numbered_rtl',\n data: \"\"\n};\nexport var tylIconFormatListNumbered = {\n name: 'format_list_numbered',\n data: \"\"\n};\nexport var tylIconFormatListText = {\n name: 'format_list_text',\n data: \"\"\n};\nexport var tylIconFormatOverline = {\n name: 'format_overline',\n data: \"\"\n};\nexport var tylIconFormatPageBreak = {\n name: 'format_page_break',\n data: \"\"\n};\nexport var tylIconFormatPaint = {\n name: 'format_paint',\n data: \"\"\n};\nexport var tylIconFormatParagraph = {\n name: 'format_paragraph',\n data: \"\"\n};\nexport var tylIconFormatPilcrow = {\n name: 'format_pilcrow',\n data: \"\"\n};\nexport var tylIconFormatQuoteCloseOutline = {\n name: 'format_quote_close_outline',\n data: \"\"\n};\nexport var tylIconFormatQuoteClose = {\n name: 'format_quote_close',\n data: \"\"\n};\nexport var tylIconFormatQuoteOpenOutline = {\n name: 'format_quote_open_outline',\n data: \"\"\n};\nexport var tylIconFormatQuoteOpen = {\n name: 'format_quote_open',\n data: \"\"\n};\nexport var tylIconFormatRotate90 = {\n name: 'format_rotate_90',\n data: \"\"\n};\nexport var tylIconFormatSection = {\n name: 'format_section',\n data: \"\"\n};\nexport var tylIconFormatSize = {\n name: 'format_size',\n data: \"\"\n};\nexport var tylIconFormatStrikethroughVariant = {\n name: 'format_strikethrough_variant',\n data: \"\"\n};\nexport var tylIconFormatStrikethrough = {\n name: 'format_strikethrough',\n data: \"\"\n};\nexport var tylIconFormatSubscript = {\n name: 'format_subscript',\n data: \"\"\n};\nexport var tylIconFormatSuperscript = {\n name: 'format_superscript',\n data: \"\"\n};\nexport var tylIconFormatTextRotationAngleDown = {\n name: 'format_text_rotation_angle_down',\n data: \"\"\n};\nexport var tylIconFormatTextRotationAngleUp = {\n name: 'format_text_rotation_angle_up',\n data: \"\"\n};\nexport var tylIconFormatTextRotationDownVertical = {\n name: 'format_text_rotation_down_vertical',\n data: \"\"\n};\nexport var tylIconFormatTextRotationDown = {\n name: 'format_text_rotation_down',\n data: \"\"\n};\nexport var tylIconFormatTextRotationNone = {\n name: 'format_text_rotation_none',\n data: \"\"\n};\nexport var tylIconFormatTextRotationUp = {\n name: 'format_text_rotation_up',\n data: \"\"\n};\nexport var tylIconFormatTextRotationVertical = {\n name: 'format_text_rotation_vertical',\n data: \"\"\n};\nexport var tylIconFormatTextVariantOutline = {\n name: 'format_text_variant_outline',\n data: \"\"\n};\nexport var tylIconFormatTextVariant = {\n name: 'format_text_variant',\n data: \"\"\n};\nexport var tylIconFormatTextWrappingClip = {\n name: 'format_text_wrapping_clip',\n data: \"\"\n};\nexport var tylIconFormatTextWrappingOverflow = {\n name: 'format_text_wrapping_overflow',\n data: \"\"\n};\nexport var tylIconFormatTextWrappingWrap = {\n name: 'format_text_wrapping_wrap',\n data: \"\"\n};\nexport var tylIconFormatText = {\n name: 'format_text',\n data: \"\"\n};\nexport var tylIconFormatTextbox = {\n name: 'format_textbox',\n data: \"\"\n};\nexport var tylIconFormatTextdirectionLToR = {\n name: 'format_textdirection_l_to_r',\n data: \"\"\n};\nexport var tylIconFormatTextdirectionRToL = {\n name: 'format_textdirection_r_to_l',\n data: \"\"\n};\nexport var tylIconFormatTitle = {\n name: 'format_title',\n data: \"\"\n};\nexport var tylIconFormatUnderline = {\n name: 'format_underline',\n data: \"\"\n};\nexport var tylIconFormatVerticalAlignBottom = {\n name: 'format_vertical_align_bottom',\n data: \"\"\n};\nexport var tylIconFormatVerticalAlignCenter = {\n name: 'format_vertical_align_center',\n data: \"\"\n};\nexport var tylIconFormatVerticalAlignTop = {\n name: 'format_vertical_align_top',\n data: \"\"\n};\nexport var tylIconFormatWrapInline = {\n name: 'format_wrap_inline',\n data: \"\"\n};\nexport var tylIconFormatWrapSquare = {\n name: 'format_wrap_square',\n data: \"\"\n};\nexport var tylIconFormatWrapTight = {\n name: 'format_wrap_tight',\n data: \"\"\n};\nexport var tylIconFormatWrapTopBottom = {\n name: 'format_wrap_top_bottom',\n data: \"\"\n};\nexport var tylIconForumOutline = {\n name: 'forum_outline',\n data: \"\"\n};\nexport var tylIconForum = {\n name: 'forum',\n data: \"\"\n};\nexport var tylIconForward = {\n name: 'forward',\n data: \"\"\n};\nexport var tylIconForwardburger = {\n name: 'forwardburger',\n data: \"\"\n};\nexport var tylIconFountainPenTip = {\n name: 'fountain_pen_tip',\n data: \"\"\n};\nexport var tylIconFountainPen = {\n name: 'fountain_pen',\n data: \"\"\n};\nexport var tylIconFountain = {\n name: 'fountain',\n data: \"\"\n};\nexport var tylIconFreebsd = {\n name: 'freebsd',\n data: \"\"\n};\nexport var tylIconFrequentlyAskedQuestions = {\n name: 'frequently_asked_questions',\n data: \"\"\n};\nexport var tylIconFridgeAlertOutline = {\n name: 'fridge_alert_outline',\n data: \"\"\n};\nexport var tylIconFridgeAlert = {\n name: 'fridge_alert',\n data: \"\"\n};\nexport var tylIconFridgeBottom = {\n name: 'fridge_bottom',\n data: \"\"\n};\nexport var tylIconFridgeIndustrialAlertOutline = {\n name: 'fridge_industrial_alert_outline',\n data: \"\"\n};\nexport var tylIconFridgeIndustrialAlert = {\n name: 'fridge_industrial_alert',\n data: \"\"\n};\nexport var tylIconFridgeIndustrialOffOutline = {\n name: 'fridge_industrial_off_outline',\n data: \"\"\n};\nexport var tylIconFridgeIndustrialOff = {\n name: 'fridge_industrial_off',\n data: \"\"\n};\nexport var tylIconFridgeIndustrialOutline = {\n name: 'fridge_industrial_outline',\n data: \"\"\n};\nexport var tylIconFridgeIndustrial = {\n name: 'fridge_industrial',\n data: \"\"\n};\nexport var tylIconFridgeOffOutline = {\n name: 'fridge_off_outline',\n data: \"\"\n};\nexport var tylIconFridgeOff = {\n name: 'fridge_off',\n data: \"\"\n};\nexport var tylIconFridgeOutline = {\n name: 'fridge_outline',\n data: \"\"\n};\nexport var tylIconFridgeTop = {\n name: 'fridge_top',\n data: \"\"\n};\nexport var tylIconFridgeVariantAlertOutline = {\n name: 'fridge_variant_alert_outline',\n data: \"\"\n};\nexport var tylIconFridgeVariantAlert = {\n name: 'fridge_variant_alert',\n data: \"\"\n};\nexport var tylIconFridgeVariantOffOutline = {\n name: 'fridge_variant_off_outline',\n data: \"\"\n};\nexport var tylIconFridgeVariantOff = {\n name: 'fridge_variant_off',\n data: \"\"\n};\nexport var tylIconFridgeVariantOutline = {\n name: 'fridge_variant_outline',\n data: \"\"\n};\nexport var tylIconFridgeVariant = {\n name: 'fridge_variant',\n data: \"\"\n};\nexport var tylIconFridge = {\n name: 'fridge',\n data: \"\"\n};\nexport var tylIconFruitCherriesOff = {\n name: 'fruit_cherries_off',\n data: \"\"\n};\nexport var tylIconFruitCherries = {\n name: 'fruit_cherries',\n data: \"\"\n};\nexport var tylIconFruitCitrusOff = {\n name: 'fruit_citrus_off',\n data: \"\"\n};\nexport var tylIconFruitCitrus = {\n name: 'fruit_citrus',\n data: \"\"\n};\nexport var tylIconFruitGrapesOutline = {\n name: 'fruit_grapes_outline',\n data: \"\"\n};\nexport var tylIconFruitGrapes = {\n name: 'fruit_grapes',\n data: \"\"\n};\nexport var tylIconFruitPineapple = {\n name: 'fruit_pineapple',\n data: \"\"\n};\nexport var tylIconFruitWatermelon = {\n name: 'fruit_watermelon',\n data: \"\"\n};\nexport var tylIconFuel = {\n name: 'fuel',\n data: \"\"\n};\nexport var tylIconFullscreenExit = {\n name: 'fullscreen_exit',\n data: \"\"\n};\nexport var tylIconFullscreen = {\n name: 'fullscreen',\n data: \"\"\n};\nexport var tylIconFunctionVariant = {\n name: 'function_variant',\n data: \"\"\n};\nexport var tylIconFunction = {\n name: 'function',\n data: \"\"\n};\nexport var tylIconFuriganaHorizontal = {\n name: 'furigana_horizontal',\n data: \"\"\n};\nexport var tylIconFuriganaVertical = {\n name: 'furigana_vertical',\n data: \"\"\n};\nexport var tylIconFuseAlert = {\n name: 'fuse_alert',\n data: \"\"\n};\nexport var tylIconFuseBlade = {\n name: 'fuse_blade',\n data: \"\"\n};\nexport var tylIconFuseOff = {\n name: 'fuse_off',\n data: \"\"\n};\nexport var tylIconFuse = {\n name: 'fuse',\n data: \"\"\n};\nexport var tylIconGamepadCircleDown = {\n name: 'gamepad_circle_down',\n data: \"\"\n};\nexport var tylIconGamepadCircleLeft = {\n name: 'gamepad_circle_left',\n data: \"\"\n};\nexport var tylIconGamepadCircleOutline = {\n name: 'gamepad_circle_outline',\n data: \"\"\n};\nexport var tylIconGamepadCircleRight = {\n name: 'gamepad_circle_right',\n data: \"\"\n};\nexport var tylIconGamepadCircleUp = {\n name: 'gamepad_circle_up',\n data: \"\"\n};\nexport var tylIconGamepadCircle = {\n name: 'gamepad_circle',\n data: \"\"\n};\nexport var tylIconGamepadDown = {\n name: 'gamepad_down',\n data: \"\"\n};\nexport var tylIconGamepadLeft = {\n name: 'gamepad_left',\n data: \"\"\n};\nexport var tylIconGamepadRight = {\n name: 'gamepad_right',\n data: \"\"\n};\nexport var tylIconGamepadRoundDown = {\n name: 'gamepad_round_down',\n data: \"\"\n};\nexport var tylIconGamepadRoundLeft = {\n name: 'gamepad_round_left',\n data: \"\"\n};\nexport var tylIconGamepadRoundOutline = {\n name: 'gamepad_round_outline',\n data: \"\"\n};\nexport var tylIconGamepadRoundRight = {\n name: 'gamepad_round_right',\n data: \"\"\n};\nexport var tylIconGamepadRoundUp = {\n name: 'gamepad_round_up',\n data: \"\"\n};\nexport var tylIconGamepadRound = {\n name: 'gamepad_round',\n data: \"\"\n};\nexport var tylIconGamepadSquareOutline = {\n name: 'gamepad_square_outline',\n data: \"\"\n};\nexport var tylIconGamepadSquare = {\n name: 'gamepad_square',\n data: \"\"\n};\nexport var tylIconGamepadUp = {\n name: 'gamepad_up',\n data: \"\"\n};\nexport var tylIconGamepadVariantOutline = {\n name: 'gamepad_variant_outline',\n data: \"\"\n};\nexport var tylIconGamepadVariant = {\n name: 'gamepad_variant',\n data: \"\"\n};\nexport var tylIconGamepad = {\n name: 'gamepad',\n data: \"\"\n};\nexport var tylIconGamma = {\n name: 'gamma',\n data: \"\"\n};\nexport var tylIconGantryCrane = {\n name: 'gantry_crane',\n data: \"\"\n};\nexport var tylIconGarageAlertVariant = {\n name: 'garage_alert_variant',\n data: \"\"\n};\nexport var tylIconGarageAlert = {\n name: 'garage_alert',\n data: \"\"\n};\nexport var tylIconGarageOpenVariant = {\n name: 'garage_open_variant',\n data: \"\"\n};\nexport var tylIconGarageOpen = {\n name: 'garage_open',\n data: \"\"\n};\nexport var tylIconGarageVariant = {\n name: 'garage_variant',\n data: \"\"\n};\nexport var tylIconGarage = {\n name: 'garage',\n data: \"\"\n};\nexport var tylIconGasCylinder = {\n name: 'gas_cylinder',\n data: \"\"\n};\nexport var tylIconGasStationOffOutline = {\n name: 'gas_station_off_outline',\n data: \"\"\n};\nexport var tylIconGasStationOff = {\n name: 'gas_station_off',\n data: \"\"\n};\nexport var tylIconGasStationOutline = {\n name: 'gas_station_outline',\n data: \"\"\n};\nexport var tylIconGasStation = {\n name: 'gas_station',\n data: \"\"\n};\nexport var tylIconGateAnd = {\n name: 'gate_and',\n data: \"\"\n};\nexport var tylIconGateArrowRight = {\n name: 'gate_arrow_right',\n data: \"\"\n};\nexport var tylIconGateNand = {\n name: 'gate_nand',\n data: \"\"\n};\nexport var tylIconGateNor = {\n name: 'gate_nor',\n data: \"\"\n};\nexport var tylIconGateNot = {\n name: 'gate_not',\n data: \"\"\n};\nexport var tylIconGateOpen = {\n name: 'gate_open',\n data: \"\"\n};\nexport var tylIconGateOr = {\n name: 'gate_or',\n data: \"\"\n};\nexport var tylIconGateXnor = {\n name: 'gate_xnor',\n data: \"\"\n};\nexport var tylIconGateXor = {\n name: 'gate_xor',\n data: \"\"\n};\nexport var tylIconGate = {\n name: 'gate',\n data: \"\"\n};\nexport var tylIconGatsby = {\n name: 'gatsby',\n data: \"\"\n};\nexport var tylIconGaugeEmpty = {\n name: 'gauge_empty',\n data: \"\"\n};\nexport var tylIconGaugeFull = {\n name: 'gauge_full',\n data: \"\"\n};\nexport var tylIconGaugeLow = {\n name: 'gauge_low',\n data: \"\"\n};\nexport var tylIconGauge = {\n name: 'gauge',\n data: \"\"\n};\nexport var tylIconGavel = {\n name: 'gavel',\n data: \"\"\n};\nexport var tylIconGenderFemale = {\n name: 'gender_female',\n data: \"\"\n};\nexport var tylIconGenderMaleFemaleVariant = {\n name: 'gender_male_female_variant',\n data: \"\"\n};\nexport var tylIconGenderMaleFemale = {\n name: 'gender_male_female',\n data: \"\"\n};\nexport var tylIconGenderMale = {\n name: 'gender_male',\n data: \"\"\n};\nexport var tylIconGenderNonBinary = {\n name: 'gender_non_binary',\n data: \"\"\n};\nexport var tylIconGenderTransgender = {\n name: 'gender_transgender',\n data: \"\"\n};\nexport var tylIconGentoo = {\n name: 'gentoo',\n data: \"\"\n};\nexport var tylIconGestureDoubleTap = {\n name: 'gesture_double_tap',\n data: \"\"\n};\nexport var tylIconGesturePinch = {\n name: 'gesture_pinch',\n data: \"\"\n};\nexport var tylIconGestureSpread = {\n name: 'gesture_spread',\n data: \"\"\n};\nexport var tylIconGestureSwipeDown = {\n name: 'gesture_swipe_down',\n data: \"\"\n};\nexport var tylIconGestureSwipeHorizontal = {\n name: 'gesture_swipe_horizontal',\n data: \"\"\n};\nexport var tylIconGestureSwipeLeft = {\n name: 'gesture_swipe_left',\n data: \"\"\n};\nexport var tylIconGestureSwipeRight = {\n name: 'gesture_swipe_right',\n data: \"\"\n};\nexport var tylIconGestureSwipeUp = {\n name: 'gesture_swipe_up',\n data: \"\"\n};\nexport var tylIconGestureSwipeVertical = {\n name: 'gesture_swipe_vertical',\n data: \"\"\n};\nexport var tylIconGestureSwipe = {\n name: 'gesture_swipe',\n data: \"\"\n};\nexport var tylIconGestureTapBox = {\n name: 'gesture_tap_box',\n data: \"\"\n};\nexport var tylIconGestureTapButton = {\n name: 'gesture_tap_button',\n data: \"\"\n};\nexport var tylIconGestureTapHold = {\n name: 'gesture_tap_hold',\n data: \"\"\n};\nexport var tylIconGestureTap = {\n name: 'gesture_tap',\n data: \"\"\n};\nexport var tylIconGestureTwoDoubleTap = {\n name: 'gesture_two_double_tap',\n data: \"\"\n};\nexport var tylIconGestureTwoTap = {\n name: 'gesture_two_tap',\n data: \"\"\n};\nexport var tylIconGesture = {\n name: 'gesture',\n data: \"\"\n};\nexport var tylIconGhostOffOutline = {\n name: 'ghost_off_outline',\n data: \"\"\n};\nexport var tylIconGhostOff = {\n name: 'ghost_off',\n data: \"\"\n};\nexport var tylIconGhostOutline = {\n name: 'ghost_outline',\n data: \"\"\n};\nexport var tylIconGhost = {\n name: 'ghost',\n data: \"\"\n};\nexport var tylIconGif = {\n name: 'gif',\n data: \"\"\n};\nexport var tylIconGiftOffOutline = {\n name: 'gift_off_outline',\n data: \"\"\n};\nexport var tylIconGiftOff = {\n name: 'gift_off',\n data: \"\"\n};\nexport var tylIconGiftOpenOutline = {\n name: 'gift_open_outline',\n data: \"\"\n};\nexport var tylIconGiftOpen = {\n name: 'gift_open',\n data: \"\"\n};\nexport var tylIconGiftOutline = {\n name: 'gift_outline',\n data: \"\"\n};\nexport var tylIconGift = {\n name: 'gift',\n data: \"\"\n};\nexport var tylIconGit = {\n name: 'git',\n data: \"\"\n};\nexport var tylIconGithub = {\n name: 'github',\n data: \"\"\n};\nexport var tylIconGitlab = {\n name: 'gitlab',\n data: \"\"\n};\nexport var tylIconGlassCocktailOff = {\n name: 'glass_cocktail_off',\n data: \"\"\n};\nexport var tylIconGlassCocktail = {\n name: 'glass_cocktail',\n data: \"\"\n};\nexport var tylIconGlassFlute = {\n name: 'glass_flute',\n data: \"\"\n};\nexport var tylIconGlassMugOff = {\n name: 'glass_mug_off',\n data: \"\"\n};\nexport var tylIconGlassMugVariantOff = {\n name: 'glass_mug_variant_off',\n data: \"\"\n};\nexport var tylIconGlassMugVariant = {\n name: 'glass_mug_variant',\n data: \"\"\n};\nexport var tylIconGlassMug = {\n name: 'glass_mug',\n data: \"\"\n};\nexport var tylIconGlassPintOutline = {\n name: 'glass_pint_outline',\n data: \"\"\n};\nexport var tylIconGlassStange = {\n name: 'glass_stange',\n data: \"\"\n};\nexport var tylIconGlassTulip = {\n name: 'glass_tulip',\n data: \"\"\n};\nexport var tylIconGlassWine = {\n name: 'glass_wine',\n data: \"\"\n};\nexport var tylIconGlasses = {\n name: 'glasses',\n data: \"\"\n};\nexport var tylIconGlobeLight = {\n name: 'globe_light',\n data: \"\"\n};\nexport var tylIconGlobeModel = {\n name: 'globe_model',\n data: \"\"\n};\nexport var tylIconGmail = {\n name: 'gmail',\n data: \"\"\n};\nexport var tylIconGnome = {\n name: 'gnome',\n data: \"\"\n};\nexport var tylIconGoKartTrack = {\n name: 'go_kart_track',\n data: \"\"\n};\nexport var tylIconGoKart = {\n name: 'go_kart',\n data: \"\"\n};\nexport var tylIconGog = {\n name: 'gog',\n data: \"\"\n};\nexport var tylIconGold = {\n name: 'gold',\n data: \"\"\n};\nexport var tylIconGolfCart = {\n name: 'golf_cart',\n data: \"\"\n};\nexport var tylIconGolfTee = {\n name: 'golf_tee',\n data: \"\"\n};\nexport var tylIconGolf = {\n name: 'golf',\n data: \"\"\n};\nexport var tylIconGondola = {\n name: 'gondola',\n data: \"\"\n};\nexport var tylIconGoodreads = {\n name: 'goodreads',\n data: \"\"\n};\nexport var tylIconGoogleAds = {\n name: 'google_ads',\n data: \"\"\n};\nexport var tylIconGoogleAnalytics = {\n name: 'google_analytics',\n data: \"\"\n};\nexport var tylIconGoogleAssistant = {\n name: 'google_assistant',\n data: \"\"\n};\nexport var tylIconGoogleCardboard = {\n name: 'google_cardboard',\n data: \"\"\n};\nexport var tylIconGoogleChrome = {\n name: 'google_chrome',\n data: \"\"\n};\nexport var tylIconGoogleCirclesCommunities = {\n name: 'google_circles_communities',\n data: \"\"\n};\nexport var tylIconGoogleCirclesExtended = {\n name: 'google_circles_extended',\n data: \"\"\n};\nexport var tylIconGoogleCirclesGroup = {\n name: 'google_circles_group',\n data: \"\"\n};\nexport var tylIconGoogleCircles = {\n name: 'google_circles',\n data: \"\"\n};\nexport var tylIconGoogleClassroom = {\n name: 'google_classroom',\n data: \"\"\n};\nexport var tylIconGoogleCloud = {\n name: 'google_cloud',\n data: \"\"\n};\nexport var tylIconGoogleControllerOff = {\n name: 'google_controller_off',\n data: \"\"\n};\nexport var tylIconGoogleController = {\n name: 'google_controller',\n data: \"\"\n};\nexport var tylIconGoogleDownasaur = {\n name: 'google_downasaur',\n data: \"\"\n};\nexport var tylIconGoogleDrive = {\n name: 'google_drive',\n data: \"\"\n};\nexport var tylIconGoogleEarth = {\n name: 'google_earth',\n data: \"\"\n};\nexport var tylIconGoogleFit = {\n name: 'google_fit',\n data: \"\"\n};\nexport var tylIconGoogleGlass = {\n name: 'google_glass',\n data: \"\"\n};\nexport var tylIconGoogleHangouts = {\n name: 'google_hangouts',\n data: \"\"\n};\nexport var tylIconGoogleHome = {\n name: 'google_home',\n data: \"\"\n};\nexport var tylIconGoogleKeep = {\n name: 'google_keep',\n data: \"\"\n};\nexport var tylIconGoogleLens = {\n name: 'google_lens',\n data: \"\"\n};\nexport var tylIconGoogleMaps = {\n name: 'google_maps',\n data: \"\"\n};\nexport var tylIconGoogleMyBusiness = {\n name: 'google_my_business',\n data: \"\"\n};\nexport var tylIconGoogleNearby = {\n name: 'google_nearby',\n data: \"\"\n};\nexport var tylIconGooglePhotos = {\n name: 'google_photos',\n data: \"\"\n};\nexport var tylIconGooglePlay = {\n name: 'google_play',\n data: \"\"\n};\nexport var tylIconGooglePlus = {\n name: 'google_plus',\n data: \"\"\n};\nexport var tylIconGooglePodcast = {\n name: 'google_podcast',\n data: \"\"\n};\nexport var tylIconGoogleSpreadsheet = {\n name: 'google_spreadsheet',\n data: \"\"\n};\nexport var tylIconGoogleStreetView = {\n name: 'google_street_view',\n data: \"\"\n};\nexport var tylIconGoogleTranslate = {\n name: 'google_translate',\n data: \"\"\n};\nexport var tylIconGoogle = {\n name: 'google',\n data: \"\"\n};\nexport var tylIconGradient = {\n name: 'gradient',\n data: \"\"\n};\nexport var tylIconGrain = {\n name: 'grain',\n data: \"\"\n};\nexport var tylIconGraphOutline = {\n name: 'graph_outline',\n data: \"\"\n};\nexport var tylIconGraph = {\n name: 'graph',\n data: \"\"\n};\nexport var tylIconGraphql = {\n name: 'graphql',\n data: \"\"\n};\nexport var tylIconGrass = {\n name: 'grass',\n data: \"\"\n};\nexport var tylIconGraveStone = {\n name: 'grave_stone',\n data: \"\"\n};\nexport var tylIconGreasePencil = {\n name: 'grease_pencil',\n data: \"\"\n};\nexport var tylIconGreaterThanOrEqual = {\n name: 'greater_than_or_equal',\n data: \"\"\n};\nexport var tylIconGreaterThan = {\n name: 'greater_than',\n data: \"\"\n};\nexport var tylIconGridLarge = {\n name: 'grid_large',\n data: \"\"\n};\nexport var tylIconGridOff = {\n name: 'grid_off',\n data: \"\"\n};\nexport var tylIconGrid = {\n name: 'grid',\n data: \"\"\n};\nexport var tylIconGrillOutline = {\n name: 'grill_outline',\n data: \"\"\n};\nexport var tylIconGrill = {\n name: 'grill',\n data: \"\"\n};\nexport var tylIconGroup = {\n name: 'group',\n data: \"\"\n};\nexport var tylIconGuitarAcoustic = {\n name: 'guitar_acoustic',\n data: \"\"\n};\nexport var tylIconGuitarElectric = {\n name: 'guitar_electric',\n data: \"\"\n};\nexport var tylIconGuitarPickOutline = {\n name: 'guitar_pick_outline',\n data: \"\"\n};\nexport var tylIconGuitarPick = {\n name: 'guitar_pick',\n data: \"\"\n};\nexport var tylIconGuyFawkesMask = {\n name: 'guy_fawkes_mask',\n data: \"\"\n};\nexport var tylIconHail = {\n name: 'hail',\n data: \"\"\n};\nexport var tylIconHairDryerOutline = {\n name: 'hair_dryer_outline',\n data: \"\"\n};\nexport var tylIconHairDryer = {\n name: 'hair_dryer',\n data: \"\"\n};\nexport var tylIconHalloween = {\n name: 'halloween',\n data: \"\"\n};\nexport var tylIconHamburger = {\n name: 'hamburger',\n data: \"\"\n};\nexport var tylIconHammerScrewdriver = {\n name: 'hammer_screwdriver',\n data: \"\"\n};\nexport var tylIconHammerWrench = {\n name: 'hammer_wrench',\n data: \"\"\n};\nexport var tylIconHammer = {\n name: 'hammer',\n data: \"\"\n};\nexport var tylIconHandHeartOutline = {\n name: 'hand_heart_outline',\n data: \"\"\n};\nexport var tylIconHandHeart = {\n name: 'hand_heart',\n data: \"\"\n};\nexport var tylIconHandLeft = {\n name: 'hand_left',\n data: \"\"\n};\nexport var tylIconHandOkay = {\n name: 'hand_okay',\n data: \"\"\n};\nexport var tylIconHandPeaceVariant = {\n name: 'hand_peace_variant',\n data: \"\"\n};\nexport var tylIconHandPeace = {\n name: 'hand_peace',\n data: \"\"\n};\nexport var tylIconHandPointingDown = {\n name: 'hand_pointing_down',\n data: \"\"\n};\nexport var tylIconHandPointingLeft = {\n name: 'hand_pointing_left',\n data: \"\"\n};\nexport var tylIconHandPointingRight = {\n name: 'hand_pointing_right',\n data: \"\"\n};\nexport var tylIconHandPointingUp = {\n name: 'hand_pointing_up',\n data: \"\"\n};\nexport var tylIconHandRight = {\n name: 'hand_right',\n data: \"\"\n};\nexport var tylIconHandSaw = {\n name: 'hand_saw',\n data: \"\"\n};\nexport var tylIconHandWashOutline = {\n name: 'hand_wash_outline',\n data: \"\"\n};\nexport var tylIconHandWash = {\n name: 'hand_wash',\n data: \"\"\n};\nexport var tylIconHandWater = {\n name: 'hand_water',\n data: \"\"\n};\nexport var tylIconHand = {\n name: 'hand',\n data: \"\"\n};\nexport var tylIconHandball = {\n name: 'handball',\n data: \"\"\n};\nexport var tylIconHandcuffs = {\n name: 'handcuffs',\n data: \"\"\n};\nexport var tylIconHandshakeOutline = {\n name: 'handshake_outline',\n data: \"\"\n};\nexport var tylIconHandshake = {\n name: 'handshake',\n data: \"\"\n};\nexport var tylIconHanger = {\n name: 'hanger',\n data: \"\"\n};\nexport var tylIconHardHat = {\n name: 'hard_hat',\n data: \"\"\n};\nexport var tylIconHarddiskPlus = {\n name: 'harddisk_plus',\n data: \"\"\n};\nexport var tylIconHarddiskRemove = {\n name: 'harddisk_remove',\n data: \"\"\n};\nexport var tylIconHarddisk = {\n name: 'harddisk',\n data: \"\"\n};\nexport var tylIconHatFedora = {\n name: 'hat_fedora',\n data: \"\"\n};\nexport var tylIconHazardLights = {\n name: 'hazard_lights',\n data: \"\"\n};\nexport var tylIconHdrOff = {\n name: 'hdr_off',\n data: \"\"\n};\nexport var tylIconHdr = {\n name: 'hdr',\n data: \"\"\n};\nexport var tylIconHeadAlertOutline = {\n name: 'head_alert_outline',\n data: \"\"\n};\nexport var tylIconHeadAlert = {\n name: 'head_alert',\n data: \"\"\n};\nexport var tylIconHeadCheckOutline = {\n name: 'head_check_outline',\n data: \"\"\n};\nexport var tylIconHeadCheck = {\n name: 'head_check',\n data: \"\"\n};\nexport var tylIconHeadCogOutline = {\n name: 'head_cog_outline',\n data: \"\"\n};\nexport var tylIconHeadCog = {\n name: 'head_cog',\n data: \"\"\n};\nexport var tylIconHeadDotsHorizontalOutline = {\n name: 'head_dots_horizontal_outline',\n data: \"\"\n};\nexport var tylIconHeadDotsHorizontal = {\n name: 'head_dots_horizontal',\n data: \"\"\n};\nexport var tylIconHeadFlashOutline = {\n name: 'head_flash_outline',\n data: \"\"\n};\nexport var tylIconHeadFlash = {\n name: 'head_flash',\n data: \"\"\n};\nexport var tylIconHeadHeartOutline = {\n name: 'head_heart_outline',\n data: \"\"\n};\nexport var tylIconHeadHeart = {\n name: 'head_heart',\n data: \"\"\n};\nexport var tylIconHeadLightbulbOutline = {\n name: 'head_lightbulb_outline',\n data: \"\"\n};\nexport var tylIconHeadLightbulb = {\n name: 'head_lightbulb',\n data: \"\"\n};\nexport var tylIconHeadMinusOutline = {\n name: 'head_minus_outline',\n data: \"\"\n};\nexport var tylIconHeadMinus = {\n name: 'head_minus',\n data: \"\"\n};\nexport var tylIconHeadOutline = {\n name: 'head_outline',\n data: \"\"\n};\nexport var tylIconHeadPlusOutline = {\n name: 'head_plus_outline',\n data: \"\"\n};\nexport var tylIconHeadPlus = {\n name: 'head_plus',\n data: \"\"\n};\nexport var tylIconHeadQuestionOutline = {\n name: 'head_question_outline',\n data: \"\"\n};\nexport var tylIconHeadQuestion = {\n name: 'head_question',\n data: \"\"\n};\nexport var tylIconHeadRemoveOutline = {\n name: 'head_remove_outline',\n data: \"\"\n};\nexport var tylIconHeadRemove = {\n name: 'head_remove',\n data: \"\"\n};\nexport var tylIconHeadSnowflakeOutline = {\n name: 'head_snowflake_outline',\n data: \"\"\n};\nexport var tylIconHeadSnowflake = {\n name: 'head_snowflake',\n data: \"\"\n};\nexport var tylIconHeadSyncOutline = {\n name: 'head_sync_outline',\n data: \"\"\n};\nexport var tylIconHeadSync = {\n name: 'head_sync',\n data: \"\"\n};\nexport var tylIconHead = {\n name: 'head',\n data: \"\"\n};\nexport var tylIconHeadphonesBluetooth = {\n name: 'headphones_bluetooth',\n data: \"\"\n};\nexport var tylIconHeadphonesBox = {\n name: 'headphones_box',\n data: \"\"\n};\nexport var tylIconHeadphonesOff = {\n name: 'headphones_off',\n data: \"\"\n};\nexport var tylIconHeadphonesSettings = {\n name: 'headphones_settings',\n data: \"\"\n};\nexport var tylIconHeadphones = {\n name: 'headphones',\n data: \"\"\n};\nexport var tylIconHeadsetDock = {\n name: 'headset_dock',\n data: \"\"\n};\nexport var tylIconHeadsetOff = {\n name: 'headset_off',\n data: \"\"\n};\nexport var tylIconHeadset = {\n name: 'headset',\n data: \"\"\n};\nexport var tylIconHeartBoxOutline = {\n name: 'heart_box_outline',\n data: \"\"\n};\nexport var tylIconHeartBox = {\n name: 'heart_box',\n data: \"\"\n};\nexport var tylIconHeartBrokenOutline = {\n name: 'heart_broken_outline',\n data: \"\"\n};\nexport var tylIconHeartBroken = {\n name: 'heart_broken',\n data: \"\"\n};\nexport var tylIconHeartCircleOutline = {\n name: 'heart_circle_outline',\n data: \"\"\n};\nexport var tylIconHeartCircle = {\n name: 'heart_circle',\n data: \"\"\n};\nexport var tylIconHeartCogOutline = {\n name: 'heart_cog_outline',\n data: \"\"\n};\nexport var tylIconHeartCog = {\n name: 'heart_cog',\n data: \"\"\n};\nexport var tylIconHeartFlash = {\n name: 'heart_flash',\n data: \"\"\n};\nexport var tylIconHeartHalfFull = {\n name: 'heart_half_full',\n data: \"\"\n};\nexport var tylIconHeartHalfOutline = {\n name: 'heart_half_outline',\n data: \"\"\n};\nexport var tylIconHeartHalf = {\n name: 'heart_half',\n data: \"\"\n};\nexport var tylIconHeartMinusOutline = {\n name: 'heart_minus_outline',\n data: \"\"\n};\nexport var tylIconHeartMinus = {\n name: 'heart_minus',\n data: \"\"\n};\nexport var tylIconHeartMultipleOutline = {\n name: 'heart_multiple_outline',\n data: \"\"\n};\nexport var tylIconHeartMultiple = {\n name: 'heart_multiple',\n data: \"\"\n};\nexport var tylIconHeartOffOutline = {\n name: 'heart_off_outline',\n data: \"\"\n};\nexport var tylIconHeartOff = {\n name: 'heart_off',\n data: \"\"\n};\nexport var tylIconHeartOutline = {\n name: 'heart_outline',\n data: \"\"\n};\nexport var tylIconHeartPlusOutline = {\n name: 'heart_plus_outline',\n data: \"\"\n};\nexport var tylIconHeartPlus = {\n name: 'heart_plus',\n data: \"\"\n};\nexport var tylIconHeartPulse = {\n name: 'heart_pulse',\n data: \"\"\n};\nexport var tylIconHeartRemoveOutline = {\n name: 'heart_remove_outline',\n data: \"\"\n};\nexport var tylIconHeartRemove = {\n name: 'heart_remove',\n data: \"\"\n};\nexport var tylIconHeartSettingsOutline = {\n name: 'heart_settings_outline',\n data: \"\"\n};\nexport var tylIconHeartSettings = {\n name: 'heart_settings',\n data: \"\"\n};\nexport var tylIconHeart = {\n name: 'heart',\n data: \"\"\n};\nexport var tylIconHelicopter = {\n name: 'helicopter',\n data: \"\"\n};\nexport var tylIconHelpBox = {\n name: 'help_box',\n data: \"\"\n};\nexport var tylIconHelpCircleOutline = {\n name: 'help_circle_outline',\n data: \"\"\n};\nexport var tylIconHelpCircle = {\n name: 'help_circle',\n data: \"\"\n};\nexport var tylIconHelpNetworkOutline = {\n name: 'help_network_outline',\n data: \"\"\n};\nexport var tylIconHelpNetwork = {\n name: 'help_network',\n data: \"\"\n};\nexport var tylIconHelpRhombusOutline = {\n name: 'help_rhombus_outline',\n data: \"\"\n};\nexport var tylIconHelpRhombus = {\n name: 'help_rhombus',\n data: \"\"\n};\nexport var tylIconHelp = {\n name: 'help',\n data: \"\"\n};\nexport var tylIconHexadecimal = {\n name: 'hexadecimal',\n data: \"\"\n};\nexport var tylIconHexagonMultipleOutline = {\n name: 'hexagon_multiple_outline',\n data: \"\"\n};\nexport var tylIconHexagonMultiple = {\n name: 'hexagon_multiple',\n data: \"\"\n};\nexport var tylIconHexagonOutline = {\n name: 'hexagon_outline',\n data: \"\"\n};\nexport var tylIconHexagonSlice1 = {\n name: 'hexagon_slice_1',\n data: \"\"\n};\nexport var tylIconHexagonSlice2 = {\n name: 'hexagon_slice_2',\n data: \"\"\n};\nexport var tylIconHexagonSlice3 = {\n name: 'hexagon_slice_3',\n data: \"\"\n};\nexport var tylIconHexagonSlice4 = {\n name: 'hexagon_slice_4',\n data: \"\"\n};\nexport var tylIconHexagonSlice5 = {\n name: 'hexagon_slice_5',\n data: \"\"\n};\nexport var tylIconHexagonSlice6 = {\n name: 'hexagon_slice_6',\n data: \"\"\n};\nexport var tylIconHexagon = {\n name: 'hexagon',\n data: \"\"\n};\nexport var tylIconHexagramOutline = {\n name: 'hexagram_outline',\n data: \"\"\n};\nexport var tylIconHexagram = {\n name: 'hexagram',\n data: \"\"\n};\nexport var tylIconHighDefinitionBox = {\n name: 'high_definition_box',\n data: \"\"\n};\nexport var tylIconHighDefinition = {\n name: 'high_definition',\n data: \"\"\n};\nexport var tylIconHighway = {\n name: 'highway',\n data: \"\"\n};\nexport var tylIconHiking = {\n name: 'hiking',\n data: \"\"\n};\nexport var tylIconHinduism = {\n name: 'hinduism',\n data: \"\"\n};\nexport var tylIconHistory = {\n name: 'history',\n data: \"\"\n};\nexport var tylIconHockeyPuck = {\n name: 'hockey_puck',\n data: \"\"\n};\nexport var tylIconHockeySticks = {\n name: 'hockey_sticks',\n data: \"\"\n};\nexport var tylIconHololens = {\n name: 'hololens',\n data: \"\"\n};\nexport var tylIconHomeAccount = {\n name: 'home_account',\n data: \"\"\n};\nexport var tylIconHomeAlertOutline = {\n name: 'home_alert_outline',\n data: \"\"\n};\nexport var tylIconHomeAlert = {\n name: 'home_alert',\n data: \"\"\n};\nexport var tylIconHomeAnalytics = {\n name: 'home_analytics',\n data: \"\"\n};\nexport var tylIconHomeAssistant = {\n name: 'home_assistant',\n data: \"\"\n};\nexport var tylIconHomeAutomation = {\n name: 'home_automation',\n data: \"\"\n};\nexport var tylIconHomeCircleOutline = {\n name: 'home_circle_outline',\n data: \"\"\n};\nexport var tylIconHomeCircle = {\n name: 'home_circle',\n data: \"\"\n};\nexport var tylIconHomeCityOutline = {\n name: 'home_city_outline',\n data: \"\"\n};\nexport var tylIconHomeCity = {\n name: 'home_city',\n data: \"\"\n};\nexport var tylIconHomeCurrencyUsd = {\n name: 'home_currency_usd',\n data: \"\"\n};\nexport var tylIconHomeEditOutline = {\n name: 'home_edit_outline',\n data: \"\"\n};\nexport var tylIconHomeEdit = {\n name: 'home_edit',\n data: \"\"\n};\nexport var tylIconHomeExportOutline = {\n name: 'home_export_outline',\n data: \"\"\n};\nexport var tylIconHomeFlood = {\n name: 'home_flood',\n data: \"\"\n};\nexport var tylIconHomeFloor0 = {\n name: 'home_floor_0',\n data: \"\"\n};\nexport var tylIconHomeFloor1 = {\n name: 'home_floor_1',\n data: \"\"\n};\nexport var tylIconHomeFloor2 = {\n name: 'home_floor_2',\n data: \"\"\n};\nexport var tylIconHomeFloor3 = {\n name: 'home_floor_3',\n data: \"\"\n};\nexport var tylIconHomeFloorA = {\n name: 'home_floor_a',\n data: \"\"\n};\nexport var tylIconHomeFloorB = {\n name: 'home_floor_b',\n data: \"\"\n};\nexport var tylIconHomeFloorG = {\n name: 'home_floor_g',\n data: \"\"\n};\nexport var tylIconHomeFloorL = {\n name: 'home_floor_l',\n data: \"\"\n};\nexport var tylIconHomeFloorNegative1 = {\n name: 'home_floor_negative_1',\n data: \"\"\n};\nexport var tylIconHomeGroup = {\n name: 'home_group',\n data: \"\"\n};\nexport var tylIconHomeHeart = {\n name: 'home_heart',\n data: \"\"\n};\nexport var tylIconHomeImportOutline = {\n name: 'home_import_outline',\n data: \"\"\n};\nexport var tylIconHomeLightbulbOutline = {\n name: 'home_lightbulb_outline',\n data: \"\"\n};\nexport var tylIconHomeLightbulb = {\n name: 'home_lightbulb',\n data: \"\"\n};\nexport var tylIconHomeLockOpen = {\n name: 'home_lock_open',\n data: \"\"\n};\nexport var tylIconHomeLock = {\n name: 'home_lock',\n data: \"\"\n};\nexport var tylIconHomeMapMarker = {\n name: 'home_map_marker',\n data: \"\"\n};\nexport var tylIconHomeMinusOutline = {\n name: 'home_minus_outline',\n data: \"\"\n};\nexport var tylIconHomeMinus = {\n name: 'home_minus',\n data: \"\"\n};\nexport var tylIconHomeModern = {\n name: 'home_modern',\n data: \"\"\n};\nexport var tylIconHomeOutline = {\n name: 'home_outline',\n data: \"\"\n};\nexport var tylIconHomePlusOutline = {\n name: 'home_plus_outline',\n data: \"\"\n};\nexport var tylIconHomePlus = {\n name: 'home_plus',\n data: \"\"\n};\nexport var tylIconHomeRemoveOutline = {\n name: 'home_remove_outline',\n data: \"\"\n};\nexport var tylIconHomeRemove = {\n name: 'home_remove',\n data: \"\"\n};\nexport var tylIconHomeRoof = {\n name: 'home_roof',\n data: \"\"\n};\nexport var tylIconHomeSearchOutline = {\n name: 'home_search_outline',\n data: \"\"\n};\nexport var tylIconHomeSearch = {\n name: 'home_search',\n data: \"\"\n};\nexport var tylIconHomeThermometerOutline = {\n name: 'home_thermometer_outline',\n data: \"\"\n};\nexport var tylIconHomeThermometer = {\n name: 'home_thermometer',\n data: \"\"\n};\nexport var tylIconHomeVariantOutline = {\n name: 'home_variant_outline',\n data: \"\"\n};\nexport var tylIconHomeVariant = {\n name: 'home_variant',\n data: \"\"\n};\nexport var tylIconHome = {\n name: 'home',\n data: \"\"\n};\nexport var tylIconHookOff = {\n name: 'hook_off',\n data: \"\"\n};\nexport var tylIconHook = {\n name: 'hook',\n data: \"\"\n};\nexport var tylIconHops = {\n name: 'hops',\n data: \"\"\n};\nexport var tylIconHorizontalRotateClockwise = {\n name: 'horizontal_rotate_clockwise',\n data: \"\"\n};\nexport var tylIconHorizontalRotateCounterclockwise = {\n name: 'horizontal_rotate_counterclockwise',\n data: \"\"\n};\nexport var tylIconHorseHuman = {\n name: 'horse_human',\n data: \"\"\n};\nexport var tylIconHorseVariant = {\n name: 'horse_variant',\n data: \"\"\n};\nexport var tylIconHorse = {\n name: 'horse',\n data: \"\"\n};\nexport var tylIconHorseshoe = {\n name: 'horseshoe',\n data: \"\"\n};\nexport var tylIconHospitalBoxOutline = {\n name: 'hospital_box_outline',\n data: \"\"\n};\nexport var tylIconHospitalBox = {\n name: 'hospital_box',\n data: \"\"\n};\nexport var tylIconHospitalBuilding = {\n name: 'hospital_building',\n data: \"\"\n};\nexport var tylIconHospitalMarker = {\n name: 'hospital_marker',\n data: \"\"\n};\nexport var tylIconHospital = {\n name: 'hospital',\n data: \"\"\n};\nexport var tylIconHotTub = {\n name: 'hot_tub',\n data: \"\"\n};\nexport var tylIconHours24 = {\n name: 'hours_24',\n data: \"\"\n};\nexport var tylIconHubspot = {\n name: 'hubspot',\n data: \"\"\n};\nexport var tylIconHulu = {\n name: 'hulu',\n data: \"\"\n};\nexport var tylIconHumanBabyChangingTable = {\n name: 'human_baby_changing_table',\n data: \"\"\n};\nexport var tylIconHumanCane = {\n name: 'human_cane',\n data: \"\"\n};\nexport var tylIconHumanCapacityDecrease = {\n name: 'human_capacity_decrease',\n data: \"\"\n};\nexport var tylIconHumanCapacityIncrease = {\n name: 'human_capacity_increase',\n data: \"\"\n};\nexport var tylIconHumanChild = {\n name: 'human_child',\n data: \"\"\n};\nexport var tylIconHumanEdit = {\n name: 'human_edit',\n data: \"\"\n};\nexport var tylIconHumanFemaleBoy = {\n name: 'human_female_boy',\n data: \"\"\n};\nexport var tylIconHumanFemaleDance = {\n name: 'human_female_dance',\n data: \"\"\n};\nexport var tylIconHumanFemaleFemale = {\n name: 'human_female_female',\n data: \"\"\n};\nexport var tylIconHumanFemaleGirl = {\n name: 'human_female_girl',\n data: \"\"\n};\nexport var tylIconHumanFemale = {\n name: 'human_female',\n data: \"\"\n};\nexport var tylIconHumanGreetingProximity = {\n name: 'human_greeting_proximity',\n data: \"\"\n};\nexport var tylIconHumanGreeting = {\n name: 'human_greeting',\n data: \"\"\n};\nexport var tylIconHumanHandsdown = {\n name: 'human_handsdown',\n data: \"\"\n};\nexport var tylIconHumanHandsup = {\n name: 'human_handsup',\n data: \"\"\n};\nexport var tylIconHumanMaleBoy = {\n name: 'human_male_boy',\n data: \"\"\n};\nexport var tylIconHumanMaleChild = {\n name: 'human_male_child',\n data: \"\"\n};\nexport var tylIconHumanMaleFemale = {\n name: 'human_male_female',\n data: \"\"\n};\nexport var tylIconHumanMaleGirl = {\n name: 'human_male_girl',\n data: \"\"\n};\nexport var tylIconHumanMaleHeightVariant = {\n name: 'human_male_height_variant',\n data: \"\"\n};\nexport var tylIconHumanMaleHeight = {\n name: 'human_male_height',\n data: \"\"\n};\nexport var tylIconHumanMaleMale = {\n name: 'human_male_male',\n data: \"\"\n};\nexport var tylIconHumanMale = {\n name: 'human_male',\n data: \"\"\n};\nexport var tylIconHumanPregnant = {\n name: 'human_pregnant',\n data: \"\"\n};\nexport var tylIconHumanQueue = {\n name: 'human_queue',\n data: \"\"\n};\nexport var tylIconHumanScooter = {\n name: 'human_scooter',\n data: \"\"\n};\nexport var tylIconHumanWheelchair = {\n name: 'human_wheelchair',\n data: \"\"\n};\nexport var tylIconHuman = {\n name: 'human',\n data: \"\"\n};\nexport var tylIconHumbleBundle = {\n name: 'humble_bundle',\n data: \"\"\n};\nexport var tylIconHvacOff = {\n name: 'hvac_off',\n data: \"\"\n};\nexport var tylIconHvac = {\n name: 'hvac',\n data: \"\"\n};\nexport var tylIconHydraulicOilLevel = {\n name: 'hydraulic_oil_level',\n data: \"\"\n};\nexport var tylIconHydraulicOilTemperature = {\n name: 'hydraulic_oil_temperature',\n data: \"\"\n};\nexport var tylIconHydroPower = {\n name: 'hydro_power',\n data: \"\"\n};\nexport var tylIconIceCreamOff = {\n name: 'ice_cream_off',\n data: \"\"\n};\nexport var tylIconIceCream = {\n name: 'ice_cream',\n data: \"\"\n};\nexport var tylIconIcePop = {\n name: 'ice_pop',\n data: \"\"\n};\nexport var tylIconIdCard = {\n name: 'id_card',\n data: \"\"\n};\nexport var tylIconIdentifier = {\n name: 'identifier',\n data: \"\"\n};\nexport var tylIconIdeogramCjkVariant = {\n name: 'ideogram_cjk_variant',\n data: \"\"\n};\nexport var tylIconIdeogramCjk = {\n name: 'ideogram_cjk',\n data: \"\"\n};\nexport var tylIconIframeArrayOutline = {\n name: 'iframe_array_outline',\n data: \"\"\n};\nexport var tylIconIframeArray = {\n name: 'iframe_array',\n data: \"\"\n};\nexport var tylIconIframeBracesOutline = {\n name: 'iframe_braces_outline',\n data: \"\"\n};\nexport var tylIconIframeBraces = {\n name: 'iframe_braces',\n data: \"\"\n};\nexport var tylIconIframeOutline = {\n name: 'iframe_outline',\n data: \"\"\n};\nexport var tylIconIframeParenthesesOutline = {\n name: 'iframe_parentheses_outline',\n data: \"\"\n};\nexport var tylIconIframeParentheses = {\n name: 'iframe_parentheses',\n data: \"\"\n};\nexport var tylIconIframeVariableOutline = {\n name: 'iframe_variable_outline',\n data: \"\"\n};\nexport var tylIconIframeVariable = {\n name: 'iframe_variable',\n data: \"\"\n};\nexport var tylIconIframe = {\n name: 'iframe',\n data: \"\"\n};\nexport var tylIconImageAlbum = {\n name: 'image_album',\n data: \"\"\n};\nexport var tylIconImageAreaClose = {\n name: 'image_area_close',\n data: \"\"\n};\nexport var tylIconImageArea = {\n name: 'image_area',\n data: \"\"\n};\nexport var tylIconImageAutoAdjust = {\n name: 'image_auto_adjust',\n data: \"\"\n};\nexport var tylIconImageBrokenVariant = {\n name: 'image_broken_variant',\n data: \"\"\n};\nexport var tylIconImageBroken = {\n name: 'image_broken',\n data: \"\"\n};\nexport var tylIconImageEditOutline = {\n name: 'image_edit_outline',\n data: \"\"\n};\nexport var tylIconImageEdit = {\n name: 'image_edit',\n data: \"\"\n};\nexport var tylIconImageFilterBlackWhite = {\n name: 'image_filter_black_white',\n data: \"\"\n};\nexport var tylIconImageFilterCenterFocusStrongOutline = {\n name: 'image_filter_center_focus_strong_outline',\n data: \"\"\n};\nexport var tylIconImageFilterCenterFocusStrong = {\n name: 'image_filter_center_focus_strong',\n data: \"\"\n};\nexport var tylIconImageFilterCenterFocusWeak = {\n name: 'image_filter_center_focus_weak',\n data: \"\"\n};\nexport var tylIconImageFilterCenterFocus = {\n name: 'image_filter_center_focus',\n data: \"\"\n};\nexport var tylIconImageFilterDrama = {\n name: 'image_filter_drama',\n data: \"\"\n};\nexport var tylIconImageFilterFrames = {\n name: 'image_filter_frames',\n data: \"\"\n};\nexport var tylIconImageFilterHdr = {\n name: 'image_filter_hdr',\n data: \"\"\n};\nexport var tylIconImageFilterNone = {\n name: 'image_filter_none',\n data: \"\"\n};\nexport var tylIconImageFilterTiltShift = {\n name: 'image_filter_tilt_shift',\n data: \"\"\n};\nexport var tylIconImageFilterVintage = {\n name: 'image_filter_vintage',\n data: \"\"\n};\nexport var tylIconImageFrame = {\n name: 'image_frame',\n data: \"\"\n};\nexport var tylIconImageMinus = {\n name: 'image_minus',\n data: \"\"\n};\nexport var tylIconImageMove = {\n name: 'image_move',\n data: \"\"\n};\nexport var tylIconImageMultipleOutline = {\n name: 'image_multiple_outline',\n data: \"\"\n};\nexport var tylIconImageMultiple = {\n name: 'image_multiple',\n data: \"\"\n};\nexport var tylIconImageOffOutline = {\n name: 'image_off_outline',\n data: \"\"\n};\nexport var tylIconImageOff = {\n name: 'image_off',\n data: \"\"\n};\nexport var tylIconImageOutline = {\n name: 'image_outline',\n data: \"\"\n};\nexport var tylIconImagePlus = {\n name: 'image_plus',\n data: \"\"\n};\nexport var tylIconImageRemove = {\n name: 'image_remove',\n data: \"\"\n};\nexport var tylIconImageSearchOutline = {\n name: 'image_search_outline',\n data: \"\"\n};\nexport var tylIconImageSearch = {\n name: 'image_search',\n data: \"\"\n};\nexport var tylIconImageSizeSelectActual = {\n name: 'image_size_select_actual',\n data: \"\"\n};\nexport var tylIconImageSizeSelectLarge = {\n name: 'image_size_select_large',\n data: \"\"\n};\nexport var tylIconImageSizeSelectSmall = {\n name: 'image_size_select_small',\n data: \"\"\n};\nexport var tylIconImageText = {\n name: 'image_text',\n data: \"\"\n};\nexport var tylIconImage = {\n name: 'image',\n data: \"\"\n};\nexport var tylIconImport = {\n name: 'import',\n data: \"\"\n};\nexport var tylIconInboxArrowDownOutline = {\n name: 'inbox_arrow_down_outline',\n data: \"\"\n};\nexport var tylIconInboxArrowDown = {\n name: 'inbox_arrow_down',\n data: \"\"\n};\nexport var tylIconInboxArrowUpOutline = {\n name: 'inbox_arrow_up_outline',\n data: \"\"\n};\nexport var tylIconInboxArrowUp = {\n name: 'inbox_arrow_up',\n data: \"\"\n};\nexport var tylIconInboxFullOutline = {\n name: 'inbox_full_outline',\n data: \"\"\n};\nexport var tylIconInboxFull = {\n name: 'inbox_full',\n data: \"\"\n};\nexport var tylIconInboxMultipleOutline = {\n name: 'inbox_multiple_outline',\n data: \"\"\n};\nexport var tylIconInboxMultiple = {\n name: 'inbox_multiple',\n data: \"\"\n};\nexport var tylIconInboxOutline = {\n name: 'inbox_outline',\n data: \"\"\n};\nexport var tylIconInboxRemoveOutline = {\n name: 'inbox_remove_outline',\n data: \"\"\n};\nexport var tylIconInboxRemove = {\n name: 'inbox_remove',\n data: \"\"\n};\nexport var tylIconInbox = {\n name: 'inbox',\n data: \"\"\n};\nexport var tylIconIncognitoCircleOff = {\n name: 'incognito_circle_off',\n data: \"\"\n};\nexport var tylIconIncognitoCircle = {\n name: 'incognito_circle',\n data: \"\"\n};\nexport var tylIconIncognitoOff = {\n name: 'incognito_off',\n data: \"\"\n};\nexport var tylIconIncognito = {\n name: 'incognito',\n data: \"\"\n};\nexport var tylIconInfinity = {\n name: 'infinity',\n data: \"\"\n};\nexport var tylIconInformationOutline = {\n name: 'information_outline',\n data: \"\"\n};\nexport var tylIconInformationVariant = {\n name: 'information_variant',\n data: \"\"\n};\nexport var tylIconInformation = {\n name: 'information',\n data: \"\"\n};\nexport var tylIconInstagram = {\n name: 'instagram',\n data: \"\"\n};\nexport var tylIconInstrumentTriangle = {\n name: 'instrument_triangle',\n data: \"\"\n};\nexport var tylIconInvertColorsOff = {\n name: 'invert_colors_off',\n data: \"\"\n};\nexport var tylIconInvertColors = {\n name: 'invert_colors',\n data: \"\"\n};\nexport var tylIconIobroker = {\n name: 'iobroker',\n data: \"\"\n};\nexport var tylIconIpNetworkOutline = {\n name: 'ip_network_outline',\n data: \"\"\n};\nexport var tylIconIpNetwork = {\n name: 'ip_network',\n data: \"\"\n};\nexport var tylIconIp = {\n name: 'ip',\n data: \"\"\n};\nexport var tylIconIpod = {\n name: 'ipod',\n data: \"\"\n};\nexport var tylIconIslam = {\n name: 'islam',\n data: \"\"\n};\nexport var tylIconIsland = {\n name: 'island',\n data: \"\"\n};\nexport var tylIconIvBag = {\n name: 'iv_bag',\n data: \"\"\n};\nexport var tylIconJabber = {\n name: 'jabber',\n data: \"\"\n};\nexport var tylIconJeepney = {\n name: 'jeepney',\n data: \"\"\n};\nexport var tylIconJellyfishOutline = {\n name: 'jellyfish_outline',\n data: \"\"\n};\nexport var tylIconJellyfish = {\n name: 'jellyfish',\n data: \"\"\n};\nexport var tylIconJira = {\n name: 'jira',\n data: \"\"\n};\nexport var tylIconJquery = {\n name: 'jquery',\n data: \"\"\n};\nexport var tylIconJsfiddle = {\n name: 'jsfiddle',\n data: \"\"\n};\nexport var tylIconJudaism = {\n name: 'judaism',\n data: \"\"\n};\nexport var tylIconJumpRope = {\n name: 'jump_rope',\n data: \"\"\n};\nexport var tylIconKabaddi = {\n name: 'kabaddi',\n data: \"\"\n};\nexport var tylIconKangaroo = {\n name: 'kangaroo',\n data: \"\"\n};\nexport var tylIconKarate = {\n name: 'karate',\n data: \"\"\n};\nexport var tylIconKeg = {\n name: 'keg',\n data: \"\"\n};\nexport var tylIconKettleAlertOutline = {\n name: 'kettle_alert_outline',\n data: \"\"\n};\nexport var tylIconKettleAlert = {\n name: 'kettle_alert',\n data: \"\"\n};\nexport var tylIconKettleOffOutline = {\n name: 'kettle_off_outline',\n data: \"\"\n};\nexport var tylIconKettleOff = {\n name: 'kettle_off',\n data: \"\"\n};\nexport var tylIconKettleOutline = {\n name: 'kettle_outline',\n data: \"\"\n};\nexport var tylIconKettleSteamOutline = {\n name: 'kettle_steam_outline',\n data: \"\"\n};\nexport var tylIconKettleSteam = {\n name: 'kettle_steam',\n data: \"\"\n};\nexport var tylIconKettle = {\n name: 'kettle',\n data: \"\"\n};\nexport var tylIconKettlebell = {\n name: 'kettlebell',\n data: \"\"\n};\nexport var tylIconKeyArrowRight = {\n name: 'key_arrow_right',\n data: \"\"\n};\nexport var tylIconKeyChainVariant = {\n name: 'key_chain_variant',\n data: \"\"\n};\nexport var tylIconKeyChain = {\n name: 'key_chain',\n data: \"\"\n};\nexport var tylIconKeyChange = {\n name: 'key_change',\n data: \"\"\n};\nexport var tylIconKeyLink = {\n name: 'key_link',\n data: \"\"\n};\nexport var tylIconKeyMinus = {\n name: 'key_minus',\n data: \"\"\n};\nexport var tylIconKeyOutline = {\n name: 'key_outline',\n data: \"\"\n};\nexport var tylIconKeyPlus = {\n name: 'key_plus',\n data: \"\"\n};\nexport var tylIconKeyRemove = {\n name: 'key_remove',\n data: \"\"\n};\nexport var tylIconKeyStar = {\n name: 'key_star',\n data: \"\"\n};\nexport var tylIconKeyVariant = {\n name: 'key_variant',\n data: \"\"\n};\nexport var tylIconKeyWireless = {\n name: 'key_wireless',\n data: \"\"\n};\nexport var tylIconKey = {\n name: 'key',\n data: \"\"\n};\nexport var tylIconKeyboardBackspace = {\n name: 'keyboard_backspace',\n data: \"\"\n};\nexport var tylIconKeyboardCaps = {\n name: 'keyboard_caps',\n data: \"\"\n};\nexport var tylIconKeyboardClose = {\n name: 'keyboard_close',\n data: \"\"\n};\nexport var tylIconKeyboardEsc = {\n name: 'keyboard_esc',\n data: \"\"\n};\nexport var tylIconKeyboardF1 = {\n name: 'keyboard_f_1',\n data: \"\"\n};\nexport var tylIconKeyboardF10 = {\n name: 'keyboard_f_10',\n data: \"\"\n};\nexport var tylIconKeyboardF11 = {\n name: 'keyboard_f_11',\n data: \"\"\n};\nexport var tylIconKeyboardF12 = {\n name: 'keyboard_f_12',\n data: \"\"\n};\nexport var tylIconKeyboardF2 = {\n name: 'keyboard_f_2',\n data: \"\"\n};\nexport var tylIconKeyboardF3 = {\n name: 'keyboard_f_3',\n data: \"\"\n};\nexport var tylIconKeyboardF4 = {\n name: 'keyboard_f_4',\n data: \"\"\n};\nexport var tylIconKeyboardF5 = {\n name: 'keyboard_f_5',\n data: \"\"\n};\nexport var tylIconKeyboardF6 = {\n name: 'keyboard_f_6',\n data: \"\"\n};\nexport var tylIconKeyboardF7 = {\n name: 'keyboard_f_7',\n data: \"\"\n};\nexport var tylIconKeyboardF8 = {\n name: 'keyboard_f_8',\n data: \"\"\n};\nexport var tylIconKeyboardF9 = {\n name: 'keyboard_f_9',\n data: \"\"\n};\nexport var tylIconKeyboardOffOutline = {\n name: 'keyboard_off_outline',\n data: \"\"\n};\nexport var tylIconKeyboardOff = {\n name: 'keyboard_off',\n data: \"\"\n};\nexport var tylIconKeyboardOutline = {\n name: 'keyboard_outline',\n data: \"\"\n};\nexport var tylIconKeyboardReturn = {\n name: 'keyboard_return',\n data: \"\"\n};\nexport var tylIconKeyboardSettingsOutline = {\n name: 'keyboard_settings_outline',\n data: \"\"\n};\nexport var tylIconKeyboardSettings = {\n name: 'keyboard_settings',\n data: \"\"\n};\nexport var tylIconKeyboardSpace = {\n name: 'keyboard_space',\n data: \"\"\n};\nexport var tylIconKeyboardTab = {\n name: 'keyboard_tab',\n data: \"\"\n};\nexport var tylIconKeyboardVariant = {\n name: 'keyboard_variant',\n data: \"\"\n};\nexport var tylIconKeyboard = {\n name: 'keyboard',\n data: \"\"\n};\nexport var tylIconKhanda = {\n name: 'khanda',\n data: \"\"\n};\nexport var tylIconKickstarter = {\n name: 'kickstarter',\n data: \"\"\n};\nexport var tylIconKlingon = {\n name: 'klingon',\n data: \"\"\n};\nexport var tylIconKnifeMilitary = {\n name: 'knife_military',\n data: \"\"\n};\nexport var tylIconKnife = {\n name: 'knife',\n data: \"\"\n};\nexport var tylIconKodi = {\n name: 'kodi',\n data: \"\"\n};\nexport var tylIconKubernetes = {\n name: 'kubernetes',\n data: \"\"\n};\nexport var tylIconLabelMultipleOutline = {\n name: 'label_multiple_outline',\n data: \"\"\n};\nexport var tylIconLabelMultiple = {\n name: 'label_multiple',\n data: \"\"\n};\nexport var tylIconLabelOffOutline = {\n name: 'label_off_outline',\n data: \"\"\n};\nexport var tylIconLabelOff = {\n name: 'label_off',\n data: \"\"\n};\nexport var tylIconLabelOutline = {\n name: 'label_outline',\n data: \"\"\n};\nexport var tylIconLabelPercentOutline = {\n name: 'label_percent_outline',\n data: \"\"\n};\nexport var tylIconLabelPercent = {\n name: 'label_percent',\n data: \"\"\n};\nexport var tylIconLabelVariantOutline = {\n name: 'label_variant_outline',\n data: \"\"\n};\nexport var tylIconLabelVariant = {\n name: 'label_variant',\n data: \"\"\n};\nexport var tylIconLabel = {\n name: 'label',\n data: \"\"\n};\nexport var tylIconLadder = {\n name: 'ladder',\n data: \"\"\n};\nexport var tylIconLadybug = {\n name: 'ladybug',\n data: \"\"\n};\nexport var tylIconLambda = {\n name: 'lambda',\n data: \"\"\n};\nexport var tylIconLamp = {\n name: 'lamp',\n data: \"\"\n};\nexport var tylIconLamps = {\n name: 'lamps',\n data: \"\"\n};\nexport var tylIconLanCheck = {\n name: 'lan_check',\n data: \"\"\n};\nexport var tylIconLanConnect = {\n name: 'lan_connect',\n data: \"\"\n};\nexport var tylIconLanDisconnect = {\n name: 'lan_disconnect',\n data: \"\"\n};\nexport var tylIconLanPending = {\n name: 'lan_pending',\n data: \"\"\n};\nexport var tylIconLan = {\n name: 'lan',\n data: \"\"\n};\nexport var tylIconLanguageC = {\n name: 'language_c',\n data: \"\"\n};\nexport var tylIconLanguageCpp = {\n name: 'language_cpp',\n data: \"\"\n};\nexport var tylIconLanguageCsharp = {\n name: 'language_csharp',\n data: \"\"\n};\nexport var tylIconLanguageCss3 = {\n name: 'language_css_3',\n data: \"\"\n};\nexport var tylIconLanguageFortran = {\n name: 'language_fortran',\n data: \"\"\n};\nexport var tylIconLanguageGo = {\n name: 'language_go',\n data: \"\"\n};\nexport var tylIconLanguageHaskell = {\n name: 'language_haskell',\n data: \"\"\n};\nexport var tylIconLanguageHtml5 = {\n name: 'language_html_5',\n data: \"\"\n};\nexport var tylIconLanguageJava = {\n name: 'language_java',\n data: \"\"\n};\nexport var tylIconLanguageJavascript = {\n name: 'language_javascript',\n data: \"\"\n};\nexport var tylIconLanguageKotlin = {\n name: 'language_kotlin',\n data: \"\"\n};\nexport var tylIconLanguageLua = {\n name: 'language_lua',\n data: \"\"\n};\nexport var tylIconLanguageMarkdownOutline = {\n name: 'language_markdown_outline',\n data: \"\"\n};\nexport var tylIconLanguageMarkdown = {\n name: 'language_markdown',\n data: \"\"\n};\nexport var tylIconLanguagePhp = {\n name: 'language_php',\n data: \"\"\n};\nexport var tylIconLanguagePython = {\n name: 'language_python',\n data: \"\"\n};\nexport var tylIconLanguageR = {\n name: 'language_r',\n data: \"\"\n};\nexport var tylIconLanguageRubyOnRails = {\n name: 'language_ruby_on_rails',\n data: \"\"\n};\nexport var tylIconLanguageRuby = {\n name: 'language_ruby',\n data: \"\"\n};\nexport var tylIconLanguageRust = {\n name: 'language_rust',\n data: \"\"\n};\nexport var tylIconLanguageSwift = {\n name: 'language_swift',\n data: \"\"\n};\nexport var tylIconLanguageTypescript = {\n name: 'language_typescript',\n data: \"\"\n};\nexport var tylIconLanguageXaml = {\n name: 'language_xaml',\n data: \"\"\n};\nexport var tylIconLaptopChromebook = {\n name: 'laptop_chromebook',\n data: \"\"\n};\nexport var tylIconLaptopMac = {\n name: 'laptop_mac',\n data: \"\"\n};\nexport var tylIconLaptopOff = {\n name: 'laptop_off',\n data: \"\"\n};\nexport var tylIconLaptopWindows = {\n name: 'laptop_windows',\n data: \"\"\n};\nexport var tylIconLaptop = {\n name: 'laptop',\n data: \"\"\n};\nexport var tylIconLaravel = {\n name: 'laravel',\n data: \"\"\n};\nexport var tylIconLaserPointer = {\n name: 'laser_pointer',\n data: \"\"\n};\nexport var tylIconLasso = {\n name: 'lasso',\n data: \"\"\n};\nexport var tylIconLastpass = {\n name: 'lastpass',\n data: \"\"\n};\nexport var tylIconLatitude = {\n name: 'latitude',\n data: \"\"\n};\nexport var tylIconLaunch = {\n name: 'launch',\n data: \"\"\n};\nexport var tylIconLavaLamp = {\n name: 'lava_lamp',\n data: \"\"\n};\nexport var tylIconLayersMinus = {\n name: 'layers_minus',\n data: \"\"\n};\nexport var tylIconLayersOffOutline = {\n name: 'layers_off_outline',\n data: \"\"\n};\nexport var tylIconLayersOff = {\n name: 'layers_off',\n data: \"\"\n};\nexport var tylIconLayersOutline = {\n name: 'layers_outline',\n data: \"\"\n};\nexport var tylIconLayersPlus = {\n name: 'layers_plus',\n data: \"\"\n};\nexport var tylIconLayersRemove = {\n name: 'layers_remove',\n data: \"\"\n};\nexport var tylIconLayersSearchOutline = {\n name: 'layers_search_outline',\n data: \"\"\n};\nexport var tylIconLayersSearch = {\n name: 'layers_search',\n data: \"\"\n};\nexport var tylIconLayersTripleOutline = {\n name: 'layers_triple_outline',\n data: \"\"\n};\nexport var tylIconLayersTriple = {\n name: 'layers_triple',\n data: \"\"\n};\nexport var tylIconLayers = {\n name: 'layers',\n data: \"\"\n};\nexport var tylIconLeadPencil = {\n name: 'lead_pencil',\n data: \"\"\n};\nexport var tylIconLeafMapleOff = {\n name: 'leaf_maple_off',\n data: \"\"\n};\nexport var tylIconLeafMaple = {\n name: 'leaf_maple',\n data: \"\"\n};\nexport var tylIconLeafOff = {\n name: 'leaf_off',\n data: \"\"\n};\nexport var tylIconLeaf = {\n name: 'leaf',\n data: \"\"\n};\nexport var tylIconLeakOff = {\n name: 'leak_off',\n data: \"\"\n};\nexport var tylIconLeak = {\n name: 'leak',\n data: \"\"\n};\nexport var tylIconLedOff = {\n name: 'led_off',\n data: \"\"\n};\nexport var tylIconLedOn = {\n name: 'led_on',\n data: \"\"\n};\nexport var tylIconLedOutline = {\n name: 'led_outline',\n data: \"\"\n};\nexport var tylIconLedStripVariant = {\n name: 'led_strip_variant',\n data: \"\"\n};\nexport var tylIconLedStrip = {\n name: 'led_strip',\n data: \"\"\n};\nexport var tylIconLedVariantOff = {\n name: 'led_variant_off',\n data: \"\"\n};\nexport var tylIconLedVariantOn = {\n name: 'led_variant_on',\n data: \"\"\n};\nexport var tylIconLedVariantOutline = {\n name: 'led_variant_outline',\n data: \"\"\n};\nexport var tylIconLeek = {\n name: 'leek',\n data: \"\"\n};\nexport var tylIconLessThanOrEqual = {\n name: 'less_than_or_equal',\n data: \"\"\n};\nexport var tylIconLessThan = {\n name: 'less_than',\n data: \"\"\n};\nexport var tylIconLibraryShelves = {\n name: 'library_shelves',\n data: \"\"\n};\nexport var tylIconLibrary = {\n name: 'library',\n data: \"\"\n};\nexport var tylIconLicense = {\n name: 'license',\n data: \"\"\n};\nexport var tylIconLifebuoy = {\n name: 'lifebuoy',\n data: \"\"\n};\nexport var tylIconLightSwitch = {\n name: 'light_switch',\n data: \"\"\n};\nexport var tylIconLightbulbCflOff = {\n name: 'lightbulb_cfl_off',\n data: \"\"\n};\nexport var tylIconLightbulbCflSpiralOff = {\n name: 'lightbulb_cfl_spiral_off',\n data: \"\"\n};\nexport var tylIconLightbulbCflSpiral = {\n name: 'lightbulb_cfl_spiral',\n data: \"\"\n};\nexport var tylIconLightbulbCfl = {\n name: 'lightbulb_cfl',\n data: \"\"\n};\nexport var tylIconLightbulbGroupOffOutline = {\n name: 'lightbulb_group_off_outline',\n data: \"\"\n};\nexport var tylIconLightbulbGroupOff = {\n name: 'lightbulb_group_off',\n data: \"\"\n};\nexport var tylIconLightbulbGroupOutline = {\n name: 'lightbulb_group_outline',\n data: \"\"\n};\nexport var tylIconLightbulbGroup = {\n name: 'lightbulb_group',\n data: \"\"\n};\nexport var tylIconLightbulbMultipleOffOutline = {\n name: 'lightbulb_multiple_off_outline',\n data: \"\"\n};\nexport var tylIconLightbulbMultipleOff = {\n name: 'lightbulb_multiple_off',\n data: \"\"\n};\nexport var tylIconLightbulbMultipleOutline = {\n name: 'lightbulb_multiple_outline',\n data: \"\"\n};\nexport var tylIconLightbulbMultiple = {\n name: 'lightbulb_multiple',\n data: \"\"\n};\nexport var tylIconLightbulbOffOutline = {\n name: 'lightbulb_off_outline',\n data: \"\"\n};\nexport var tylIconLightbulbOff = {\n name: 'lightbulb_off',\n data: \"\"\n};\nexport var tylIconLightbulbOnOutline = {\n name: 'lightbulb_on_outline',\n data: \"\"\n};\nexport var tylIconLightbulbOn = {\n name: 'lightbulb_on',\n data: \"\"\n};\nexport var tylIconLightbulbOutline = {\n name: 'lightbulb_outline',\n data: \"\"\n};\nexport var tylIconLightbulb = {\n name: 'lightbulb',\n data: \"\"\n};\nexport var tylIconLighthouseOn = {\n name: 'lighthouse_on',\n data: \"\"\n};\nexport var tylIconLighthouse = {\n name: 'lighthouse',\n data: \"\"\n};\nexport var tylIconLightningBoltOutline = {\n name: 'lightning_bolt_outline',\n data: \"\"\n};\nexport var tylIconLightningBolt = {\n name: 'lightning_bolt',\n data: \"\"\n};\nexport var tylIconLingerie = {\n name: 'lingerie',\n data: \"\"\n};\nexport var tylIconLinkBoxOutline = {\n name: 'link_box_outline',\n data: \"\"\n};\nexport var tylIconLinkBoxVariantOutline = {\n name: 'link_box_variant_outline',\n data: \"\"\n};\nexport var tylIconLinkBoxVariant = {\n name: 'link_box_variant',\n data: \"\"\n};\nexport var tylIconLinkBox = {\n name: 'link_box',\n data: \"\"\n};\nexport var tylIconLinkLock = {\n name: 'link_lock',\n data: \"\"\n};\nexport var tylIconLinkOff = {\n name: 'link_off',\n data: \"\"\n};\nexport var tylIconLinkPlus = {\n name: 'link_plus',\n data: \"\"\n};\nexport var tylIconLinkVariantMinus = {\n name: 'link_variant_minus',\n data: \"\"\n};\nexport var tylIconLinkVariantOff = {\n name: 'link_variant_off',\n data: \"\"\n};\nexport var tylIconLinkVariantPlus = {\n name: 'link_variant_plus',\n data: \"\"\n};\nexport var tylIconLinkVariantRemove = {\n name: 'link_variant_remove',\n data: \"\"\n};\nexport var tylIconLinkVariant = {\n name: 'link_variant',\n data: \"\"\n};\nexport var tylIconLink = {\n name: 'link',\n data: \"\"\n};\nexport var tylIconLinkedin = {\n name: 'linkedin',\n data: \"\"\n};\nexport var tylIconLinuxMint = {\n name: 'linux_mint',\n data: \"\"\n};\nexport var tylIconLinux = {\n name: 'linux',\n data: \"\"\n};\nexport var tylIconLipstick = {\n name: 'lipstick',\n data: \"\"\n};\nexport var tylIconListStatus = {\n name: 'list_status',\n data: \"\"\n};\nexport var tylIconLitecoin = {\n name: 'litecoin',\n data: \"\"\n};\nexport var tylIconLoading = {\n name: 'loading',\n data: \"\"\n};\nexport var tylIconLocationEnter = {\n name: 'location_enter',\n data: \"\"\n};\nexport var tylIconLocationExit = {\n name: 'location_exit',\n data: \"\"\n};\nexport var tylIconLockAlertOutline = {\n name: 'lock_alert_outline',\n data: \"\"\n};\nexport var tylIconLockAlert = {\n name: 'lock_alert',\n data: \"\"\n};\nexport var tylIconLockCheckOutline = {\n name: 'lock_check_outline',\n data: \"\"\n};\nexport var tylIconLockCheck = {\n name: 'lock_check',\n data: \"\"\n};\nexport var tylIconLockClock = {\n name: 'lock_clock',\n data: \"\"\n};\nexport var tylIconLockMinusOutline = {\n name: 'lock_minus_outline',\n data: \"\"\n};\nexport var tylIconLockMinus = {\n name: 'lock_minus',\n data: \"\"\n};\nexport var tylIconLockOffOutline = {\n name: 'lock_off_outline',\n data: \"\"\n};\nexport var tylIconLockOff = {\n name: 'lock_off',\n data: \"\"\n};\nexport var tylIconLockOpenAlertOutline = {\n name: 'lock_open_alert_outline',\n data: \"\"\n};\nexport var tylIconLockOpenAlert = {\n name: 'lock_open_alert',\n data: \"\"\n};\nexport var tylIconLockOpenCheckOutline = {\n name: 'lock_open_check_outline',\n data: \"\"\n};\nexport var tylIconLockOpenCheck = {\n name: 'lock_open_check',\n data: \"\"\n};\nexport var tylIconLockOpenMinusOutline = {\n name: 'lock_open_minus_outline',\n data: \"\"\n};\nexport var tylIconLockOpenMinus = {\n name: 'lock_open_minus',\n data: \"\"\n};\nexport var tylIconLockOpenOutline = {\n name: 'lock_open_outline',\n data: \"\"\n};\nexport var tylIconLockOpenPlusOutline = {\n name: 'lock_open_plus_outline',\n data: \"\"\n};\nexport var tylIconLockOpenPlus = {\n name: 'lock_open_plus',\n data: \"\"\n};\nexport var tylIconLockOpenRemoveOutline = {\n name: 'lock_open_remove_outline',\n data: \"\"\n};\nexport var tylIconLockOpenRemove = {\n name: 'lock_open_remove',\n data: \"\"\n};\nexport var tylIconLockOpenVariantOutline = {\n name: 'lock_open_variant_outline',\n data: \"\"\n};\nexport var tylIconLockOpenVariant = {\n name: 'lock_open_variant',\n data: \"\"\n};\nexport var tylIconLockOpen = {\n name: 'lock_open',\n data: \"\"\n};\nexport var tylIconLockOutline = {\n name: 'lock_outline',\n data: \"\"\n};\nexport var tylIconLockPattern = {\n name: 'lock_pattern',\n data: \"\"\n};\nexport var tylIconLockPlusOutline = {\n name: 'lock_plus_outline',\n data: \"\"\n};\nexport var tylIconLockPlus = {\n name: 'lock_plus',\n data: \"\"\n};\nexport var tylIconLockQuestion = {\n name: 'lock_question',\n data: \"\"\n};\nexport var tylIconLockRemoveOutline = {\n name: 'lock_remove_outline',\n data: \"\"\n};\nexport var tylIconLockRemove = {\n name: 'lock_remove',\n data: \"\"\n};\nexport var tylIconLockReset = {\n name: 'lock_reset',\n data: \"\"\n};\nexport var tylIconLockSmart = {\n name: 'lock_smart',\n data: \"\"\n};\nexport var tylIconLock = {\n name: 'lock',\n data: \"\"\n};\nexport var tylIconLockerMultiple = {\n name: 'locker_multiple',\n data: \"\"\n};\nexport var tylIconLocker = {\n name: 'locker',\n data: \"\"\n};\nexport var tylIconLoginVariant = {\n name: 'login_variant',\n data: \"\"\n};\nexport var tylIconLogin = {\n name: 'login',\n data: \"\"\n};\nexport var tylIconLogoutVariant = {\n name: 'logout_variant',\n data: \"\"\n};\nexport var tylIconLogout = {\n name: 'logout',\n data: \"\"\n};\nexport var tylIconLongitude = {\n name: 'longitude',\n data: \"\"\n};\nexport var tylIconLooks = {\n name: 'looks',\n data: \"\"\n};\nexport var tylIconLotionOutline = {\n name: 'lotion_outline',\n data: \"\"\n};\nexport var tylIconLotionPlusOutline = {\n name: 'lotion_plus_outline',\n data: \"\"\n};\nexport var tylIconLotionPlus = {\n name: 'lotion_plus',\n data: \"\"\n};\nexport var tylIconLotion = {\n name: 'lotion',\n data: \"\"\n};\nexport var tylIconLoupe = {\n name: 'loupe',\n data: \"\"\n};\nexport var tylIconLumx = {\n name: 'lumx',\n data: \"\"\n};\nexport var tylIconLungs = {\n name: 'lungs',\n data: \"\"\n};\nexport var tylIconMagnetOn = {\n name: 'magnet_on',\n data: \"\"\n};\nexport var tylIconMagnet = {\n name: 'magnet',\n data: \"\"\n};\nexport var tylIconMagnifyClose = {\n name: 'magnify_close',\n data: \"\"\n};\nexport var tylIconMagnifyMinusCursor = {\n name: 'magnify_minus_cursor',\n data: \"\"\n};\nexport var tylIconMagnifyMinusOutline = {\n name: 'magnify_minus_outline',\n data: \"\"\n};\nexport var tylIconMagnifyMinus = {\n name: 'magnify_minus',\n data: \"\"\n};\nexport var tylIconMagnifyPlusCursor = {\n name: 'magnify_plus_cursor',\n data: \"\"\n};\nexport var tylIconMagnifyPlusOutline = {\n name: 'magnify_plus_outline',\n data: \"\"\n};\nexport var tylIconMagnifyPlus = {\n name: 'magnify_plus',\n data: \"\"\n};\nexport var tylIconMagnifyRemoveCursor = {\n name: 'magnify_remove_cursor',\n data: \"\"\n};\nexport var tylIconMagnifyRemoveOutline = {\n name: 'magnify_remove_outline',\n data: \"\"\n};\nexport var tylIconMagnifyScan = {\n name: 'magnify_scan',\n data: \"\"\n};\nexport var tylIconMagnify = {\n name: 'magnify',\n data: \"\"\n};\nexport var tylIconMail = {\n name: 'mail',\n data: \"\"\n};\nexport var tylIconMailboxOpenOutline = {\n name: 'mailbox_open_outline',\n data: \"\"\n};\nexport var tylIconMailboxOpenUpOutline = {\n name: 'mailbox_open_up_outline',\n data: \"\"\n};\nexport var tylIconMailboxOpenUp = {\n name: 'mailbox_open_up',\n data: \"\"\n};\nexport var tylIconMailboxOpen = {\n name: 'mailbox_open',\n data: \"\"\n};\nexport var tylIconMailboxOutline = {\n name: 'mailbox_outline',\n data: \"\"\n};\nexport var tylIconMailboxUpOutline = {\n name: 'mailbox_up_outline',\n data: \"\"\n};\nexport var tylIconMailboxUp = {\n name: 'mailbox_up',\n data: \"\"\n};\nexport var tylIconMailbox = {\n name: 'mailbox',\n data: \"\"\n};\nexport var tylIconManjaro = {\n name: 'manjaro',\n data: \"\"\n};\nexport var tylIconMapCheckOutline = {\n name: 'map_check_outline',\n data: \"\"\n};\nexport var tylIconMapCheck = {\n name: 'map_check',\n data: \"\"\n};\nexport var tylIconMapClockOutline = {\n name: 'map_clock_outline',\n data: \"\"\n};\nexport var tylIconMapClock = {\n name: 'map_clock',\n data: \"\"\n};\nexport var tylIconMapLegend = {\n name: 'map_legend',\n data: \"\"\n};\nexport var tylIconMapMarkerAlertOutline = {\n name: 'map_marker_alert_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerAlert = {\n name: 'map_marker_alert',\n data: \"\"\n};\nexport var tylIconMapMarkerCheckOutline = {\n name: 'map_marker_check_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerCheck = {\n name: 'map_marker_check',\n data: \"\"\n};\nexport var tylIconMapMarkerCircle = {\n name: 'map_marker_circle',\n data: \"\"\n};\nexport var tylIconMapMarkerDistance = {\n name: 'map_marker_distance',\n data: \"\"\n};\nexport var tylIconMapMarkerDown = {\n name: 'map_marker_down',\n data: \"\"\n};\nexport var tylIconMapMarkerLeftOutline = {\n name: 'map_marker_left_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerLeft = {\n name: 'map_marker_left',\n data: \"\"\n};\nexport var tylIconMapMarkerMinusOutline = {\n name: 'map_marker_minus_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerMinus = {\n name: 'map_marker_minus',\n data: \"\"\n};\nexport var tylIconMapMarkerMultipleOutline = {\n name: 'map_marker_multiple_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerMultiple = {\n name: 'map_marker_multiple',\n data: \"\"\n};\nexport var tylIconMapMarkerOffOutline = {\n name: 'map_marker_off_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerOff = {\n name: 'map_marker_off',\n data: \"\"\n};\nexport var tylIconMapMarkerOutline = {\n name: 'map_marker_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerPath = {\n name: 'map_marker_path',\n data: \"\"\n};\nexport var tylIconMapMarkerPlusOutline = {\n name: 'map_marker_plus_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerPlus = {\n name: 'map_marker_plus',\n data: \"\"\n};\nexport var tylIconMapMarkerQuestionOutline = {\n name: 'map_marker_question_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerQuestion = {\n name: 'map_marker_question',\n data: \"\"\n};\nexport var tylIconMapMarkerRadiusOutline = {\n name: 'map_marker_radius_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerRadius = {\n name: 'map_marker_radius',\n data: \"\"\n};\nexport var tylIconMapMarkerRemoveOutline = {\n name: 'map_marker_remove_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerRemoveVariant = {\n name: 'map_marker_remove_variant',\n data: \"\"\n};\nexport var tylIconMapMarkerRemove = {\n name: 'map_marker_remove',\n data: \"\"\n};\nexport var tylIconMapMarkerRightOutline = {\n name: 'map_marker_right_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerRight = {\n name: 'map_marker_right',\n data: \"\"\n};\nexport var tylIconMapMarkerStarOutline = {\n name: 'map_marker_star_outline',\n data: \"\"\n};\nexport var tylIconMapMarkerStar = {\n name: 'map_marker_star',\n data: \"\"\n};\nexport var tylIconMapMarkerUp = {\n name: 'map_marker_up',\n data: \"\"\n};\nexport var tylIconMapMarker = {\n name: 'map_marker',\n data: \"\"\n};\nexport var tylIconMapMinus = {\n name: 'map_minus',\n data: \"\"\n};\nexport var tylIconMapOutline = {\n name: 'map_outline',\n data: \"\"\n};\nexport var tylIconMapPlus = {\n name: 'map_plus',\n data: \"\"\n};\nexport var tylIconMapSearchOutline = {\n name: 'map_search_outline',\n data: \"\"\n};\nexport var tylIconMapSearch = {\n name: 'map_search',\n data: \"\"\n};\nexport var tylIconMap = {\n name: 'map',\n data: \"\"\n};\nexport var tylIconMapbox = {\n name: 'mapbox',\n data: \"\"\n};\nexport var tylIconMargin = {\n name: 'margin',\n data: \"\"\n};\nexport var tylIconMarkerCancel = {\n name: 'marker_cancel',\n data: \"\"\n};\nexport var tylIconMarkerCheck = {\n name: 'marker_check',\n data: \"\"\n};\nexport var tylIconMarker = {\n name: 'marker',\n data: \"\"\n};\nexport var tylIconMastodon = {\n name: 'mastodon',\n data: \"\"\n};\nexport var tylIconMaterialDesign = {\n name: 'material_design',\n data: \"\"\n};\nexport var tylIconMaterialUi = {\n name: 'material_ui',\n data: \"\"\n};\nexport var tylIconMathCompass = {\n name: 'math_compass',\n data: \"\"\n};\nexport var tylIconMathCos = {\n name: 'math_cos',\n data: \"\"\n};\nexport var tylIconMathIntegralBox = {\n name: 'math_integral_box',\n data: \"\"\n};\nexport var tylIconMathIntegral = {\n name: 'math_integral',\n data: \"\"\n};\nexport var tylIconMathLog = {\n name: 'math_log',\n data: \"\"\n};\nexport var tylIconMathNormBox = {\n name: 'math_norm_box',\n data: \"\"\n};\nexport var tylIconMathNorm = {\n name: 'math_norm',\n data: \"\"\n};\nexport var tylIconMathSin = {\n name: 'math_sin',\n data: \"\"\n};\nexport var tylIconMathTan = {\n name: 'math_tan',\n data: \"\"\n};\nexport var tylIconMatrix = {\n name: 'matrix',\n data: \"\"\n};\nexport var tylIconMedalOutline = {\n name: 'medal_outline',\n data: \"\"\n};\nexport var tylIconMedal = {\n name: 'medal',\n data: \"\"\n};\nexport var tylIconMedicalBag = {\n name: 'medical_bag',\n data: \"\"\n};\nexport var tylIconMeditation = {\n name: 'meditation',\n data: \"\"\n};\nexport var tylIconMemory = {\n name: 'memory',\n data: \"\"\n};\nexport var tylIconMenuDownOutline = {\n name: 'menu_down_outline',\n data: \"\"\n};\nexport var tylIconMenuDown = {\n name: 'menu_down',\n data: \"\"\n};\nexport var tylIconMenuLeftOutline = {\n name: 'menu_left_outline',\n data: \"\"\n};\nexport var tylIconMenuLeft = {\n name: 'menu_left',\n data: \"\"\n};\nexport var tylIconMenuOpen = {\n name: 'menu_open',\n data: \"\"\n};\nexport var tylIconMenuRightOutline = {\n name: 'menu_right_outline',\n data: \"\"\n};\nexport var tylIconMenuRight = {\n name: 'menu_right',\n data: \"\"\n};\nexport var tylIconMenuSwapOutline = {\n name: 'menu_swap_outline',\n data: \"\"\n};\nexport var tylIconMenuSwap = {\n name: 'menu_swap',\n data: \"\"\n};\nexport var tylIconMenuUpOutline = {\n name: 'menu_up_outline',\n data: \"\"\n};\nexport var tylIconMenuUp = {\n name: 'menu_up',\n data: \"\"\n};\nexport var tylIconMenu = {\n name: 'menu',\n data: \"\"\n};\nexport var tylIconMerge = {\n name: 'merge',\n data: \"\"\n};\nexport var tylIconMessageAlertOutline = {\n name: 'message_alert_outline',\n data: \"\"\n};\nexport var tylIconMessageAlert = {\n name: 'message_alert',\n data: \"\"\n};\nexport var tylIconMessageArrowLeftOutline = {\n name: 'message_arrow_left_outline',\n data: \"\"\n};\nexport var tylIconMessageArrowLeft = {\n name: 'message_arrow_left',\n data: \"\"\n};\nexport var tylIconMessageArrowRightOutline = {\n name: 'message_arrow_right_outline',\n data: \"\"\n};\nexport var tylIconMessageArrowRight = {\n name: 'message_arrow_right',\n data: \"\"\n};\nexport var tylIconMessageBookmarkOutline = {\n name: 'message_bookmark_outline',\n data: \"\"\n};\nexport var tylIconMessageBookmark = {\n name: 'message_bookmark',\n data: \"\"\n};\nexport var tylIconMessageBulletedOff = {\n name: 'message_bulleted_off',\n data: \"\"\n};\nexport var tylIconMessageBulleted = {\n name: 'message_bulleted',\n data: \"\"\n};\nexport var tylIconMessageCogOutline = {\n name: 'message_cog_outline',\n data: \"\"\n};\nexport var tylIconMessageCog = {\n name: 'message_cog',\n data: \"\"\n};\nexport var tylIconMessageDraw = {\n name: 'message_draw',\n data: \"\"\n};\nexport var tylIconMessageFlashOutline = {\n name: 'message_flash_outline',\n data: \"\"\n};\nexport var tylIconMessageFlash = {\n name: 'message_flash',\n data: \"\"\n};\nexport var tylIconMessageImageOutline = {\n name: 'message_image_outline',\n data: \"\"\n};\nexport var tylIconMessageImage = {\n name: 'message_image',\n data: \"\"\n};\nexport var tylIconMessageLockOutline = {\n name: 'message_lock_outline',\n data: \"\"\n};\nexport var tylIconMessageLock = {\n name: 'message_lock',\n data: \"\"\n};\nexport var tylIconMessageMinusOutline = {\n name: 'message_minus_outline',\n data: \"\"\n};\nexport var tylIconMessageMinus = {\n name: 'message_minus',\n data: \"\"\n};\nexport var tylIconMessageOffOutline = {\n name: 'message_off_outline',\n data: \"\"\n};\nexport var tylIconMessageOff = {\n name: 'message_off',\n data: \"\"\n};\nexport var tylIconMessageOutline = {\n name: 'message_outline',\n data: \"\"\n};\nexport var tylIconMessagePlusOutline = {\n name: 'message_plus_outline',\n data: \"\"\n};\nexport var tylIconMessagePlus = {\n name: 'message_plus',\n data: \"\"\n};\nexport var tylIconMessageProcessingOutline = {\n name: 'message_processing_outline',\n data: \"\"\n};\nexport var tylIconMessageProcessing = {\n name: 'message_processing',\n data: \"\"\n};\nexport var tylIconMessageReplyText = {\n name: 'message_reply_text',\n data: \"\"\n};\nexport var tylIconMessageReply = {\n name: 'message_reply',\n data: \"\"\n};\nexport var tylIconMessageSettingsOutline = {\n name: 'message_settings_outline',\n data: \"\"\n};\nexport var tylIconMessageSettings = {\n name: 'message_settings',\n data: \"\"\n};\nexport var tylIconMessageTextClockOutline = {\n name: 'message_text_clock_outline',\n data: \"\"\n};\nexport var tylIconMessageTextClock = {\n name: 'message_text_clock',\n data: \"\"\n};\nexport var tylIconMessageTextLockOutline = {\n name: 'message_text_lock_outline',\n data: \"\"\n};\nexport var tylIconMessageTextLock = {\n name: 'message_text_lock',\n data: \"\"\n};\nexport var tylIconMessageTextOutline = {\n name: 'message_text_outline',\n data: \"\"\n};\nexport var tylIconMessageText = {\n name: 'message_text',\n data: \"\"\n};\nexport var tylIconMessageVideo = {\n name: 'message_video',\n data: \"\"\n};\nexport var tylIconMessage = {\n name: 'message',\n data: \"\"\n};\nexport var tylIconMeteor = {\n name: 'meteor',\n data: \"\"\n};\nexport var tylIconMetronomeTick = {\n name: 'metronome_tick',\n data: \"\"\n};\nexport var tylIconMetronome = {\n name: 'metronome',\n data: \"\"\n};\nexport var tylIconMicroSd = {\n name: 'micro_sd',\n data: \"\"\n};\nexport var tylIconMicrophoneMinus = {\n name: 'microphone_minus',\n data: \"\"\n};\nexport var tylIconMicrophoneOff = {\n name: 'microphone_off',\n data: \"\"\n};\nexport var tylIconMicrophoneOutline = {\n name: 'microphone_outline',\n data: \"\"\n};\nexport var tylIconMicrophonePlus = {\n name: 'microphone_plus',\n data: \"\"\n};\nexport var tylIconMicrophoneSettings = {\n name: 'microphone_settings',\n data: \"\"\n};\nexport var tylIconMicrophoneVariantOff = {\n name: 'microphone_variant_off',\n data: \"\"\n};\nexport var tylIconMicrophoneVariant = {\n name: 'microphone_variant',\n data: \"\"\n};\nexport var tylIconMicrophone = {\n name: 'microphone',\n data: \"\"\n};\nexport var tylIconMicroscope = {\n name: 'microscope',\n data: \"\"\n};\nexport var tylIconMicrosoftAccess = {\n name: 'microsoft_access',\n data: \"\"\n};\nexport var tylIconMicrosoftAzureDevops = {\n name: 'microsoft_azure_devops',\n data: \"\"\n};\nexport var tylIconMicrosoftAzure = {\n name: 'microsoft_azure',\n data: \"\"\n};\nexport var tylIconMicrosoftBing = {\n name: 'microsoft_bing',\n data: \"\"\n};\nexport var tylIconMicrosoftDynamics365 = {\n name: 'microsoft_dynamics_365',\n data: \"\"\n};\nexport var tylIconMicrosoftEdgeLegacy = {\n name: 'microsoft_edge_legacy',\n data: \"\"\n};\nexport var tylIconMicrosoftEdge = {\n name: 'microsoft_edge',\n data: \"\"\n};\nexport var tylIconMicrosoftExcel = {\n name: 'microsoft_excel',\n data: \"\"\n};\nexport var tylIconMicrosoftInternetExplorer = {\n name: 'microsoft_internet_explorer',\n data: \"\"\n};\nexport var tylIconMicrosoftOffice = {\n name: 'microsoft_office',\n data: \"\"\n};\nexport var tylIconMicrosoftOnedrive = {\n name: 'microsoft_onedrive',\n data: \"\"\n};\nexport var tylIconMicrosoftOnenote = {\n name: 'microsoft_onenote',\n data: \"\"\n};\nexport var tylIconMicrosoftOutlook = {\n name: 'microsoft_outlook',\n data: \"\"\n};\nexport var tylIconMicrosoftPowerpoint = {\n name: 'microsoft_powerpoint',\n data: \"\"\n};\nexport var tylIconMicrosoftSharepoint = {\n name: 'microsoft_sharepoint',\n data: \"\"\n};\nexport var tylIconMicrosoftTeams = {\n name: 'microsoft_teams',\n data: \"\"\n};\nexport var tylIconMicrosoftVisualStudioCode = {\n name: 'microsoft_visual_studio_code',\n data: \"\"\n};\nexport var tylIconMicrosoftVisualStudio = {\n name: 'microsoft_visual_studio',\n data: \"\"\n};\nexport var tylIconMicrosoftWindowsClassic = {\n name: 'microsoft_windows_classic',\n data: \"\"\n};\nexport var tylIconMicrosoftWindows = {\n name: 'microsoft_windows',\n data: \"\"\n};\nexport var tylIconMicrosoftWord = {\n name: 'microsoft_word',\n data: \"\"\n};\nexport var tylIconMicrosoftXboxControllerBatteryAlert = {\n name: 'microsoft_xbox_controller_battery_alert',\n data: \"\"\n};\nexport var tylIconMicrosoftXboxControllerBatteryCharging = {\n name: 'microsoft_xbox_controller_battery_charging',\n data: \"\"\n};\nexport var tylIconMicrosoftXboxControllerBatteryEmpty = {\n name: 'microsoft_xbox_controller_battery_empty',\n data: \"\"\n};\nexport var tylIconMicrosoftXboxControllerBatteryFull = {\n name: 'microsoft_xbox_controller_battery_full',\n data: \"\"\n};\nexport var tylIconMicrosoftXboxControllerBatteryLow = {\n name: 'microsoft_xbox_controller_battery_low',\n data: \"\"\n};\nexport var tylIconMicrosoftXboxControllerBatteryMedium = {\n name: 'microsoft_xbox_controller_battery_medium',\n data: \"\"\n};\nexport var tylIconMicrosoftXboxControllerBatteryUnknown = {\n name: 'microsoft_xbox_controller_battery_unknown',\n data: \"\"\n};\nexport var tylIconMicrosoftXboxControllerMenu = {\n name: 'microsoft_xbox_controller_menu',\n data: \"\"\n};\nexport var tylIconMicrosoftXboxControllerOff = {\n name: 'microsoft_xbox_controller_off',\n data: \"\"\n};\nexport var tylIconMicrosoftXboxControllerView = {\n name: 'microsoft_xbox_controller_view',\n data: \"\"\n};\nexport var tylIconMicrosoftXboxController = {\n name: 'microsoft_xbox_controller',\n data: \"\"\n};\nexport var tylIconMicrosoftXbox = {\n name: 'microsoft_xbox',\n data: \"\"\n};\nexport var tylIconMicrosoftYammer = {\n name: 'microsoft_yammer',\n data: \"\"\n};\nexport var tylIconMicrosoft = {\n name: 'microsoft',\n data: \"\"\n};\nexport var tylIconMicrowaveOff = {\n name: 'microwave_off',\n data: \"\"\n};\nexport var tylIconMicrowave = {\n name: 'microwave',\n data: \"\"\n};\nexport var tylIconMiddlewareOutline = {\n name: 'middleware_outline',\n data: \"\"\n};\nexport var tylIconMiddleware = {\n name: 'middleware',\n data: \"\"\n};\nexport var tylIconMidiPort = {\n name: 'midi_port',\n data: \"\"\n};\nexport var tylIconMidi = {\n name: 'midi',\n data: \"\"\n};\nexport var tylIconMine = {\n name: 'mine',\n data: \"\"\n};\nexport var tylIconMinecraft = {\n name: 'minecraft',\n data: \"\"\n};\nexport var tylIconMiniSd = {\n name: 'mini_sd',\n data: \"\"\n};\nexport var tylIconMinidisc = {\n name: 'minidisc',\n data: \"\"\n};\nexport var tylIconMinusBoxMultipleOutline = {\n name: 'minus_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconMinusBoxMultiple = {\n name: 'minus_box_multiple',\n data: \"\"\n};\nexport var tylIconMinusBoxOutline = {\n name: 'minus_box_outline',\n data: \"\"\n};\nexport var tylIconMinusBox = {\n name: 'minus_box',\n data: \"\"\n};\nexport var tylIconMinusCircleMultipleOutline = {\n name: 'minus_circle_multiple_outline',\n data: \"\"\n};\nexport var tylIconMinusCircleMultiple = {\n name: 'minus_circle_multiple',\n data: \"\"\n};\nexport var tylIconMinusCircleOffOutline = {\n name: 'minus_circle_off_outline',\n data: \"\"\n};\nexport var tylIconMinusCircleOff = {\n name: 'minus_circle_off',\n data: \"\"\n};\nexport var tylIconMinusCircleOutline = {\n name: 'minus_circle_outline',\n data: \"\"\n};\nexport var tylIconMinusCircle = {\n name: 'minus_circle',\n data: \"\"\n};\nexport var tylIconMinusNetworkOutline = {\n name: 'minus_network_outline',\n data: \"\"\n};\nexport var tylIconMinusNetwork = {\n name: 'minus_network',\n data: \"\"\n};\nexport var tylIconMinusThick = {\n name: 'minus_thick',\n data: \"\"\n};\nexport var tylIconMinus = {\n name: 'minus',\n data: \"\"\n};\nexport var tylIconMirror = {\n name: 'mirror',\n data: \"\"\n};\nexport var tylIconMixedMartialArts = {\n name: 'mixed_martial_arts',\n data: \"\"\n};\nexport var tylIconMixedReality = {\n name: 'mixed_reality',\n data: \"\"\n};\nexport var tylIconMoleculeCo = {\n name: 'molecule_co',\n data: \"\"\n};\nexport var tylIconMoleculeCo2 = {\n name: 'molecule_co_2',\n data: \"\"\n};\nexport var tylIconMolecule = {\n name: 'molecule',\n data: \"\"\n};\nexport var tylIconMonitorCellphoneStar = {\n name: 'monitor_cellphone_star',\n data: \"\"\n};\nexport var tylIconMonitorCellphone = {\n name: 'monitor_cellphone',\n data: \"\"\n};\nexport var tylIconMonitorClean = {\n name: 'monitor_clean',\n data: \"\"\n};\nexport var tylIconMonitorDashboard = {\n name: 'monitor_dashboard',\n data: \"\"\n};\nexport var tylIconMonitorEdit = {\n name: 'monitor_edit',\n data: \"\"\n};\nexport var tylIconMonitorEye = {\n name: 'monitor_eye',\n data: \"\"\n};\nexport var tylIconMonitorLock = {\n name: 'monitor_lock',\n data: \"\"\n};\nexport var tylIconMonitorMultiple = {\n name: 'monitor_multiple',\n data: \"\"\n};\nexport var tylIconMonitorOff = {\n name: 'monitor_off',\n data: \"\"\n};\nexport var tylIconMonitorScreenshot = {\n name: 'monitor_screenshot',\n data: \"\"\n};\nexport var tylIconMonitorShare = {\n name: 'monitor_share',\n data: \"\"\n};\nexport var tylIconMonitorSpeakerOff = {\n name: 'monitor_speaker_off',\n data: \"\"\n};\nexport var tylIconMonitorSpeaker = {\n name: 'monitor_speaker',\n data: \"\"\n};\nexport var tylIconMonitorStar = {\n name: 'monitor_star',\n data: \"\"\n};\nexport var tylIconMonitor = {\n name: 'monitor',\n data: \"\"\n};\nexport var tylIconMoonFirstQuarter = {\n name: 'moon_first_quarter',\n data: \"\"\n};\nexport var tylIconMoonFull = {\n name: 'moon_full',\n data: \"\"\n};\nexport var tylIconMoonLastQuarter = {\n name: 'moon_last_quarter',\n data: \"\"\n};\nexport var tylIconMoonNew = {\n name: 'moon_new',\n data: \"\"\n};\nexport var tylIconMoonWaningCrescent = {\n name: 'moon_waning_crescent',\n data: \"\"\n};\nexport var tylIconMoonWaningGibbous = {\n name: 'moon_waning_gibbous',\n data: \"\"\n};\nexport var tylIconMoonWaxingCrescent = {\n name: 'moon_waxing_crescent',\n data: \"\"\n};\nexport var tylIconMoonWaxingGibbous = {\n name: 'moon_waxing_gibbous',\n data: \"\"\n};\nexport var tylIconMopedElectricOutline = {\n name: 'moped_electric_outline',\n data: \"\"\n};\nexport var tylIconMopedElectric = {\n name: 'moped_electric',\n data: \"\"\n};\nexport var tylIconMopedOutline = {\n name: 'moped_outline',\n data: \"\"\n};\nexport var tylIconMoped = {\n name: 'moped',\n data: \"\"\n};\nexport var tylIconMore = {\n name: 'more',\n data: \"\"\n};\nexport var tylIconMotherHeart = {\n name: 'mother_heart',\n data: \"\"\n};\nexport var tylIconMotherNurse = {\n name: 'mother_nurse',\n data: \"\"\n};\nexport var tylIconMotionOutline = {\n name: 'motion_outline',\n data: \"\"\n};\nexport var tylIconMotionPauseOutline = {\n name: 'motion_pause_outline',\n data: \"\"\n};\nexport var tylIconMotionPause = {\n name: 'motion_pause',\n data: \"\"\n};\nexport var tylIconMotionPlayOutline = {\n name: 'motion_play_outline',\n data: \"\"\n};\nexport var tylIconMotionPlay = {\n name: 'motion_play',\n data: \"\"\n};\nexport var tylIconMotionSensorOff = {\n name: 'motion_sensor_off',\n data: \"\"\n};\nexport var tylIconMotionSensor = {\n name: 'motion_sensor',\n data: \"\"\n};\nexport var tylIconMotion = {\n name: 'motion',\n data: \"\"\n};\nexport var tylIconMotorbikeElectric = {\n name: 'motorbike_electric',\n data: \"\"\n};\nexport var tylIconMotorbike = {\n name: 'motorbike',\n data: \"\"\n};\nexport var tylIconMouseBluetooth = {\n name: 'mouse_bluetooth',\n data: \"\"\n};\nexport var tylIconMouseMoveDown = {\n name: 'mouse_move_down',\n data: \"\"\n};\nexport var tylIconMouseMoveUp = {\n name: 'mouse_move_up',\n data: \"\"\n};\nexport var tylIconMouseMoveVertical = {\n name: 'mouse_move_vertical',\n data: \"\"\n};\nexport var tylIconMouseOff = {\n name: 'mouse_off',\n data: \"\"\n};\nexport var tylIconMouseVariantOff = {\n name: 'mouse_variant_off',\n data: \"\"\n};\nexport var tylIconMouseVariant = {\n name: 'mouse_variant',\n data: \"\"\n};\nexport var tylIconMouse = {\n name: 'mouse',\n data: \"\"\n};\nexport var tylIconMoveResizeVariant = {\n name: 'move_resize_variant',\n data: \"\"\n};\nexport var tylIconMoveResize = {\n name: 'move_resize',\n data: \"\"\n};\nexport var tylIconMovieCheckOutline = {\n name: 'movie_check_outline',\n data: \"\"\n};\nexport var tylIconMovieCheck = {\n name: 'movie_check',\n data: \"\"\n};\nexport var tylIconMovieCogOutline = {\n name: 'movie_cog_outline',\n data: \"\"\n};\nexport var tylIconMovieCog = {\n name: 'movie_cog',\n data: \"\"\n};\nexport var tylIconMovieEditOutline = {\n name: 'movie_edit_outline',\n data: \"\"\n};\nexport var tylIconMovieEdit = {\n name: 'movie_edit',\n data: \"\"\n};\nexport var tylIconMovieFilterOutline = {\n name: 'movie_filter_outline',\n data: \"\"\n};\nexport var tylIconMovieFilter = {\n name: 'movie_filter',\n data: \"\"\n};\nexport var tylIconMovieMinusOutline = {\n name: 'movie_minus_outline',\n data: \"\"\n};\nexport var tylIconMovieMinus = {\n name: 'movie_minus',\n data: \"\"\n};\nexport var tylIconMovieOffOutline = {\n name: 'movie_off_outline',\n data: \"\"\n};\nexport var tylIconMovieOff = {\n name: 'movie_off',\n data: \"\"\n};\nexport var tylIconMovieOpenCheckOutline = {\n name: 'movie_open_check_outline',\n data: \"\"\n};\nexport var tylIconMovieOpenCheck = {\n name: 'movie_open_check',\n data: \"\"\n};\nexport var tylIconMovieOpenCogOutline = {\n name: 'movie_open_cog_outline',\n data: \"\"\n};\nexport var tylIconMovieOpenCog = {\n name: 'movie_open_cog',\n data: \"\"\n};\nexport var tylIconMovieOpenEditOutline = {\n name: 'movie_open_edit_outline',\n data: \"\"\n};\nexport var tylIconMovieOpenEdit = {\n name: 'movie_open_edit',\n data: \"\"\n};\nexport var tylIconMovieOpenMinusOutline = {\n name: 'movie_open_minus_outline',\n data: \"\"\n};\nexport var tylIconMovieOpenMinus = {\n name: 'movie_open_minus',\n data: \"\"\n};\nexport var tylIconMovieOpenOffOutline = {\n name: 'movie_open_off_outline',\n data: \"\"\n};\nexport var tylIconMovieOpenOff = {\n name: 'movie_open_off',\n data: \"\"\n};\nexport var tylIconMovieOpenOutline = {\n name: 'movie_open_outline',\n data: \"\"\n};\nexport var tylIconMovieOpenPlayOutline = {\n name: 'movie_open_play_outline',\n data: \"\"\n};\nexport var tylIconMovieOpenPlay = {\n name: 'movie_open_play',\n data: \"\"\n};\nexport var tylIconMovieOpenPlusOutline = {\n name: 'movie_open_plus_outline',\n data: \"\"\n};\nexport var tylIconMovieOpenPlus = {\n name: 'movie_open_plus',\n data: \"\"\n};\nexport var tylIconMovieOpenRemoveOutline = {\n name: 'movie_open_remove_outline',\n data: \"\"\n};\nexport var tylIconMovieOpenRemove = {\n name: 'movie_open_remove',\n data: \"\"\n};\nexport var tylIconMovieOpenSettingsOutline = {\n name: 'movie_open_settings_outline',\n data: \"\"\n};\nexport var tylIconMovieOpenSettings = {\n name: 'movie_open_settings',\n data: \"\"\n};\nexport var tylIconMovieOpenStarOutline = {\n name: 'movie_open_star_outline',\n data: \"\"\n};\nexport var tylIconMovieOpenStar = {\n name: 'movie_open_star',\n data: \"\"\n};\nexport var tylIconMovieOpen = {\n name: 'movie_open',\n data: \"\"\n};\nexport var tylIconMovieOutline = {\n name: 'movie_outline',\n data: \"\"\n};\nexport var tylIconMoviePlayOutline = {\n name: 'movie_play_outline',\n data: \"\"\n};\nexport var tylIconMoviePlay = {\n name: 'movie_play',\n data: \"\"\n};\nexport var tylIconMoviePlusOutline = {\n name: 'movie_plus_outline',\n data: \"\"\n};\nexport var tylIconMoviePlus = {\n name: 'movie_plus',\n data: \"\"\n};\nexport var tylIconMovieRemoveOutline = {\n name: 'movie_remove_outline',\n data: \"\"\n};\nexport var tylIconMovieRemove = {\n name: 'movie_remove',\n data: \"\"\n};\nexport var tylIconMovieRoll = {\n name: 'movie_roll',\n data: \"\"\n};\nexport var tylIconMovieSearchOutline = {\n name: 'movie_search_outline',\n data: \"\"\n};\nexport var tylIconMovieSearch = {\n name: 'movie_search',\n data: \"\"\n};\nexport var tylIconMovieSettingsOutline = {\n name: 'movie_settings_outline',\n data: \"\"\n};\nexport var tylIconMovieSettings = {\n name: 'movie_settings',\n data: \"\"\n};\nexport var tylIconMovieStarOutline = {\n name: 'movie_star_outline',\n data: \"\"\n};\nexport var tylIconMovieStar = {\n name: 'movie_star',\n data: \"\"\n};\nexport var tylIconMovie = {\n name: 'movie',\n data: \"\"\n};\nexport var tylIconMowerBag = {\n name: 'mower_bag',\n data: \"\"\n};\nexport var tylIconMower = {\n name: 'mower',\n data: \"\"\n};\nexport var tylIconMuffin = {\n name: 'muffin',\n data: \"\"\n};\nexport var tylIconMultiplicationBox = {\n name: 'multiplication_box',\n data: \"\"\n};\nexport var tylIconMultiplication = {\n name: 'multiplication',\n data: \"\"\n};\nexport var tylIconMushroomOffOutline = {\n name: 'mushroom_off_outline',\n data: \"\"\n};\nexport var tylIconMushroomOff = {\n name: 'mushroom_off',\n data: \"\"\n};\nexport var tylIconMushroomOutline = {\n name: 'mushroom_outline',\n data: \"\"\n};\nexport var tylIconMushroom = {\n name: 'mushroom',\n data: \"\"\n};\nexport var tylIconMusicAccidentalDoubleFlat = {\n name: 'music_accidental_double_flat',\n data: \"\"\n};\nexport var tylIconMusicAccidentalDoubleSharp = {\n name: 'music_accidental_double_sharp',\n data: \"\"\n};\nexport var tylIconMusicAccidentalFlat = {\n name: 'music_accidental_flat',\n data: \"\"\n};\nexport var tylIconMusicAccidentalNatural = {\n name: 'music_accidental_natural',\n data: \"\"\n};\nexport var tylIconMusicAccidentalSharp = {\n name: 'music_accidental_sharp',\n data: \"\"\n};\nexport var tylIconMusicBoxMultipleOutline = {\n name: 'music_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconMusicBoxMultiple = {\n name: 'music_box_multiple',\n data: \"\"\n};\nexport var tylIconMusicBoxOutline = {\n name: 'music_box_outline',\n data: \"\"\n};\nexport var tylIconMusicBox = {\n name: 'music_box',\n data: \"\"\n};\nexport var tylIconMusicCircleOutline = {\n name: 'music_circle_outline',\n data: \"\"\n};\nexport var tylIconMusicCircle = {\n name: 'music_circle',\n data: \"\"\n};\nexport var tylIconMusicClefAlto = {\n name: 'music_clef_alto',\n data: \"\"\n};\nexport var tylIconMusicClefBass = {\n name: 'music_clef_bass',\n data: \"\"\n};\nexport var tylIconMusicClefTreble = {\n name: 'music_clef_treble',\n data: \"\"\n};\nexport var tylIconMusicNoteBluetoothOff = {\n name: 'music_note_bluetooth_off',\n data: \"\"\n};\nexport var tylIconMusicNoteBluetooth = {\n name: 'music_note_bluetooth',\n data: \"\"\n};\nexport var tylIconMusicNoteEighthDotted = {\n name: 'music_note_eighth_dotted',\n data: \"\"\n};\nexport var tylIconMusicNoteEighth = {\n name: 'music_note_eighth',\n data: \"\"\n};\nexport var tylIconMusicNoteHalfDotted = {\n name: 'music_note_half_dotted',\n data: \"\"\n};\nexport var tylIconMusicNoteHalf = {\n name: 'music_note_half',\n data: \"\"\n};\nexport var tylIconMusicNoteOffOutline = {\n name: 'music_note_off_outline',\n data: \"\"\n};\nexport var tylIconMusicNoteOff = {\n name: 'music_note_off',\n data: \"\"\n};\nexport var tylIconMusicNoteOutline = {\n name: 'music_note_outline',\n data: \"\"\n};\nexport var tylIconMusicNotePlus = {\n name: 'music_note_plus',\n data: \"\"\n};\nexport var tylIconMusicNoteQuarterDotted = {\n name: 'music_note_quarter_dotted',\n data: \"\"\n};\nexport var tylIconMusicNoteQuarter = {\n name: 'music_note_quarter',\n data: \"\"\n};\nexport var tylIconMusicNoteSixteenthDotted = {\n name: 'music_note_sixteenth_dotted',\n data: \"\"\n};\nexport var tylIconMusicNoteSixteenth = {\n name: 'music_note_sixteenth',\n data: \"\"\n};\nexport var tylIconMusicNoteWholeDotted = {\n name: 'music_note_whole_dotted',\n data: \"\"\n};\nexport var tylIconMusicNoteWhole = {\n name: 'music_note_whole',\n data: \"\"\n};\nexport var tylIconMusicNote = {\n name: 'music_note',\n data: \"\"\n};\nexport var tylIconMusicOff = {\n name: 'music_off',\n data: \"\"\n};\nexport var tylIconMusicRestEighth = {\n name: 'music_rest_eighth',\n data: \"\"\n};\nexport var tylIconMusicRestHalf = {\n name: 'music_rest_half',\n data: \"\"\n};\nexport var tylIconMusicRestQuarter = {\n name: 'music_rest_quarter',\n data: \"\"\n};\nexport var tylIconMusicRestSixteenth = {\n name: 'music_rest_sixteenth',\n data: \"\"\n};\nexport var tylIconMusicRestWhole = {\n name: 'music_rest_whole',\n data: \"\"\n};\nexport var tylIconMusic = {\n name: 'music',\n data: \"\"\n};\nexport var tylIconMustache = {\n name: 'mustache',\n data: \"\"\n};\nexport var tylIconNail = {\n name: 'nail',\n data: \"\"\n};\nexport var tylIconNas = {\n name: 'nas',\n data: \"\"\n};\nexport var tylIconNativescript = {\n name: 'nativescript',\n data: \"\"\n};\nexport var tylIconNaturePeople = {\n name: 'nature_people',\n data: \"\"\n};\nexport var tylIconNature = {\n name: 'nature',\n data: \"\"\n};\nexport var tylIconNavigationOutline = {\n name: 'navigation_outline',\n data: \"\"\n};\nexport var tylIconNavigation = {\n name: 'navigation',\n data: \"\"\n};\nexport var tylIconNearMe = {\n name: 'near_me',\n data: \"\"\n};\nexport var tylIconNecklace = {\n name: 'necklace',\n data: \"\"\n};\nexport var tylIconNeedle = {\n name: 'needle',\n data: \"\"\n};\nexport var tylIconNetflix = {\n name: 'netflix',\n data: \"\"\n};\nexport var tylIconNetworkOffOutline = {\n name: 'network_off_outline',\n data: \"\"\n};\nexport var tylIconNetworkOff = {\n name: 'network_off',\n data: \"\"\n};\nexport var tylIconNetworkOutline = {\n name: 'network_outline',\n data: \"\"\n};\nexport var tylIconNetworkStrength1Alert = {\n name: 'network_strength_1_alert',\n data: \"\"\n};\nexport var tylIconNetworkStrength1 = {\n name: 'network_strength_1',\n data: \"\"\n};\nexport var tylIconNetworkStrength2Alert = {\n name: 'network_strength_2_alert',\n data: \"\"\n};\nexport var tylIconNetworkStrength2 = {\n name: 'network_strength_2',\n data: \"\"\n};\nexport var tylIconNetworkStrength3Alert = {\n name: 'network_strength_3_alert',\n data: \"\"\n};\nexport var tylIconNetworkStrength3 = {\n name: 'network_strength_3',\n data: \"\"\n};\nexport var tylIconNetworkStrength4Alert = {\n name: 'network_strength_4_alert',\n data: \"\"\n};\nexport var tylIconNetworkStrength4 = {\n name: 'network_strength_4',\n data: \"\"\n};\nexport var tylIconNetworkStrengthOffOutline = {\n name: 'network_strength_off_outline',\n data: \"\"\n};\nexport var tylIconNetworkStrengthOff = {\n name: 'network_strength_off',\n data: \"\"\n};\nexport var tylIconNetworkStrengthOutline = {\n name: 'network_strength_outline',\n data: \"\"\n};\nexport var tylIconNetwork = {\n name: 'network',\n data: \"\"\n};\nexport var tylIconNewBox = {\n name: 'new_box',\n data: \"\"\n};\nexport var tylIconNewspaperMinus = {\n name: 'newspaper_minus',\n data: \"\"\n};\nexport var tylIconNewspaperPlus = {\n name: 'newspaper_plus',\n data: \"\"\n};\nexport var tylIconNewspaperVariantMultipleOutline = {\n name: 'newspaper_variant_multiple_outline',\n data: \"\"\n};\nexport var tylIconNewspaperVariantMultiple = {\n name: 'newspaper_variant_multiple',\n data: \"\"\n};\nexport var tylIconNewspaperVariantOutline = {\n name: 'newspaper_variant_outline',\n data: \"\"\n};\nexport var tylIconNewspaperVariant = {\n name: 'newspaper_variant',\n data: \"\"\n};\nexport var tylIconNewspaper = {\n name: 'newspaper',\n data: \"\"\n};\nexport var tylIconNfcSearchVariant = {\n name: 'nfc_search_variant',\n data: \"\"\n};\nexport var tylIconNfcTap = {\n name: 'nfc_tap',\n data: \"\"\n};\nexport var tylIconNfcVariantOff = {\n name: 'nfc_variant_off',\n data: \"\"\n};\nexport var tylIconNfcVariant = {\n name: 'nfc_variant',\n data: \"\"\n};\nexport var tylIconNfc = {\n name: 'nfc',\n data: \"\"\n};\nexport var tylIconNinja = {\n name: 'ninja',\n data: \"\"\n};\nexport var tylIconNintendoGameBoy = {\n name: 'nintendo_game_boy',\n data: \"\"\n};\nexport var tylIconNintendoSwitch = {\n name: 'nintendo_switch',\n data: \"\"\n};\nexport var tylIconNintendoWii = {\n name: 'nintendo_wii',\n data: \"\"\n};\nexport var tylIconNintendoWiiu = {\n name: 'nintendo_wiiu',\n data: \"\"\n};\nexport var tylIconNix = {\n name: 'nix',\n data: \"\"\n};\nexport var tylIconNodejs = {\n name: 'nodejs',\n data: \"\"\n};\nexport var tylIconNoodles = {\n name: 'noodles',\n data: \"\"\n};\nexport var tylIconNotEqualVariant = {\n name: 'not_equal_variant',\n data: \"\"\n};\nexport var tylIconNotEqual = {\n name: 'not_equal',\n data: \"\"\n};\nexport var tylIconNoteMinusOutline = {\n name: 'note_minus_outline',\n data: \"\"\n};\nexport var tylIconNoteMinus = {\n name: 'note_minus',\n data: \"\"\n};\nexport var tylIconNoteMultipleOutline = {\n name: 'note_multiple_outline',\n data: \"\"\n};\nexport var tylIconNoteMultiple = {\n name: 'note_multiple',\n data: \"\"\n};\nexport var tylIconNoteOutline = {\n name: 'note_outline',\n data: \"\"\n};\nexport var tylIconNotePlusOutline = {\n name: 'note_plus_outline',\n data: \"\"\n};\nexport var tylIconNotePlus = {\n name: 'note_plus',\n data: \"\"\n};\nexport var tylIconNoteRemoveOutline = {\n name: 'note_remove_outline',\n data: \"\"\n};\nexport var tylIconNoteRemove = {\n name: 'note_remove',\n data: \"\"\n};\nexport var tylIconNoteSearchOutline = {\n name: 'note_search_outline',\n data: \"\"\n};\nexport var tylIconNoteSearch = {\n name: 'note_search',\n data: \"\"\n};\nexport var tylIconNoteTextOutline = {\n name: 'note_text_outline',\n data: \"\"\n};\nexport var tylIconNoteText = {\n name: 'note_text',\n data: \"\"\n};\nexport var tylIconNote = {\n name: 'note',\n data: \"\"\n};\nexport var tylIconNotebookCheckOutline = {\n name: 'notebook_check_outline',\n data: \"\"\n};\nexport var tylIconNotebookCheck = {\n name: 'notebook_check',\n data: \"\"\n};\nexport var tylIconNotebookEditOutline = {\n name: 'notebook_edit_outline',\n data: \"\"\n};\nexport var tylIconNotebookEdit = {\n name: 'notebook_edit',\n data: \"\"\n};\nexport var tylIconNotebookMinusOutline = {\n name: 'notebook_minus_outline',\n data: \"\"\n};\nexport var tylIconNotebookMinus = {\n name: 'notebook_minus',\n data: \"\"\n};\nexport var tylIconNotebookMultiple = {\n name: 'notebook_multiple',\n data: \"\"\n};\nexport var tylIconNotebookOutline = {\n name: 'notebook_outline',\n data: \"\"\n};\nexport var tylIconNotebookPlusOutline = {\n name: 'notebook_plus_outline',\n data: \"\"\n};\nexport var tylIconNotebookPlus = {\n name: 'notebook_plus',\n data: \"\"\n};\nexport var tylIconNotebookRemoveOutline = {\n name: 'notebook_remove_outline',\n data: \"\"\n};\nexport var tylIconNotebookRemove = {\n name: 'notebook_remove',\n data: \"\"\n};\nexport var tylIconNotebook = {\n name: 'notebook',\n data: \"\"\n};\nexport var tylIconNotificationClearAll = {\n name: 'notification_clear_all',\n data: \"\"\n};\nexport var tylIconNpm = {\n name: 'npm',\n data: \"\"\n};\nexport var tylIconNuke = {\n name: 'nuke',\n data: \"\"\n};\nexport var tylIconNull = {\n name: 'null',\n data: \"\"\n};\nexport var tylIconNumeric0BoxMultipleOutline = {\n name: 'numeric_0_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric0BoxMultiple = {\n name: 'numeric_0_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric0BoxOutline = {\n name: 'numeric_0_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric0Box = {\n name: 'numeric_0_box',\n data: \"\"\n};\nexport var tylIconNumeric0CircleOutline = {\n name: 'numeric_0_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric0Circle = {\n name: 'numeric_0_circle',\n data: \"\"\n};\nexport var tylIconNumeric0 = {\n name: 'numeric_0',\n data: \"\"\n};\nexport var tylIconNumeric1BoxMultipleOutline = {\n name: 'numeric_1_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric1BoxMultiple = {\n name: 'numeric_1_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric1BoxOutline = {\n name: 'numeric_1_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric1Box = {\n name: 'numeric_1_box',\n data: \"\"\n};\nexport var tylIconNumeric1CircleOutline = {\n name: 'numeric_1_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric1Circle = {\n name: 'numeric_1_circle',\n data: \"\"\n};\nexport var tylIconNumeric1 = {\n name: 'numeric_1',\n data: \"\"\n};\nexport var tylIconNumeric10BoxMultipleOutline = {\n name: 'numeric_10_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric10BoxMultiple = {\n name: 'numeric_10_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric10BoxOutline = {\n name: 'numeric_10_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric10Box = {\n name: 'numeric_10_box',\n data: \"\"\n};\nexport var tylIconNumeric10CircleOutline = {\n name: 'numeric_10_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric10Circle = {\n name: 'numeric_10_circle',\n data: \"\"\n};\nexport var tylIconNumeric10 = {\n name: 'numeric_10',\n data: \"\"\n};\nexport var tylIconNumeric2BoxMultipleOutline = {\n name: 'numeric_2_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric2BoxMultiple = {\n name: 'numeric_2_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric2BoxOutline = {\n name: 'numeric_2_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric2Box = {\n name: 'numeric_2_box',\n data: \"\"\n};\nexport var tylIconNumeric2CircleOutline = {\n name: 'numeric_2_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric2Circle = {\n name: 'numeric_2_circle',\n data: \"\"\n};\nexport var tylIconNumeric2 = {\n name: 'numeric_2',\n data: \"\"\n};\nexport var tylIconNumeric3BoxMultipleOutline = {\n name: 'numeric_3_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric3BoxMultiple = {\n name: 'numeric_3_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric3BoxOutline = {\n name: 'numeric_3_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric3Box = {\n name: 'numeric_3_box',\n data: \"\"\n};\nexport var tylIconNumeric3CircleOutline = {\n name: 'numeric_3_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric3Circle = {\n name: 'numeric_3_circle',\n data: \"\"\n};\nexport var tylIconNumeric3 = {\n name: 'numeric_3',\n data: \"\"\n};\nexport var tylIconNumeric4BoxMultipleOutline = {\n name: 'numeric_4_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric4BoxMultiple = {\n name: 'numeric_4_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric4BoxOutline = {\n name: 'numeric_4_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric4Box = {\n name: 'numeric_4_box',\n data: \"\"\n};\nexport var tylIconNumeric4CircleOutline = {\n name: 'numeric_4_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric4Circle = {\n name: 'numeric_4_circle',\n data: \"\"\n};\nexport var tylIconNumeric4 = {\n name: 'numeric_4',\n data: \"\"\n};\nexport var tylIconNumeric5BoxMultipleOutline = {\n name: 'numeric_5_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric5BoxMultiple = {\n name: 'numeric_5_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric5BoxOutline = {\n name: 'numeric_5_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric5Box = {\n name: 'numeric_5_box',\n data: \"\"\n};\nexport var tylIconNumeric5CircleOutline = {\n name: 'numeric_5_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric5Circle = {\n name: 'numeric_5_circle',\n data: \"\"\n};\nexport var tylIconNumeric5 = {\n name: 'numeric_5',\n data: \"\"\n};\nexport var tylIconNumeric6BoxMultipleOutline = {\n name: 'numeric_6_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric6BoxMultiple = {\n name: 'numeric_6_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric6BoxOutline = {\n name: 'numeric_6_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric6Box = {\n name: 'numeric_6_box',\n data: \"\"\n};\nexport var tylIconNumeric6CircleOutline = {\n name: 'numeric_6_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric6Circle = {\n name: 'numeric_6_circle',\n data: \"\"\n};\nexport var tylIconNumeric6 = {\n name: 'numeric_6',\n data: \"\"\n};\nexport var tylIconNumeric7BoxMultipleOutline = {\n name: 'numeric_7_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric7BoxMultiple = {\n name: 'numeric_7_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric7BoxOutline = {\n name: 'numeric_7_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric7Box = {\n name: 'numeric_7_box',\n data: \"\"\n};\nexport var tylIconNumeric7CircleOutline = {\n name: 'numeric_7_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric7Circle = {\n name: 'numeric_7_circle',\n data: \"\"\n};\nexport var tylIconNumeric7 = {\n name: 'numeric_7',\n data: \"\"\n};\nexport var tylIconNumeric8BoxMultipleOutline = {\n name: 'numeric_8_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric8BoxMultiple = {\n name: 'numeric_8_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric8BoxOutline = {\n name: 'numeric_8_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric8Box = {\n name: 'numeric_8_box',\n data: \"\"\n};\nexport var tylIconNumeric8CircleOutline = {\n name: 'numeric_8_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric8Circle = {\n name: 'numeric_8_circle',\n data: \"\"\n};\nexport var tylIconNumeric8 = {\n name: 'numeric_8',\n data: \"\"\n};\nexport var tylIconNumeric9BoxMultipleOutline = {\n name: 'numeric_9_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric9BoxMultiple = {\n name: 'numeric_9_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric9BoxOutline = {\n name: 'numeric_9_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric9Box = {\n name: 'numeric_9_box',\n data: \"\"\n};\nexport var tylIconNumeric9CircleOutline = {\n name: 'numeric_9_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric9Circle = {\n name: 'numeric_9_circle',\n data: \"\"\n};\nexport var tylIconNumeric9PlusBoxMultipleOutline = {\n name: 'numeric_9_plus_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconNumeric9PlusBoxMultiple = {\n name: 'numeric_9_plus_box_multiple',\n data: \"\"\n};\nexport var tylIconNumeric9PlusBoxOutline = {\n name: 'numeric_9_plus_box_outline',\n data: \"\"\n};\nexport var tylIconNumeric9PlusBox = {\n name: 'numeric_9_plus_box',\n data: \"\"\n};\nexport var tylIconNumeric9PlusCircleOutline = {\n name: 'numeric_9_plus_circle_outline',\n data: \"\"\n};\nexport var tylIconNumeric9PlusCircle = {\n name: 'numeric_9_plus_circle',\n data: \"\"\n};\nexport var tylIconNumeric9Plus = {\n name: 'numeric_9_plus',\n data: \"\"\n};\nexport var tylIconNumeric9 = {\n name: 'numeric_9',\n data: \"\"\n};\nexport var tylIconNumericNegative1 = {\n name: 'numeric_negative_1',\n data: \"\"\n};\nexport var tylIconNumericPositive1 = {\n name: 'numeric_positive_1',\n data: \"\"\n};\nexport var tylIconNumeric = {\n name: 'numeric',\n data: \"\"\n};\nexport var tylIconNut = {\n name: 'nut',\n data: \"\"\n};\nexport var tylIconNutrition = {\n name: 'nutrition',\n data: \"\"\n};\nexport var tylIconNuxt = {\n name: 'nuxt',\n data: \"\"\n};\nexport var tylIconOar = {\n name: 'oar',\n data: \"\"\n};\nexport var tylIconOcarina = {\n name: 'ocarina',\n data: \"\"\n};\nexport var tylIconOci = {\n name: 'oci',\n data: \"\"\n};\nexport var tylIconOcr = {\n name: 'ocr',\n data: \"\"\n};\nexport var tylIconOctagonOutline = {\n name: 'octagon_outline',\n data: \"\"\n};\nexport var tylIconOctagon = {\n name: 'octagon',\n data: \"\"\n};\nexport var tylIconOctagramOutline = {\n name: 'octagram_outline',\n data: \"\"\n};\nexport var tylIconOctagram = {\n name: 'octagram',\n data: \"\"\n};\nexport var tylIconOdnoklassniki = {\n name: 'odnoklassniki',\n data: \"\"\n};\nexport var tylIconOffer = {\n name: 'offer',\n data: \"\"\n};\nexport var tylIconOfficeBuildingMarkerOutline = {\n name: 'office_building_marker_outline',\n data: \"\"\n};\nexport var tylIconOfficeBuildingMarker = {\n name: 'office_building_marker',\n data: \"\"\n};\nexport var tylIconOfficeBuildingOutline = {\n name: 'office_building_outline',\n data: \"\"\n};\nexport var tylIconOfficeBuilding = {\n name: 'office_building',\n data: \"\"\n};\nexport var tylIconOilLamp = {\n name: 'oil_lamp',\n data: \"\"\n};\nexport var tylIconOilLevel = {\n name: 'oil_level',\n data: \"\"\n};\nexport var tylIconOilTemperature = {\n name: 'oil_temperature',\n data: \"\"\n};\nexport var tylIconOil = {\n name: 'oil',\n data: \"\"\n};\nexport var tylIconOmega = {\n name: 'omega',\n data: \"\"\n};\nexport var tylIconOneUp = {\n name: 'one_up',\n data: \"\"\n};\nexport var tylIconOnepassword = {\n name: 'onepassword',\n data: \"\"\n};\nexport var tylIconOpacity = {\n name: 'opacity',\n data: \"\"\n};\nexport var tylIconOpenInApp = {\n name: 'open_in_app',\n data: \"\"\n};\nexport var tylIconOpenInNew = {\n name: 'open_in_new',\n data: \"\"\n};\nexport var tylIconOpenSourceInitiative = {\n name: 'open_source_initiative',\n data: \"\"\n};\nexport var tylIconOpenid = {\n name: 'openid',\n data: \"\"\n};\nexport var tylIconOpera = {\n name: 'opera',\n data: \"\"\n};\nexport var tylIconOrbitVariant = {\n name: 'orbit_variant',\n data: \"\"\n};\nexport var tylIconOrbit = {\n name: 'orbit',\n data: \"\"\n};\nexport var tylIconOrderAlphabeticalAscending = {\n name: 'order_alphabetical_ascending',\n data: \"\"\n};\nexport var tylIconOrderAlphabeticalDescending = {\n name: 'order_alphabetical_descending',\n data: \"\"\n};\nexport var tylIconOrderBoolAscendingVariant = {\n name: 'order_bool_ascending_variant',\n data: \"\"\n};\nexport var tylIconOrderBoolAscending = {\n name: 'order_bool_ascending',\n data: \"\"\n};\nexport var tylIconOrderBoolDescendingVariant = {\n name: 'order_bool_descending_variant',\n data: \"\"\n};\nexport var tylIconOrderBoolDescending = {\n name: 'order_bool_descending',\n data: \"\"\n};\nexport var tylIconOrderNumericAscending = {\n name: 'order_numeric_ascending',\n data: \"\"\n};\nexport var tylIconOrderNumericDescending = {\n name: 'order_numeric_descending',\n data: \"\"\n};\nexport var tylIconOrigin = {\n name: 'origin',\n data: \"\"\n};\nexport var tylIconOrnamentVariant = {\n name: 'ornament_variant',\n data: \"\"\n};\nexport var tylIconOrnament = {\n name: 'ornament',\n data: \"\"\n};\nexport var tylIconOutdoorLamp = {\n name: 'outdoor_lamp',\n data: \"\"\n};\nexport var tylIconOverscan = {\n name: 'overscan',\n data: \"\"\n};\nexport var tylIconOwl = {\n name: 'owl',\n data: \"\"\n};\nexport var tylIconPacMan = {\n name: 'pac_man',\n data: \"\"\n};\nexport var tylIconPackageDown = {\n name: 'package_down',\n data: \"\"\n};\nexport var tylIconPackageUp = {\n name: 'package_up',\n data: \"\"\n};\nexport var tylIconPackageVariantClosed = {\n name: 'package_variant_closed',\n data: \"\"\n};\nexport var tylIconPackageVariant = {\n name: 'package_variant',\n data: \"\"\n};\nexport var tylIconPackage = {\n name: 'package',\n data: \"\"\n};\nexport var tylIconPageFirst = {\n name: 'page_first',\n data: \"\"\n};\nexport var tylIconPageLast = {\n name: 'page_last',\n data: \"\"\n};\nexport var tylIconPageLayoutBody = {\n name: 'page_layout_body',\n data: \"\"\n};\nexport var tylIconPageLayoutFooter = {\n name: 'page_layout_footer',\n data: \"\"\n};\nexport var tylIconPageLayoutHeaderFooter = {\n name: 'page_layout_header_footer',\n data: \"\"\n};\nexport var tylIconPageLayoutHeader = {\n name: 'page_layout_header',\n data: \"\"\n};\nexport var tylIconPageLayoutSidebarLeft = {\n name: 'page_layout_sidebar_left',\n data: \"\"\n};\nexport var tylIconPageLayoutSidebarRight = {\n name: 'page_layout_sidebar_right',\n data: \"\"\n};\nexport var tylIconPageNextOutline = {\n name: 'page_next_outline',\n data: \"\"\n};\nexport var tylIconPageNext = {\n name: 'page_next',\n data: \"\"\n};\nexport var tylIconPagePreviousOutline = {\n name: 'page_previous_outline',\n data: \"\"\n};\nexport var tylIconPagePrevious = {\n name: 'page_previous',\n data: \"\"\n};\nexport var tylIconPailMinusOutline = {\n name: 'pail_minus_outline',\n data: \"\"\n};\nexport var tylIconPailMinus = {\n name: 'pail_minus',\n data: \"\"\n};\nexport var tylIconPailOffOutline = {\n name: 'pail_off_outline',\n data: \"\"\n};\nexport var tylIconPailOff = {\n name: 'pail_off',\n data: \"\"\n};\nexport var tylIconPailOutline = {\n name: 'pail_outline',\n data: \"\"\n};\nexport var tylIconPailPlusOutline = {\n name: 'pail_plus_outline',\n data: \"\"\n};\nexport var tylIconPailPlus = {\n name: 'pail_plus',\n data: \"\"\n};\nexport var tylIconPailRemoveOutline = {\n name: 'pail_remove_outline',\n data: \"\"\n};\nexport var tylIconPailRemove = {\n name: 'pail_remove',\n data: \"\"\n};\nexport var tylIconPail = {\n name: 'pail',\n data: \"\"\n};\nexport var tylIconPaletteAdvanced = {\n name: 'palette_advanced',\n data: \"\"\n};\nexport var tylIconPaletteOutline = {\n name: 'palette_outline',\n data: \"\"\n};\nexport var tylIconPaletteSwatchOutline = {\n name: 'palette_swatch_outline',\n data: \"\"\n};\nexport var tylIconPaletteSwatch = {\n name: 'palette_swatch',\n data: \"\"\n};\nexport var tylIconPalette = {\n name: 'palette',\n data: \"\"\n};\nexport var tylIconPalmTree = {\n name: 'palm_tree',\n data: \"\"\n};\nexport var tylIconPanBottomLeft = {\n name: 'pan_bottom_left',\n data: \"\"\n};\nexport var tylIconPanBottomRight = {\n name: 'pan_bottom_right',\n data: \"\"\n};\nexport var tylIconPanDown = {\n name: 'pan_down',\n data: \"\"\n};\nexport var tylIconPanHorizontal = {\n name: 'pan_horizontal',\n data: \"\"\n};\nexport var tylIconPanLeft = {\n name: 'pan_left',\n data: \"\"\n};\nexport var tylIconPanRight = {\n name: 'pan_right',\n data: \"\"\n};\nexport var tylIconPanTopLeft = {\n name: 'pan_top_left',\n data: \"\"\n};\nexport var tylIconPanTopRight = {\n name: 'pan_top_right',\n data: \"\"\n};\nexport var tylIconPanUp = {\n name: 'pan_up',\n data: \"\"\n};\nexport var tylIconPanVertical = {\n name: 'pan_vertical',\n data: \"\"\n};\nexport var tylIconPan = {\n name: 'pan',\n data: \"\"\n};\nexport var tylIconPanda = {\n name: 'panda',\n data: \"\"\n};\nexport var tylIconPandora = {\n name: 'pandora',\n data: \"\"\n};\nexport var tylIconPanoramaFisheye = {\n name: 'panorama_fisheye',\n data: \"\"\n};\nexport var tylIconPanoramaHorizontal = {\n name: 'panorama_horizontal',\n data: \"\"\n};\nexport var tylIconPanoramaVertical = {\n name: 'panorama_vertical',\n data: \"\"\n};\nexport var tylIconPanoramaWideAngle = {\n name: 'panorama_wide_angle',\n data: \"\"\n};\nexport var tylIconPanorama = {\n name: 'panorama',\n data: \"\"\n};\nexport var tylIconPaperCutVertical = {\n name: 'paper_cut_vertical',\n data: \"\"\n};\nexport var tylIconPaperRollOutline = {\n name: 'paper_roll_outline',\n data: \"\"\n};\nexport var tylIconPaperRoll = {\n name: 'paper_roll',\n data: \"\"\n};\nexport var tylIconPaperclip = {\n name: 'paperclip',\n data: \"\"\n};\nexport var tylIconParachuteOutline = {\n name: 'parachute_outline',\n data: \"\"\n};\nexport var tylIconParachute = {\n name: 'parachute',\n data: \"\"\n};\nexport var tylIconParking = {\n name: 'parking',\n data: \"\"\n};\nexport var tylIconPartyPopper = {\n name: 'party_popper',\n data: \"\"\n};\nexport var tylIconPassportBiometric = {\n name: 'passport_biometric',\n data: \"\"\n};\nexport var tylIconPassport = {\n name: 'passport',\n data: \"\"\n};\nexport var tylIconPasta = {\n name: 'pasta',\n data: \"\"\n};\nexport var tylIconPatioHeater = {\n name: 'patio_heater',\n data: \"\"\n};\nexport var tylIconPatreon = {\n name: 'patreon',\n data: \"\"\n};\nexport var tylIconPauseCircleOutline = {\n name: 'pause_circle_outline',\n data: \"\"\n};\nexport var tylIconPauseCircle = {\n name: 'pause_circle',\n data: \"\"\n};\nexport var tylIconPauseOctagonOutline = {\n name: 'pause_octagon_outline',\n data: \"\"\n};\nexport var tylIconPauseOctagon = {\n name: 'pause_octagon',\n data: \"\"\n};\nexport var tylIconPause = {\n name: 'pause',\n data: \"\"\n};\nexport var tylIconPawOffOutline = {\n name: 'paw_off_outline',\n data: \"\"\n};\nexport var tylIconPawOff = {\n name: 'paw_off',\n data: \"\"\n};\nexport var tylIconPawOutline = {\n name: 'paw_outline',\n data: \"\"\n};\nexport var tylIconPaw = {\n name: 'paw',\n data: \"\"\n};\nexport var tylIconPdfBox = {\n name: 'pdf_box',\n data: \"\"\n};\nexport var tylIconPeace = {\n name: 'peace',\n data: \"\"\n};\nexport var tylIconPeanutOffOutline = {\n name: 'peanut_off_outline',\n data: \"\"\n};\nexport var tylIconPeanutOff = {\n name: 'peanut_off',\n data: \"\"\n};\nexport var tylIconPeanutOutline = {\n name: 'peanut_outline',\n data: \"\"\n};\nexport var tylIconPeanut = {\n name: 'peanut',\n data: \"\"\n};\nexport var tylIconPenLock = {\n name: 'pen_lock',\n data: \"\"\n};\nexport var tylIconPenMinus = {\n name: 'pen_minus',\n data: \"\"\n};\nexport var tylIconPenOff = {\n name: 'pen_off',\n data: \"\"\n};\nexport var tylIconPenPlus = {\n name: 'pen_plus',\n data: \"\"\n};\nexport var tylIconPenRemove = {\n name: 'pen_remove',\n data: \"\"\n};\nexport var tylIconPen = {\n name: 'pen',\n data: \"\"\n};\nexport var tylIconPencilBoxMultipleOutline = {\n name: 'pencil_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconPencilBoxMultiple = {\n name: 'pencil_box_multiple',\n data: \"\"\n};\nexport var tylIconPencilBoxOutline = {\n name: 'pencil_box_outline',\n data: \"\"\n};\nexport var tylIconPencilBox = {\n name: 'pencil_box',\n data: \"\"\n};\nexport var tylIconPencilCircleOutline = {\n name: 'pencil_circle_outline',\n data: \"\"\n};\nexport var tylIconPencilCircle = {\n name: 'pencil_circle',\n data: \"\"\n};\nexport var tylIconPencilLockOutline = {\n name: 'pencil_lock_outline',\n data: \"\"\n};\nexport var tylIconPencilLock = {\n name: 'pencil_lock',\n data: \"\"\n};\nexport var tylIconPencilMinusOutline = {\n name: 'pencil_minus_outline',\n data: \"\"\n};\nexport var tylIconPencilMinus = {\n name: 'pencil_minus',\n data: \"\"\n};\nexport var tylIconPencilOffOutline = {\n name: 'pencil_off_outline',\n data: \"\"\n};\nexport var tylIconPencilOff = {\n name: 'pencil_off',\n data: \"\"\n};\nexport var tylIconPencilOutline = {\n name: 'pencil_outline',\n data: \"\"\n};\nexport var tylIconPencilPlusOutline = {\n name: 'pencil_plus_outline',\n data: \"\"\n};\nexport var tylIconPencilPlus = {\n name: 'pencil_plus',\n data: \"\"\n};\nexport var tylIconPencilRemoveOutline = {\n name: 'pencil_remove_outline',\n data: \"\"\n};\nexport var tylIconPencilRemove = {\n name: 'pencil_remove',\n data: \"\"\n};\nexport var tylIconPencilRuler = {\n name: 'pencil_ruler',\n data: \"\"\n};\nexport var tylIconPencil = {\n name: 'pencil',\n data: \"\"\n};\nexport var tylIconPenguin = {\n name: 'penguin',\n data: \"\"\n};\nexport var tylIconPentagonOutline = {\n name: 'pentagon_outline',\n data: \"\"\n};\nexport var tylIconPentagon = {\n name: 'pentagon',\n data: \"\"\n};\nexport var tylIconPentagram = {\n name: 'pentagram',\n data: \"\"\n};\nexport var tylIconPercentOutline = {\n name: 'percent_outline',\n data: \"\"\n};\nexport var tylIconPercent = {\n name: 'percent',\n data: \"\"\n};\nexport var tylIconPeriodicTable = {\n name: 'periodic_table',\n data: \"\"\n};\nexport var tylIconPerspectiveLess = {\n name: 'perspective_less',\n data: \"\"\n};\nexport var tylIconPerspectiveMore = {\n name: 'perspective_more',\n data: \"\"\n};\nexport var tylIconPharmacy = {\n name: 'pharmacy',\n data: \"\"\n};\nexport var tylIconPhoneAlertOutline = {\n name: 'phone_alert_outline',\n data: \"\"\n};\nexport var tylIconPhoneAlert = {\n name: 'phone_alert',\n data: \"\"\n};\nexport var tylIconPhoneBluetoothOutline = {\n name: 'phone_bluetooth_outline',\n data: \"\"\n};\nexport var tylIconPhoneBluetooth = {\n name: 'phone_bluetooth',\n data: \"\"\n};\nexport var tylIconPhoneCancelOutline = {\n name: 'phone_cancel_outline',\n data: \"\"\n};\nexport var tylIconPhoneCancel = {\n name: 'phone_cancel',\n data: \"\"\n};\nexport var tylIconPhoneCheckOutline = {\n name: 'phone_check_outline',\n data: \"\"\n};\nexport var tylIconPhoneCheck = {\n name: 'phone_check',\n data: \"\"\n};\nexport var tylIconPhoneClassicOff = {\n name: 'phone_classic_off',\n data: \"\"\n};\nexport var tylIconPhoneClassic = {\n name: 'phone_classic',\n data: \"\"\n};\nexport var tylIconPhoneDialOutline = {\n name: 'phone_dial_outline',\n data: \"\"\n};\nexport var tylIconPhoneDial = {\n name: 'phone_dial',\n data: \"\"\n};\nexport var tylIconPhoneForwardOutline = {\n name: 'phone_forward_outline',\n data: \"\"\n};\nexport var tylIconPhoneForward = {\n name: 'phone_forward',\n data: \"\"\n};\nexport var tylIconPhoneHangupOutline = {\n name: 'phone_hangup_outline',\n data: \"\"\n};\nexport var tylIconPhoneHangup = {\n name: 'phone_hangup',\n data: \"\"\n};\nexport var tylIconPhoneInTalkOutline = {\n name: 'phone_in_talk_outline',\n data: \"\"\n};\nexport var tylIconPhoneInTalk = {\n name: 'phone_in_talk',\n data: \"\"\n};\nexport var tylIconPhoneIncomingOutline = {\n name: 'phone_incoming_outline',\n data: \"\"\n};\nexport var tylIconPhoneIncoming = {\n name: 'phone_incoming',\n data: \"\"\n};\nexport var tylIconPhoneLockOutline = {\n name: 'phone_lock_outline',\n data: \"\"\n};\nexport var tylIconPhoneLock = {\n name: 'phone_lock',\n data: \"\"\n};\nexport var tylIconPhoneLogOutline = {\n name: 'phone_log_outline',\n data: \"\"\n};\nexport var tylIconPhoneLog = {\n name: 'phone_log',\n data: \"\"\n};\nexport var tylIconPhoneMessageOutline = {\n name: 'phone_message_outline',\n data: \"\"\n};\nexport var tylIconPhoneMessage = {\n name: 'phone_message',\n data: \"\"\n};\nexport var tylIconPhoneMinusOutline = {\n name: 'phone_minus_outline',\n data: \"\"\n};\nexport var tylIconPhoneMinus = {\n name: 'phone_minus',\n data: \"\"\n};\nexport var tylIconPhoneMissedOutline = {\n name: 'phone_missed_outline',\n data: \"\"\n};\nexport var tylIconPhoneMissed = {\n name: 'phone_missed',\n data: \"\"\n};\nexport var tylIconPhoneOffOutline = {\n name: 'phone_off_outline',\n data: \"\"\n};\nexport var tylIconPhoneOff = {\n name: 'phone_off',\n data: \"\"\n};\nexport var tylIconPhoneOutgoingOutline = {\n name: 'phone_outgoing_outline',\n data: \"\"\n};\nexport var tylIconPhoneOutgoing = {\n name: 'phone_outgoing',\n data: \"\"\n};\nexport var tylIconPhoneOutline = {\n name: 'phone_outline',\n data: \"\"\n};\nexport var tylIconPhonePausedOutline = {\n name: 'phone_paused_outline',\n data: \"\"\n};\nexport var tylIconPhonePaused = {\n name: 'phone_paused',\n data: \"\"\n};\nexport var tylIconPhonePlusOutline = {\n name: 'phone_plus_outline',\n data: \"\"\n};\nexport var tylIconPhonePlus = {\n name: 'phone_plus',\n data: \"\"\n};\nexport var tylIconPhoneRemoveOutline = {\n name: 'phone_remove_outline',\n data: \"\"\n};\nexport var tylIconPhoneRemove = {\n name: 'phone_remove',\n data: \"\"\n};\nexport var tylIconPhoneReturnOutline = {\n name: 'phone_return_outline',\n data: \"\"\n};\nexport var tylIconPhoneReturn = {\n name: 'phone_return',\n data: \"\"\n};\nexport var tylIconPhoneRingOutline = {\n name: 'phone_ring_outline',\n data: \"\"\n};\nexport var tylIconPhoneRing = {\n name: 'phone_ring',\n data: \"\"\n};\nexport var tylIconPhoneRotateLandscape = {\n name: 'phone_rotate_landscape',\n data: \"\"\n};\nexport var tylIconPhoneRotatePortrait = {\n name: 'phone_rotate_portrait',\n data: \"\"\n};\nexport var tylIconPhoneSettingsOutline = {\n name: 'phone_settings_outline',\n data: \"\"\n};\nexport var tylIconPhoneSettings = {\n name: 'phone_settings',\n data: \"\"\n};\nexport var tylIconPhoneVoip = {\n name: 'phone_voip',\n data: \"\"\n};\nexport var tylIconPhone = {\n name: 'phone',\n data: \"\"\n};\nexport var tylIconPiBox = {\n name: 'pi_box',\n data: \"\"\n};\nexport var tylIconPiHole = {\n name: 'pi_hole',\n data: \"\"\n};\nexport var tylIconPi = {\n name: 'pi',\n data: \"\"\n};\nexport var tylIconPiano = {\n name: 'piano',\n data: \"\"\n};\nexport var tylIconPickaxe = {\n name: 'pickaxe',\n data: \"\"\n};\nexport var tylIconPictureInPictureBottomRightOutline = {\n name: 'picture_in_picture_bottom_right_outline',\n data: \"\"\n};\nexport var tylIconPictureInPictureBottomRight = {\n name: 'picture_in_picture_bottom_right',\n data: \"\"\n};\nexport var tylIconPictureInPictureTopRightOutline = {\n name: 'picture_in_picture_top_right_outline',\n data: \"\"\n};\nexport var tylIconPictureInPictureTopRight = {\n name: 'picture_in_picture_top_right',\n data: \"\"\n};\nexport var tylIconPierCrane = {\n name: 'pier_crane',\n data: \"\"\n};\nexport var tylIconPier = {\n name: 'pier',\n data: \"\"\n};\nexport var tylIconPigVariantOutline = {\n name: 'pig_variant_outline',\n data: \"\"\n};\nexport var tylIconPigVariant = {\n name: 'pig_variant',\n data: \"\"\n};\nexport var tylIconPig = {\n name: 'pig',\n data: \"\"\n};\nexport var tylIconPiggyBankOutline = {\n name: 'piggy_bank_outline',\n data: \"\"\n};\nexport var tylIconPiggyBank = {\n name: 'piggy_bank',\n data: \"\"\n};\nexport var tylIconPill = {\n name: 'pill',\n data: \"\"\n};\nexport var tylIconPillar = {\n name: 'pillar',\n data: \"\"\n};\nexport var tylIconPinOffOutline = {\n name: 'pin_off_outline',\n data: \"\"\n};\nexport var tylIconPinOff = {\n name: 'pin_off',\n data: \"\"\n};\nexport var tylIconPinOutline = {\n name: 'pin_outline',\n data: \"\"\n};\nexport var tylIconPin = {\n name: 'pin',\n data: \"\"\n};\nexport var tylIconPineTreeBox = {\n name: 'pine_tree_box',\n data: \"\"\n};\nexport var tylIconPineTreeFire = {\n name: 'pine_tree_fire',\n data: \"\"\n};\nexport var tylIconPineTree = {\n name: 'pine_tree',\n data: \"\"\n};\nexport var tylIconPinterest = {\n name: 'pinterest',\n data: \"\"\n};\nexport var tylIconPinwheelOutline = {\n name: 'pinwheel_outline',\n data: \"\"\n};\nexport var tylIconPinwheel = {\n name: 'pinwheel',\n data: \"\"\n};\nexport var tylIconPipeDisconnected = {\n name: 'pipe_disconnected',\n data: \"\"\n};\nexport var tylIconPipeLeak = {\n name: 'pipe_leak',\n data: \"\"\n};\nexport var tylIconPipeWrench = {\n name: 'pipe_wrench',\n data: \"\"\n};\nexport var tylIconPipe = {\n name: 'pipe',\n data: \"\"\n};\nexport var tylIconPirate = {\n name: 'pirate',\n data: \"\"\n};\nexport var tylIconPistol = {\n name: 'pistol',\n data: \"\"\n};\nexport var tylIconPiston = {\n name: 'piston',\n data: \"\"\n};\nexport var tylIconPitchfork = {\n name: 'pitchfork',\n data: \"\"\n};\nexport var tylIconPizza = {\n name: 'pizza',\n data: \"\"\n};\nexport var tylIconPlayBoxMultipleOutline = {\n name: 'play_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconPlayBoxMultiple = {\n name: 'play_box_multiple',\n data: \"\"\n};\nexport var tylIconPlayBoxOutline = {\n name: 'play_box_outline',\n data: \"\"\n};\nexport var tylIconPlayBox = {\n name: 'play_box',\n data: \"\"\n};\nexport var tylIconPlayCircleOutline = {\n name: 'play_circle_outline',\n data: \"\"\n};\nexport var tylIconPlayCircle = {\n name: 'play_circle',\n data: \"\"\n};\nexport var tylIconPlayNetworkOutline = {\n name: 'play_network_outline',\n data: \"\"\n};\nexport var tylIconPlayNetwork = {\n name: 'play_network',\n data: \"\"\n};\nexport var tylIconPlayOutline = {\n name: 'play_outline',\n data: \"\"\n};\nexport var tylIconPlayPause = {\n name: 'play_pause',\n data: \"\"\n};\nexport var tylIconPlayProtectedContent = {\n name: 'play_protected_content',\n data: \"\"\n};\nexport var tylIconPlaySpeed = {\n name: 'play_speed',\n data: \"\"\n};\nexport var tylIconPlay = {\n name: 'play',\n data: \"\"\n};\nexport var tylIconPlaylistCheck = {\n name: 'playlist_check',\n data: \"\"\n};\nexport var tylIconPlaylistEdit = {\n name: 'playlist_edit',\n data: \"\"\n};\nexport var tylIconPlaylistMinus = {\n name: 'playlist_minus',\n data: \"\"\n};\nexport var tylIconPlaylistMusicOutline = {\n name: 'playlist_music_outline',\n data: \"\"\n};\nexport var tylIconPlaylistMusic = {\n name: 'playlist_music',\n data: \"\"\n};\nexport var tylIconPlaylistPlay = {\n name: 'playlist_play',\n data: \"\"\n};\nexport var tylIconPlaylistPlus = {\n name: 'playlist_plus',\n data: \"\"\n};\nexport var tylIconPlaylistRemove = {\n name: 'playlist_remove',\n data: \"\"\n};\nexport var tylIconPlaylistStar = {\n name: 'playlist_star',\n data: \"\"\n};\nexport var tylIconPlex = {\n name: 'plex',\n data: \"\"\n};\nexport var tylIconPlusBoxMultipleOutline = {\n name: 'plus_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconPlusBoxMultiple = {\n name: 'plus_box_multiple',\n data: \"\"\n};\nexport var tylIconPlusBoxOutline = {\n name: 'plus_box_outline',\n data: \"\"\n};\nexport var tylIconPlusBox = {\n name: 'plus_box',\n data: \"\"\n};\nexport var tylIconPlusCircleMultipleOutline = {\n name: 'plus_circle_multiple_outline',\n data: \"\"\n};\nexport var tylIconPlusCircleMultiple = {\n name: 'plus_circle_multiple',\n data: \"\"\n};\nexport var tylIconPlusCircleOutline = {\n name: 'plus_circle_outline',\n data: \"\"\n};\nexport var tylIconPlusCircle = {\n name: 'plus_circle',\n data: \"\"\n};\nexport var tylIconPlusMinusBox = {\n name: 'plus_minus_box',\n data: \"\"\n};\nexport var tylIconPlusMinusVariant = {\n name: 'plus_minus_variant',\n data: \"\"\n};\nexport var tylIconPlusMinus = {\n name: 'plus_minus',\n data: \"\"\n};\nexport var tylIconPlusNetworkOutline = {\n name: 'plus_network_outline',\n data: \"\"\n};\nexport var tylIconPlusNetwork = {\n name: 'plus_network',\n data: \"\"\n};\nexport var tylIconPlusOne = {\n name: 'plus_one',\n data: \"\"\n};\nexport var tylIconPlusOutline = {\n name: 'plus_outline',\n data: \"\"\n};\nexport var tylIconPlusThick = {\n name: 'plus_thick',\n data: \"\"\n};\nexport var tylIconPlus = {\n name: 'plus',\n data: \"\"\n};\nexport var tylIconPodcast = {\n name: 'podcast',\n data: \"\"\n};\nexport var tylIconPodiumBronze = {\n name: 'podium_bronze',\n data: \"\"\n};\nexport var tylIconPodiumGold = {\n name: 'podium_gold',\n data: \"\"\n};\nexport var tylIconPodiumSilver = {\n name: 'podium_silver',\n data: \"\"\n};\nexport var tylIconPodium = {\n name: 'podium',\n data: \"\"\n};\nexport var tylIconPointOfSale = {\n name: 'point_of_sale',\n data: \"\"\n};\nexport var tylIconPokeball = {\n name: 'pokeball',\n data: \"\"\n};\nexport var tylIconPokemonGo = {\n name: 'pokemon_go',\n data: \"\"\n};\nexport var tylIconPokerChip = {\n name: 'poker_chip',\n data: \"\"\n};\nexport var tylIconPolaroid = {\n name: 'polaroid',\n data: \"\"\n};\nexport var tylIconPoliceBadgeOutline = {\n name: 'police_badge_outline',\n data: \"\"\n};\nexport var tylIconPoliceBadge = {\n name: 'police_badge',\n data: \"\"\n};\nexport var tylIconPollBoxOutline = {\n name: 'poll_box_outline',\n data: \"\"\n};\nexport var tylIconPollBox = {\n name: 'poll_box',\n data: \"\"\n};\nexport var tylIconPoll = {\n name: 'poll',\n data: \"\"\n};\nexport var tylIconPolo = {\n name: 'polo',\n data: \"\"\n};\nexport var tylIconPolymer = {\n name: 'polymer',\n data: \"\"\n};\nexport var tylIconPool = {\n name: 'pool',\n data: \"\"\n};\nexport var tylIconPopcorn = {\n name: 'popcorn',\n data: \"\"\n};\nexport var tylIconPostOutline = {\n name: 'post_outline',\n data: \"\"\n};\nexport var tylIconPost = {\n name: 'post',\n data: \"\"\n};\nexport var tylIconPostageStamp = {\n name: 'postage_stamp',\n data: \"\"\n};\nexport var tylIconPotMixOutline = {\n name: 'pot_mix_outline',\n data: \"\"\n};\nexport var tylIconPotMix = {\n name: 'pot_mix',\n data: \"\"\n};\nexport var tylIconPotOutline = {\n name: 'pot_outline',\n data: \"\"\n};\nexport var tylIconPotSteamOutline = {\n name: 'pot_steam_outline',\n data: \"\"\n};\nexport var tylIconPotSteam = {\n name: 'pot_steam',\n data: \"\"\n};\nexport var tylIconPot = {\n name: 'pot',\n data: \"\"\n};\nexport var tylIconPoundBoxOutline = {\n name: 'pound_box_outline',\n data: \"\"\n};\nexport var tylIconPoundBox = {\n name: 'pound_box',\n data: \"\"\n};\nexport var tylIconPound = {\n name: 'pound',\n data: \"\"\n};\nexport var tylIconPowerCycle = {\n name: 'power_cycle',\n data: \"\"\n};\nexport var tylIconPowerOff = {\n name: 'power_off',\n data: \"\"\n};\nexport var tylIconPowerOn = {\n name: 'power_on',\n data: \"\"\n};\nexport var tylIconPowerPlugOffOutline = {\n name: 'power_plug_off_outline',\n data: \"\"\n};\nexport var tylIconPowerPlugOff = {\n name: 'power_plug_off',\n data: \"\"\n};\nexport var tylIconPowerPlugOutline = {\n name: 'power_plug_outline',\n data: \"\"\n};\nexport var tylIconPowerPlug = {\n name: 'power_plug',\n data: \"\"\n};\nexport var tylIconPowerSettings = {\n name: 'power_settings',\n data: \"\"\n};\nexport var tylIconPowerSleep = {\n name: 'power_sleep',\n data: \"\"\n};\nexport var tylIconPowerSocketAu = {\n name: 'power_socket_au',\n data: \"\"\n};\nexport var tylIconPowerSocketDe = {\n name: 'power_socket_de',\n data: \"\"\n};\nexport var tylIconPowerSocketEu = {\n name: 'power_socket_eu',\n data: \"\"\n};\nexport var tylIconPowerSocketFr = {\n name: 'power_socket_fr',\n data: \"\"\n};\nexport var tylIconPowerSocketIt = {\n name: 'power_socket_it',\n data: \"\"\n};\nexport var tylIconPowerSocketJp = {\n name: 'power_socket_jp',\n data: \"\"\n};\nexport var tylIconPowerSocketUk = {\n name: 'power_socket_uk',\n data: \"\"\n};\nexport var tylIconPowerSocketUs = {\n name: 'power_socket_us',\n data: \"\"\n};\nexport var tylIconPowerSocket = {\n name: 'power_socket',\n data: \"\"\n};\nexport var tylIconPowerStandby = {\n name: 'power_standby',\n data: \"\"\n};\nexport var tylIconPower = {\n name: 'power',\n data: \"\"\n};\nexport var tylIconPowershell = {\n name: 'powershell',\n data: \"\"\n};\nexport var tylIconPrescription = {\n name: 'prescription',\n data: \"\"\n};\nexport var tylIconPresentationPlay = {\n name: 'presentation_play',\n data: \"\"\n};\nexport var tylIconPresentation = {\n name: 'presentation',\n data: \"\"\n};\nexport var tylIconPretzel = {\n name: 'pretzel',\n data: \"\"\n};\nexport var tylIconPrinter3DNozzleAlertOutline = {\n name: 'printer_3_d_nozzle_alert_outline',\n data: \"\"\n};\nexport var tylIconPrinter3DNozzleAlert = {\n name: 'printer_3_d_nozzle_alert',\n data: \"\"\n};\nexport var tylIconPrinter3DNozzleOutline = {\n name: 'printer_3_d_nozzle_outline',\n data: \"\"\n};\nexport var tylIconPrinter3DNozzle = {\n name: 'printer_3_d_nozzle',\n data: \"\"\n};\nexport var tylIconPrinter3D = {\n name: 'printer_3_d',\n data: \"\"\n};\nexport var tylIconPrinterAlert = {\n name: 'printer_alert',\n data: \"\"\n};\nexport var tylIconPrinterCheck = {\n name: 'printer_check',\n data: \"\"\n};\nexport var tylIconPrinterEye = {\n name: 'printer_eye',\n data: \"\"\n};\nexport var tylIconPrinterOff = {\n name: 'printer_off',\n data: \"\"\n};\nexport var tylIconPrinterPos = {\n name: 'printer_pos',\n data: \"\"\n};\nexport var tylIconPrinterSearch = {\n name: 'printer_search',\n data: \"\"\n};\nexport var tylIconPrinterSettings = {\n name: 'printer_settings',\n data: \"\"\n};\nexport var tylIconPrinterWireless = {\n name: 'printer_wireless',\n data: \"\"\n};\nexport var tylIconPrinter = {\n name: 'printer',\n data: \"\"\n};\nexport var tylIconPriorityHigh = {\n name: 'priority_high',\n data: \"\"\n};\nexport var tylIconPriorityLow = {\n name: 'priority_low',\n data: \"\"\n};\nexport var tylIconProfessionalHexagon = {\n name: 'professional_hexagon',\n data: \"\"\n};\nexport var tylIconProgressAlert = {\n name: 'progress_alert',\n data: \"\"\n};\nexport var tylIconProgressCheck = {\n name: 'progress_check',\n data: \"\"\n};\nexport var tylIconProgressClock = {\n name: 'progress_clock',\n data: \"\"\n};\nexport var tylIconProgressClose = {\n name: 'progress_close',\n data: \"\"\n};\nexport var tylIconProgressDownload = {\n name: 'progress_download',\n data: \"\"\n};\nexport var tylIconProgressQuestion = {\n name: 'progress_question',\n data: \"\"\n};\nexport var tylIconProgressUpload = {\n name: 'progress_upload',\n data: \"\"\n};\nexport var tylIconProgressWrench = {\n name: 'progress_wrench',\n data: \"\"\n};\nexport var tylIconProjectorScreen = {\n name: 'projector_screen',\n data: \"\"\n};\nexport var tylIconProjector = {\n name: 'projector',\n data: \"\"\n};\nexport var tylIconPropaneTankOutline = {\n name: 'propane_tank_outline',\n data: \"\"\n};\nexport var tylIconPropaneTank = {\n name: 'propane_tank',\n data: \"\"\n};\nexport var tylIconProtocol = {\n name: 'protocol',\n data: \"\"\n};\nexport var tylIconPublish = {\n name: 'publish',\n data: \"\"\n};\nexport var tylIconPulse = {\n name: 'pulse',\n data: \"\"\n};\nexport var tylIconPump = {\n name: 'pump',\n data: \"\"\n};\nexport var tylIconPumpkin = {\n name: 'pumpkin',\n data: \"\"\n};\nexport var tylIconPurseOutline = {\n name: 'purse_outline',\n data: \"\"\n};\nexport var tylIconPurse = {\n name: 'purse',\n data: \"\"\n};\nexport var tylIconPuzzleCheckOutline = {\n name: 'puzzle_check_outline',\n data: \"\"\n};\nexport var tylIconPuzzleCheck = {\n name: 'puzzle_check',\n data: \"\"\n};\nexport var tylIconPuzzleEditOutline = {\n name: 'puzzle_edit_outline',\n data: \"\"\n};\nexport var tylIconPuzzleEdit = {\n name: 'puzzle_edit',\n data: \"\"\n};\nexport var tylIconPuzzleHeartOutline = {\n name: 'puzzle_heart_outline',\n data: \"\"\n};\nexport var tylIconPuzzleHeart = {\n name: 'puzzle_heart',\n data: \"\"\n};\nexport var tylIconPuzzleMinusOutline = {\n name: 'puzzle_minus_outline',\n data: \"\"\n};\nexport var tylIconPuzzleMinus = {\n name: 'puzzle_minus',\n data: \"\"\n};\nexport var tylIconPuzzleOutline = {\n name: 'puzzle_outline',\n data: \"\"\n};\nexport var tylIconPuzzlePlusOutline = {\n name: 'puzzle_plus_outline',\n data: \"\"\n};\nexport var tylIconPuzzlePlus = {\n name: 'puzzle_plus',\n data: \"\"\n};\nexport var tylIconPuzzleRemoveOutline = {\n name: 'puzzle_remove_outline',\n data: \"\"\n};\nexport var tylIconPuzzleRemove = {\n name: 'puzzle_remove',\n data: \"\"\n};\nexport var tylIconPuzzleStarOutline = {\n name: 'puzzle_star_outline',\n data: \"\"\n};\nexport var tylIconPuzzleStar = {\n name: 'puzzle_star',\n data: \"\"\n};\nexport var tylIconPuzzle = {\n name: 'puzzle',\n data: \"\"\n};\nexport var tylIconQi = {\n name: 'qi',\n data: \"\"\n};\nexport var tylIconQqchat = {\n name: 'qqchat',\n data: \"\"\n};\nexport var tylIconQrcodeEdit = {\n name: 'qrcode_edit',\n data: \"\"\n};\nexport var tylIconQrcodeMinus = {\n name: 'qrcode_minus',\n data: \"\"\n};\nexport var tylIconQrcodePlus = {\n name: 'qrcode_plus',\n data: \"\"\n};\nexport var tylIconQrcodeRemove = {\n name: 'qrcode_remove',\n data: \"\"\n};\nexport var tylIconQrcodeScan = {\n name: 'qrcode_scan',\n data: \"\"\n};\nexport var tylIconQrcode = {\n name: 'qrcode',\n data: \"\"\n};\nexport var tylIconQuadcopter = {\n name: 'quadcopter',\n data: \"\"\n};\nexport var tylIconQualityHigh = {\n name: 'quality_high',\n data: \"\"\n};\nexport var tylIconQualityLow = {\n name: 'quality_low',\n data: \"\"\n};\nexport var tylIconQualityMedium = {\n name: 'quality_medium',\n data: \"\"\n};\nexport var tylIconQuora = {\n name: 'quora',\n data: \"\"\n};\nexport var tylIconRabbit = {\n name: 'rabbit',\n data: \"\"\n};\nexport var tylIconRacingHelmet = {\n name: 'racing_helmet',\n data: \"\"\n};\nexport var tylIconRacquetball = {\n name: 'racquetball',\n data: \"\"\n};\nexport var tylIconRadar = {\n name: 'radar',\n data: \"\"\n};\nexport var tylIconRadiatorDisabled = {\n name: 'radiator_disabled',\n data: \"\"\n};\nexport var tylIconRadiatorOff = {\n name: 'radiator_off',\n data: \"\"\n};\nexport var tylIconRadiator = {\n name: 'radiator',\n data: \"\"\n};\nexport var tylIconRadioAm = {\n name: 'radio_am',\n data: \"\"\n};\nexport var tylIconRadioFm = {\n name: 'radio_fm',\n data: \"\"\n};\nexport var tylIconRadioHandheld = {\n name: 'radio_handheld',\n data: \"\"\n};\nexport var tylIconRadioOff = {\n name: 'radio_off',\n data: \"\"\n};\nexport var tylIconRadioTower = {\n name: 'radio_tower',\n data: \"\"\n};\nexport var tylIconRadio = {\n name: 'radio',\n data: \"\"\n};\nexport var tylIconRadioactiveOff = {\n name: 'radioactive_off',\n data: \"\"\n};\nexport var tylIconRadioactive = {\n name: 'radioactive',\n data: \"\"\n};\nexport var tylIconRadioboxBlank = {\n name: 'radiobox_blank',\n data: \"\"\n};\nexport var tylIconRadioboxMarked = {\n name: 'radiobox_marked',\n data: \"\"\n};\nexport var tylIconRadiologyBoxOutline = {\n name: 'radiology_box_outline',\n data: \"\"\n};\nexport var tylIconRadiologyBox = {\n name: 'radiology_box',\n data: \"\"\n};\nexport var tylIconRadiusOutline = {\n name: 'radius_outline',\n data: \"\"\n};\nexport var tylIconRadius = {\n name: 'radius',\n data: \"\"\n};\nexport var tylIconRailroadLight = {\n name: 'railroad_light',\n data: \"\"\n};\nexport var tylIconRake = {\n name: 'rake',\n data: \"\"\n};\nexport var tylIconRaspberryPi = {\n name: 'raspberry_pi',\n data: \"\"\n};\nexport var tylIconRayEndArrow = {\n name: 'ray_end_arrow',\n data: \"\"\n};\nexport var tylIconRayEnd = {\n name: 'ray_end',\n data: \"\"\n};\nexport var tylIconRayStartArrow = {\n name: 'ray_start_arrow',\n data: \"\"\n};\nexport var tylIconRayStartEnd = {\n name: 'ray_start_end',\n data: \"\"\n};\nexport var tylIconRayStartVertexEnd = {\n name: 'ray_start_vertex_end',\n data: \"\"\n};\nexport var tylIconRayStart = {\n name: 'ray_start',\n data: \"\"\n};\nexport var tylIconRayVertex = {\n name: 'ray_vertex',\n data: \"\"\n};\nexport var tylIconReact = {\n name: 'react',\n data: \"\"\n};\nexport var tylIconRead = {\n name: 'read',\n data: \"\"\n};\nexport var tylIconReceipt = {\n name: 'receipt',\n data: \"\"\n};\nexport var tylIconRecordCircleOutline = {\n name: 'record_circle_outline',\n data: \"\"\n};\nexport var tylIconRecordCircle = {\n name: 'record_circle',\n data: \"\"\n};\nexport var tylIconRecordPlayer = {\n name: 'record_player',\n data: \"\"\n};\nexport var tylIconRecordRec = {\n name: 'record_rec',\n data: \"\"\n};\nexport var tylIconRecord = {\n name: 'record',\n data: \"\"\n};\nexport var tylIconRectangleOutline = {\n name: 'rectangle_outline',\n data: \"\"\n};\nexport var tylIconRectangle = {\n name: 'rectangle',\n data: \"\"\n};\nexport var tylIconRecycleVariant = {\n name: 'recycle_variant',\n data: \"\"\n};\nexport var tylIconRecycle = {\n name: 'recycle',\n data: \"\"\n};\nexport var tylIconReddit = {\n name: 'reddit',\n data: \"\"\n};\nexport var tylIconRedhat = {\n name: 'redhat',\n data: \"\"\n};\nexport var tylIconRedoVariant = {\n name: 'redo_variant',\n data: \"\"\n};\nexport var tylIconRedo = {\n name: 'redo',\n data: \"\"\n};\nexport var tylIconReflectHorizontal = {\n name: 'reflect_horizontal',\n data: \"\"\n};\nexport var tylIconReflectVertical = {\n name: 'reflect_vertical',\n data: \"\"\n};\nexport var tylIconRefreshCircle = {\n name: 'refresh_circle',\n data: \"\"\n};\nexport var tylIconRefresh = {\n name: 'refresh',\n data: \"\"\n};\nexport var tylIconRegex = {\n name: 'regex',\n data: \"\"\n};\nexport var tylIconRegisteredTrademark = {\n name: 'registered_trademark',\n data: \"\"\n};\nexport var tylIconReiterate = {\n name: 'reiterate',\n data: \"\"\n};\nexport var tylIconRelationManyToMany = {\n name: 'relation_many_to_many',\n data: \"\"\n};\nexport var tylIconRelationManyToOneOrMany = {\n name: 'relation_many_to_one_or_many',\n data: \"\"\n};\nexport var tylIconRelationManyToOne = {\n name: 'relation_many_to_one',\n data: \"\"\n};\nexport var tylIconRelationManyToOnlyOne = {\n name: 'relation_many_to_only_one',\n data: \"\"\n};\nexport var tylIconRelationManyToZeroOrMany = {\n name: 'relation_many_to_zero_or_many',\n data: \"\"\n};\nexport var tylIconRelationManyToZeroOrOne = {\n name: 'relation_many_to_zero_or_one',\n data: \"\"\n};\nexport var tylIconRelationOneOrManyToMany = {\n name: 'relation_one_or_many_to_many',\n data: \"\"\n};\nexport var tylIconRelationOneOrManyToOneOrMany = {\n name: 'relation_one_or_many_to_one_or_many',\n data: \"\"\n};\nexport var tylIconRelationOneOrManyToOne = {\n name: 'relation_one_or_many_to_one',\n data: \"\"\n};\nexport var tylIconRelationOneOrManyToOnlyOne = {\n name: 'relation_one_or_many_to_only_one',\n data: \"\"\n};\nexport var tylIconRelationOneOrManyToZeroOrMany = {\n name: 'relation_one_or_many_to_zero_or_many',\n data: \"\"\n};\nexport var tylIconRelationOneOrManyToZeroOrOne = {\n name: 'relation_one_or_many_to_zero_or_one',\n data: \"\"\n};\nexport var tylIconRelationOneToMany = {\n name: 'relation_one_to_many',\n data: \"\"\n};\nexport var tylIconRelationOneToOneOrMany = {\n name: 'relation_one_to_one_or_many',\n data: \"\"\n};\nexport var tylIconRelationOneToOne = {\n name: 'relation_one_to_one',\n data: \"\"\n};\nexport var tylIconRelationOneToOnlyOne = {\n name: 'relation_one_to_only_one',\n data: \"\"\n};\nexport var tylIconRelationOneToZeroOrMany = {\n name: 'relation_one_to_zero_or_many',\n data: \"\"\n};\nexport var tylIconRelationOneToZeroOrOne = {\n name: 'relation_one_to_zero_or_one',\n data: \"\"\n};\nexport var tylIconRelationOnlyOneToMany = {\n name: 'relation_only_one_to_many',\n data: \"\"\n};\nexport var tylIconRelationOnlyOneToOneOrMany = {\n name: 'relation_only_one_to_one_or_many',\n data: \"\"\n};\nexport var tylIconRelationOnlyOneToOne = {\n name: 'relation_only_one_to_one',\n data: \"\"\n};\nexport var tylIconRelationOnlyOneToOnlyOne = {\n name: 'relation_only_one_to_only_one',\n data: \"\"\n};\nexport var tylIconRelationOnlyOneToZeroOrMany = {\n name: 'relation_only_one_to_zero_or_many',\n data: \"\"\n};\nexport var tylIconRelationOnlyOneToZeroOrOne = {\n name: 'relation_only_one_to_zero_or_one',\n data: \"\"\n};\nexport var tylIconRelationZeroOrManyToMany = {\n name: 'relation_zero_or_many_to_many',\n data: \"\"\n};\nexport var tylIconRelationZeroOrManyToOneOrMany = {\n name: 'relation_zero_or_many_to_one_or_many',\n data: \"\"\n};\nexport var tylIconRelationZeroOrManyToOne = {\n name: 'relation_zero_or_many_to_one',\n data: \"\"\n};\nexport var tylIconRelationZeroOrManyToOnlyOne = {\n name: 'relation_zero_or_many_to_only_one',\n data: \"\"\n};\nexport var tylIconRelationZeroOrManyToZeroOrMany = {\n name: 'relation_zero_or_many_to_zero_or_many',\n data: \"\"\n};\nexport var tylIconRelationZeroOrManyToZeroOrOne = {\n name: 'relation_zero_or_many_to_zero_or_one',\n data: \"\"\n};\nexport var tylIconRelationZeroOrOneToMany = {\n name: 'relation_zero_or_one_to_many',\n data: \"\"\n};\nexport var tylIconRelationZeroOrOneToOneOrMany = {\n name: 'relation_zero_or_one_to_one_or_many',\n data: \"\"\n};\nexport var tylIconRelationZeroOrOneToOne = {\n name: 'relation_zero_or_one_to_one',\n data: \"\"\n};\nexport var tylIconRelationZeroOrOneToOnlyOne = {\n name: 'relation_zero_or_one_to_only_one',\n data: \"\"\n};\nexport var tylIconRelationZeroOrOneToZeroOrMany = {\n name: 'relation_zero_or_one_to_zero_or_many',\n data: \"\"\n};\nexport var tylIconRelationZeroOrOneToZeroOrOne = {\n name: 'relation_zero_or_one_to_zero_or_one',\n data: \"\"\n};\nexport var tylIconRelativeScale = {\n name: 'relative_scale',\n data: \"\"\n};\nexport var tylIconReloadAlert = {\n name: 'reload_alert',\n data: \"\"\n};\nexport var tylIconReload = {\n name: 'reload',\n data: \"\"\n};\nexport var tylIconReminder = {\n name: 'reminder',\n data: \"\"\n};\nexport var tylIconRemoteDesktop = {\n name: 'remote_desktop',\n data: \"\"\n};\nexport var tylIconRemoteOff = {\n name: 'remote_off',\n data: \"\"\n};\nexport var tylIconRemoteTvOff = {\n name: 'remote_tv_off',\n data: \"\"\n};\nexport var tylIconRemoteTv = {\n name: 'remote_tv',\n data: \"\"\n};\nexport var tylIconRemote = {\n name: 'remote',\n data: \"\"\n};\nexport var tylIconRenameBox = {\n name: 'rename_box',\n data: \"\"\n};\nexport var tylIconReorderHorizontal = {\n name: 'reorder_horizontal',\n data: \"\"\n};\nexport var tylIconReorderVertical = {\n name: 'reorder_vertical',\n data: \"\"\n};\nexport var tylIconRepeatOff = {\n name: 'repeat_off',\n data: \"\"\n};\nexport var tylIconRepeatOnce = {\n name: 'repeat_once',\n data: \"\"\n};\nexport var tylIconRepeat = {\n name: 'repeat',\n data: \"\"\n};\nexport var tylIconReplay = {\n name: 'replay',\n data: \"\"\n};\nexport var tylIconReplyAllOutline = {\n name: 'reply_all_outline',\n data: \"\"\n};\nexport var tylIconReplyAll = {\n name: 'reply_all',\n data: \"\"\n};\nexport var tylIconReplyCircle = {\n name: 'reply_circle',\n data: \"\"\n};\nexport var tylIconReplyOutline = {\n name: 'reply_outline',\n data: \"\"\n};\nexport var tylIconReply = {\n name: 'reply',\n data: \"\"\n};\nexport var tylIconReproduction = {\n name: 'reproduction',\n data: \"\"\n};\nexport var tylIconResistorNodes = {\n name: 'resistor_nodes',\n data: \"\"\n};\nexport var tylIconResistor = {\n name: 'resistor',\n data: \"\"\n};\nexport var tylIconResizeBottomRight = {\n name: 'resize_bottom_right',\n data: \"\"\n};\nexport var tylIconResize = {\n name: 'resize',\n data: \"\"\n};\nexport var tylIconResponsive = {\n name: 'responsive',\n data: \"\"\n};\nexport var tylIconRestartAlert = {\n name: 'restart_alert',\n data: \"\"\n};\nexport var tylIconRestartOff = {\n name: 'restart_off',\n data: \"\"\n};\nexport var tylIconRestart = {\n name: 'restart',\n data: \"\"\n};\nexport var tylIconRestoreAlert = {\n name: 'restore_alert',\n data: \"\"\n};\nexport var tylIconRestore = {\n name: 'restore',\n data: \"\"\n};\nexport var tylIconRewind10 = {\n name: 'rewind_10',\n data: \"\"\n};\nexport var tylIconRewind30 = {\n name: 'rewind_30',\n data: \"\"\n};\nexport var tylIconRewind5 = {\n name: 'rewind_5',\n data: \"\"\n};\nexport var tylIconRewind60 = {\n name: 'rewind_60',\n data: \"\"\n};\nexport var tylIconRewindOutline = {\n name: 'rewind_outline',\n data: \"\"\n};\nexport var tylIconRewind = {\n name: 'rewind',\n data: \"\"\n};\nexport var tylIconRhombusMediumOutline = {\n name: 'rhombus_medium_outline',\n data: \"\"\n};\nexport var tylIconRhombusMedium = {\n name: 'rhombus_medium',\n data: \"\"\n};\nexport var tylIconRhombusOutline = {\n name: 'rhombus_outline',\n data: \"\"\n};\nexport var tylIconRhombusSplitOutline = {\n name: 'rhombus_split_outline',\n data: \"\"\n};\nexport var tylIconRhombusSplit = {\n name: 'rhombus_split',\n data: \"\"\n};\nexport var tylIconRhombus = {\n name: 'rhombus',\n data: \"\"\n};\nexport var tylIconRibbon = {\n name: 'ribbon',\n data: \"\"\n};\nexport var tylIconRice = {\n name: 'rice',\n data: \"\"\n};\nexport var tylIconRickshawElectric = {\n name: 'rickshaw_electric',\n data: \"\"\n};\nexport var tylIconRickshaw = {\n name: 'rickshaw',\n data: \"\"\n};\nexport var tylIconRing = {\n name: 'ring',\n data: \"\"\n};\nexport var tylIconRivet = {\n name: 'rivet',\n data: \"\"\n};\nexport var tylIconRoadVariant = {\n name: 'road_variant',\n data: \"\"\n};\nexport var tylIconRoad = {\n name: 'road',\n data: \"\"\n};\nexport var tylIconRobber = {\n name: 'robber',\n data: \"\"\n};\nexport var tylIconRobotAngryOutline = {\n name: 'robot_angry_outline',\n data: \"\"\n};\nexport var tylIconRobotAngry = {\n name: 'robot_angry',\n data: \"\"\n};\nexport var tylIconRobotConfusedOutline = {\n name: 'robot_confused_outline',\n data: \"\"\n};\nexport var tylIconRobotConfused = {\n name: 'robot_confused',\n data: \"\"\n};\nexport var tylIconRobotDeadOutline = {\n name: 'robot_dead_outline',\n data: \"\"\n};\nexport var tylIconRobotDead = {\n name: 'robot_dead',\n data: \"\"\n};\nexport var tylIconRobotExcitedOutline = {\n name: 'robot_excited_outline',\n data: \"\"\n};\nexport var tylIconRobotExcited = {\n name: 'robot_excited',\n data: \"\"\n};\nexport var tylIconRobotHappyOutline = {\n name: 'robot_happy_outline',\n data: \"\"\n};\nexport var tylIconRobotHappy = {\n name: 'robot_happy',\n data: \"\"\n};\nexport var tylIconRobotIndustrial = {\n name: 'robot_industrial',\n data: \"\"\n};\nexport var tylIconRobotLoveOutline = {\n name: 'robot_love_outline',\n data: \"\"\n};\nexport var tylIconRobotLove = {\n name: 'robot_love',\n data: \"\"\n};\nexport var tylIconRobotMowerOutline = {\n name: 'robot_mower_outline',\n data: \"\"\n};\nexport var tylIconRobotMower = {\n name: 'robot_mower',\n data: \"\"\n};\nexport var tylIconRobotOffOutline = {\n name: 'robot_off_outline',\n data: \"\"\n};\nexport var tylIconRobotOff = {\n name: 'robot_off',\n data: \"\"\n};\nexport var tylIconRobotOutline = {\n name: 'robot_outline',\n data: \"\"\n};\nexport var tylIconRobotVacuumVariant = {\n name: 'robot_vacuum_variant',\n data: \"\"\n};\nexport var tylIconRobotVacuum = {\n name: 'robot_vacuum',\n data: \"\"\n};\nexport var tylIconRobot = {\n name: 'robot',\n data: \"\"\n};\nexport var tylIconRocketLaunchOutline = {\n name: 'rocket_launch_outline',\n data: \"\"\n};\nexport var tylIconRocketLaunch = {\n name: 'rocket_launch',\n data: \"\"\n};\nexport var tylIconRocketOutline = {\n name: 'rocket_outline',\n data: \"\"\n};\nexport var tylIconRocket = {\n name: 'rocket',\n data: \"\"\n};\nexport var tylIconRodent = {\n name: 'rodent',\n data: \"\"\n};\nexport var tylIconRollerSkateOff = {\n name: 'roller_skate_off',\n data: \"\"\n};\nexport var tylIconRollerSkate = {\n name: 'roller_skate',\n data: \"\"\n};\nexport var tylIconRollerbladeOff = {\n name: 'rollerblade_off',\n data: \"\"\n};\nexport var tylIconRollerblade = {\n name: 'rollerblade',\n data: \"\"\n};\nexport var tylIconRollupjs = {\n name: 'rollupjs',\n data: \"\"\n};\nexport var tylIconRomanNumeral1 = {\n name: 'roman_numeral_1',\n data: \"\"\n};\nexport var tylIconRomanNumeral10 = {\n name: 'roman_numeral_10',\n data: \"\"\n};\nexport var tylIconRomanNumeral2 = {\n name: 'roman_numeral_2',\n data: \"\"\n};\nexport var tylIconRomanNumeral3 = {\n name: 'roman_numeral_3',\n data: \"\"\n};\nexport var tylIconRomanNumeral4 = {\n name: 'roman_numeral_4',\n data: \"\"\n};\nexport var tylIconRomanNumeral5 = {\n name: 'roman_numeral_5',\n data: \"\"\n};\nexport var tylIconRomanNumeral6 = {\n name: 'roman_numeral_6',\n data: \"\"\n};\nexport var tylIconRomanNumeral7 = {\n name: 'roman_numeral_7',\n data: \"\"\n};\nexport var tylIconRomanNumeral8 = {\n name: 'roman_numeral_8',\n data: \"\"\n};\nexport var tylIconRomanNumeral9 = {\n name: 'roman_numeral_9',\n data: \"\"\n};\nexport var tylIconRoomServiceOutline = {\n name: 'room_service_outline',\n data: \"\"\n};\nexport var tylIconRoomService = {\n name: 'room_service',\n data: \"\"\n};\nexport var tylIconRotate3DVariant = {\n name: 'rotate_3_d_variant',\n data: \"\"\n};\nexport var tylIconRotate3D = {\n name: 'rotate_3_d',\n data: \"\"\n};\nexport var tylIconRotateLeftVariant = {\n name: 'rotate_left_variant',\n data: \"\"\n};\nexport var tylIconRotateLeft = {\n name: 'rotate_left',\n data: \"\"\n};\nexport var tylIconRotateOrbit = {\n name: 'rotate_orbit',\n data: \"\"\n};\nexport var tylIconRotateRightVariant = {\n name: 'rotate_right_variant',\n data: \"\"\n};\nexport var tylIconRotateRight = {\n name: 'rotate_right',\n data: \"\"\n};\nexport var tylIconRoundedCorner = {\n name: 'rounded_corner',\n data: \"\"\n};\nexport var tylIconRouterNetwork = {\n name: 'router_network',\n data: \"\"\n};\nexport var tylIconRouterWirelessOff = {\n name: 'router_wireless_off',\n data: \"\"\n};\nexport var tylIconRouterWirelessSettings = {\n name: 'router_wireless_settings',\n data: \"\"\n};\nexport var tylIconRouterWireless = {\n name: 'router_wireless',\n data: \"\"\n};\nexport var tylIconRouter = {\n name: 'router',\n data: \"\"\n};\nexport var tylIconRoutesClock = {\n name: 'routes_clock',\n data: \"\"\n};\nexport var tylIconRoutes = {\n name: 'routes',\n data: \"\"\n};\nexport var tylIconRowing = {\n name: 'rowing',\n data: \"\"\n};\nexport var tylIconRssBox = {\n name: 'rss_box',\n data: \"\"\n};\nexport var tylIconRssOff = {\n name: 'rss_off',\n data: \"\"\n};\nexport var tylIconRss = {\n name: 'rss',\n data: \"\"\n};\nexport var tylIconRug = {\n name: 'rug',\n data: \"\"\n};\nexport var tylIconRugby = {\n name: 'rugby',\n data: \"\"\n};\nexport var tylIconRulerSquareCompass = {\n name: 'ruler_square_compass',\n data: \"\"\n};\nexport var tylIconRulerSquare = {\n name: 'ruler_square',\n data: \"\"\n};\nexport var tylIconRuler = {\n name: 'ruler',\n data: \"\"\n};\nexport var tylIconRunFast = {\n name: 'run_fast',\n data: \"\"\n};\nexport var tylIconRun = {\n name: 'run',\n data: \"\"\n};\nexport var tylIconRvTruck = {\n name: 'rv_truck',\n data: \"\"\n};\nexport var tylIconSackPercent = {\n name: 'sack_percent',\n data: \"\"\n};\nexport var tylIconSack = {\n name: 'sack',\n data: \"\"\n};\nexport var tylIconSafeSquareOutline = {\n name: 'safe_square_outline',\n data: \"\"\n};\nexport var tylIconSafeSquare = {\n name: 'safe_square',\n data: \"\"\n};\nexport var tylIconSafe = {\n name: 'safe',\n data: \"\"\n};\nexport var tylIconSafetyGoggles = {\n name: 'safety_goggles',\n data: \"\"\n};\nexport var tylIconSailBoat = {\n name: 'sail_boat',\n data: \"\"\n};\nexport var tylIconSale = {\n name: 'sale',\n data: \"\"\n};\nexport var tylIconSalesforce = {\n name: 'salesforce',\n data: \"\"\n};\nexport var tylIconSass = {\n name: 'sass',\n data: \"\"\n};\nexport var tylIconSatelliteUplink = {\n name: 'satellite_uplink',\n data: \"\"\n};\nexport var tylIconSatelliteVariant = {\n name: 'satellite_variant',\n data: \"\"\n};\nexport var tylIconSatellite = {\n name: 'satellite',\n data: \"\"\n};\nexport var tylIconSausage = {\n name: 'sausage',\n data: \"\"\n};\nexport var tylIconSawBlade = {\n name: 'saw_blade',\n data: \"\"\n};\nexport var tylIconSawtoothWave = {\n name: 'sawtooth_wave',\n data: \"\"\n};\nexport var tylIconSaxophone = {\n name: 'saxophone',\n data: \"\"\n};\nexport var tylIconScaleBalance = {\n name: 'scale_balance',\n data: \"\"\n};\nexport var tylIconScaleBathroom = {\n name: 'scale_bathroom',\n data: \"\"\n};\nexport var tylIconScaleOff = {\n name: 'scale_off',\n data: \"\"\n};\nexport var tylIconScale = {\n name: 'scale',\n data: \"\"\n};\nexport var tylIconScanHelper = {\n name: 'scan_helper',\n data: \"\"\n};\nexport var tylIconScannerOff = {\n name: 'scanner_off',\n data: \"\"\n};\nexport var tylIconScanner = {\n name: 'scanner',\n data: \"\"\n};\nexport var tylIconScatterPlotOutline = {\n name: 'scatter_plot_outline',\n data: \"\"\n};\nexport var tylIconScatterPlot = {\n name: 'scatter_plot',\n data: \"\"\n};\nexport var tylIconSchoolOutline = {\n name: 'school_outline',\n data: \"\"\n};\nexport var tylIconSchool = {\n name: 'school',\n data: \"\"\n};\nexport var tylIconScissorsCutting = {\n name: 'scissors_cutting',\n data: \"\"\n};\nexport var tylIconScooterElectric = {\n name: 'scooter_electric',\n data: \"\"\n};\nexport var tylIconScooter = {\n name: 'scooter',\n data: \"\"\n};\nexport var tylIconScoreboardOutline = {\n name: 'scoreboard_outline',\n data: \"\"\n};\nexport var tylIconScoreboard = {\n name: 'scoreboard',\n data: \"\"\n};\nexport var tylIconScreenRotationLock = {\n name: 'screen_rotation_lock',\n data: \"\"\n};\nexport var tylIconScreenRotation = {\n name: 'screen_rotation',\n data: \"\"\n};\nexport var tylIconScrewFlatTop = {\n name: 'screw_flat_top',\n data: \"\"\n};\nexport var tylIconScrewLag = {\n name: 'screw_lag',\n data: \"\"\n};\nexport var tylIconScrewMachineFlatTop = {\n name: 'screw_machine_flat_top',\n data: \"\"\n};\nexport var tylIconScrewMachineRoundTop = {\n name: 'screw_machine_round_top',\n data: \"\"\n};\nexport var tylIconScrewRoundTop = {\n name: 'screw_round_top',\n data: \"\"\n};\nexport var tylIconScrewdriver = {\n name: 'screwdriver',\n data: \"\"\n};\nexport var tylIconScriptOutline = {\n name: 'script_outline',\n data: \"\"\n};\nexport var tylIconScriptTextOutline = {\n name: 'script_text_outline',\n data: \"\"\n};\nexport var tylIconScriptText = {\n name: 'script_text',\n data: \"\"\n};\nexport var tylIconScript = {\n name: 'script',\n data: \"\"\n};\nexport var tylIconSd = {\n name: 'sd',\n data: \"\"\n};\nexport var tylIconSealVariant = {\n name: 'seal_variant',\n data: \"\"\n};\nexport var tylIconSeal = {\n name: 'seal',\n data: \"\"\n};\nexport var tylIconSearchWeb = {\n name: 'search_web',\n data: \"\"\n};\nexport var tylIconSeatFlatAngled = {\n name: 'seat_flat_angled',\n data: \"\"\n};\nexport var tylIconSeatFlat = {\n name: 'seat_flat',\n data: \"\"\n};\nexport var tylIconSeatIndividualSuite = {\n name: 'seat_individual_suite',\n data: \"\"\n};\nexport var tylIconSeatLegroomExtra = {\n name: 'seat_legroom_extra',\n data: \"\"\n};\nexport var tylIconSeatLegroomNormal = {\n name: 'seat_legroom_normal',\n data: \"\"\n};\nexport var tylIconSeatLegroomReduced = {\n name: 'seat_legroom_reduced',\n data: \"\"\n};\nexport var tylIconSeatOutline = {\n name: 'seat_outline',\n data: \"\"\n};\nexport var tylIconSeatPassenger = {\n name: 'seat_passenger',\n data: \"\"\n};\nexport var tylIconSeatReclineExtra = {\n name: 'seat_recline_extra',\n data: \"\"\n};\nexport var tylIconSeatReclineNormal = {\n name: 'seat_recline_normal',\n data: \"\"\n};\nexport var tylIconSeat = {\n name: 'seat',\n data: \"\"\n};\nexport var tylIconSeatbelt = {\n name: 'seatbelt',\n data: \"\"\n};\nexport var tylIconSecurityNetwork = {\n name: 'security_network',\n data: \"\"\n};\nexport var tylIconSecurity = {\n name: 'security',\n data: \"\"\n};\nexport var tylIconSeedOffOutline = {\n name: 'seed_off_outline',\n data: \"\"\n};\nexport var tylIconSeedOff = {\n name: 'seed_off',\n data: \"\"\n};\nexport var tylIconSeedOutline = {\n name: 'seed_outline',\n data: \"\"\n};\nexport var tylIconSeed = {\n name: 'seed',\n data: \"\"\n};\nexport var tylIconSeesaw = {\n name: 'seesaw',\n data: \"\"\n};\nexport var tylIconSegment = {\n name: 'segment',\n data: \"\"\n};\nexport var tylIconSelectAll = {\n name: 'select_all',\n data: \"\"\n};\nexport var tylIconSelectColor = {\n name: 'select_color',\n data: \"\"\n};\nexport var tylIconSelectCompare = {\n name: 'select_compare',\n data: \"\"\n};\nexport var tylIconSelectDrag = {\n name: 'select_drag',\n data: \"\"\n};\nexport var tylIconSelectGroup = {\n name: 'select_group',\n data: \"\"\n};\nexport var tylIconSelectInverse = {\n name: 'select_inverse',\n data: \"\"\n};\nexport var tylIconSelectMarker = {\n name: 'select_marker',\n data: \"\"\n};\nexport var tylIconSelectMultipleMarker = {\n name: 'select_multiple_marker',\n data: \"\"\n};\nexport var tylIconSelectMultiple = {\n name: 'select_multiple',\n data: \"\"\n};\nexport var tylIconSelectOff = {\n name: 'select_off',\n data: \"\"\n};\nexport var tylIconSelectPlace = {\n name: 'select_place',\n data: \"\"\n};\nexport var tylIconSelectSearch = {\n name: 'select_search',\n data: \"\"\n};\nexport var tylIconSelect = {\n name: 'select',\n data: \"\"\n};\nexport var tylIconSelectionDrag = {\n name: 'selection_drag',\n data: \"\"\n};\nexport var tylIconSelectionEllipseArrowInside = {\n name: 'selection_ellipse_arrow_inside',\n data: \"\"\n};\nexport var tylIconSelectionEllipse = {\n name: 'selection_ellipse',\n data: \"\"\n};\nexport var tylIconSelectionMarker = {\n name: 'selection_marker',\n data: \"\"\n};\nexport var tylIconSelectionMultipleMarker = {\n name: 'selection_multiple_marker',\n data: \"\"\n};\nexport var tylIconSelectionMultiple = {\n name: 'selection_multiple',\n data: \"\"\n};\nexport var tylIconSelectionOff = {\n name: 'selection_off',\n data: \"\"\n};\nexport var tylIconSelectionSearch = {\n name: 'selection_search',\n data: \"\"\n};\nexport var tylIconSelection = {\n name: 'selection',\n data: \"\"\n};\nexport var tylIconSemanticWeb = {\n name: 'semantic_web',\n data: \"\"\n};\nexport var tylIconSendCheckOutline = {\n name: 'send_check_outline',\n data: \"\"\n};\nexport var tylIconSendCheck = {\n name: 'send_check',\n data: \"\"\n};\nexport var tylIconSendCircleOutline = {\n name: 'send_circle_outline',\n data: \"\"\n};\nexport var tylIconSendCircle = {\n name: 'send_circle',\n data: \"\"\n};\nexport var tylIconSendClockOutline = {\n name: 'send_clock_outline',\n data: \"\"\n};\nexport var tylIconSendClock = {\n name: 'send_clock',\n data: \"\"\n};\nexport var tylIconSendLockOutline = {\n name: 'send_lock_outline',\n data: \"\"\n};\nexport var tylIconSendLock = {\n name: 'send_lock',\n data: \"\"\n};\nexport var tylIconSendOutline = {\n name: 'send_outline',\n data: \"\"\n};\nexport var tylIconSend = {\n name: 'send',\n data: \"\"\n};\nexport var tylIconSerialPort = {\n name: 'serial_port',\n data: \"\"\n};\nexport var tylIconServerMinus = {\n name: 'server_minus',\n data: \"\"\n};\nexport var tylIconServerNetworkOff = {\n name: 'server_network_off',\n data: \"\"\n};\nexport var tylIconServerNetwork = {\n name: 'server_network',\n data: \"\"\n};\nexport var tylIconServerOff = {\n name: 'server_off',\n data: \"\"\n};\nexport var tylIconServerPlus = {\n name: 'server_plus',\n data: \"\"\n};\nexport var tylIconServerRemove = {\n name: 'server_remove',\n data: \"\"\n};\nexport var tylIconServerSecurity = {\n name: 'server_security',\n data: \"\"\n};\nexport var tylIconServer = {\n name: 'server',\n data: \"\"\n};\nexport var tylIconSetAll = {\n name: 'set_all',\n data: \"\"\n};\nexport var tylIconSetCenterRight = {\n name: 'set_center_right',\n data: \"\"\n};\nexport var tylIconSetCenter = {\n name: 'set_center',\n data: \"\"\n};\nexport var tylIconSetLeftCenter = {\n name: 'set_left_center',\n data: \"\"\n};\nexport var tylIconSetLeftRight = {\n name: 'set_left_right',\n data: \"\"\n};\nexport var tylIconSetLeft = {\n name: 'set_left',\n data: \"\"\n};\nexport var tylIconSetMerge = {\n name: 'set_merge',\n data: \"\"\n};\nexport var tylIconSetNone = {\n name: 'set_none',\n data: \"\"\n};\nexport var tylIconSetRight = {\n name: 'set_right',\n data: \"\"\n};\nexport var tylIconSetSplit = {\n name: 'set_split',\n data: \"\"\n};\nexport var tylIconSetSquare = {\n name: 'set_square',\n data: \"\"\n};\nexport var tylIconSetTopBox = {\n name: 'set_top_box',\n data: \"\"\n};\nexport var tylIconSettingsHelper = {\n name: 'settings_helper',\n data: \"\"\n};\nexport var tylIconShakerOutline = {\n name: 'shaker_outline',\n data: \"\"\n};\nexport var tylIconShaker = {\n name: 'shaker',\n data: \"\"\n};\nexport var tylIconShapeCirclePlus = {\n name: 'shape_circle_plus',\n data: \"\"\n};\nexport var tylIconShapeOutline = {\n name: 'shape_outline',\n data: \"\"\n};\nexport var tylIconShapeOvalPlus = {\n name: 'shape_oval_plus',\n data: \"\"\n};\nexport var tylIconShapePlus = {\n name: 'shape_plus',\n data: \"\"\n};\nexport var tylIconShapePolygonPlus = {\n name: 'shape_polygon_plus',\n data: \"\"\n};\nexport var tylIconShapeRectanglePlus = {\n name: 'shape_rectangle_plus',\n data: \"\"\n};\nexport var tylIconShapeSquarePlus = {\n name: 'shape_square_plus',\n data: \"\"\n};\nexport var tylIconShapeSquareRoundedPlus = {\n name: 'shape_square_rounded_plus',\n data: \"\"\n};\nexport var tylIconShape = {\n name: 'shape',\n data: \"\"\n};\nexport var tylIconShareAllOutline = {\n name: 'share_all_outline',\n data: \"\"\n};\nexport var tylIconShareAll = {\n name: 'share_all',\n data: \"\"\n};\nexport var tylIconShareCircle = {\n name: 'share_circle',\n data: \"\"\n};\nexport var tylIconShareOffOutline = {\n name: 'share_off_outline',\n data: \"\"\n};\nexport var tylIconShareOff = {\n name: 'share_off',\n data: \"\"\n};\nexport var tylIconShareOutline = {\n name: 'share_outline',\n data: \"\"\n};\nexport var tylIconShareVariantOutline = {\n name: 'share_variant_outline',\n data: \"\"\n};\nexport var tylIconShareVariant = {\n name: 'share_variant',\n data: \"\"\n};\nexport var tylIconShare = {\n name: 'share',\n data: \"\"\n};\nexport var tylIconSharkFinOutline = {\n name: 'shark_fin_outline',\n data: \"\"\n};\nexport var tylIconSharkFin = {\n name: 'shark_fin',\n data: \"\"\n};\nexport var tylIconSheep = {\n name: 'sheep',\n data: \"\"\n};\nexport var tylIconShieldAccountOutline = {\n name: 'shield_account_outline',\n data: \"\"\n};\nexport var tylIconShieldAccountVariantOutline = {\n name: 'shield_account_variant_outline',\n data: \"\"\n};\nexport var tylIconShieldAccountVariant = {\n name: 'shield_account_variant',\n data: \"\"\n};\nexport var tylIconShieldAccount = {\n name: 'shield_account',\n data: \"\"\n};\nexport var tylIconShieldAirplaneOutline = {\n name: 'shield_airplane_outline',\n data: \"\"\n};\nexport var tylIconShieldAirplane = {\n name: 'shield_airplane',\n data: \"\"\n};\nexport var tylIconShieldAlertOutline = {\n name: 'shield_alert_outline',\n data: \"\"\n};\nexport var tylIconShieldAlert = {\n name: 'shield_alert',\n data: \"\"\n};\nexport var tylIconShieldBugOutline = {\n name: 'shield_bug_outline',\n data: \"\"\n};\nexport var tylIconShieldBug = {\n name: 'shield_bug',\n data: \"\"\n};\nexport var tylIconShieldCar = {\n name: 'shield_car',\n data: \"\"\n};\nexport var tylIconShieldCheckOutline = {\n name: 'shield_check_outline',\n data: \"\"\n};\nexport var tylIconShieldCheck = {\n name: 'shield_check',\n data: \"\"\n};\nexport var tylIconShieldCrossOutline = {\n name: 'shield_cross_outline',\n data: \"\"\n};\nexport var tylIconShieldCross = {\n name: 'shield_cross',\n data: \"\"\n};\nexport var tylIconShieldEditOutline = {\n name: 'shield_edit_outline',\n data: \"\"\n};\nexport var tylIconShieldEdit = {\n name: 'shield_edit',\n data: \"\"\n};\nexport var tylIconShieldHalfFull = {\n name: 'shield_half_full',\n data: \"\"\n};\nexport var tylIconShieldHalf = {\n name: 'shield_half',\n data: \"\"\n};\nexport var tylIconShieldHomeOutline = {\n name: 'shield_home_outline',\n data: \"\"\n};\nexport var tylIconShieldHome = {\n name: 'shield_home',\n data: \"\"\n};\nexport var tylIconShieldKeyOutline = {\n name: 'shield_key_outline',\n data: \"\"\n};\nexport var tylIconShieldKey = {\n name: 'shield_key',\n data: \"\"\n};\nexport var tylIconShieldLinkVariantOutline = {\n name: 'shield_link_variant_outline',\n data: \"\"\n};\nexport var tylIconShieldLinkVariant = {\n name: 'shield_link_variant',\n data: \"\"\n};\nexport var tylIconShieldLockOutline = {\n name: 'shield_lock_outline',\n data: \"\"\n};\nexport var tylIconShieldLock = {\n name: 'shield_lock',\n data: \"\"\n};\nexport var tylIconShieldOffOutline = {\n name: 'shield_off_outline',\n data: \"\"\n};\nexport var tylIconShieldOff = {\n name: 'shield_off',\n data: \"\"\n};\nexport var tylIconShieldOutline = {\n name: 'shield_outline',\n data: \"\"\n};\nexport var tylIconShieldPlusOutline = {\n name: 'shield_plus_outline',\n data: \"\"\n};\nexport var tylIconShieldPlus = {\n name: 'shield_plus',\n data: \"\"\n};\nexport var tylIconShieldRefreshOutline = {\n name: 'shield_refresh_outline',\n data: \"\"\n};\nexport var tylIconShieldRefresh = {\n name: 'shield_refresh',\n data: \"\"\n};\nexport var tylIconShieldRemoveOutline = {\n name: 'shield_remove_outline',\n data: \"\"\n};\nexport var tylIconShieldRemove = {\n name: 'shield_remove',\n data: \"\"\n};\nexport var tylIconShieldSearch = {\n name: 'shield_search',\n data: \"\"\n};\nexport var tylIconShieldStarOutline = {\n name: 'shield_star_outline',\n data: \"\"\n};\nexport var tylIconShieldStar = {\n name: 'shield_star',\n data: \"\"\n};\nexport var tylIconShieldSunOutline = {\n name: 'shield_sun_outline',\n data: \"\"\n};\nexport var tylIconShieldSun = {\n name: 'shield_sun',\n data: \"\"\n};\nexport var tylIconShieldSyncOutline = {\n name: 'shield_sync_outline',\n data: \"\"\n};\nexport var tylIconShieldSync = {\n name: 'shield_sync',\n data: \"\"\n};\nexport var tylIconShield = {\n name: 'shield',\n data: \"\"\n};\nexport var tylIconShipWheel = {\n name: 'ship_wheel',\n data: \"\"\n};\nexport var tylIconShoeBallet = {\n name: 'shoe_ballet',\n data: \"\"\n};\nexport var tylIconShoeCleat = {\n name: 'shoe_cleat',\n data: \"\"\n};\nexport var tylIconShoeFormal = {\n name: 'shoe_formal',\n data: \"\"\n};\nexport var tylIconShoeHeel = {\n name: 'shoe_heel',\n data: \"\"\n};\nexport var tylIconShoePrint = {\n name: 'shoe_print',\n data: \"\"\n};\nexport var tylIconShoeSneaker = {\n name: 'shoe_sneaker',\n data: \"\"\n};\nexport var tylIconShoppingMusic = {\n name: 'shopping_music',\n data: \"\"\n};\nexport var tylIconShoppingOutline = {\n name: 'shopping_outline',\n data: \"\"\n};\nexport var tylIconShoppingSearch = {\n name: 'shopping_search',\n data: \"\"\n};\nexport var tylIconShopping = {\n name: 'shopping',\n data: \"\"\n};\nexport var tylIconShore = {\n name: 'shore',\n data: \"\"\n};\nexport var tylIconShovelOff = {\n name: 'shovel_off',\n data: \"\"\n};\nexport var tylIconShovel = {\n name: 'shovel',\n data: \"\"\n};\nexport var tylIconShowerHead = {\n name: 'shower_head',\n data: \"\"\n};\nexport var tylIconShower = {\n name: 'shower',\n data: \"\"\n};\nexport var tylIconShredder = {\n name: 'shredder',\n data: \"\"\n};\nexport var tylIconShuffleDisabled = {\n name: 'shuffle_disabled',\n data: \"\"\n};\nexport var tylIconShuffleVariant = {\n name: 'shuffle_variant',\n data: \"\"\n};\nexport var tylIconShuffle = {\n name: 'shuffle',\n data: \"\"\n};\nexport var tylIconShuriken = {\n name: 'shuriken',\n data: \"\"\n};\nexport var tylIconSigmaLower = {\n name: 'sigma_lower',\n data: \"\"\n};\nexport var tylIconSigma = {\n name: 'sigma',\n data: \"\"\n};\nexport var tylIconSignCaution = {\n name: 'sign_caution',\n data: \"\"\n};\nexport var tylIconSignDirectionMinus = {\n name: 'sign_direction_minus',\n data: \"\"\n};\nexport var tylIconSignDirectionPlus = {\n name: 'sign_direction_plus',\n data: \"\"\n};\nexport var tylIconSignDirectionRemove = {\n name: 'sign_direction_remove',\n data: \"\"\n};\nexport var tylIconSignDirection = {\n name: 'sign_direction',\n data: \"\"\n};\nexport var tylIconSignPole = {\n name: 'sign_pole',\n data: \"\"\n};\nexport var tylIconSignRealEstate = {\n name: 'sign_real_estate',\n data: \"\"\n};\nexport var tylIconSignText = {\n name: 'sign_text',\n data: \"\"\n};\nexport var tylIconSignal2G = {\n name: 'signal_2_g',\n data: \"\"\n};\nexport var tylIconSignal3G = {\n name: 'signal_3_g',\n data: \"\"\n};\nexport var tylIconSignal4G = {\n name: 'signal_4_g',\n data: \"\"\n};\nexport var tylIconSignal5G = {\n name: 'signal_5_g',\n data: \"\"\n};\nexport var tylIconSignalCellular1 = {\n name: 'signal_cellular_1',\n data: \"\"\n};\nexport var tylIconSignalCellular2 = {\n name: 'signal_cellular_2',\n data: \"\"\n};\nexport var tylIconSignalCellular3 = {\n name: 'signal_cellular_3',\n data: \"\"\n};\nexport var tylIconSignalCellularOutline = {\n name: 'signal_cellular_outline',\n data: \"\"\n};\nexport var tylIconSignalDistanceVariant = {\n name: 'signal_distance_variant',\n data: \"\"\n};\nexport var tylIconSignalHspaPlus = {\n name: 'signal_hspa_plus',\n data: \"\"\n};\nexport var tylIconSignalHspa = {\n name: 'signal_hspa',\n data: \"\"\n};\nexport var tylIconSignalOff = {\n name: 'signal_off',\n data: \"\"\n};\nexport var tylIconSignalVariant = {\n name: 'signal_variant',\n data: \"\"\n};\nexport var tylIconSignal = {\n name: 'signal',\n data: \"\"\n};\nexport var tylIconSignatureFreehand = {\n name: 'signature_freehand',\n data: \"\"\n};\nexport var tylIconSignatureImage = {\n name: 'signature_image',\n data: \"\"\n};\nexport var tylIconSignatureText = {\n name: 'signature_text',\n data: \"\"\n};\nexport var tylIconSignature = {\n name: 'signature',\n data: \"\"\n};\nexport var tylIconSilo = {\n name: 'silo',\n data: \"\"\n};\nexport var tylIconSilverwareClean = {\n name: 'silverware_clean',\n data: \"\"\n};\nexport var tylIconSilverwareForkKnife = {\n name: 'silverware_fork_knife',\n data: \"\"\n};\nexport var tylIconSilverwareFork = {\n name: 'silverware_fork',\n data: \"\"\n};\nexport var tylIconSilverwareSpoon = {\n name: 'silverware_spoon',\n data: \"\"\n};\nexport var tylIconSilverwareVariant = {\n name: 'silverware_variant',\n data: \"\"\n};\nexport var tylIconSilverware = {\n name: 'silverware',\n data: \"\"\n};\nexport var tylIconSimAlertOutline = {\n name: 'sim_alert_outline',\n data: \"\"\n};\nexport var tylIconSimAlert = {\n name: 'sim_alert',\n data: \"\"\n};\nexport var tylIconSimOffOutline = {\n name: 'sim_off_outline',\n data: \"\"\n};\nexport var tylIconSimOff = {\n name: 'sim_off',\n data: \"\"\n};\nexport var tylIconSimOutline = {\n name: 'sim_outline',\n data: \"\"\n};\nexport var tylIconSim = {\n name: 'sim',\n data: \"\"\n};\nexport var tylIconSimpleIcons = {\n name: 'simple_icons',\n data: \"\"\n};\nexport var tylIconSinaWeibo = {\n name: 'sina_weibo',\n data: \"\"\n};\nexport var tylIconSineWave = {\n name: 'sine_wave',\n data: \"\"\n};\nexport var tylIconSitemap = {\n name: 'sitemap',\n data: \"\"\n};\nexport var tylIconSizeL = {\n name: 'size_l',\n data: \"\"\n};\nexport var tylIconSizeM = {\n name: 'size_m',\n data: \"\"\n};\nexport var tylIconSizeS = {\n name: 'size_s',\n data: \"\"\n};\nexport var tylIconSizeXl = {\n name: 'size_xl',\n data: \"\"\n};\nexport var tylIconSizeXs = {\n name: 'size_xs',\n data: \"\"\n};\nexport var tylIconSizeXxl = {\n name: 'size_xxl',\n data: \"\"\n};\nexport var tylIconSizeXxs = {\n name: 'size_xxs',\n data: \"\"\n};\nexport var tylIconSizeXxxl = {\n name: 'size_xxxl',\n data: \"\"\n};\nexport var tylIconSkate = {\n name: 'skate',\n data: \"\"\n};\nexport var tylIconSkateboard = {\n name: 'skateboard',\n data: \"\"\n};\nexport var tylIconSkewLess = {\n name: 'skew_less',\n data: \"\"\n};\nexport var tylIconSkewMore = {\n name: 'skew_more',\n data: \"\"\n};\nexport var tylIconSkiCrossCountry = {\n name: 'ski_cross_country',\n data: \"\"\n};\nexport var tylIconSkiWater = {\n name: 'ski_water',\n data: \"\"\n};\nexport var tylIconSki = {\n name: 'ski',\n data: \"\"\n};\nexport var tylIconSkipBackwardOutline = {\n name: 'skip_backward_outline',\n data: \"\"\n};\nexport var tylIconSkipBackward = {\n name: 'skip_backward',\n data: \"\"\n};\nexport var tylIconSkipForwardOutline = {\n name: 'skip_forward_outline',\n data: \"\"\n};\nexport var tylIconSkipForward = {\n name: 'skip_forward',\n data: \"\"\n};\nexport var tylIconSkipNextCircleOutline = {\n name: 'skip_next_circle_outline',\n data: \"\"\n};\nexport var tylIconSkipNextCircle = {\n name: 'skip_next_circle',\n data: \"\"\n};\nexport var tylIconSkipNextOutline = {\n name: 'skip_next_outline',\n data: \"\"\n};\nexport var tylIconSkipNext = {\n name: 'skip_next',\n data: \"\"\n};\nexport var tylIconSkipPreviousCircleOutline = {\n name: 'skip_previous_circle_outline',\n data: \"\"\n};\nexport var tylIconSkipPreviousCircle = {\n name: 'skip_previous_circle',\n data: \"\"\n};\nexport var tylIconSkipPreviousOutline = {\n name: 'skip_previous_outline',\n data: \"\"\n};\nexport var tylIconSkipPrevious = {\n name: 'skip_previous',\n data: \"\"\n};\nexport var tylIconSkullCrossbonesOutline = {\n name: 'skull_crossbones_outline',\n data: \"\"\n};\nexport var tylIconSkullCrossbones = {\n name: 'skull_crossbones',\n data: \"\"\n};\nexport var tylIconSkullOutline = {\n name: 'skull_outline',\n data: \"\"\n};\nexport var tylIconSkullScanOutline = {\n name: 'skull_scan_outline',\n data: \"\"\n};\nexport var tylIconSkullScan = {\n name: 'skull_scan',\n data: \"\"\n};\nexport var tylIconSkull = {\n name: 'skull',\n data: \"\"\n};\nexport var tylIconSkypeBusiness = {\n name: 'skype_business',\n data: \"\"\n};\nexport var tylIconSkype = {\n name: 'skype',\n data: \"\"\n};\nexport var tylIconSlack = {\n name: 'slack',\n data: \"\"\n};\nexport var tylIconSlashForwardBox = {\n name: 'slash_forward_box',\n data: \"\"\n};\nexport var tylIconSlashForward = {\n name: 'slash_forward',\n data: \"\"\n};\nexport var tylIconSleepOff = {\n name: 'sleep_off',\n data: \"\"\n};\nexport var tylIconSleep = {\n name: 'sleep',\n data: \"\"\n};\nexport var tylIconSlide = {\n name: 'slide',\n data: \"\"\n};\nexport var tylIconSlopeDownhill = {\n name: 'slope_downhill',\n data: \"\"\n};\nexport var tylIconSlopeUphill = {\n name: 'slope_uphill',\n data: \"\"\n};\nexport var tylIconSlotMachineOutline = {\n name: 'slot_machine_outline',\n data: \"\"\n};\nexport var tylIconSlotMachine = {\n name: 'slot_machine',\n data: \"\"\n};\nexport var tylIconSmartCardOutline = {\n name: 'smart_card_outline',\n data: \"\"\n};\nexport var tylIconSmartCardReaderOutline = {\n name: 'smart_card_reader_outline',\n data: \"\"\n};\nexport var tylIconSmartCardReader = {\n name: 'smart_card_reader',\n data: \"\"\n};\nexport var tylIconSmartCard = {\n name: 'smart_card',\n data: \"\"\n};\nexport var tylIconSmog = {\n name: 'smog',\n data: \"\"\n};\nexport var tylIconSmokeDetector = {\n name: 'smoke_detector',\n data: \"\"\n};\nexport var tylIconSmokingOff = {\n name: 'smoking_off',\n data: \"\"\n};\nexport var tylIconSmokingPipeOff = {\n name: 'smoking_pipe_off',\n data: \"\"\n};\nexport var tylIconSmokingPipe = {\n name: 'smoking_pipe',\n data: \"\"\n};\nexport var tylIconSmoking = {\n name: 'smoking',\n data: \"\"\n};\nexport var tylIconSnail = {\n name: 'snail',\n data: \"\"\n};\nexport var tylIconSnake = {\n name: 'snake',\n data: \"\"\n};\nexport var tylIconSnapchat = {\n name: 'snapchat',\n data: \"\"\n};\nexport var tylIconSnowboard = {\n name: 'snowboard',\n data: \"\"\n};\nexport var tylIconSnowflakeAlert = {\n name: 'snowflake_alert',\n data: \"\"\n};\nexport var tylIconSnowflakeMelt = {\n name: 'snowflake_melt',\n data: \"\"\n};\nexport var tylIconSnowflakeOff = {\n name: 'snowflake_off',\n data: \"\"\n};\nexport var tylIconSnowflakeVariant = {\n name: 'snowflake_variant',\n data: \"\"\n};\nexport var tylIconSnowflake = {\n name: 'snowflake',\n data: \"\"\n};\nexport var tylIconSnowman = {\n name: 'snowman',\n data: \"\"\n};\nexport var tylIconSoccerField = {\n name: 'soccer_field',\n data: \"\"\n};\nexport var tylIconSoccer = {\n name: 'soccer',\n data: \"\"\n};\nexport var tylIconSocialDistance2Meters = {\n name: 'social_distance_2_meters',\n data: \"\"\n};\nexport var tylIconSocialDistance6Feet = {\n name: 'social_distance_6_feet',\n data: \"\"\n};\nexport var tylIconSofaOutline = {\n name: 'sofa_outline',\n data: \"\"\n};\nexport var tylIconSofaSingleOutline = {\n name: 'sofa_single_outline',\n data: \"\"\n};\nexport var tylIconSofaSingle = {\n name: 'sofa_single',\n data: \"\"\n};\nexport var tylIconSofa = {\n name: 'sofa',\n data: \"\"\n};\nexport var tylIconSolarPanelLarge = {\n name: 'solar_panel_large',\n data: \"\"\n};\nexport var tylIconSolarPanel = {\n name: 'solar_panel',\n data: \"\"\n};\nexport var tylIconSolarPower = {\n name: 'solar_power',\n data: \"\"\n};\nexport var tylIconSolderingIron = {\n name: 'soldering_iron',\n data: \"\"\n};\nexport var tylIconSolid = {\n name: 'solid',\n data: \"\"\n};\nexport var tylIconSonyPlaystation = {\n name: 'sony_playstation',\n data: \"\"\n};\nexport var tylIconSortAlphabeticalAscendingVariant = {\n name: 'sort_alphabetical_ascending_variant',\n data: \"\"\n};\nexport var tylIconSortAlphabeticalAscending = {\n name: 'sort_alphabetical_ascending',\n data: \"\"\n};\nexport var tylIconSortAlphabeticalDescendingVariant = {\n name: 'sort_alphabetical_descending_variant',\n data: \"\"\n};\nexport var tylIconSortAlphabeticalDescending = {\n name: 'sort_alphabetical_descending',\n data: \"\"\n};\nexport var tylIconSortAlphabeticalVariant = {\n name: 'sort_alphabetical_variant',\n data: \"\"\n};\nexport var tylIconSortAscending = {\n name: 'sort_ascending',\n data: \"\"\n};\nexport var tylIconSortBoolAscendingVariant = {\n name: 'sort_bool_ascending_variant',\n data: \"\"\n};\nexport var tylIconSortBoolAscending = {\n name: 'sort_bool_ascending',\n data: \"\"\n};\nexport var tylIconSortBoolDescendingVariant = {\n name: 'sort_bool_descending_variant',\n data: \"\"\n};\nexport var tylIconSortBoolDescending = {\n name: 'sort_bool_descending',\n data: \"\"\n};\nexport var tylIconSortCalendarAscending = {\n name: 'sort_calendar_ascending',\n data: \"\"\n};\nexport var tylIconSortCalendarDescending = {\n name: 'sort_calendar_descending',\n data: \"\"\n};\nexport var tylIconSortClockAscendingOutline = {\n name: 'sort_clock_ascending_outline',\n data: \"\"\n};\nexport var tylIconSortClockAscending = {\n name: 'sort_clock_ascending',\n data: \"\"\n};\nexport var tylIconSortClockDescendingOutline = {\n name: 'sort_clock_descending_outline',\n data: \"\"\n};\nexport var tylIconSortClockDescending = {\n name: 'sort_clock_descending',\n data: \"\"\n};\nexport var tylIconSortDescending = {\n name: 'sort_descending',\n data: \"\"\n};\nexport var tylIconSortNumericAscendingVariant = {\n name: 'sort_numeric_ascending_variant',\n data: \"\"\n};\nexport var tylIconSortNumericAscending = {\n name: 'sort_numeric_ascending',\n data: \"\"\n};\nexport var tylIconSortNumericDescendingVariant = {\n name: 'sort_numeric_descending_variant',\n data: \"\"\n};\nexport var tylIconSortNumericDescending = {\n name: 'sort_numeric_descending',\n data: \"\"\n};\nexport var tylIconSortNumericVariant = {\n name: 'sort_numeric_variant',\n data: \"\"\n};\nexport var tylIconSortReverseVariant = {\n name: 'sort_reverse_variant',\n data: \"\"\n};\nexport var tylIconSortVariantLockOpen = {\n name: 'sort_variant_lock_open',\n data: \"\"\n};\nexport var tylIconSortVariantLock = {\n name: 'sort_variant_lock',\n data: \"\"\n};\nexport var tylIconSortVariantRemove = {\n name: 'sort_variant_remove',\n data: \"\"\n};\nexport var tylIconSortVariant = {\n name: 'sort_variant',\n data: \"\"\n};\nexport var tylIconSort = {\n name: 'sort',\n data: \"\"\n};\nexport var tylIconSoundcloud = {\n name: 'soundcloud',\n data: \"\"\n};\nexport var tylIconSourceBranchCheck = {\n name: 'source_branch_check',\n data: \"\"\n};\nexport var tylIconSourceBranchMinus = {\n name: 'source_branch_minus',\n data: \"\"\n};\nexport var tylIconSourceBranchPlus = {\n name: 'source_branch_plus',\n data: \"\"\n};\nexport var tylIconSourceBranchRefresh = {\n name: 'source_branch_refresh',\n data: \"\"\n};\nexport var tylIconSourceBranchRemove = {\n name: 'source_branch_remove',\n data: \"\"\n};\nexport var tylIconSourceBranchSync = {\n name: 'source_branch_sync',\n data: \"\"\n};\nexport var tylIconSourceBranch = {\n name: 'source_branch',\n data: \"\"\n};\nexport var tylIconSourceCommitEndLocal = {\n name: 'source_commit_end_local',\n data: \"\"\n};\nexport var tylIconSourceCommitEnd = {\n name: 'source_commit_end',\n data: \"\"\n};\nexport var tylIconSourceCommitLocal = {\n name: 'source_commit_local',\n data: \"\"\n};\nexport var tylIconSourceCommitNextLocal = {\n name: 'source_commit_next_local',\n data: \"\"\n};\nexport var tylIconSourceCommitStartNextLocal = {\n name: 'source_commit_start_next_local',\n data: \"\"\n};\nexport var tylIconSourceCommitStart = {\n name: 'source_commit_start',\n data: \"\"\n};\nexport var tylIconSourceCommit = {\n name: 'source_commit',\n data: \"\"\n};\nexport var tylIconSourceFork = {\n name: 'source_fork',\n data: \"\"\n};\nexport var tylIconSourceMerge = {\n name: 'source_merge',\n data: \"\"\n};\nexport var tylIconSourcePull = {\n name: 'source_pull',\n data: \"\"\n};\nexport var tylIconSourceRepositoryMultiple = {\n name: 'source_repository_multiple',\n data: \"\"\n};\nexport var tylIconSourceRepository = {\n name: 'source_repository',\n data: \"\"\n};\nexport var tylIconSoySauceOff = {\n name: 'soy_sauce_off',\n data: \"\"\n};\nexport var tylIconSoySauce = {\n name: 'soy_sauce',\n data: \"\"\n};\nexport var tylIconSpaOutline = {\n name: 'spa_outline',\n data: \"\"\n};\nexport var tylIconSpa = {\n name: 'spa',\n data: \"\"\n};\nexport var tylIconSpaceInvaders = {\n name: 'space_invaders',\n data: \"\"\n};\nexport var tylIconSpaceStation = {\n name: 'space_station',\n data: \"\"\n};\nexport var tylIconSpade = {\n name: 'spade',\n data: \"\"\n};\nexport var tylIconSparkles = {\n name: 'sparkles',\n data: \"\"\n};\nexport var tylIconSpeakerBluetooth = {\n name: 'speaker_bluetooth',\n data: \"\"\n};\nexport var tylIconSpeakerMultiple = {\n name: 'speaker_multiple',\n data: \"\"\n};\nexport var tylIconSpeakerOff = {\n name: 'speaker_off',\n data: \"\"\n};\nexport var tylIconSpeakerWireless = {\n name: 'speaker_wireless',\n data: \"\"\n};\nexport var tylIconSpeaker = {\n name: 'speaker',\n data: \"\"\n};\nexport var tylIconSpeedometerMedium = {\n name: 'speedometer_medium',\n data: \"\"\n};\nexport var tylIconSpeedometerSlow = {\n name: 'speedometer_slow',\n data: \"\"\n};\nexport var tylIconSpeedometer = {\n name: 'speedometer',\n data: \"\"\n};\nexport var tylIconSpellcheck = {\n name: 'spellcheck',\n data: \"\"\n};\nexport var tylIconSpiderThread = {\n name: 'spider_thread',\n data: \"\"\n};\nexport var tylIconSpiderWeb = {\n name: 'spider_web',\n data: \"\"\n};\nexport var tylIconSpider = {\n name: 'spider',\n data: \"\"\n};\nexport var tylIconSpiritLevel = {\n name: 'spirit_level',\n data: \"\"\n};\nexport var tylIconSpoonSugar = {\n name: 'spoon_sugar',\n data: \"\"\n};\nexport var tylIconSpotify = {\n name: 'spotify',\n data: \"\"\n};\nexport var tylIconSpotlightBeam = {\n name: 'spotlight_beam',\n data: \"\"\n};\nexport var tylIconSpotlight = {\n name: 'spotlight',\n data: \"\"\n};\nexport var tylIconSprayBottle = {\n name: 'spray_bottle',\n data: \"\"\n};\nexport var tylIconSpray = {\n name: 'spray',\n data: \"\"\n};\nexport var tylIconSprinklerVariant = {\n name: 'sprinkler_variant',\n data: \"\"\n};\nexport var tylIconSprinkler = {\n name: 'sprinkler',\n data: \"\"\n};\nexport var tylIconSproutOutline = {\n name: 'sprout_outline',\n data: \"\"\n};\nexport var tylIconSprout = {\n name: 'sprout',\n data: \"\"\n};\nexport var tylIconSquareCircle = {\n name: 'square_circle',\n data: \"\"\n};\nexport var tylIconSquareEditOutline = {\n name: 'square_edit_outline',\n data: \"\"\n};\nexport var tylIconSquareMediumOutline = {\n name: 'square_medium_outline',\n data: \"\"\n};\nexport var tylIconSquareMedium = {\n name: 'square_medium',\n data: \"\"\n};\nexport var tylIconSquareOffOutline = {\n name: 'square_off_outline',\n data: \"\"\n};\nexport var tylIconSquareOff = {\n name: 'square_off',\n data: \"\"\n};\nexport var tylIconSquareOutline = {\n name: 'square_outline',\n data: \"\"\n};\nexport var tylIconSquareRootBox = {\n name: 'square_root_box',\n data: \"\"\n};\nexport var tylIconSquareRoot = {\n name: 'square_root',\n data: \"\"\n};\nexport var tylIconSquareRoundedOutline = {\n name: 'square_rounded_outline',\n data: \"\"\n};\nexport var tylIconSquareRounded = {\n name: 'square_rounded',\n data: \"\"\n};\nexport var tylIconSquareSmall = {\n name: 'square_small',\n data: \"\"\n};\nexport var tylIconSquareWave = {\n name: 'square_wave',\n data: \"\"\n};\nexport var tylIconSquare = {\n name: 'square',\n data: \"\"\n};\nexport var tylIconSqueegee = {\n name: 'squeegee',\n data: \"\"\n};\nexport var tylIconSsh = {\n name: 'ssh',\n data: \"\"\n};\nexport var tylIconStackExchange = {\n name: 'stack_exchange',\n data: \"\"\n};\nexport var tylIconStackOverflow = {\n name: 'stack_overflow',\n data: \"\"\n};\nexport var tylIconStackpath = {\n name: 'stackpath',\n data: \"\"\n};\nexport var tylIconStadiumVariant = {\n name: 'stadium_variant',\n data: \"\"\n};\nexport var tylIconStadium = {\n name: 'stadium',\n data: \"\"\n};\nexport var tylIconStairsBox = {\n name: 'stairs_box',\n data: \"\"\n};\nexport var tylIconStairsDown = {\n name: 'stairs_down',\n data: \"\"\n};\nexport var tylIconStairsUp = {\n name: 'stairs_up',\n data: \"\"\n};\nexport var tylIconStairs = {\n name: 'stairs',\n data: \"\"\n};\nexport var tylIconStamper = {\n name: 'stamper',\n data: \"\"\n};\nexport var tylIconStandardDefinition = {\n name: 'standard_definition',\n data: \"\"\n};\nexport var tylIconStarBoxMultipleOutline = {\n name: 'star_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconStarBoxMultiple = {\n name: 'star_box_multiple',\n data: \"\"\n};\nexport var tylIconStarBoxOutline = {\n name: 'star_box_outline',\n data: \"\"\n};\nexport var tylIconStarBox = {\n name: 'star_box',\n data: \"\"\n};\nexport var tylIconStarCheckOutline = {\n name: 'star_check_outline',\n data: \"\"\n};\nexport var tylIconStarCheck = {\n name: 'star_check',\n data: \"\"\n};\nexport var tylIconStarCircleOutline = {\n name: 'star_circle_outline',\n data: \"\"\n};\nexport var tylIconStarCircle = {\n name: 'star_circle',\n data: \"\"\n};\nexport var tylIconStarCogOutline = {\n name: 'star_cog_outline',\n data: \"\"\n};\nexport var tylIconStarCog = {\n name: 'star_cog',\n data: \"\"\n};\nexport var tylIconStarFace = {\n name: 'star_face',\n data: \"\"\n};\nexport var tylIconStarFourPointsOutline = {\n name: 'star_four_points_outline',\n data: \"\"\n};\nexport var tylIconStarFourPoints = {\n name: 'star_four_points',\n data: \"\"\n};\nexport var tylIconStarHalfFull = {\n name: 'star_half_full',\n data: \"\"\n};\nexport var tylIconStarHalf = {\n name: 'star_half',\n data: \"\"\n};\nexport var tylIconStarMinusOutline = {\n name: 'star_minus_outline',\n data: \"\"\n};\nexport var tylIconStarMinus = {\n name: 'star_minus',\n data: \"\"\n};\nexport var tylIconStarOffOutline = {\n name: 'star_off_outline',\n data: \"\"\n};\nexport var tylIconStarOff = {\n name: 'star_off',\n data: \"\"\n};\nexport var tylIconStarOutline = {\n name: 'star_outline',\n data: \"\"\n};\nexport var tylIconStarPlusOutline = {\n name: 'star_plus_outline',\n data: \"\"\n};\nexport var tylIconStarPlus = {\n name: 'star_plus',\n data: \"\"\n};\nexport var tylIconStarRemoveOutline = {\n name: 'star_remove_outline',\n data: \"\"\n};\nexport var tylIconStarRemove = {\n name: 'star_remove',\n data: \"\"\n};\nexport var tylIconStarSettingsOutline = {\n name: 'star_settings_outline',\n data: \"\"\n};\nexport var tylIconStarSettings = {\n name: 'star_settings',\n data: \"\"\n};\nexport var tylIconStarThreePointsOutline = {\n name: 'star_three_points_outline',\n data: \"\"\n};\nexport var tylIconStarThreePoints = {\n name: 'star_three_points',\n data: \"\"\n};\nexport var tylIconStar = {\n name: 'star',\n data: \"\"\n};\nexport var tylIconStateMachine = {\n name: 'state_machine',\n data: \"\"\n};\nexport var tylIconSteam = {\n name: 'steam',\n data: \"\"\n};\nexport var tylIconSteeringOff = {\n name: 'steering_off',\n data: \"\"\n};\nexport var tylIconSteering = {\n name: 'steering',\n data: \"\"\n};\nexport var tylIconStepBackward2 = {\n name: 'step_backward_2',\n data: \"\"\n};\nexport var tylIconStepBackward = {\n name: 'step_backward',\n data: \"\"\n};\nexport var tylIconStepForward2 = {\n name: 'step_forward_2',\n data: \"\"\n};\nexport var tylIconStepForward = {\n name: 'step_forward',\n data: \"\"\n};\nexport var tylIconStethoscope = {\n name: 'stethoscope',\n data: \"\"\n};\nexport var tylIconStickerAlertOutline = {\n name: 'sticker_alert_outline',\n data: \"\"\n};\nexport var tylIconStickerAlert = {\n name: 'sticker_alert',\n data: \"\"\n};\nexport var tylIconStickerCheckOutline = {\n name: 'sticker_check_outline',\n data: \"\"\n};\nexport var tylIconStickerCheck = {\n name: 'sticker_check',\n data: \"\"\n};\nexport var tylIconStickerCircleOutline = {\n name: 'sticker_circle_outline',\n data: \"\"\n};\nexport var tylIconStickerEmoji = {\n name: 'sticker_emoji',\n data: \"\"\n};\nexport var tylIconStickerMinusOutline = {\n name: 'sticker_minus_outline',\n data: \"\"\n};\nexport var tylIconStickerMinus = {\n name: 'sticker_minus',\n data: \"\"\n};\nexport var tylIconStickerOutline = {\n name: 'sticker_outline',\n data: \"\"\n};\nexport var tylIconStickerPlusOutline = {\n name: 'sticker_plus_outline',\n data: \"\"\n};\nexport var tylIconStickerPlus = {\n name: 'sticker_plus',\n data: \"\"\n};\nexport var tylIconStickerRemoveOutline = {\n name: 'sticker_remove_outline',\n data: \"\"\n};\nexport var tylIconStickerRemove = {\n name: 'sticker_remove',\n data: \"\"\n};\nexport var tylIconSticker = {\n name: 'sticker',\n data: \"\"\n};\nexport var tylIconStocking = {\n name: 'stocking',\n data: \"\"\n};\nexport var tylIconStomach = {\n name: 'stomach',\n data: \"\"\n};\nexport var tylIconStopCircleOutline = {\n name: 'stop_circle_outline',\n data: \"\"\n};\nexport var tylIconStopCircle = {\n name: 'stop_circle',\n data: \"\"\n};\nexport var tylIconStop = {\n name: 'stop',\n data: \"\"\n};\nexport var tylIconStore24Hour = {\n name: 'store_24_hour',\n data: \"\"\n};\nexport var tylIconStoreMinus = {\n name: 'store_minus',\n data: \"\"\n};\nexport var tylIconStoreOutline = {\n name: 'store_outline',\n data: \"\"\n};\nexport var tylIconStorePlus = {\n name: 'store_plus',\n data: \"\"\n};\nexport var tylIconStoreRemove = {\n name: 'store_remove',\n data: \"\"\n};\nexport var tylIconStore = {\n name: 'store',\n data: \"\"\n};\nexport var tylIconStorefrontOutline = {\n name: 'storefront_outline',\n data: \"\"\n};\nexport var tylIconStorefront = {\n name: 'storefront',\n data: \"\"\n};\nexport var tylIconStove = {\n name: 'stove',\n data: \"\"\n};\nexport var tylIconStrategy = {\n name: 'strategy',\n data: \"\"\n};\nexport var tylIconStretchToPageOutline = {\n name: 'stretch_to_page_outline',\n data: \"\"\n};\nexport var tylIconStretchToPage = {\n name: 'stretch_to_page',\n data: \"\"\n};\nexport var tylIconStringLightsOff = {\n name: 'string_lights_off',\n data: \"\"\n};\nexport var tylIconStringLights = {\n name: 'string_lights',\n data: \"\"\n};\nexport var tylIconSubdirectoryArrowLeft = {\n name: 'subdirectory_arrow_left',\n data: \"\"\n};\nexport var tylIconSubdirectoryArrowRight = {\n name: 'subdirectory_arrow_right',\n data: \"\"\n};\nexport var tylIconSubmarine = {\n name: 'submarine',\n data: \"\"\n};\nexport var tylIconSubtitlesOutline = {\n name: 'subtitles_outline',\n data: \"\"\n};\nexport var tylIconSubtitles = {\n name: 'subtitles',\n data: \"\"\n};\nexport var tylIconSubwayAlertVariant = {\n name: 'subway_alert_variant',\n data: \"\"\n};\nexport var tylIconSubwayVariant = {\n name: 'subway_variant',\n data: \"\"\n};\nexport var tylIconSubway = {\n name: 'subway',\n data: \"\"\n};\nexport var tylIconSummit = {\n name: 'summit',\n data: \"\"\n};\nexport var tylIconSunglasses = {\n name: 'sunglasses',\n data: \"\"\n};\nexport var tylIconSurroundSound20 = {\n name: 'surround_sound_2_0',\n data: \"\"\n};\nexport var tylIconSurroundSound31 = {\n name: 'surround_sound_3_1',\n data: \"\"\n};\nexport var tylIconSurroundSound51 = {\n name: 'surround_sound_5_1',\n data: \"\"\n};\nexport var tylIconSurroundSound71 = {\n name: 'surround_sound_7_1',\n data: \"\"\n};\nexport var tylIconSurroundSound = {\n name: 'surround_sound',\n data: \"\"\n};\nexport var tylIconSvg = {\n name: 'svg',\n data: \"\"\n};\nexport var tylIconSwapHorizontalBold = {\n name: 'swap_horizontal_bold',\n data: \"\"\n};\nexport var tylIconSwapHorizontalCircleOutline = {\n name: 'swap_horizontal_circle_outline',\n data: \"\"\n};\nexport var tylIconSwapHorizontalCircle = {\n name: 'swap_horizontal_circle',\n data: \"\"\n};\nexport var tylIconSwapHorizontalVariant = {\n name: 'swap_horizontal_variant',\n data: \"\"\n};\nexport var tylIconSwapHorizontal = {\n name: 'swap_horizontal',\n data: \"\"\n};\nexport var tylIconSwapVerticalBold = {\n name: 'swap_vertical_bold',\n data: \"\"\n};\nexport var tylIconSwapVerticalCircleOutline = {\n name: 'swap_vertical_circle_outline',\n data: \"\"\n};\nexport var tylIconSwapVerticalCircle = {\n name: 'swap_vertical_circle',\n data: \"\"\n};\nexport var tylIconSwapVerticalVariant = {\n name: 'swap_vertical_variant',\n data: \"\"\n};\nexport var tylIconSwapVertical = {\n name: 'swap_vertical',\n data: \"\"\n};\nexport var tylIconSwim = {\n name: 'swim',\n data: \"\"\n};\nexport var tylIconSwitch = {\n name: 'switch',\n data: \"\"\n};\nexport var tylIconSwordCross = {\n name: 'sword_cross',\n data: \"\"\n};\nexport var tylIconSword = {\n name: 'sword',\n data: \"\"\n};\nexport var tylIconSyllabaryHangul = {\n name: 'syllabary_hangul',\n data: \"\"\n};\nexport var tylIconSyllabaryHiragana = {\n name: 'syllabary_hiragana',\n data: \"\"\n};\nexport var tylIconSyllabaryKatakanaHalfwidth = {\n name: 'syllabary_katakana_halfwidth',\n data: \"\"\n};\nexport var tylIconSyllabaryKatakana = {\n name: 'syllabary_katakana',\n data: \"\"\n};\nexport var tylIconSymbol = {\n name: 'symbol',\n data: \"\"\n};\nexport var tylIconSymfony = {\n name: 'symfony',\n data: \"\"\n};\nexport var tylIconSyncAlert = {\n name: 'sync_alert',\n data: \"\"\n};\nexport var tylIconSyncCircle = {\n name: 'sync_circle',\n data: \"\"\n};\nexport var tylIconSyncOff = {\n name: 'sync_off',\n data: \"\"\n};\nexport var tylIconSync = {\n name: 'sync',\n data: \"\"\n};\nexport var tylIconTabMinus = {\n name: 'tab_minus',\n data: \"\"\n};\nexport var tylIconTabPlus = {\n name: 'tab_plus',\n data: \"\"\n};\nexport var tylIconTabRemove = {\n name: 'tab_remove',\n data: \"\"\n};\nexport var tylIconTabUnselected = {\n name: 'tab_unselected',\n data: \"\"\n};\nexport var tylIconTab = {\n name: 'tab',\n data: \"\"\n};\nexport var tylIconTableAccount = {\n name: 'table_account',\n data: \"\"\n};\nexport var tylIconTableAlert = {\n name: 'table_alert',\n data: \"\"\n};\nexport var tylIconTableArrowDown = {\n name: 'table_arrow_down',\n data: \"\"\n};\nexport var tylIconTableArrowLeft = {\n name: 'table_arrow_left',\n data: \"\"\n};\nexport var tylIconTableArrowRight = {\n name: 'table_arrow_right',\n data: \"\"\n};\nexport var tylIconTableArrowUp = {\n name: 'table_arrow_up',\n data: \"\"\n};\nexport var tylIconTableBorder = {\n name: 'table_border',\n data: \"\"\n};\nexport var tylIconTableCancel = {\n name: 'table_cancel',\n data: \"\"\n};\nexport var tylIconTableChair = {\n name: 'table_chair',\n data: \"\"\n};\nexport var tylIconTableCheck = {\n name: 'table_check',\n data: \"\"\n};\nexport var tylIconTableClock = {\n name: 'table_clock',\n data: \"\"\n};\nexport var tylIconTableCog = {\n name: 'table_cog',\n data: \"\"\n};\nexport var tylIconTableColumnPlusAfter = {\n name: 'table_column_plus_after',\n data: \"\"\n};\nexport var tylIconTableColumnPlusBefore = {\n name: 'table_column_plus_before',\n data: \"\"\n};\nexport var tylIconTableColumnRemove = {\n name: 'table_column_remove',\n data: \"\"\n};\nexport var tylIconTableColumnWidth = {\n name: 'table_column_width',\n data: \"\"\n};\nexport var tylIconTableColumn = {\n name: 'table_column',\n data: \"\"\n};\nexport var tylIconTableEdit = {\n name: 'table_edit',\n data: \"\"\n};\nexport var tylIconTableEyeOff = {\n name: 'table_eye_off',\n data: \"\"\n};\nexport var tylIconTableEye = {\n name: 'table_eye',\n data: \"\"\n};\nexport var tylIconTableFurniture = {\n name: 'table_furniture',\n data: \"\"\n};\nexport var tylIconTableHeadersEyeOff = {\n name: 'table_headers_eye_off',\n data: \"\"\n};\nexport var tylIconTableHeadersEye = {\n name: 'table_headers_eye',\n data: \"\"\n};\nexport var tylIconTableHeart = {\n name: 'table_heart',\n data: \"\"\n};\nexport var tylIconTableKey = {\n name: 'table_key',\n data: \"\"\n};\nexport var tylIconTableLargePlus = {\n name: 'table_large_plus',\n data: \"\"\n};\nexport var tylIconTableLargeRemove = {\n name: 'table_large_remove',\n data: \"\"\n};\nexport var tylIconTableLarge = {\n name: 'table_large',\n data: \"\"\n};\nexport var tylIconTableLock = {\n name: 'table_lock',\n data: \"\"\n};\nexport var tylIconTableMergeCells = {\n name: 'table_merge_cells',\n data: \"\"\n};\nexport var tylIconTableMinus = {\n name: 'table_minus',\n data: \"\"\n};\nexport var tylIconTableMultiple = {\n name: 'table_multiple',\n data: \"\"\n};\nexport var tylIconTableNetwork = {\n name: 'table_network',\n data: \"\"\n};\nexport var tylIconTableOfContents = {\n name: 'table_of_contents',\n data: \"\"\n};\nexport var tylIconTableOff = {\n name: 'table_off',\n data: \"\"\n};\nexport var tylIconTablePlus = {\n name: 'table_plus',\n data: \"\"\n};\nexport var tylIconTableRefresh = {\n name: 'table_refresh',\n data: \"\"\n};\nexport var tylIconTableRemove = {\n name: 'table_remove',\n data: \"\"\n};\nexport var tylIconTableRowHeight = {\n name: 'table_row_height',\n data: \"\"\n};\nexport var tylIconTableRowPlusAfter = {\n name: 'table_row_plus_after',\n data: \"\"\n};\nexport var tylIconTableRowPlusBefore = {\n name: 'table_row_plus_before',\n data: \"\"\n};\nexport var tylIconTableRowRemove = {\n name: 'table_row_remove',\n data: \"\"\n};\nexport var tylIconTableRow = {\n name: 'table_row',\n data: \"\"\n};\nexport var tylIconTableSearch = {\n name: 'table_search',\n data: \"\"\n};\nexport var tylIconTableSettings = {\n name: 'table_settings',\n data: \"\"\n};\nexport var tylIconTableSplitCell = {\n name: 'table_split_cell',\n data: \"\"\n};\nexport var tylIconTableStar = {\n name: 'table_star',\n data: \"\"\n};\nexport var tylIconTableSync = {\n name: 'table_sync',\n data: \"\"\n};\nexport var tylIconTableTennis = {\n name: 'table_tennis',\n data: \"\"\n};\nexport var tylIconTable = {\n name: 'table',\n data: \"\"\n};\nexport var tylIconTabletAndroid = {\n name: 'tablet_android',\n data: \"\"\n};\nexport var tylIconTabletCellphone = {\n name: 'tablet_cellphone',\n data: \"\"\n};\nexport var tylIconTabletDashboard = {\n name: 'tablet_dashboard',\n data: \"\"\n};\nexport var tylIconTabletIpad = {\n name: 'tablet_ipad',\n data: \"\"\n};\nexport var tylIconTablet = {\n name: 'tablet',\n data: \"\"\n};\nexport var tylIconTaco = {\n name: 'taco',\n data: \"\"\n};\nexport var tylIconTagFaces = {\n name: 'tag_faces',\n data: \"\"\n};\nexport var tylIconTagHeartOutline = {\n name: 'tag_heart_outline',\n data: \"\"\n};\nexport var tylIconTagHeart = {\n name: 'tag_heart',\n data: \"\"\n};\nexport var tylIconTagMinusOutline = {\n name: 'tag_minus_outline',\n data: \"\"\n};\nexport var tylIconTagMinus = {\n name: 'tag_minus',\n data: \"\"\n};\nexport var tylIconTagMultipleOutline = {\n name: 'tag_multiple_outline',\n data: \"\"\n};\nexport var tylIconTagMultiple = {\n name: 'tag_multiple',\n data: \"\"\n};\nexport var tylIconTagOffOutline = {\n name: 'tag_off_outline',\n data: \"\"\n};\nexport var tylIconTagOff = {\n name: 'tag_off',\n data: \"\"\n};\nexport var tylIconTagOutline = {\n name: 'tag_outline',\n data: \"\"\n};\nexport var tylIconTagPlusOutline = {\n name: 'tag_plus_outline',\n data: \"\"\n};\nexport var tylIconTagPlus = {\n name: 'tag_plus',\n data: \"\"\n};\nexport var tylIconTagRemoveOutline = {\n name: 'tag_remove_outline',\n data: \"\"\n};\nexport var tylIconTagRemove = {\n name: 'tag_remove',\n data: \"\"\n};\nexport var tylIconTagTextOutline = {\n name: 'tag_text_outline',\n data: \"\"\n};\nexport var tylIconTagText = {\n name: 'tag_text',\n data: \"\"\n};\nexport var tylIconTag = {\n name: 'tag',\n data: \"\"\n};\nexport var tylIconTailwind = {\n name: 'tailwind',\n data: \"\"\n};\nexport var tylIconTank = {\n name: 'tank',\n data: \"\"\n};\nexport var tylIconTankerTruck = {\n name: 'tanker_truck',\n data: \"\"\n};\nexport var tylIconTapeDrive = {\n name: 'tape_drive',\n data: \"\"\n};\nexport var tylIconTapeMeasure = {\n name: 'tape_measure',\n data: \"\"\n};\nexport var tylIconTargetAccount = {\n name: 'target_account',\n data: \"\"\n};\nexport var tylIconTargetVariant = {\n name: 'target_variant',\n data: \"\"\n};\nexport var tylIconTarget = {\n name: 'target',\n data: \"\"\n};\nexport var tylIconTaxi = {\n name: 'taxi',\n data: \"\"\n};\nexport var tylIconTeaOutline = {\n name: 'tea_outline',\n data: \"\"\n};\nexport var tylIconTea = {\n name: 'tea',\n data: \"\"\n};\nexport var tylIconTeach = {\n name: 'teach',\n data: \"\"\n};\nexport var tylIconTeamviewer = {\n name: 'teamviewer',\n data: \"\"\n};\nexport var tylIconTelegram = {\n name: 'telegram',\n data: \"\"\n};\nexport var tylIconTelescope = {\n name: 'telescope',\n data: \"\"\n};\nexport var tylIconTelevisionAmbientLight = {\n name: 'television_ambient_light',\n data: \"\"\n};\nexport var tylIconTelevisionBox = {\n name: 'television_box',\n data: \"\"\n};\nexport var tylIconTelevisionClassicOff = {\n name: 'television_classic_off',\n data: \"\"\n};\nexport var tylIconTelevisionClassic = {\n name: 'television_classic',\n data: \"\"\n};\nexport var tylIconTelevisionClean = {\n name: 'television_clean',\n data: \"\"\n};\nexport var tylIconTelevisionGuide = {\n name: 'television_guide',\n data: \"\"\n};\nexport var tylIconTelevisionOff = {\n name: 'television_off',\n data: \"\"\n};\nexport var tylIconTelevisionPause = {\n name: 'television_pause',\n data: \"\"\n};\nexport var tylIconTelevisionPlay = {\n name: 'television_play',\n data: \"\"\n};\nexport var tylIconTelevisionStop = {\n name: 'television_stop',\n data: \"\"\n};\nexport var tylIconTelevision = {\n name: 'television',\n data: \"\"\n};\nexport var tylIconTemperatureCelsius = {\n name: 'temperature_celsius',\n data: \"\"\n};\nexport var tylIconTemperatureFahrenheit = {\n name: 'temperature_fahrenheit',\n data: \"\"\n};\nexport var tylIconTemperatureKelvin = {\n name: 'temperature_kelvin',\n data: \"\"\n};\nexport var tylIconTennisBall = {\n name: 'tennis_ball',\n data: \"\"\n};\nexport var tylIconTennis = {\n name: 'tennis',\n data: \"\"\n};\nexport var tylIconTent = {\n name: 'tent',\n data: \"\"\n};\nexport var tylIconTerraform = {\n name: 'terraform',\n data: \"\"\n};\nexport var tylIconTerrain = {\n name: 'terrain',\n data: \"\"\n};\nexport var tylIconTestTubeEmpty = {\n name: 'test_tube_empty',\n data: \"\"\n};\nexport var tylIconTestTubeOff = {\n name: 'test_tube_off',\n data: \"\"\n};\nexport var tylIconTestTube = {\n name: 'test_tube',\n data: \"\"\n};\nexport var tylIconTextAccount = {\n name: 'text_account',\n data: \"\"\n};\nexport var tylIconTextBoxCheckOutline = {\n name: 'text_box_check_outline',\n data: \"\"\n};\nexport var tylIconTextBoxCheck = {\n name: 'text_box_check',\n data: \"\"\n};\nexport var tylIconTextBoxMinusOutline = {\n name: 'text_box_minus_outline',\n data: \"\"\n};\nexport var tylIconTextBoxMinus = {\n name: 'text_box_minus',\n data: \"\"\n};\nexport var tylIconTextBoxMultipleOutline = {\n name: 'text_box_multiple_outline',\n data: \"\"\n};\nexport var tylIconTextBoxMultiple = {\n name: 'text_box_multiple',\n data: \"\"\n};\nexport var tylIconTextBoxOutline = {\n name: 'text_box_outline',\n data: \"\"\n};\nexport var tylIconTextBoxPlusOutline = {\n name: 'text_box_plus_outline',\n data: \"\"\n};\nexport var tylIconTextBoxPlus = {\n name: 'text_box_plus',\n data: \"\"\n};\nexport var tylIconTextBoxRemoveOutline = {\n name: 'text_box_remove_outline',\n data: \"\"\n};\nexport var tylIconTextBoxRemove = {\n name: 'text_box_remove',\n data: \"\"\n};\nexport var tylIconTextBoxSearchOutline = {\n name: 'text_box_search_outline',\n data: \"\"\n};\nexport var tylIconTextBoxSearch = {\n name: 'text_box_search',\n data: \"\"\n};\nexport var tylIconTextBox = {\n name: 'text_box',\n data: \"\"\n};\nexport var tylIconTextRecognition = {\n name: 'text_recognition',\n data: \"\"\n};\nexport var tylIconTextSearch = {\n name: 'text_search',\n data: \"\"\n};\nexport var tylIconTextShadow = {\n name: 'text_shadow',\n data: \"\"\n};\nexport var tylIconTextShort = {\n name: 'text_short',\n data: \"\"\n};\nexport var tylIconTextSubject = {\n name: 'text_subject',\n data: \"\"\n};\nexport var tylIconTextToSpeechOff = {\n name: 'text_to_speech_off',\n data: \"\"\n};\nexport var tylIconTextToSpeech = {\n name: 'text_to_speech',\n data: \"\"\n};\nexport var tylIconText = {\n name: 'text',\n data: \"\"\n};\nexport var tylIconTextureBox = {\n name: 'texture_box',\n data: \"\"\n};\nexport var tylIconTexture = {\n name: 'texture',\n data: \"\"\n};\nexport var tylIconTheater = {\n name: 'theater',\n data: \"\"\n};\nexport var tylIconThemeLightDark = {\n name: 'theme_light_dark',\n data: \"\"\n};\nexport var tylIconThermometerAlert = {\n name: 'thermometer_alert',\n data: \"\"\n};\nexport var tylIconThermometerChevronDown = {\n name: 'thermometer_chevron_down',\n data: \"\"\n};\nexport var tylIconThermometerChevronUp = {\n name: 'thermometer_chevron_up',\n data: \"\"\n};\nexport var tylIconThermometerHigh = {\n name: 'thermometer_high',\n data: \"\"\n};\nexport var tylIconThermometerLines = {\n name: 'thermometer_lines',\n data: \"\"\n};\nexport var tylIconThermometerLow = {\n name: 'thermometer_low',\n data: \"\"\n};\nexport var tylIconThermometerMinus = {\n name: 'thermometer_minus',\n data: \"\"\n};\nexport var tylIconThermometerOff = {\n name: 'thermometer_off',\n data: \"\"\n};\nexport var tylIconThermometerPlus = {\n name: 'thermometer_plus',\n data: \"\"\n};\nexport var tylIconThermometer = {\n name: 'thermometer',\n data: \"\"\n};\nexport var tylIconThermostatBox = {\n name: 'thermostat_box',\n data: \"\"\n};\nexport var tylIconThermostat = {\n name: 'thermostat',\n data: \"\"\n};\nexport var tylIconThoughtBubbleOutline = {\n name: 'thought_bubble_outline',\n data: \"\"\n};\nexport var tylIconThoughtBubble = {\n name: 'thought_bubble',\n data: \"\"\n};\nexport var tylIconThumbDownOutline = {\n name: 'thumb_down_outline',\n data: \"\"\n};\nexport var tylIconThumbDown = {\n name: 'thumb_down',\n data: \"\"\n};\nexport var tylIconThumbUpOutline = {\n name: 'thumb_up_outline',\n data: \"\"\n};\nexport var tylIconThumbUp = {\n name: 'thumb_up',\n data: \"\"\n};\nexport var tylIconThumbsUpDown = {\n name: 'thumbs_up_down',\n data: \"\"\n};\nexport var tylIconTicketAccount = {\n name: 'ticket_account',\n data: \"\"\n};\nexport var tylIconTicketConfirmationOutline = {\n name: 'ticket_confirmation_outline',\n data: \"\"\n};\nexport var tylIconTicketConfirmation = {\n name: 'ticket_confirmation',\n data: \"\"\n};\nexport var tylIconTicketOutline = {\n name: 'ticket_outline',\n data: \"\"\n};\nexport var tylIconTicketPercentOutline = {\n name: 'ticket_percent_outline',\n data: \"\"\n};\nexport var tylIconTicketPercent = {\n name: 'ticket_percent',\n data: \"\"\n};\nexport var tylIconTicket = {\n name: 'ticket',\n data: \"\"\n};\nexport var tylIconTie = {\n name: 'tie',\n data: \"\"\n};\nexport var tylIconTilde = {\n name: 'tilde',\n data: \"\"\n};\nexport var tylIconTimelapse = {\n name: 'timelapse',\n data: \"\"\n};\nexport var tylIconTimelineAlertOutline = {\n name: 'timeline_alert_outline',\n data: \"\"\n};\nexport var tylIconTimelineAlert = {\n name: 'timeline_alert',\n data: \"\"\n};\nexport var tylIconTimelineCheckOutline = {\n name: 'timeline_check_outline',\n data: \"\"\n};\nexport var tylIconTimelineCheck = {\n name: 'timeline_check',\n data: \"\"\n};\nexport var tylIconTimelineClockOutline = {\n name: 'timeline_clock_outline',\n data: \"\"\n};\nexport var tylIconTimelineClock = {\n name: 'timeline_clock',\n data: \"\"\n};\nexport var tylIconTimelineHelpOutline = {\n name: 'timeline_help_outline',\n data: \"\"\n};\nexport var tylIconTimelineHelp = {\n name: 'timeline_help',\n data: \"\"\n};\nexport var tylIconTimelineMinusOutline = {\n name: 'timeline_minus_outline',\n data: \"\"\n};\nexport var tylIconTimelineMinus = {\n name: 'timeline_minus',\n data: \"\"\n};\nexport var tylIconTimelineOutline = {\n name: 'timeline_outline',\n data: \"\"\n};\nexport var tylIconTimelinePlusOutline = {\n name: 'timeline_plus_outline',\n data: \"\"\n};\nexport var tylIconTimelinePlus = {\n name: 'timeline_plus',\n data: \"\"\n};\nexport var tylIconTimelineRemoveOutline = {\n name: 'timeline_remove_outline',\n data: \"\"\n};\nexport var tylIconTimelineRemove = {\n name: 'timeline_remove',\n data: \"\"\n};\nexport var tylIconTimelineTextOutline = {\n name: 'timeline_text_outline',\n data: \"\"\n};\nexport var tylIconTimelineText = {\n name: 'timeline_text',\n data: \"\"\n};\nexport var tylIconTimeline = {\n name: 'timeline',\n data: \"\"\n};\nexport var tylIconTimer10 = {\n name: 'timer_10',\n data: \"\"\n};\nexport var tylIconTimer3 = {\n name: 'timer_3',\n data: \"\"\n};\nexport var tylIconTimerOffOutline = {\n name: 'timer_off_outline',\n data: \"\"\n};\nexport var tylIconTimerOff = {\n name: 'timer_off',\n data: \"\"\n};\nexport var tylIconTimerOutline = {\n name: 'timer_outline',\n data: \"\"\n};\nexport var tylIconTimerSandEmpty = {\n name: 'timer_sand_empty',\n data: \"\"\n};\nexport var tylIconTimerSandFull = {\n name: 'timer_sand_full',\n data: \"\"\n};\nexport var tylIconTimerSand = {\n name: 'timer_sand',\n data: \"\"\n};\nexport var tylIconTimer = {\n name: 'timer',\n data: \"\"\n};\nexport var tylIconTimetable = {\n name: 'timetable',\n data: \"\"\n};\nexport var tylIconToasterOff = {\n name: 'toaster_off',\n data: \"\"\n};\nexport var tylIconToasterOven = {\n name: 'toaster_oven',\n data: \"\"\n};\nexport var tylIconToaster = {\n name: 'toaster',\n data: \"\"\n};\nexport var tylIconToggleSwitchOffOutline = {\n name: 'toggle_switch_off_outline',\n data: \"\"\n};\nexport var tylIconToggleSwitchOff = {\n name: 'toggle_switch_off',\n data: \"\"\n};\nexport var tylIconToggleSwitchOutline = {\n name: 'toggle_switch_outline',\n data: \"\"\n};\nexport var tylIconToggleSwitch = {\n name: 'toggle_switch',\n data: \"\"\n};\nexport var tylIconToilet = {\n name: 'toilet',\n data: \"\"\n};\nexport var tylIconToolboxOutline = {\n name: 'toolbox_outline',\n data: \"\"\n};\nexport var tylIconToolbox = {\n name: 'toolbox',\n data: \"\"\n};\nexport var tylIconTools = {\n name: 'tools',\n data: \"\"\n};\nexport var tylIconTooltipAccount = {\n name: 'tooltip_account',\n data: \"\"\n};\nexport var tylIconTooltipCheckOutline = {\n name: 'tooltip_check_outline',\n data: \"\"\n};\nexport var tylIconTooltipCheck = {\n name: 'tooltip_check',\n data: \"\"\n};\nexport var tylIconTooltipEditOutline = {\n name: 'tooltip_edit_outline',\n data: \"\"\n};\nexport var tylIconTooltipEdit = {\n name: 'tooltip_edit',\n data: \"\"\n};\nexport var tylIconTooltipImageOutline = {\n name: 'tooltip_image_outline',\n data: \"\"\n};\nexport var tylIconTooltipImage = {\n name: 'tooltip_image',\n data: \"\"\n};\nexport var tylIconTooltipMinusOutline = {\n name: 'tooltip_minus_outline',\n data: \"\"\n};\nexport var tylIconTooltipMinus = {\n name: 'tooltip_minus',\n data: \"\"\n};\nexport var tylIconTooltipOutline = {\n name: 'tooltip_outline',\n data: \"\"\n};\nexport var tylIconTooltipPlusOutline = {\n name: 'tooltip_plus_outline',\n data: \"\"\n};\nexport var tylIconTooltipPlus = {\n name: 'tooltip_plus',\n data: \"\"\n};\nexport var tylIconTooltipRemoveOutline = {\n name: 'tooltip_remove_outline',\n data: \"\"\n};\nexport var tylIconTooltipRemove = {\n name: 'tooltip_remove',\n data: \"\"\n};\nexport var tylIconTooltipTextOutline = {\n name: 'tooltip_text_outline',\n data: \"\"\n};\nexport var tylIconTooltipText = {\n name: 'tooltip_text',\n data: \"\"\n};\nexport var tylIconTooltip = {\n name: 'tooltip',\n data: \"\"\n};\nexport var tylIconToothOutline = {\n name: 'tooth_outline',\n data: \"\"\n};\nexport var tylIconTooth = {\n name: 'tooth',\n data: \"\"\n};\nexport var tylIconToothbrushElectric = {\n name: 'toothbrush_electric',\n data: \"\"\n};\nexport var tylIconToothbrushPaste = {\n name: 'toothbrush_paste',\n data: \"\"\n};\nexport var tylIconToothbrush = {\n name: 'toothbrush',\n data: \"\"\n};\nexport var tylIconTorch = {\n name: 'torch',\n data: \"\"\n};\nexport var tylIconTortoise = {\n name: 'tortoise',\n data: \"\"\n};\nexport var tylIconToslink = {\n name: 'toslink',\n data: \"\"\n};\nexport var tylIconTournament = {\n name: 'tournament',\n data: \"\"\n};\nexport var tylIconTowTruck = {\n name: 'tow_truck',\n data: \"\"\n};\nexport var tylIconTowerBeach = {\n name: 'tower_beach',\n data: \"\"\n};\nexport var tylIconTowerFire = {\n name: 'tower_fire',\n data: \"\"\n};\nexport var tylIconToyBrickMarkerOutline = {\n name: 'toy_brick_marker_outline',\n data: \"\"\n};\nexport var tylIconToyBrickMarker = {\n name: 'toy_brick_marker',\n data: \"\"\n};\nexport var tylIconToyBrickMinusOutline = {\n name: 'toy_brick_minus_outline',\n data: \"\"\n};\nexport var tylIconToyBrickMinus = {\n name: 'toy_brick_minus',\n data: \"\"\n};\nexport var tylIconToyBrickOutline = {\n name: 'toy_brick_outline',\n data: \"\"\n};\nexport var tylIconToyBrickPlusOutline = {\n name: 'toy_brick_plus_outline',\n data: \"\"\n};\nexport var tylIconToyBrickPlus = {\n name: 'toy_brick_plus',\n data: \"\"\n};\nexport var tylIconToyBrickRemoveOutline = {\n name: 'toy_brick_remove_outline',\n data: \"\"\n};\nexport var tylIconToyBrickRemove = {\n name: 'toy_brick_remove',\n data: \"\"\n};\nexport var tylIconToyBrickSearchOutline = {\n name: 'toy_brick_search_outline',\n data: \"\"\n};\nexport var tylIconToyBrickSearch = {\n name: 'toy_brick_search',\n data: \"\"\n};\nexport var tylIconToyBrick = {\n name: 'toy_brick',\n data: \"\"\n};\nexport var tylIconTrackLight = {\n name: 'track_light',\n data: \"\"\n};\nexport var tylIconTrackpadLock = {\n name: 'trackpad_lock',\n data: \"\"\n};\nexport var tylIconTrackpad = {\n name: 'trackpad',\n data: \"\"\n};\nexport var tylIconTractorVariant = {\n name: 'tractor_variant',\n data: \"\"\n};\nexport var tylIconTractor = {\n name: 'tractor',\n data: \"\"\n};\nexport var tylIconTrademark = {\n name: 'trademark',\n data: \"\"\n};\nexport var tylIconTrafficCone = {\n name: 'traffic_cone',\n data: \"\"\n};\nexport var tylIconTrafficLight = {\n name: 'traffic_light',\n data: \"\"\n};\nexport var tylIconTrainCar = {\n name: 'train_car',\n data: \"\"\n};\nexport var tylIconTrainVariant = {\n name: 'train_variant',\n data: \"\"\n};\nexport var tylIconTrain = {\n name: 'train',\n data: \"\"\n};\nexport var tylIconTramSide = {\n name: 'tram_side',\n data: \"\"\n};\nexport var tylIconTram = {\n name: 'tram',\n data: \"\"\n};\nexport var tylIconTranscribeClose = {\n name: 'transcribe_close',\n data: \"\"\n};\nexport var tylIconTranscribe = {\n name: 'transcribe',\n data: \"\"\n};\nexport var tylIconTransferDown = {\n name: 'transfer_down',\n data: \"\"\n};\nexport var tylIconTransferLeft = {\n name: 'transfer_left',\n data: \"\"\n};\nexport var tylIconTransferRight = {\n name: 'transfer_right',\n data: \"\"\n};\nexport var tylIconTransferUp = {\n name: 'transfer_up',\n data: \"\"\n};\nexport var tylIconTransfer = {\n name: 'transfer',\n data: \"\"\n};\nexport var tylIconTransitConnectionHorizontal = {\n name: 'transit_connection_horizontal',\n data: \"\"\n};\nexport var tylIconTransitConnectionVariant = {\n name: 'transit_connection_variant',\n data: \"\"\n};\nexport var tylIconTransitConnection = {\n name: 'transit_connection',\n data: \"\"\n};\nexport var tylIconTransitDetour = {\n name: 'transit_detour',\n data: \"\"\n};\nexport var tylIconTransitSkip = {\n name: 'transit_skip',\n data: \"\"\n};\nexport var tylIconTransitTransfer = {\n name: 'transit_transfer',\n data: \"\"\n};\nexport var tylIconTransitionMasked = {\n name: 'transition_masked',\n data: \"\"\n};\nexport var tylIconTransition = {\n name: 'transition',\n data: \"\"\n};\nexport var tylIconTranslateOff = {\n name: 'translate_off',\n data: \"\"\n};\nexport var tylIconTranslate = {\n name: 'translate',\n data: \"\"\n};\nexport var tylIconTransmissionTower = {\n name: 'transmission_tower',\n data: \"\"\n};\nexport var tylIconTrashCanOutline = {\n name: 'trash_can_outline',\n data: \"\"\n};\nexport var tylIconTrashCan = {\n name: 'trash_can',\n data: \"\"\n};\nexport var tylIconTrayAlert = {\n name: 'tray_alert',\n data: \"\"\n};\nexport var tylIconTrayFull = {\n name: 'tray_full',\n data: \"\"\n};\nexport var tylIconTrayMinus = {\n name: 'tray_minus',\n data: \"\"\n};\nexport var tylIconTrayPlus = {\n name: 'tray_plus',\n data: \"\"\n};\nexport var tylIconTrayRemove = {\n name: 'tray_remove',\n data: \"\"\n};\nexport var tylIconTray = {\n name: 'tray',\n data: \"\"\n};\nexport var tylIconTreasureChest = {\n name: 'treasure_chest',\n data: \"\"\n};\nexport var tylIconTreeOutline = {\n name: 'tree_outline',\n data: \"\"\n};\nexport var tylIconTree = {\n name: 'tree',\n data: \"\"\n};\nexport var tylIconTrello = {\n name: 'trello',\n data: \"\"\n};\nexport var tylIconTrendingDown = {\n name: 'trending_down',\n data: \"\"\n};\nexport var tylIconTrendingNeutral = {\n name: 'trending_neutral',\n data: \"\"\n};\nexport var tylIconTrendingUp = {\n name: 'trending_up',\n data: \"\"\n};\nexport var tylIconTriangleOutline = {\n name: 'triangle_outline',\n data: \"\"\n};\nexport var tylIconTriangleWave = {\n name: 'triangle_wave',\n data: \"\"\n};\nexport var tylIconTriangle = {\n name: 'triangle',\n data: \"\"\n};\nexport var tylIconTriforce = {\n name: 'triforce',\n data: \"\"\n};\nexport var tylIconTrophyAward = {\n name: 'trophy_award',\n data: \"\"\n};\nexport var tylIconTrophyBroken = {\n name: 'trophy_broken',\n data: \"\"\n};\nexport var tylIconTrophyOutline = {\n name: 'trophy_outline',\n data: \"\"\n};\nexport var tylIconTrophyVariantOutline = {\n name: 'trophy_variant_outline',\n data: \"\"\n};\nexport var tylIconTrophyVariant = {\n name: 'trophy_variant',\n data: \"\"\n};\nexport var tylIconTrophy = {\n name: 'trophy',\n data: \"\"\n};\nexport var tylIconTruckCheckOutline = {\n name: 'truck_check_outline',\n data: \"\"\n};\nexport var tylIconTruckCheck = {\n name: 'truck_check',\n data: \"\"\n};\nexport var tylIconTruckDeliveryOutline = {\n name: 'truck_delivery_outline',\n data: \"\"\n};\nexport var tylIconTruckDelivery = {\n name: 'truck_delivery',\n data: \"\"\n};\nexport var tylIconTruckFastOutline = {\n name: 'truck_fast_outline',\n data: \"\"\n};\nexport var tylIconTruckFast = {\n name: 'truck_fast',\n data: \"\"\n};\nexport var tylIconTruckOutline = {\n name: 'truck_outline',\n data: \"\"\n};\nexport var tylIconTruckTrailer = {\n name: 'truck_trailer',\n data: \"\"\n};\nexport var tylIconTruck = {\n name: 'truck',\n data: \"\"\n};\nexport var tylIconTrumpet = {\n name: 'trumpet',\n data: \"\"\n};\nexport var tylIconTshirtCrewOutline = {\n name: 'tshirt_crew_outline',\n data: \"\"\n};\nexport var tylIconTshirtCrew = {\n name: 'tshirt_crew',\n data: \"\"\n};\nexport var tylIconTshirtVOutline = {\n name: 'tshirt_v_outline',\n data: \"\"\n};\nexport var tylIconTshirtV = {\n name: 'tshirt_v',\n data: \"\"\n};\nexport var tylIconTumbleDryerAlert = {\n name: 'tumble_dryer_alert',\n data: \"\"\n};\nexport var tylIconTumbleDryerOff = {\n name: 'tumble_dryer_off',\n data: \"\"\n};\nexport var tylIconTumbleDryer = {\n name: 'tumble_dryer',\n data: \"\"\n};\nexport var tylIconTuneVariant = {\n name: 'tune_variant',\n data: \"\"\n};\nexport var tylIconTuneVerticalVariant = {\n name: 'tune_vertical_variant',\n data: \"\"\n};\nexport var tylIconTuneVertical = {\n name: 'tune_vertical',\n data: \"\"\n};\nexport var tylIconTune = {\n name: 'tune',\n data: \"\"\n};\nexport var tylIconTurkey = {\n name: 'turkey',\n data: \"\"\n};\nexport var tylIconTurnstileOutline = {\n name: 'turnstile_outline',\n data: \"\"\n};\nexport var tylIconTurnstile = {\n name: 'turnstile',\n data: \"\"\n};\nexport var tylIconTurtle = {\n name: 'turtle',\n data: \"\"\n};\nexport var tylIconTwitch = {\n name: 'twitch',\n data: \"\"\n};\nexport var tylIconTwitterRetweet = {\n name: 'twitter_retweet',\n data: \"\"\n};\nexport var tylIconTwitter = {\n name: 'twitter',\n data: \"\"\n};\nexport var tylIconTwoFactorAuthentication = {\n name: 'two_factor_authentication',\n data: \"\"\n};\nexport var tylIconTypewriter = {\n name: 'typewriter',\n data: \"\"\n};\nexport var tylIconUbisoft = {\n name: 'ubisoft',\n data: \"\"\n};\nexport var tylIconUbuntu = {\n name: 'ubuntu',\n data: \"\"\n};\nexport var tylIconUfoOutline = {\n name: 'ufo_outline',\n data: \"\"\n};\nexport var tylIconUfo = {\n name: 'ufo',\n data: \"\"\n};\nexport var tylIconUltraHighDefinition = {\n name: 'ultra_high_definition',\n data: \"\"\n};\nexport var tylIconUmbraco = {\n name: 'umbraco',\n data: \"\"\n};\nexport var tylIconUmbrellaClosedOutline = {\n name: 'umbrella_closed_outline',\n data: \"\"\n};\nexport var tylIconUmbrellaClosedVariant = {\n name: 'umbrella_closed_variant',\n data: \"\"\n};\nexport var tylIconUmbrellaClosed = {\n name: 'umbrella_closed',\n data: \"\"\n};\nexport var tylIconUmbrellaOutline = {\n name: 'umbrella_outline',\n data: \"\"\n};\nexport var tylIconUmbrella = {\n name: 'umbrella',\n data: \"\"\n};\nexport var tylIconUndoVariant = {\n name: 'undo_variant',\n data: \"\"\n};\nexport var tylIconUndo = {\n name: 'undo',\n data: \"\"\n};\nexport var tylIconUnfoldLessHorizontal = {\n name: 'unfold_less_horizontal',\n data: \"\"\n};\nexport var tylIconUnfoldLessVertical = {\n name: 'unfold_less_vertical',\n data: \"\"\n};\nexport var tylIconUnfoldMoreHorizontal = {\n name: 'unfold_more_horizontal',\n data: \"\"\n};\nexport var tylIconUnfoldMoreVertical = {\n name: 'unfold_more_vertical',\n data: \"\"\n};\nexport var tylIconUngroup = {\n name: 'ungroup',\n data: \"\"\n};\nexport var tylIconUnicode = {\n name: 'unicode',\n data: \"\"\n};\nexport var tylIconUnicornVariant = {\n name: 'unicorn_variant',\n data: \"\"\n};\nexport var tylIconUnicorn = {\n name: 'unicorn',\n data: \"\"\n};\nexport var tylIconUnicycle = {\n name: 'unicycle',\n data: \"\"\n};\nexport var tylIconUnity = {\n name: 'unity',\n data: \"\"\n};\nexport var tylIconUnreal = {\n name: 'unreal',\n data: \"\"\n};\nexport var tylIconUntappd = {\n name: 'untappd',\n data: \"\"\n};\nexport var tylIconUpdate = {\n name: 'update',\n data: \"\"\n};\nexport var tylIconUploadLockOutline = {\n name: 'upload_lock_outline',\n data: \"\"\n};\nexport var tylIconUploadLock = {\n name: 'upload_lock',\n data: \"\"\n};\nexport var tylIconUploadMultiple = {\n name: 'upload_multiple',\n data: \"\"\n};\nexport var tylIconUploadNetworkOutline = {\n name: 'upload_network_outline',\n data: \"\"\n};\nexport var tylIconUploadNetwork = {\n name: 'upload_network',\n data: \"\"\n};\nexport var tylIconUploadOffOutline = {\n name: 'upload_off_outline',\n data: \"\"\n};\nexport var tylIconUploadOff = {\n name: 'upload_off',\n data: \"\"\n};\nexport var tylIconUploadOutline = {\n name: 'upload_outline',\n data: \"\"\n};\nexport var tylIconUpload = {\n name: 'upload',\n data: \"\"\n};\nexport var tylIconUsbFlashDriveOutline = {\n name: 'usb_flash_drive_outline',\n data: \"\"\n};\nexport var tylIconUsbFlashDrive = {\n name: 'usb_flash_drive',\n data: \"\"\n};\nexport var tylIconUsbPort = {\n name: 'usb_port',\n data: \"\"\n};\nexport var tylIconUsb = {\n name: 'usb',\n data: \"\"\n};\nexport var tylIconValveClosed = {\n name: 'valve_closed',\n data: \"\"\n};\nexport var tylIconValveOpen = {\n name: 'valve_open',\n data: \"\"\n};\nexport var tylIconValve = {\n name: 'valve',\n data: \"\"\n};\nexport var tylIconVanPassenger = {\n name: 'van_passenger',\n data: \"\"\n};\nexport var tylIconVanUtility = {\n name: 'van_utility',\n data: \"\"\n};\nexport var tylIconVanishQuarter = {\n name: 'vanish_quarter',\n data: \"\"\n};\nexport var tylIconVanish = {\n name: 'vanish',\n data: \"\"\n};\nexport var tylIconVanityLight = {\n name: 'vanity_light',\n data: \"\"\n};\nexport var tylIconVariableBox = {\n name: 'variable_box',\n data: \"\"\n};\nexport var tylIconVariable = {\n name: 'variable',\n data: \"\"\n};\nexport var tylIconVectorArrangeAbove = {\n name: 'vector_arrange_above',\n data: \"\"\n};\nexport var tylIconVectorArrangeBelow = {\n name: 'vector_arrange_below',\n data: \"\"\n};\nexport var tylIconVectorBezier = {\n name: 'vector_bezier',\n data: \"\"\n};\nexport var tylIconVectorCircleVariant = {\n name: 'vector_circle_variant',\n data: \"\"\n};\nexport var tylIconVectorCircle = {\n name: 'vector_circle',\n data: \"\"\n};\nexport var tylIconVectorCombine = {\n name: 'vector_combine',\n data: \"\"\n};\nexport var tylIconVectorCurve = {\n name: 'vector_curve',\n data: \"\"\n};\nexport var tylIconVectorDifferenceAb = {\n name: 'vector_difference_ab',\n data: \"\"\n};\nexport var tylIconVectorDifferenceBa = {\n name: 'vector_difference_ba',\n data: \"\"\n};\nexport var tylIconVectorDifference = {\n name: 'vector_difference',\n data: \"\"\n};\nexport var tylIconVectorEllipse = {\n name: 'vector_ellipse',\n data: \"\"\n};\nexport var tylIconVectorIntersection = {\n name: 'vector_intersection',\n data: \"\"\n};\nexport var tylIconVectorLine = {\n name: 'vector_line',\n data: \"\"\n};\nexport var tylIconVectorLink = {\n name: 'vector_link',\n data: \"\"\n};\nexport var tylIconVectorPoint = {\n name: 'vector_point',\n data: \"\"\n};\nexport var tylIconVectorPolygon = {\n name: 'vector_polygon',\n data: \"\"\n};\nexport var tylIconVectorPolylineEdit = {\n name: 'vector_polyline_edit',\n data: \"\"\n};\nexport var tylIconVectorPolylineMinus = {\n name: 'vector_polyline_minus',\n data: \"\"\n};\nexport var tylIconVectorPolylinePlus = {\n name: 'vector_polyline_plus',\n data: \"\"\n};\nexport var tylIconVectorPolylineRemove = {\n name: 'vector_polyline_remove',\n data: \"\"\n};\nexport var tylIconVectorPolyline = {\n name: 'vector_polyline',\n data: \"\"\n};\nexport var tylIconVectorRadius = {\n name: 'vector_radius',\n data: \"\"\n};\nexport var tylIconVectorRectangle = {\n name: 'vector_rectangle',\n data: \"\"\n};\nexport var tylIconVectorSelection = {\n name: 'vector_selection',\n data: \"\"\n};\nexport var tylIconVectorSquare = {\n name: 'vector_square',\n data: \"\"\n};\nexport var tylIconVectorTriangle = {\n name: 'vector_triangle',\n data: \"\"\n};\nexport var tylIconVectorUnion = {\n name: 'vector_union',\n data: \"\"\n};\nexport var tylIconVhs = {\n name: 'vhs',\n data: \"\"\n};\nexport var tylIconVibrateOff = {\n name: 'vibrate_off',\n data: \"\"\n};\nexport var tylIconVibrate = {\n name: 'vibrate',\n data: \"\"\n};\nexport var tylIconVideo3DOff = {\n name: 'video_3_d_off',\n data: \"\"\n};\nexport var tylIconVideo3DVariant = {\n name: 'video_3_d_variant',\n data: \"\"\n};\nexport var tylIconVideo3D = {\n name: 'video_3_d',\n data: \"\"\n};\nexport var tylIconVideo4KBox = {\n name: 'video_4_k_box',\n data: \"\"\n};\nexport var tylIconVideoAccount = {\n name: 'video_account',\n data: \"\"\n};\nexport var tylIconVideoBoxOff = {\n name: 'video_box_off',\n data: \"\"\n};\nexport var tylIconVideoBox = {\n name: 'video_box',\n data: \"\"\n};\nexport var tylIconVideoCheckOutline = {\n name: 'video_check_outline',\n data: \"\"\n};\nexport var tylIconVideoCheck = {\n name: 'video_check',\n data: \"\"\n};\nexport var tylIconVideoHighDefinition = {\n name: 'video_high_definition',\n data: \"\"\n};\nexport var tylIconVideoImage = {\n name: 'video_image',\n data: \"\"\n};\nexport var tylIconVideoInputAntenna = {\n name: 'video_input_antenna',\n data: \"\"\n};\nexport var tylIconVideoInputComponent = {\n name: 'video_input_component',\n data: \"\"\n};\nexport var tylIconVideoInputHdmi = {\n name: 'video_input_hdmi',\n data: \"\"\n};\nexport var tylIconVideoInputScart = {\n name: 'video_input_scart',\n data: \"\"\n};\nexport var tylIconVideoInputSvideo = {\n name: 'video_input_svideo',\n data: \"\"\n};\nexport var tylIconVideoMinusOutline = {\n name: 'video_minus_outline',\n data: \"\"\n};\nexport var tylIconVideoMinus = {\n name: 'video_minus',\n data: \"\"\n};\nexport var tylIconVideoOffOutline = {\n name: 'video_off_outline',\n data: \"\"\n};\nexport var tylIconVideoOff = {\n name: 'video_off',\n data: \"\"\n};\nexport var tylIconVideoOutline = {\n name: 'video_outline',\n data: \"\"\n};\nexport var tylIconVideoPlusOutline = {\n name: 'video_plus_outline',\n data: \"\"\n};\nexport var tylIconVideoPlus = {\n name: 'video_plus',\n data: \"\"\n};\nexport var tylIconVideoStabilization = {\n name: 'video_stabilization',\n data: \"\"\n};\nexport var tylIconVideoSwitchOutline = {\n name: 'video_switch_outline',\n data: \"\"\n};\nexport var tylIconVideoSwitch = {\n name: 'video_switch',\n data: \"\"\n};\nexport var tylIconVideoVintage = {\n name: 'video_vintage',\n data: \"\"\n};\nexport var tylIconVideoWirelessOutline = {\n name: 'video_wireless_outline',\n data: \"\"\n};\nexport var tylIconVideoWireless = {\n name: 'video_wireless',\n data: \"\"\n};\nexport var tylIconVideo = {\n name: 'video',\n data: \"\"\n};\nexport var tylIconViewAgendaOutline = {\n name: 'view_agenda_outline',\n data: \"\"\n};\nexport var tylIconViewAgenda = {\n name: 'view_agenda',\n data: \"\"\n};\nexport var tylIconViewArrayOutline = {\n name: 'view_array_outline',\n data: \"\"\n};\nexport var tylIconViewArray = {\n name: 'view_array',\n data: \"\"\n};\nexport var tylIconViewCarouselOutline = {\n name: 'view_carousel_outline',\n data: \"\"\n};\nexport var tylIconViewCarousel = {\n name: 'view_carousel',\n data: \"\"\n};\nexport var tylIconViewColumnOutline = {\n name: 'view_column_outline',\n data: \"\"\n};\nexport var tylIconViewColumn = {\n name: 'view_column',\n data: \"\"\n};\nexport var tylIconViewComfyOutline = {\n name: 'view_comfy_outline',\n data: \"\"\n};\nexport var tylIconViewComfy = {\n name: 'view_comfy',\n data: \"\"\n};\nexport var tylIconViewCompactOutline = {\n name: 'view_compact_outline',\n data: \"\"\n};\nexport var tylIconViewCompact = {\n name: 'view_compact',\n data: \"\"\n};\nexport var tylIconViewDashboardOutline = {\n name: 'view_dashboard_outline',\n data: \"\"\n};\nexport var tylIconViewDashboardVariantOutline = {\n name: 'view_dashboard_variant_outline',\n data: \"\"\n};\nexport var tylIconViewDashboardVariant = {\n name: 'view_dashboard_variant',\n data: \"\"\n};\nexport var tylIconViewDashboard = {\n name: 'view_dashboard',\n data: \"\"\n};\nexport var tylIconViewDayOutline = {\n name: 'view_day_outline',\n data: \"\"\n};\nexport var tylIconViewDay = {\n name: 'view_day',\n data: \"\"\n};\nexport var tylIconViewGridOutline = {\n name: 'view_grid_outline',\n data: \"\"\n};\nexport var tylIconViewGridPlusOutline = {\n name: 'view_grid_plus_outline',\n data: \"\"\n};\nexport var tylIconViewGridPlus = {\n name: 'view_grid_plus',\n data: \"\"\n};\nexport var tylIconViewGrid = {\n name: 'view_grid',\n data: \"\"\n};\nexport var tylIconViewHeadline = {\n name: 'view_headline',\n data: \"\"\n};\nexport var tylIconViewListOutline = {\n name: 'view_list_outline',\n data: \"\"\n};\nexport var tylIconViewList = {\n name: 'view_list',\n data: \"\"\n};\nexport var tylIconViewModuleOutline = {\n name: 'view_module_outline',\n data: \"\"\n};\nexport var tylIconViewModule = {\n name: 'view_module',\n data: \"\"\n};\nexport var tylIconViewParallelOutline = {\n name: 'view_parallel_outline',\n data: \"\"\n};\nexport var tylIconViewParallel = {\n name: 'view_parallel',\n data: \"\"\n};\nexport var tylIconViewQuiltOutline = {\n name: 'view_quilt_outline',\n data: \"\"\n};\nexport var tylIconViewQuilt = {\n name: 'view_quilt',\n data: \"\"\n};\nexport var tylIconViewSequentialOutline = {\n name: 'view_sequential_outline',\n data: \"\"\n};\nexport var tylIconViewSequential = {\n name: 'view_sequential',\n data: \"\"\n};\nexport var tylIconViewSplitHorizontal = {\n name: 'view_split_horizontal',\n data: \"\"\n};\nexport var tylIconViewSplitVertical = {\n name: 'view_split_vertical',\n data: \"\"\n};\nexport var tylIconViewStreamOutline = {\n name: 'view_stream_outline',\n data: \"\"\n};\nexport var tylIconViewStream = {\n name: 'view_stream',\n data: \"\"\n};\nexport var tylIconViewWeekOutline = {\n name: 'view_week_outline',\n data: \"\"\n};\nexport var tylIconViewWeek = {\n name: 'view_week',\n data: \"\"\n};\nexport var tylIconVimeo = {\n name: 'vimeo',\n data: \"\"\n};\nexport var tylIconViolin = {\n name: 'violin',\n data: \"\"\n};\nexport var tylIconVirtualReality = {\n name: 'virtual_reality',\n data: \"\"\n};\nexport var tylIconVirusOutline = {\n name: 'virus_outline',\n data: \"\"\n};\nexport var tylIconVirus = {\n name: 'virus',\n data: \"\"\n};\nexport var tylIconVk = {\n name: 'vk',\n data: \"\"\n};\nexport var tylIconVlc = {\n name: 'vlc',\n data: \"\"\n};\nexport var tylIconVoiceOff = {\n name: 'voice_off',\n data: \"\"\n};\nexport var tylIconVoicemail = {\n name: 'voicemail',\n data: \"\"\n};\nexport var tylIconVolleyball = {\n name: 'volleyball',\n data: \"\"\n};\nexport var tylIconVolumeHigh = {\n name: 'volume_high',\n data: \"\"\n};\nexport var tylIconVolumeLow = {\n name: 'volume_low',\n data: \"\"\n};\nexport var tylIconVolumeMedium = {\n name: 'volume_medium',\n data: \"\"\n};\nexport var tylIconVolumeMinus = {\n name: 'volume_minus',\n data: \"\"\n};\nexport var tylIconVolumeMute = {\n name: 'volume_mute',\n data: \"\"\n};\nexport var tylIconVolumeOff = {\n name: 'volume_off',\n data: \"\"\n};\nexport var tylIconVolumePlus = {\n name: 'volume_plus',\n data: \"\"\n};\nexport var tylIconVolumeSource = {\n name: 'volume_source',\n data: \"\"\n};\nexport var tylIconVolumeVariantOff = {\n name: 'volume_variant_off',\n data: \"\"\n};\nexport var tylIconVolumeVibrate = {\n name: 'volume_vibrate',\n data: \"\"\n};\nexport var tylIconVoteOutline = {\n name: 'vote_outline',\n data: \"\"\n};\nexport var tylIconVote = {\n name: 'vote',\n data: \"\"\n};\nexport var tylIconVpn = {\n name: 'vpn',\n data: \"\"\n};\nexport var tylIconVuejs = {\n name: 'vuejs',\n data: \"\"\n};\nexport var tylIconVuetify = {\n name: 'vuetify',\n data: \"\"\n};\nexport var tylIconWalk = {\n name: 'walk',\n data: \"\"\n};\nexport var tylIconWallSconceFlatVariant = {\n name: 'wall_sconce_flat_variant',\n data: \"\"\n};\nexport var tylIconWallSconceFlat = {\n name: 'wall_sconce_flat',\n data: \"\"\n};\nexport var tylIconWallSconceRoundVariant = {\n name: 'wall_sconce_round_variant',\n data: \"\"\n};\nexport var tylIconWallSconceRound = {\n name: 'wall_sconce_round',\n data: \"\"\n};\nexport var tylIconWallSconce = {\n name: 'wall_sconce',\n data: \"\"\n};\nexport var tylIconWall = {\n name: 'wall',\n data: \"\"\n};\nexport var tylIconWalletGiftcard = {\n name: 'wallet_giftcard',\n data: \"\"\n};\nexport var tylIconWalletMembership = {\n name: 'wallet_membership',\n data: \"\"\n};\nexport var tylIconWalletOutline = {\n name: 'wallet_outline',\n data: \"\"\n};\nexport var tylIconWalletPlusOutline = {\n name: 'wallet_plus_outline',\n data: \"\"\n};\nexport var tylIconWalletPlus = {\n name: 'wallet_plus',\n data: \"\"\n};\nexport var tylIconWalletTravel = {\n name: 'wallet_travel',\n data: \"\"\n};\nexport var tylIconWallet = {\n name: 'wallet',\n data: \"\"\n};\nexport var tylIconWallpaper = {\n name: 'wallpaper',\n data: \"\"\n};\nexport var tylIconWan = {\n name: 'wan',\n data: \"\"\n};\nexport var tylIconWardrobeOutline = {\n name: 'wardrobe_outline',\n data: \"\"\n};\nexport var tylIconWardrobe = {\n name: 'wardrobe',\n data: \"\"\n};\nexport var tylIconWarehouse = {\n name: 'warehouse',\n data: \"\"\n};\nexport var tylIconWashingMachineAlert = {\n name: 'washing_machine_alert',\n data: \"\"\n};\nexport var tylIconWashingMachineOff = {\n name: 'washing_machine_off',\n data: \"\"\n};\nexport var tylIconWashingMachine = {\n name: 'washing_machine',\n data: \"\"\n};\nexport var tylIconWatchExportVariant = {\n name: 'watch_export_variant',\n data: \"\"\n};\nexport var tylIconWatchExport = {\n name: 'watch_export',\n data: \"\"\n};\nexport var tylIconWatchImportVariant = {\n name: 'watch_import_variant',\n data: \"\"\n};\nexport var tylIconWatchImport = {\n name: 'watch_import',\n data: \"\"\n};\nexport var tylIconWatchVariant = {\n name: 'watch_variant',\n data: \"\"\n};\nexport var tylIconWatchVibrateOff = {\n name: 'watch_vibrate_off',\n data: \"\"\n};\nexport var tylIconWatchVibrate = {\n name: 'watch_vibrate',\n data: \"\"\n};\nexport var tylIconWatch = {\n name: 'watch',\n data: \"\"\n};\nexport var tylIconWaterAlertOutline = {\n name: 'water_alert_outline',\n data: \"\"\n};\nexport var tylIconWaterAlert = {\n name: 'water_alert',\n data: \"\"\n};\nexport var tylIconWaterBoilerAlert = {\n name: 'water_boiler_alert',\n data: \"\"\n};\nexport var tylIconWaterBoilerOff = {\n name: 'water_boiler_off',\n data: \"\"\n};\nexport var tylIconWaterBoiler = {\n name: 'water_boiler',\n data: \"\"\n};\nexport var tylIconWaterCheckOutline = {\n name: 'water_check_outline',\n data: \"\"\n};\nexport var tylIconWaterCheck = {\n name: 'water_check',\n data: \"\"\n};\nexport var tylIconWaterMinusOutline = {\n name: 'water_minus_outline',\n data: \"\"\n};\nexport var tylIconWaterMinus = {\n name: 'water_minus',\n data: \"\"\n};\nexport var tylIconWaterOffOutline = {\n name: 'water_off_outline',\n data: \"\"\n};\nexport var tylIconWaterOff = {\n name: 'water_off',\n data: \"\"\n};\nexport var tylIconWaterOutline = {\n name: 'water_outline',\n data: \"\"\n};\nexport var tylIconWaterPercentAlert = {\n name: 'water_percent_alert',\n data: \"\"\n};\nexport var tylIconWaterPercent = {\n name: 'water_percent',\n data: \"\"\n};\nexport var tylIconWaterPlusOutline = {\n name: 'water_plus_outline',\n data: \"\"\n};\nexport var tylIconWaterPlus = {\n name: 'water_plus',\n data: \"\"\n};\nexport var tylIconWaterPolo = {\n name: 'water_polo',\n data: \"\"\n};\nexport var tylIconWaterPumpOff = {\n name: 'water_pump_off',\n data: \"\"\n};\nexport var tylIconWaterPump = {\n name: 'water_pump',\n data: \"\"\n};\nexport var tylIconWaterRemoveOutline = {\n name: 'water_remove_outline',\n data: \"\"\n};\nexport var tylIconWaterRemove = {\n name: 'water_remove',\n data: \"\"\n};\nexport var tylIconWaterWellOutline = {\n name: 'water_well_outline',\n data: \"\"\n};\nexport var tylIconWaterWell = {\n name: 'water_well',\n data: \"\"\n};\nexport var tylIconWater = {\n name: 'water',\n data: \"\"\n};\nexport var tylIconWateringCanOutline = {\n name: 'watering_can_outline',\n data: \"\"\n};\nexport var tylIconWateringCan = {\n name: 'watering_can',\n data: \"\"\n};\nexport var tylIconWatermark = {\n name: 'watermark',\n data: \"\"\n};\nexport var tylIconWave = {\n name: 'wave',\n data: \"\"\n};\nexport var tylIconWaveform = {\n name: 'waveform',\n data: \"\"\n};\nexport var tylIconWaves = {\n name: 'waves',\n data: \"\"\n};\nexport var tylIconWaze = {\n name: 'waze',\n data: \"\"\n};\nexport var tylIconWeatherCloudyAlert = {\n name: 'weather_cloudy_alert',\n data: \"\"\n};\nexport var tylIconWeatherCloudyArrowRight = {\n name: 'weather_cloudy_arrow_right',\n data: \"\"\n};\nexport var tylIconWeatherCloudy = {\n name: 'weather_cloudy',\n data: \"\"\n};\nexport var tylIconWeatherFog = {\n name: 'weather_fog',\n data: \"\"\n};\nexport var tylIconWeatherHail = {\n name: 'weather_hail',\n data: \"\"\n};\nexport var tylIconWeatherHazy = {\n name: 'weather_hazy',\n data: \"\"\n};\nexport var tylIconWeatherHurricane = {\n name: 'weather_hurricane',\n data: \"\"\n};\nexport var tylIconWeatherLightningRainy = {\n name: 'weather_lightning_rainy',\n data: \"\"\n};\nexport var tylIconWeatherLightning = {\n name: 'weather_lightning',\n data: \"\"\n};\nexport var tylIconWeatherNightPartlyCloudy = {\n name: 'weather_night_partly_cloudy',\n data: \"\"\n};\nexport var tylIconWeatherNight = {\n name: 'weather_night',\n data: \"\"\n};\nexport var tylIconWeatherPartlyCloudy = {\n name: 'weather_partly_cloudy',\n data: \"\"\n};\nexport var tylIconWeatherPartlyLightning = {\n name: 'weather_partly_lightning',\n data: \"\"\n};\nexport var tylIconWeatherPartlyRainy = {\n name: 'weather_partly_rainy',\n data: \"\"\n};\nexport var tylIconWeatherPartlySnowyRainy = {\n name: 'weather_partly_snowy_rainy',\n data: \"\"\n};\nexport var tylIconWeatherPartlySnowy = {\n name: 'weather_partly_snowy',\n data: \"\"\n};\nexport var tylIconWeatherPouring = {\n name: 'weather_pouring',\n data: \"\"\n};\nexport var tylIconWeatherRainy = {\n name: 'weather_rainy',\n data: \"\"\n};\nexport var tylIconWeatherSnowyHeavy = {\n name: 'weather_snowy_heavy',\n data: \"\"\n};\nexport var tylIconWeatherSnowyRainy = {\n name: 'weather_snowy_rainy',\n data: \"\"\n};\nexport var tylIconWeatherSnowy = {\n name: 'weather_snowy',\n data: \"\"\n};\nexport var tylIconWeatherSunnyAlert = {\n name: 'weather_sunny_alert',\n data: \"\"\n};\nexport var tylIconWeatherSunnyOff = {\n name: 'weather_sunny_off',\n data: \"\"\n};\nexport var tylIconWeatherSunny = {\n name: 'weather_sunny',\n data: \"\"\n};\nexport var tylIconWeatherSunsetDown = {\n name: 'weather_sunset_down',\n data: \"\"\n};\nexport var tylIconWeatherSunsetUp = {\n name: 'weather_sunset_up',\n data: \"\"\n};\nexport var tylIconWeatherSunset = {\n name: 'weather_sunset',\n data: \"\"\n};\nexport var tylIconWeatherTornado = {\n name: 'weather_tornado',\n data: \"\"\n};\nexport var tylIconWeatherWindyVariant = {\n name: 'weather_windy_variant',\n data: \"\"\n};\nexport var tylIconWeatherWindy = {\n name: 'weather_windy',\n data: \"\"\n};\nexport var tylIconWebBox = {\n name: 'web_box',\n data: \"\"\n};\nexport var tylIconWebClock = {\n name: 'web_clock',\n data: \"\"\n};\nexport var tylIconWeb = {\n name: 'web',\n data: \"\"\n};\nexport var tylIconWebcamOff = {\n name: 'webcam_off',\n data: \"\"\n};\nexport var tylIconWebcam = {\n name: 'webcam',\n data: \"\"\n};\nexport var tylIconWebhook = {\n name: 'webhook',\n data: \"\"\n};\nexport var tylIconWebpack = {\n name: 'webpack',\n data: \"\"\n};\nexport var tylIconWebrtc = {\n name: 'webrtc',\n data: \"\"\n};\nexport var tylIconWechat = {\n name: 'wechat',\n data: \"\"\n};\nexport var tylIconWeightGram = {\n name: 'weight_gram',\n data: \"\"\n};\nexport var tylIconWeightKilogram = {\n name: 'weight_kilogram',\n data: \"\"\n};\nexport var tylIconWeightLifter = {\n name: 'weight_lifter',\n data: \"\"\n};\nexport var tylIconWeightPound = {\n name: 'weight_pound',\n data: \"\"\n};\nexport var tylIconWeight = {\n name: 'weight',\n data: \"\"\n};\nexport var tylIconWhatsapp = {\n name: 'whatsapp',\n data: \"\"\n};\nexport var tylIconWheelBarrow = {\n name: 'wheel_barrow',\n data: \"\"\n};\nexport var tylIconWheelchairAccessibility = {\n name: 'wheelchair_accessibility',\n data: \"\"\n};\nexport var tylIconWhistleOutline = {\n name: 'whistle_outline',\n data: \"\"\n};\nexport var tylIconWhistle = {\n name: 'whistle',\n data: \"\"\n};\nexport var tylIconWhiteBalanceAuto = {\n name: 'white_balance_auto',\n data: \"\"\n};\nexport var tylIconWhiteBalanceIncandescent = {\n name: 'white_balance_incandescent',\n data: \"\"\n};\nexport var tylIconWhiteBalanceIridescent = {\n name: 'white_balance_iridescent',\n data: \"\"\n};\nexport var tylIconWhiteBalanceSunny = {\n name: 'white_balance_sunny',\n data: \"\"\n};\nexport var tylIconWidgetsOutline = {\n name: 'widgets_outline',\n data: \"\"\n};\nexport var tylIconWidgets = {\n name: 'widgets',\n data: \"\"\n};\nexport var tylIconWifiAlert = {\n name: 'wifi_alert',\n data: \"\"\n};\nexport var tylIconWifiArrowDown = {\n name: 'wifi_arrow_down',\n data: \"\"\n};\nexport var tylIconWifiArrowLeftRight = {\n name: 'wifi_arrow_left_right',\n data: \"\"\n};\nexport var tylIconWifiArrowLeft = {\n name: 'wifi_arrow_left',\n data: \"\"\n};\nexport var tylIconWifiArrowRight = {\n name: 'wifi_arrow_right',\n data: \"\"\n};\nexport var tylIconWifiArrowUpDown = {\n name: 'wifi_arrow_up_down',\n data: \"\"\n};\nexport var tylIconWifiArrowUp = {\n name: 'wifi_arrow_up',\n data: \"\"\n};\nexport var tylIconWifiCancel = {\n name: 'wifi_cancel',\n data: \"\"\n};\nexport var tylIconWifiCheck = {\n name: 'wifi_check',\n data: \"\"\n};\nexport var tylIconWifiCog = {\n name: 'wifi_cog',\n data: \"\"\n};\nexport var tylIconWifiLockOpen = {\n name: 'wifi_lock_open',\n data: \"\"\n};\nexport var tylIconWifiLock = {\n name: 'wifi_lock',\n data: \"\"\n};\nexport var tylIconWifiMarker = {\n name: 'wifi_marker',\n data: \"\"\n};\nexport var tylIconWifiMinus = {\n name: 'wifi_minus',\n data: \"\"\n};\nexport var tylIconWifiOff = {\n name: 'wifi_off',\n data: \"\"\n};\nexport var tylIconWifiPlus = {\n name: 'wifi_plus',\n data: \"\"\n};\nexport var tylIconWifiRefresh = {\n name: 'wifi_refresh',\n data: \"\"\n};\nexport var tylIconWifiRemove = {\n name: 'wifi_remove',\n data: \"\"\n};\nexport var tylIconWifiSettings = {\n name: 'wifi_settings',\n data: \"\"\n};\nexport var tylIconWifiStar = {\n name: 'wifi_star',\n data: \"\"\n};\nexport var tylIconWifiStrength1Alert = {\n name: 'wifi_strength_1_alert',\n data: \"\"\n};\nexport var tylIconWifiStrength1LockOpen = {\n name: 'wifi_strength_1_lock_open',\n data: \"\"\n};\nexport var tylIconWifiStrength1Lock = {\n name: 'wifi_strength_1_lock',\n data: \"\"\n};\nexport var tylIconWifiStrength1 = {\n name: 'wifi_strength_1',\n data: \"\"\n};\nexport var tylIconWifiStrength2Alert = {\n name: 'wifi_strength_2_alert',\n data: \"\"\n};\nexport var tylIconWifiStrength2LockOpen = {\n name: 'wifi_strength_2_lock_open',\n data: \"\"\n};\nexport var tylIconWifiStrength2Lock = {\n name: 'wifi_strength_2_lock',\n data: \"\"\n};\nexport var tylIconWifiStrength2 = {\n name: 'wifi_strength_2',\n data: \"\"\n};\nexport var tylIconWifiStrength3Alert = {\n name: 'wifi_strength_3_alert',\n data: \"\"\n};\nexport var tylIconWifiStrength3LockOpen = {\n name: 'wifi_strength_3_lock_open',\n data: \"\"\n};\nexport var tylIconWifiStrength3Lock = {\n name: 'wifi_strength_3_lock',\n data: \"\"\n};\nexport var tylIconWifiStrength3 = {\n name: 'wifi_strength_3',\n data: \"\"\n};\nexport var tylIconWifiStrength4Alert = {\n name: 'wifi_strength_4_alert',\n data: \"\"\n};\nexport var tylIconWifiStrength4LockOpen = {\n name: 'wifi_strength_4_lock_open',\n data: \"\"\n};\nexport var tylIconWifiStrength4Lock = {\n name: 'wifi_strength_4_lock',\n data: \"\"\n};\nexport var tylIconWifiStrength4 = {\n name: 'wifi_strength_4',\n data: \"\"\n};\nexport var tylIconWifiStrengthAlertOutline = {\n name: 'wifi_strength_alert_outline',\n data: \"\"\n};\nexport var tylIconWifiStrengthLockOpenOutline = {\n name: 'wifi_strength_lock_open_outline',\n data: \"\"\n};\nexport var tylIconWifiStrengthLockOutline = {\n name: 'wifi_strength_lock_outline',\n data: \"\"\n};\nexport var tylIconWifiStrengthOffOutline = {\n name: 'wifi_strength_off_outline',\n data: \"\"\n};\nexport var tylIconWifiStrengthOff = {\n name: 'wifi_strength_off',\n data: \"\"\n};\nexport var tylIconWifiStrengthOutline = {\n name: 'wifi_strength_outline',\n data: \"\"\n};\nexport var tylIconWifiSync = {\n name: 'wifi_sync',\n data: \"\"\n};\nexport var tylIconWifi = {\n name: 'wifi',\n data: \"\"\n};\nexport var tylIconWikipedia = {\n name: 'wikipedia',\n data: \"\"\n};\nexport var tylIconWindTurbine = {\n name: 'wind_turbine',\n data: \"\"\n};\nexport var tylIconWindowClose = {\n name: 'window_close',\n data: \"\"\n};\nexport var tylIconWindowClosedVariant = {\n name: 'window_closed_variant',\n data: \"\"\n};\nexport var tylIconWindowClosed = {\n name: 'window_closed',\n data: \"\"\n};\nexport var tylIconWindowMaximize = {\n name: 'window_maximize',\n data: \"\"\n};\nexport var tylIconWindowMinimize = {\n name: 'window_minimize',\n data: \"\"\n};\nexport var tylIconWindowOpenVariant = {\n name: 'window_open_variant',\n data: \"\"\n};\nexport var tylIconWindowOpen = {\n name: 'window_open',\n data: \"\"\n};\nexport var tylIconWindowRestore = {\n name: 'window_restore',\n data: \"\"\n};\nexport var tylIconWindowShutterAlert = {\n name: 'window_shutter_alert',\n data: \"\"\n};\nexport var tylIconWindowShutterOpen = {\n name: 'window_shutter_open',\n data: \"\"\n};\nexport var tylIconWindowShutter = {\n name: 'window_shutter',\n data: \"\"\n};\nexport var tylIconWindsock = {\n name: 'windsock',\n data: \"\"\n};\nexport var tylIconWiperWash = {\n name: 'wiper_wash',\n data: \"\"\n};\nexport var tylIconWiper = {\n name: 'wiper',\n data: \"\"\n};\nexport var tylIconWizardHat = {\n name: 'wizard_hat',\n data: \"\"\n};\nexport var tylIconWordpress = {\n name: 'wordpress',\n data: \"\"\n};\nexport var tylIconWrapDisabled = {\n name: 'wrap_disabled',\n data: \"\"\n};\nexport var tylIconWrap = {\n name: 'wrap',\n data: \"\"\n};\nexport var tylIconWrenchOutline = {\n name: 'wrench_outline',\n data: \"\"\n};\nexport var tylIconWrench = {\n name: 'wrench',\n data: \"\"\n};\nexport var tylIconXamarinOutline = {\n name: 'xamarin_outline',\n data: \"\"\n};\nexport var tylIconXamarin = {\n name: 'xamarin',\n data: \"\"\n};\nexport var tylIconXing = {\n name: 'xing',\n data: \"\"\n};\nexport var tylIconXml = {\n name: 'xml',\n data: \"\"\n};\nexport var tylIconXmpp = {\n name: 'xmpp',\n data: \"\"\n};\nexport var tylIconYCombinator = {\n name: 'y_combinator',\n data: \"\"\n};\nexport var tylIconYahoo = {\n name: 'yahoo',\n data: \"\"\n};\nexport var tylIconYeast = {\n name: 'yeast',\n data: \"\"\n};\nexport var tylIconYinYang = {\n name: 'yin_yang',\n data: \"\"\n};\nexport var tylIconYoga = {\n name: 'yoga',\n data: \"\"\n};\nexport var tylIconYoutubeGaming = {\n name: 'youtube_gaming',\n data: \"\"\n};\nexport var tylIconYoutubeStudio = {\n name: 'youtube_studio',\n data: \"\"\n};\nexport var tylIconYoutubeSubscription = {\n name: 'youtube_subscription',\n data: \"\"\n};\nexport var tylIconYoutubeTv = {\n name: 'youtube_tv',\n data: \"\"\n};\nexport var tylIconYoutube = {\n name: 'youtube',\n data: \"\"\n};\nexport var tylIconYurt = {\n name: 'yurt',\n data: \"\"\n};\nexport var tylIconZWave = {\n name: 'z_wave',\n data: \"\"\n};\nexport var tylIconZend = {\n name: 'zend',\n data: \"\"\n};\nexport var tylIconZigbee = {\n name: 'zigbee',\n data: \"\"\n};\nexport var tylIconZipBoxOutline = {\n name: 'zip_box_outline',\n data: \"\"\n};\nexport var tylIconZipBox = {\n name: 'zip_box',\n data: \"\"\n};\nexport var tylIconZipDisk = {\n name: 'zip_disk',\n data: \"\"\n};\nexport var tylIconZodiacAquarius = {\n name: 'zodiac_aquarius',\n data: \"\"\n};\nexport var tylIconZodiacAries = {\n name: 'zodiac_aries',\n data: \"\"\n};\nexport var tylIconZodiacCancer = {\n name: 'zodiac_cancer',\n data: \"\"\n};\nexport var tylIconZodiacCapricorn = {\n name: 'zodiac_capricorn',\n data: \"\"\n};\nexport var tylIconZodiacGemini = {\n name: 'zodiac_gemini',\n data: \"\"\n};\nexport var tylIconZodiacLeo = {\n name: 'zodiac_leo',\n data: \"\"\n};\nexport var tylIconZodiacLibra = {\n name: 'zodiac_libra',\n data: \"\"\n};\nexport var tylIconZodiacPisces = {\n name: 'zodiac_pisces',\n data: \"\"\n};\nexport var tylIconZodiacSagittarius = {\n name: 'zodiac_sagittarius',\n data: \"\"\n};\nexport var tylIconZodiacScorpio = {\n name: 'zodiac_scorpio',\n data: \"\"\n};\nexport var tylIconZodiacTaurus = {\n name: 'zodiac_taurus',\n data: \"\"\n};\nexport var tylIconZodiacVirgo = {\n name: 'zodiac_virgo',\n data: \"\"\n};","export var tylIconAccountMultipleClock = {\n name: 'account_multiple_clock',\n data: \"\"\n};\nexport var tylIconAccountMultipleStar = {\n name: 'account_multiple_star',\n data: \"\"\n};\nexport var tylIconActionLauncher = {\n name: 'action_launcher',\n data: \"\"\n};\nexport var tylIconAddBoxDotted = {\n name: 'add_box_dotted',\n data: \"\"\n};\nexport var tylIconAddBoxOutline = {\n name: 'add_box_outline',\n data: \"\"\n};\nexport var tylIconBaseballCapOutline = {\n name: 'baseball_cap_outline',\n data: \"\"\n};\nexport var tylIconCalendarTwoWeek = {\n name: 'calendar_two_week',\n data: \"\"\n};\nexport var tylIconCrisisAlert = {\n name: 'crisis_alert',\n data: \"\"\n};\nexport var tylIconDatabaseFilter = {\n name: 'database_filter',\n data: \"\"\n};\nexport var tylIconDecisionTree = {\n name: 'decision_tree',\n data: \"\"\n};\nexport var tylIconDownload = {\n name: 'download',\n data: \"\"\n};\nexport var tylIconEditCircle = {\n name: 'edit_circle',\n data: \"\"\n};\nexport var tylIconExport = {\n name: 'export',\n data: \"\"\n};\nexport var tylIconFilterSortAscending = {\n name: 'filter_sort_ascending',\n data: \"\"\n};\nexport var tylIconFilterSortDescending = {\n name: 'filter_sort_descending',\n data: \"\"\n};\nexport var tylIconFilterVariantCheck = {\n name: 'filter_variant_check',\n data: \"\"\n};\nexport var tylIconForgeLogo = {\n name: 'forge_logo',\n data: \"\"\n};\nexport var tylIconHidePanelLeft = {\n name: 'hide_panel_left',\n data: \"\"\n};\nexport var tylIconHidePanelRight = {\n name: 'hide_panel_right',\n data: \"\"\n};\nexport var tylIconImport = {\n name: 'import',\n data: \"\"\n};\nexport var tylIconLiveChatOutline = {\n name: 'live_chat_outline',\n data: \"\"\n};\nexport var tylIconLiveChat = {\n name: 'live_chat',\n data: \"\"\n};\nexport var tylIconRedact = {\n name: 'redact',\n data: \"\"\n};\nexport var tylIconShowPanelLeft = {\n name: 'show_panel_left',\n data: \"\"\n};\nexport var tylIconShowPanelRight = {\n name: 'show_panel_right',\n data: \"\"\n};\nexport var tylIconTownHallCitizenConnection = {\n name: 'town_hall_citizen_connection',\n data: \"\"\n};\nexport var tylIconTownHallCitizen = {\n name: 'town_hall_citizen',\n data: \"\"\n};\nexport var tylIconTylerCoachAccountInfo = {\n name: 'tyler_coach_account_info',\n data: \"\"\n};\nexport var tylIconTylerTalkingTLogo = {\n name: 'tyler_talking_t_logo',\n data: \"\"\n};\nexport var tylIconTylerBudget = {\n name: 'tyler_budget',\n data: \"\"\n};\nexport var tylIconUpload = {\n name: 'upload',\n data: \"\"\n};","import { enableProdMode, importProvidersFrom, provideExperimentalZonelessChangeDetection } from '@angular/core';\r\nimport { environment } from './environments/environment';\r\nimport { AppComponent } from './app/app.component';\r\nimport { FormsModule } from '@angular/forms';\r\nimport { BrowserModule, bootstrapApplication } from '@angular/platform-browser';\r\nimport { provideAnimations } from '@angular/platform-browser/animations';\r\nimport { DatePipe } from '@angular/common';\r\nimport { BASE_URL, APIBASE_URL } from './app/app.tokens';\r\nimport { HTTP_INTERCEPTORS, provideHttpClient, withInterceptors } from '@angular/common/http';\r\nimport { ApiInterceptor } from './app/auth/api-interceptor';\r\nimport { RoleGuard } from './app/auth/guards/role-guard.service';\r\nimport { provideRouter, withComponentInputBinding } from '@angular/router';\r\nimport { appRoutes } from './app/app-routes';\r\nimport { IconRegistry } from '@tylertech/forge';\r\nimport { tylIconForgeLogo } from '@tylertech/tyler-icons/custom';\r\nimport {\r\n\ttylIconInbox,\r\n\ttylIconWbSunny,\r\n\ttylIconBrightness3,\r\n\ttylIconAdd,\r\n\ttylIconEdit,\r\n\ttylIconDelete,\r\n\ttylIconCheckCircle,\r\n\ttylIconClose,\r\n\ttylIconAddLocation,\r\n\ttylIconAddIcCall,\r\n\ttylIconAttachEmail,\r\n\ttylIconAddCall,\r\n\ttylIconLocationCity,\r\n\ttylIconLocationOff,\r\n} from '@tylertech/tyler-icons/standard';\r\nimport { tylIconApplicationSettings, tylIconEmailMinus, tylIconEmailPlus, tylIconFileDocumentMultiple, tylIconNewBox, tylIconPhoneMinus, tylIconPhonePlus } from '@tylertech/tyler-icons/extended';\r\nimport { authInterceptor, AuthInterceptor, LogLevel, provideAuth, withAppInitializerAuthCheck } from 'angular-auth-oidc-client';\r\nimport { NgxMaskConfig, provideEnvironmentNgxMask } from 'ngx-mask';\r\n\r\nIconRegistry.define([\r\n\ttylIconForgeLogo,\r\n\ttylIconInbox,\r\n\ttylIconApplicationSettings,\r\n\ttylIconFileDocumentMultiple,\r\n\ttylIconWbSunny,\r\n\ttylIconBrightness3,\r\n\ttylIconAdd,\r\n\ttylIconEdit,\r\n\ttylIconDelete,\r\n\ttylIconCheckCircle,\r\n\ttylIconClose,\r\n\ttylIconAddLocation,\r\n\ttylIconPhonePlus,\r\n\ttylIconPhoneMinus,\r\n\ttylIconAttachEmail,\r\n\ttylIconEmailPlus,\r\n\ttylIconEmailMinus,\r\n\ttylIconLocationCity,\r\n\ttylIconLocationOff\r\n\t// Add more icons here\r\n]);\r\nif (environment.production) {\r\n\tenableProdMode();\r\n}\r\nconst maskConfig: Partial = {\r\n\tvalidation: false,\r\n };\r\nbootstrapApplication(AppComponent, {\r\n\tproviders: [\r\n\t\tprovideRouter(appRoutes, withComponentInputBinding()),\r\n\t\timportProvidersFrom(BrowserModule, FormsModule),\r\n\t\t{ provide: HTTP_INTERCEPTORS, useClass: ApiInterceptor, multi: true },\r\n\t\t{ provide: BASE_URL, useValue: environment.oauthUrl },\r\n\t\t{ provide: APIBASE_URL, useValue: environment.apiUrl },\r\n\t\tRoleGuard,\r\n\t\tDatePipe,\r\n\t\tprovideAnimations(),\r\n\t\tprovideHttpClient(withInterceptors([authInterceptor()])),\r\n\t\tprovideExperimentalZonelessChangeDetection(),\r\n\t\tprovideEnvironmentNgxMask(maskConfig),\r\n\t\tprovideAuth(\r\n\t\t\t{\r\n\t\t\t\tconfig: {\r\n\t\t\t\t\tauthority: environment.oauthUrl,\r\n\t\t\t\t\tredirectUrl: `${window.location.origin}/callback`,\r\n\t\t\t\t\tclientId: 'order-management',\r\n\t\t\t\t\tresponseType: 'code',\r\n\t\t\t\t\tscope: 'openid profile email offline_access roles',\r\n\t\t\t\t\tpostLogoutRedirectUri: `${window.location.origin}/${environment.origin}`,\r\n\t\t\t\t\tsilentRenew: true,\r\n\t\t\t\t\tpostLoginRoute: '/home',\r\n\t\t\t\t\tforbiddenRoute: '/forbidden',\r\n\t\t\t\t\tunauthorizedRoute: '/unauthorized',\r\n\t\t\t\t\t\r\n\t\t\t\t\tlogLevel: LogLevel.Error,\r\n\t\t\t\t\tuseRefreshToken: true,\r\n\t\t\t\t\tsecureRoutes: ['/api/'],\r\n\t\t\t\t\tmaxIdTokenIatOffsetAllowedInSeconds: 300\r\n\t\t\t\t},\r\n\t\t\t},\r\n\t\t\twithAppInitializerAuthCheck()\r\n\t\t),\r\n\t],\r\n}).catch((err) => console.error(err));\r\n"],"mappings":"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","names":["AppComponent","constructor","title","selectors","decls","vars","template","rf","ctx","ɵɵelement","RouterOutlet","encapsulation","AnimationMetadataType","AUTO_STYLE","sequence","steps","options","AnimationMetadataType","style","tokens","NoopAnimationPlayer","duration","delay","fn","position","phaseName","methods","AnimationGroupPlayer","_players","doneCount","destroyCount","startCount","total","player","time","p","timeAtPosition","longestPlayer","longestSoFar","ɵPRE_STYLE","invalidTimingValue","exp","RuntimeError","negativeStepValue","negativeDelayValue","invalidStyleParams","varName","invalidParamValue","invalidNodeType","nodeType","invalidCssUnitValue","userProvidedProperty","value","invalidTrigger","invalidDefinition","invalidState","metadataName","missingSubs","invalidStyleValue","invalidParallelAnimation","prop","firstStart","firstEnd","secondStart","secondEnd","invalidKeyframes","invalidOffset","keyframeOffsetsOutOfOrder","keyframesMissingOffsets","invalidStagger","invalidQuery","selector","invalidExpression","expr","invalidTransitionAlias","alias","triggerBuildFailed","name","errors","RuntimeError","animationFailed","registerFailed","missingOrDestroyedAnimation","createAnimationFailed","missingPlayer","id","missingTrigger","phase","missingEvent","unsupportedTriggerEvent","unregisteredTrigger","triggerTransitionsFailed","transitionFailed","optimizeGroupPlayer","players","NoopAnimationPlayer","AnimationGroupPlayer","normalizeKeyframes$1","normalizer","keyframes","preStyles","postStyles","errors","normalizedKeyframes","previousOffset","previousKeyframe","kf","offset","isSameOffset","normalizedKeyframe","val","prop","normalizedProp","normalizedValue","ɵPRE_STYLE","AUTO_STYLE","animationFailed","listenOnPlayer","player","eventName","event","callback","copyAnimationEvent","phaseName","totalTime","disabled","makeAnimationEvent","data","element","triggerName","fromState","toState","getOrSetDefaultValue","map","key","defaultValue","value","parseTimelineCommand","command","separatorPos","id","action","documentElement","getParentElement","parent","containsVendorPrefix","_CACHED_BODY","_IS_WEBKIT","validateStyleProperty","getBodyNode","result","getBodyNode","containsElement","elm1","elm2","getParentElement","invokeQuery","element","selector","multi","elem","NoopAnimationDriver","prop","validateStyleProperty","defaultValue","keyframes","duration","delay","easing","previousPlayers","scrubberAccessRequested","NoopAnimationPlayer","__ngFactoryType__","ɵɵdefineInjectable","AnimationDriver","AnimationStyleNormalizer","ONE_SECOND","SUBSTITUTION_EXPR_START","SUBSTITUTION_EXPR_END","ENTER_CLASSNAME","LEAVE_CLASSNAME","NG_TRIGGER_CLASSNAME","NG_TRIGGER_SELECTOR","NG_ANIMATING_CLASSNAME","NG_ANIMATING_SELECTOR","resolveTimingValue","value","matches","_convertTimeValueToMS","unit","resolveTiming","timings","errors","allowNegativeValues","parseTimeExpression","exp","regex","duration","delay","easing","invalidTimingValue","delayMatch","easingVal","containsErrors","startIndex","negativeStepValue","negativeDelayValue","normalizeKeyframes","keyframes","kf","setStyles","element","styles","formerStyles","val","prop","camelProp","dashCaseToCamelCase","eraseStyles","_","normalizeAnimationEntry","steps","sequence","validateStyleParams","value","options","errors","params","matches","extractStyleParams","varName","invalidStyleParams","PARAM_REGEX","SUBSTITUTION_EXPR_START","SUBSTITUTION_EXPR_END","match","interpolateParams","original","str","localVal","invalidParamValue","DASH_CASE_REGEXP","input","m","allowPreviousPlayerStylesMerge","duration","delay","balancePreviousStylesIntoKeyframes","element","keyframes","previousStyles","startingKeyframe","missingStyleProps","val","prop","i","kf","computeStyle","visitDslNode","visitor","node","context","AnimationMetadataType","invalidNodeType","DIMENSIONAL_PROP_SET","WebAnimationsStyleNormalizer","AnimationStyleNormalizer","propertyName","errors","dashCaseToCamelCase","userProvidedProperty","normalizedProperty","value","unit","strVal","valAndSuffixMatch","invalidCssUnitValue","ANY_STATE","parseTransitionExpr","transitionValue","errors","expressions","str","parseInnerTransitionStr","eventStr","result","parseAnimationAlias","match","invalidExpression","fromState","separator","toState","makeLambdaFromStates","isFullAnyStateExpr","alias","invalidTransitionAlias","TRUE_BOOLEAN_VALUES","FALSE_BOOLEAN_VALUES","lhs","rhs","LHS_MATCH_BOOLEAN","RHS_MATCH_BOOLEAN","lhsMatch","rhsMatch","SELF_TOKEN","SELF_TOKEN_REGEX","buildAnimationAst","driver","metadata","warnings","AnimationAstBuilderVisitor","ROOT_SELECTOR","_driver","context","AnimationAstBuilderContext","visitDslNode","normalizeAnimationEntry","queryCount","depCount","states","transitions","invalidTrigger","def","AnimationMetadataType","stateDef","name","transition","invalidDefinition","styleAst","astParams","missingSubs","params","style","value","extractStyleParams","sub","invalidState","animation","matchers","normalizeAnimationOptions","s","currentTime","furthestTime","steps","step","innerAst","timingAst","constructTimingAst","styleMetadata","isEmpty","newStyleData","_styleAst","ast","styles","metadataStyles","styleTuple","AUTO_STYLE","invalidStyleValue","containsDynamicStyles","collectedEasing","styleData","SUBSTITUTION_EXPR_START","timings","endTime","startTime","tuple","prop","collectedStyles","collectedEntry","updateCollectedStyle","invalidParallelAnimation","validateStyleParams","invalidKeyframes","MAX_KEYFRAME_OFFSET","totalKeyframesWithOffsets","offsets","offsetsOutOfOrder","keyframesOutOfRange","previousOffset","keyframes","offsetVal","consumeOffset","offset","invalidOffset","keyframeOffsetsOutOfOrder","length","generatedOffset","keyframesMissingOffsets","limit","currentAnimateTimings","animateDuration","kf","i","durationUpToThisFrame","parentSelector","options","selector","includeSelf","normalizeSelector","getOrSetDefaultValue","invalidStagger","resolveTiming","hasAmpersand","token","NG_TRIGGER_SELECTOR","NG_ANIMATING_SELECTOR","normalizeParams","obj","__spreadValues","duration","makeTimingAst","strValue","v","delay","easing","createTimelineInstruction","element","preStyleProps","postStyleProps","subTimeline","ElementInstructionMap","instructions","existingInstructions","ONE_FRAME_IN_MILLISECONDS","ENTER_TOKEN","ENTER_TOKEN_REGEX","LEAVE_TOKEN","LEAVE_TOKEN_REGEX","buildAnimationTimelines","rootElement","enterClassName","leaveClassName","startingStyles","finalStyles","subInstructions","AnimationTimelineBuilderVisitor","AnimationTimelineContext","resolveTimingValue","timelines","timeline","lastRootTimeline","elementInstructions","innerContext","animationsRefsOptions","animationRefOptions","animationDelay","animationDelayValue","interpolateParams","instruction","instructionTimings","subContextCount","ctx","DEFAULT_NOOP_PREVIOUS_NODE","innerTimelines","timingValue","innerTimeline","elms","sameElementTimeline","parentContext","tl","maxTime","startingTime","_AnimationTimelineContext","_enterClassName","_leaveClassName","initialTimeline","TimelineBuilder","skipIfExists","newOptions","optionsToUpdate","newParams","paramsToUpdate","oldParams","newTime","target","updatedTimings","builder","SubTimelineBuilder","time","originalSelector","optional","results","multi","elements","invalidQuery","_TimelineBuilder","_elementTimelineStylesLookup","hasPreStyleStep","input","flattenStyles","val","properties","details1","details0","finalKeyframes","keyframe","finalKeyframe","ɵPRE_STYLE","preProps","postProps","kf0","kf1","_stretchStartingKeyframe","newKeyframes","totalTime","startingGap","newFirstKeyframe","oldFirstKeyframe","roundOffset","oldOffset","timeAtKeyframe","decimalPoints","mult","allStyles","allProperties","createTransitionInstruction","triggerName","isRemovalTransition","fromStyles","toStyles","queriedElements","EMPTY_OBJECT","AnimationTransitionFactory","_triggerName","_stateStyles","currentState","nextState","oneOrMoreTransitionsMatch","stateName","styler","currentOptions","nextOptions","skipAstBuild","transitionAnimationParams","currentAnimationParams","currentStateStyles","nextAnimationParams","nextStateStyles","preStyleMap","postStyleMap","isRemoval","animationOptions","applyParamDefaults","elm","oneOrMoreTransitionsMatch","matchFns","currentState","nextState","element","params","fn","applyParamDefaults","userParams","defaults","result","__spreadValues","key","value","AnimationStateStyles","styles","defaultParams","normalizer","errors","finalStyles","combinedParams","val","prop","interpolateParams","normalizedProp","buildTrigger","name","ast","AnimationTrigger","_normalizer","balanceProperties","AnimationTransitionFactory","createFallbackTransition","f","triggerName","states","matchers","fromState","toState","animation","AnimationMetadataType","transition","stateMap","key1","key2","EMPTY_INSTRUCTION_MAP","ElementInstructionMap","TimelineAnimationEngine","bodyNode","_driver","id","metadata","warnings","buildAnimationAst","registerFailed","i","preStyles","postStyles","keyframes","normalizeKeyframes$1","options","instructions","autoStylesMap","buildAnimationTimelines","ENTER_CLASSNAME","LEAVE_CLASSNAME","inst","getOrSetDefaultValue","missingOrDestroyedAnimation","createAnimationFailed","_","AUTO_STYLE","players","player","optimizeGroupPlayer","index","missingPlayer","eventName","callback","baseEvent","makeAnimationEvent","listenOnPlayer","command","args","QUEUED_CLASSNAME","QUEUED_SELECTOR","DISABLED_CLASSNAME","DISABLED_SELECTOR","STAR_CLASSNAME","STAR_SELECTOR","EMPTY_PLAYER_ARRAY","NULL_REMOVAL_STATE","NULL_REMOVED_QUERIED_STATE","REMOVAL_FLAG","StateValue","input","namespaceId","isObj","normalizeTriggerValue","_a","__objRest","newParams","oldParams","VOID_VALUE","DEFAULT_STATE_VALUE","AnimationTransitionNamespace","hostElement","_engine","addClass","phase","missingTrigger","missingEvent","isTriggerEventValid","unsupportedTriggerEvent","listeners","data","triggersWithStates","NG_TRIGGER_CLASSNAME","trigger","unregisteredTrigger","defaultToFallback","TransitionAnimationPlayer","objEquals","fromStyles","toStyles","eraseStyles","setStyles","playersOnElement","isFallbackTransition","removeClass","entry","elementPlayers","rootElement","context","elements","NG_TRIGGER_SELECTOR","elm","namespaces","ns","destroyAfterComplete","triggerStates","previousTriggersValues","state","elementStates","visitedTriggers","listener","engine","containsPotentialParentTransition","currentPlayers","parent","removalFlag","microtaskId","a","b","d0","d1","p","TransitionAnimationEngine","driver","namespaceList","namespacesByHostElement","found","ancestor","ancestorNs","stateValue","isElementNode","insertBefore","details","hostNS","hasAnimation","subTimelines","enterClassName","leaveClassName","skipBuildAst","containerElement","NG_ANIMATING_SELECTOR","resolve","node","cleanupFns","quietFns","triggerTransitionsFailed","skippedPlayers","skippedPlayersMap","queuedInstructions","queriedElements","allPreStyleElements","allPostStyleElements","disabledElementsSet","nodesThatAreDisabled","allTriggerElements","enterNodeMap","buildRootMap","enterNodeMapIds","nodes","root","className","allLeaveNodes","mergedLeaveNodes","leaveNodesWithoutAnimations","leaveNodeMapIds","leaveNodeMap","allPlayers","erroneousTransitions","previousValue","nodeIsOrphaned","instruction","timelines","tl","tuple","stringMap","setVal","transitionFailed","allPreviousPlayersMap","animationElementMap","prevPlayer","replaceNodes","replacePostStylesAsPre","postStylesMap","cloakAndComputeStyles","preStylesMap","ɵPRE_STYLE","post","pre","rootPlayers","subPlayers","NO_PARENT_ANIMATION_ELEMENT_DETECTED","parentWithAnimation","parentsToAdd","detectedParent","innerPlayer","parentPlayers","playersForElement","queriedPlayerResults","queriedInnerElements","j","queriedPlayers","activePlayers","removeNodesAfterAnimationDone","isQueriedElement","toStateValue","queriedElementPlayers","isRemovalAnimation","targetNameSpaceId","targetTriggerName","timelineInstruction","realPlayer","allQueriedPlayers","allConsumedElements","allSubElements","allNewPlayers","NoopAnimationPlayer","previousPlayers","flattenGroupPlayers","pp","wrappedPlayer","deleteOrUnsetInMap","NG_ANIMATING_CLASSNAME","callbacks","totalTime","phaseName","map","currentValues","cloakElement","oldValue","valuesMap","elementPropsMap","defaultStyle","cloakVals","failedElements","props","roots","rootMap","NULL_NODE","nodeSet","localRootMap","getRoot","finalPlayers","_flattenGroupPlayersRecur","AnimationGroupPlayer","k1","k2","postEntry","preEntry","AnimationEngine","doc","componentId","cacheKey","triggerBuildFailed","disable","property","action","parseTimelineCommand","eventPhase","cb","packageNonAnimatableStyles","startStyles","endStyles","filterNonAnimatableStyles","SpecialCasedStyles","_element","_startStyles","_endStyles","initialStyles","isNonAnimatableStyle","WebAnimationsPlayer","_specialStyles","onFinish","kfs","frame","computeStyle","methods","WebAnimationsDriver","elm1","elm2","containsElement","getParentElement","selector","multi","invokeQuery","defaultValue","duration","delay","easing","fill","playerOptions","previousStyles","previousWebAnimationPlayers","allowPreviousPlayerStylesMerge","_keyframes","normalizeKeyframes","balancePreviousStylesIntoKeyframes","specialStyles","ANIMATION_PREFIX","DISABLE_ANIMATIONS_FLAG","BaseAnimationRenderer","namespaceId","delegate","engine","_onDestroy","node","name","namespace","value","parent","newChild","refChild","isMove","oldChild","isHostElement","selectorOrNode","preserveContent","el","style","flags","target","eventName","callback","options","element","AnimationRenderer","factory","onDestroy","resolveElementFromTarget","phase","parseTriggerCallbackName","event","countId","triggerName","dotIndex","trigger","AnimationRendererFactory","_zone","hostElement","type","EMPTY_NAMESPACE_ID","cache","renderer","onRendererDestroy","componentId","registerTrigger","count","fn","data","animationCallbacksBuffer","tuple","InjectableAnimationEngine","AnimationEngine","doc","driver","normalizer","__ngFactoryType__","ɵɵinject","DOCUMENT","AnimationDriver","AnimationStyleNormalizer","ɵɵdefineInjectable","instantiateDefaultStyleNormalizer","WebAnimationsStyleNormalizer","instantiateRendererFactory","renderer","engine","zone","AnimationRendererFactory","SHARED_ANIMATION_PROVIDERS","RendererFactory2","DomRendererFactory2","NgZone","BROWSER_NOOP_ANIMATIONS_PROVIDERS","NoopAnimationDriver","ANIMATION_MODULE_TYPE","BROWSER_ANIMATIONS_PROVIDERS","WebAnimationsDriver","provideAnimations","performanceMarkFeature","BROWSER_ANIMATIONS_PROVIDERS","BASE_URL","InjectionToken","APIBASE_URL","ApiInterceptor","constructor","oidcSecurityService","inject","OidcSecurityService","intercept","request","next","showLoader","isAuthenticated$","pipe","switchMap","isAuthenticated","accessToken","getAccessToken","authReq","clone","setHeaders","Authorization","handle","finalize","hideLoader","catchError","error","throwError","factory","ɵfac","providedIn","tylIconApplicationSettings","tylIconEmailMinus","tylIconEmailPlus","tylIconFileDocumentMultiple","tylIconPhoneMinus","tylIconPhonePlus","tylIconForgeLogo","IconRegistry","define","tylIconForgeLogo","tylIconInbox","tylIconApplicationSettings","tylIconFileDocumentMultiple","tylIconWbSunny","tylIconBrightness3","tylIconAdd","tylIconEdit","tylIconDelete","tylIconCheckCircle","tylIconClose","tylIconAddLocation","tylIconPhonePlus","tylIconPhoneMinus","tylIconAttachEmail","tylIconEmailPlus","tylIconEmailMinus","tylIconLocationCity","tylIconLocationOff","environment","production","enableProdMode","maskConfig","validation","bootstrapApplication","AppComponent","providers","provideRouter","appRoutes","withComponentInputBinding","importProvidersFrom","BrowserModule","FormsModule","provide","HTTP_INTERCEPTORS","useClass","ApiInterceptor","multi","BASE_URL","useValue","oauthUrl","APIBASE_URL","apiUrl","RoleGuard","DatePipe","provideAnimations","provideHttpClient","withInterceptors","authInterceptor","provideExperimentalZonelessChangeDetection","provideEnvironmentNgxMask","provideAuth","config","authority","redirectUrl","window","location","origin","clientId","responseType","scope","postLogoutRedirectUri","silentRenew","postLoginRoute","forbiddenRoute","unauthorizedRoute","logLevel","LogLevel","Error","useRefreshToken","secureRoutes","maxIdTokenIatOffsetAllowedInSeconds","withAppInitializerAuthCheck","catch","err","console","error"],"x_google_ignoreList":[2,3,4,7,8]}