{"version":3,"sources":["node_modules/@ng-icons/core/fesm2022/ng-icons-core.mjs","node_modules/@ng-icons/bootstrap-icons/fesm2022/ng-icons-bootstrap-icons.mjs"],"sourcesContent":["import * as i0 from '@angular/core';\nimport { InjectionToken, inject, input, numberAttribute, booleanAttribute, computed, Component, ChangeDetectionStrategy, Injector, Renderer2, PLATFORM_ID, ElementRef, effect, HostAttributeToken, runInInjectionContext, NgModule, Inject } from '@angular/core';\nimport { isPlatformServer } from '@angular/common';\nimport { isObservable } from 'rxjs';\nconst _c0 = [\"*\"];\nconst NgGlyphConfigToken = new InjectionToken('Ng Glyph Config');\nconst defaultConfig = {\n size: '1em',\n opticalSize: 20,\n weight: 400,\n grade: 0,\n fill: false\n};\n/**\n * Provide the configuration for the glyph\n * @param config The configuration to use\n */\nfunction provideNgGlyphsConfig(config) {\n return {\n provide: NgGlyphConfigToken,\n useValue: {\n ...defaultConfig,\n ...config\n }\n };\n}\n/**\n * Inject the configuration for the glyphs\n * @returns The configuration to use\n * @internal\n */\nfunction injectNgGlyphsConfig() {\n return inject(NgGlyphConfigToken, {\n optional: true\n }) ?? defaultConfig;\n}\nconst NgGlyphsToken = new InjectionToken('NgGlyphsToken');\nfunction provideNgGlyphs(...glyphsets) {\n // if there are no glyphsets, throw an error\n if (!glyphsets.length) {\n throw new Error('Please provide at least one glyphset.');\n }\n // the default glyphset is the first one\n const defaultGlyphset = glyphsets[0].name;\n return [{\n provide: NgGlyphsToken,\n useValue: {\n defaultGlyphset,\n glyphsets\n }\n }];\n}\nfunction injectNgGlyphs() {\n const glyphs = inject(NgGlyphsToken, {\n optional: true\n });\n if (!glyphs) {\n throw new Error('Please provide the glyphs using the provideNgGlyphs() function.');\n }\n return glyphs;\n}\nfunction coerceCssPixelValue(value) {\n return value == null ? '' : /^\\d+$/.test(value) ? `${value}px` : value;\n}\nlet NgGlyph = /*#__PURE__*/(() => {\n class NgGlyph {\n constructor() {\n /**\n * Access the available glyphsets\n */\n this.glyphsets = injectNgGlyphs();\n /**\n * Access the default configuration\n */\n this.config = injectNgGlyphsConfig();\n /**\n * Define the name of the glyph to display\n */\n this.name = input.required();\n /**\n * Define the glyphset to use\n */\n this.glyphset = input(this.glyphsets.defaultGlyphset);\n /**\n * Define the optical size of the glyph\n */\n this.opticalSize = input(this.config.opticalSize, {\n transform: numberAttribute\n });\n /**\n * Define the weight of the glyph\n */\n this.weight = input(this.config.weight, {\n transform: numberAttribute\n });\n /**\n * Define the grade of the glyph\n */\n this.grade = input(this.config.grade, {\n transform: numberAttribute\n });\n /**\n * Define the fill of the glyph\n */\n this.fill = input(this.config.fill, {\n transform: booleanAttribute\n });\n /**\n * Define the size of the glyph\n */\n this.size = input(this.config.size, {\n transform: coerceCssPixelValue\n });\n /**\n * Define the color of the glyph\n */\n this.color = input(this.config.color);\n /**\n * Derive the glyphset class from the glyphset name\n */\n this.glyphsetClass = computed(() => {\n const glyphset = this.glyphsets.glyphsets.find(glyphset => glyphset.name === this.glyphset());\n if (!glyphset) {\n throw new Error(`The glyphset \"${this.glyphset()}\" does not exist. Please provide a valid glyphset.`);\n }\n return glyphset.baseClass;\n });\n /**\n * Define the font variation settings of the glyph\n */\n this.fontVariationSettings = computed(() => {\n return `'FILL' ${this.fill() ? 1 : 0}, 'wght' ${this.weight()}, 'GRAD' ${this.grade()}, 'opsz' ${this.opticalSize()}`;\n });\n }\n static {\n this.ɵfac = function NgGlyph_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NgGlyph)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: NgGlyph,\n selectors: [[\"ng-glyph\"]],\n hostVars: 9,\n hostBindings: function NgGlyph_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵhostProperty(\"textContent\", ctx.name());\n i0.ɵɵclassMap(ctx.glyphsetClass());\n i0.ɵɵstyleProp(\"--ng-glyph__size\", ctx.size())(\"color\", ctx.color())(\"font-variation-settings\", ctx.fontVariationSettings());\n }\n },\n inputs: {\n name: [1, \"name\"],\n glyphset: [1, \"glyphset\"],\n opticalSize: [1, \"opticalSize\"],\n weight: [1, \"weight\"],\n grade: [1, \"grade\"],\n fill: [1, \"fill\"],\n size: [1, \"size\"],\n color: [1, \"color\"]\n },\n decls: 0,\n vars: 0,\n template: function NgGlyph_Template(rf, ctx) {},\n styles: [\"[_nghost-%COMP%]{display:inline-block;width:var(--ng-glyph__size);height:var(--ng-glyph__size);font-size:var(--ng-glyph__size);overflow:hidden}\"],\n changeDetection: 0\n });\n }\n }\n return NgGlyph;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Helper function to create an object that represents a feature.\n */\nfunction createFeature(kind, providers) {\n return {\n ɵkind: kind,\n ɵproviders: providers\n };\n}\nconst NgIconPreProcessorToken = new InjectionToken('Ng Icon Pre Processor');\nconst NgIconPostProcessorToken = new InjectionToken('Ng Icon Post Processor');\nfunction injectNgIconPreProcessor() {\n return inject(NgIconPreProcessorToken, {\n optional: true\n }) ?? (icon => icon);\n}\nfunction injectNgIconPostProcessor() {\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n return inject(NgIconPostProcessorToken, {\n optional: true\n }) ?? (() => {});\n}\nfunction preprocessIcon(icon) {\n // rename all style attributes to data-style to avoid being blocked by the CSP\n return icon.replace(/style\\s*=/g, 'data-style=');\n}\nfunction postprocessIcon(element) {\n // find all elements with a data-style attribute and get the styles from it\n // and apply them to the element using the style property and remove the data-style attribute\n const elements = element.querySelectorAll('[data-style]');\n for (const element of Array.from(elements)) {\n const styles = element.getAttribute('data-style');\n styles?.split(';').forEach(style => {\n const [property, value] = style.split(':');\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n element.style[property.trim()] = value.trim();\n });\n element.removeAttribute('data-style');\n }\n}\n/**\n * Process icons in a way that is compliant with the content security policy\n */\nfunction withContentSecurityPolicy() {\n return createFeature(0 /* NgIconFeatureKind.ContentSecurityPolicyFeature */, [{\n provide: NgIconPreProcessorToken,\n useValue: preprocessIcon\n }, {\n provide: NgIconPostProcessorToken,\n useValue: postprocessIcon\n }]);\n}\nconst LoggerToken = new InjectionToken('Ng Icon Logger');\n/**\n * The default logger implementation that logs to the console\n */\nclass DefaultLogger {\n log(message) {\n console.log(message);\n }\n warn(message) {\n console.warn(message);\n }\n error(message) {\n console.error(message);\n }\n}\n/**\n * A logger implementation that throws an error on warnings and errors\n */\nclass ExceptionLogger {\n log(message) {\n console.log(message);\n }\n warn(message) {\n throw new Error(message);\n }\n error(message) {\n throw new Error(message);\n }\n}\nfunction injectLogger() {\n return inject(LoggerToken, {\n optional: true\n }) ?? new DefaultLogger();\n}\n/**\n * Throw exceptions on warnings and errors\n */\nfunction withExceptionLogger() {\n return createFeature(1 /* NgIconFeatureKind.ExceptionLoggerFeature */, [{\n provide: LoggerToken,\n useClass: ExceptionLogger\n }]);\n}\nconst NgIconConfigToken = new InjectionToken('Ng Icon Config');\n/**\n * Provide the configuration for the icons\n * @param config The configuration to use\n */\nfunction provideNgIconsConfig(config, ...features) {\n return [{\n provide: NgIconConfigToken,\n useValue: config\n }, features.map(feature => feature.ɵproviders)];\n}\n/**\n * Inject the configuration for the icons\n * @returns The configuration to use\n * @internal\n */\nfunction injectNgIconConfig() {\n return inject(NgIconConfigToken, {\n optional: true\n }) ?? {};\n}\nconst NgIconLoaderToken = new InjectionToken('Ng Icon Loader Token');\n/**\n * Helper function to create an object that represents a Loader feature.\n */\nfunction loaderFeature(kind, providers) {\n return {\n kind: kind,\n providers: providers\n };\n}\nconst NgIconCacheToken = new InjectionToken('Ng Icon Cache Token');\n/**\n * Add caching to the loader. This will prevent the loader from being called multiple times for the same icon name.\n */\nfunction withCaching() {\n return loaderFeature(0 /* NgIconLoaderFeatureKind.CachingFeature */, [{\n provide: NgIconCacheToken,\n useValue: new Map()\n }]);\n}\n/**\n * Provide a function that will return the SVG content for a given icon name.\n * @param loader The function that will return the SVG content for a given icon name.\n * @param features The list of features to apply to the loader.\n * @returns The SVG content for a given icon name.\n */\nfunction provideNgIconLoader(loader, ...features) {\n return [{\n provide: NgIconLoaderToken,\n useValue: loader\n }, features.map(feature => feature.providers)];\n}\n/**\n * Inject the function that will return the SVG content for a given icon name.\n */\nfunction injectNgIconLoader() {\n return inject(NgIconLoaderToken, {\n optional: true\n });\n}\n/**\n * Inject the cache that will store the SVG content for a given icon name.\n */\nfunction injectNgIconLoaderCache() {\n return inject(NgIconCacheToken, {\n optional: true\n });\n}\n\n/**\n * Define the icons to use\n * @param icons The icons to provide\n */\nfunction provideIcons(icons) {\n return [{\n provide: NgIconsToken,\n useFactory: (parentIcons = inject(NgIconsToken, {\n optional: true,\n skipSelf: true\n })) => ({\n ...parentIcons?.reduce((acc, icons) => ({\n ...acc,\n ...icons\n }), {}),\n ...icons\n }),\n multi: true\n }];\n}\nconst NgIconsToken = new InjectionToken('Icons Token');\n/**\n * Inject the icons to use\n * @returns The icons to use\n * @internal\n */\nfunction injectNgIcons() {\n return inject(NgIconsToken, {\n optional: true\n }) ?? [];\n}\n\n/**\n * A loader may return a promise, an observable or a string. This function will coerce the result into a promise.\n * @returns\n */\nfunction coerceLoaderResult(result) {\n if (typeof result === 'string') {\n return Promise.resolve(result);\n }\n if (isObservable(result)) {\n // toPromise is deprecated, but we can't use lastValueFrom because it's not available in RxJS 6\n // so for now we'll just use toPromise\n return result.toPromise();\n }\n return result;\n}\n\n/**\n * Hyphenated to lowerCamelCase\n */\nfunction toPropertyName(str) {\n return str.replace(/([^a-zA-Z0-9])+(.)?/g, (_, __, chr) => chr ? chr.toUpperCase() : '').replace(/[^a-zA-Z\\d]/g, '').replace(/^([A-Z])/, m => m.toLowerCase());\n}\nlet uniqueId = 0;\nlet NgIcon = /*#__PURE__*/(() => {\n class NgIcon {\n constructor() {\n /** Access the global icon config */\n this.config = injectNgIconConfig();\n /** Access the icons */\n this.icons = injectNgIcons();\n /** Access the icon loader if defined */\n this.loader = injectNgIconLoader();\n /** Access the icon cache if defined */\n this.cache = injectNgIconLoaderCache();\n /** Access the pre-processor */\n this.preProcessor = injectNgIconPreProcessor();\n /** Access the post-processor */\n this.postProcessor = injectNgIconPostProcessor();\n /** Access the injector */\n this.injector = inject(Injector);\n /** Access the renderer */\n this.renderer = inject(Renderer2);\n /** Determine the platform we are rendering on */\n this.platform = inject(PLATFORM_ID);\n /** Access the element ref */\n this.elementRef = inject(ElementRef);\n /** A unique id for this instance */\n this.uniqueId = uniqueId++;\n /** Access the logger */\n this.logger = injectLogger();\n /** Define the name of the icon to display */\n this.name = input();\n /** Define the svg of the icon to display */\n this.svg = input();\n /** Define the size of the icon */\n this.size = input(this.config.size, {\n transform: coerceCssPixelValue\n });\n /** Define the stroke-width of the icon */\n this.strokeWidth = input(this.config.strokeWidth);\n /** Define the color of the icon */\n this.color = input(this.config.color);\n // update the icon anytime the name or svg changes\n effect(() => this.updateIcon());\n const ariaHidden = inject(new HostAttributeToken('aria-hidden'), {\n optional: true\n });\n // If the user has not explicitly set aria-hidden, mark the icon as hidden, as this is\n // the right thing to do for the majority of icon use-cases.\n if (!ariaHidden) {\n this.elementRef.nativeElement.setAttribute('aria-hidden', 'true');\n }\n }\n ngOnDestroy() {\n this.svgElement = undefined;\n }\n async updateIcon() {\n const name = this.name();\n const svg = this.svg();\n // if the svg is defined, insert it into the template\n if (svg !== undefined) {\n this.setSvg(svg);\n return;\n }\n if (name === undefined) {\n return;\n }\n const propertyName = toPropertyName(name);\n for (const icons of [...this.icons].reverse()) {\n if (icons[propertyName]) {\n // insert the SVG into the template\n this.setSvg(icons[propertyName]);\n return;\n }\n }\n // if there is a loader defined, use it to load the icon\n if (this.loader) {\n const result = await this.requestIconFromLoader(name);\n // if the result is a string, insert the SVG into the template\n if (result !== null) {\n this.setSvg(result);\n return;\n }\n }\n // if there is no icon with this name warn the user as they probably forgot to import it\n this.logger.warn(`No icon named ${name} was found. You may need to import it using the withIcons function.`);\n }\n setSvg(svg) {\n // if we are on the server, simply innerHTML the svg as we don't have the\n // level of control over the DOM that we do on the client, in otherwords\n // the approach we take to insert the svg on the client will not work on the server\n if (isPlatformServer(this.platform)) {\n this.elementRef.nativeElement.innerHTML = svg;\n // mark this component as server side rendered\n this.elementRef.nativeElement.setAttribute('data-ng-icon-ssr', '');\n return;\n }\n // if this was previously server side rendered, we should check if the svg is the same\n // if it is, we don't need to do anything\n if (this.elementRef.nativeElement.hasAttribute('data-ng-icon-ssr')) {\n // if it is different, we need to remove the server side rendered flag\n this.elementRef.nativeElement.removeAttribute('data-ng-icon-ssr');\n // retrieve the svg element\n this.svgElement = this.elementRef.nativeElement.querySelector('svg') ?? undefined;\n if (this.elementRef.nativeElement.innerHTML === svg) {\n return;\n }\n }\n // remove the old element\n if (this.svgElement) {\n this.renderer.removeChild(this.elementRef.nativeElement, this.svgElement);\n }\n // if the svg is empty, don't insert anything\n if (svg === '') {\n return;\n }\n const template = this.renderer.createElement('template');\n svg = this.replaceIds(svg);\n this.renderer.setProperty(template, 'innerHTML', this.preProcessor(svg));\n this.svgElement = template.content.firstElementChild;\n this.postProcessor(this.svgElement);\n // insert the element into the dom\n this.renderer.appendChild(this.elementRef.nativeElement, this.svgElement);\n }\n replaceIds(svg) {\n // ids are defined like ID_PLACEHOLDER_0, ID_PLACEHOLDER_1, etc.\n // we need to replace these with the actual ids e.g. ng-icon-0-0, ng-icon-0-1, etc.\n // if there are no ids, we don't need to do anything\n if (!svg.includes('ID_PLACEHOLDER_')) {\n return svg;\n }\n // we can just retain the trailing number as the prefix is always the same\n const regex = /ID_PLACEHOLDER_(\\d+)/g;\n // we need to keep track of the ids we have replaced\n const idMap = new Map();\n // find all the matches\n const matches = new Set(svg.match(regex));\n if (matches === null) {\n return svg;\n }\n // replace the ids\n for (const match of matches) {\n const id = match.replace('ID_PLACEHOLDER_', '');\n const placeholder = `ng-icon-${this.uniqueId}-${idMap.size}`;\n idMap.set(id, placeholder);\n svg = svg.replace(new RegExp(match, 'g'), placeholder);\n }\n return svg;\n }\n /**\n * Request the icon from the loader.\n * @param name The name of the icon to load.\n * @returns The SVG content for a given icon name.\n */\n requestIconFromLoader(name) {\n return new Promise(resolve => {\n runInInjectionContext(this.injector, async () => {\n // if we have a cache, check if the icon is already loaded (i.e, it is a string)\n if (this.cache) {\n const cachedResult = this.cache.get(name);\n if (typeof cachedResult === 'string') {\n resolve(cachedResult);\n return;\n }\n // it may be a promise, so we need to await it\n if (cachedResult instanceof Promise) {\n const result = await cachedResult;\n resolve(result);\n return;\n }\n }\n const promise = coerceLoaderResult(this.loader(name));\n // store the promise in the cache so if we get repeated calls (e.g. in a loop) before the loader has resolved\n // then don't call the loader function multiple times\n this.cache?.set(name, promise);\n // await the result of the promise\n const result = await promise;\n // if we have a cache, store the result\n this.cache?.set(name, result);\n resolve(result);\n });\n });\n }\n static {\n this.ɵfac = function NgIcon_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NgIcon)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: NgIcon,\n selectors: [[\"ng-icon\"]],\n hostAttrs: [\"role\", \"img\"],\n hostVars: 6,\n hostBindings: function NgIcon_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵstyleProp(\"--ng-icon__stroke-width\", ctx.strokeWidth())(\"--ng-icon__size\", ctx.size())(\"--ng-icon__color\", ctx.color());\n }\n },\n inputs: {\n name: [1, \"name\"],\n svg: [1, \"svg\"],\n size: [1, \"size\"],\n strokeWidth: [1, \"strokeWidth\"],\n color: [1, \"color\"]\n },\n decls: 0,\n vars: 0,\n template: function NgIcon_Template(rf, ctx) {},\n styles: [\"[_nghost-%COMP%]{display:inline-block;width:var(--ng-icon__size, 1em);height:var(--ng-icon__size, 1em);line-height:initial;vertical-align:initial;overflow:hidden}[_nghost-%COMP%] svg{width:inherit;height:inherit;vertical-align:inherit}@layer ng-icon{[_nghost-%COMP%]{color:var(--ng-icon__color, currentColor)}}\"],\n changeDetection: 0\n });\n }\n }\n return NgIcon;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet NgIconsModule = /*#__PURE__*/(() => {\n class NgIconsModule {\n constructor(icons) {\n if (Object.keys(icons).length === 0) {\n throw new Error('No icons have been provided. Ensure to include some icons by importing them using NgIconsModule.withIcons({ ... }).');\n }\n }\n /**\n * Define the icons that will be included in the application. This allows unused icons to\n * be tree-shaken away to reduce bundle size\n * @param icons The object containing the required icons\n */\n static withIcons(icons) {\n return {\n ngModule: NgIconsModule,\n providers: provideIcons(icons)\n };\n }\n static {\n this.ɵfac = function NgIconsModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NgIconsModule)(i0.ɵɵinject(NgIconsToken));\n };\n }\n static {\n this.ɵmod = /* @__PURE__ */i0.ɵɵdefineNgModule({\n type: NgIconsModule\n });\n }\n static {\n this.ɵinj = /* @__PURE__ */i0.ɵɵdefineInjector({});\n }\n }\n return NgIconsModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nconst NG_ICON_DIRECTIVES = [NgIcon];\nlet NgIconStack = /*#__PURE__*/(() => {\n class NgIconStack {\n constructor() {\n /** The size of the child icons */\n this.size = input.required();\n }\n static {\n this.ɵfac = function NgIconStack_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || NgIconStack)();\n };\n }\n static {\n this.ɵcmp = /* @__PURE__ */i0.ɵɵdefineComponent({\n type: NgIconStack,\n selectors: [[\"ng-icon-stack\"]],\n hostVars: 2,\n hostBindings: function NgIconStack_HostBindings(rf, ctx) {\n if (rf & 2) {\n i0.ɵɵstyleProp(\"--ng-icon__size\", ctx.size());\n }\n },\n inputs: {\n size: [1, \"size\"]\n },\n ngContentSelectors: _c0,\n decls: 1,\n vars: 0,\n template: function NgIconStack_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵprojectionDef();\n i0.ɵɵprojection(0);\n }\n },\n styles: [\"[_nghost-%COMP%]{display:inline-flex;justify-content:center;align-items:center;position:relative;width:var(--ng-icon__size);height:var(--ng-icon__size)}[_nghost-%COMP%] ng-icon{position:absolute}\"],\n changeDetection: 0\n });\n }\n }\n return NgIconStack;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { NG_ICON_DIRECTIVES, NgGlyph, NgGlyphConfigToken, NgIcon, NgIconCacheToken, NgIcon as NgIconComponent, NgIconConfigToken, NgIconLoaderToken, NgIconStack, NgIconsModule, NgIconsToken, injectNgGlyphsConfig, injectNgIconConfig, injectNgIconLoader, injectNgIconLoaderCache, injectNgIcons, provideIcons, provideNgGlyphs, provideNgGlyphsConfig, provideNgIconLoader, provideNgIconsConfig, withCaching, withContentSecurityPolicy, withExceptionLogger };\n","const bootstrap0CircleFill = ``;\nconst bootstrap0Circle = ``;\nconst bootstrap0SquareFill = ``;\nconst bootstrap0Square = ``;\nconst bootstrap1CircleFill = ``;\nconst bootstrap1Circle = ``;\nconst bootstrap1SquareFill = ``;\nconst bootstrap1Square = ``;\nconst bootstrap123 = ``;\nconst bootstrap2CircleFill = ``;\nconst bootstrap2Circle = ``;\nconst bootstrap2SquareFill = ``;\nconst bootstrap2Square = ``;\nconst bootstrap3CircleFill = ``;\nconst bootstrap3Circle = ``;\nconst bootstrap3SquareFill = ``;\nconst bootstrap3Square = ``;\nconst bootstrap4CircleFill = ``;\nconst bootstrap4Circle = ``;\nconst bootstrap4SquareFill = ``;\nconst bootstrap4Square = ``;\nconst bootstrap5CircleFill = ``;\nconst bootstrap5Circle = ``;\nconst bootstrap5SquareFill = ``;\nconst bootstrap5Square = ``;\nconst bootstrap6CircleFill = ``;\nconst bootstrap6Circle = ``;\nconst bootstrap6SquareFill = ``;\nconst bootstrap6Square = ``;\nconst bootstrap7CircleFill = ``;\nconst bootstrap7Circle = ``;\nconst bootstrap7SquareFill = ``;\nconst bootstrap7Square = ``;\nconst bootstrap8CircleFill = ``;\nconst bootstrap8Circle = ``;\nconst bootstrap8SquareFill = ``;\nconst bootstrap8Square = ``;\nconst bootstrap9CircleFill = ``;\nconst bootstrap9Circle = ``;\nconst bootstrap9SquareFill = ``;\nconst bootstrap9Square = ``;\nconst bootstrapActivity = ``;\nconst bootstrapAirplaneEnginesFill = ``;\nconst bootstrapAirplaneEngines = ``;\nconst bootstrapAirplaneFill = ``;\nconst bootstrapAirplane = ``;\nconst bootstrapAlarmFill = ``;\nconst bootstrapAlarm = ``;\nconst bootstrapAlexa = ``;\nconst bootstrapAlignBottom = ``;\nconst bootstrapAlignCenter = ``;\nconst bootstrapAlignEnd = ``;\nconst bootstrapAlignMiddle = ``;\nconst bootstrapAlignStart = ``;\nconst bootstrapAlignTop = ``;\nconst bootstrapAlipay = ``;\nconst bootstrapAlphabetUppercase = ``;\nconst bootstrapAlphabet = ``;\nconst bootstrapAlt = ``;\nconst bootstrapAmazon = ``;\nconst bootstrapAmd = ``;\nconst bootstrapAndroid = ``;\nconst bootstrapAndroid2 = ``;\nconst bootstrapAppIndicator = ``;\nconst bootstrapApp = ``;\nconst bootstrapApple = ``;\nconst bootstrapArchiveFill = ``;\nconst bootstrapArchive = ``;\nconst bootstrapArrow90degDown = ``;\nconst bootstrapArrow90degLeft = ``;\nconst bootstrapArrow90degRight = ``;\nconst bootstrapArrow90degUp = ``;\nconst bootstrapArrowBarDown = ``;\nconst bootstrapArrowBarLeft = ``;\nconst bootstrapArrowBarRight = ``;\nconst bootstrapArrowBarUp = ``;\nconst bootstrapArrowClockwise = ``;\nconst bootstrapArrowCounterclockwise = ``;\nconst bootstrapArrowDownCircleFill = ``;\nconst bootstrapArrowDownCircle = ``;\nconst bootstrapArrowDownLeftCircleFill = ``;\nconst bootstrapArrowDownLeftCircle = ``;\nconst bootstrapArrowDownLeftSquareFill = ``;\nconst bootstrapArrowDownLeftSquare = ``;\nconst bootstrapArrowDownLeft = ``;\nconst bootstrapArrowDownRightCircleFill = ``;\nconst bootstrapArrowDownRightCircle = ``;\nconst bootstrapArrowDownRightSquareFill = ``;\nconst bootstrapArrowDownRightSquare = ``;\nconst bootstrapArrowDownRight = ``;\nconst bootstrapArrowDownShort = ``;\nconst bootstrapArrowDownSquareFill = ``;\nconst bootstrapArrowDownSquare = ``;\nconst bootstrapArrowDownUp = ``;\nconst bootstrapArrowDown = ``;\nconst bootstrapArrowLeftCircleFill = ``;\nconst bootstrapArrowLeftCircle = ``;\nconst bootstrapArrowLeftRight = ``;\nconst bootstrapArrowLeftShort = ``;\nconst bootstrapArrowLeftSquareFill = ``;\nconst bootstrapArrowLeftSquare = ``;\nconst bootstrapArrowLeft = ``;\nconst bootstrapArrowRepeat = ``;\nconst bootstrapArrowReturnLeft = ``;\nconst bootstrapArrowReturnRight = ``;\nconst bootstrapArrowRightCircleFill = ``;\nconst bootstrapArrowRightCircle = ``;\nconst bootstrapArrowRightShort = ``;\nconst bootstrapArrowRightSquareFill = ``;\nconst bootstrapArrowRightSquare = ``;\nconst bootstrapArrowRight = ``;\nconst bootstrapArrowThroughHeartFill = ``;\nconst bootstrapArrowThroughHeart = ``;\nconst bootstrapArrowUpCircleFill = ``;\nconst bootstrapArrowUpCircle = ``;\nconst bootstrapArrowUpLeftCircleFill = ``;\nconst bootstrapArrowUpLeftCircle = ``;\nconst bootstrapArrowUpLeftSquareFill = ``;\nconst bootstrapArrowUpLeftSquare = ``;\nconst bootstrapArrowUpLeft = ``;\nconst bootstrapArrowUpRightCircleFill = ``;\nconst bootstrapArrowUpRightCircle = ``;\nconst bootstrapArrowUpRightSquareFill = ``;\nconst bootstrapArrowUpRightSquare = ``;\nconst bootstrapArrowUpRight = ``;\nconst bootstrapArrowUpShort = ``;\nconst bootstrapArrowUpSquareFill = ``;\nconst bootstrapArrowUpSquare = ``;\nconst bootstrapArrowUp = ``;\nconst bootstrapArrowsAngleContract = ``;\nconst bootstrapArrowsAngleExpand = ``;\nconst bootstrapArrowsCollapseVertical = ``;\nconst bootstrapArrowsCollapse = ``;\nconst bootstrapArrowsExpandVertical = ``;\nconst bootstrapArrowsExpand = ``;\nconst bootstrapArrowsFullscreen = ``;\nconst bootstrapArrowsMove = ``;\nconst bootstrapArrowsVertical = ``;\nconst bootstrapArrows = ``;\nconst bootstrapAspectRatioFill = ``;\nconst bootstrapAspectRatio = ``;\nconst bootstrapAsterisk = ``;\nconst bootstrapAt = ``;\nconst bootstrapAwardFill = ``;\nconst bootstrapAward = ``;\nconst bootstrapBack = ``;\nconst bootstrapBackpackFill = ``;\nconst bootstrapBackpack = ``;\nconst bootstrapBackpack2Fill = ``;\nconst bootstrapBackpack2 = ``;\nconst bootstrapBackpack3Fill = ``;\nconst bootstrapBackpack3 = ``;\nconst bootstrapBackpack4Fill = ``;\nconst bootstrapBackpack4 = ``;\nconst bootstrapBackspaceFill = ``;\nconst bootstrapBackspaceReverseFill = ``;\nconst bootstrapBackspaceReverse = ``;\nconst bootstrapBackspace = ``;\nconst bootstrapBadge3dFill = ``;\nconst bootstrapBadge3d = ``;\nconst bootstrapBadge4kFill = ``;\nconst bootstrapBadge4k = ``;\nconst bootstrapBadge8kFill = ``;\nconst bootstrapBadge8k = ``;\nconst bootstrapBadgeAdFill = ``;\nconst bootstrapBadgeAd = ``;\nconst bootstrapBadgeArFill = ``;\nconst bootstrapBadgeAr = ``;\nconst bootstrapBadgeCcFill = ``;\nconst bootstrapBadgeCc = ``;\nconst bootstrapBadgeHdFill = ``;\nconst bootstrapBadgeHd = ``;\nconst bootstrapBadgeSdFill = ``;\nconst bootstrapBadgeSd = ``;\nconst bootstrapBadgeTmFill = ``;\nconst bootstrapBadgeTm = ``;\nconst bootstrapBadgeVoFill = ``;\nconst bootstrapBadgeVo = ``;\nconst bootstrapBadgeVrFill = ``;\nconst bootstrapBadgeVr = ``;\nconst bootstrapBadgeWcFill = ``;\nconst bootstrapBadgeWc = ``;\nconst bootstrapBagCheckFill = ``;\nconst bootstrapBagCheck = ``;\nconst bootstrapBagDashFill = ``;\nconst bootstrapBagDash = ``;\nconst bootstrapBagFill = ``;\nconst bootstrapBagHeartFill = ``;\nconst bootstrapBagHeart = ``;\nconst bootstrapBagPlusFill = ``;\nconst bootstrapBagPlus = ``;\nconst bootstrapBagXFill = ``;\nconst bootstrapBagX = ``;\nconst bootstrapBag = ``;\nconst bootstrapBalloonFill = ``;\nconst bootstrapBalloonHeartFill = ``;\nconst bootstrapBalloonHeart = ``;\nconst bootstrapBalloon = ``;\nconst bootstrapBanFill = ``;\nconst bootstrapBan = ``;\nconst bootstrapBandaidFill = ``;\nconst bootstrapBandaid = ``;\nconst bootstrapBank = ``;\nconst bootstrapBank2 = ``;\nconst bootstrapBarChartFill = ``;\nconst bootstrapBarChartLineFill = ``;\nconst bootstrapBarChartLine = ``;\nconst bootstrapBarChartSteps = ``;\nconst bootstrapBarChart = ``;\nconst bootstrapBasketFill = ``;\nconst bootstrapBasket = ``;\nconst bootstrapBasket2Fill = ``;\nconst bootstrapBasket2 = ``;\nconst bootstrapBasket3Fill = ``;\nconst bootstrapBasket3 = ``;\nconst bootstrapBatteryCharging = ``;\nconst bootstrapBatteryFull = ``;\nconst bootstrapBatteryHalf = ``;\nconst bootstrapBattery = ``;\nconst bootstrapBehance = ``;\nconst bootstrapBellFill = ``;\nconst bootstrapBellSlashFill = ``;\nconst bootstrapBellSlash = ``;\nconst bootstrapBell = ``;\nconst bootstrapBezier = ``;\nconst bootstrapBezier2 = ``;\nconst bootstrapBicycle = ``;\nconst bootstrapBing = ``;\nconst bootstrapBinocularsFill = ``;\nconst bootstrapBinoculars = ``;\nconst bootstrapBlockquoteLeft = ``;\nconst bootstrapBlockquoteRight = ``;\nconst bootstrapBluetooth = ``;\nconst bootstrapBodyText = ``;\nconst bootstrapBookFill = ``;\nconst bootstrapBookHalf = ``;\nconst bootstrapBook = ``;\nconst bootstrapBookmarkCheckFill = ``;\nconst bootstrapBookmarkCheck = ``;\nconst bootstrapBookmarkDashFill = ``;\nconst bootstrapBookmarkDash = ``;\nconst bootstrapBookmarkFill = ``;\nconst bootstrapBookmarkHeartFill = ``;\nconst bootstrapBookmarkHeart = ``;\nconst bootstrapBookmarkPlusFill = ``;\nconst bootstrapBookmarkPlus = ``;\nconst bootstrapBookmarkStarFill = ``;\nconst bootstrapBookmarkStar = ``;\nconst bootstrapBookmarkXFill = ``;\nconst bootstrapBookmarkX = ``;\nconst bootstrapBookmark = ``;\nconst bootstrapBookmarksFill = ``;\nconst bootstrapBookmarks = ``;\nconst bootstrapBookshelf = ``;\nconst bootstrapBoomboxFill = ``;\nconst bootstrapBoombox = ``;\nconst bootstrapBootstrapFill = ``;\nconst bootstrapBootstrapReboot = ``;\nconst bootstrapBootstrap = ``;\nconst bootstrapBorderAll = ``;\nconst bootstrapBorderBottom = ``;\nconst bootstrapBorderCenter = ``;\nconst bootstrapBorderInner = ``;\nconst bootstrapBorderLeft = ``;\nconst bootstrapBorderMiddle = ``;\nconst bootstrapBorderOuter = ``;\nconst bootstrapBorderRight = ``;\nconst bootstrapBorderStyle = ``;\nconst bootstrapBorderTop = ``;\nconst bootstrapBorderWidth = ``;\nconst bootstrapBorder = ``;\nconst bootstrapBoundingBoxCircles = ``;\nconst bootstrapBoundingBox = ``;\nconst bootstrapBoxArrowDownLeft = ``;\nconst bootstrapBoxArrowDownRight = ``;\nconst bootstrapBoxArrowDown = ``;\nconst bootstrapBoxArrowInDownLeft = ``;\nconst bootstrapBoxArrowInDownRight = ``;\nconst bootstrapBoxArrowInDown = ``;\nconst bootstrapBoxArrowInLeft = ``;\nconst bootstrapBoxArrowInRight = ``;\nconst bootstrapBoxArrowInUpLeft = ``;\nconst bootstrapBoxArrowInUpRight = ``;\nconst bootstrapBoxArrowInUp = ``;\nconst bootstrapBoxArrowLeft = ``;\nconst bootstrapBoxArrowRight = ``;\nconst bootstrapBoxArrowUpLeft = ``;\nconst bootstrapBoxArrowUpRight = ``;\nconst bootstrapBoxArrowUp = ``;\nconst bootstrapBoxFill = ``;\nconst bootstrapBoxSeamFill = ``;\nconst bootstrapBoxSeam = ``;\nconst bootstrapBox = ``;\nconst bootstrapBox2Fill = ``;\nconst bootstrapBox2HeartFill = ``;\nconst bootstrapBox2Heart = ``;\nconst bootstrapBox2 = ``;\nconst bootstrapBoxes = ``;\nconst bootstrapBracesAsterisk = ``;\nconst bootstrapBraces = ``;\nconst bootstrapBricks = ``;\nconst bootstrapBriefcaseFill = ``;\nconst bootstrapBriefcase = ``;\nconst bootstrapBrightnessAltHighFill = ``;\nconst bootstrapBrightnessAltHigh = ``;\nconst bootstrapBrightnessAltLowFill = ``;\nconst bootstrapBrightnessAltLow = ``;\nconst bootstrapBrightnessHighFill = ``;\nconst bootstrapBrightnessHigh = ``;\nconst bootstrapBrightnessLowFill = ``;\nconst bootstrapBrightnessLow = ``;\nconst bootstrapBrilliance = ``;\nconst bootstrapBroadcastPin = ``;\nconst bootstrapBroadcast = ``;\nconst bootstrapBrowserChrome = ``;\nconst bootstrapBrowserEdge = ``;\nconst bootstrapBrowserFirefox = ``;\nconst bootstrapBrowserSafari = ``;\nconst bootstrapBrushFill = ``;\nconst bootstrapBrush = ``;\nconst bootstrapBucketFill = ``;\nconst bootstrapBucket = ``;\nconst bootstrapBugFill = ``;\nconst bootstrapBug = ``;\nconst bootstrapBuildingAdd = ``;\nconst bootstrapBuildingCheck = ``;\nconst bootstrapBuildingDash = ``;\nconst bootstrapBuildingDown = ``;\nconst bootstrapBuildingExclamation = ``;\nconst bootstrapBuildingFillAdd = ``;\nconst bootstrapBuildingFillCheck = ``;\nconst bootstrapBuildingFillDash = ``;\nconst bootstrapBuildingFillDown = ``;\nconst bootstrapBuildingFillExclamation = ``;\nconst bootstrapBuildingFillGear = ``;\nconst bootstrapBuildingFillLock = ``;\nconst bootstrapBuildingFillSlash = ``;\nconst bootstrapBuildingFillUp = ``;\nconst bootstrapBuildingFillX = ``;\nconst bootstrapBuildingFill = ``;\nconst bootstrapBuildingGear = ``;\nconst bootstrapBuildingLock = ``;\nconst bootstrapBuildingSlash = ``;\nconst bootstrapBuildingUp = ``;\nconst bootstrapBuildingX = ``;\nconst bootstrapBuilding = ``;\nconst bootstrapBuildingsFill = ``;\nconst bootstrapBuildings = ``;\nconst bootstrapBullseye = ``;\nconst bootstrapBusFrontFill = ``;\nconst bootstrapBusFront = ``;\nconst bootstrapCCircleFill = ``;\nconst bootstrapCCircle = ``;\nconst bootstrapCSquareFill = ``;\nconst bootstrapCSquare = ``;\nconst bootstrapCakeFill = ``;\nconst bootstrapCake = ``;\nconst bootstrapCake2Fill = ``;\nconst bootstrapCake2 = ``;\nconst bootstrapCalculatorFill = ``;\nconst bootstrapCalculator = ``;\nconst bootstrapCalendarCheckFill = ``;\nconst bootstrapCalendarCheck = ``;\nconst bootstrapCalendarDateFill = ``;\nconst bootstrapCalendarDate = ``;\nconst bootstrapCalendarDayFill = ``;\nconst bootstrapCalendarDay = ``;\nconst bootstrapCalendarEventFill = ``;\nconst bootstrapCalendarEvent = ``;\nconst bootstrapCalendarFill = ``;\nconst bootstrapCalendarHeartFill = ``;\nconst bootstrapCalendarHeart = ``;\nconst bootstrapCalendarMinusFill = ``;\nconst bootstrapCalendarMinus = ``;\nconst bootstrapCalendarMonthFill = ``;\nconst bootstrapCalendarMonth = ``;\nconst bootstrapCalendarPlusFill = ``;\nconst bootstrapCalendarPlus = ``;\nconst bootstrapCalendarRangeFill = ``;\nconst bootstrapCalendarRange = ``;\nconst bootstrapCalendarWeekFill = ``;\nconst bootstrapCalendarWeek = ``;\nconst bootstrapCalendarXFill = ``;\nconst bootstrapCalendarX = ``;\nconst bootstrapCalendar = ``;\nconst bootstrapCalendar2CheckFill = ``;\nconst bootstrapCalendar2Check = ``;\nconst bootstrapCalendar2DateFill = ``;\nconst bootstrapCalendar2Date = ``;\nconst bootstrapCalendar2DayFill = ``;\nconst bootstrapCalendar2Day = ``;\nconst bootstrapCalendar2EventFill = ``;\nconst bootstrapCalendar2Event = ``;\nconst bootstrapCalendar2Fill = ``;\nconst bootstrapCalendar2HeartFill = ``;\nconst bootstrapCalendar2Heart = ``;\nconst bootstrapCalendar2MinusFill = ``;\nconst bootstrapCalendar2Minus = ``;\nconst bootstrapCalendar2MonthFill = ``;\nconst bootstrapCalendar2Month = ``;\nconst bootstrapCalendar2PlusFill = ``;\nconst bootstrapCalendar2Plus = ``;\nconst bootstrapCalendar2RangeFill = ``;\nconst bootstrapCalendar2Range = ``;\nconst bootstrapCalendar2WeekFill = ``;\nconst bootstrapCalendar2Week = ``;\nconst bootstrapCalendar2XFill = ``;\nconst bootstrapCalendar2X = ``;\nconst bootstrapCalendar2 = ``;\nconst bootstrapCalendar3EventFill = ``;\nconst bootstrapCalendar3Event = ``;\nconst bootstrapCalendar3Fill = ``;\nconst bootstrapCalendar3RangeFill = ``;\nconst bootstrapCalendar3Range = ``;\nconst bootstrapCalendar3WeekFill = ``;\nconst bootstrapCalendar3Week = ``;\nconst bootstrapCalendar3 = ``;\nconst bootstrapCalendar4Event = ``;\nconst bootstrapCalendar4Range = ``;\nconst bootstrapCalendar4Week = ``;\nconst bootstrapCalendar4 = ``;\nconst bootstrapCameraFill = ``;\nconst bootstrapCameraReelsFill = ``;\nconst bootstrapCameraReels = ``;\nconst bootstrapCameraVideoFill = ``;\nconst bootstrapCameraVideoOffFill = ``;\nconst bootstrapCameraVideoOff = ``;\nconst bootstrapCameraVideo = ``;\nconst bootstrapCamera = ``;\nconst bootstrapCamera2 = ``;\nconst bootstrapCapslockFill = ``;\nconst bootstrapCapslock = ``;\nconst bootstrapCapsulePill = ``;\nconst bootstrapCapsule = ``;\nconst bootstrapCarFrontFill = ``;\nconst bootstrapCarFront = ``;\nconst bootstrapCardChecklist = ``;\nconst bootstrapCardHeading = ``;\nconst bootstrapCardImage = ``;\nconst bootstrapCardList = ``;\nconst bootstrapCardText = ``;\nconst bootstrapCaretDownFill = ``;\nconst bootstrapCaretDownSquareFill = ``;\nconst bootstrapCaretDownSquare = ``;\nconst bootstrapCaretDown = ``;\nconst bootstrapCaretLeftFill = ``;\nconst bootstrapCaretLeftSquareFill = ``;\nconst bootstrapCaretLeftSquare = ``;\nconst bootstrapCaretLeft = ``;\nconst bootstrapCaretRightFill = ``;\nconst bootstrapCaretRightSquareFill = ``;\nconst bootstrapCaretRightSquare = ``;\nconst bootstrapCaretRight = ``;\nconst bootstrapCaretUpFill = ``;\nconst bootstrapCaretUpSquareFill = ``;\nconst bootstrapCaretUpSquare = ``;\nconst bootstrapCaretUp = ``;\nconst bootstrapCartCheckFill = ``;\nconst bootstrapCartCheck = ``;\nconst bootstrapCartDashFill = ``;\nconst bootstrapCartDash = ``;\nconst bootstrapCartFill = ``;\nconst bootstrapCartPlusFill = ``;\nconst bootstrapCartPlus = ``;\nconst bootstrapCartXFill = ``;\nconst bootstrapCartX = ``;\nconst bootstrapCart = ``;\nconst bootstrapCart2 = ``;\nconst bootstrapCart3 = ``;\nconst bootstrapCart4 = ``;\nconst bootstrapCashCoin = ``;\nconst bootstrapCashStack = ``;\nconst bootstrapCash = ``;\nconst bootstrapCassetteFill = ``;\nconst bootstrapCassette = ``;\nconst bootstrapCast = ``;\nconst bootstrapCcCircleFill = ``;\nconst bootstrapCcCircle = ``;\nconst bootstrapCcSquareFill = ``;\nconst bootstrapCcSquare = ``;\nconst bootstrapChatDotsFill = ``;\nconst bootstrapChatDots = ``;\nconst bootstrapChatFill = ``;\nconst bootstrapChatHeartFill = ``;\nconst bootstrapChatHeart = ``;\nconst bootstrapChatLeftDotsFill = ``;\nconst bootstrapChatLeftDots = ``;\nconst bootstrapChatLeftFill = ``;\nconst bootstrapChatLeftHeartFill = ``;\nconst bootstrapChatLeftHeart = ``;\nconst bootstrapChatLeftQuoteFill = ``;\nconst bootstrapChatLeftQuote = ``;\nconst bootstrapChatLeftTextFill = ``;\nconst bootstrapChatLeftText = ``;\nconst bootstrapChatLeft = ``;\nconst bootstrapChatQuoteFill = ``;\nconst bootstrapChatQuote = ``;\nconst bootstrapChatRightDotsFill = ``;\nconst bootstrapChatRightDots = ``;\nconst bootstrapChatRightFill = ``;\nconst bootstrapChatRightHeartFill = ``;\nconst bootstrapChatRightHeart = ``;\nconst bootstrapChatRightQuoteFill = ``;\nconst bootstrapChatRightQuote = ``;\nconst bootstrapChatRightTextFill = ``;\nconst bootstrapChatRightText = ``;\nconst bootstrapChatRight = ``;\nconst bootstrapChatSquareDotsFill = ``;\nconst bootstrapChatSquareDots = ``;\nconst bootstrapChatSquareFill = ``;\nconst bootstrapChatSquareHeartFill = ``;\nconst bootstrapChatSquareHeart = ``;\nconst bootstrapChatSquareQuoteFill = ``;\nconst bootstrapChatSquareQuote = ``;\nconst bootstrapChatSquareTextFill = ``;\nconst bootstrapChatSquareText = ``;\nconst bootstrapChatSquare = ``;\nconst bootstrapChatTextFill = ``;\nconst bootstrapChatText = ``;\nconst bootstrapChat = ``;\nconst bootstrapCheckAll = ``;\nconst bootstrapCheckCircleFill = ``;\nconst bootstrapCheckCircle = ``;\nconst bootstrapCheckLg = ``;\nconst bootstrapCheckSquareFill = ``;\nconst bootstrapCheckSquare = ``;\nconst bootstrapCheck = ``;\nconst bootstrapCheck2All = ``;\nconst bootstrapCheck2Circle = ``;\nconst bootstrapCheck2Square = ``;\nconst bootstrapCheck2 = ``;\nconst bootstrapChevronBarContract = ``;\nconst bootstrapChevronBarDown = ``;\nconst bootstrapChevronBarExpand = ``;\nconst bootstrapChevronBarLeft = ``;\nconst bootstrapChevronBarRight = ``;\nconst bootstrapChevronBarUp = ``;\nconst bootstrapChevronCompactDown = ``;\nconst bootstrapChevronCompactLeft = ``;\nconst bootstrapChevronCompactRight = ``;\nconst bootstrapChevronCompactUp = ``;\nconst bootstrapChevronContract = ``;\nconst bootstrapChevronDoubleDown = ``;\nconst bootstrapChevronDoubleLeft = ``;\nconst bootstrapChevronDoubleRight = ``;\nconst bootstrapChevronDoubleUp = ``;\nconst bootstrapChevronDown = ``;\nconst bootstrapChevronExpand = ``;\nconst bootstrapChevronLeft = ``;\nconst bootstrapChevronRight = ``;\nconst bootstrapChevronUp = ``;\nconst bootstrapCircleFill = ``;\nconst bootstrapCircleHalf = ``;\nconst bootstrapCircleSquare = ``;\nconst bootstrapCircle = ``;\nconst bootstrapClipboardCheckFill = ``;\nconst bootstrapClipboardCheck = ``;\nconst bootstrapClipboardDataFill = ``;\nconst bootstrapClipboardData = ``;\nconst bootstrapClipboardFill = ``;\nconst bootstrapClipboardHeartFill = ``;\nconst bootstrapClipboardHeart = ``;\nconst bootstrapClipboardMinusFill = ``;\nconst bootstrapClipboardMinus = ``;\nconst bootstrapClipboardPlusFill = ``;\nconst bootstrapClipboardPlus = ``;\nconst bootstrapClipboardPulse = ``;\nconst bootstrapClipboardXFill = ``;\nconst bootstrapClipboardX = ``;\nconst bootstrapClipboard = ``;\nconst bootstrapClipboard2CheckFill = ``;\nconst bootstrapClipboard2Check = ``;\nconst bootstrapClipboard2DataFill = ``;\nconst bootstrapClipboard2Data = ``;\nconst bootstrapClipboard2Fill = ``;\nconst bootstrapClipboard2HeartFill = ``;\nconst bootstrapClipboard2Heart = ``;\nconst bootstrapClipboard2MinusFill = ``;\nconst bootstrapClipboard2Minus = ``;\nconst bootstrapClipboard2PlusFill = ``;\nconst bootstrapClipboard2Plus = ``;\nconst bootstrapClipboard2PulseFill = ``;\nconst bootstrapClipboard2Pulse = ``;\nconst bootstrapClipboard2XFill = ``;\nconst bootstrapClipboard2X = ``;\nconst bootstrapClipboard2 = ``;\nconst bootstrapClockFill = ``;\nconst bootstrapClockHistory = ``;\nconst bootstrapClock = ``;\nconst bootstrapCloudArrowDownFill = ``;\nconst bootstrapCloudArrowDown = ``;\nconst bootstrapCloudArrowUpFill = ``;\nconst bootstrapCloudArrowUp = ``;\nconst bootstrapCloudCheckFill = ``;\nconst bootstrapCloudCheck = ``;\nconst bootstrapCloudDownloadFill = ``;\nconst bootstrapCloudDownload = ``;\nconst bootstrapCloudDrizzleFill = ``;\nconst bootstrapCloudDrizzle = ``;\nconst bootstrapCloudFill = ``;\nconst bootstrapCloudFogFill = ``;\nconst bootstrapCloudFog = ``;\nconst bootstrapCloudFog2Fill = ``;\nconst bootstrapCloudFog2 = ``;\nconst bootstrapCloudHailFill = ``;\nconst bootstrapCloudHail = ``;\nconst bootstrapCloudHazeFill = ``;\nconst bootstrapCloudHaze = ``;\nconst bootstrapCloudHaze2Fill = ``;\nconst bootstrapCloudHaze2 = ``;\nconst bootstrapCloudLightningFill = ``;\nconst bootstrapCloudLightningRainFill = ``;\nconst bootstrapCloudLightningRain = ``;\nconst bootstrapCloudLightning = ``;\nconst bootstrapCloudMinusFill = ``;\nconst bootstrapCloudMinus = ``;\nconst bootstrapCloudMoonFill = ``;\nconst bootstrapCloudMoon = ``;\nconst bootstrapCloudPlusFill = ``;\nconst bootstrapCloudPlus = ``;\nconst bootstrapCloudRainFill = ``;\nconst bootstrapCloudRainHeavyFill = ``;\nconst bootstrapCloudRainHeavy = ``;\nconst bootstrapCloudRain = ``;\nconst bootstrapCloudSlashFill = ``;\nconst bootstrapCloudSlash = ``;\nconst bootstrapCloudSleetFill = ``;\nconst bootstrapCloudSleet = ``;\nconst bootstrapCloudSnowFill = ``;\nconst bootstrapCloudSnow = ``;\nconst bootstrapCloudSunFill = ``;\nconst bootstrapCloudSun = ``;\nconst bootstrapCloudUploadFill = ``;\nconst bootstrapCloudUpload = ``;\nconst bootstrapCloud = ``;\nconst bootstrapCloudsFill = ``;\nconst bootstrapClouds = ``;\nconst bootstrapCloudyFill = ``;\nconst bootstrapCloudy = ``;\nconst bootstrapCodeSlash = ``;\nconst bootstrapCodeSquare = ``;\nconst bootstrapCode = ``;\nconst bootstrapCoin = ``;\nconst bootstrapCollectionFill = ``;\nconst bootstrapCollectionPlayFill = ``;\nconst bootstrapCollectionPlay = ``;\nconst bootstrapCollection = ``;\nconst bootstrapColumnsGap = ``;\nconst bootstrapColumns = ``;\nconst bootstrapCommand = ``;\nconst bootstrapCompassFill = ``;\nconst bootstrapCompass = ``;\nconst bootstrapConeStriped = ``;\nconst bootstrapCone = ``;\nconst bootstrapController = ``;\nconst bootstrapCookie = ``;\nconst bootstrapCopy = ``;\nconst bootstrapCpuFill = ``;\nconst bootstrapCpu = ``;\nconst bootstrapCreditCard2BackFill = ``;\nconst bootstrapCreditCard2Back = ``;\nconst bootstrapCreditCard2FrontFill = ``;\nconst bootstrapCreditCard2Front = ``;\nconst bootstrapCreditCardFill = ``;\nconst bootstrapCreditCard = ``;\nconst bootstrapCrop = ``;\nconst bootstrapCrosshair = ``;\nconst bootstrapCrosshair2 = ``;\nconst bootstrapCupFill = ``;\nconst bootstrapCupHotFill = ``;\nconst bootstrapCupHot = ``;\nconst bootstrapCupStraw = ``;\nconst bootstrapCup = ``;\nconst bootstrapCurrencyBitcoin = ``;\nconst bootstrapCurrencyDollar = ``;\nconst bootstrapCurrencyEuro = ``;\nconst bootstrapCurrencyExchange = ``;\nconst bootstrapCurrencyPound = ``;\nconst bootstrapCurrencyRupee = ``;\nconst bootstrapCurrencyYen = ``;\nconst bootstrapCursorFill = ``;\nconst bootstrapCursorText = ``;\nconst bootstrapCursor = ``;\nconst bootstrapDashCircleDotted = ``;\nconst bootstrapDashCircleFill = ``;\nconst bootstrapDashCircle = ``;\nconst bootstrapDashLg = ``;\nconst bootstrapDashSquareDotted = ``;\nconst bootstrapDashSquareFill = ``;\nconst bootstrapDashSquare = ``;\nconst bootstrapDash = ``;\nconst bootstrapDatabaseAdd = ``;\nconst bootstrapDatabaseCheck = ``;\nconst bootstrapDatabaseDash = ``;\nconst bootstrapDatabaseDown = ``;\nconst bootstrapDatabaseExclamation = ``;\nconst bootstrapDatabaseFillAdd = ``;\nconst bootstrapDatabaseFillCheck = ``;\nconst bootstrapDatabaseFillDash = ``;\nconst bootstrapDatabaseFillDown = ``;\nconst bootstrapDatabaseFillExclamation = ``;\nconst bootstrapDatabaseFillGear = ``;\nconst bootstrapDatabaseFillLock = ``;\nconst bootstrapDatabaseFillSlash = ``;\nconst bootstrapDatabaseFillUp = ``;\nconst bootstrapDatabaseFillX = ``;\nconst bootstrapDatabaseFill = ``;\nconst bootstrapDatabaseGear = ``;\nconst bootstrapDatabaseLock = ``;\nconst bootstrapDatabaseSlash = ``;\nconst bootstrapDatabaseUp = ``;\nconst bootstrapDatabaseX = ``;\nconst bootstrapDatabase = ``;\nconst bootstrapDeviceHddFill = ``;\nconst bootstrapDeviceHdd = ``;\nconst bootstrapDeviceSsdFill = ``;\nconst bootstrapDeviceSsd = ``;\nconst bootstrapDiagram2Fill = ``;\nconst bootstrapDiagram2 = ``;\nconst bootstrapDiagram3Fill = ``;\nconst bootstrapDiagram3 = ``;\nconst bootstrapDiamondFill = ``;\nconst bootstrapDiamondHalf = ``;\nconst bootstrapDiamond = ``;\nconst bootstrapDice1Fill = ``;\nconst bootstrapDice1 = ``;\nconst bootstrapDice2Fill = ``;\nconst bootstrapDice2 = ``;\nconst bootstrapDice3Fill = ``;\nconst bootstrapDice3 = ``;\nconst bootstrapDice4Fill = ``;\nconst bootstrapDice4 = ``;\nconst bootstrapDice5Fill = ``;\nconst bootstrapDice5 = ``;\nconst bootstrapDice6Fill = ``;\nconst bootstrapDice6 = ``;\nconst bootstrapDiscFill = ``;\nconst bootstrapDisc = ``;\nconst bootstrapDiscord = ``;\nconst bootstrapDisplayFill = ``;\nconst bootstrapDisplay = ``;\nconst bootstrapDisplayportFill = ``;\nconst bootstrapDisplayport = ``;\nconst bootstrapDistributeHorizontal = ``;\nconst bootstrapDistributeVertical = ``;\nconst bootstrapDoorClosedFill = ``;\nconst bootstrapDoorClosed = ``;\nconst bootstrapDoorOpenFill = ``;\nconst bootstrapDoorOpen = ``;\nconst bootstrapDot = ``;\nconst bootstrapDownload = ``;\nconst bootstrapDpadFill = ``;\nconst bootstrapDpad = ``;\nconst bootstrapDribbble = ``;\nconst bootstrapDropbox = ``;\nconst bootstrapDropletFill = ``;\nconst bootstrapDropletHalf = ``;\nconst bootstrapDroplet = ``;\nconst bootstrapDuffleFill = ``;\nconst bootstrapDuffle = ``;\nconst bootstrapEarFill = ``;\nconst bootstrapEar = ``;\nconst bootstrapEarbuds = ``;\nconst bootstrapEaselFill = ``;\nconst bootstrapEasel = ``;\nconst bootstrapEasel2Fill = ``;\nconst bootstrapEasel2 = ``;\nconst bootstrapEasel3Fill = ``;\nconst bootstrapEasel3 = ``;\nconst bootstrapEggFill = ``;\nconst bootstrapEggFried = ``;\nconst bootstrapEgg = ``;\nconst bootstrapEjectFill = ``;\nconst bootstrapEject = ``;\nconst bootstrapEmojiAngryFill = ``;\nconst bootstrapEmojiAngry = ``;\nconst bootstrapEmojiAstonishedFill = ``;\nconst bootstrapEmojiAstonished = ``;\nconst bootstrapEmojiDizzyFill = ``;\nconst bootstrapEmojiDizzy = ``;\nconst bootstrapEmojiExpressionlessFill = ``;\nconst bootstrapEmojiExpressionless = ``;\nconst bootstrapEmojiFrownFill = ``;\nconst bootstrapEmojiFrown = ``;\nconst bootstrapEmojiGrimaceFill = ``;\nconst bootstrapEmojiGrimace = ``;\nconst bootstrapEmojiGrinFill = ``;\nconst bootstrapEmojiGrin = ``;\nconst bootstrapEmojiHeartEyesFill = ``;\nconst bootstrapEmojiHeartEyes = ``;\nconst bootstrapEmojiKissFill = ``;\nconst bootstrapEmojiKiss = ``;\nconst bootstrapEmojiLaughingFill = ``;\nconst bootstrapEmojiLaughing = ``;\nconst bootstrapEmojiNeutralFill = ``;\nconst bootstrapEmojiNeutral = ``;\nconst bootstrapEmojiSmileFill = ``;\nconst bootstrapEmojiSmileUpsideDownFill = ``;\nconst bootstrapEmojiSmileUpsideDown = ``;\nconst bootstrapEmojiSmile = ``;\nconst bootstrapEmojiSunglassesFill = ``;\nconst bootstrapEmojiSunglasses = ``;\nconst bootstrapEmojiSurpriseFill = ``;\nconst bootstrapEmojiSurprise = ``;\nconst bootstrapEmojiTearFill = ``;\nconst bootstrapEmojiTear = ``;\nconst bootstrapEmojiWinkFill = ``;\nconst bootstrapEmojiWink = ``;\nconst bootstrapEnvelopeArrowDownFill = ``;\nconst bootstrapEnvelopeArrowDown = ``;\nconst bootstrapEnvelopeArrowUpFill = ``;\nconst bootstrapEnvelopeArrowUp = ``;\nconst bootstrapEnvelopeAtFill = ``;\nconst bootstrapEnvelopeAt = ``;\nconst bootstrapEnvelopeCheckFill = ``;\nconst bootstrapEnvelopeCheck = ``;\nconst bootstrapEnvelopeDashFill = ``;\nconst bootstrapEnvelopeDash = ``;\nconst bootstrapEnvelopeExclamationFill = ``;\nconst bootstrapEnvelopeExclamation = ``;\nconst bootstrapEnvelopeFill = ``;\nconst bootstrapEnvelopeHeartFill = ``;\nconst bootstrapEnvelopeHeart = ``;\nconst bootstrapEnvelopeOpenFill = ``;\nconst bootstrapEnvelopeOpenHeartFill = ``;\nconst bootstrapEnvelopeOpenHeart = ``;\nconst bootstrapEnvelopeOpen = ``;\nconst bootstrapEnvelopePaperFill = ``;\nconst bootstrapEnvelopePaperHeartFill = ``;\nconst bootstrapEnvelopePaperHeart = ``;\nconst bootstrapEnvelopePaper = ``;\nconst bootstrapEnvelopePlusFill = ``;\nconst bootstrapEnvelopePlus = ``;\nconst bootstrapEnvelopeSlashFill = ``;\nconst bootstrapEnvelopeSlash = ``;\nconst bootstrapEnvelopeXFill = ``;\nconst bootstrapEnvelopeX = ``;\nconst bootstrapEnvelope = ``;\nconst bootstrapEraserFill = ``;\nconst bootstrapEraser = ``;\nconst bootstrapEscape = ``;\nconst bootstrapEthernet = ``;\nconst bootstrapEvFrontFill = ``;\nconst bootstrapEvFront = ``;\nconst bootstrapEvStationFill = ``;\nconst bootstrapEvStation = ``;\nconst bootstrapExclamationCircleFill = ``;\nconst bootstrapExclamationCircle = ``;\nconst bootstrapExclamationDiamondFill = ``;\nconst bootstrapExclamationDiamond = ``;\nconst bootstrapExclamationLg = ``;\nconst bootstrapExclamationOctagonFill = ``;\nconst bootstrapExclamationOctagon = ``;\nconst bootstrapExclamationSquareFill = ``;\nconst bootstrapExclamationSquare = ``;\nconst bootstrapExclamationTriangleFill = ``;\nconst bootstrapExclamationTriangle = ``;\nconst bootstrapExclamation = ``;\nconst bootstrapExclude = ``;\nconst bootstrapExplicitFill = ``;\nconst bootstrapExplicit = ``;\nconst bootstrapExposure = ``;\nconst bootstrapEyeFill = ``;\nconst bootstrapEyeSlashFill = ``;\nconst bootstrapEyeSlash = ``;\nconst bootstrapEye = ``;\nconst bootstrapEyedropper = ``;\nconst bootstrapEyeglasses = ``;\nconst bootstrapFacebook = ``;\nconst bootstrapFan = ``;\nconst bootstrapFastForwardBtnFill = ``;\nconst bootstrapFastForwardBtn = ``;\nconst bootstrapFastForwardCircleFill = ``;\nconst bootstrapFastForwardCircle = ``;\nconst bootstrapFastForwardFill = ``;\nconst bootstrapFastForward = ``;\nconst bootstrapFeather = ``;\nconst bootstrapFeather2 = ``;\nconst bootstrapFileArrowDownFill = ``;\nconst bootstrapFileArrowDown = ``;\nconst bootstrapFileArrowUpFill = ``;\nconst bootstrapFileArrowUp = ``;\nconst bootstrapFileBarGraphFill = ``;\nconst bootstrapFileBarGraph = ``;\nconst bootstrapFileBinaryFill = ``;\nconst bootstrapFileBinary = ``;\nconst bootstrapFileBreakFill = ``;\nconst bootstrapFileBreak = ``;\nconst bootstrapFileCheckFill = ``;\nconst bootstrapFileCheck = ``;\nconst bootstrapFileCodeFill = ``;\nconst bootstrapFileCode = ``;\nconst bootstrapFileDiffFill = ``;\nconst bootstrapFileDiff = ``;\nconst bootstrapFileEarmarkArrowDownFill = ``;\nconst bootstrapFileEarmarkArrowDown = ``;\nconst bootstrapFileEarmarkArrowUpFill = ``;\nconst bootstrapFileEarmarkArrowUp = ``;\nconst bootstrapFileEarmarkBarGraphFill = ``;\nconst bootstrapFileEarmarkBarGraph = ``;\nconst bootstrapFileEarmarkBinaryFill = ``;\nconst bootstrapFileEarmarkBinary = ``;\nconst bootstrapFileEarmarkBreakFill = ``;\nconst bootstrapFileEarmarkBreak = ``;\nconst bootstrapFileEarmarkCheckFill = ``;\nconst bootstrapFileEarmarkCheck = ``;\nconst bootstrapFileEarmarkCodeFill = ``;\nconst bootstrapFileEarmarkCode = ``;\nconst bootstrapFileEarmarkDiffFill = ``;\nconst bootstrapFileEarmarkDiff = ``;\nconst bootstrapFileEarmarkEaselFill = ``;\nconst bootstrapFileEarmarkEasel = ``;\nconst bootstrapFileEarmarkExcelFill = ``;\nconst bootstrapFileEarmarkExcel = ``;\nconst bootstrapFileEarmarkFill = ``;\nconst bootstrapFileEarmarkFontFill = ``;\nconst bootstrapFileEarmarkFont = ``;\nconst bootstrapFileEarmarkImageFill = ``;\nconst bootstrapFileEarmarkImage = ``;\nconst bootstrapFileEarmarkLockFill = ``;\nconst bootstrapFileEarmarkLock = ``;\nconst bootstrapFileEarmarkLock2Fill = ``;\nconst bootstrapFileEarmarkLock2 = ``;\nconst bootstrapFileEarmarkMedicalFill = ``;\nconst bootstrapFileEarmarkMedical = ``;\nconst bootstrapFileEarmarkMinusFill = ``;\nconst bootstrapFileEarmarkMinus = ``;\nconst bootstrapFileEarmarkMusicFill = ``;\nconst bootstrapFileEarmarkMusic = ``;\nconst bootstrapFileEarmarkPdfFill = ``;\nconst bootstrapFileEarmarkPdf = ``;\nconst bootstrapFileEarmarkPersonFill = ``;\nconst bootstrapFileEarmarkPerson = ``;\nconst bootstrapFileEarmarkPlayFill = ``;\nconst bootstrapFileEarmarkPlay = ``;\nconst bootstrapFileEarmarkPlusFill = ``;\nconst bootstrapFileEarmarkPlus = ``;\nconst bootstrapFileEarmarkPostFill = ``;\nconst bootstrapFileEarmarkPost = ``;\nconst bootstrapFileEarmarkPptFill = ``;\nconst bootstrapFileEarmarkPpt = ``;\nconst bootstrapFileEarmarkRichtextFill = ``;\nconst bootstrapFileEarmarkRichtext = ``;\nconst bootstrapFileEarmarkRuledFill = ``;\nconst bootstrapFileEarmarkRuled = ``;\nconst bootstrapFileEarmarkSlidesFill = ``;\nconst bootstrapFileEarmarkSlides = ``;\nconst bootstrapFileEarmarkSpreadsheetFill = ``;\nconst bootstrapFileEarmarkSpreadsheet = ``;\nconst bootstrapFileEarmarkTextFill = ``;\nconst bootstrapFileEarmarkText = ``;\nconst bootstrapFileEarmarkWordFill = ``;\nconst bootstrapFileEarmarkWord = ``;\nconst bootstrapFileEarmarkXFill = ``;\nconst bootstrapFileEarmarkX = ``;\nconst bootstrapFileEarmarkZipFill = ``;\nconst bootstrapFileEarmarkZip = ``;\nconst bootstrapFileEarmark = ``;\nconst bootstrapFileEaselFill = ``;\nconst bootstrapFileEasel = ``;\nconst bootstrapFileExcelFill = ``;\nconst bootstrapFileExcel = ``;\nconst bootstrapFileFill = ``;\nconst bootstrapFileFontFill = ``;\nconst bootstrapFileFont = ``;\nconst bootstrapFileImageFill = ``;\nconst bootstrapFileImage = ``;\nconst bootstrapFileLockFill = ``;\nconst bootstrapFileLock = ``;\nconst bootstrapFileLock2Fill = ``;\nconst bootstrapFileLock2 = ``;\nconst bootstrapFileMedicalFill = ``;\nconst bootstrapFileMedical = ``;\nconst bootstrapFileMinusFill = ``;\nconst bootstrapFileMinus = ``;\nconst bootstrapFileMusicFill = ``;\nconst bootstrapFileMusic = ``;\nconst bootstrapFilePdfFill = ``;\nconst bootstrapFilePdf = ``;\nconst bootstrapFilePersonFill = ``;\nconst bootstrapFilePerson = ``;\nconst bootstrapFilePlayFill = ``;\nconst bootstrapFilePlay = ``;\nconst bootstrapFilePlusFill = ``;\nconst bootstrapFilePlus = ``;\nconst bootstrapFilePostFill = ``;\nconst bootstrapFilePost = ``;\nconst bootstrapFilePptFill = ``;\nconst bootstrapFilePpt = ``;\nconst bootstrapFileRichtextFill = ``;\nconst bootstrapFileRichtext = ``;\nconst bootstrapFileRuledFill = ``;\nconst bootstrapFileRuled = ``;\nconst bootstrapFileSlidesFill = ``;\nconst bootstrapFileSlides = ``;\nconst bootstrapFileSpreadsheetFill = ``;\nconst bootstrapFileSpreadsheet = ``;\nconst bootstrapFileTextFill = ``;\nconst bootstrapFileText = ``;\nconst bootstrapFileWordFill = ``;\nconst bootstrapFileWord = ``;\nconst bootstrapFileXFill = ``;\nconst bootstrapFileX = ``;\nconst bootstrapFileZipFill = ``;\nconst bootstrapFileZip = ``;\nconst bootstrapFile = ``;\nconst bootstrapFilesAlt = ``;\nconst bootstrapFiles = ``;\nconst bootstrapFiletypeAac = ``;\nconst bootstrapFiletypeAi = ``;\nconst bootstrapFiletypeBmp = ``;\nconst bootstrapFiletypeCs = ``;\nconst bootstrapFiletypeCss = ``;\nconst bootstrapFiletypeCsv = ``;\nconst bootstrapFiletypeDoc = ``;\nconst bootstrapFiletypeDocx = ``;\nconst bootstrapFiletypeExe = ``;\nconst bootstrapFiletypeGif = ``;\nconst bootstrapFiletypeHeic = ``;\nconst bootstrapFiletypeHtml = ``;\nconst bootstrapFiletypeJava = ``;\nconst bootstrapFiletypeJpg = ``;\nconst bootstrapFiletypeJs = ``;\nconst bootstrapFiletypeJson = ``;\nconst bootstrapFiletypeJsx = ``;\nconst bootstrapFiletypeKey = ``;\nconst bootstrapFiletypeM4p = ``;\nconst bootstrapFiletypeMd = ``;\nconst bootstrapFiletypeMdx = ``;\nconst bootstrapFiletypeMov = ``;\nconst bootstrapFiletypeMp3 = ``;\nconst bootstrapFiletypeMp4 = ``;\nconst bootstrapFiletypeOtf = ``;\nconst bootstrapFiletypePdf = ``;\nconst bootstrapFiletypePhp = ``;\nconst bootstrapFiletypePng = ``;\nconst bootstrapFiletypePpt = ``;\nconst bootstrapFiletypePptx = ``;\nconst bootstrapFiletypePsd = ``;\nconst bootstrapFiletypePy = ``;\nconst bootstrapFiletypeRaw = ``;\nconst bootstrapFiletypeRb = ``;\nconst bootstrapFiletypeSass = ``;\nconst bootstrapFiletypeScss = ``;\nconst bootstrapFiletypeSh = ``;\nconst bootstrapFiletypeSql = ``;\nconst bootstrapFiletypeSvg = ``;\nconst bootstrapFiletypeTiff = ``;\nconst bootstrapFiletypeTsx = ``;\nconst bootstrapFiletypeTtf = ``;\nconst bootstrapFiletypeTxt = ``;\nconst bootstrapFiletypeWav = ``;\nconst bootstrapFiletypeWoff = ``;\nconst bootstrapFiletypeXls = ``;\nconst bootstrapFiletypeXlsx = ``;\nconst bootstrapFiletypeXml = ``;\nconst bootstrapFiletypeYml = ``;\nconst bootstrapFilm = ``;\nconst bootstrapFilterCircleFill = ``;\nconst bootstrapFilterCircle = ``;\nconst bootstrapFilterLeft = ``;\nconst bootstrapFilterRight = ``;\nconst bootstrapFilterSquareFill = ``;\nconst bootstrapFilterSquare = ``;\nconst bootstrapFilter = ``;\nconst bootstrapFingerprint = ``;\nconst bootstrapFire = ``;\nconst bootstrapFlagFill = ``;\nconst bootstrapFlag = ``;\nconst bootstrapFloppyFill = ``;\nconst bootstrapFloppy = ``;\nconst bootstrapFloppy2Fill = ``;\nconst bootstrapFloppy2 = ``;\nconst bootstrapFlower1 = ``;\nconst bootstrapFlower2 = ``;\nconst bootstrapFlower3 = ``;\nconst bootstrapFolderCheck = ``;\nconst bootstrapFolderFill = ``;\nconst bootstrapFolderMinus = ``;\nconst bootstrapFolderPlus = ``;\nconst bootstrapFolderSymlinkFill = ``;\nconst bootstrapFolderSymlink = ``;\nconst bootstrapFolderX = ``;\nconst bootstrapFolder = ``;\nconst bootstrapFolder2Open = ``;\nconst bootstrapFolder2 = ``;\nconst bootstrapFonts = ``;\nconst bootstrapForwardFill = ``;\nconst bootstrapForward = ``;\nconst bootstrapFront = ``;\nconst bootstrapFuelPumpDieselFill = ``;\nconst bootstrapFuelPumpDiesel = ``;\nconst bootstrapFuelPumpFill = ``;\nconst bootstrapFuelPump = ``;\nconst bootstrapFullscreenExit = ``;\nconst bootstrapFullscreen = ``;\nconst bootstrapFunnelFill = ``;\nconst bootstrapFunnel = ``;\nconst bootstrapGearFill = ``;\nconst bootstrapGearWideConnected = ``;\nconst bootstrapGearWide = ``;\nconst bootstrapGear = ``;\nconst bootstrapGem = ``;\nconst bootstrapGenderAmbiguous = ``;\nconst bootstrapGenderFemale = ``;\nconst bootstrapGenderMale = ``;\nconst bootstrapGenderNeuter = ``;\nconst bootstrapGenderTrans = ``;\nconst bootstrapGeoAltFill = ``;\nconst bootstrapGeoAlt = ``;\nconst bootstrapGeoFill = ``;\nconst bootstrapGeo = ``;\nconst bootstrapGiftFill = ``;\nconst bootstrapGift = ``;\nconst bootstrapGit = ``;\nconst bootstrapGithub = ``;\nconst bootstrapGitlab = ``;\nconst bootstrapGlobeAmericas = ``;\nconst bootstrapGlobeAsiaAustralia = ``;\nconst bootstrapGlobeCentralSouthAsia = ``;\nconst bootstrapGlobeEuropeAfrica = ``;\nconst bootstrapGlobe = ``;\nconst bootstrapGlobe2 = ``;\nconst bootstrapGooglePlay = ``;\nconst bootstrapGoogle = ``;\nconst bootstrapGpuCard = ``;\nconst bootstrapGraphDownArrow = ``;\nconst bootstrapGraphDown = ``;\nconst bootstrapGraphUpArrow = ``;\nconst bootstrapGraphUp = ``;\nconst bootstrapGrid1x2Fill = ``;\nconst bootstrapGrid1x2 = ``;\nconst bootstrapGrid3x2GapFill = ``;\nconst bootstrapGrid3x2Gap = ``;\nconst bootstrapGrid3x2 = ``;\nconst bootstrapGrid3x3GapFill = ``;\nconst bootstrapGrid3x3Gap = ``;\nconst bootstrapGrid3x3 = ``;\nconst bootstrapGridFill = ``;\nconst bootstrapGrid = ``;\nconst bootstrapGripHorizontal = ``;\nconst bootstrapGripVertical = ``;\nconst bootstrapHCircleFill = ``;\nconst bootstrapHCircle = ``;\nconst bootstrapHSquareFill = ``;\nconst bootstrapHSquare = ``;\nconst bootstrapHammer = ``;\nconst bootstrapHandIndexFill = ``;\nconst bootstrapHandIndexThumbFill = ``;\nconst bootstrapHandIndexThumb = ``;\nconst bootstrapHandIndex = ``;\nconst bootstrapHandThumbsDownFill = ``;\nconst bootstrapHandThumbsDown = ``;\nconst bootstrapHandThumbsUpFill = ``;\nconst bootstrapHandThumbsUp = ``;\nconst bootstrapHandbagFill = ``;\nconst bootstrapHandbag = ``;\nconst bootstrapHash = ``;\nconst bootstrapHddFill = ``;\nconst bootstrapHddNetworkFill = ``;\nconst bootstrapHddNetwork = ``;\nconst bootstrapHddRackFill = ``;\nconst bootstrapHddRack = ``;\nconst bootstrapHddStackFill = ``;\nconst bootstrapHddStack = ``;\nconst bootstrapHdd = ``;\nconst bootstrapHdmiFill = ``;\nconst bootstrapHdmi = ``;\nconst bootstrapHeadphones = ``;\nconst bootstrapHeadsetVr = ``;\nconst bootstrapHeadset = ``;\nconst bootstrapHeartArrow = ``;\nconst bootstrapHeartFill = ``;\nconst bootstrapHeartHalf = ``;\nconst bootstrapHeartPulseFill = ``;\nconst bootstrapHeartPulse = ``;\nconst bootstrapHeart = ``;\nconst bootstrapHeartbreakFill = ``;\nconst bootstrapHeartbreak = ``;\nconst bootstrapHearts = ``;\nconst bootstrapHeptagonFill = ``;\nconst bootstrapHeptagonHalf = ``;\nconst bootstrapHeptagon = ``;\nconst bootstrapHexagonFill = ``;\nconst bootstrapHexagonHalf = ``;\nconst bootstrapHexagon = ``;\nconst bootstrapHighlighter = ``;\nconst bootstrapHighlights = ``;\nconst bootstrapHospitalFill = ``;\nconst bootstrapHospital = ``;\nconst bootstrapHourglassBottom = ``;\nconst bootstrapHourglassSplit = ``;\nconst bootstrapHourglassTop = ``;\nconst bootstrapHourglass = ``;\nconst bootstrapHouseAddFill = ``;\nconst bootstrapHouseAdd = ``;\nconst bootstrapHouseCheckFill = ``;\nconst bootstrapHouseCheck = ``;\nconst bootstrapHouseDashFill = ``;\nconst bootstrapHouseDash = ``;\nconst bootstrapHouseDoorFill = ``;\nconst bootstrapHouseDoor = ``;\nconst bootstrapHouseDownFill = ``;\nconst bootstrapHouseDown = ``;\nconst bootstrapHouseExclamationFill = ``;\nconst bootstrapHouseExclamation = ``;\nconst bootstrapHouseFill = ``;\nconst bootstrapHouseGearFill = ``;\nconst bootstrapHouseGear = ``;\nconst bootstrapHouseHeartFill = ``;\nconst bootstrapHouseHeart = ``;\nconst bootstrapHouseLockFill = ``;\nconst bootstrapHouseLock = ``;\nconst bootstrapHouseSlashFill = ``;\nconst bootstrapHouseSlash = ``;\nconst bootstrapHouseUpFill = ``;\nconst bootstrapHouseUp = ``;\nconst bootstrapHouseXFill = ``;\nconst bootstrapHouseX = ``;\nconst bootstrapHouse = ``;\nconst bootstrapHousesFill = ``;\nconst bootstrapHouses = ``;\nconst bootstrapHr = ``;\nconst bootstrapHurricane = ``;\nconst bootstrapHypnotize = ``;\nconst bootstrapImageAlt = ``;\nconst bootstrapImageFill = ``;\nconst bootstrapImage = ``;\nconst bootstrapImages = ``;\nconst bootstrapInboxFill = ``;\nconst bootstrapInbox = ``;\nconst bootstrapInboxesFill = ``;\nconst bootstrapInboxes = ``;\nconst bootstrapIncognito = ``;\nconst bootstrapIndent = ``;\nconst bootstrapInfinity = ``;\nconst bootstrapInfoCircleFill = ``;\nconst bootstrapInfoCircle = ``;\nconst bootstrapInfoLg = ``;\nconst bootstrapInfoSquareFill = ``;\nconst bootstrapInfoSquare = ``;\nconst bootstrapInfo = ``;\nconst bootstrapInputCursorText = ``;\nconst bootstrapInputCursor = ``;\nconst bootstrapInstagram = ``;\nconst bootstrapIntersect = ``;\nconst bootstrapJournalAlbum = ``;\nconst bootstrapJournalArrowDown = ``;\nconst bootstrapJournalArrowUp = ``;\nconst bootstrapJournalBookmarkFill = ``;\nconst bootstrapJournalBookmark = ``;\nconst bootstrapJournalCheck = ``;\nconst bootstrapJournalCode = ``;\nconst bootstrapJournalMedical = ``;\nconst bootstrapJournalMinus = ``;\nconst bootstrapJournalPlus = ``;\nconst bootstrapJournalRichtext = ``;\nconst bootstrapJournalText = ``;\nconst bootstrapJournalX = ``;\nconst bootstrapJournal = ``;\nconst bootstrapJournals = ``;\nconst bootstrapJoystick = ``;\nconst bootstrapJustifyLeft = ``;\nconst bootstrapJustifyRight = ``;\nconst bootstrapJustify = ``;\nconst bootstrapKanbanFill = ``;\nconst bootstrapKanban = ``;\nconst bootstrapKeyFill = ``;\nconst bootstrapKey = ``;\nconst bootstrapKeyboardFill = ``;\nconst bootstrapKeyboard = ``;\nconst bootstrapLadder = ``;\nconst bootstrapLampFill = ``;\nconst bootstrapLamp = ``;\nconst bootstrapLaptopFill = ``;\nconst bootstrapLaptop = ``;\nconst bootstrapLayerBackward = ``;\nconst bootstrapLayerForward = ``;\nconst bootstrapLayersFill = ``;\nconst bootstrapLayersHalf = ``;\nconst bootstrapLayers = ``;\nconst bootstrapLayoutSidebarInsetReverse = ``;\nconst bootstrapLayoutSidebarInset = ``;\nconst bootstrapLayoutSidebarReverse = ``;\nconst bootstrapLayoutSidebar = ``;\nconst bootstrapLayoutSplit = ``;\nconst bootstrapLayoutTextSidebarReverse = ``;\nconst bootstrapLayoutTextSidebar = ``;\nconst bootstrapLayoutTextWindowReverse = ``;\nconst bootstrapLayoutTextWindow = ``;\nconst bootstrapLayoutThreeColumns = ``;\nconst bootstrapLayoutWtf = ``;\nconst bootstrapLifePreserver = ``;\nconst bootstrapLightbulbFill = ``;\nconst bootstrapLightbulbOffFill = ``;\nconst bootstrapLightbulbOff = ``;\nconst bootstrapLightbulb = ``;\nconst bootstrapLightningChargeFill = ``;\nconst bootstrapLightningCharge = ``;\nconst bootstrapLightningFill = ``;\nconst bootstrapLightning = ``;\nconst bootstrapLine = ``;\nconst bootstrapLink45deg = ``;\nconst bootstrapLink = ``;\nconst bootstrapLinkedin = ``;\nconst bootstrapListCheck = ``;\nconst bootstrapListColumnsReverse = ``;\nconst bootstrapListColumns = ``;\nconst bootstrapListNested = ``;\nconst bootstrapListOl = ``;\nconst bootstrapListStars = ``;\nconst bootstrapListTask = ``;\nconst bootstrapListUl = ``;\nconst bootstrapList = ``;\nconst bootstrapLockFill = ``;\nconst bootstrapLock = ``;\nconst bootstrapLuggageFill = ``;\nconst bootstrapLuggage = ``;\nconst bootstrapLungsFill = ``;\nconst bootstrapLungs = ``;\nconst bootstrapMagic = ``;\nconst bootstrapMagnetFill = ``;\nconst bootstrapMagnet = ``;\nconst bootstrapMailboxFlag = ``;\nconst bootstrapMailbox = ``;\nconst bootstrapMailbox2Flag = ``;\nconst bootstrapMailbox2 = ``;\nconst bootstrapMapFill = ``;\nconst bootstrapMap = ``;\nconst bootstrapMarkdownFill = ``;\nconst bootstrapMarkdown = ``;\nconst bootstrapMarkerTip = ``;\nconst bootstrapMask = ``;\nconst bootstrapMastodon = ``;\nconst bootstrapMedium = ``;\nconst bootstrapMegaphoneFill = ``;\nconst bootstrapMegaphone = ``;\nconst bootstrapMemory = ``;\nconst bootstrapMenuAppFill = ``;\nconst bootstrapMenuApp = ``;\nconst bootstrapMenuButtonFill = ``;\nconst bootstrapMenuButtonWideFill = ``;\nconst bootstrapMenuButtonWide = ``;\nconst bootstrapMenuButton = ``;\nconst bootstrapMenuDown = ``;\nconst bootstrapMenuUp = ``;\nconst bootstrapMessenger = ``;\nconst bootstrapMeta = ``;\nconst bootstrapMicFill = ``;\nconst bootstrapMicMuteFill = ``;\nconst bootstrapMicMute = ``;\nconst bootstrapMic = ``;\nconst bootstrapMicrosoftTeams = ``;\nconst bootstrapMicrosoft = ``;\nconst bootstrapMinecartLoaded = ``;\nconst bootstrapMinecart = ``;\nconst bootstrapModemFill = ``;\nconst bootstrapModem = ``;\nconst bootstrapMoisture = ``;\nconst bootstrapMoonFill = ``;\nconst bootstrapMoonStarsFill = ``;\nconst bootstrapMoonStars = ``;\nconst bootstrapMoon = ``;\nconst bootstrapMortarboardFill = ``;\nconst bootstrapMortarboard = ``;\nconst bootstrapMotherboardFill = ``;\nconst bootstrapMotherboard = ``;\nconst bootstrapMouseFill = ``;\nconst bootstrapMouse = ``;\nconst bootstrapMouse2Fill = ``;\nconst bootstrapMouse2 = ``;\nconst bootstrapMouse3Fill = ``;\nconst bootstrapMouse3 = ``;\nconst bootstrapMusicNoteBeamed = ``;\nconst bootstrapMusicNoteList = ``;\nconst bootstrapMusicNote = ``;\nconst bootstrapMusicPlayerFill = ``;\nconst bootstrapMusicPlayer = ``;\nconst bootstrapNewspaper = ``;\nconst bootstrapNintendoSwitch = ``;\nconst bootstrapNodeMinusFill = ``;\nconst bootstrapNodeMinus = ``;\nconst bootstrapNodePlusFill = ``;\nconst bootstrapNodePlus = ``;\nconst bootstrapNoiseReduction = ``;\nconst bootstrapNutFill = ``;\nconst bootstrapNut = ``;\nconst bootstrapNvidia = ``;\nconst bootstrapNvmeFill = ``;\nconst bootstrapNvme = ``;\nconst bootstrapOctagonFill = ``;\nconst bootstrapOctagonHalf = ``;\nconst bootstrapOctagon = ``;\nconst bootstrapOpencollective = ``;\nconst bootstrapOpticalAudioFill = ``;\nconst bootstrapOpticalAudio = ``;\nconst bootstrapOption = ``;\nconst bootstrapOutlet = ``;\nconst bootstrapPCircleFill = ``;\nconst bootstrapPCircle = ``;\nconst bootstrapPSquareFill = ``;\nconst bootstrapPSquare = ``;\nconst bootstrapPaintBucket = ``;\nconst bootstrapPaletteFill = ``;\nconst bootstrapPalette = ``;\nconst bootstrapPalette2 = ``;\nconst bootstrapPaperclip = ``;\nconst bootstrapParagraph = ``;\nconst bootstrapPassFill = ``;\nconst bootstrapPass = ``;\nconst bootstrapPassportFill = ``;\nconst bootstrapPassport = ``;\nconst bootstrapPatchCheckFill = ``;\nconst bootstrapPatchCheck = ``;\nconst bootstrapPatchExclamationFill = ``;\nconst bootstrapPatchExclamation = ``;\nconst bootstrapPatchMinusFill = ``;\nconst bootstrapPatchMinus = ``;\nconst bootstrapPatchPlusFill = ``;\nconst bootstrapPatchPlus = ``;\nconst bootstrapPatchQuestionFill = ``;\nconst bootstrapPatchQuestion = ``;\nconst bootstrapPauseBtnFill = ``;\nconst bootstrapPauseBtn = ``;\nconst bootstrapPauseCircleFill = ``;\nconst bootstrapPauseCircle = ``;\nconst bootstrapPauseFill = ``;\nconst bootstrapPause = ``;\nconst bootstrapPaypal = ``;\nconst bootstrapPcDisplayHorizontal = ``;\nconst bootstrapPcDisplay = ``;\nconst bootstrapPcHorizontal = ``;\nconst bootstrapPc = ``;\nconst bootstrapPciCardNetwork = ``;\nconst bootstrapPciCardSound = ``;\nconst bootstrapPciCard = ``;\nconst bootstrapPeaceFill = ``;\nconst bootstrapPeace = ``;\nconst bootstrapPenFill = ``;\nconst bootstrapPen = ``;\nconst bootstrapPencilFill = ``;\nconst bootstrapPencilSquare = ``;\nconst bootstrapPencil = ``;\nconst bootstrapPentagonFill = ``;\nconst bootstrapPentagonHalf = ``;\nconst bootstrapPentagon = ``;\nconst bootstrapPeopleFill = ``;\nconst bootstrapPeople = ``;\nconst bootstrapPercent = ``;\nconst bootstrapPersonAdd = ``;\nconst bootstrapPersonArmsUp = ``;\nconst bootstrapPersonBadgeFill = ``;\nconst bootstrapPersonBadge = ``;\nconst bootstrapPersonBoundingBox = ``;\nconst bootstrapPersonCheckFill = ``;\nconst bootstrapPersonCheck = ``;\nconst bootstrapPersonCircle = ``;\nconst bootstrapPersonDashFill = ``;\nconst bootstrapPersonDash = ``;\nconst bootstrapPersonDown = ``;\nconst bootstrapPersonExclamation = ``;\nconst bootstrapPersonFillAdd = ``;\nconst bootstrapPersonFillCheck = ``;\nconst bootstrapPersonFillDash = ``;\nconst bootstrapPersonFillDown = ``;\nconst bootstrapPersonFillExclamation = ``;\nconst bootstrapPersonFillGear = ``;\nconst bootstrapPersonFillLock = ``;\nconst bootstrapPersonFillSlash = ``;\nconst bootstrapPersonFillUp = ``;\nconst bootstrapPersonFillX = ``;\nconst bootstrapPersonFill = ``;\nconst bootstrapPersonGear = ``;\nconst bootstrapPersonHeart = ``;\nconst bootstrapPersonHearts = ``;\nconst bootstrapPersonLinesFill = ``;\nconst bootstrapPersonLock = ``;\nconst bootstrapPersonPlusFill = ``;\nconst bootstrapPersonPlus = ``;\nconst bootstrapPersonRaisedHand = ``;\nconst bootstrapPersonRolodex = ``;\nconst bootstrapPersonSlash = ``;\nconst bootstrapPersonSquare = ``;\nconst bootstrapPersonStandingDress = ``;\nconst bootstrapPersonStanding = ``;\nconst bootstrapPersonUp = ``;\nconst bootstrapPersonVcardFill = ``;\nconst bootstrapPersonVcard = ``;\nconst bootstrapPersonVideo = ``;\nconst bootstrapPersonVideo2 = ``;\nconst bootstrapPersonVideo3 = ``;\nconst bootstrapPersonWalking = ``;\nconst bootstrapPersonWheelchair = ``;\nconst bootstrapPersonWorkspace = ``;\nconst bootstrapPersonXFill = ``;\nconst bootstrapPersonX = ``;\nconst bootstrapPerson = ``;\nconst bootstrapPhoneFill = ``;\nconst bootstrapPhoneFlip = ``;\nconst bootstrapPhoneLandscapeFill = ``;\nconst bootstrapPhoneLandscape = ``;\nconst bootstrapPhoneVibrateFill = ``;\nconst bootstrapPhoneVibrate = ``;\nconst bootstrapPhone = ``;\nconst bootstrapPieChartFill = ``;\nconst bootstrapPieChart = ``;\nconst bootstrapPiggyBankFill = ``;\nconst bootstrapPiggyBank = ``;\nconst bootstrapPinAngleFill = ``;\nconst bootstrapPinAngle = ``;\nconst bootstrapPinFill = ``;\nconst bootstrapPinMapFill = ``;\nconst bootstrapPinMap = ``;\nconst bootstrapPin = ``;\nconst bootstrapPinterest = ``;\nconst bootstrapPipFill = ``;\nconst bootstrapPip = ``;\nconst bootstrapPlayBtnFill = ``;\nconst bootstrapPlayBtn = ``;\nconst bootstrapPlayCircleFill = ``;\nconst bootstrapPlayCircle = ``;\nconst bootstrapPlayFill = ``;\nconst bootstrapPlay = ``;\nconst bootstrapPlaystation = ``;\nconst bootstrapPlugFill = ``;\nconst bootstrapPlug = ``;\nconst bootstrapPlugin = ``;\nconst bootstrapPlusCircleDotted = ``;\nconst bootstrapPlusCircleFill = ``;\nconst bootstrapPlusCircle = ``;\nconst bootstrapPlusLg = ``;\nconst bootstrapPlusSlashMinus = ``;\nconst bootstrapPlusSquareDotted = ``;\nconst bootstrapPlusSquareFill = ``;\nconst bootstrapPlusSquare = ``;\nconst bootstrapPlus = ``;\nconst bootstrapPostageFill = ``;\nconst bootstrapPostageHeartFill = ``;\nconst bootstrapPostageHeart = ``;\nconst bootstrapPostage = ``;\nconst bootstrapPostcardFill = ``;\nconst bootstrapPostcardHeartFill = ``;\nconst bootstrapPostcardHeart = ``;\nconst bootstrapPostcard = ``;\nconst bootstrapPower = ``;\nconst bootstrapPrescription = ``;\nconst bootstrapPrescription2 = ``;\nconst bootstrapPrinterFill = ``;\nconst bootstrapPrinter = ``;\nconst bootstrapProjectorFill = ``;\nconst bootstrapProjector = ``;\nconst bootstrapPuzzleFill = ``;\nconst bootstrapPuzzle = ``;\nconst bootstrapQrCodeScan = ``;\nconst bootstrapQrCode = ``;\nconst bootstrapQuestionCircleFill = ``;\nconst bootstrapQuestionCircle = ``;\nconst bootstrapQuestionDiamondFill = ``;\nconst bootstrapQuestionDiamond = ``;\nconst bootstrapQuestionLg = ``;\nconst bootstrapQuestionOctagonFill = ``;\nconst bootstrapQuestionOctagon = ``;\nconst bootstrapQuestionSquareFill = ``;\nconst bootstrapQuestionSquare = ``;\nconst bootstrapQuestion = ``;\nconst bootstrapQuora = ``;\nconst bootstrapQuote = ``;\nconst bootstrapRCircleFill = ``;\nconst bootstrapRCircle = ``;\nconst bootstrapRSquareFill = ``;\nconst bootstrapRSquare = ``;\nconst bootstrapRadar = ``;\nconst bootstrapRadioactive = ``;\nconst bootstrapRainbow = ``;\nconst bootstrapReceiptCutoff = ``;\nconst bootstrapReceipt = ``;\nconst bootstrapReception0 = ``;\nconst bootstrapReception1 = ``;\nconst bootstrapReception2 = ``;\nconst bootstrapReception3 = ``;\nconst bootstrapReception4 = ``;\nconst bootstrapRecordBtnFill = ``;\nconst bootstrapRecordBtn = ``;\nconst bootstrapRecordCircleFill = ``;\nconst bootstrapRecordCircle = ``;\nconst bootstrapRecordFill = ``;\nconst bootstrapRecord = ``;\nconst bootstrapRecord2Fill = ``;\nconst bootstrapRecord2 = ``;\nconst bootstrapRecycle = ``;\nconst bootstrapReddit = ``;\nconst bootstrapRegex = ``;\nconst bootstrapRepeat1 = ``;\nconst bootstrapRepeat = ``;\nconst bootstrapReplyAllFill = ``;\nconst bootstrapReplyAll = ``;\nconst bootstrapReplyFill = ``;\nconst bootstrapReply = ``;\nconst bootstrapRewindBtnFill = ``;\nconst bootstrapRewindBtn = ``;\nconst bootstrapRewindCircleFill = ``;\nconst bootstrapRewindCircle = ``;\nconst bootstrapRewindFill = ``;\nconst bootstrapRewind = ``;\nconst bootstrapRobot = ``;\nconst bootstrapRocketFill = ``;\nconst bootstrapRocketTakeoffFill = ``;\nconst bootstrapRocketTakeoff = ``;\nconst bootstrapRocket = ``;\nconst bootstrapRouterFill = ``;\nconst bootstrapRouter = ``;\nconst bootstrapRssFill = ``;\nconst bootstrapRss = ``;\nconst bootstrapRulers = ``;\nconst bootstrapSafeFill = ``;\nconst bootstrapSafe = ``;\nconst bootstrapSafe2Fill = ``;\nconst bootstrapSafe2 = ``;\nconst bootstrapSaveFill = ``;\nconst bootstrapSave = ``;\nconst bootstrapSave2Fill = ``;\nconst bootstrapSave2 = ``;\nconst bootstrapScissors = ``;\nconst bootstrapScooter = ``;\nconst bootstrapScrewdriver = ``;\nconst bootstrapSdCardFill = ``;\nconst bootstrapSdCard = ``;\nconst bootstrapSearchHeartFill = ``;\nconst bootstrapSearchHeart = ``;\nconst bootstrapSearch = ``;\nconst bootstrapSegmentedNav = ``;\nconst bootstrapSendArrowDownFill = ``;\nconst bootstrapSendArrowDown = ``;\nconst bootstrapSendArrowUpFill = ``;\nconst bootstrapSendArrowUp = ``;\nconst bootstrapSendCheckFill = ``;\nconst bootstrapSendCheck = ``;\nconst bootstrapSendDashFill = ``;\nconst bootstrapSendDash = ``;\nconst bootstrapSendExclamationFill = ``;\nconst bootstrapSendExclamation = ``;\nconst bootstrapSendFill = ``;\nconst bootstrapSendPlusFill = ``;\nconst bootstrapSendPlus = ``;\nconst bootstrapSendSlashFill = ``;\nconst bootstrapSendSlash = ``;\nconst bootstrapSendXFill = ``;\nconst bootstrapSendX = ``;\nconst bootstrapSend = ``;\nconst bootstrapServer = ``;\nconst bootstrapShadows = ``;\nconst bootstrapShareFill = ``;\nconst bootstrapShare = ``;\nconst bootstrapShieldCheck = ``;\nconst bootstrapShieldExclamation = ``;\nconst bootstrapShieldFillCheck = ``;\nconst bootstrapShieldFillExclamation = ``;\nconst bootstrapShieldFillMinus = ``;\nconst bootstrapShieldFillPlus = ``;\nconst bootstrapShieldFillX = ``;\nconst bootstrapShieldFill = ``;\nconst bootstrapShieldLockFill = ``;\nconst bootstrapShieldLock = ``;\nconst bootstrapShieldMinus = ``;\nconst bootstrapShieldPlus = ``;\nconst bootstrapShieldShaded = ``;\nconst bootstrapShieldSlashFill = ``;\nconst bootstrapShieldSlash = ``;\nconst bootstrapShieldX = ``;\nconst bootstrapShield = ``;\nconst bootstrapShiftFill = ``;\nconst bootstrapShift = ``;\nconst bootstrapShopWindow = ``;\nconst bootstrapShop = ``;\nconst bootstrapShuffle = ``;\nconst bootstrapSignDeadEndFill = ``;\nconst bootstrapSignDeadEnd = ``;\nconst bootstrapSignDoNotEnterFill = ``;\nconst bootstrapSignDoNotEnter = ``;\nconst bootstrapSignIntersectionFill = ``;\nconst bootstrapSignIntersectionSideFill = ``;\nconst bootstrapSignIntersectionSide = ``;\nconst bootstrapSignIntersectionTFill = ``;\nconst bootstrapSignIntersectionT = ``;\nconst bootstrapSignIntersectionYFill = ``;\nconst bootstrapSignIntersectionY = ``;\nconst bootstrapSignIntersection = ``;\nconst bootstrapSignMergeLeftFill = ``;\nconst bootstrapSignMergeLeft = ``;\nconst bootstrapSignMergeRightFill = ``;\nconst bootstrapSignMergeRight = ``;\nconst bootstrapSignNoLeftTurnFill = ``;\nconst bootstrapSignNoLeftTurn = ``;\nconst bootstrapSignNoParkingFill = ``;\nconst bootstrapSignNoParking = ``;\nconst bootstrapSignNoRightTurnFill = ``;\nconst bootstrapSignNoRightTurn = ``;\nconst bootstrapSignRailroadFill = ``;\nconst bootstrapSignRailroad = ``;\nconst bootstrapSignStopFill = ``;\nconst bootstrapSignStopLightsFill = ``;\nconst bootstrapSignStopLights = ``;\nconst bootstrapSignStop = ``;\nconst bootstrapSignTurnLeftFill = ``;\nconst bootstrapSignTurnLeft = ``;\nconst bootstrapSignTurnRightFill = ``;\nconst bootstrapSignTurnRight = ``;\nconst bootstrapSignTurnSlightLeftFill = ``;\nconst bootstrapSignTurnSlightLeft = ``;\nconst bootstrapSignTurnSlightRightFill = ``;\nconst bootstrapSignTurnSlightRight = ``;\nconst bootstrapSignYieldFill = ``;\nconst bootstrapSignYield = ``;\nconst bootstrapSignal = ``;\nconst bootstrapSignpost2Fill = ``;\nconst bootstrapSignpost2 = ``;\nconst bootstrapSignpostFill = ``;\nconst bootstrapSignpostSplitFill = ``;\nconst bootstrapSignpostSplit = ``;\nconst bootstrapSignpost = ``;\nconst bootstrapSimFill = ``;\nconst bootstrapSimSlashFill = ``;\nconst bootstrapSimSlash = ``;\nconst bootstrapSim = ``;\nconst bootstrapSinaWeibo = ``;\nconst bootstrapSkipBackwardBtnFill = ``;\nconst bootstrapSkipBackwardBtn = ``;\nconst bootstrapSkipBackwardCircleFill = ``;\nconst bootstrapSkipBackwardCircle = ``;\nconst bootstrapSkipBackwardFill = ``;\nconst bootstrapSkipBackward = ``;\nconst bootstrapSkipEndBtnFill = ``;\nconst bootstrapSkipEndBtn = ``;\nconst bootstrapSkipEndCircleFill = ``;\nconst bootstrapSkipEndCircle = ``;\nconst bootstrapSkipEndFill = ``;\nconst bootstrapSkipEnd = ``;\nconst bootstrapSkipForwardBtnFill = ``;\nconst bootstrapSkipForwardBtn = ``;\nconst bootstrapSkipForwardCircleFill = ``;\nconst bootstrapSkipForwardCircle = ``;\nconst bootstrapSkipForwardFill = ``;\nconst bootstrapSkipForward = ``;\nconst bootstrapSkipStartBtnFill = ``;\nconst bootstrapSkipStartBtn = ``;\nconst bootstrapSkipStartCircleFill = ``;\nconst bootstrapSkipStartCircle = ``;\nconst bootstrapSkipStartFill = ``;\nconst bootstrapSkipStart = ``;\nconst bootstrapSkype = ``;\nconst bootstrapSlack = ``;\nconst bootstrapSlashCircleFill = ``;\nconst bootstrapSlashCircle = ``;\nconst bootstrapSlashLg = ``;\nconst bootstrapSlashSquareFill = ``;\nconst bootstrapSlashSquare = ``;\nconst bootstrapSlash = ``;\nconst bootstrapSliders = ``;\nconst bootstrapSliders2Vertical = ``;\nconst bootstrapSliders2 = ``;\nconst bootstrapSmartwatch = ``;\nconst bootstrapSnapchat = ``;\nconst bootstrapSnow = ``;\nconst bootstrapSnow2 = ``;\nconst bootstrapSnow3 = ``;\nconst bootstrapSortAlphaDownAlt = ``;\nconst bootstrapSortAlphaDown = ``;\nconst bootstrapSortAlphaUpAlt = ``;\nconst bootstrapSortAlphaUp = ``;\nconst bootstrapSortDownAlt = ``;\nconst bootstrapSortDown = ``;\nconst bootstrapSortNumericDownAlt = ``;\nconst bootstrapSortNumericDown = ``;\nconst bootstrapSortNumericUpAlt = ``;\nconst bootstrapSortNumericUp = ``;\nconst bootstrapSortUpAlt = ``;\nconst bootstrapSortUp = ``;\nconst bootstrapSoundwave = ``;\nconst bootstrapSourceforge = ``;\nconst bootstrapSpeakerFill = ``;\nconst bootstrapSpeaker = ``;\nconst bootstrapSpeedometer = ``;\nconst bootstrapSpeedometer2 = ``;\nconst bootstrapSpellcheck = ``;\nconst bootstrapSpotify = ``;\nconst bootstrapSquareFill = ``;\nconst bootstrapSquareHalf = ``;\nconst bootstrapSquare = ``;\nconst bootstrapStackOverflow = ``;\nconst bootstrapStack = ``;\nconst bootstrapStarFill = ``;\nconst bootstrapStarHalf = ``;\nconst bootstrapStar = ``;\nconst bootstrapStars = ``;\nconst bootstrapSteam = ``;\nconst bootstrapStickiesFill = ``;\nconst bootstrapStickies = ``;\nconst bootstrapStickyFill = ``;\nconst bootstrapSticky = ``;\nconst bootstrapStopBtnFill = ``;\nconst bootstrapStopBtn = ``;\nconst bootstrapStopCircleFill = ``;\nconst bootstrapStopCircle = ``;\nconst bootstrapStopFill = ``;\nconst bootstrapStop = ``;\nconst bootstrapStoplightsFill = ``;\nconst bootstrapStoplights = ``;\nconst bootstrapStopwatchFill = ``;\nconst bootstrapStopwatch = ``;\nconst bootstrapStrava = ``;\nconst bootstrapStripe = ``;\nconst bootstrapSubscript = ``;\nconst bootstrapSubstack = ``;\nconst bootstrapSubtract = ``;\nconst bootstrapSuitClubFill = ``;\nconst bootstrapSuitClub = ``;\nconst bootstrapSuitDiamondFill = ``;\nconst bootstrapSuitDiamond = ``;\nconst bootstrapSuitHeartFill = ``;\nconst bootstrapSuitHeart = ``;\nconst bootstrapSuitSpadeFill = ``;\nconst bootstrapSuitSpade = ``;\nconst bootstrapSuitcaseFill = ``;\nconst bootstrapSuitcaseLgFill = ``;\nconst bootstrapSuitcaseLg = ``;\nconst bootstrapSuitcase = ``;\nconst bootstrapSuitcase2Fill = ``;\nconst bootstrapSuitcase2 = ``;\nconst bootstrapSunFill = ``;\nconst bootstrapSun = ``;\nconst bootstrapSunglasses = ``;\nconst bootstrapSunriseFill = ``;\nconst bootstrapSunrise = ``;\nconst bootstrapSunsetFill = ``;\nconst bootstrapSunset = ``;\nconst bootstrapSuperscript = ``;\nconst bootstrapSymmetryHorizontal = ``;\nconst bootstrapSymmetryVertical = ``;\nconst bootstrapTable = ``;\nconst bootstrapTabletFill = ``;\nconst bootstrapTabletLandscapeFill = ``;\nconst bootstrapTabletLandscape = ``;\nconst bootstrapTablet = ``;\nconst bootstrapTagFill = ``;\nconst bootstrapTag = ``;\nconst bootstrapTagsFill = ``;\nconst bootstrapTags = ``;\nconst bootstrapTaxiFrontFill = ``;\nconst bootstrapTaxiFront = ``;\nconst bootstrapTelegram = ``;\nconst bootstrapTelephoneFill = ``;\nconst bootstrapTelephoneForwardFill = ``;\nconst bootstrapTelephoneForward = ``;\nconst bootstrapTelephoneInboundFill = ``;\nconst bootstrapTelephoneInbound = ``;\nconst bootstrapTelephoneMinusFill = ``;\nconst bootstrapTelephoneMinus = ``;\nconst bootstrapTelephoneOutboundFill = ``;\nconst bootstrapTelephoneOutbound = ``;\nconst bootstrapTelephonePlusFill = ``;\nconst bootstrapTelephonePlus = ``;\nconst bootstrapTelephoneXFill = ``;\nconst bootstrapTelephoneX = ``;\nconst bootstrapTelephone = ``;\nconst bootstrapTencentQq = ``;\nconst bootstrapTerminalDash = ``;\nconst bootstrapTerminalFill = ``;\nconst bootstrapTerminalPlus = ``;\nconst bootstrapTerminalSplit = ``;\nconst bootstrapTerminalX = ``;\nconst bootstrapTerminal = ``;\nconst bootstrapTextCenter = ``;\nconst bootstrapTextIndentLeft = ``;\nconst bootstrapTextIndentRight = ``;\nconst bootstrapTextLeft = ``;\nconst bootstrapTextParagraph = ``;\nconst bootstrapTextRight = ``;\nconst bootstrapTextWrap = ``;\nconst bootstrapTextareaResize = ``;\nconst bootstrapTextareaT = ``;\nconst bootstrapTextarea = ``;\nconst bootstrapThermometerHalf = ``;\nconst bootstrapThermometerHigh = ``;\nconst bootstrapThermometerLow = ``;\nconst bootstrapThermometerSnow = ``;\nconst bootstrapThermometerSun = ``;\nconst bootstrapThermometer = ``;\nconst bootstrapThreadsFill = ``;\nconst bootstrapThreads = ``;\nconst bootstrapThreeDotsVertical = ``;\nconst bootstrapThreeDots = ``;\nconst bootstrapThunderboltFill = ``;\nconst bootstrapThunderbolt = ``;\nconst bootstrapTicketDetailedFill = ``;\nconst bootstrapTicketDetailed = ``;\nconst bootstrapTicketFill = ``;\nconst bootstrapTicketPerforatedFill = ``;\nconst bootstrapTicketPerforated = ``;\nconst bootstrapTicket = ``;\nconst bootstrapTiktok = ``;\nconst bootstrapToggleOff = ``;\nconst bootstrapToggleOn = ``;\nconst bootstrapToggle2Off = ``;\nconst bootstrapToggle2On = ``;\nconst bootstrapToggles = ``;\nconst bootstrapToggles2 = ``;\nconst bootstrapTools = ``;\nconst bootstrapTornado = ``;\nconst bootstrapTrainFreightFrontFill = ``;\nconst bootstrapTrainFreightFront = ``;\nconst bootstrapTrainFrontFill = ``;\nconst bootstrapTrainFront = ``;\nconst bootstrapTrainLightrailFrontFill = ``;\nconst bootstrapTrainLightrailFront = ``;\nconst bootstrapTranslate = ``;\nconst bootstrapTransparency = ``;\nconst bootstrapTrashFill = ``;\nconst bootstrapTrash = ``;\nconst bootstrapTrash2Fill = ``;\nconst bootstrapTrash2 = ``;\nconst bootstrapTrash3Fill = ``;\nconst bootstrapTrash3 = ``;\nconst bootstrapTreeFill = ``;\nconst bootstrapTree = ``;\nconst bootstrapTrello = ``;\nconst bootstrapTriangleFill = ``;\nconst bootstrapTriangleHalf = ``;\nconst bootstrapTriangle = ``;\nconst bootstrapTrophyFill = ``;\nconst bootstrapTrophy = ``;\nconst bootstrapTropicalStorm = ``;\nconst bootstrapTruckFlatbed = ``;\nconst bootstrapTruckFrontFill = ``;\nconst bootstrapTruckFront = ``;\nconst bootstrapTruck = ``;\nconst bootstrapTsunami = ``;\nconst bootstrapTvFill = ``;\nconst bootstrapTv = ``;\nconst bootstrapTwitch = ``;\nconst bootstrapTwitterX = ``;\nconst bootstrapTwitter = ``;\nconst bootstrapTypeBold = ``;\nconst bootstrapTypeH1 = ``;\nconst bootstrapTypeH2 = ``;\nconst bootstrapTypeH3 = ``;\nconst bootstrapTypeH4 = ``;\nconst bootstrapTypeH5 = ``;\nconst bootstrapTypeH6 = ``;\nconst bootstrapTypeItalic = ``;\nconst bootstrapTypeStrikethrough = ``;\nconst bootstrapTypeUnderline = ``;\nconst bootstrapType = ``;\nconst bootstrapUbuntu = ``;\nconst bootstrapUiChecksGrid = ``;\nconst bootstrapUiChecks = ``;\nconst bootstrapUiRadiosGrid = ``;\nconst bootstrapUiRadios = ``;\nconst bootstrapUmbrellaFill = ``;\nconst bootstrapUmbrella = ``;\nconst bootstrapUnindent = ``;\nconst bootstrapUnion = ``;\nconst bootstrapUnity = ``;\nconst bootstrapUniversalAccessCircle = ``;\nconst bootstrapUniversalAccess = ``;\nconst bootstrapUnlockFill = ``;\nconst bootstrapUnlock = ``;\nconst bootstrapUpcScan = ``;\nconst bootstrapUpc = ``;\nconst bootstrapUpload = ``;\nconst bootstrapUsbCFill = ``;\nconst bootstrapUsbC = ``;\nconst bootstrapUsbDriveFill = ``;\nconst bootstrapUsbDrive = ``;\nconst bootstrapUsbFill = ``;\nconst bootstrapUsbMicroFill = ``;\nconst bootstrapUsbMicro = ``;\nconst bootstrapUsbMiniFill = ``;\nconst bootstrapUsbMini = ``;\nconst bootstrapUsbPlugFill = ``;\nconst bootstrapUsbPlug = ``;\nconst bootstrapUsbSymbol = ``;\nconst bootstrapUsb = ``;\nconst bootstrapValentine = ``;\nconst bootstrapValentine2 = ``;\nconst bootstrapVectorPen = ``;\nconst bootstrapViewList = ``;\nconst bootstrapViewStacked = ``;\nconst bootstrapVignette = ``;\nconst bootstrapVimeo = ``;\nconst bootstrapVinylFill = ``;\nconst bootstrapVinyl = ``;\nconst bootstrapVirus = ``;\nconst bootstrapVirus2 = ``;\nconst bootstrapVoicemail = ``;\nconst bootstrapVolumeDownFill = ``;\nconst bootstrapVolumeDown = ``;\nconst bootstrapVolumeMuteFill = ``;\nconst bootstrapVolumeMute = ``;\nconst bootstrapVolumeOffFill = ``;\nconst bootstrapVolumeOff = ``;\nconst bootstrapVolumeUpFill = ``;\nconst bootstrapVolumeUp = ``;\nconst bootstrapVr = ``;\nconst bootstrapWalletFill = ``;\nconst bootstrapWallet = ``;\nconst bootstrapWallet2 = ``;\nconst bootstrapWatch = ``;\nconst bootstrapWater = ``;\nconst bootstrapWebcamFill = ``;\nconst bootstrapWebcam = ``;\nconst bootstrapWechat = ``;\nconst bootstrapWhatsapp = ``;\nconst bootstrapWifi1 = ``;\nconst bootstrapWifi2 = ``;\nconst bootstrapWifiOff = ``;\nconst bootstrapWifi = ``;\nconst bootstrapWikipedia = ``;\nconst bootstrapWind = ``;\nconst bootstrapWindowDash = ``;\nconst bootstrapWindowDesktop = ``;\nconst bootstrapWindowDock = ``;\nconst bootstrapWindowFullscreen = ``;\nconst bootstrapWindowPlus = ``;\nconst bootstrapWindowSidebar = ``;\nconst bootstrapWindowSplit = ``;\nconst bootstrapWindowStack = ``;\nconst bootstrapWindowX = ``;\nconst bootstrapWindow = ``;\nconst bootstrapWindows = ``;\nconst bootstrapWordpress = ``;\nconst bootstrapWrenchAdjustableCircleFill = ``;\nconst bootstrapWrenchAdjustableCircle = ``;\nconst bootstrapWrenchAdjustable = ``;\nconst bootstrapWrench = ``;\nconst bootstrapXCircleFill = ``;\nconst bootstrapXCircle = ``;\nconst bootstrapXDiamondFill = ``;\nconst bootstrapXDiamond = ``;\nconst bootstrapXLg = ``;\nconst bootstrapXOctagonFill = ``;\nconst bootstrapXOctagon = ``;\nconst bootstrapXSquareFill = ``;\nconst bootstrapXSquare = ``;\nconst bootstrapX = ``;\nconst bootstrapXbox = ``;\nconst bootstrapYelp = ``;\nconst bootstrapYinYang = ``;\nconst bootstrapYoutube = ``;\nconst bootstrapZoomIn = ``;\nconst bootstrapZoomOut = ``;\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { bootstrap0Circle, bootstrap0CircleFill, bootstrap0Square, bootstrap0SquareFill, bootstrap123, bootstrap1Circle, bootstrap1CircleFill, bootstrap1Square, bootstrap1SquareFill, bootstrap2Circle, bootstrap2CircleFill, bootstrap2Square, bootstrap2SquareFill, bootstrap3Circle, bootstrap3CircleFill, bootstrap3Square, bootstrap3SquareFill, bootstrap4Circle, bootstrap4CircleFill, bootstrap4Square, bootstrap4SquareFill, bootstrap5Circle, bootstrap5CircleFill, bootstrap5Square, bootstrap5SquareFill, bootstrap6Circle, bootstrap6CircleFill, bootstrap6Square, bootstrap6SquareFill, bootstrap7Circle, bootstrap7CircleFill, bootstrap7Square, bootstrap7SquareFill, bootstrap8Circle, bootstrap8CircleFill, bootstrap8Square, bootstrap8SquareFill, bootstrap9Circle, bootstrap9CircleFill, bootstrap9Square, bootstrap9SquareFill, bootstrapActivity, bootstrapAirplane, bootstrapAirplaneEngines, bootstrapAirplaneEnginesFill, bootstrapAirplaneFill, bootstrapAlarm, bootstrapAlarmFill, bootstrapAlexa, bootstrapAlignBottom, bootstrapAlignCenter, bootstrapAlignEnd, bootstrapAlignMiddle, bootstrapAlignStart, bootstrapAlignTop, bootstrapAlipay, bootstrapAlphabet, bootstrapAlphabetUppercase, bootstrapAlt, bootstrapAmazon, bootstrapAmd, bootstrapAndroid, bootstrapAndroid2, bootstrapApp, bootstrapAppIndicator, bootstrapApple, bootstrapArchive, bootstrapArchiveFill, bootstrapArrow90degDown, bootstrapArrow90degLeft, bootstrapArrow90degRight, bootstrapArrow90degUp, bootstrapArrowBarDown, bootstrapArrowBarLeft, bootstrapArrowBarRight, bootstrapArrowBarUp, bootstrapArrowClockwise, bootstrapArrowCounterclockwise, bootstrapArrowDown, bootstrapArrowDownCircle, bootstrapArrowDownCircleFill, bootstrapArrowDownLeft, bootstrapArrowDownLeftCircle, bootstrapArrowDownLeftCircleFill, bootstrapArrowDownLeftSquare, bootstrapArrowDownLeftSquareFill, bootstrapArrowDownRight, bootstrapArrowDownRightCircle, bootstrapArrowDownRightCircleFill, bootstrapArrowDownRightSquare, bootstrapArrowDownRightSquareFill, bootstrapArrowDownShort, bootstrapArrowDownSquare, bootstrapArrowDownSquareFill, bootstrapArrowDownUp, bootstrapArrowLeft, bootstrapArrowLeftCircle, bootstrapArrowLeftCircleFill, bootstrapArrowLeftRight, bootstrapArrowLeftShort, bootstrapArrowLeftSquare, bootstrapArrowLeftSquareFill, bootstrapArrowRepeat, bootstrapArrowReturnLeft, bootstrapArrowReturnRight, bootstrapArrowRight, bootstrapArrowRightCircle, bootstrapArrowRightCircleFill, bootstrapArrowRightShort, bootstrapArrowRightSquare, bootstrapArrowRightSquareFill, bootstrapArrowThroughHeart, bootstrapArrowThroughHeartFill, bootstrapArrowUp, bootstrapArrowUpCircle, bootstrapArrowUpCircleFill, bootstrapArrowUpLeft, bootstrapArrowUpLeftCircle, bootstrapArrowUpLeftCircleFill, bootstrapArrowUpLeftSquare, bootstrapArrowUpLeftSquareFill, bootstrapArrowUpRight, bootstrapArrowUpRightCircle, bootstrapArrowUpRightCircleFill, bootstrapArrowUpRightSquare, bootstrapArrowUpRightSquareFill, bootstrapArrowUpShort, bootstrapArrowUpSquare, bootstrapArrowUpSquareFill, bootstrapArrows, bootstrapArrowsAngleContract, bootstrapArrowsAngleExpand, bootstrapArrowsCollapse, bootstrapArrowsCollapseVertical, bootstrapArrowsExpand, bootstrapArrowsExpandVertical, bootstrapArrowsFullscreen, bootstrapArrowsMove, bootstrapArrowsVertical, bootstrapAspectRatio, bootstrapAspectRatioFill, bootstrapAsterisk, bootstrapAt, bootstrapAward, bootstrapAwardFill, bootstrapBack, bootstrapBackpack, bootstrapBackpack2, bootstrapBackpack2Fill, bootstrapBackpack3, bootstrapBackpack3Fill, bootstrapBackpack4, bootstrapBackpack4Fill, bootstrapBackpackFill, bootstrapBackspace, bootstrapBackspaceFill, bootstrapBackspaceReverse, bootstrapBackspaceReverseFill, bootstrapBadge3d, bootstrapBadge3dFill, bootstrapBadge4k, bootstrapBadge4kFill, bootstrapBadge8k, bootstrapBadge8kFill, bootstrapBadgeAd, bootstrapBadgeAdFill, bootstrapBadgeAr, bootstrapBadgeArFill, bootstrapBadgeCc, bootstrapBadgeCcFill, bootstrapBadgeHd, bootstrapBadgeHdFill, bootstrapBadgeSd, bootstrapBadgeSdFill, bootstrapBadgeTm, bootstrapBadgeTmFill, bootstrapBadgeVo, bootstrapBadgeVoFill, bootstrapBadgeVr, bootstrapBadgeVrFill, bootstrapBadgeWc, bootstrapBadgeWcFill, bootstrapBag, bootstrapBagCheck, bootstrapBagCheckFill, bootstrapBagDash, bootstrapBagDashFill, bootstrapBagFill, bootstrapBagHeart, bootstrapBagHeartFill, bootstrapBagPlus, bootstrapBagPlusFill, bootstrapBagX, bootstrapBagXFill, bootstrapBalloon, bootstrapBalloonFill, bootstrapBalloonHeart, bootstrapBalloonHeartFill, bootstrapBan, bootstrapBanFill, bootstrapBandaid, bootstrapBandaidFill, bootstrapBank, bootstrapBank2, bootstrapBarChart, bootstrapBarChartFill, bootstrapBarChartLine, bootstrapBarChartLineFill, bootstrapBarChartSteps, bootstrapBasket, bootstrapBasket2, bootstrapBasket2Fill, bootstrapBasket3, bootstrapBasket3Fill, bootstrapBasketFill, bootstrapBattery, bootstrapBatteryCharging, bootstrapBatteryFull, bootstrapBatteryHalf, bootstrapBehance, bootstrapBell, bootstrapBellFill, bootstrapBellSlash, bootstrapBellSlashFill, bootstrapBezier, bootstrapBezier2, bootstrapBicycle, bootstrapBing, bootstrapBinoculars, bootstrapBinocularsFill, bootstrapBlockquoteLeft, bootstrapBlockquoteRight, bootstrapBluetooth, bootstrapBodyText, bootstrapBook, bootstrapBookFill, bootstrapBookHalf, bootstrapBookmark, bootstrapBookmarkCheck, bootstrapBookmarkCheckFill, bootstrapBookmarkDash, bootstrapBookmarkDashFill, bootstrapBookmarkFill, bootstrapBookmarkHeart, bootstrapBookmarkHeartFill, bootstrapBookmarkPlus, bootstrapBookmarkPlusFill, bootstrapBookmarkStar, bootstrapBookmarkStarFill, bootstrapBookmarkX, bootstrapBookmarkXFill, bootstrapBookmarks, bootstrapBookmarksFill, bootstrapBookshelf, bootstrapBoombox, bootstrapBoomboxFill, bootstrapBootstrap, bootstrapBootstrapFill, bootstrapBootstrapReboot, bootstrapBorder, bootstrapBorderAll, bootstrapBorderBottom, bootstrapBorderCenter, bootstrapBorderInner, bootstrapBorderLeft, bootstrapBorderMiddle, bootstrapBorderOuter, bootstrapBorderRight, bootstrapBorderStyle, bootstrapBorderTop, bootstrapBorderWidth, bootstrapBoundingBox, bootstrapBoundingBoxCircles, bootstrapBox, bootstrapBox2, bootstrapBox2Fill, bootstrapBox2Heart, bootstrapBox2HeartFill, bootstrapBoxArrowDown, bootstrapBoxArrowDownLeft, bootstrapBoxArrowDownRight, bootstrapBoxArrowInDown, bootstrapBoxArrowInDownLeft, bootstrapBoxArrowInDownRight, bootstrapBoxArrowInLeft, bootstrapBoxArrowInRight, bootstrapBoxArrowInUp, bootstrapBoxArrowInUpLeft, bootstrapBoxArrowInUpRight, bootstrapBoxArrowLeft, bootstrapBoxArrowRight, bootstrapBoxArrowUp, bootstrapBoxArrowUpLeft, bootstrapBoxArrowUpRight, bootstrapBoxFill, bootstrapBoxSeam, bootstrapBoxSeamFill, bootstrapBoxes, bootstrapBraces, bootstrapBracesAsterisk, bootstrapBricks, bootstrapBriefcase, bootstrapBriefcaseFill, bootstrapBrightnessAltHigh, bootstrapBrightnessAltHighFill, bootstrapBrightnessAltLow, bootstrapBrightnessAltLowFill, bootstrapBrightnessHigh, bootstrapBrightnessHighFill, bootstrapBrightnessLow, bootstrapBrightnessLowFill, bootstrapBrilliance, bootstrapBroadcast, bootstrapBroadcastPin, bootstrapBrowserChrome, bootstrapBrowserEdge, bootstrapBrowserFirefox, bootstrapBrowserSafari, bootstrapBrush, bootstrapBrushFill, bootstrapBucket, bootstrapBucketFill, bootstrapBug, bootstrapBugFill, bootstrapBuilding, bootstrapBuildingAdd, bootstrapBuildingCheck, bootstrapBuildingDash, bootstrapBuildingDown, bootstrapBuildingExclamation, bootstrapBuildingFill, bootstrapBuildingFillAdd, bootstrapBuildingFillCheck, bootstrapBuildingFillDash, bootstrapBuildingFillDown, bootstrapBuildingFillExclamation, bootstrapBuildingFillGear, bootstrapBuildingFillLock, bootstrapBuildingFillSlash, bootstrapBuildingFillUp, bootstrapBuildingFillX, bootstrapBuildingGear, bootstrapBuildingLock, bootstrapBuildingSlash, bootstrapBuildingUp, bootstrapBuildingX, bootstrapBuildings, bootstrapBuildingsFill, bootstrapBullseye, bootstrapBusFront, bootstrapBusFrontFill, bootstrapCCircle, bootstrapCCircleFill, bootstrapCSquare, bootstrapCSquareFill, bootstrapCake, bootstrapCake2, bootstrapCake2Fill, bootstrapCakeFill, bootstrapCalculator, bootstrapCalculatorFill, bootstrapCalendar, bootstrapCalendar2, bootstrapCalendar2Check, bootstrapCalendar2CheckFill, bootstrapCalendar2Date, bootstrapCalendar2DateFill, bootstrapCalendar2Day, bootstrapCalendar2DayFill, bootstrapCalendar2Event, bootstrapCalendar2EventFill, bootstrapCalendar2Fill, bootstrapCalendar2Heart, bootstrapCalendar2HeartFill, bootstrapCalendar2Minus, bootstrapCalendar2MinusFill, bootstrapCalendar2Month, bootstrapCalendar2MonthFill, bootstrapCalendar2Plus, bootstrapCalendar2PlusFill, bootstrapCalendar2Range, bootstrapCalendar2RangeFill, bootstrapCalendar2Week, bootstrapCalendar2WeekFill, bootstrapCalendar2X, bootstrapCalendar2XFill, bootstrapCalendar3, bootstrapCalendar3Event, bootstrapCalendar3EventFill, bootstrapCalendar3Fill, bootstrapCalendar3Range, bootstrapCalendar3RangeFill, bootstrapCalendar3Week, bootstrapCalendar3WeekFill, bootstrapCalendar4, bootstrapCalendar4Event, bootstrapCalendar4Range, bootstrapCalendar4Week, bootstrapCalendarCheck, bootstrapCalendarCheckFill, bootstrapCalendarDate, bootstrapCalendarDateFill, bootstrapCalendarDay, bootstrapCalendarDayFill, bootstrapCalendarEvent, bootstrapCalendarEventFill, bootstrapCalendarFill, bootstrapCalendarHeart, bootstrapCalendarHeartFill, bootstrapCalendarMinus, bootstrapCalendarMinusFill, bootstrapCalendarMonth, bootstrapCalendarMonthFill, bootstrapCalendarPlus, bootstrapCalendarPlusFill, bootstrapCalendarRange, bootstrapCalendarRangeFill, bootstrapCalendarWeek, bootstrapCalendarWeekFill, bootstrapCalendarX, bootstrapCalendarXFill, bootstrapCamera, bootstrapCamera2, bootstrapCameraFill, bootstrapCameraReels, bootstrapCameraReelsFill, bootstrapCameraVideo, bootstrapCameraVideoFill, bootstrapCameraVideoOff, bootstrapCameraVideoOffFill, bootstrapCapslock, bootstrapCapslockFill, bootstrapCapsule, bootstrapCapsulePill, bootstrapCarFront, bootstrapCarFrontFill, bootstrapCardChecklist, bootstrapCardHeading, bootstrapCardImage, bootstrapCardList, bootstrapCardText, bootstrapCaretDown, bootstrapCaretDownFill, bootstrapCaretDownSquare, bootstrapCaretDownSquareFill, bootstrapCaretLeft, bootstrapCaretLeftFill, bootstrapCaretLeftSquare, bootstrapCaretLeftSquareFill, bootstrapCaretRight, bootstrapCaretRightFill, bootstrapCaretRightSquare, bootstrapCaretRightSquareFill, bootstrapCaretUp, bootstrapCaretUpFill, bootstrapCaretUpSquare, bootstrapCaretUpSquareFill, bootstrapCart, bootstrapCart2, bootstrapCart3, bootstrapCart4, bootstrapCartCheck, bootstrapCartCheckFill, bootstrapCartDash, bootstrapCartDashFill, bootstrapCartFill, bootstrapCartPlus, bootstrapCartPlusFill, bootstrapCartX, bootstrapCartXFill, bootstrapCash, bootstrapCashCoin, bootstrapCashStack, bootstrapCassette, bootstrapCassetteFill, bootstrapCast, bootstrapCcCircle, bootstrapCcCircleFill, bootstrapCcSquare, bootstrapCcSquareFill, bootstrapChat, bootstrapChatDots, bootstrapChatDotsFill, bootstrapChatFill, bootstrapChatHeart, bootstrapChatHeartFill, bootstrapChatLeft, bootstrapChatLeftDots, bootstrapChatLeftDotsFill, bootstrapChatLeftFill, bootstrapChatLeftHeart, bootstrapChatLeftHeartFill, bootstrapChatLeftQuote, bootstrapChatLeftQuoteFill, bootstrapChatLeftText, bootstrapChatLeftTextFill, bootstrapChatQuote, bootstrapChatQuoteFill, bootstrapChatRight, bootstrapChatRightDots, bootstrapChatRightDotsFill, bootstrapChatRightFill, bootstrapChatRightHeart, bootstrapChatRightHeartFill, bootstrapChatRightQuote, bootstrapChatRightQuoteFill, bootstrapChatRightText, bootstrapChatRightTextFill, bootstrapChatSquare, bootstrapChatSquareDots, bootstrapChatSquareDotsFill, bootstrapChatSquareFill, bootstrapChatSquareHeart, bootstrapChatSquareHeartFill, bootstrapChatSquareQuote, bootstrapChatSquareQuoteFill, bootstrapChatSquareText, bootstrapChatSquareTextFill, bootstrapChatText, bootstrapChatTextFill, bootstrapCheck, bootstrapCheck2, bootstrapCheck2All, bootstrapCheck2Circle, bootstrapCheck2Square, bootstrapCheckAll, bootstrapCheckCircle, bootstrapCheckCircleFill, bootstrapCheckLg, bootstrapCheckSquare, bootstrapCheckSquareFill, bootstrapChevronBarContract, bootstrapChevronBarDown, bootstrapChevronBarExpand, bootstrapChevronBarLeft, bootstrapChevronBarRight, bootstrapChevronBarUp, bootstrapChevronCompactDown, bootstrapChevronCompactLeft, bootstrapChevronCompactRight, bootstrapChevronCompactUp, bootstrapChevronContract, bootstrapChevronDoubleDown, bootstrapChevronDoubleLeft, bootstrapChevronDoubleRight, bootstrapChevronDoubleUp, bootstrapChevronDown, bootstrapChevronExpand, bootstrapChevronLeft, bootstrapChevronRight, bootstrapChevronUp, bootstrapCircle, bootstrapCircleFill, bootstrapCircleHalf, bootstrapCircleSquare, bootstrapClipboard, bootstrapClipboard2, bootstrapClipboard2Check, bootstrapClipboard2CheckFill, bootstrapClipboard2Data, bootstrapClipboard2DataFill, bootstrapClipboard2Fill, bootstrapClipboard2Heart, bootstrapClipboard2HeartFill, bootstrapClipboard2Minus, bootstrapClipboard2MinusFill, bootstrapClipboard2Plus, bootstrapClipboard2PlusFill, bootstrapClipboard2Pulse, bootstrapClipboard2PulseFill, bootstrapClipboard2X, bootstrapClipboard2XFill, bootstrapClipboardCheck, bootstrapClipboardCheckFill, bootstrapClipboardData, bootstrapClipboardDataFill, bootstrapClipboardFill, bootstrapClipboardHeart, bootstrapClipboardHeartFill, bootstrapClipboardMinus, bootstrapClipboardMinusFill, bootstrapClipboardPlus, bootstrapClipboardPlusFill, bootstrapClipboardPulse, bootstrapClipboardX, bootstrapClipboardXFill, bootstrapClock, bootstrapClockFill, bootstrapClockHistory, bootstrapCloud, bootstrapCloudArrowDown, bootstrapCloudArrowDownFill, bootstrapCloudArrowUp, bootstrapCloudArrowUpFill, bootstrapCloudCheck, bootstrapCloudCheckFill, bootstrapCloudDownload, bootstrapCloudDownloadFill, bootstrapCloudDrizzle, bootstrapCloudDrizzleFill, bootstrapCloudFill, bootstrapCloudFog, bootstrapCloudFog2, bootstrapCloudFog2Fill, bootstrapCloudFogFill, bootstrapCloudHail, bootstrapCloudHailFill, bootstrapCloudHaze, bootstrapCloudHaze2, bootstrapCloudHaze2Fill, bootstrapCloudHazeFill, bootstrapCloudLightning, bootstrapCloudLightningFill, bootstrapCloudLightningRain, bootstrapCloudLightningRainFill, bootstrapCloudMinus, bootstrapCloudMinusFill, bootstrapCloudMoon, bootstrapCloudMoonFill, bootstrapCloudPlus, bootstrapCloudPlusFill, bootstrapCloudRain, bootstrapCloudRainFill, bootstrapCloudRainHeavy, bootstrapCloudRainHeavyFill, bootstrapCloudSlash, bootstrapCloudSlashFill, bootstrapCloudSleet, bootstrapCloudSleetFill, bootstrapCloudSnow, bootstrapCloudSnowFill, bootstrapCloudSun, bootstrapCloudSunFill, bootstrapCloudUpload, bootstrapCloudUploadFill, bootstrapClouds, bootstrapCloudsFill, bootstrapCloudy, bootstrapCloudyFill, bootstrapCode, bootstrapCodeSlash, bootstrapCodeSquare, bootstrapCoin, bootstrapCollection, bootstrapCollectionFill, bootstrapCollectionPlay, bootstrapCollectionPlayFill, bootstrapColumns, bootstrapColumnsGap, bootstrapCommand, bootstrapCompass, bootstrapCompassFill, bootstrapCone, bootstrapConeStriped, bootstrapController, bootstrapCookie, bootstrapCopy, bootstrapCpu, bootstrapCpuFill, bootstrapCreditCard, bootstrapCreditCard2Back, bootstrapCreditCard2BackFill, bootstrapCreditCard2Front, bootstrapCreditCard2FrontFill, bootstrapCreditCardFill, bootstrapCrop, bootstrapCrosshair, bootstrapCrosshair2, bootstrapCup, bootstrapCupFill, bootstrapCupHot, bootstrapCupHotFill, bootstrapCupStraw, bootstrapCurrencyBitcoin, bootstrapCurrencyDollar, bootstrapCurrencyEuro, bootstrapCurrencyExchange, bootstrapCurrencyPound, bootstrapCurrencyRupee, bootstrapCurrencyYen, bootstrapCursor, bootstrapCursorFill, bootstrapCursorText, bootstrapDash, bootstrapDashCircle, bootstrapDashCircleDotted, bootstrapDashCircleFill, bootstrapDashLg, bootstrapDashSquare, bootstrapDashSquareDotted, bootstrapDashSquareFill, bootstrapDatabase, bootstrapDatabaseAdd, bootstrapDatabaseCheck, bootstrapDatabaseDash, bootstrapDatabaseDown, bootstrapDatabaseExclamation, bootstrapDatabaseFill, bootstrapDatabaseFillAdd, bootstrapDatabaseFillCheck, bootstrapDatabaseFillDash, bootstrapDatabaseFillDown, bootstrapDatabaseFillExclamation, bootstrapDatabaseFillGear, bootstrapDatabaseFillLock, bootstrapDatabaseFillSlash, bootstrapDatabaseFillUp, bootstrapDatabaseFillX, bootstrapDatabaseGear, bootstrapDatabaseLock, bootstrapDatabaseSlash, bootstrapDatabaseUp, bootstrapDatabaseX, bootstrapDeviceHdd, bootstrapDeviceHddFill, bootstrapDeviceSsd, bootstrapDeviceSsdFill, bootstrapDiagram2, bootstrapDiagram2Fill, bootstrapDiagram3, bootstrapDiagram3Fill, bootstrapDiamond, bootstrapDiamondFill, bootstrapDiamondHalf, bootstrapDice1, bootstrapDice1Fill, bootstrapDice2, bootstrapDice2Fill, bootstrapDice3, bootstrapDice3Fill, bootstrapDice4, bootstrapDice4Fill, bootstrapDice5, bootstrapDice5Fill, bootstrapDice6, bootstrapDice6Fill, bootstrapDisc, bootstrapDiscFill, bootstrapDiscord, bootstrapDisplay, bootstrapDisplayFill, bootstrapDisplayport, bootstrapDisplayportFill, bootstrapDistributeHorizontal, bootstrapDistributeVertical, bootstrapDoorClosed, bootstrapDoorClosedFill, bootstrapDoorOpen, bootstrapDoorOpenFill, bootstrapDot, bootstrapDownload, bootstrapDpad, bootstrapDpadFill, bootstrapDribbble, bootstrapDropbox, bootstrapDroplet, bootstrapDropletFill, bootstrapDropletHalf, bootstrapDuffle, bootstrapDuffleFill, bootstrapEar, bootstrapEarFill, bootstrapEarbuds, bootstrapEasel, bootstrapEasel2, bootstrapEasel2Fill, bootstrapEasel3, bootstrapEasel3Fill, bootstrapEaselFill, bootstrapEgg, bootstrapEggFill, bootstrapEggFried, bootstrapEject, bootstrapEjectFill, bootstrapEmojiAngry, bootstrapEmojiAngryFill, bootstrapEmojiAstonished, bootstrapEmojiAstonishedFill, bootstrapEmojiDizzy, bootstrapEmojiDizzyFill, bootstrapEmojiExpressionless, bootstrapEmojiExpressionlessFill, bootstrapEmojiFrown, bootstrapEmojiFrownFill, bootstrapEmojiGrimace, bootstrapEmojiGrimaceFill, bootstrapEmojiGrin, bootstrapEmojiGrinFill, bootstrapEmojiHeartEyes, bootstrapEmojiHeartEyesFill, bootstrapEmojiKiss, bootstrapEmojiKissFill, bootstrapEmojiLaughing, bootstrapEmojiLaughingFill, bootstrapEmojiNeutral, bootstrapEmojiNeutralFill, bootstrapEmojiSmile, bootstrapEmojiSmileFill, bootstrapEmojiSmileUpsideDown, bootstrapEmojiSmileUpsideDownFill, bootstrapEmojiSunglasses, bootstrapEmojiSunglassesFill, bootstrapEmojiSurprise, bootstrapEmojiSurpriseFill, bootstrapEmojiTear, bootstrapEmojiTearFill, bootstrapEmojiWink, bootstrapEmojiWinkFill, bootstrapEnvelope, bootstrapEnvelopeArrowDown, bootstrapEnvelopeArrowDownFill, bootstrapEnvelopeArrowUp, bootstrapEnvelopeArrowUpFill, bootstrapEnvelopeAt, bootstrapEnvelopeAtFill, bootstrapEnvelopeCheck, bootstrapEnvelopeCheckFill, bootstrapEnvelopeDash, bootstrapEnvelopeDashFill, bootstrapEnvelopeExclamation, bootstrapEnvelopeExclamationFill, bootstrapEnvelopeFill, bootstrapEnvelopeHeart, bootstrapEnvelopeHeartFill, bootstrapEnvelopeOpen, bootstrapEnvelopeOpenFill, bootstrapEnvelopeOpenHeart, bootstrapEnvelopeOpenHeartFill, bootstrapEnvelopePaper, bootstrapEnvelopePaperFill, bootstrapEnvelopePaperHeart, bootstrapEnvelopePaperHeartFill, bootstrapEnvelopePlus, bootstrapEnvelopePlusFill, bootstrapEnvelopeSlash, bootstrapEnvelopeSlashFill, bootstrapEnvelopeX, bootstrapEnvelopeXFill, bootstrapEraser, bootstrapEraserFill, bootstrapEscape, bootstrapEthernet, bootstrapEvFront, bootstrapEvFrontFill, bootstrapEvStation, bootstrapEvStationFill, bootstrapExclamation, bootstrapExclamationCircle, bootstrapExclamationCircleFill, bootstrapExclamationDiamond, bootstrapExclamationDiamondFill, bootstrapExclamationLg, bootstrapExclamationOctagon, bootstrapExclamationOctagonFill, bootstrapExclamationSquare, bootstrapExclamationSquareFill, bootstrapExclamationTriangle, bootstrapExclamationTriangleFill, bootstrapExclude, bootstrapExplicit, bootstrapExplicitFill, bootstrapExposure, bootstrapEye, bootstrapEyeFill, bootstrapEyeSlash, bootstrapEyeSlashFill, bootstrapEyedropper, bootstrapEyeglasses, bootstrapFacebook, bootstrapFan, bootstrapFastForward, bootstrapFastForwardBtn, bootstrapFastForwardBtnFill, bootstrapFastForwardCircle, bootstrapFastForwardCircleFill, bootstrapFastForwardFill, bootstrapFeather, bootstrapFeather2, bootstrapFile, bootstrapFileArrowDown, bootstrapFileArrowDownFill, bootstrapFileArrowUp, bootstrapFileArrowUpFill, bootstrapFileBarGraph, bootstrapFileBarGraphFill, bootstrapFileBinary, bootstrapFileBinaryFill, bootstrapFileBreak, bootstrapFileBreakFill, bootstrapFileCheck, bootstrapFileCheckFill, bootstrapFileCode, bootstrapFileCodeFill, bootstrapFileDiff, bootstrapFileDiffFill, bootstrapFileEarmark, bootstrapFileEarmarkArrowDown, bootstrapFileEarmarkArrowDownFill, bootstrapFileEarmarkArrowUp, bootstrapFileEarmarkArrowUpFill, bootstrapFileEarmarkBarGraph, bootstrapFileEarmarkBarGraphFill, bootstrapFileEarmarkBinary, bootstrapFileEarmarkBinaryFill, bootstrapFileEarmarkBreak, bootstrapFileEarmarkBreakFill, bootstrapFileEarmarkCheck, bootstrapFileEarmarkCheckFill, bootstrapFileEarmarkCode, bootstrapFileEarmarkCodeFill, bootstrapFileEarmarkDiff, bootstrapFileEarmarkDiffFill, bootstrapFileEarmarkEasel, bootstrapFileEarmarkEaselFill, bootstrapFileEarmarkExcel, bootstrapFileEarmarkExcelFill, bootstrapFileEarmarkFill, bootstrapFileEarmarkFont, bootstrapFileEarmarkFontFill, bootstrapFileEarmarkImage, bootstrapFileEarmarkImageFill, bootstrapFileEarmarkLock, bootstrapFileEarmarkLock2, bootstrapFileEarmarkLock2Fill, bootstrapFileEarmarkLockFill, bootstrapFileEarmarkMedical, bootstrapFileEarmarkMedicalFill, bootstrapFileEarmarkMinus, bootstrapFileEarmarkMinusFill, bootstrapFileEarmarkMusic, bootstrapFileEarmarkMusicFill, bootstrapFileEarmarkPdf, bootstrapFileEarmarkPdfFill, bootstrapFileEarmarkPerson, bootstrapFileEarmarkPersonFill, bootstrapFileEarmarkPlay, bootstrapFileEarmarkPlayFill, bootstrapFileEarmarkPlus, bootstrapFileEarmarkPlusFill, bootstrapFileEarmarkPost, bootstrapFileEarmarkPostFill, bootstrapFileEarmarkPpt, bootstrapFileEarmarkPptFill, bootstrapFileEarmarkRichtext, bootstrapFileEarmarkRichtextFill, bootstrapFileEarmarkRuled, bootstrapFileEarmarkRuledFill, bootstrapFileEarmarkSlides, bootstrapFileEarmarkSlidesFill, bootstrapFileEarmarkSpreadsheet, bootstrapFileEarmarkSpreadsheetFill, bootstrapFileEarmarkText, bootstrapFileEarmarkTextFill, bootstrapFileEarmarkWord, bootstrapFileEarmarkWordFill, bootstrapFileEarmarkX, bootstrapFileEarmarkXFill, bootstrapFileEarmarkZip, bootstrapFileEarmarkZipFill, bootstrapFileEasel, bootstrapFileEaselFill, bootstrapFileExcel, bootstrapFileExcelFill, bootstrapFileFill, bootstrapFileFont, bootstrapFileFontFill, bootstrapFileImage, bootstrapFileImageFill, bootstrapFileLock, bootstrapFileLock2, bootstrapFileLock2Fill, bootstrapFileLockFill, bootstrapFileMedical, bootstrapFileMedicalFill, bootstrapFileMinus, bootstrapFileMinusFill, bootstrapFileMusic, bootstrapFileMusicFill, bootstrapFilePdf, bootstrapFilePdfFill, bootstrapFilePerson, bootstrapFilePersonFill, bootstrapFilePlay, bootstrapFilePlayFill, bootstrapFilePlus, bootstrapFilePlusFill, bootstrapFilePost, bootstrapFilePostFill, bootstrapFilePpt, bootstrapFilePptFill, bootstrapFileRichtext, bootstrapFileRichtextFill, bootstrapFileRuled, bootstrapFileRuledFill, bootstrapFileSlides, bootstrapFileSlidesFill, bootstrapFileSpreadsheet, bootstrapFileSpreadsheetFill, bootstrapFileText, bootstrapFileTextFill, bootstrapFileWord, bootstrapFileWordFill, bootstrapFileX, bootstrapFileXFill, bootstrapFileZip, bootstrapFileZipFill, bootstrapFiles, bootstrapFilesAlt, bootstrapFiletypeAac, bootstrapFiletypeAi, bootstrapFiletypeBmp, bootstrapFiletypeCs, bootstrapFiletypeCss, bootstrapFiletypeCsv, bootstrapFiletypeDoc, bootstrapFiletypeDocx, bootstrapFiletypeExe, bootstrapFiletypeGif, bootstrapFiletypeHeic, bootstrapFiletypeHtml, bootstrapFiletypeJava, bootstrapFiletypeJpg, bootstrapFiletypeJs, bootstrapFiletypeJson, bootstrapFiletypeJsx, bootstrapFiletypeKey, bootstrapFiletypeM4p, bootstrapFiletypeMd, bootstrapFiletypeMdx, bootstrapFiletypeMov, bootstrapFiletypeMp3, bootstrapFiletypeMp4, bootstrapFiletypeOtf, bootstrapFiletypePdf, bootstrapFiletypePhp, bootstrapFiletypePng, bootstrapFiletypePpt, bootstrapFiletypePptx, bootstrapFiletypePsd, bootstrapFiletypePy, bootstrapFiletypeRaw, bootstrapFiletypeRb, bootstrapFiletypeSass, bootstrapFiletypeScss, bootstrapFiletypeSh, bootstrapFiletypeSql, bootstrapFiletypeSvg, bootstrapFiletypeTiff, bootstrapFiletypeTsx, bootstrapFiletypeTtf, bootstrapFiletypeTxt, bootstrapFiletypeWav, bootstrapFiletypeWoff, bootstrapFiletypeXls, bootstrapFiletypeXlsx, bootstrapFiletypeXml, bootstrapFiletypeYml, bootstrapFilm, bootstrapFilter, bootstrapFilterCircle, bootstrapFilterCircleFill, bootstrapFilterLeft, bootstrapFilterRight, bootstrapFilterSquare, bootstrapFilterSquareFill, bootstrapFingerprint, bootstrapFire, bootstrapFlag, bootstrapFlagFill, bootstrapFloppy, bootstrapFloppy2, bootstrapFloppy2Fill, bootstrapFloppyFill, bootstrapFlower1, bootstrapFlower2, bootstrapFlower3, bootstrapFolder, bootstrapFolder2, bootstrapFolder2Open, bootstrapFolderCheck, bootstrapFolderFill, bootstrapFolderMinus, bootstrapFolderPlus, bootstrapFolderSymlink, bootstrapFolderSymlinkFill, bootstrapFolderX, bootstrapFonts, bootstrapForward, bootstrapForwardFill, bootstrapFront, bootstrapFuelPump, bootstrapFuelPumpDiesel, bootstrapFuelPumpDieselFill, bootstrapFuelPumpFill, bootstrapFullscreen, bootstrapFullscreenExit, bootstrapFunnel, bootstrapFunnelFill, bootstrapGear, bootstrapGearFill, bootstrapGearWide, bootstrapGearWideConnected, bootstrapGem, bootstrapGenderAmbiguous, bootstrapGenderFemale, bootstrapGenderMale, bootstrapGenderNeuter, bootstrapGenderTrans, bootstrapGeo, bootstrapGeoAlt, bootstrapGeoAltFill, bootstrapGeoFill, bootstrapGift, bootstrapGiftFill, bootstrapGit, bootstrapGithub, bootstrapGitlab, bootstrapGlobe, bootstrapGlobe2, bootstrapGlobeAmericas, bootstrapGlobeAsiaAustralia, bootstrapGlobeCentralSouthAsia, bootstrapGlobeEuropeAfrica, bootstrapGoogle, bootstrapGooglePlay, bootstrapGpuCard, bootstrapGraphDown, bootstrapGraphDownArrow, bootstrapGraphUp, bootstrapGraphUpArrow, bootstrapGrid, bootstrapGrid1x2, bootstrapGrid1x2Fill, bootstrapGrid3x2, bootstrapGrid3x2Gap, bootstrapGrid3x2GapFill, bootstrapGrid3x3, bootstrapGrid3x3Gap, bootstrapGrid3x3GapFill, bootstrapGridFill, bootstrapGripHorizontal, bootstrapGripVertical, bootstrapHCircle, bootstrapHCircleFill, bootstrapHSquare, bootstrapHSquareFill, bootstrapHammer, bootstrapHandIndex, bootstrapHandIndexFill, bootstrapHandIndexThumb, bootstrapHandIndexThumbFill, bootstrapHandThumbsDown, bootstrapHandThumbsDownFill, bootstrapHandThumbsUp, bootstrapHandThumbsUpFill, bootstrapHandbag, bootstrapHandbagFill, bootstrapHash, bootstrapHdd, bootstrapHddFill, bootstrapHddNetwork, bootstrapHddNetworkFill, bootstrapHddRack, bootstrapHddRackFill, bootstrapHddStack, bootstrapHddStackFill, bootstrapHdmi, bootstrapHdmiFill, bootstrapHeadphones, bootstrapHeadset, bootstrapHeadsetVr, bootstrapHeart, bootstrapHeartArrow, bootstrapHeartFill, bootstrapHeartHalf, bootstrapHeartPulse, bootstrapHeartPulseFill, bootstrapHeartbreak, bootstrapHeartbreakFill, bootstrapHearts, bootstrapHeptagon, bootstrapHeptagonFill, bootstrapHeptagonHalf, bootstrapHexagon, bootstrapHexagonFill, bootstrapHexagonHalf, bootstrapHighlighter, bootstrapHighlights, bootstrapHospital, bootstrapHospitalFill, bootstrapHourglass, bootstrapHourglassBottom, bootstrapHourglassSplit, bootstrapHourglassTop, bootstrapHouse, bootstrapHouseAdd, bootstrapHouseAddFill, bootstrapHouseCheck, bootstrapHouseCheckFill, bootstrapHouseDash, bootstrapHouseDashFill, bootstrapHouseDoor, bootstrapHouseDoorFill, bootstrapHouseDown, bootstrapHouseDownFill, bootstrapHouseExclamation, bootstrapHouseExclamationFill, bootstrapHouseFill, bootstrapHouseGear, bootstrapHouseGearFill, bootstrapHouseHeart, bootstrapHouseHeartFill, bootstrapHouseLock, bootstrapHouseLockFill, bootstrapHouseSlash, bootstrapHouseSlashFill, bootstrapHouseUp, bootstrapHouseUpFill, bootstrapHouseX, bootstrapHouseXFill, bootstrapHouses, bootstrapHousesFill, bootstrapHr, bootstrapHurricane, bootstrapHypnotize, bootstrapImage, bootstrapImageAlt, bootstrapImageFill, bootstrapImages, bootstrapInbox, bootstrapInboxFill, bootstrapInboxes, bootstrapInboxesFill, bootstrapIncognito, bootstrapIndent, bootstrapInfinity, bootstrapInfo, bootstrapInfoCircle, bootstrapInfoCircleFill, bootstrapInfoLg, bootstrapInfoSquare, bootstrapInfoSquareFill, bootstrapInputCursor, bootstrapInputCursorText, bootstrapInstagram, bootstrapIntersect, bootstrapJournal, bootstrapJournalAlbum, bootstrapJournalArrowDown, bootstrapJournalArrowUp, bootstrapJournalBookmark, bootstrapJournalBookmarkFill, bootstrapJournalCheck, bootstrapJournalCode, bootstrapJournalMedical, bootstrapJournalMinus, bootstrapJournalPlus, bootstrapJournalRichtext, bootstrapJournalText, bootstrapJournalX, bootstrapJournals, bootstrapJoystick, bootstrapJustify, bootstrapJustifyLeft, bootstrapJustifyRight, bootstrapKanban, bootstrapKanbanFill, bootstrapKey, bootstrapKeyFill, bootstrapKeyboard, bootstrapKeyboardFill, bootstrapLadder, bootstrapLamp, bootstrapLampFill, bootstrapLaptop, bootstrapLaptopFill, bootstrapLayerBackward, bootstrapLayerForward, bootstrapLayers, bootstrapLayersFill, bootstrapLayersHalf, bootstrapLayoutSidebar, bootstrapLayoutSidebarInset, bootstrapLayoutSidebarInsetReverse, bootstrapLayoutSidebarReverse, bootstrapLayoutSplit, bootstrapLayoutTextSidebar, bootstrapLayoutTextSidebarReverse, bootstrapLayoutTextWindow, bootstrapLayoutTextWindowReverse, bootstrapLayoutThreeColumns, bootstrapLayoutWtf, bootstrapLifePreserver, bootstrapLightbulb, bootstrapLightbulbFill, bootstrapLightbulbOff, bootstrapLightbulbOffFill, bootstrapLightning, bootstrapLightningCharge, bootstrapLightningChargeFill, bootstrapLightningFill, bootstrapLine, bootstrapLink, bootstrapLink45deg, bootstrapLinkedin, bootstrapList, bootstrapListCheck, bootstrapListColumns, bootstrapListColumnsReverse, bootstrapListNested, bootstrapListOl, bootstrapListStars, bootstrapListTask, bootstrapListUl, bootstrapLock, bootstrapLockFill, bootstrapLuggage, bootstrapLuggageFill, bootstrapLungs, bootstrapLungsFill, bootstrapMagic, bootstrapMagnet, bootstrapMagnetFill, bootstrapMailbox, bootstrapMailbox2, bootstrapMailbox2Flag, bootstrapMailboxFlag, bootstrapMap, bootstrapMapFill, bootstrapMarkdown, bootstrapMarkdownFill, bootstrapMarkerTip, bootstrapMask, bootstrapMastodon, bootstrapMedium, bootstrapMegaphone, bootstrapMegaphoneFill, bootstrapMemory, bootstrapMenuApp, bootstrapMenuAppFill, bootstrapMenuButton, bootstrapMenuButtonFill, bootstrapMenuButtonWide, bootstrapMenuButtonWideFill, bootstrapMenuDown, bootstrapMenuUp, bootstrapMessenger, bootstrapMeta, bootstrapMic, bootstrapMicFill, bootstrapMicMute, bootstrapMicMuteFill, bootstrapMicrosoft, bootstrapMicrosoftTeams, bootstrapMinecart, bootstrapMinecartLoaded, bootstrapModem, bootstrapModemFill, bootstrapMoisture, bootstrapMoon, bootstrapMoonFill, bootstrapMoonStars, bootstrapMoonStarsFill, bootstrapMortarboard, bootstrapMortarboardFill, bootstrapMotherboard, bootstrapMotherboardFill, bootstrapMouse, bootstrapMouse2, bootstrapMouse2Fill, bootstrapMouse3, bootstrapMouse3Fill, bootstrapMouseFill, bootstrapMusicNote, bootstrapMusicNoteBeamed, bootstrapMusicNoteList, bootstrapMusicPlayer, bootstrapMusicPlayerFill, bootstrapNewspaper, bootstrapNintendoSwitch, bootstrapNodeMinus, bootstrapNodeMinusFill, bootstrapNodePlus, bootstrapNodePlusFill, bootstrapNoiseReduction, bootstrapNut, bootstrapNutFill, bootstrapNvidia, bootstrapNvme, bootstrapNvmeFill, bootstrapOctagon, bootstrapOctagonFill, bootstrapOctagonHalf, bootstrapOpencollective, bootstrapOpticalAudio, bootstrapOpticalAudioFill, bootstrapOption, bootstrapOutlet, bootstrapPCircle, bootstrapPCircleFill, bootstrapPSquare, bootstrapPSquareFill, bootstrapPaintBucket, bootstrapPalette, bootstrapPalette2, bootstrapPaletteFill, bootstrapPaperclip, bootstrapParagraph, bootstrapPass, bootstrapPassFill, bootstrapPassport, bootstrapPassportFill, bootstrapPatchCheck, bootstrapPatchCheckFill, bootstrapPatchExclamation, bootstrapPatchExclamationFill, bootstrapPatchMinus, bootstrapPatchMinusFill, bootstrapPatchPlus, bootstrapPatchPlusFill, bootstrapPatchQuestion, bootstrapPatchQuestionFill, bootstrapPause, bootstrapPauseBtn, bootstrapPauseBtnFill, bootstrapPauseCircle, bootstrapPauseCircleFill, bootstrapPauseFill, bootstrapPaypal, bootstrapPc, bootstrapPcDisplay, bootstrapPcDisplayHorizontal, bootstrapPcHorizontal, bootstrapPciCard, bootstrapPciCardNetwork, bootstrapPciCardSound, bootstrapPeace, bootstrapPeaceFill, bootstrapPen, bootstrapPenFill, bootstrapPencil, bootstrapPencilFill, bootstrapPencilSquare, bootstrapPentagon, bootstrapPentagonFill, bootstrapPentagonHalf, bootstrapPeople, bootstrapPeopleFill, bootstrapPercent, bootstrapPerson, bootstrapPersonAdd, bootstrapPersonArmsUp, bootstrapPersonBadge, bootstrapPersonBadgeFill, bootstrapPersonBoundingBox, bootstrapPersonCheck, bootstrapPersonCheckFill, bootstrapPersonCircle, bootstrapPersonDash, bootstrapPersonDashFill, bootstrapPersonDown, bootstrapPersonExclamation, bootstrapPersonFill, bootstrapPersonFillAdd, bootstrapPersonFillCheck, bootstrapPersonFillDash, bootstrapPersonFillDown, bootstrapPersonFillExclamation, bootstrapPersonFillGear, bootstrapPersonFillLock, bootstrapPersonFillSlash, bootstrapPersonFillUp, bootstrapPersonFillX, bootstrapPersonGear, bootstrapPersonHeart, bootstrapPersonHearts, bootstrapPersonLinesFill, bootstrapPersonLock, bootstrapPersonPlus, bootstrapPersonPlusFill, bootstrapPersonRaisedHand, bootstrapPersonRolodex, bootstrapPersonSlash, bootstrapPersonSquare, bootstrapPersonStanding, bootstrapPersonStandingDress, bootstrapPersonUp, bootstrapPersonVcard, bootstrapPersonVcardFill, bootstrapPersonVideo, bootstrapPersonVideo2, bootstrapPersonVideo3, bootstrapPersonWalking, bootstrapPersonWheelchair, bootstrapPersonWorkspace, bootstrapPersonX, bootstrapPersonXFill, bootstrapPhone, bootstrapPhoneFill, bootstrapPhoneFlip, bootstrapPhoneLandscape, bootstrapPhoneLandscapeFill, bootstrapPhoneVibrate, bootstrapPhoneVibrateFill, bootstrapPieChart, bootstrapPieChartFill, bootstrapPiggyBank, bootstrapPiggyBankFill, bootstrapPin, bootstrapPinAngle, bootstrapPinAngleFill, bootstrapPinFill, bootstrapPinMap, bootstrapPinMapFill, bootstrapPinterest, bootstrapPip, bootstrapPipFill, bootstrapPlay, bootstrapPlayBtn, bootstrapPlayBtnFill, bootstrapPlayCircle, bootstrapPlayCircleFill, bootstrapPlayFill, bootstrapPlaystation, bootstrapPlug, bootstrapPlugFill, bootstrapPlugin, bootstrapPlus, bootstrapPlusCircle, bootstrapPlusCircleDotted, bootstrapPlusCircleFill, bootstrapPlusLg, bootstrapPlusSlashMinus, bootstrapPlusSquare, bootstrapPlusSquareDotted, bootstrapPlusSquareFill, bootstrapPostage, bootstrapPostageFill, bootstrapPostageHeart, bootstrapPostageHeartFill, bootstrapPostcard, bootstrapPostcardFill, bootstrapPostcardHeart, bootstrapPostcardHeartFill, bootstrapPower, bootstrapPrescription, bootstrapPrescription2, bootstrapPrinter, bootstrapPrinterFill, bootstrapProjector, bootstrapProjectorFill, bootstrapPuzzle, bootstrapPuzzleFill, bootstrapQrCode, bootstrapQrCodeScan, bootstrapQuestion, bootstrapQuestionCircle, bootstrapQuestionCircleFill, bootstrapQuestionDiamond, bootstrapQuestionDiamondFill, bootstrapQuestionLg, bootstrapQuestionOctagon, bootstrapQuestionOctagonFill, bootstrapQuestionSquare, bootstrapQuestionSquareFill, bootstrapQuora, bootstrapQuote, bootstrapRCircle, bootstrapRCircleFill, bootstrapRSquare, bootstrapRSquareFill, bootstrapRadar, bootstrapRadioactive, bootstrapRainbow, bootstrapReceipt, bootstrapReceiptCutoff, bootstrapReception0, bootstrapReception1, bootstrapReception2, bootstrapReception3, bootstrapReception4, bootstrapRecord, bootstrapRecord2, bootstrapRecord2Fill, bootstrapRecordBtn, bootstrapRecordBtnFill, bootstrapRecordCircle, bootstrapRecordCircleFill, bootstrapRecordFill, bootstrapRecycle, bootstrapReddit, bootstrapRegex, bootstrapRepeat, bootstrapRepeat1, bootstrapReply, bootstrapReplyAll, bootstrapReplyAllFill, bootstrapReplyFill, bootstrapRewind, bootstrapRewindBtn, bootstrapRewindBtnFill, bootstrapRewindCircle, bootstrapRewindCircleFill, bootstrapRewindFill, bootstrapRobot, bootstrapRocket, bootstrapRocketFill, bootstrapRocketTakeoff, bootstrapRocketTakeoffFill, bootstrapRouter, bootstrapRouterFill, bootstrapRss, bootstrapRssFill, bootstrapRulers, bootstrapSafe, bootstrapSafe2, bootstrapSafe2Fill, bootstrapSafeFill, bootstrapSave, bootstrapSave2, bootstrapSave2Fill, bootstrapSaveFill, bootstrapScissors, bootstrapScooter, bootstrapScrewdriver, bootstrapSdCard, bootstrapSdCardFill, bootstrapSearch, bootstrapSearchHeart, bootstrapSearchHeartFill, bootstrapSegmentedNav, bootstrapSend, bootstrapSendArrowDown, bootstrapSendArrowDownFill, bootstrapSendArrowUp, bootstrapSendArrowUpFill, bootstrapSendCheck, bootstrapSendCheckFill, bootstrapSendDash, bootstrapSendDashFill, bootstrapSendExclamation, bootstrapSendExclamationFill, bootstrapSendFill, bootstrapSendPlus, bootstrapSendPlusFill, bootstrapSendSlash, bootstrapSendSlashFill, bootstrapSendX, bootstrapSendXFill, bootstrapServer, bootstrapShadows, bootstrapShare, bootstrapShareFill, bootstrapShield, bootstrapShieldCheck, bootstrapShieldExclamation, bootstrapShieldFill, bootstrapShieldFillCheck, bootstrapShieldFillExclamation, bootstrapShieldFillMinus, bootstrapShieldFillPlus, bootstrapShieldFillX, bootstrapShieldLock, bootstrapShieldLockFill, bootstrapShieldMinus, bootstrapShieldPlus, bootstrapShieldShaded, bootstrapShieldSlash, bootstrapShieldSlashFill, bootstrapShieldX, bootstrapShift, bootstrapShiftFill, bootstrapShop, bootstrapShopWindow, bootstrapShuffle, bootstrapSignDeadEnd, bootstrapSignDeadEndFill, bootstrapSignDoNotEnter, bootstrapSignDoNotEnterFill, bootstrapSignIntersection, bootstrapSignIntersectionFill, bootstrapSignIntersectionSide, bootstrapSignIntersectionSideFill, bootstrapSignIntersectionT, bootstrapSignIntersectionTFill, bootstrapSignIntersectionY, bootstrapSignIntersectionYFill, bootstrapSignMergeLeft, bootstrapSignMergeLeftFill, bootstrapSignMergeRight, bootstrapSignMergeRightFill, bootstrapSignNoLeftTurn, bootstrapSignNoLeftTurnFill, bootstrapSignNoParking, bootstrapSignNoParkingFill, bootstrapSignNoRightTurn, bootstrapSignNoRightTurnFill, bootstrapSignRailroad, bootstrapSignRailroadFill, bootstrapSignStop, bootstrapSignStopFill, bootstrapSignStopLights, bootstrapSignStopLightsFill, bootstrapSignTurnLeft, bootstrapSignTurnLeftFill, bootstrapSignTurnRight, bootstrapSignTurnRightFill, bootstrapSignTurnSlightLeft, bootstrapSignTurnSlightLeftFill, bootstrapSignTurnSlightRight, bootstrapSignTurnSlightRightFill, bootstrapSignYield, bootstrapSignYieldFill, bootstrapSignal, bootstrapSignpost, bootstrapSignpost2, bootstrapSignpost2Fill, bootstrapSignpostFill, bootstrapSignpostSplit, bootstrapSignpostSplitFill, bootstrapSim, bootstrapSimFill, bootstrapSimSlash, bootstrapSimSlashFill, bootstrapSinaWeibo, bootstrapSkipBackward, bootstrapSkipBackwardBtn, bootstrapSkipBackwardBtnFill, bootstrapSkipBackwardCircle, bootstrapSkipBackwardCircleFill, bootstrapSkipBackwardFill, bootstrapSkipEnd, bootstrapSkipEndBtn, bootstrapSkipEndBtnFill, bootstrapSkipEndCircle, bootstrapSkipEndCircleFill, bootstrapSkipEndFill, bootstrapSkipForward, bootstrapSkipForwardBtn, bootstrapSkipForwardBtnFill, bootstrapSkipForwardCircle, bootstrapSkipForwardCircleFill, bootstrapSkipForwardFill, bootstrapSkipStart, bootstrapSkipStartBtn, bootstrapSkipStartBtnFill, bootstrapSkipStartCircle, bootstrapSkipStartCircleFill, bootstrapSkipStartFill, bootstrapSkype, bootstrapSlack, bootstrapSlash, bootstrapSlashCircle, bootstrapSlashCircleFill, bootstrapSlashLg, bootstrapSlashSquare, bootstrapSlashSquareFill, bootstrapSliders, bootstrapSliders2, bootstrapSliders2Vertical, bootstrapSmartwatch, bootstrapSnapchat, bootstrapSnow, bootstrapSnow2, bootstrapSnow3, bootstrapSortAlphaDown, bootstrapSortAlphaDownAlt, bootstrapSortAlphaUp, bootstrapSortAlphaUpAlt, bootstrapSortDown, bootstrapSortDownAlt, bootstrapSortNumericDown, bootstrapSortNumericDownAlt, bootstrapSortNumericUp, bootstrapSortNumericUpAlt, bootstrapSortUp, bootstrapSortUpAlt, bootstrapSoundwave, bootstrapSourceforge, bootstrapSpeaker, bootstrapSpeakerFill, bootstrapSpeedometer, bootstrapSpeedometer2, bootstrapSpellcheck, bootstrapSpotify, bootstrapSquare, bootstrapSquareFill, bootstrapSquareHalf, bootstrapStack, bootstrapStackOverflow, bootstrapStar, bootstrapStarFill, bootstrapStarHalf, bootstrapStars, bootstrapSteam, bootstrapStickies, bootstrapStickiesFill, bootstrapSticky, bootstrapStickyFill, bootstrapStop, bootstrapStopBtn, bootstrapStopBtnFill, bootstrapStopCircle, bootstrapStopCircleFill, bootstrapStopFill, bootstrapStoplights, bootstrapStoplightsFill, bootstrapStopwatch, bootstrapStopwatchFill, bootstrapStrava, bootstrapStripe, bootstrapSubscript, bootstrapSubstack, bootstrapSubtract, bootstrapSuitClub, bootstrapSuitClubFill, bootstrapSuitDiamond, bootstrapSuitDiamondFill, bootstrapSuitHeart, bootstrapSuitHeartFill, bootstrapSuitSpade, bootstrapSuitSpadeFill, bootstrapSuitcase, bootstrapSuitcase2, bootstrapSuitcase2Fill, bootstrapSuitcaseFill, bootstrapSuitcaseLg, bootstrapSuitcaseLgFill, bootstrapSun, bootstrapSunFill, bootstrapSunglasses, bootstrapSunrise, bootstrapSunriseFill, bootstrapSunset, bootstrapSunsetFill, bootstrapSuperscript, bootstrapSymmetryHorizontal, bootstrapSymmetryVertical, bootstrapTable, bootstrapTablet, bootstrapTabletFill, bootstrapTabletLandscape, bootstrapTabletLandscapeFill, bootstrapTag, bootstrapTagFill, bootstrapTags, bootstrapTagsFill, bootstrapTaxiFront, bootstrapTaxiFrontFill, bootstrapTelegram, bootstrapTelephone, bootstrapTelephoneFill, bootstrapTelephoneForward, bootstrapTelephoneForwardFill, bootstrapTelephoneInbound, bootstrapTelephoneInboundFill, bootstrapTelephoneMinus, bootstrapTelephoneMinusFill, bootstrapTelephoneOutbound, bootstrapTelephoneOutboundFill, bootstrapTelephonePlus, bootstrapTelephonePlusFill, bootstrapTelephoneX, bootstrapTelephoneXFill, bootstrapTencentQq, bootstrapTerminal, bootstrapTerminalDash, bootstrapTerminalFill, bootstrapTerminalPlus, bootstrapTerminalSplit, bootstrapTerminalX, bootstrapTextCenter, bootstrapTextIndentLeft, bootstrapTextIndentRight, bootstrapTextLeft, bootstrapTextParagraph, bootstrapTextRight, bootstrapTextWrap, bootstrapTextarea, bootstrapTextareaResize, bootstrapTextareaT, bootstrapThermometer, bootstrapThermometerHalf, bootstrapThermometerHigh, bootstrapThermometerLow, bootstrapThermometerSnow, bootstrapThermometerSun, bootstrapThreads, bootstrapThreadsFill, bootstrapThreeDots, bootstrapThreeDotsVertical, bootstrapThunderbolt, bootstrapThunderboltFill, bootstrapTicket, bootstrapTicketDetailed, bootstrapTicketDetailedFill, bootstrapTicketFill, bootstrapTicketPerforated, bootstrapTicketPerforatedFill, bootstrapTiktok, bootstrapToggle2Off, bootstrapToggle2On, bootstrapToggleOff, bootstrapToggleOn, bootstrapToggles, bootstrapToggles2, bootstrapTools, bootstrapTornado, bootstrapTrainFreightFront, bootstrapTrainFreightFrontFill, bootstrapTrainFront, bootstrapTrainFrontFill, bootstrapTrainLightrailFront, bootstrapTrainLightrailFrontFill, bootstrapTranslate, bootstrapTransparency, bootstrapTrash, bootstrapTrash2, bootstrapTrash2Fill, bootstrapTrash3, bootstrapTrash3Fill, bootstrapTrashFill, bootstrapTree, bootstrapTreeFill, bootstrapTrello, bootstrapTriangle, bootstrapTriangleFill, bootstrapTriangleHalf, bootstrapTrophy, bootstrapTrophyFill, bootstrapTropicalStorm, bootstrapTruck, bootstrapTruckFlatbed, bootstrapTruckFront, bootstrapTruckFrontFill, bootstrapTsunami, bootstrapTv, bootstrapTvFill, bootstrapTwitch, bootstrapTwitter, bootstrapTwitterX, bootstrapType, bootstrapTypeBold, bootstrapTypeH1, bootstrapTypeH2, bootstrapTypeH3, bootstrapTypeH4, bootstrapTypeH5, bootstrapTypeH6, bootstrapTypeItalic, bootstrapTypeStrikethrough, bootstrapTypeUnderline, bootstrapUbuntu, bootstrapUiChecks, bootstrapUiChecksGrid, bootstrapUiRadios, bootstrapUiRadiosGrid, bootstrapUmbrella, bootstrapUmbrellaFill, bootstrapUnindent, bootstrapUnion, bootstrapUnity, bootstrapUniversalAccess, bootstrapUniversalAccessCircle, bootstrapUnlock, bootstrapUnlockFill, bootstrapUpc, bootstrapUpcScan, bootstrapUpload, bootstrapUsb, bootstrapUsbC, bootstrapUsbCFill, bootstrapUsbDrive, bootstrapUsbDriveFill, bootstrapUsbFill, bootstrapUsbMicro, bootstrapUsbMicroFill, bootstrapUsbMini, bootstrapUsbMiniFill, bootstrapUsbPlug, bootstrapUsbPlugFill, bootstrapUsbSymbol, bootstrapValentine, bootstrapValentine2, bootstrapVectorPen, bootstrapViewList, bootstrapViewStacked, bootstrapVignette, bootstrapVimeo, bootstrapVinyl, bootstrapVinylFill, bootstrapVirus, bootstrapVirus2, bootstrapVoicemail, bootstrapVolumeDown, bootstrapVolumeDownFill, bootstrapVolumeMute, bootstrapVolumeMuteFill, bootstrapVolumeOff, bootstrapVolumeOffFill, bootstrapVolumeUp, bootstrapVolumeUpFill, bootstrapVr, bootstrapWallet, bootstrapWallet2, bootstrapWalletFill, bootstrapWatch, bootstrapWater, bootstrapWebcam, bootstrapWebcamFill, bootstrapWechat, bootstrapWhatsapp, bootstrapWifi, bootstrapWifi1, bootstrapWifi2, bootstrapWifiOff, bootstrapWikipedia, bootstrapWind, bootstrapWindow, bootstrapWindowDash, bootstrapWindowDesktop, bootstrapWindowDock, bootstrapWindowFullscreen, bootstrapWindowPlus, bootstrapWindowSidebar, bootstrapWindowSplit, bootstrapWindowStack, bootstrapWindowX, bootstrapWindows, bootstrapWordpress, bootstrapWrench, bootstrapWrenchAdjustable, bootstrapWrenchAdjustableCircle, bootstrapWrenchAdjustableCircleFill, bootstrapX, bootstrapXCircle, bootstrapXCircleFill, bootstrapXDiamond, bootstrapXDiamondFill, bootstrapXLg, bootstrapXOctagon, bootstrapXOctagonFill, bootstrapXSquare, bootstrapXSquareFill, bootstrapXbox, bootstrapYelp, bootstrapYinYang, bootstrapYoutube, bootstrapZoomIn, bootstrapZoomOut };\n"],"names":["NgGlyphConfigToken","InjectionToken","NgGlyphsToken","InjectionToken","coerceCssPixelValue","value","NgIconPreProcessorToken","InjectionToken","NgIconPostProcessorToken","injectNgIconPreProcessor","inject","icon","injectNgIconPostProcessor","LoggerToken","InjectionToken","DefaultLogger","message","injectLogger","inject","LoggerToken","DefaultLogger","NgIconConfigToken","InjectionToken","injectNgIconConfig","inject","NgIconConfigToken","NgIconLoaderToken","InjectionToken","NgIconCacheToken","InjectionToken","injectNgIconLoader","inject","NgIconLoaderToken","injectNgIconLoaderCache","NgIconCacheToken","provideIcons","icons","NgIconsToken","parentIcons","__spreadValues","acc","InjectionToken","injectNgIcons","coerceLoaderResult","result","isObservable","toPropertyName","str","_","__","chr","m","uniqueId","NgIcon","injectNgIconConfig","injectNgIconPreProcessor","injectNgIconPostProcessor","Injector","Renderer2","PLATFORM_ID","ElementRef","injectLogger","input","coerceCssPixelValue","effect","HostAttributeToken","__async","name","svg","propertyName","isPlatformServer","template","regex","idMap","matches","match","id","placeholder","resolve","runInInjectionContext","cachedResult","promise","__ngFactoryType__","ɵɵdefineComponent","rf","ctx","ɵɵstyleProp","bootstrapAlarmFill","bootstrapAlarm","bootstrapCaretLeft","bootstrapCaretRight"],"mappings":";;+LAKA,IAAMA,GAAqB,IAAIC,EAAe,iBAAiB,EA+B/D,IAAMC,GAAgB,IAAIC,EAAe,eAAe,EAyBxD,SAASC,EAAoBC,EAAO,CAClC,OAAOA,GAAS,KAAO,GAAK,QAAQ,KAAKA,CAAK,EAAI,GAAGA,CAAK,KAAOA,CACnE,CAyHA,IAAMC,EAA0B,IAAIC,EAAe,uBAAuB,EACpEC,EAA2B,IAAID,EAAe,wBAAwB,EAC5E,SAASE,GAA2B,CAClC,OAAOC,EAAOJ,EAAyB,CACrC,SAAU,EACZ,CAAC,IAAMK,GAAQA,EACjB,CACA,SAASC,GAA4B,CAEnC,OAAOF,EAAOF,EAA0B,CACtC,SAAU,EACZ,CAAC,IAAM,IAAM,CAAC,EAChB,CA+BA,IAAMK,EAAc,IAAIC,EAAe,gBAAgB,EAIjDC,EAAN,KAAoB,CAClB,IAAIC,EAAS,CACX,QAAQ,IAAIA,CAAO,CACrB,CACA,KAAKA,EAAS,CACZ,QAAQ,KAAKA,CAAO,CACtB,CACA,MAAMA,EAAS,CACb,QAAQ,MAAMA,CAAO,CACvB,CACF,EAeA,SAASC,GAAe,CACtB,OAAOC,EAAOC,EAAa,CACzB,SAAU,EACZ,CAAC,GAAK,IAAIC,CACZ,CAUA,IAAMC,EAAoB,IAAIC,EAAe,gBAAgB,EAgB7D,SAASC,GAAqB,CAC5B,OAAOC,EAAOC,EAAmB,CAC/B,SAAU,EACZ,CAAC,GAAK,CAAC,CACT,CACA,IAAMC,EAAoB,IAAIC,EAAe,sBAAsB,EAUnE,IAAMC,EAAmB,IAAIC,EAAe,qBAAqB,EAyBjE,SAASC,GAAqB,CAC5B,OAAOC,EAAOC,EAAmB,CAC/B,SAAU,EACZ,CAAC,CACH,CAIA,SAASC,GAA0B,CACjC,OAAOF,EAAOG,EAAkB,CAC9B,SAAU,EACZ,CAAC,CACH,CAMA,SAASC,GAAaC,EAAO,CAC3B,MAAO,CAAC,CACN,QAASC,EACT,WAAY,CAACC,EAAcP,EAAOM,EAAc,CAC9C,SAAU,GACV,SAAU,EACZ,CAAC,IAAOE,IAAA,GACHD,GAAa,OAAO,CAACE,EAAKJ,IAAWG,IAAA,GACnCC,GACAJ,GACD,CAAC,CAAC,GACHA,GAEL,MAAO,EACT,CAAC,CACH,CACA,IAAMC,EAAe,IAAII,EAAe,aAAa,EAMrD,SAASC,GAAgB,CACvB,OAAOX,EAAOM,EAAc,CAC1B,SAAU,EACZ,CAAC,GAAK,CAAC,CACT,CAMA,SAASM,EAAmBC,EAAQ,CAClC,OAAI,OAAOA,GAAW,SACb,QAAQ,QAAQA,CAAM,EAE3BC,EAAaD,CAAM,EAGdA,EAAO,UAAU,EAEnBA,CACT,CAKA,SAASE,EAAeC,EAAK,CAC3B,OAAOA,EAAI,QAAQ,uBAAwB,CAACC,EAAGC,EAAIC,IAAQA,EAAMA,EAAI,YAAY,EAAI,EAAE,EAAE,QAAQ,eAAgB,EAAE,EAAE,QAAQ,WAAYC,GAAKA,EAAE,YAAY,CAAC,CAC/J,CACA,IAAIC,EAAW,EACXC,IAAuB,IAAM,CAC/B,MAAMA,CAAO,CACX,aAAc,CAEZ,KAAK,OAASC,EAAmB,EAEjC,KAAK,MAAQZ,EAAc,EAE3B,KAAK,OAASZ,EAAmB,EAEjC,KAAK,MAAQG,EAAwB,EAErC,KAAK,aAAesB,EAAyB,EAE7C,KAAK,cAAgBC,EAA0B,EAE/C,KAAK,SAAWzB,EAAO0B,CAAQ,EAE/B,KAAK,SAAW1B,EAAO2B,CAAS,EAEhC,KAAK,SAAW3B,EAAO4B,CAAW,EAElC,KAAK,WAAa5B,EAAO6B,CAAU,EAEnC,KAAK,SAAWR,IAEhB,KAAK,OAASS,EAAa,EAE3B,KAAK,KAAOC,EAAM,EAElB,KAAK,IAAMA,EAAM,EAEjB,KAAK,KAAOA,EAAM,KAAK,OAAO,KAAM,CAClC,UAAWC,CACb,CAAC,EAED,KAAK,YAAcD,EAAM,KAAK,OAAO,WAAW,EAEhD,KAAK,MAAQA,EAAM,KAAK,OAAO,KAAK,EAEpCE,EAAO,IAAM,KAAK,WAAW,CAAC,EACXjC,EAAO,IAAIkC,EAAmB,aAAa,EAAG,CAC/D,SAAU,EACZ,CAAC,GAIC,KAAK,WAAW,cAAc,aAAa,cAAe,MAAM,CAEpE,CACA,aAAc,CACZ,KAAK,WAAa,MACpB,CACM,YAAa,QAAAC,EAAA,sBACjB,IAAMC,EAAO,KAAK,KAAK,EACjBC,EAAM,KAAK,IAAI,EAErB,GAAIA,IAAQ,OAAW,CACrB,KAAK,OAAOA,CAAG,EACf,MACF,CACA,GAAID,IAAS,OACX,OAEF,IAAME,EAAevB,EAAeqB,CAAI,EACxC,QAAW/B,IAAS,CAAC,GAAG,KAAK,KAAK,EAAE,QAAQ,EAC1C,GAAIA,EAAMiC,CAAY,EAAG,CAEvB,KAAK,OAAOjC,EAAMiC,CAAY,CAAC,EAC/B,MACF,CAGF,GAAI,KAAK,OAAQ,CACf,IAAMzB,EAAS,MAAM,KAAK,sBAAsBuB,CAAI,EAEpD,GAAIvB,IAAW,KAAM,CACnB,KAAK,OAAOA,CAAM,EAClB,MACF,CACF,CAEA,KAAK,OAAO,KAAK,iBAAiBuB,CAAI,qEAAqE,CAC7G,GACA,OAAOC,EAAK,CAIV,GAAIE,EAAiB,KAAK,QAAQ,EAAG,CACnC,KAAK,WAAW,cAAc,UAAYF,EAE1C,KAAK,WAAW,cAAc,aAAa,mBAAoB,EAAE,EACjE,MACF,CAiBA,GAdI,KAAK,WAAW,cAAc,aAAa,kBAAkB,IAE/D,KAAK,WAAW,cAAc,gBAAgB,kBAAkB,EAEhE,KAAK,WAAa,KAAK,WAAW,cAAc,cAAc,KAAK,GAAK,OACpE,KAAK,WAAW,cAAc,YAAcA,KAK9C,KAAK,YACP,KAAK,SAAS,YAAY,KAAK,WAAW,cAAe,KAAK,UAAU,EAGtEA,IAAQ,IACV,OAEF,IAAMG,EAAW,KAAK,SAAS,cAAc,UAAU,EACvDH,EAAM,KAAK,WAAWA,CAAG,EACzB,KAAK,SAAS,YAAYG,EAAU,YAAa,KAAK,aAAaH,CAAG,CAAC,EACvE,KAAK,WAAaG,EAAS,QAAQ,kBACnC,KAAK,cAAc,KAAK,UAAU,EAElC,KAAK,SAAS,YAAY,KAAK,WAAW,cAAe,KAAK,UAAU,CAC1E,CACA,WAAWH,EAAK,CAId,GAAI,CAACA,EAAI,SAAS,iBAAiB,EACjC,OAAOA,EAGT,IAAMI,EAAQ,wBAERC,EAAQ,IAAI,IAEZC,EAAU,IAAI,IAAIN,EAAI,MAAMI,CAAK,CAAC,EACxC,GAAIE,IAAY,KACd,OAAON,EAGT,QAAWO,KAASD,EAAS,CAC3B,IAAME,EAAKD,EAAM,QAAQ,kBAAmB,EAAE,EACxCE,EAAc,WAAW,KAAK,QAAQ,IAAIJ,EAAM,IAAI,GAC1DA,EAAM,IAAIG,EAAIC,CAAW,EACzBT,EAAMA,EAAI,QAAQ,IAAI,OAAOO,EAAO,GAAG,EAAGE,CAAW,CACvD,CACA,OAAOT,CACT,CAMA,sBAAsBD,EAAM,CAC1B,OAAO,IAAI,QAAQW,GAAW,CAC5BC,EAAsB,KAAK,SAAU,IAAYb,EAAA,sBAE/C,GAAI,KAAK,MAAO,CACd,IAAMc,EAAe,KAAK,MAAM,IAAIb,CAAI,EACxC,GAAI,OAAOa,GAAiB,SAAU,CACpCF,EAAQE,CAAY,EACpB,MACF,CAEA,GAAIA,aAAwB,QAAS,CACnC,IAAMpC,EAAS,MAAMoC,EACrBF,EAAQlC,CAAM,EACd,MACF,CACF,CACA,IAAMqC,EAAUtC,EAAmB,KAAK,OAAOwB,CAAI,CAAC,EAGpD,KAAK,OAAO,IAAIA,EAAMc,CAAO,EAE7B,IAAMrC,EAAS,MAAMqC,EAErB,KAAK,OAAO,IAAId,EAAMvB,CAAM,EAC5BkC,EAAQlC,CAAM,CAChB,EAAC,CACH,CAAC,CACH,CACA,MAAO,CACL,KAAK,UAAO,SAAwBsC,EAAmB,CACrD,OAAO,IAAKA,GAAqB7B,EACnC,CACF,CACA,MAAO,CACL,KAAK,UAAyB8B,EAAkB,CAC9C,KAAM9B,EACN,UAAW,CAAC,CAAC,SAAS,CAAC,EACvB,UAAW,CAAC,OAAQ,KAAK,EACzB,SAAU,EACV,aAAc,SAA6B+B,EAAIC,EAAK,CAC9CD,EAAK,GACJE,EAAY,0BAA2BD,EAAI,YAAY,CAAC,EAAE,kBAAmBA,EAAI,KAAK,CAAC,EAAE,mBAAoBA,EAAI,MAAM,CAAC,CAE/H,EACA,OAAQ,CACN,KAAM,CAAC,EAAG,MAAM,EAChB,IAAK,CAAC,EAAG,KAAK,EACd,KAAM,CAAC,EAAG,MAAM,EAChB,YAAa,CAAC,EAAG,aAAa,EAC9B,MAAO,CAAC,EAAG,OAAO,CACpB,EACA,MAAO,EACP,KAAM,EACN,SAAU,SAAyBD,EAAIC,EAAK,CAAC,EAC7C,OAAQ,CAAC,4TAA4T,EACrU,gBAAiB,CACnB,CAAC,CACH,CACF,CACA,OAAOhC,CACT,GAAG,ECjjBH,IAAMkC,GAAqB,4jBACrBC,GAAiB,8oBAiZvB,IAAMC,GAAqB,mOAI3B,IAAMC,GAAsB","debug_id":"d1f85021-f634-544b-b67c-6e504d3589d6"}