...
\n * ```\n *\n * ## Disable Animations\n * A special animation control binding called `\\@.disabled` can be placed on an element which will\n * then disable animations for any inner animation triggers situated within the element as well as\n * any animations on the element itself.\n *\n * When true, the `\\@.disabled` binding will prevent all animations from rendering. The example\n * below shows how to use this feature:\n *\n * ```ts\n * \\@Component({\n * selector: 'my-component',\n * template: `\n * ...
\n * ```\n *\n * #### The final `animate` call\n *\n * If the final step within the transition steps is a call to `animate()` that **only** uses a\n * timing value with **no style data** then it will be automatically used as the final animation arc\n * for the element to animate itself to the final state. This involves an automatic mix of\n * adding/removing CSS styles so that the element will be in the exact state it should be for the\n * applied state to be presented correctly.\n *\n * ```\n * // start off by hiding the element, but make sure that it animates properly to whatever state\n * // is currently active for \"myAnimationTrigger\"\n * transition(\"void => *\", [\n * style({ opacity: 0 }),\n * animate(500)\n * ])\n * ```\n *\n * ### Using :enter and :leave\n *\n * Given that enter (insertion) and leave (removal) animations are so common, the `transition`\n * function accepts both `:enter` and `:leave` values which are aliases for the `void => *` and `*\n * => void` state changes.\n *\n * ```\n * transition(\":enter\", [\n * style({ opacity: 0 }),\n * animate(500, style({ opacity: 1 }))\n * ]),\n * transition(\":leave\", [\n * animate(500, style({ opacity: 0 }))\n * ])\n * ```\n *\n * ### Boolean values\n * if a trigger binding value is a boolean value then it can be matched using a transition\n * expression that compares `true` and `false` or `1` and `0`.\n *\n * ```\n * // in the template\n * ...
\n *\n * // in the component metadata\n * trigger('openClose', [\n * state('true', style({ height: '*' })),\n * state('false', style({ height: '0px' })),\n * transition('false <=> true', animate(500))\n * ])\n * ```\n *\n * ### Using :increment and :decrement\n * In addition to the :enter and :leave transition aliases, the :increment and :decrement aliases\n * can be used to kick off a transition when a numeric value has increased or decreased in value.\n *\n * ```\n * import {group, animate, query, transition, style, trigger} from '\\@angular/animations';\n * import {Component} from '\\@angular/core';\n *\n * \\@Component({\n * selector: 'banner-carousel-component',\n * styles: [`\n * .banner-container {\n * position:relative;\n * height:500px;\n * overflow:hidden;\n * }\n * .banner-container > .banner {\n * position:absolute;\n * left:0;\n * top:0;\n * font-size:200px;\n * line-height:500px;\n * font-weight:bold;\n * text-align:center;\n * width:100%;\n * }\n * `],\n * template: `\n * `\n // and attach a portal programmatically in the parent component. When Angular does the first CD\n // round, it will fire the setter with empty string, causing the user's content to be cleared.\n if (this.hasAttached() && !portal && !this._isInitialized) {\n return;\n }\n if (this.hasAttached()) {\n _super.prototype.detach.call(this);\n }\n if (portal) {\n _super.prototype.attach.call(this, portal);\n }\n this._attachedPortal = portal;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkPortalOutlet.prototype, \"attachedRef\", {\n /** Component or view reference that is attached to the portal. */\n get: /**\n * Component or view reference that is attached to the portal.\n * @return {?}\n */\n function () {\n return this._attachedRef;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * @return {?}\n */\n CdkPortalOutlet.prototype.ngOnInit = /**\n * @return {?}\n */\n function () {\n this._isInitialized = true;\n };\n /**\n * @return {?}\n */\n CdkPortalOutlet.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n _super.prototype.dispose.call(this);\n this._attachedPortal = null;\n this._attachedRef = null;\n };\n /**\n * Attach the given ComponentPortal to this PortalOutlet using the ComponentFactoryResolver.\n *\n * @param portal Portal to be attached to the portal outlet.\n * @returns Reference to the created component.\n */\n /**\n * Attach the given ComponentPortal to this PortalOutlet using the ComponentFactoryResolver.\n *\n * @template T\n * @param {?} portal Portal to be attached to the portal outlet.\n * @return {?} Reference to the created component.\n */\n CdkPortalOutlet.prototype.attachComponentPortal = /**\n * Attach the given ComponentPortal to this PortalOutlet using the ComponentFactoryResolver.\n *\n * @template T\n * @param {?} portal Portal to be attached to the portal outlet.\n * @return {?} Reference to the created component.\n */\n function (portal) {\n portal.setAttachedHost(this);\n // If the portal specifies an origin, use that as the logical location of the component\n // in the application tree. Otherwise use the location of this PortalOutlet.\n var /** @type {?} */ viewContainerRef = portal.viewContainerRef != null ?\n portal.viewContainerRef :\n this._viewContainerRef;\n var /** @type {?} */ componentFactory = this._componentFactoryResolver.resolveComponentFactory(portal.component);\n var /** @type {?} */ ref = viewContainerRef.createComponent(componentFactory, viewContainerRef.length, portal.injector || viewContainerRef.parentInjector);\n _super.prototype.setDisposeFn.call(this, function () { return ref.destroy(); });\n this._attachedPortal = portal;\n this._attachedRef = ref;\n this.attached.emit(ref);\n return ref;\n };\n /**\n * Attach the given TemplatePortal to this PortlHost as an embedded View.\n * @param portal Portal to be attached.\n * @returns Reference to the created embedded view.\n */\n /**\n * Attach the given TemplatePortal to this PortlHost as an embedded View.\n * @template C\n * @param {?} portal Portal to be attached.\n * @return {?} Reference to the created embedded view.\n */\n CdkPortalOutlet.prototype.attachTemplatePortal = /**\n * Attach the given TemplatePortal to this PortlHost as an embedded View.\n * @template C\n * @param {?} portal Portal to be attached.\n * @return {?} Reference to the created embedded view.\n */\n function (portal) {\n var _this = this;\n portal.setAttachedHost(this);\n var /** @type {?} */ viewRef = this._viewContainerRef.createEmbeddedView(portal.templateRef, portal.context);\n _super.prototype.setDisposeFn.call(this, function () { return _this._viewContainerRef.clear(); });\n this._attachedPortal = portal;\n this._attachedRef = viewRef;\n this.attached.emit(viewRef);\n return viewRef;\n };\n CdkPortalOutlet.decorators = [\n { type: Directive, args: [{\n selector: '[cdkPortalOutlet], [cdkPortalHost], [portalHost]',\n exportAs: 'cdkPortalOutlet, cdkPortalHost',\n inputs: ['portal: cdkPortalOutlet']\n },] },\n ];\n /** @nocollapse */\n CdkPortalOutlet.ctorParameters = function () { return [\n { type: ComponentFactoryResolver, },\n { type: ViewContainerRef, },\n ]; };\n CdkPortalOutlet.propDecorators = {\n \"_deprecatedPortal\": [{ type: Input, args: ['portalHost',] },],\n \"_deprecatedPortalHost\": [{ type: Input, args: ['cdkPortalHost',] },],\n \"attached\": [{ type: Output, args: ['attached',] },],\n };\n return CdkPortalOutlet;\n}(BasePortalOutlet));\nvar PortalModule = /** @class */ (function () {\n function PortalModule() {\n }\n PortalModule.decorators = [\n { type: NgModule, args: [{\n exports: [CdkPortal, CdkPortalOutlet],\n declarations: [CdkPortal, CdkPortalOutlet],\n },] },\n ];\n /** @nocollapse */\n PortalModule.ctorParameters = function () { return []; };\n return PortalModule;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Custom injector to be used when providing custom\n * injection tokens to components inside a portal.\n * \\@docs-private\n */\nvar PortalInjector = /** @class */ (function () {\n function PortalInjector(_parentInjector, _customTokens) {\n this._parentInjector = _parentInjector;\n this._customTokens = _customTokens;\n }\n /**\n * @param {?} token\n * @param {?=} notFoundValue\n * @return {?}\n */\n PortalInjector.prototype.get = /**\n * @param {?} token\n * @param {?=} notFoundValue\n * @return {?}\n */\n function (token, notFoundValue) {\n var /** @type {?} */ value = this._customTokens.get(token);\n if (typeof value !== 'undefined') {\n return value;\n }\n return this._parentInjector.get(token, notFoundValue);\n };\n return PortalInjector;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { DomPortalOutlet as DomPortalHost, CdkPortalOutlet as PortalHostDirective, CdkPortal as TemplatePortalDirective, BasePortalOutlet as BasePortalHost, Portal, ComponentPortal, TemplatePortal, BasePortalOutlet, DomPortalOutlet, CdkPortal, CdkPortalOutlet, PortalModule, PortalInjector };\n//# sourceMappingURL=portal.es5.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/@angular/cdk/esm5/portal.es5.js\n// module id = 71\n// module chunks = 1","function defaultParsingFlags() {\n // We need to deep clone this object.\n return {\n empty: false,\n unusedTokens: [],\n unusedInput: [],\n overflow: -2,\n charsLeftOver: 0,\n nullInput: false,\n invalidMonth: null,\n invalidFormat: false,\n userInvalidated: false,\n iso: false,\n parsedDateParts: [],\n meridiem: null,\n rfc2822: false,\n weekdayMismatch: false\n };\n}\nexport function getParsingFlags(config) {\n if (config._pf == null) {\n config._pf = defaultParsingFlags();\n }\n return config._pf;\n}\n//# sourceMappingURL=parsing-flags.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/create/parsing-flags.js\n// module id = 80\n// module chunks = 1","import { addFormatToken } from '../format/format';\nimport { getDay } from '../utils/date-getters';\nimport { addRegexToken, match1to2 } from '../parse/regex';\nimport { addUnitAlias } from './aliases';\nimport { addUnitPriority } from './priorities';\nimport { addWeekParseToken } from '../parse/token';\nimport { getParsingFlags } from '../create/parsing-flags';\nimport { isNumber, isString, toInt } from '../utils/type-checks';\nimport { add } from '../moment/add-subtract';\nimport { getLocale } from '../locale/locales';\n// FORMATTING\naddFormatToken('d', null, 'do', function (date, opts) {\n return getDay(date, opts.isUTC).toString(10);\n});\naddFormatToken('dd', null, null, function (date, opts) {\n return opts.locale.weekdaysMin(date, opts.format, opts.isUTC);\n});\naddFormatToken('ddd', null, null, function (date, opts) {\n return opts.locale.weekdaysShort(date, opts.format, opts.isUTC);\n});\naddFormatToken('dddd', null, null, function (date, opts) {\n return opts.locale.weekdays(date, opts.format, opts.isUTC);\n});\naddFormatToken('e', null, null, function (date, opts) {\n return getLocaleDayOfWeek(date, opts.locale, opts.isUTC).toString(10);\n // return getDay(date, opts.isUTC).toString(10);\n});\naddFormatToken('E', null, null, function (date, opts) {\n return getISODayOfWeek(date, opts.isUTC).toString(10);\n});\n// ALIASES\naddUnitAlias('day', 'd');\naddUnitAlias('weekday', 'e');\naddUnitAlias('isoWeekday', 'E');\n// PRIORITY\naddUnitPriority('day', 11);\naddUnitPriority('weekday', 11);\naddUnitPriority('isoWeekday', 11);\n// PARSING\naddRegexToken('d', match1to2);\naddRegexToken('e', match1to2);\naddRegexToken('E', match1to2);\naddRegexToken('dd', function (isStrict, locale) {\n return locale.weekdaysMinRegex(isStrict);\n});\naddRegexToken('ddd', function (isStrict, locale) {\n return locale.weekdaysShortRegex(isStrict);\n});\naddRegexToken('dddd', function (isStrict, locale) {\n return locale.weekdaysRegex(isStrict);\n});\naddWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) {\n var weekday = config._locale.weekdaysParse(input, token, config._strict);\n // if we didn't get a weekday name, mark the date as invalid\n if (weekday != null) {\n week.d = weekday;\n }\n else {\n getParsingFlags(config).invalidWeekday = !!input;\n }\n return config;\n});\naddWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) {\n week[token] = toInt(input);\n return config;\n});\n// HELPERS\nexport function parseWeekday(input, locale) {\n if (!isString(input)) {\n return input;\n }\n var _num = parseInt(input, 10);\n if (!isNaN(_num)) {\n return _num;\n }\n var _weekDay = locale.weekdaysParse(input);\n if (isNumber(_weekDay)) {\n return _weekDay;\n }\n return null;\n}\nexport function parseIsoWeekday(input, locale) {\n if (locale === void 0) { locale = getLocale(); }\n if (isString(input)) {\n return locale.weekdaysParse(input) % 7 || 7;\n }\n return isNumber(input) && isNaN(input) ? null : input;\n}\n// MOMENTS\nexport function getSetDayOfWeek(date, input, opts) {\n if (!input) {\n return getDayOfWeek(date, opts.isUTC);\n }\n return setDayOfWeek(date, input, opts.locale, opts.isUTC);\n}\nexport function setDayOfWeek(date, input, locale, isUTC) {\n if (locale === void 0) { locale = getLocale(); }\n var day = getDay(date, isUTC);\n var _input = parseWeekday(input, locale);\n return add(date, _input - day, 'day');\n}\nexport function getDayOfWeek(date, isUTC) {\n return getDay(date, isUTC);\n}\n/********************************************/\n// todo: utc\n// getSetLocaleDayOfWeek\nexport function getLocaleDayOfWeek(date, locale, isUTC) {\n if (locale === void 0) { locale = getLocale(); }\n return (getDay(date, isUTC) + 7 - locale.firstDayOfWeek()) % 7;\n}\nexport function setLocaleDayOfWeek(date, input, opts) {\n if (opts === void 0) { opts = {}; }\n var weekday = getLocaleDayOfWeek(date, opts.locale, opts.isUTC);\n return add(date, input - weekday, 'day');\n}\n// getSetISODayOfWeek\nexport function getISODayOfWeek(date, isUTC) {\n return getDay(date, isUTC) || 7;\n}\nexport function setISODayOfWeek(date, input, opts) {\n // behaves the same as moment#day except\n // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6)\n // as a setter, sunday should belong to the previous week.\n if (opts === void 0) { opts = {}; }\n var weekday = parseIsoWeekday(input, opts.locale);\n return setDayOfWeek(date, getDayOfWeek(date) % 7 ? weekday : weekday - 7);\n}\n//# sourceMappingURL=day-of-week.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/units/day-of-week.js\n// module id = 81\n// module chunks = 1","// moment.js\n// version : 2.18.1\n// authors : Tim Wood, Iskren Chernev, Moment.js contributors\n// license : MIT\n// momentjs.com\nimport './units/index';\nimport { formatFunctions, makeFormatFunction } from './format/format';\nimport { getLocale } from './locale/locales';\nimport { isDateValid } from './utils/type-checks';\nexport function formatDate(date, format, locale, isUTC, offset) {\n if (offset === void 0) { offset = 0; }\n var _locale = getLocale(locale || 'en');\n if (!_locale) {\n throw new Error(\"Locale \\\"\" + locale + \"\\\" is not defined, please add it with \\\"defineLocale(...)\\\"\");\n }\n var _format = format || (isUTC ? 'YYYY-MM-DDTHH:mm:ss[Z]' : 'YYYY-MM-DDTHH:mm:ssZ');\n var output = formatMoment(date, _format, _locale, isUTC, offset);\n if (!output) {\n return output;\n }\n return _locale.postformat(output);\n}\n// format date using native date object\nexport function formatMoment(date, _format, locale, isUTC, offset) {\n if (offset === void 0) { offset = 0; }\n if (!isDateValid(date)) {\n return locale.invalidDate;\n }\n var format = expandFormat(_format, locale);\n formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format);\n return formatFunctions[format](date, locale, isUTC, offset);\n}\nexport function expandFormat(_format, locale) {\n var format = _format;\n var i = 5;\n var localFormattingTokens = /(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g;\n var replaceLongDateFormatTokens = function (input) {\n return locale.formatLongDate(input) || input;\n };\n localFormattingTokens.lastIndex = 0;\n while (i >= 0 && localFormattingTokens.test(format)) {\n format = format.replace(localFormattingTokens, replaceLongDateFormatTokens);\n localFormattingTokens.lastIndex = 0;\n i -= 1;\n }\n return format;\n}\n//# sourceMappingURL=format.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/format.js\n// module id = 92\n// module chunks = 1","import { Injectable } from '@angular/core';\n/**\n * For date range picker there are `BsDaterangepickerConfig` which inherits all properties,\n * except `displayMonths`, for range picker it default to `2`\n */\nvar BsDatepickerConfig = (function () {\n function BsDatepickerConfig() {\n /** CSS class which will be applied to datepicker container,\n * usually used to set color theme\n */\n this.containerClass = 'theme-green';\n // DatepickerRenderOptions\n this.displayMonths = 1;\n /**\n * Allows to hide week numbers in datepicker\n */\n this.showWeekNumbers = true;\n this.dateInputFormat = 'L';\n // range picker\n this.rangeSeparator = ' - ';\n this.rangeInputFormat = 'L';\n // DatepickerFormatOptions\n this.monthTitle = 'MMMM';\n this.yearTitle = 'YYYY';\n this.dayLabel = 'D';\n this.monthLabel = 'MMMM';\n this.yearLabel = 'YYYY';\n this.weekNumbers = 'w';\n }\n BsDatepickerConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsDatepickerConfig.ctorParameters = function () { return []; };\n return BsDatepickerConfig;\n}());\nexport { BsDatepickerConfig };\n//# sourceMappingURL=bs-datepicker.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/bs-datepicker.config.js\n// module id = 93\n// module chunks = 1","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { ApplicationRef, ComponentFactoryResolver, Directive, ElementRef, EventEmitter, Inject, Injectable, InjectionToken, Injector, Input, NgModule, NgZone, Optional, Output, SkipSelf, TemplateRef, ViewContainerRef } from '@angular/core';\nimport { CdkScrollable, ScrollDispatchModule, ScrollDispatcher, VIEWPORT_RULER_PROVIDER, ViewportRuler } from '@angular/cdk/scrolling';\nimport { DOCUMENT } from '@angular/common';\nimport { BidiModule, Directionality } from '@angular/cdk/bidi';\nimport { DomPortalOutlet, PortalModule, TemplatePortal } from '@angular/cdk/portal';\nimport { __assign, __extends } from 'tslib';\nimport * as tslib_1 from 'tslib';\nimport { take } from 'rxjs/operators/take';\nimport { Subject } from 'rxjs/Subject';\nimport { Subscription } from 'rxjs/Subscription';\nimport { filter } from 'rxjs/operators/filter';\nimport { fromEvent } from 'rxjs/observable/fromEvent';\nimport { coerceBooleanProperty } from '@angular/cdk/coercion';\nimport { ESCAPE } from '@angular/cdk/keycodes';\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Scroll strategy that doesn't do anything.\n */\nvar NoopScrollStrategy = /** @class */ (function () {\n function NoopScrollStrategy() {\n }\n /** Does nothing, as this scroll strategy is a no-op. */\n /**\n * Does nothing, as this scroll strategy is a no-op.\n * @return {?}\n */\n NoopScrollStrategy.prototype.enable = /**\n * Does nothing, as this scroll strategy is a no-op.\n * @return {?}\n */\n function () { };\n /** Does nothing, as this scroll strategy is a no-op. */\n /**\n * Does nothing, as this scroll strategy is a no-op.\n * @return {?}\n */\n NoopScrollStrategy.prototype.disable = /**\n * Does nothing, as this scroll strategy is a no-op.\n * @return {?}\n */\n function () { };\n /** Does nothing, as this scroll strategy is a no-op. */\n /**\n * Does nothing, as this scroll strategy is a no-op.\n * @return {?}\n */\n NoopScrollStrategy.prototype.attach = /**\n * Does nothing, as this scroll strategy is a no-op.\n * @return {?}\n */\n function () { };\n return NoopScrollStrategy;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Initial configuration used when creating an overlay.\n */\nvar OverlayConfig = /** @class */ (function () {\n function OverlayConfig(config) {\n var _this = this;\n /**\n * Strategy to be used when handling scroll events while the overlay is open.\n */\n this.scrollStrategy = new NoopScrollStrategy();\n /**\n * Custom class to add to the overlay pane.\n */\n this.panelClass = '';\n /**\n * Whether the overlay has a backdrop.\n */\n this.hasBackdrop = false;\n /**\n * Custom class to add to the backdrop\n */\n this.backdropClass = 'cdk-overlay-dark-backdrop';\n /**\n * The direction of the text in the overlay panel.\n */\n this.direction = 'ltr';\n if (config) {\n Object.keys(config)\n .filter(function (key) { return typeof config[key] !== 'undefined'; })\n .forEach(function (key) { return _this[key] = config[key]; });\n }\n }\n return OverlayConfig;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * A connection point on the origin element.\n * @record\n */\n\n/**\n * A connection point on the overlay element.\n * @record\n */\n\n/**\n * The points of the origin element and the overlay element to connect.\n */\nvar ConnectionPositionPair = /** @class */ (function () {\n function ConnectionPositionPair(origin, overlay, offsetX, offsetY) {\n this.offsetX = offsetX;\n this.offsetY = offsetY;\n this.originX = origin.originX;\n this.originY = origin.originY;\n this.overlayX = overlay.overlayX;\n this.overlayY = overlay.overlayY;\n }\n return ConnectionPositionPair;\n}());\n/**\n * Set of properties regarding the position of the origin and overlay relative to the viewport\n * with respect to the containing Scrollable elements.\n *\n * The overlay and origin are clipped if any part of their bounding client rectangle exceeds the\n * bounds of any one of the strategy's Scrollable's bounding client rectangle.\n *\n * The overlay and origin are outside view if there is no overlap between their bounding client\n * rectangle and any one of the strategy's Scrollable's bounding client rectangle.\n *\n * ----------- -----------\n * | outside | | clipped |\n * | view | --------------------------\n * | | | | | |\n * ---------- | ----------- |\n * -------------------------- | |\n * | | | Scrollable |\n * | | | |\n * | | --------------------------\n * | Scrollable |\n * | |\n * --------------------------\n *\n * \\@docs-private\n */\nvar ScrollingVisibility = /** @class */ (function () {\n function ScrollingVisibility() {\n }\n return ScrollingVisibility;\n}());\n/**\n * The change event emitted by the strategy when a fallback position is used.\n */\nvar ConnectedOverlayPositionChange = /** @class */ (function () {\n function ConnectedOverlayPositionChange(connectionPair, /** @docs-private */\n scrollableViewProperties) {\n this.connectionPair = connectionPair;\n this.scrollableViewProperties = scrollableViewProperties;\n }\n /** @nocollapse */\n ConnectedOverlayPositionChange.ctorParameters = function () { return [\n { type: ConnectionPositionPair, },\n { type: ScrollingVisibility, decorators: [{ type: Optional },] },\n ]; };\n return ConnectedOverlayPositionChange;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Describes a strategy that will be used by an overlay to handle scroll events while it is open.\n * @record\n */\n\n/**\n * Returns an error to be thrown when attempting to attach an already-attached scroll strategy.\n * @return {?}\n */\nfunction getMatScrollStrategyAlreadyAttachedError() {\n return Error(\"Scroll strategy has already been attached.\");\n}\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Config options for the CloseScrollStrategy.\n * @record\n */\n\n/**\n * Strategy that will close the overlay as soon as the user starts scrolling.\n */\nvar CloseScrollStrategy = /** @class */ (function () {\n function CloseScrollStrategy(_scrollDispatcher, _ngZone, _viewportRuler, _config) {\n var _this = this;\n this._scrollDispatcher = _scrollDispatcher;\n this._ngZone = _ngZone;\n this._viewportRuler = _viewportRuler;\n this._config = _config;\n this._scrollSubscription = null;\n /**\n * Detaches the overlay ref and disables the scroll strategy.\n */\n this._detach = function () {\n _this.disable();\n if (_this._overlayRef.hasAttached()) {\n _this._ngZone.run(function () { return _this._overlayRef.detach(); });\n }\n };\n }\n /** Attaches this scroll strategy to an overlay. */\n /**\n * Attaches this scroll strategy to an overlay.\n * @param {?} overlayRef\n * @return {?}\n */\n CloseScrollStrategy.prototype.attach = /**\n * Attaches this scroll strategy to an overlay.\n * @param {?} overlayRef\n * @return {?}\n */\n function (overlayRef) {\n if (this._overlayRef) {\n throw getMatScrollStrategyAlreadyAttachedError();\n }\n this._overlayRef = overlayRef;\n };\n /** Enables the closing of the attached overlay on scroll. */\n /**\n * Enables the closing of the attached overlay on scroll.\n * @return {?}\n */\n CloseScrollStrategy.prototype.enable = /**\n * Enables the closing of the attached overlay on scroll.\n * @return {?}\n */\n function () {\n var _this = this;\n if (this._scrollSubscription) {\n return;\n }\n var /** @type {?} */ stream = this._scrollDispatcher.scrolled(0);\n if (this._config && this._config.threshold && this._config.threshold > 1) {\n this._initialScrollPosition = this._viewportRuler.getViewportScrollPosition().top;\n this._scrollSubscription = stream.subscribe(function () {\n var /** @type {?} */ scrollPosition = _this._viewportRuler.getViewportScrollPosition().top;\n if (Math.abs(scrollPosition - _this._initialScrollPosition) > /** @type {?} */ ((/** @type {?} */ ((_this._config)).threshold))) {\n _this._detach();\n }\n else {\n _this._overlayRef.updatePosition();\n }\n });\n }\n else {\n this._scrollSubscription = stream.subscribe(this._detach);\n }\n };\n /** Disables the closing the attached overlay on scroll. */\n /**\n * Disables the closing the attached overlay on scroll.\n * @return {?}\n */\n CloseScrollStrategy.prototype.disable = /**\n * Disables the closing the attached overlay on scroll.\n * @return {?}\n */\n function () {\n if (this._scrollSubscription) {\n this._scrollSubscription.unsubscribe();\n this._scrollSubscription = null;\n }\n };\n return CloseScrollStrategy;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Strategy that will prevent the user from scrolling while the overlay is visible.\n */\nvar BlockScrollStrategy = /** @class */ (function () {\n function BlockScrollStrategy(_viewportRuler, document) {\n this._viewportRuler = _viewportRuler;\n this._previousHTMLStyles = { top: '', left: '' };\n this._isEnabled = false;\n this._document = document;\n }\n /** Attaches this scroll strategy to an overlay. */\n /**\n * Attaches this scroll strategy to an overlay.\n * @return {?}\n */\n BlockScrollStrategy.prototype.attach = /**\n * Attaches this scroll strategy to an overlay.\n * @return {?}\n */\n function () { };\n /** Blocks page-level scroll while the attached overlay is open. */\n /**\n * Blocks page-level scroll while the attached overlay is open.\n * @return {?}\n */\n BlockScrollStrategy.prototype.enable = /**\n * Blocks page-level scroll while the attached overlay is open.\n * @return {?}\n */\n function () {\n if (this._canBeEnabled()) {\n var /** @type {?} */ root = this._document.documentElement;\n this._previousScrollPosition = this._viewportRuler.getViewportScrollPosition();\n // Cache the previous inline styles in case the user had set them.\n this._previousHTMLStyles.left = root.style.left || '';\n this._previousHTMLStyles.top = root.style.top || '';\n // Note: we're using the `html` node, instead of the `body`, because the `body` may\n // have the user agent margin, whereas the `html` is guaranteed not to have one.\n root.style.left = -this._previousScrollPosition.left + \"px\";\n root.style.top = -this._previousScrollPosition.top + \"px\";\n root.classList.add('cdk-global-scrollblock');\n this._isEnabled = true;\n }\n };\n /** Unblocks page-level scroll while the attached overlay is open. */\n /**\n * Unblocks page-level scroll while the attached overlay is open.\n * @return {?}\n */\n BlockScrollStrategy.prototype.disable = /**\n * Unblocks page-level scroll while the attached overlay is open.\n * @return {?}\n */\n function () {\n if (this._isEnabled) {\n var /** @type {?} */ html = this._document.documentElement;\n var /** @type {?} */ body = this._document.body;\n var /** @type {?} */ previousHtmlScrollBehavior = html.style['scrollBehavior'] || '';\n var /** @type {?} */ previousBodyScrollBehavior = body.style['scrollBehavior'] || '';\n this._isEnabled = false;\n html.style.left = this._previousHTMLStyles.left;\n html.style.top = this._previousHTMLStyles.top;\n html.classList.remove('cdk-global-scrollblock');\n // Disable user-defined smooth scrolling temporarily while we restore the scroll position.\n // See https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-behavior\n html.style['scrollBehavior'] = body.style['scrollBehavior'] = 'auto';\n window.scroll(this._previousScrollPosition.left, this._previousScrollPosition.top);\n html.style['scrollBehavior'] = previousHtmlScrollBehavior;\n body.style['scrollBehavior'] = previousBodyScrollBehavior;\n }\n };\n /**\n * @return {?}\n */\n BlockScrollStrategy.prototype._canBeEnabled = /**\n * @return {?}\n */\n function () {\n // Since the scroll strategies can't be singletons, we have to use a global CSS class\n // (`cdk-global-scrollblock`) to make sure that we don't try to disable global\n // scrolling multiple times.\n var /** @type {?} */ html = this._document.documentElement;\n if (html.classList.contains('cdk-global-scrollblock') || this._isEnabled) {\n return false;\n }\n var /** @type {?} */ body = this._document.body;\n var /** @type {?} */ viewport = this._viewportRuler.getViewportSize();\n return body.scrollHeight > viewport.height || body.scrollWidth > viewport.width;\n };\n return BlockScrollStrategy;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n// TODO(jelbourn): move this to live with the rest of the scrolling code\n// TODO(jelbourn): someday replace this with IntersectionObservers\n/**\n * Gets whether an element is scrolled outside of view by any of its parent scrolling containers.\n * \\@docs-private\n * @param {?} element Dimensions of the element (from getBoundingClientRect)\n * @param {?} scrollContainers Dimensions of element's scrolling containers (from getBoundingClientRect)\n * @return {?} Whether the element is scrolled out of view\n */\nfunction isElementScrolledOutsideView(element, scrollContainers) {\n return scrollContainers.some(function (containerBounds) {\n var /** @type {?} */ outsideAbove = element.bottom < containerBounds.top;\n var /** @type {?} */ outsideBelow = element.top > containerBounds.bottom;\n var /** @type {?} */ outsideLeft = element.right < containerBounds.left;\n var /** @type {?} */ outsideRight = element.left > containerBounds.right;\n return outsideAbove || outsideBelow || outsideLeft || outsideRight;\n });\n}\n/**\n * Gets whether an element is clipped by any of its scrolling containers.\n * \\@docs-private\n * @param {?} element Dimensions of the element (from getBoundingClientRect)\n * @param {?} scrollContainers Dimensions of element's scrolling containers (from getBoundingClientRect)\n * @return {?} Whether the element is clipped\n */\nfunction isElementClippedByScrolling(element, scrollContainers) {\n return scrollContainers.some(function (scrollContainerRect) {\n var /** @type {?} */ clippedAbove = element.top < scrollContainerRect.top;\n var /** @type {?} */ clippedBelow = element.bottom > scrollContainerRect.bottom;\n var /** @type {?} */ clippedLeft = element.left < scrollContainerRect.left;\n var /** @type {?} */ clippedRight = element.right > scrollContainerRect.right;\n return clippedAbove || clippedBelow || clippedLeft || clippedRight;\n });\n}\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Config options for the RepositionScrollStrategy.\n * @record\n */\n\n/**\n * Strategy that will update the element position as the user is scrolling.\n */\nvar RepositionScrollStrategy = /** @class */ (function () {\n function RepositionScrollStrategy(_scrollDispatcher, _viewportRuler, _ngZone, _config) {\n this._scrollDispatcher = _scrollDispatcher;\n this._viewportRuler = _viewportRuler;\n this._ngZone = _ngZone;\n this._config = _config;\n this._scrollSubscription = null;\n }\n /** Attaches this scroll strategy to an overlay. */\n /**\n * Attaches this scroll strategy to an overlay.\n * @param {?} overlayRef\n * @return {?}\n */\n RepositionScrollStrategy.prototype.attach = /**\n * Attaches this scroll strategy to an overlay.\n * @param {?} overlayRef\n * @return {?}\n */\n function (overlayRef) {\n if (this._overlayRef) {\n throw getMatScrollStrategyAlreadyAttachedError();\n }\n this._overlayRef = overlayRef;\n };\n /** Enables repositioning of the attached overlay on scroll. */\n /**\n * Enables repositioning of the attached overlay on scroll.\n * @return {?}\n */\n RepositionScrollStrategy.prototype.enable = /**\n * Enables repositioning of the attached overlay on scroll.\n * @return {?}\n */\n function () {\n var _this = this;\n if (!this._scrollSubscription) {\n var /** @type {?} */ throttle = this._config ? this._config.scrollThrottle : 0;\n this._scrollSubscription = this._scrollDispatcher.scrolled(throttle).subscribe(function () {\n _this._overlayRef.updatePosition();\n // TODO(crisbeto): make `close` on by default once all components can handle it.\n if (_this._config && _this._config.autoClose) {\n var /** @type {?} */ overlayRect = _this._overlayRef.overlayElement.getBoundingClientRect();\n var _a = _this._viewportRuler.getViewportSize(), width = _a.width, height = _a.height;\n // TODO(crisbeto): include all ancestor scroll containers here once\n // we have a way of exposing the trigger element to the scroll strategy.\n var /** @type {?} */ parentRects = [{ width: width, height: height, bottom: height, right: width, top: 0, left: 0 }];\n if (isElementScrolledOutsideView(overlayRect, parentRects)) {\n _this.disable();\n _this._ngZone.run(function () { return _this._overlayRef.detach(); });\n }\n }\n });\n }\n };\n /** Disables repositioning of the attached overlay on scroll. */\n /**\n * Disables repositioning of the attached overlay on scroll.\n * @return {?}\n */\n RepositionScrollStrategy.prototype.disable = /**\n * Disables repositioning of the attached overlay on scroll.\n * @return {?}\n */\n function () {\n if (this._scrollSubscription) {\n this._scrollSubscription.unsubscribe();\n this._scrollSubscription = null;\n }\n };\n return RepositionScrollStrategy;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Options for how an overlay will handle scrolling.\n *\n * Users can provide a custom value for `ScrollStrategyOptions` to replace the default\n * behaviors. This class primarily acts as a factory for ScrollStrategy instances.\n */\nvar ScrollStrategyOptions = /** @class */ (function () {\n function ScrollStrategyOptions(_scrollDispatcher, _viewportRuler, _ngZone, document) {\n var _this = this;\n this._scrollDispatcher = _scrollDispatcher;\n this._viewportRuler = _viewportRuler;\n this._ngZone = _ngZone;\n /**\n * Do nothing on scroll.\n */\n this.noop = function () { return new NoopScrollStrategy(); };\n /**\n * Close the overlay as soon as the user scrolls.\n * @param config Configuration to be used inside the scroll strategy.\n */\n this.close = function (config) {\n return new CloseScrollStrategy(_this._scrollDispatcher, _this._ngZone, _this._viewportRuler, config);\n };\n /**\n * Block scrolling.\n */\n this.block = function () { return new BlockScrollStrategy(_this._viewportRuler, _this._document); };\n /**\n * Update the overlay's position on scroll.\n * @param config Configuration to be used inside the scroll strategy.\n * Allows debouncing the reposition calls.\n */\n this.reposition = function (config) {\n return new RepositionScrollStrategy(_this._scrollDispatcher, _this._viewportRuler, _this._ngZone, config);\n };\n this._document = document;\n }\n ScrollStrategyOptions.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n ScrollStrategyOptions.ctorParameters = function () { return [\n { type: ScrollDispatcher, },\n { type: ViewportRuler, },\n { type: NgZone, },\n { type: undefined, decorators: [{ type: Inject, args: [DOCUMENT,] },] },\n ]; };\n return ScrollStrategyOptions;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Reference to an overlay that has been created with the Overlay service.\n * Used to manipulate or dispose of said overlay.\n */\nvar OverlayRef = /** @class */ (function () {\n function OverlayRef(_portalOutlet, _pane, _config, _ngZone, _keyboardDispatcher, _document) {\n this._portalOutlet = _portalOutlet;\n this._pane = _pane;\n this._config = _config;\n this._ngZone = _ngZone;\n this._keyboardDispatcher = _keyboardDispatcher;\n this._document = _document;\n this._backdropElement = null;\n this._backdropClick = new Subject();\n this._attachments = new Subject();\n this._detachments = new Subject();\n /**\n * Stream of keydown events dispatched to this overlay.\n */\n this._keydownEvents = new Subject();\n if (_config.scrollStrategy) {\n _config.scrollStrategy.attach(this);\n }\n }\n Object.defineProperty(OverlayRef.prototype, \"overlayElement\", {\n /** The overlay's HTML element */\n get: /**\n * The overlay's HTML element\n * @return {?}\n */\n function () {\n return this._pane;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(OverlayRef.prototype, \"backdropElement\", {\n /** The overlay's backdrop HTML element. */\n get: /**\n * The overlay's backdrop HTML element.\n * @return {?}\n */\n function () {\n return this._backdropElement;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Attaches content, given via a Portal, to the overlay.\n * If the overlay is configured to have a backdrop, it will be created.\n *\n * @param portal Portal instance to which to attach the overlay.\n * @returns The portal attachment result.\n */\n /**\n * Attaches content, given via a Portal, to the overlay.\n * If the overlay is configured to have a backdrop, it will be created.\n *\n * @param {?} portal Portal instance to which to attach the overlay.\n * @return {?} The portal attachment result.\n */\n OverlayRef.prototype.attach = /**\n * Attaches content, given via a Portal, to the overlay.\n * If the overlay is configured to have a backdrop, it will be created.\n *\n * @param {?} portal Portal instance to which to attach the overlay.\n * @return {?} The portal attachment result.\n */\n function (portal) {\n var _this = this;\n var /** @type {?} */ attachResult = this._portalOutlet.attach(portal);\n if (this._config.positionStrategy) {\n this._config.positionStrategy.attach(this);\n }\n // Update the pane element with the given configuration.\n this._updateStackingOrder();\n this._updateElementSize();\n this._updateElementDirection();\n if (this._config.scrollStrategy) {\n this._config.scrollStrategy.enable();\n }\n // Update the position once the zone is stable so that the overlay will be fully rendered\n // before attempting to position it, as the position may depend on the size of the rendered\n // content.\n this._ngZone.onStable.asObservable().pipe(take(1)).subscribe(function () {\n // The overlay could've been detached before the zone has stabilized.\n if (_this.hasAttached()) {\n _this.updatePosition();\n }\n });\n // Enable pointer events for the overlay pane element.\n this._togglePointerEvents(true);\n if (this._config.hasBackdrop) {\n this._attachBackdrop();\n }\n if (this._config.panelClass) {\n // We can't do a spread here, because IE doesn't support setting multiple classes.\n if (Array.isArray(this._config.panelClass)) {\n this._config.panelClass.forEach(function (cls) { return _this._pane.classList.add(cls); });\n }\n else {\n this._pane.classList.add(this._config.panelClass);\n }\n }\n // Only emit the `attachments` event once all other setup is done.\n this._attachments.next();\n // Track this overlay by the keyboard dispatcher\n this._keyboardDispatcher.add(this);\n return attachResult;\n };\n /**\n * Detaches an overlay from a portal.\n * @returns The portal detachment result.\n */\n /**\n * Detaches an overlay from a portal.\n * @return {?} The portal detachment result.\n */\n OverlayRef.prototype.detach = /**\n * Detaches an overlay from a portal.\n * @return {?} The portal detachment result.\n */\n function () {\n if (!this.hasAttached()) {\n return;\n }\n this.detachBackdrop();\n // When the overlay is detached, the pane element should disable pointer events.\n // This is necessary because otherwise the pane element will cover the page and disable\n // pointer events therefore. Depends on the position strategy and the applied pane boundaries.\n this._togglePointerEvents(false);\n if (this._config.positionStrategy && this._config.positionStrategy.detach) {\n this._config.positionStrategy.detach();\n }\n if (this._config.scrollStrategy) {\n this._config.scrollStrategy.disable();\n }\n var /** @type {?} */ detachmentResult = this._portalOutlet.detach();\n // Only emit after everything is detached.\n this._detachments.next();\n // Remove this overlay from keyboard dispatcher tracking\n this._keyboardDispatcher.remove(this);\n return detachmentResult;\n };\n /** Cleans up the overlay from the DOM. */\n /**\n * Cleans up the overlay from the DOM.\n * @return {?}\n */\n OverlayRef.prototype.dispose = /**\n * Cleans up the overlay from the DOM.\n * @return {?}\n */\n function () {\n var /** @type {?} */ isAttached = this.hasAttached();\n if (this._config.positionStrategy) {\n this._config.positionStrategy.dispose();\n }\n if (this._config.scrollStrategy) {\n this._config.scrollStrategy.disable();\n }\n this.detachBackdrop();\n this._keyboardDispatcher.remove(this);\n this._portalOutlet.dispose();\n this._attachments.complete();\n this._backdropClick.complete();\n this._keydownEvents.complete();\n if (isAttached) {\n this._detachments.next();\n }\n this._detachments.complete();\n };\n /** Whether the overlay has attached content. */\n /**\n * Whether the overlay has attached content.\n * @return {?}\n */\n OverlayRef.prototype.hasAttached = /**\n * Whether the overlay has attached content.\n * @return {?}\n */\n function () {\n return this._portalOutlet.hasAttached();\n };\n /** Gets an observable that emits when the backdrop has been clicked. */\n /**\n * Gets an observable that emits when the backdrop has been clicked.\n * @return {?}\n */\n OverlayRef.prototype.backdropClick = /**\n * Gets an observable that emits when the backdrop has been clicked.\n * @return {?}\n */\n function () {\n return this._backdropClick.asObservable();\n };\n /** Gets an observable that emits when the overlay has been attached. */\n /**\n * Gets an observable that emits when the overlay has been attached.\n * @return {?}\n */\n OverlayRef.prototype.attachments = /**\n * Gets an observable that emits when the overlay has been attached.\n * @return {?}\n */\n function () {\n return this._attachments.asObservable();\n };\n /** Gets an observable that emits when the overlay has been detached. */\n /**\n * Gets an observable that emits when the overlay has been detached.\n * @return {?}\n */\n OverlayRef.prototype.detachments = /**\n * Gets an observable that emits when the overlay has been detached.\n * @return {?}\n */\n function () {\n return this._detachments.asObservable();\n };\n /** Gets an observable of keydown events targeted to this overlay. */\n /**\n * Gets an observable of keydown events targeted to this overlay.\n * @return {?}\n */\n OverlayRef.prototype.keydownEvents = /**\n * Gets an observable of keydown events targeted to this overlay.\n * @return {?}\n */\n function () {\n return this._keydownEvents.asObservable();\n };\n /** Gets the the current overlay configuration, which is immutable. */\n /**\n * Gets the the current overlay configuration, which is immutable.\n * @return {?}\n */\n OverlayRef.prototype.getConfig = /**\n * Gets the the current overlay configuration, which is immutable.\n * @return {?}\n */\n function () {\n return this._config;\n };\n /** Updates the position of the overlay based on the position strategy. */\n /**\n * Updates the position of the overlay based on the position strategy.\n * @return {?}\n */\n OverlayRef.prototype.updatePosition = /**\n * Updates the position of the overlay based on the position strategy.\n * @return {?}\n */\n function () {\n if (this._config.positionStrategy) {\n this._config.positionStrategy.apply();\n }\n };\n /** Update the size properties of the overlay. */\n /**\n * Update the size properties of the overlay.\n * @param {?} sizeConfig\n * @return {?}\n */\n OverlayRef.prototype.updateSize = /**\n * Update the size properties of the overlay.\n * @param {?} sizeConfig\n * @return {?}\n */\n function (sizeConfig) {\n this._config = __assign({}, this._config, sizeConfig);\n this._updateElementSize();\n };\n /** Sets the LTR/RTL direction for the overlay. */\n /**\n * Sets the LTR/RTL direction for the overlay.\n * @param {?} dir\n * @return {?}\n */\n OverlayRef.prototype.setDirection = /**\n * Sets the LTR/RTL direction for the overlay.\n * @param {?} dir\n * @return {?}\n */\n function (dir) {\n this._config = __assign({}, this._config, { direction: dir });\n this._updateElementDirection();\n };\n /**\n * Updates the text direction of the overlay panel.\n * @return {?}\n */\n OverlayRef.prototype._updateElementDirection = /**\n * Updates the text direction of the overlay panel.\n * @return {?}\n */\n function () {\n this._pane.setAttribute('dir', /** @type {?} */ ((this._config.direction)));\n };\n /**\n * Updates the size of the overlay element based on the overlay config.\n * @return {?}\n */\n OverlayRef.prototype._updateElementSize = /**\n * Updates the size of the overlay element based on the overlay config.\n * @return {?}\n */\n function () {\n if (this._config.width || this._config.width === 0) {\n this._pane.style.width = formatCssUnit(this._config.width);\n }\n if (this._config.height || this._config.height === 0) {\n this._pane.style.height = formatCssUnit(this._config.height);\n }\n if (this._config.minWidth || this._config.minWidth === 0) {\n this._pane.style.minWidth = formatCssUnit(this._config.minWidth);\n }\n if (this._config.minHeight || this._config.minHeight === 0) {\n this._pane.style.minHeight = formatCssUnit(this._config.minHeight);\n }\n if (this._config.maxWidth || this._config.maxWidth === 0) {\n this._pane.style.maxWidth = formatCssUnit(this._config.maxWidth);\n }\n if (this._config.maxHeight || this._config.maxHeight === 0) {\n this._pane.style.maxHeight = formatCssUnit(this._config.maxHeight);\n }\n };\n /**\n * Toggles the pointer events for the overlay pane element.\n * @param {?} enablePointer\n * @return {?}\n */\n OverlayRef.prototype._togglePointerEvents = /**\n * Toggles the pointer events for the overlay pane element.\n * @param {?} enablePointer\n * @return {?}\n */\n function (enablePointer) {\n this._pane.style.pointerEvents = enablePointer ? 'auto' : 'none';\n };\n /**\n * Attaches a backdrop for this overlay.\n * @return {?}\n */\n OverlayRef.prototype._attachBackdrop = /**\n * Attaches a backdrop for this overlay.\n * @return {?}\n */\n function () {\n var _this = this;\n var /** @type {?} */ showingClass = 'cdk-overlay-backdrop-showing';\n this._backdropElement = this._document.createElement('div');\n this._backdropElement.classList.add('cdk-overlay-backdrop');\n if (this._config.backdropClass) {\n this._backdropElement.classList.add(this._config.backdropClass);\n } /** @type {?} */\n ((\n // Insert the backdrop before the pane in the DOM order,\n // in order to handle stacked overlays properly.\n this._pane.parentElement)).insertBefore(this._backdropElement, this._pane);\n // Forward backdrop clicks such that the consumer of the overlay can perform whatever\n // action desired when such a click occurs (usually closing the overlay).\n this._backdropElement.addEventListener('click', function (event) { return _this._backdropClick.next(event); });\n // Add class to fade-in the backdrop after one frame.\n if (typeof requestAnimationFrame !== 'undefined') {\n this._ngZone.runOutsideAngular(function () {\n requestAnimationFrame(function () {\n if (_this._backdropElement) {\n _this._backdropElement.classList.add(showingClass);\n }\n });\n });\n }\n else {\n this._backdropElement.classList.add(showingClass);\n }\n };\n /**\n * Updates the stacking order of the element, moving it to the top if necessary.\n * This is required in cases where one overlay was detached, while another one,\n * that should be behind it, was destroyed. The next time both of them are opened,\n * the stacking will be wrong, because the detached element's pane will still be\n * in its original DOM position.\n * @return {?}\n */\n OverlayRef.prototype._updateStackingOrder = /**\n * Updates the stacking order of the element, moving it to the top if necessary.\n * This is required in cases where one overlay was detached, while another one,\n * that should be behind it, was destroyed. The next time both of them are opened,\n * the stacking will be wrong, because the detached element's pane will still be\n * in its original DOM position.\n * @return {?}\n */\n function () {\n if (this._pane.nextSibling) {\n /** @type {?} */ ((this._pane.parentNode)).appendChild(this._pane);\n }\n };\n /** Detaches the backdrop (if any) associated with the overlay. */\n /**\n * Detaches the backdrop (if any) associated with the overlay.\n * @return {?}\n */\n OverlayRef.prototype.detachBackdrop = /**\n * Detaches the backdrop (if any) associated with the overlay.\n * @return {?}\n */\n function () {\n var _this = this;\n var /** @type {?} */ backdropToDetach = this._backdropElement;\n if (backdropToDetach) {\n var /** @type {?} */ finishDetach_1 = function () {\n // It may not be attached to anything in certain cases (e.g. unit tests).\n if (backdropToDetach && backdropToDetach.parentNode) {\n backdropToDetach.parentNode.removeChild(backdropToDetach);\n }\n // It is possible that a new portal has been attached to this overlay since we started\n // removing the backdrop. If that is the case, only clear the backdrop reference if it\n // is still the same instance that we started to remove.\n if (_this._backdropElement == backdropToDetach) {\n _this._backdropElement = null;\n }\n };\n backdropToDetach.classList.remove('cdk-overlay-backdrop-showing');\n if (this._config.backdropClass) {\n backdropToDetach.classList.remove(this._config.backdropClass);\n }\n backdropToDetach.addEventListener('transitionend', finishDetach_1);\n // If the backdrop doesn't have a transition, the `transitionend` event won't fire.\n // In this case we make it unclickable and we try to remove it after a delay.\n backdropToDetach.style.pointerEvents = 'none';\n // Run this outside the Angular zone because there's nothing that Angular cares about.\n // If it were to run inside the Angular zone, every test that used Overlay would have to be\n // either async or fakeAsync.\n this._ngZone.runOutsideAngular(function () {\n setTimeout(finishDetach_1, 500);\n });\n }\n };\n return OverlayRef;\n}());\n/**\n * @param {?} value\n * @return {?}\n */\nfunction formatCssUnit(value) {\n return typeof value === 'string' ? /** @type {?} */ (value) : value + \"px\";\n}\n/**\n * Size properties for an overlay.\n * @record\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * A strategy for positioning overlays. Using this strategy, an overlay is given an\n * implicit position relative some origin element. The relative position is defined in terms of\n * a point on the origin element that is connected to a point on the overlay element. For example,\n * a basic dropdown is connecting the bottom-left corner of the origin to the top-left corner\n * of the overlay.\n */\nvar ConnectedPositionStrategy = /** @class */ (function () {\n function ConnectedPositionStrategy(originPos, overlayPos, _connectedTo, _viewportRuler, _document) {\n this._connectedTo = _connectedTo;\n this._viewportRuler = _viewportRuler;\n this._document = _document;\n /**\n * Layout direction of the position strategy.\n */\n this._dir = 'ltr';\n /**\n * The offset in pixels for the overlay connection point on the x-axis\n */\n this._offsetX = 0;\n /**\n * The offset in pixels for the overlay connection point on the y-axis\n */\n this._offsetY = 0;\n /**\n * The Scrollable containers used to check scrollable view properties on position change.\n */\n this.scrollables = [];\n /**\n * Subscription to viewport resize events.\n */\n this._resizeSubscription = Subscription.EMPTY;\n /**\n * Ordered list of preferred positions, from most to least desirable.\n */\n this._preferredPositions = [];\n /**\n * Whether the position strategy is applied currently.\n */\n this._applied = false;\n /**\n * Whether the overlay position is locked.\n */\n this._positionLocked = false;\n this._onPositionChange = new Subject();\n this._origin = this._connectedTo.nativeElement;\n this.withFallbackPosition(originPos, overlayPos);\n }\n Object.defineProperty(ConnectedPositionStrategy.prototype, \"_isRtl\", {\n /** Whether the we're dealing with an RTL context */\n get: /**\n * Whether the we're dealing with an RTL context\n * @return {?}\n */\n function () {\n return this._dir === 'rtl';\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ConnectedPositionStrategy.prototype, \"onPositionChange\", {\n /** Emits an event when the connection point changes. */\n get: /**\n * Emits an event when the connection point changes.\n * @return {?}\n */\n function () {\n return this._onPositionChange.asObservable();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ConnectedPositionStrategy.prototype, \"positions\", {\n /** Ordered list of preferred positions, from most to least desirable. */\n get: /**\n * Ordered list of preferred positions, from most to least desirable.\n * @return {?}\n */\n function () {\n return this._preferredPositions;\n },\n enumerable: true,\n configurable: true\n });\n /** Attach this position strategy to an overlay. */\n /**\n * Attach this position strategy to an overlay.\n * @param {?} overlayRef\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.attach = /**\n * Attach this position strategy to an overlay.\n * @param {?} overlayRef\n * @return {?}\n */\n function (overlayRef) {\n var _this = this;\n this._pane = overlayRef.overlayElement;\n this._resizeSubscription.unsubscribe();\n this._resizeSubscription = this._viewportRuler.change().subscribe(function () { return _this.apply(); });\n };\n /** Disposes all resources used by the position strategy. */\n /**\n * Disposes all resources used by the position strategy.\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.dispose = /**\n * Disposes all resources used by the position strategy.\n * @return {?}\n */\n function () {\n this._applied = false;\n this._resizeSubscription.unsubscribe();\n this._onPositionChange.complete();\n };\n /** @docs-private */\n /**\n * \\@docs-private\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.detach = /**\n * \\@docs-private\n * @return {?}\n */\n function () {\n this._applied = false;\n this._resizeSubscription.unsubscribe();\n };\n /**\n * Updates the position of the overlay element, using whichever preferred position relative\n * to the origin fits on-screen.\n * @docs-private\n */\n /**\n * Updates the position of the overlay element, using whichever preferred position relative\n * to the origin fits on-screen.\n * \\@docs-private\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.apply = /**\n * Updates the position of the overlay element, using whichever preferred position relative\n * to the origin fits on-screen.\n * \\@docs-private\n * @return {?}\n */\n function () {\n // If the position has been applied already (e.g. when the overlay was opened) and the\n // consumer opted into locking in the position, re-use the old position, in order to\n // prevent the overlay from jumping around.\n if (this._applied && this._positionLocked && this._lastConnectedPosition) {\n this.recalculateLastPosition();\n return;\n }\n this._applied = true;\n // We need the bounding rects for the origin and the overlay to determine how to position\n // the overlay relative to the origin.\n var /** @type {?} */ element = this._pane;\n var /** @type {?} */ originRect = this._origin.getBoundingClientRect();\n var /** @type {?} */ overlayRect = element.getBoundingClientRect();\n // We use the viewport size to determine whether a position would go off-screen.\n var /** @type {?} */ viewportSize = this._viewportRuler.getViewportSize();\n // Fallback point if none of the fallbacks fit into the viewport.\n var /** @type {?} */ fallbackPoint;\n var /** @type {?} */ fallbackPosition;\n // We want to place the overlay in the first of the preferred positions such that the\n // overlay fits on-screen.\n for (var _i = 0, _a = this._preferredPositions; _i < _a.length; _i++) {\n var pos = _a[_i];\n // Get the (x, y) point of connection on the origin, and then use that to get the\n // (top, left) coordinate for the overlay at `pos`.\n var /** @type {?} */ originPoint = this._getOriginConnectionPoint(originRect, pos);\n var /** @type {?} */ overlayPoint = this._getOverlayPoint(originPoint, overlayRect, viewportSize, pos);\n // If the overlay in the calculated position fits on-screen, put it there and we're done.\n if (overlayPoint.fitsInViewport) {\n this._setElementPosition(element, overlayRect, overlayPoint, pos);\n // Save the last connected position in case the position needs to be re-calculated.\n this._lastConnectedPosition = pos;\n return;\n }\n else if (!fallbackPoint || fallbackPoint.visibleArea < overlayPoint.visibleArea) {\n fallbackPoint = overlayPoint;\n fallbackPosition = pos;\n }\n }\n // If none of the preferred positions were in the viewport, take the one\n // with the largest visible area.\n this._setElementPosition(element, overlayRect, /** @type {?} */ ((fallbackPoint)), /** @type {?} */ ((fallbackPosition)));\n };\n /**\n * Re-positions the overlay element with the trigger in its last calculated position,\n * even if a position higher in the \"preferred positions\" list would now fit. This\n * allows one to re-align the panel without changing the orientation of the panel.\n */\n /**\n * Re-positions the overlay element with the trigger in its last calculated position,\n * even if a position higher in the \"preferred positions\" list would now fit. This\n * allows one to re-align the panel without changing the orientation of the panel.\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.recalculateLastPosition = /**\n * Re-positions the overlay element with the trigger in its last calculated position,\n * even if a position higher in the \"preferred positions\" list would now fit. This\n * allows one to re-align the panel without changing the orientation of the panel.\n * @return {?}\n */\n function () {\n // If the overlay has never been positioned before, do nothing.\n if (!this._lastConnectedPosition) {\n return;\n }\n var /** @type {?} */ originRect = this._origin.getBoundingClientRect();\n var /** @type {?} */ overlayRect = this._pane.getBoundingClientRect();\n var /** @type {?} */ viewportSize = this._viewportRuler.getViewportSize();\n var /** @type {?} */ lastPosition = this._lastConnectedPosition || this._preferredPositions[0];\n var /** @type {?} */ originPoint = this._getOriginConnectionPoint(originRect, lastPosition);\n var /** @type {?} */ overlayPoint = this._getOverlayPoint(originPoint, overlayRect, viewportSize, lastPosition);\n this._setElementPosition(this._pane, overlayRect, overlayPoint, lastPosition);\n };\n /**\n * Sets the list of Scrollable containers that host the origin element so that\n * on reposition we can evaluate if it or the overlay has been clipped or outside view. Every\n * Scrollable must be an ancestor element of the strategy's origin element.\n */\n /**\n * Sets the list of Scrollable containers that host the origin element so that\n * on reposition we can evaluate if it or the overlay has been clipped or outside view. Every\n * Scrollable must be an ancestor element of the strategy's origin element.\n * @param {?} scrollables\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.withScrollableContainers = /**\n * Sets the list of Scrollable containers that host the origin element so that\n * on reposition we can evaluate if it or the overlay has been clipped or outside view. Every\n * Scrollable must be an ancestor element of the strategy's origin element.\n * @param {?} scrollables\n * @return {?}\n */\n function (scrollables) {\n this.scrollables = scrollables;\n };\n /**\n * Adds a new preferred fallback position.\n * @param originPos\n * @param overlayPos\n */\n /**\n * Adds a new preferred fallback position.\n * @param {?} originPos\n * @param {?} overlayPos\n * @param {?=} offsetX\n * @param {?=} offsetY\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.withFallbackPosition = /**\n * Adds a new preferred fallback position.\n * @param {?} originPos\n * @param {?} overlayPos\n * @param {?=} offsetX\n * @param {?=} offsetY\n * @return {?}\n */\n function (originPos, overlayPos, offsetX, offsetY) {\n var /** @type {?} */ position = new ConnectionPositionPair(originPos, overlayPos, offsetX, offsetY);\n this._preferredPositions.push(position);\n return this;\n };\n /**\n * Sets the layout direction so the overlay's position can be adjusted to match.\n * @param dir New layout direction.\n */\n /**\n * Sets the layout direction so the overlay's position can be adjusted to match.\n * @param {?} dir New layout direction.\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.withDirection = /**\n * Sets the layout direction so the overlay's position can be adjusted to match.\n * @param {?} dir New layout direction.\n * @return {?}\n */\n function (dir) {\n this._dir = dir;\n return this;\n };\n /**\n * Sets an offset for the overlay's connection point on the x-axis\n * @param offset New offset in the X axis.\n */\n /**\n * Sets an offset for the overlay's connection point on the x-axis\n * @param {?} offset New offset in the X axis.\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.withOffsetX = /**\n * Sets an offset for the overlay's connection point on the x-axis\n * @param {?} offset New offset in the X axis.\n * @return {?}\n */\n function (offset) {\n this._offsetX = offset;\n return this;\n };\n /**\n * Sets an offset for the overlay's connection point on the y-axis\n * @param offset New offset in the Y axis.\n */\n /**\n * Sets an offset for the overlay's connection point on the y-axis\n * @param {?} offset New offset in the Y axis.\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.withOffsetY = /**\n * Sets an offset for the overlay's connection point on the y-axis\n * @param {?} offset New offset in the Y axis.\n * @return {?}\n */\n function (offset) {\n this._offsetY = offset;\n return this;\n };\n /**\n * Sets whether the overlay's position should be locked in after it is positioned\n * initially. When an overlay is locked in, it won't attempt to reposition itself\n * when the position is re-applied (e.g. when the user scrolls away).\n * @param isLocked Whether the overlay should locked in.\n */\n /**\n * Sets whether the overlay's position should be locked in after it is positioned\n * initially. When an overlay is locked in, it won't attempt to reposition itself\n * when the position is re-applied (e.g. when the user scrolls away).\n * @param {?} isLocked Whether the overlay should locked in.\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.withLockedPosition = /**\n * Sets whether the overlay's position should be locked in after it is positioned\n * initially. When an overlay is locked in, it won't attempt to reposition itself\n * when the position is re-applied (e.g. when the user scrolls away).\n * @param {?} isLocked Whether the overlay should locked in.\n * @return {?}\n */\n function (isLocked) {\n this._positionLocked = isLocked;\n return this;\n };\n /**\n * Overwrites the current set of positions with an array of new ones.\n * @param positions Position pairs to be set on the strategy.\n */\n /**\n * Overwrites the current set of positions with an array of new ones.\n * @param {?} positions Position pairs to be set on the strategy.\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.withPositions = /**\n * Overwrites the current set of positions with an array of new ones.\n * @param {?} positions Position pairs to be set on the strategy.\n * @return {?}\n */\n function (positions) {\n this._preferredPositions = positions.slice();\n return this;\n };\n /**\n * Sets the origin element, relative to which to position the overlay.\n * @param origin Reference to the new origin element.\n */\n /**\n * Sets the origin element, relative to which to position the overlay.\n * @param {?} origin Reference to the new origin element.\n * @return {?}\n */\n ConnectedPositionStrategy.prototype.setOrigin = /**\n * Sets the origin element, relative to which to position the overlay.\n * @param {?} origin Reference to the new origin element.\n * @return {?}\n */\n function (origin) {\n this._origin = origin.nativeElement;\n return this;\n };\n /**\n * Gets the horizontal (x) \"start\" dimension based on whether the overlay is in an RTL context.\n * @param {?} rect\n * @return {?}\n */\n ConnectedPositionStrategy.prototype._getStartX = /**\n * Gets the horizontal (x) \"start\" dimension based on whether the overlay is in an RTL context.\n * @param {?} rect\n * @return {?}\n */\n function (rect) {\n return this._isRtl ? rect.right : rect.left;\n };\n /**\n * Gets the horizontal (x) \"end\" dimension based on whether the overlay is in an RTL context.\n * @param {?} rect\n * @return {?}\n */\n ConnectedPositionStrategy.prototype._getEndX = /**\n * Gets the horizontal (x) \"end\" dimension based on whether the overlay is in an RTL context.\n * @param {?} rect\n * @return {?}\n */\n function (rect) {\n return this._isRtl ? rect.left : rect.right;\n };\n /**\n * Gets the (x, y) coordinate of a connection point on the origin based on a relative position.\n * @param {?} originRect\n * @param {?} pos\n * @return {?}\n */\n ConnectedPositionStrategy.prototype._getOriginConnectionPoint = /**\n * Gets the (x, y) coordinate of a connection point on the origin based on a relative position.\n * @param {?} originRect\n * @param {?} pos\n * @return {?}\n */\n function (originRect, pos) {\n var /** @type {?} */ originStartX = this._getStartX(originRect);\n var /** @type {?} */ originEndX = this._getEndX(originRect);\n var /** @type {?} */ x;\n if (pos.originX == 'center') {\n x = originStartX + (originRect.width / 2);\n }\n else {\n x = pos.originX == 'start' ? originStartX : originEndX;\n }\n var /** @type {?} */ y;\n if (pos.originY == 'center') {\n y = originRect.top + (originRect.height / 2);\n }\n else {\n y = pos.originY == 'top' ? originRect.top : originRect.bottom;\n }\n return { x: x, y: y };\n };\n /**\n * Gets the (x, y) coordinate of the top-left corner of the overlay given a given position and\n * origin point to which the overlay should be connected, as well as how much of the element\n * would be inside the viewport at that position.\n * @param {?} originPoint\n * @param {?} overlayRect\n * @param {?} viewportSize\n * @param {?} pos\n * @return {?}\n */\n ConnectedPositionStrategy.prototype._getOverlayPoint = /**\n * Gets the (x, y) coordinate of the top-left corner of the overlay given a given position and\n * origin point to which the overlay should be connected, as well as how much of the element\n * would be inside the viewport at that position.\n * @param {?} originPoint\n * @param {?} overlayRect\n * @param {?} viewportSize\n * @param {?} pos\n * @return {?}\n */\n function (originPoint, overlayRect, viewportSize, pos) {\n // Calculate the (overlayStartX, overlayStartY), the start of the potential overlay position\n // relative to the origin point.\n var /** @type {?} */ overlayStartX;\n if (pos.overlayX == 'center') {\n overlayStartX = -overlayRect.width / 2;\n }\n else if (pos.overlayX === 'start') {\n overlayStartX = this._isRtl ? -overlayRect.width : 0;\n }\n else {\n overlayStartX = this._isRtl ? 0 : -overlayRect.width;\n }\n var /** @type {?} */ overlayStartY;\n if (pos.overlayY == 'center') {\n overlayStartY = -overlayRect.height / 2;\n }\n else {\n overlayStartY = pos.overlayY == 'top' ? 0 : -overlayRect.height;\n }\n // The (x, y) offsets of the overlay based on the current position.\n var /** @type {?} */ offsetX = typeof pos.offsetX === 'undefined' ? this._offsetX : pos.offsetX;\n var /** @type {?} */ offsetY = typeof pos.offsetY === 'undefined' ? this._offsetY : pos.offsetY;\n // The (x, y) coordinates of the overlay.\n var /** @type {?} */ x = originPoint.x + overlayStartX + offsetX;\n var /** @type {?} */ y = originPoint.y + overlayStartY + offsetY;\n // How much the overlay would overflow at this position, on each side.\n var /** @type {?} */ leftOverflow = 0 - x;\n var /** @type {?} */ rightOverflow = (x + overlayRect.width) - viewportSize.width;\n var /** @type {?} */ topOverflow = 0 - y;\n var /** @type {?} */ bottomOverflow = (y + overlayRect.height) - viewportSize.height;\n // Visible parts of the element on each axis.\n var /** @type {?} */ visibleWidth = this._subtractOverflows(overlayRect.width, leftOverflow, rightOverflow);\n var /** @type {?} */ visibleHeight = this._subtractOverflows(overlayRect.height, topOverflow, bottomOverflow);\n // The area of the element that's within the viewport.\n var /** @type {?} */ visibleArea = visibleWidth * visibleHeight;\n var /** @type {?} */ fitsInViewport = (overlayRect.width * overlayRect.height) === visibleArea;\n return { x: x, y: y, fitsInViewport: fitsInViewport, visibleArea: visibleArea };\n };\n /**\n * Gets the view properties of the trigger and overlay, including whether they are clipped\n * or completely outside the view of any of the strategy's scrollables.\n * @param {?} overlay\n * @return {?}\n */\n ConnectedPositionStrategy.prototype._getScrollVisibility = /**\n * Gets the view properties of the trigger and overlay, including whether they are clipped\n * or completely outside the view of any of the strategy's scrollables.\n * @param {?} overlay\n * @return {?}\n */\n function (overlay) {\n var /** @type {?} */ originBounds = this._origin.getBoundingClientRect();\n var /** @type {?} */ overlayBounds = overlay.getBoundingClientRect();\n var /** @type {?} */ scrollContainerBounds = this.scrollables.map(function (s) { return s.getElementRef().nativeElement.getBoundingClientRect(); });\n return {\n isOriginClipped: isElementClippedByScrolling(originBounds, scrollContainerBounds),\n isOriginOutsideView: isElementScrolledOutsideView(originBounds, scrollContainerBounds),\n isOverlayClipped: isElementClippedByScrolling(overlayBounds, scrollContainerBounds),\n isOverlayOutsideView: isElementScrolledOutsideView(overlayBounds, scrollContainerBounds),\n };\n };\n /**\n * Physically positions the overlay element to the given coordinate.\n * @param {?} element\n * @param {?} overlayRect\n * @param {?} overlayPoint\n * @param {?} pos\n * @return {?}\n */\n ConnectedPositionStrategy.prototype._setElementPosition = /**\n * Physically positions the overlay element to the given coordinate.\n * @param {?} element\n * @param {?} overlayRect\n * @param {?} overlayPoint\n * @param {?} pos\n * @return {?}\n */\n function (element, overlayRect, overlayPoint, pos) {\n // We want to set either `top` or `bottom` based on whether the overlay wants to appear above\n // or below the origin and the direction in which the element will expand.\n var /** @type {?} */ verticalStyleProperty = pos.overlayY === 'bottom' ? 'bottom' : 'top';\n // When using `bottom`, we adjust the y position such that it is the distance\n // from the bottom of the viewport rather than the top.\n var /** @type {?} */ y = verticalStyleProperty === 'top' ?\n overlayPoint.y :\n this._document.documentElement.clientHeight - (overlayPoint.y + overlayRect.height);\n // We want to set either `left` or `right` based on whether the overlay wants to appear \"before\"\n // or \"after\" the origin, which determines the direction in which the element will expand.\n // For the horizontal axis, the meaning of \"before\" and \"after\" change based on whether the\n // page is in RTL or LTR.\n var /** @type {?} */ horizontalStyleProperty;\n if (this._dir === 'rtl') {\n horizontalStyleProperty = pos.overlayX === 'end' ? 'left' : 'right';\n }\n else {\n horizontalStyleProperty = pos.overlayX === 'end' ? 'right' : 'left';\n }\n // When we're setting `right`, we adjust the x position such that it is the distance\n // from the right edge of the viewport rather than the left edge.\n var /** @type {?} */ x = horizontalStyleProperty === 'left' ?\n overlayPoint.x :\n this._document.documentElement.clientWidth - (overlayPoint.x + overlayRect.width);\n // Reset any existing styles. This is necessary in case the preferred position has\n // changed since the last `apply`.\n ['top', 'bottom', 'left', 'right'].forEach(function (p) { return element.style[p] = null; });\n element.style[verticalStyleProperty] = y + \"px\";\n element.style[horizontalStyleProperty] = x + \"px\";\n // Notify that the position has been changed along with its change properties.\n var /** @type {?} */ scrollableViewProperties = this._getScrollVisibility(element);\n var /** @type {?} */ positionChange = new ConnectedOverlayPositionChange(pos, scrollableViewProperties);\n this._onPositionChange.next(positionChange);\n };\n /**\n * Subtracts the amount that an element is overflowing on an axis from it's length.\n * @param {?} length\n * @param {...?} overflows\n * @return {?}\n */\n ConnectedPositionStrategy.prototype._subtractOverflows = /**\n * Subtracts the amount that an element is overflowing on an axis from it's length.\n * @param {?} length\n * @param {...?} overflows\n * @return {?}\n */\n function (length) {\n var overflows = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n overflows[_i - 1] = arguments[_i];\n }\n return overflows.reduce(function (currentValue, currentOverflow) {\n return currentValue - Math.max(currentOverflow, 0);\n }, length);\n };\n return ConnectedPositionStrategy;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * A strategy for positioning overlays. Using this strategy, an overlay is given an\n * explicit position relative to the browser's viewport. We use flexbox, instead of\n * transforms, in order to avoid issues with subpixel rendering which can cause the\n * element to become blurry.\n */\nvar GlobalPositionStrategy = /** @class */ (function () {\n function GlobalPositionStrategy(_document) {\n this._document = _document;\n this._cssPosition = 'static';\n this._topOffset = '';\n this._bottomOffset = '';\n this._leftOffset = '';\n this._rightOffset = '';\n this._alignItems = '';\n this._justifyContent = '';\n this._width = '';\n this._height = '';\n /**\n * A lazily-created wrapper for the overlay element that is used as a flex container.\n */\n this._wrapper = null;\n }\n /**\n * @param {?} overlayRef\n * @return {?}\n */\n GlobalPositionStrategy.prototype.attach = /**\n * @param {?} overlayRef\n * @return {?}\n */\n function (overlayRef) {\n var /** @type {?} */ config = overlayRef.getConfig();\n this._overlayRef = overlayRef;\n if (this._width && !config.width) {\n overlayRef.updateSize({ width: this._width });\n }\n if (this._height && !config.height) {\n overlayRef.updateSize({ height: this._height });\n }\n };\n /**\n * Sets the top position of the overlay. Clears any previously set vertical position.\n * @param value New top offset.\n */\n /**\n * Sets the top position of the overlay. Clears any previously set vertical position.\n * @param {?=} value New top offset.\n * @return {?}\n */\n GlobalPositionStrategy.prototype.top = /**\n * Sets the top position of the overlay. Clears any previously set vertical position.\n * @param {?=} value New top offset.\n * @return {?}\n */\n function (value) {\n if (value === void 0) { value = ''; }\n this._bottomOffset = '';\n this._topOffset = value;\n this._alignItems = 'flex-start';\n return this;\n };\n /**\n * Sets the left position of the overlay. Clears any previously set horizontal position.\n * @param value New left offset.\n */\n /**\n * Sets the left position of the overlay. Clears any previously set horizontal position.\n * @param {?=} value New left offset.\n * @return {?}\n */\n GlobalPositionStrategy.prototype.left = /**\n * Sets the left position of the overlay. Clears any previously set horizontal position.\n * @param {?=} value New left offset.\n * @return {?}\n */\n function (value) {\n if (value === void 0) { value = ''; }\n this._rightOffset = '';\n this._leftOffset = value;\n this._justifyContent = 'flex-start';\n return this;\n };\n /**\n * Sets the bottom position of the overlay. Clears any previously set vertical position.\n * @param value New bottom offset.\n */\n /**\n * Sets the bottom position of the overlay. Clears any previously set vertical position.\n * @param {?=} value New bottom offset.\n * @return {?}\n */\n GlobalPositionStrategy.prototype.bottom = /**\n * Sets the bottom position of the overlay. Clears any previously set vertical position.\n * @param {?=} value New bottom offset.\n * @return {?}\n */\n function (value) {\n if (value === void 0) { value = ''; }\n this._topOffset = '';\n this._bottomOffset = value;\n this._alignItems = 'flex-end';\n return this;\n };\n /**\n * Sets the right position of the overlay. Clears any previously set horizontal position.\n * @param value New right offset.\n */\n /**\n * Sets the right position of the overlay. Clears any previously set horizontal position.\n * @param {?=} value New right offset.\n * @return {?}\n */\n GlobalPositionStrategy.prototype.right = /**\n * Sets the right position of the overlay. Clears any previously set horizontal position.\n * @param {?=} value New right offset.\n * @return {?}\n */\n function (value) {\n if (value === void 0) { value = ''; }\n this._leftOffset = '';\n this._rightOffset = value;\n this._justifyContent = 'flex-end';\n return this;\n };\n /**\n * Sets the overlay width and clears any previously set width.\n * @param value New width for the overlay\n * @deprecated Pass the `width` through the `OverlayConfig`.\n * @deletion-target 7.0.0\n */\n /**\n * Sets the overlay width and clears any previously set width.\n * @deprecated Pass the `width` through the `OverlayConfig`.\n * \\@deletion-target 7.0.0\n * @param {?=} value New width for the overlay\n * @return {?}\n */\n GlobalPositionStrategy.prototype.width = /**\n * Sets the overlay width and clears any previously set width.\n * @deprecated Pass the `width` through the `OverlayConfig`.\n * \\@deletion-target 7.0.0\n * @param {?=} value New width for the overlay\n * @return {?}\n */\n function (value) {\n if (value === void 0) { value = ''; }\n if (this._overlayRef) {\n this._overlayRef.updateSize({ width: value });\n }\n else {\n this._width = value;\n }\n return this;\n };\n /**\n * Sets the overlay height and clears any previously set height.\n * @param value New height for the overlay\n * @deprecated Pass the `height` through the `OverlayConfig`.\n * @deletion-target 7.0.0\n */\n /**\n * Sets the overlay height and clears any previously set height.\n * @deprecated Pass the `height` through the `OverlayConfig`.\n * \\@deletion-target 7.0.0\n * @param {?=} value New height for the overlay\n * @return {?}\n */\n GlobalPositionStrategy.prototype.height = /**\n * Sets the overlay height and clears any previously set height.\n * @deprecated Pass the `height` through the `OverlayConfig`.\n * \\@deletion-target 7.0.0\n * @param {?=} value New height for the overlay\n * @return {?}\n */\n function (value) {\n if (value === void 0) { value = ''; }\n if (this._overlayRef) {\n this._overlayRef.updateSize({ height: value });\n }\n else {\n this._height = value;\n }\n return this;\n };\n /**\n * Centers the overlay horizontally with an optional offset.\n * Clears any previously set horizontal position.\n *\n * @param offset Overlay offset from the horizontal center.\n */\n /**\n * Centers the overlay horizontally with an optional offset.\n * Clears any previously set horizontal position.\n *\n * @param {?=} offset Overlay offset from the horizontal center.\n * @return {?}\n */\n GlobalPositionStrategy.prototype.centerHorizontally = /**\n * Centers the overlay horizontally with an optional offset.\n * Clears any previously set horizontal position.\n *\n * @param {?=} offset Overlay offset from the horizontal center.\n * @return {?}\n */\n function (offset) {\n if (offset === void 0) { offset = ''; }\n this.left(offset);\n this._justifyContent = 'center';\n return this;\n };\n /**\n * Centers the overlay vertically with an optional offset.\n * Clears any previously set vertical position.\n *\n * @param offset Overlay offset from the vertical center.\n */\n /**\n * Centers the overlay vertically with an optional offset.\n * Clears any previously set vertical position.\n *\n * @param {?=} offset Overlay offset from the vertical center.\n * @return {?}\n */\n GlobalPositionStrategy.prototype.centerVertically = /**\n * Centers the overlay vertically with an optional offset.\n * Clears any previously set vertical position.\n *\n * @param {?=} offset Overlay offset from the vertical center.\n * @return {?}\n */\n function (offset) {\n if (offset === void 0) { offset = ''; }\n this.top(offset);\n this._alignItems = 'center';\n return this;\n };\n /**\n * Apply the position to the element.\n * @docs-private\n *\n * @returns Resolved when the styles have been applied.\n */\n /**\n * Apply the position to the element.\n * \\@docs-private\n *\n * @return {?} Resolved when the styles have been applied.\n */\n GlobalPositionStrategy.prototype.apply = /**\n * Apply the position to the element.\n * \\@docs-private\n *\n * @return {?} Resolved when the styles have been applied.\n */\n function () {\n // Since the overlay ref applies the strategy asynchronously, it could\n // have been disposed before it ends up being applied. If that is the\n // case, we shouldn't do anything.\n if (!this._overlayRef.hasAttached()) {\n return;\n }\n var /** @type {?} */ element = this._overlayRef.overlayElement;\n if (!this._wrapper && element.parentNode) {\n this._wrapper = this._document.createElement('div'); /** @type {?} */\n ((this._wrapper)).classList.add('cdk-global-overlay-wrapper');\n element.parentNode.insertBefore(/** @type {?} */ ((this._wrapper)), element); /** @type {?} */\n ((this._wrapper)).appendChild(element);\n }\n var /** @type {?} */ styles = element.style;\n var /** @type {?} */ parentStyles = (/** @type {?} */ (element.parentNode)).style;\n var /** @type {?} */ config = this._overlayRef.getConfig();\n styles.position = this._cssPosition;\n styles.marginLeft = config.width === '100%' ? '0' : this._leftOffset;\n styles.marginTop = config.height === '100%' ? '0' : this._topOffset;\n styles.marginBottom = this._bottomOffset;\n styles.marginRight = this._rightOffset;\n parentStyles.justifyContent = config.width === '100%' ? 'flex-start' : this._justifyContent;\n parentStyles.alignItems = config.height === '100%' ? 'flex-start' : this._alignItems;\n };\n /** Removes the wrapper element from the DOM. */\n /**\n * Removes the wrapper element from the DOM.\n * @return {?}\n */\n GlobalPositionStrategy.prototype.dispose = /**\n * Removes the wrapper element from the DOM.\n * @return {?}\n */\n function () {\n if (this._wrapper && this._wrapper.parentNode) {\n this._wrapper.parentNode.removeChild(this._wrapper);\n this._wrapper = null;\n }\n };\n return GlobalPositionStrategy;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Builder for overlay position strategy.\n */\nvar OverlayPositionBuilder = /** @class */ (function () {\n function OverlayPositionBuilder(_viewportRuler, _document) {\n this._viewportRuler = _viewportRuler;\n this._document = _document;\n }\n /**\n * Creates a global position strategy.\n */\n /**\n * Creates a global position strategy.\n * @return {?}\n */\n OverlayPositionBuilder.prototype.global = /**\n * Creates a global position strategy.\n * @return {?}\n */\n function () {\n return new GlobalPositionStrategy(this._document);\n };\n /**\n * Creates a relative position strategy.\n * @param elementRef\n * @param originPos\n * @param overlayPos\n */\n /**\n * Creates a relative position strategy.\n * @param {?} elementRef\n * @param {?} originPos\n * @param {?} overlayPos\n * @return {?}\n */\n OverlayPositionBuilder.prototype.connectedTo = /**\n * Creates a relative position strategy.\n * @param {?} elementRef\n * @param {?} originPos\n * @param {?} overlayPos\n * @return {?}\n */\n function (elementRef, originPos, overlayPos) {\n return new ConnectedPositionStrategy(originPos, overlayPos, elementRef, this._viewportRuler, this._document);\n };\n OverlayPositionBuilder.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n OverlayPositionBuilder.ctorParameters = function () { return [\n { type: ViewportRuler, },\n { type: undefined, decorators: [{ type: Inject, args: [DOCUMENT,] },] },\n ]; };\n return OverlayPositionBuilder;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Service for dispatching keyboard events that land on the body to appropriate overlay ref,\n * if any. It maintains a list of attached overlays to determine best suited overlay based\n * on event target and order of overlay opens.\n */\nvar OverlayKeyboardDispatcher = /** @class */ (function () {\n function OverlayKeyboardDispatcher(_document) {\n this._document = _document;\n /**\n * Currently attached overlays in the order they were attached.\n */\n this._attachedOverlays = [];\n }\n /**\n * @return {?}\n */\n OverlayKeyboardDispatcher.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n this._unsubscribeFromKeydownEvents();\n };\n /** Add a new overlay to the list of attached overlay refs. */\n /**\n * Add a new overlay to the list of attached overlay refs.\n * @param {?} overlayRef\n * @return {?}\n */\n OverlayKeyboardDispatcher.prototype.add = /**\n * Add a new overlay to the list of attached overlay refs.\n * @param {?} overlayRef\n * @return {?}\n */\n function (overlayRef) {\n // Lazily start dispatcher once first overlay is added\n if (!this._keydownEventSubscription) {\n this._subscribeToKeydownEvents();\n }\n this._attachedOverlays.push(overlayRef);\n };\n /** Remove an overlay from the list of attached overlay refs. */\n /**\n * Remove an overlay from the list of attached overlay refs.\n * @param {?} overlayRef\n * @return {?}\n */\n OverlayKeyboardDispatcher.prototype.remove = /**\n * Remove an overlay from the list of attached overlay refs.\n * @param {?} overlayRef\n * @return {?}\n */\n function (overlayRef) {\n var /** @type {?} */ index = this._attachedOverlays.indexOf(overlayRef);\n if (index > -1) {\n this._attachedOverlays.splice(index, 1);\n }\n // Remove the global listener once there are no more overlays.\n if (this._attachedOverlays.length === 0) {\n this._unsubscribeFromKeydownEvents();\n }\n };\n /**\n * Subscribe to keydown events that land on the body and dispatch those\n * events to the appropriate overlay.\n * @return {?}\n */\n OverlayKeyboardDispatcher.prototype._subscribeToKeydownEvents = /**\n * Subscribe to keydown events that land on the body and dispatch those\n * events to the appropriate overlay.\n * @return {?}\n */\n function () {\n var _this = this;\n var /** @type {?} */ bodyKeydownEvents = fromEvent(this._document.body, 'keydown', true);\n this._keydownEventSubscription = bodyKeydownEvents.pipe(filter(function () { return !!_this._attachedOverlays.length; })).subscribe(function (event) {\n // Dispatch keydown event to the correct overlay.\n // Dispatch keydown event to the correct overlay.\n _this._selectOverlayFromEvent(event)._keydownEvents.next(event);\n });\n };\n /**\n * Removes the global keydown subscription.\n * @return {?}\n */\n OverlayKeyboardDispatcher.prototype._unsubscribeFromKeydownEvents = /**\n * Removes the global keydown subscription.\n * @return {?}\n */\n function () {\n if (this._keydownEventSubscription) {\n this._keydownEventSubscription.unsubscribe();\n this._keydownEventSubscription = null;\n }\n };\n /**\n * Select the appropriate overlay from a keydown event.\n * @param {?} event\n * @return {?}\n */\n OverlayKeyboardDispatcher.prototype._selectOverlayFromEvent = /**\n * Select the appropriate overlay from a keydown event.\n * @param {?} event\n * @return {?}\n */\n function (event) {\n // Check if any overlays contain the event\n var /** @type {?} */ targetedOverlay = this._attachedOverlays.find(function (overlay) {\n return overlay.overlayElement === event.target ||\n overlay.overlayElement.contains(/** @type {?} */ (event.target));\n });\n // Use the overlay if it exists, otherwise choose the most recently attached one\n return targetedOverlay || this._attachedOverlays[this._attachedOverlays.length - 1];\n };\n OverlayKeyboardDispatcher.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n OverlayKeyboardDispatcher.ctorParameters = function () { return [\n { type: undefined, decorators: [{ type: Inject, args: [DOCUMENT,] },] },\n ]; };\n return OverlayKeyboardDispatcher;\n}());\n/**\n * \\@docs-private\n * @param {?} dispatcher\n * @param {?} _document\n * @return {?}\n */\nfunction OVERLAY_KEYBOARD_DISPATCHER_PROVIDER_FACTORY(dispatcher, _document) {\n return dispatcher || new OverlayKeyboardDispatcher(_document);\n}\n/**\n * \\@docs-private\n */\nvar OVERLAY_KEYBOARD_DISPATCHER_PROVIDER = {\n // If there is already an OverlayKeyboardDispatcher available, use that.\n // Otherwise, provide a new one.\n provide: OverlayKeyboardDispatcher,\n deps: [\n [new Optional(), new SkipSelf(), OverlayKeyboardDispatcher],\n /** @type {?} */ (\n // Coerce to `InjectionToken` so that the `deps` match the \"shape\"\n // of the type expected by Angular\n DOCUMENT)\n ],\n useFactory: OVERLAY_KEYBOARD_DISPATCHER_PROVIDER_FACTORY\n};\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Container inside which all overlays will render.\n */\nvar OverlayContainer = /** @class */ (function () {\n function OverlayContainer(_document) {\n this._document = _document;\n }\n /**\n * @return {?}\n */\n OverlayContainer.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n if (this._containerElement && this._containerElement.parentNode) {\n this._containerElement.parentNode.removeChild(this._containerElement);\n }\n };\n /**\n * This method returns the overlay container element. It will lazily\n * create the element the first time it is called to facilitate using\n * the container in non-browser environments.\n * @returns the container element\n */\n /**\n * This method returns the overlay container element. It will lazily\n * create the element the first time it is called to facilitate using\n * the container in non-browser environments.\n * @return {?} the container element\n */\n OverlayContainer.prototype.getContainerElement = /**\n * This method returns the overlay container element. It will lazily\n * create the element the first time it is called to facilitate using\n * the container in non-browser environments.\n * @return {?} the container element\n */\n function () {\n if (!this._containerElement) {\n this._createContainer();\n }\n return this._containerElement;\n };\n /**\n * Create the overlay container element, which is simply a div\n * with the 'cdk-overlay-container' class on the document body.\n */\n /**\n * Create the overlay container element, which is simply a div\n * with the 'cdk-overlay-container' class on the document body.\n * @return {?}\n */\n OverlayContainer.prototype._createContainer = /**\n * Create the overlay container element, which is simply a div\n * with the 'cdk-overlay-container' class on the document body.\n * @return {?}\n */\n function () {\n var /** @type {?} */ container = this._document.createElement('div');\n container.classList.add('cdk-overlay-container');\n this._document.body.appendChild(container);\n this._containerElement = container;\n };\n OverlayContainer.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n OverlayContainer.ctorParameters = function () { return [\n { type: undefined, decorators: [{ type: Inject, args: [DOCUMENT,] },] },\n ]; };\n return OverlayContainer;\n}());\n/**\n * \\@docs-private\n * @param {?} parentContainer\n * @param {?} _document\n * @return {?}\n */\nfunction OVERLAY_CONTAINER_PROVIDER_FACTORY(parentContainer, _document) {\n return parentContainer || new OverlayContainer(_document);\n}\n/**\n * \\@docs-private\n */\nvar OVERLAY_CONTAINER_PROVIDER = {\n // If there is already an OverlayContainer available, use that. Otherwise, provide a new one.\n provide: OverlayContainer,\n deps: [\n [new Optional(), new SkipSelf(), OverlayContainer],\n /** @type {?} */ (DOCUMENT // We need to use the InjectionToken somewhere to keep TS happy\n ) // We need to use the InjectionToken somewhere to keep TS happy\n ],\n useFactory: OVERLAY_CONTAINER_PROVIDER_FACTORY\n};\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Next overlay unique ID.\n */\nvar nextUniqueId = 0;\n/**\n * Service to create Overlays. Overlays are dynamically added pieces of floating UI, meant to be\n * used as a low-level building block for other components. Dialogs, tooltips, menus,\n * selects, etc. can all be built using overlays. The service should primarily be used by authors\n * of re-usable components rather than developers building end-user applications.\n *\n * An overlay *is* a PortalOutlet, so any kind of Portal can be loaded into one.\n */\nvar Overlay = /** @class */ (function () {\n function Overlay(scrollStrategies, _overlayContainer, _componentFactoryResolver, _positionBuilder, _keyboardDispatcher, _appRef, _injector, _ngZone, _document) {\n this.scrollStrategies = scrollStrategies;\n this._overlayContainer = _overlayContainer;\n this._componentFactoryResolver = _componentFactoryResolver;\n this._positionBuilder = _positionBuilder;\n this._keyboardDispatcher = _keyboardDispatcher;\n this._appRef = _appRef;\n this._injector = _injector;\n this._ngZone = _ngZone;\n this._document = _document;\n }\n /**\n * Creates an overlay.\n * @param config Configuration applied to the overlay.\n * @returns Reference to the created overlay.\n */\n /**\n * Creates an overlay.\n * @param {?=} config Configuration applied to the overlay.\n * @return {?} Reference to the created overlay.\n */\n Overlay.prototype.create = /**\n * Creates an overlay.\n * @param {?=} config Configuration applied to the overlay.\n * @return {?} Reference to the created overlay.\n */\n function (config) {\n var /** @type {?} */ pane = this._createPaneElement();\n var /** @type {?} */ portalOutlet = this._createPortalOutlet(pane);\n return new OverlayRef(portalOutlet, pane, new OverlayConfig(config), this._ngZone, this._keyboardDispatcher, this._document);\n };\n /**\n * Gets a position builder that can be used, via fluent API,\n * to construct and configure a position strategy.\n * @returns An overlay position builder.\n */\n /**\n * Gets a position builder that can be used, via fluent API,\n * to construct and configure a position strategy.\n * @return {?} An overlay position builder.\n */\n Overlay.prototype.position = /**\n * Gets a position builder that can be used, via fluent API,\n * to construct and configure a position strategy.\n * @return {?} An overlay position builder.\n */\n function () {\n return this._positionBuilder;\n };\n /**\n * Creates the DOM element for an overlay and appends it to the overlay container.\n * @return {?} Newly-created pane element\n */\n Overlay.prototype._createPaneElement = /**\n * Creates the DOM element for an overlay and appends it to the overlay container.\n * @return {?} Newly-created pane element\n */\n function () {\n var /** @type {?} */ pane = this._document.createElement('div');\n pane.id = \"cdk-overlay-\" + nextUniqueId++;\n pane.classList.add('cdk-overlay-pane');\n this._overlayContainer.getContainerElement().appendChild(pane);\n return pane;\n };\n /**\n * Create a DomPortalOutlet into which the overlay content can be loaded.\n * @param {?} pane The DOM element to turn into a portal outlet.\n * @return {?} A portal outlet for the given DOM element.\n */\n Overlay.prototype._createPortalOutlet = /**\n * Create a DomPortalOutlet into which the overlay content can be loaded.\n * @param {?} pane The DOM element to turn into a portal outlet.\n * @return {?} A portal outlet for the given DOM element.\n */\n function (pane) {\n return new DomPortalOutlet(pane, this._componentFactoryResolver, this._appRef, this._injector);\n };\n Overlay.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n Overlay.ctorParameters = function () { return [\n { type: ScrollStrategyOptions, },\n { type: OverlayContainer, },\n { type: ComponentFactoryResolver, },\n { type: OverlayPositionBuilder, },\n { type: OverlayKeyboardDispatcher, },\n { type: ApplicationRef, },\n { type: Injector, },\n { type: NgZone, },\n { type: undefined, decorators: [{ type: Inject, args: [DOCUMENT,] },] },\n ]; };\n return Overlay;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Default set of positions for the overlay. Follows the behavior of a dropdown.\n */\nvar defaultPositionList = [\n new ConnectionPositionPair({ originX: 'start', originY: 'bottom' }, { overlayX: 'start', overlayY: 'top' }),\n new ConnectionPositionPair({ originX: 'start', originY: 'top' }, { overlayX: 'start', overlayY: 'bottom' }),\n new ConnectionPositionPair({ originX: 'end', originY: 'top' }, { overlayX: 'end', overlayY: 'bottom' }),\n new ConnectionPositionPair({ originX: 'end', originY: 'bottom' }, { overlayX: 'end', overlayY: 'top' }),\n];\n/**\n * Injection token that determines the scroll handling while the connected overlay is open.\n */\nvar CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY = new InjectionToken('cdk-connected-overlay-scroll-strategy');\n/**\n * \\@docs-private\n * @param {?} overlay\n * @return {?}\n */\nfunction CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER_FACTORY(overlay) {\n return function () { return overlay.scrollStrategies.reposition(); };\n}\n/**\n * \\@docs-private\n */\nvar CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER = {\n provide: CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY,\n deps: [Overlay],\n useFactory: CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER_FACTORY,\n};\n/**\n * Directive applied to an element to make it usable as an origin for an Overlay using a\n * ConnectedPositionStrategy.\n */\nvar CdkOverlayOrigin = /** @class */ (function () {\n function CdkOverlayOrigin(elementRef) {\n this.elementRef = elementRef;\n }\n CdkOverlayOrigin.decorators = [\n { type: Directive, args: [{\n selector: '[cdk-overlay-origin], [overlay-origin], [cdkOverlayOrigin]',\n exportAs: 'cdkOverlayOrigin',\n },] },\n ];\n /** @nocollapse */\n CdkOverlayOrigin.ctorParameters = function () { return [\n { type: ElementRef, },\n ]; };\n return CdkOverlayOrigin;\n}());\n/**\n * Directive to facilitate declarative creation of an Overlay using a ConnectedPositionStrategy.\n */\nvar CdkConnectedOverlay = /** @class */ (function () {\n // TODO(jelbourn): inputs for size, scroll behavior, animation, etc.\n function CdkConnectedOverlay(_overlay, templateRef, viewContainerRef, _scrollStrategy, _dir) {\n this._overlay = _overlay;\n this._scrollStrategy = _scrollStrategy;\n this._dir = _dir;\n this._hasBackdrop = false;\n this._lockPosition = false;\n this._backdropSubscription = Subscription.EMPTY;\n this._offsetX = 0;\n this._offsetY = 0;\n /**\n * Strategy to be used when handling scroll events while the overlay is open.\n */\n this.scrollStrategy = this._scrollStrategy();\n /**\n * Whether the overlay is open.\n */\n this.open = false;\n /**\n * Event emitted when the backdrop is clicked.\n */\n this.backdropClick = new EventEmitter();\n /**\n * Event emitted when the position has changed.\n */\n this.positionChange = new EventEmitter();\n /**\n * Event emitted when the overlay has been attached.\n */\n this.attach = new EventEmitter();\n /**\n * Event emitted when the overlay has been detached.\n */\n this.detach = new EventEmitter();\n this._templatePortal = new TemplatePortal(templateRef, viewContainerRef);\n }\n Object.defineProperty(CdkConnectedOverlay.prototype, \"offsetX\", {\n get: /**\n * The offset in pixels for the overlay connection point on the x-axis\n * @return {?}\n */\n function () { return this._offsetX; },\n set: /**\n * @param {?} offsetX\n * @return {?}\n */\n function (offsetX) {\n this._offsetX = offsetX;\n if (this._position) {\n this._position.withOffsetX(offsetX);\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"offsetY\", {\n get: /**\n * The offset in pixels for the overlay connection point on the y-axis\n * @return {?}\n */\n function () { return this._offsetY; },\n set: /**\n * @param {?} offsetY\n * @return {?}\n */\n function (offsetY) {\n this._offsetY = offsetY;\n if (this._position) {\n this._position.withOffsetY(offsetY);\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"hasBackdrop\", {\n get: /**\n * Whether or not the overlay should attach a backdrop.\n * @return {?}\n */\n function () { return this._hasBackdrop; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) { this._hasBackdrop = coerceBooleanProperty(value); },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"lockPosition\", {\n get: /**\n * Whether or not the overlay should be locked when scrolling.\n * @return {?}\n */\n function () { return this._lockPosition; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) { this._lockPosition = coerceBooleanProperty(value); },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedOrigin\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.origin; },\n set: /**\n * @param {?} _origin\n * @return {?}\n */\n function (_origin) { this.origin = _origin; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedPositions\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.positions; },\n set: /**\n * @param {?} _positions\n * @return {?}\n */\n function (_positions) { this.positions = _positions; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedOffsetX\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.offsetX; },\n set: /**\n * @param {?} _offsetX\n * @return {?}\n */\n function (_offsetX) { this.offsetX = _offsetX; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedOffsetY\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.offsetY; },\n set: /**\n * @param {?} _offsetY\n * @return {?}\n */\n function (_offsetY) { this.offsetY = _offsetY; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedWidth\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.width; },\n set: /**\n * @param {?} _width\n * @return {?}\n */\n function (_width) { this.width = _width; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedHeight\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.height; },\n set: /**\n * @param {?} _height\n * @return {?}\n */\n function (_height) { this.height = _height; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedMinWidth\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.minWidth; },\n set: /**\n * @param {?} _minWidth\n * @return {?}\n */\n function (_minWidth) { this.minWidth = _minWidth; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedMinHeight\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.minHeight; },\n set: /**\n * @param {?} _minHeight\n * @return {?}\n */\n function (_minHeight) { this.minHeight = _minHeight; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedBackdropClass\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.backdropClass; },\n set: /**\n * @param {?} _backdropClass\n * @return {?}\n */\n function (_backdropClass) { this.backdropClass = _backdropClass; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedScrollStrategy\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.scrollStrategy; },\n set: /**\n * @param {?} _scrollStrategy\n * @return {?}\n */\n function (_scrollStrategy) {\n this.scrollStrategy = _scrollStrategy;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedOpen\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.open; },\n set: /**\n * @param {?} _open\n * @return {?}\n */\n function (_open) { this.open = _open; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"_deprecatedHasBackdrop\", {\n get: /**\n * @deprecated\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.hasBackdrop; },\n set: /**\n * @param {?} _hasBackdrop\n * @return {?}\n */\n function (_hasBackdrop) { this.hasBackdrop = _hasBackdrop; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"overlayRef\", {\n /** The associated overlay reference. */\n get: /**\n * The associated overlay reference.\n * @return {?}\n */\n function () {\n return this._overlayRef;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CdkConnectedOverlay.prototype, \"dir\", {\n /** The element's layout direction. */\n get: /**\n * The element's layout direction.\n * @return {?}\n */\n function () {\n return this._dir ? this._dir.value : 'ltr';\n },\n enumerable: true,\n configurable: true\n });\n /**\n * @return {?}\n */\n CdkConnectedOverlay.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n this._destroyOverlay();\n };\n /**\n * @param {?} changes\n * @return {?}\n */\n CdkConnectedOverlay.prototype.ngOnChanges = /**\n * @param {?} changes\n * @return {?}\n */\n function (changes) {\n if (this._position) {\n if (changes['positions'] || changes['_deprecatedPositions']) {\n this._position.withPositions(this.positions);\n }\n if (changes['lockPosition']) {\n this._position.withLockedPosition(this.lockPosition);\n }\n if (changes['origin'] || changes['_deprecatedOrigin']) {\n this._position.setOrigin(this.origin.elementRef);\n if (this.open) {\n this._position.apply();\n }\n }\n }\n if (changes['open'] || changes['_deprecatedOpen']) {\n this.open ? this._attachOverlay() : this._detachOverlay();\n }\n };\n /**\n * Creates an overlay\n * @return {?}\n */\n CdkConnectedOverlay.prototype._createOverlay = /**\n * Creates an overlay\n * @return {?}\n */\n function () {\n if (!this.positions || !this.positions.length) {\n this.positions = defaultPositionList;\n }\n this._overlayRef = this._overlay.create(this._buildConfig());\n };\n /**\n * Builds the overlay config based on the directive's inputs\n * @return {?}\n */\n CdkConnectedOverlay.prototype._buildConfig = /**\n * Builds the overlay config based on the directive's inputs\n * @return {?}\n */\n function () {\n var /** @type {?} */ positionStrategy = this._position = this._createPositionStrategy();\n var /** @type {?} */ overlayConfig = new OverlayConfig({\n positionStrategy: positionStrategy,\n scrollStrategy: this.scrollStrategy,\n hasBackdrop: this.hasBackdrop\n });\n if (this.width || this.width === 0) {\n overlayConfig.width = this.width;\n }\n if (this.height || this.height === 0) {\n overlayConfig.height = this.height;\n }\n if (this.minWidth || this.minWidth === 0) {\n overlayConfig.minWidth = this.minWidth;\n }\n if (this.minHeight || this.minHeight === 0) {\n overlayConfig.minHeight = this.minHeight;\n }\n if (this.backdropClass) {\n overlayConfig.backdropClass = this.backdropClass;\n }\n return overlayConfig;\n };\n /**\n * Returns the position strategy of the overlay to be set on the overlay config\n * @return {?}\n */\n CdkConnectedOverlay.prototype._createPositionStrategy = /**\n * Returns the position strategy of the overlay to be set on the overlay config\n * @return {?}\n */\n function () {\n var _this = this;\n var /** @type {?} */ primaryPosition = this.positions[0];\n var /** @type {?} */ originPoint = { originX: primaryPosition.originX, originY: primaryPosition.originY };\n var /** @type {?} */ overlayPoint = { overlayX: primaryPosition.overlayX, overlayY: primaryPosition.overlayY };\n var /** @type {?} */ strategy = this._overlay.position()\n .connectedTo(this.origin.elementRef, originPoint, overlayPoint)\n .withOffsetX(this.offsetX)\n .withOffsetY(this.offsetY)\n .withLockedPosition(this.lockPosition);\n for (var /** @type {?} */ i = 1; i < this.positions.length; i++) {\n strategy.withFallbackPosition({ originX: this.positions[i].originX, originY: this.positions[i].originY }, { overlayX: this.positions[i].overlayX, overlayY: this.positions[i].overlayY });\n }\n strategy.onPositionChange.subscribe(function (pos) { return _this.positionChange.emit(pos); });\n return strategy;\n };\n /**\n * Attaches the overlay and subscribes to backdrop clicks if backdrop exists\n * @return {?}\n */\n CdkConnectedOverlay.prototype._attachOverlay = /**\n * Attaches the overlay and subscribes to backdrop clicks if backdrop exists\n * @return {?}\n */\n function () {\n var _this = this;\n if (!this._overlayRef) {\n this._createOverlay(); /** @type {?} */\n ((this._overlayRef)).keydownEvents().subscribe(function (event) {\n if (event.keyCode === ESCAPE) {\n _this._detachOverlay();\n }\n });\n }\n else {\n // Update the overlay size, in case the directive's inputs have changed\n this._overlayRef.updateSize({\n width: this.width,\n minWidth: this.minWidth,\n height: this.height,\n minHeight: this.minHeight,\n });\n }\n this._position.withDirection(this.dir);\n this._overlayRef.setDirection(this.dir);\n if (!this._overlayRef.hasAttached()) {\n this._overlayRef.attach(this._templatePortal);\n this.attach.emit();\n }\n if (this.hasBackdrop) {\n this._backdropSubscription = this._overlayRef.backdropClick().subscribe(function (event) {\n _this.backdropClick.emit(event);\n });\n }\n };\n /**\n * Detaches the overlay and unsubscribes to backdrop clicks if backdrop exists\n * @return {?}\n */\n CdkConnectedOverlay.prototype._detachOverlay = /**\n * Detaches the overlay and unsubscribes to backdrop clicks if backdrop exists\n * @return {?}\n */\n function () {\n if (this._overlayRef) {\n this._overlayRef.detach();\n this.detach.emit();\n }\n this._backdropSubscription.unsubscribe();\n };\n /**\n * Destroys the overlay created by this directive.\n * @return {?}\n */\n CdkConnectedOverlay.prototype._destroyOverlay = /**\n * Destroys the overlay created by this directive.\n * @return {?}\n */\n function () {\n if (this._overlayRef) {\n this._overlayRef.dispose();\n }\n this._backdropSubscription.unsubscribe();\n };\n CdkConnectedOverlay.decorators = [\n { type: Directive, args: [{\n selector: '[cdk-connected-overlay], [connected-overlay], [cdkConnectedOverlay]',\n exportAs: 'cdkConnectedOverlay'\n },] },\n ];\n /** @nocollapse */\n CdkConnectedOverlay.ctorParameters = function () { return [\n { type: Overlay, },\n { type: TemplateRef, },\n { type: ViewContainerRef, },\n { type: undefined, decorators: [{ type: Inject, args: [CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY,] },] },\n { type: Directionality, decorators: [{ type: Optional },] },\n ]; };\n CdkConnectedOverlay.propDecorators = {\n \"origin\": [{ type: Input, args: ['cdkConnectedOverlayOrigin',] },],\n \"positions\": [{ type: Input, args: ['cdkConnectedOverlayPositions',] },],\n \"offsetX\": [{ type: Input, args: ['cdkConnectedOverlayOffsetX',] },],\n \"offsetY\": [{ type: Input, args: ['cdkConnectedOverlayOffsetY',] },],\n \"width\": [{ type: Input, args: ['cdkConnectedOverlayWidth',] },],\n \"height\": [{ type: Input, args: ['cdkConnectedOverlayHeight',] },],\n \"minWidth\": [{ type: Input, args: ['cdkConnectedOverlayMinWidth',] },],\n \"minHeight\": [{ type: Input, args: ['cdkConnectedOverlayMinHeight',] },],\n \"backdropClass\": [{ type: Input, args: ['cdkConnectedOverlayBackdropClass',] },],\n \"scrollStrategy\": [{ type: Input, args: ['cdkConnectedOverlayScrollStrategy',] },],\n \"open\": [{ type: Input, args: ['cdkConnectedOverlayOpen',] },],\n \"hasBackdrop\": [{ type: Input, args: ['cdkConnectedOverlayHasBackdrop',] },],\n \"lockPosition\": [{ type: Input, args: ['cdkConnectedOverlayLockPosition',] },],\n \"_deprecatedOrigin\": [{ type: Input, args: ['origin',] },],\n \"_deprecatedPositions\": [{ type: Input, args: ['positions',] },],\n \"_deprecatedOffsetX\": [{ type: Input, args: ['offsetX',] },],\n \"_deprecatedOffsetY\": [{ type: Input, args: ['offsetY',] },],\n \"_deprecatedWidth\": [{ type: Input, args: ['width',] },],\n \"_deprecatedHeight\": [{ type: Input, args: ['height',] },],\n \"_deprecatedMinWidth\": [{ type: Input, args: ['minWidth',] },],\n \"_deprecatedMinHeight\": [{ type: Input, args: ['minHeight',] },],\n \"_deprecatedBackdropClass\": [{ type: Input, args: ['backdropClass',] },],\n \"_deprecatedScrollStrategy\": [{ type: Input, args: ['scrollStrategy',] },],\n \"_deprecatedOpen\": [{ type: Input, args: ['open',] },],\n \"_deprecatedHasBackdrop\": [{ type: Input, args: ['hasBackdrop',] },],\n \"backdropClick\": [{ type: Output },],\n \"positionChange\": [{ type: Output },],\n \"attach\": [{ type: Output },],\n \"detach\": [{ type: Output },],\n };\n return CdkConnectedOverlay;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\nvar OVERLAY_PROVIDERS = [\n Overlay,\n OverlayPositionBuilder,\n OVERLAY_KEYBOARD_DISPATCHER_PROVIDER,\n VIEWPORT_RULER_PROVIDER,\n OVERLAY_CONTAINER_PROVIDER,\n CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER,\n];\nvar OverlayModule = /** @class */ (function () {\n function OverlayModule() {\n }\n OverlayModule.decorators = [\n { type: NgModule, args: [{\n imports: [BidiModule, PortalModule, ScrollDispatchModule],\n exports: [CdkConnectedOverlay, CdkOverlayOrigin, ScrollDispatchModule],\n declarations: [CdkConnectedOverlay, CdkOverlayOrigin],\n providers: [OVERLAY_PROVIDERS, ScrollStrategyOptions],\n },] },\n ];\n /** @nocollapse */\n OverlayModule.ctorParameters = function () { return []; };\n return OverlayModule;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Alternative to OverlayContainer that supports correct displaying of overlay elements in\n * Fullscreen mode\n * https://developer.mozilla.org/en-US/docs/Web/API/Element/requestFullScreen\n *\n * Should be provided in the root component.\n */\nvar FullscreenOverlayContainer = /** @class */ (function (_super) {\n __extends(FullscreenOverlayContainer, _super);\n function FullscreenOverlayContainer() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n /**\n * @return {?}\n */\n FullscreenOverlayContainer.prototype._createContainer = /**\n * @return {?}\n */\n function () {\n var _this = this;\n _super.prototype._createContainer.call(this);\n this._adjustParentForFullscreenChange();\n this._addFullscreenChangeListener(function () { return _this._adjustParentForFullscreenChange(); });\n };\n /**\n * @return {?}\n */\n FullscreenOverlayContainer.prototype._adjustParentForFullscreenChange = /**\n * @return {?}\n */\n function () {\n if (!this._containerElement) {\n return;\n }\n var /** @type {?} */ fullscreenElement = this.getFullscreenElement();\n var /** @type {?} */ parent = fullscreenElement || document.body;\n parent.appendChild(this._containerElement);\n };\n /**\n * @param {?} fn\n * @return {?}\n */\n FullscreenOverlayContainer.prototype._addFullscreenChangeListener = /**\n * @param {?} fn\n * @return {?}\n */\n function (fn) {\n if (document.fullscreenEnabled) {\n document.addEventListener('fullscreenchange', fn);\n }\n else if (document.webkitFullscreenEnabled) {\n document.addEventListener('webkitfullscreenchange', fn);\n }\n else if ((/** @type {?} */ (document)).mozFullScreenEnabled) {\n document.addEventListener('mozfullscreenchange', fn);\n }\n else if ((/** @type {?} */ (document)).msFullscreenEnabled) {\n document.addEventListener('MSFullscreenChange', fn);\n }\n };\n /**\n * When the page is put into fullscreen mode, a specific element is specified.\n * Only that element and its children are visible when in fullscreen mode.\n */\n /**\n * When the page is put into fullscreen mode, a specific element is specified.\n * Only that element and its children are visible when in fullscreen mode.\n * @return {?}\n */\n FullscreenOverlayContainer.prototype.getFullscreenElement = /**\n * When the page is put into fullscreen mode, a specific element is specified.\n * Only that element and its children are visible when in fullscreen mode.\n * @return {?}\n */\n function () {\n return document.fullscreenElement ||\n document.webkitFullscreenElement ||\n (/** @type {?} */ (document)).mozFullScreenElement ||\n (/** @type {?} */ (document)).msFullscreenElement ||\n null;\n };\n FullscreenOverlayContainer.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n FullscreenOverlayContainer.ctorParameters = function () { return []; };\n return FullscreenOverlayContainer;\n}(OverlayContainer));\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { Overlay, OverlayContainer, CdkOverlayOrigin, CdkConnectedOverlay, FullscreenOverlayContainer, OverlayRef, ViewportRuler, OverlayKeyboardDispatcher, OverlayPositionBuilder, GlobalPositionStrategy, ConnectedPositionStrategy, VIEWPORT_RULER_PROVIDER, CdkConnectedOverlay as ConnectedOverlayDirective, CdkOverlayOrigin as OverlayOrigin, OverlayConfig, ConnectionPositionPair, ScrollingVisibility, ConnectedOverlayPositionChange, CdkScrollable, ScrollDispatcher, ScrollStrategyOptions, RepositionScrollStrategy, CloseScrollStrategy, NoopScrollStrategy, BlockScrollStrategy, OVERLAY_PROVIDERS, OverlayModule, OVERLAY_KEYBOARD_DISPATCHER_PROVIDER as ɵg, OVERLAY_KEYBOARD_DISPATCHER_PROVIDER_FACTORY as ɵf, OVERLAY_CONTAINER_PROVIDER as ɵb, OVERLAY_CONTAINER_PROVIDER_FACTORY as ɵa, CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY as ɵc, CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER as ɵe, CDK_CONNECTED_OVERLAY_SCROLL_STRATEGY_PROVIDER_FACTORY as ɵd };\n//# sourceMappingURL=overlay.es5.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/@angular/cdk/esm5/overlay.es5.js\n// module id = 94\n// module chunks = 1","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { Subject } from 'rxjs/Subject';\nimport { Injectable, Optional, SkipSelf } from '@angular/core';\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @abstract\n * @template T\n */\nvar DataSource = /** @class */ (function () {\n function DataSource() {\n }\n return DataSource;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Class to be used to power selecting one or more options from a list.\n * @template T\n */\nvar SelectionModel = /** @class */ (function () {\n function SelectionModel(_multiple, initiallySelectedValues, _emitChanges) {\n if (_multiple === void 0) { _multiple = false; }\n if (_emitChanges === void 0) { _emitChanges = true; }\n var _this = this;\n this._multiple = _multiple;\n this._emitChanges = _emitChanges;\n /**\n * Currently-selected values.\n */\n this._selection = new Set();\n /**\n * Keeps track of the deselected options that haven't been emitted by the change event.\n */\n this._deselectedToEmit = [];\n /**\n * Keeps track of the selected options that haven't been emitted by the change event.\n */\n this._selectedToEmit = [];\n /**\n * Event emitted when the value has changed.\n */\n this.onChange = this._emitChanges ? new Subject() : null;\n if (initiallySelectedValues && initiallySelectedValues.length) {\n if (_multiple) {\n initiallySelectedValues.forEach(function (value) { return _this._markSelected(value); });\n }\n else {\n this._markSelected(initiallySelectedValues[0]);\n }\n // Clear the array in order to avoid firing the change event for preselected values.\n this._selectedToEmit.length = 0;\n }\n }\n Object.defineProperty(SelectionModel.prototype, \"selected\", {\n /** Selected values. */\n get: /**\n * Selected values.\n * @return {?}\n */\n function () {\n if (!this._selected) {\n this._selected = Array.from(this._selection.values());\n }\n return this._selected;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Selects a value or an array of values.\n */\n /**\n * Selects a value or an array of values.\n * @param {...?} values\n * @return {?}\n */\n SelectionModel.prototype.select = /**\n * Selects a value or an array of values.\n * @param {...?} values\n * @return {?}\n */\n function () {\n var _this = this;\n var values = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n values[_i] = arguments[_i];\n }\n this._verifyValueAssignment(values);\n values.forEach(function (value) { return _this._markSelected(value); });\n this._emitChangeEvent();\n };\n /**\n * Deselects a value or an array of values.\n */\n /**\n * Deselects a value or an array of values.\n * @param {...?} values\n * @return {?}\n */\n SelectionModel.prototype.deselect = /**\n * Deselects a value or an array of values.\n * @param {...?} values\n * @return {?}\n */\n function () {\n var _this = this;\n var values = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n values[_i] = arguments[_i];\n }\n this._verifyValueAssignment(values);\n values.forEach(function (value) { return _this._unmarkSelected(value); });\n this._emitChangeEvent();\n };\n /**\n * Toggles a value between selected and deselected.\n */\n /**\n * Toggles a value between selected and deselected.\n * @param {?} value\n * @return {?}\n */\n SelectionModel.prototype.toggle = /**\n * Toggles a value between selected and deselected.\n * @param {?} value\n * @return {?}\n */\n function (value) {\n this.isSelected(value) ? this.deselect(value) : this.select(value);\n };\n /**\n * Clears all of the selected values.\n */\n /**\n * Clears all of the selected values.\n * @return {?}\n */\n SelectionModel.prototype.clear = /**\n * Clears all of the selected values.\n * @return {?}\n */\n function () {\n this._unmarkAll();\n this._emitChangeEvent();\n };\n /**\n * Determines whether a value is selected.\n */\n /**\n * Determines whether a value is selected.\n * @param {?} value\n * @return {?}\n */\n SelectionModel.prototype.isSelected = /**\n * Determines whether a value is selected.\n * @param {?} value\n * @return {?}\n */\n function (value) {\n return this._selection.has(value);\n };\n /**\n * Determines whether the model does not have a value.\n */\n /**\n * Determines whether the model does not have a value.\n * @return {?}\n */\n SelectionModel.prototype.isEmpty = /**\n * Determines whether the model does not have a value.\n * @return {?}\n */\n function () {\n return this._selection.size === 0;\n };\n /**\n * Determines whether the model has a value.\n */\n /**\n * Determines whether the model has a value.\n * @return {?}\n */\n SelectionModel.prototype.hasValue = /**\n * Determines whether the model has a value.\n * @return {?}\n */\n function () {\n return !this.isEmpty();\n };\n /**\n * Sorts the selected values based on a predicate function.\n */\n /**\n * Sorts the selected values based on a predicate function.\n * @param {?=} predicate\n * @return {?}\n */\n SelectionModel.prototype.sort = /**\n * Sorts the selected values based on a predicate function.\n * @param {?=} predicate\n * @return {?}\n */\n function (predicate) {\n if (this._multiple && this._selected) {\n this._selected.sort(predicate);\n }\n };\n /**\n * Emits a change event and clears the records of selected and deselected values.\n * @return {?}\n */\n SelectionModel.prototype._emitChangeEvent = /**\n * Emits a change event and clears the records of selected and deselected values.\n * @return {?}\n */\n function () {\n // Clear the selected values so they can be re-cached.\n this._selected = null;\n if (this._selectedToEmit.length || this._deselectedToEmit.length) {\n if (this.onChange) {\n this.onChange.next({\n source: this,\n added: this._selectedToEmit,\n removed: this._deselectedToEmit\n });\n }\n this._deselectedToEmit = [];\n this._selectedToEmit = [];\n }\n };\n /**\n * Selects a value.\n * @param {?} value\n * @return {?}\n */\n SelectionModel.prototype._markSelected = /**\n * Selects a value.\n * @param {?} value\n * @return {?}\n */\n function (value) {\n if (!this.isSelected(value)) {\n if (!this._multiple) {\n this._unmarkAll();\n }\n this._selection.add(value);\n if (this._emitChanges) {\n this._selectedToEmit.push(value);\n }\n }\n };\n /**\n * Deselects a value.\n * @param {?} value\n * @return {?}\n */\n SelectionModel.prototype._unmarkSelected = /**\n * Deselects a value.\n * @param {?} value\n * @return {?}\n */\n function (value) {\n if (this.isSelected(value)) {\n this._selection.delete(value);\n if (this._emitChanges) {\n this._deselectedToEmit.push(value);\n }\n }\n };\n /**\n * Clears out the selected values.\n * @return {?}\n */\n SelectionModel.prototype._unmarkAll = /**\n * Clears out the selected values.\n * @return {?}\n */\n function () {\n var _this = this;\n if (!this.isEmpty()) {\n this._selection.forEach(function (value) { return _this._unmarkSelected(value); });\n }\n };\n /**\n * Verifies the value assignment and throws an error if the specified value array is\n * including multiple values while the selection model is not supporting multiple values.\n * @param {?} values\n * @return {?}\n */\n SelectionModel.prototype._verifyValueAssignment = /**\n * Verifies the value assignment and throws an error if the specified value array is\n * including multiple values while the selection model is not supporting multiple values.\n * @param {?} values\n * @return {?}\n */\n function (values) {\n if (values.length > 1 && !this._multiple) {\n throw getMultipleValuesInSingleSelectionError();\n }\n };\n return SelectionModel;\n}());\n/**\n * Event emitted when the value of a MatSelectionModel has changed.\n * \\@docs-private\n * @record\n * @template T\n */\n\n/**\n * Returns an error that reports that multiple values are passed into a selection model\n * with a single value.\n * @return {?}\n */\nfunction getMultipleValuesInSingleSelectionError() {\n return Error('Cannot pass multiple values into SelectionModel with single-value mode.');\n}\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Class to coordinate unique selection based on name.\n * Intended to be consumed as an Angular service.\n * This service is needed because native radio change events are only fired on the item currently\n * being selected, and we still need to uncheck the previous selection.\n *\n * This service does not *store* any IDs and names because they may change at any time, so it is\n * less error-prone if they are simply passed through when the events occur.\n */\nvar UniqueSelectionDispatcher = /** @class */ (function () {\n function UniqueSelectionDispatcher() {\n this._listeners = [];\n }\n /**\n * Notify other items that selection for the given name has been set.\n * @param id ID of the item.\n * @param name Name of the item.\n */\n /**\n * Notify other items that selection for the given name has been set.\n * @param {?} id ID of the item.\n * @param {?} name Name of the item.\n * @return {?}\n */\n UniqueSelectionDispatcher.prototype.notify = /**\n * Notify other items that selection for the given name has been set.\n * @param {?} id ID of the item.\n * @param {?} name Name of the item.\n * @return {?}\n */\n function (id, name) {\n for (var _i = 0, _a = this._listeners; _i < _a.length; _i++) {\n var listener = _a[_i];\n listener(id, name);\n }\n };\n /**\n * Listen for future changes to item selection.\n * @return Function used to deregister listener\n */\n /**\n * Listen for future changes to item selection.\n * @param {?} listener\n * @return {?} Function used to deregister listener\n */\n UniqueSelectionDispatcher.prototype.listen = /**\n * Listen for future changes to item selection.\n * @param {?} listener\n * @return {?} Function used to deregister listener\n */\n function (listener) {\n var _this = this;\n this._listeners.push(listener);\n return function () {\n _this._listeners = _this._listeners.filter(function (registered) {\n return listener !== registered;\n });\n };\n };\n /**\n * @return {?}\n */\n UniqueSelectionDispatcher.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n this._listeners = [];\n };\n UniqueSelectionDispatcher.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n UniqueSelectionDispatcher.ctorParameters = function () { return []; };\n return UniqueSelectionDispatcher;\n}());\n/**\n * \\@docs-private\n * @param {?} parentDispatcher\n * @return {?}\n */\nfunction UNIQUE_SELECTION_DISPATCHER_PROVIDER_FACTORY(parentDispatcher) {\n return parentDispatcher || new UniqueSelectionDispatcher();\n}\n/**\n * \\@docs-private\n */\nvar UNIQUE_SELECTION_DISPATCHER_PROVIDER = {\n // If there is already a dispatcher available, use that. Otherwise, provide a new one.\n provide: UniqueSelectionDispatcher,\n deps: [[new Optional(), new SkipSelf(), UniqueSelectionDispatcher]],\n useFactory: UNIQUE_SELECTION_DISPATCHER_PROVIDER_FACTORY\n};\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { UniqueSelectionDispatcher, UNIQUE_SELECTION_DISPATCHER_PROVIDER, DataSource, SelectionModel, getMultipleValuesInSingleSelectionError, UNIQUE_SELECTION_DISPATCHER_PROVIDER_FACTORY as ɵa };\n//# sourceMappingURL=collections.es5.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/@angular/cdk/esm5/collections.es5.js\n// module id = 95\n// module chunks = 1","export { positionElements, Positioning } from './ng-positioning';\nexport { PositioningService } from './positioning.service';\n//# sourceMappingURL=index.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/positioning/index.js\n// module id = 105\n// module chunks = 1","export function createUTCDate(y, m, d) {\n var date = new Date(Date.UTC.apply(null, arguments));\n // the Date.UTC function remaps years 0-99 to 1900-1999\n if (y < 100 && y >= 0 && isFinite(date.getUTCFullYear())) {\n date.setUTCFullYear(y);\n }\n return date;\n}\nexport function createDate(y, m, d, h, M, s, ms) {\n if (m === void 0) { m = 0; }\n if (d === void 0) { d = 1; }\n if (h === void 0) { h = 0; }\n if (M === void 0) { M = 0; }\n if (s === void 0) { s = 0; }\n if (ms === void 0) { ms = 0; }\n var date = new Date(y, m, d, h, M, s, ms);\n // the date constructor remaps years 0-99 to 1900-1999\n if (y < 100 && y >= 0 && isFinite(date.getFullYear())) {\n date.setFullYear(y);\n }\n return date;\n}\n//# sourceMappingURL=date-from-array.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/create/date-from-array.js\n// module id = 106\n// module chunks = 1","import { createDuration } from '../duration/create';\nimport { absRound } from '../utils/abs-round';\nimport { getDate, getMonth, getTime } from '../utils/date-getters';\nimport { setDate, setMonth, setTime } from '../utils/date-setters';\nimport { cloneDate } from '../create/clone';\nexport function add(date, val, period, isUTC) {\n var dur = createDuration(val, period);\n return addSubtract(date, dur, 1, isUTC);\n}\nexport function subtract(date, val, period, isUTC) {\n var dur = createDuration(val, period);\n return addSubtract(date, dur, -1, isUTC);\n}\nexport function addSubtract(date, duration, isAdding, isUTC) {\n var milliseconds = duration._milliseconds;\n var days = absRound(duration._days);\n var months = absRound(duration._months);\n // todo: add timezones support\n // const _updateOffset = updateOffset == null ? true : updateOffset;\n if (months) {\n setMonth(date, getMonth(date, isUTC) + months * isAdding, isUTC);\n }\n if (days) {\n setDate(date, getDate(date, isUTC) + days * isAdding, isUTC);\n }\n if (milliseconds) {\n setTime(date, getTime(date) + milliseconds * isAdding);\n }\n return cloneDate(date);\n // todo: add timezones support\n // if (_updateOffset) {\n // hooks.updateOffset(date, days || months);\n // }\n}\n//# sourceMappingURL=add-subtract.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/moment/add-subtract.js\n// module id = 107\n// module chunks = 1","export { positionElements, Positioning } from './ng-positioning';\nexport { PositioningService } from './positioning.service';\n//# sourceMappingURL=index.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/positioning/index.js\n// module id = 108\n// module chunks = 1","import { EventEmitter, Injectable } from '@angular/core';\nexport var BsDropdownState = (function () {\n function BsDropdownState() {\n var _this = this;\n this.direction = 'down';\n this.isOpenChange = new EventEmitter();\n this.isDisabledChange = new EventEmitter();\n this.toggleClick = new EventEmitter();\n this.dropdownMenu = new Promise(function (resolve) {\n _this.resolveDropdownMenu = resolve;\n });\n }\n BsDropdownState.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsDropdownState.ctorParameters = function () { return []; };\n return BsDropdownState;\n}());\n//# sourceMappingURL=bs-dropdown.state.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/dropdown/bs-dropdown.state.js\n// module id = 121\n// module chunks = 1","// /Scripts/app.config.ts\nimport { Injectable } from \"@angular/core\";\nimport { Router } from \"@angular/router\";\n\n// -------------------------------------------------------------------------------------------------\n// ApplicationConfig\n// -------------------------------------------------------------------------------------------------\n@Injectable()\nexport class ApplicationConfig {\n\t\n\n\tstatic SOURCE_ID: string = \"src\";\n\tstatic TIMESCOPE_FIRST: string = \"first\";\n\tstatic TIMESCOPE_LAST: string = \"last\";\n\tstatic WAVEFORM_START: string = \"start\";\n\tpublic grpcapiEndpoint: string = \"api/data/\";\n\tpublic сontactsapiEndpoint: string = \"api/contacts/\";\n\tpublic siteKey: string = \"6LfcHkwUAAAAALWTQllG4yDVbSb1KRwg2e1PLO5E\";\n\n\t//----------------------------------------------------------------------------------------------\n\tconstructor(private _router: Router) {\n\t\t\n\t}\n}\n\n\n// WEBPACK FOOTER //\n// ./scripts/app.config.ts","import { addFormatToken } from '../format/format';\nimport { getFullYear } from '../utils/date-getters';\nimport { addRegexToken, match1to2, match1to4, match1to6, match2, match4, match6, matchSigned } from '../parse/regex';\nimport { addParseToken } from '../parse/token';\nimport { YEAR } from './constants';\nimport { toInt } from '../utils/type-checks';\nimport { addUnitPriority } from './priorities';\nimport { addUnitAlias } from './aliases';\n// FORMATTING\nfunction getYear(date, opts) {\n return getFullYear(date, opts.isUTC).toString();\n}\naddFormatToken('Y', null, null, function (date, opts) {\n var y = getFullYear(date, opts.isUTC);\n return y <= 9999 ? y.toString(10) : \"+\" + y;\n});\naddFormatToken(null, ['YY', 2, false], null, function (date, opts) {\n return (getFullYear(date, opts.isUTC) % 100).toString(10);\n});\naddFormatToken(null, ['YYYY', 4, false], null, getYear);\naddFormatToken(null, ['YYYYY', 5, false], null, getYear);\naddFormatToken(null, ['YYYYYY', 6, true], null, getYear);\n// ALIASES\naddUnitAlias('year', 'y');\n// PRIORITIES\naddUnitPriority('year', 1);\n// PARSING\naddRegexToken('Y', matchSigned);\naddRegexToken('YY', match1to2, match2);\naddRegexToken('YYYY', match1to4, match4);\naddRegexToken('YYYYY', match1to6, match6);\naddRegexToken('YYYYYY', match1to6, match6);\naddParseToken(['YYYYY', 'YYYYYY'], YEAR);\naddParseToken('YYYY', function (input, array, config) {\n array[YEAR] = input.length === 2 ? parseTwoDigitYear(input) : toInt(input);\n return config;\n});\naddParseToken('YY', function (input, array, config) {\n array[YEAR] = parseTwoDigitYear(input);\n return config;\n});\naddParseToken('Y', function (input, array, config) {\n array[YEAR] = parseInt(input, 10);\n return config;\n});\nexport function parseTwoDigitYear(input) {\n return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);\n}\nexport function daysInYear(year) {\n return isLeapYear(year) ? 366 : 365;\n}\nexport function isLeapYear(year) {\n return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;\n}\n//# sourceMappingURL=year.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/units/year.js\n// module id = 123\n// module chunks = 1","import { endOf, startOf } from './start-end-of';\nexport function isAfter(date1, date2, units) {\n if (units === void 0) { units = 'milliseconds'; }\n if (!date1 || !date2) {\n return false;\n }\n if (units === 'milliseconds') {\n return date1.valueOf() > date2.valueOf();\n }\n return date2.valueOf() < startOf(date1, units).valueOf();\n}\nexport function isBefore(date1, date2, units) {\n if (units === void 0) { units = 'milliseconds'; }\n if (!date1 || !date2) {\n return false;\n }\n if (units === 'milliseconds') {\n return date1.valueOf() < date2.valueOf();\n }\n return endOf(date1, units).valueOf() < date2.valueOf();\n}\nexport function isBetween(date, from, to, units, inclusivity) {\n if (inclusivity === void 0) { inclusivity = '()'; }\n var leftBound = inclusivity[0] === '('\n ? isAfter(date, from, units)\n : !isBefore(date, from, units);\n var rightBound = inclusivity[1] === ')'\n ? isBefore(date, to, units)\n : !isAfter(date, to, units);\n return leftBound && rightBound;\n}\nexport function isSame(date1, date2, units) {\n if (units === void 0) { units = 'milliseconds'; }\n if (!date1 || !date2) {\n return false;\n }\n if (units === 'milliseconds') {\n return date1.valueOf() === date2.valueOf();\n }\n var inputMs = date2.valueOf();\n return (startOf(date1, units).valueOf() <= inputMs &&\n inputMs <= endOf(date1, units).valueOf());\n}\nexport function isSameOrAfter(date1, date2, units) {\n return isSame(date1, date2, units) || isAfter(date1, date2, units);\n}\nexport function isSameOrBefore(date1, date2, units) {\n return isSame(date1, date2, units) || isBefore(date1, date2, units);\n}\n//# sourceMappingURL=date-compare.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/utils/date-compare.js\n// module id = 124\n// module chunks = 1","import { ApplicationRef, ComponentFactoryResolver, Injectable, Injector, NgZone } from '@angular/core';\nimport { ComponentLoader } from './component-loader.class';\nimport { PositioningService } from '../positioning/index';\nvar ComponentLoaderFactory = (function () {\n function ComponentLoaderFactory(_componentFactoryResolver, _ngZone, _injector, _posService, _applicationRef) {\n this._componentFactoryResolver = _componentFactoryResolver;\n this._ngZone = _ngZone;\n this._injector = _injector;\n this._posService = _posService;\n this._applicationRef = _applicationRef;\n }\n /**\n *\n * @param _elementRef\n * @param _viewContainerRef\n * @param _renderer\n * @returns {ComponentLoader}\n */\n ComponentLoaderFactory.prototype.createLoader = function (_elementRef, _viewContainerRef, _renderer) {\n return new ComponentLoader(_viewContainerRef, _renderer, _elementRef, this._injector, this._componentFactoryResolver, this._ngZone, this._applicationRef, this._posService);\n };\n ComponentLoaderFactory.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n ComponentLoaderFactory.ctorParameters = function () { return [\n { type: ComponentFactoryResolver, },\n { type: NgZone, },\n { type: Injector, },\n { type: PositioningService, },\n { type: ApplicationRef, },\n ]; };\n return ComponentLoaderFactory;\n}());\nexport { ComponentLoaderFactory };\n//# sourceMappingURL=component-loader.factory.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/component-loader/component-loader.factory.js\n// module id = 125\n// module chunks = 1","import { EventEmitter, Injectable } from '@angular/core';\nvar BsDropdownState = (function () {\n function BsDropdownState() {\n var _this = this;\n this.direction = 'down';\n this.isOpenChange = new EventEmitter();\n this.isDisabledChange = new EventEmitter();\n this.toggleClick = new EventEmitter();\n this.dropdownMenu = new Promise(function (resolve) {\n _this.resolveDropdownMenu = resolve;\n });\n }\n BsDropdownState.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsDropdownState.ctorParameters = function () { return []; };\n return BsDropdownState;\n}());\nexport { BsDropdownState };\n//# sourceMappingURL=bs-dropdown.state.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/dropdown/bs-dropdown.state.js\n// module id = 126\n// module chunks = 1","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { CommonModule } from '@angular/common';\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ContentChild, ContentChildren, Directive, ElementRef, Inject, Input, NgModule, Optional, ViewChild, ViewEncapsulation } from '@angular/core';\nimport { PlatformModule } from '@angular/cdk/platform';\nimport { __extends } from 'tslib';\nimport * as tslib_1 from 'tslib';\nimport { coerceBooleanProperty } from '@angular/cdk/coercion';\nimport { MAT_LABEL_GLOBAL_OPTIONS, mixinColor } from '@angular/material/core';\nimport { fromEvent } from 'rxjs/observable/fromEvent';\nimport { startWith } from 'rxjs/operators/startWith';\nimport { take } from 'rxjs/operators/take';\nimport { animate, state, style, transition, trigger } from '@angular/animations';\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\nvar nextUniqueId = 0;\n/**\n * Single error message to be shown underneath the form field.\n */\nvar MatError = /** @class */ (function () {\n function MatError() {\n this.id = \"mat-error-\" + nextUniqueId++;\n }\n MatError.decorators = [\n { type: Directive, args: [{\n selector: 'mat-error',\n host: {\n 'class': 'mat-error',\n 'role': 'alert',\n '[attr.id]': 'id',\n }\n },] },\n ];\n /** @nocollapse */\n MatError.ctorParameters = function () { return []; };\n MatError.propDecorators = {\n \"id\": [{ type: Input },],\n };\n return MatError;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Animations used by the MatFormField.\n */\nvar matFormFieldAnimations = {\n /** Animation that transitions the form field's error and hint messages. */\n transitionMessages: trigger('transitionMessages', [\n // TODO(mmalerba): Use angular animations for label animation as well.\n state('enter', style({ opacity: 1, transform: 'translateY(0%)' })),\n transition('void => enter', [\n style({ opacity: 0, transform: 'translateY(-100%)' }),\n animate('300ms cubic-bezier(0.55, 0, 0.55, 0.2)'),\n ]),\n ])\n};\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * An interface which allows a control to work inside of a `MatFormField`.\n * @abstract\n * @template T\n */\nvar MatFormFieldControl = /** @class */ (function () {\n function MatFormFieldControl() {\n }\n return MatFormFieldControl;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * \\@docs-private\n * @return {?}\n */\nfunction getMatFormFieldPlaceholderConflictError() {\n return Error('Placeholder attribute and child element were both specified.');\n}\n/**\n * \\@docs-private\n * @param {?} align\n * @return {?}\n */\nfunction getMatFormFieldDuplicatedHintError(align) {\n return Error(\"A hint was already declared for 'align=\\\"\" + align + \"\\\"'.\");\n}\n/**\n * \\@docs-private\n * @return {?}\n */\nfunction getMatFormFieldMissingControlError() {\n return Error('mat-form-field must contain a MatFormFieldControl.');\n}\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\nvar nextUniqueId$2 = 0;\n/**\n * Hint text to be shown underneath the form field control.\n */\nvar MatHint = /** @class */ (function () {\n function MatHint() {\n /**\n * Whether to align the hint label at the start or end of the line.\n */\n this.align = 'start';\n /**\n * Unique ID for the hint. Used for the aria-describedby on the form field control.\n */\n this.id = \"mat-hint-\" + nextUniqueId$2++;\n }\n MatHint.decorators = [\n { type: Directive, args: [{\n selector: 'mat-hint',\n host: {\n 'class': 'mat-hint',\n '[class.mat-right]': 'align == \"end\"',\n '[attr.id]': 'id',\n // Remove align attribute to prevent it from interfering with layout.\n '[attr.align]': 'null',\n }\n },] },\n ];\n /** @nocollapse */\n MatHint.ctorParameters = function () { return []; };\n MatHint.propDecorators = {\n \"align\": [{ type: Input },],\n \"id\": [{ type: Input },],\n };\n return MatHint;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * The floating label for a `mat-form-field`.\n */\nvar MatLabel = /** @class */ (function () {\n function MatLabel() {\n }\n MatLabel.decorators = [\n { type: Directive, args: [{\n selector: 'mat-label'\n },] },\n ];\n /** @nocollapse */\n MatLabel.ctorParameters = function () { return []; };\n return MatLabel;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * The placeholder text for an `MatFormField`.\n */\nvar MatPlaceholder = /** @class */ (function () {\n function MatPlaceholder() {\n }\n MatPlaceholder.decorators = [\n { type: Directive, args: [{\n selector: 'mat-placeholder'\n },] },\n ];\n /** @nocollapse */\n MatPlaceholder.ctorParameters = function () { return []; };\n return MatPlaceholder;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Prefix to be placed the the front of the form field.\n */\nvar MatPrefix = /** @class */ (function () {\n function MatPrefix() {\n }\n MatPrefix.decorators = [\n { type: Directive, args: [{\n selector: '[matPrefix]',\n },] },\n ];\n /** @nocollapse */\n MatPrefix.ctorParameters = function () { return []; };\n return MatPrefix;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Suffix to be placed at the end of the form field.\n */\nvar MatSuffix = /** @class */ (function () {\n function MatSuffix() {\n }\n MatSuffix.decorators = [\n { type: Directive, args: [{\n selector: '[matSuffix]',\n },] },\n ];\n /** @nocollapse */\n MatSuffix.ctorParameters = function () { return []; };\n return MatSuffix;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * \\@docs-private\n */\nvar MatFormFieldBase = /** @class */ (function () {\n function MatFormFieldBase(_elementRef) {\n this._elementRef = _elementRef;\n }\n return MatFormFieldBase;\n}());\nvar _MatFormFieldMixinBase = mixinColor(MatFormFieldBase, 'primary');\nvar nextUniqueId$1 = 0;\n/**\n * Container for form controls that applies Material Design styling and behavior.\n */\nvar MatFormField = /** @class */ (function (_super) {\n __extends(MatFormField, _super);\n function MatFormField(_elementRef, _changeDetectorRef, labelOptions) {\n var _this = _super.call(this, _elementRef) || this;\n _this._elementRef = _elementRef;\n _this._changeDetectorRef = _changeDetectorRef;\n /**\n * Override for the logic that disables the label animation in certain cases.\n */\n _this._showAlwaysAnimate = false;\n /**\n * State of the mat-hint and mat-error animations.\n */\n _this._subscriptAnimationState = '';\n _this._hintLabel = '';\n // Unique id for the hint label.\n _this._hintLabelId = \"mat-hint-\" + nextUniqueId$1++;\n _this._labelOptions = labelOptions ? labelOptions : {};\n _this.floatLabel = _this._labelOptions.float || 'auto';\n return _this;\n }\n Object.defineProperty(MatFormField.prototype, \"dividerColor\", {\n get: /**\n * @deprecated Use `color` instead.\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this.color; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) { this.color = value; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatFormField.prototype, \"hideRequiredMarker\", {\n get: /**\n * Whether the required marker should be hidden.\n * @return {?}\n */\n function () { return this._hideRequiredMarker; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) {\n this._hideRequiredMarker = coerceBooleanProperty(value);\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatFormField.prototype, \"_shouldAlwaysFloat\", {\n /** Whether the floating label should always float or not. */\n get: /**\n * Whether the floating label should always float or not.\n * @return {?}\n */\n function () {\n return this._floatLabel === 'always' && !this._showAlwaysAnimate;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatFormField.prototype, \"_canLabelFloat\", {\n /** Whether the label can float or not. */\n get: /**\n * Whether the label can float or not.\n * @return {?}\n */\n function () { return this._floatLabel !== 'never'; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatFormField.prototype, \"hintLabel\", {\n get: /**\n * Text for the form field hint.\n * @return {?}\n */\n function () { return this._hintLabel; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) {\n this._hintLabel = value;\n this._processHints();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatFormField.prototype, \"floatPlaceholder\", {\n get: /**\n * Whether the placeholder should always float, never float or float as the user types.\n * @deprecated Use floatLabel instead.\n * \\@deletion-target 6.0.0\n * @return {?}\n */\n function () { return this._floatLabel; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) { this.floatLabel = value; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatFormField.prototype, \"floatLabel\", {\n get: /**\n * Whether the label should always float, never float or float as the user types.\n * @return {?}\n */\n function () { return this._floatLabel; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) {\n if (value !== this._floatLabel) {\n this._floatLabel = value || this._labelOptions.float || 'auto';\n this._changeDetectorRef.markForCheck();\n }\n },\n enumerable: true,\n configurable: true\n });\n /**\n * @return {?}\n */\n MatFormField.prototype.ngAfterContentInit = /**\n * @return {?}\n */\n function () {\n var _this = this;\n this._validateControlChild();\n if (this._control.controlType) {\n this._elementRef.nativeElement.classList\n .add(\"mat-form-field-type-\" + this._control.controlType);\n }\n // Subscribe to changes in the child control state in order to update the form field UI.\n this._control.stateChanges.pipe(startWith(/** @type {?} */ ((null)))).subscribe(function () {\n _this._validatePlaceholders();\n _this._syncDescribedByIds();\n _this._changeDetectorRef.markForCheck();\n });\n var /** @type {?} */ ngControl = this._control.ngControl;\n if (ngControl && ngControl.valueChanges) {\n ngControl.valueChanges.subscribe(function () {\n _this._changeDetectorRef.markForCheck();\n });\n }\n // Re-validate when the number of hints changes.\n this._hintChildren.changes.pipe(startWith(null)).subscribe(function () {\n _this._processHints();\n _this._changeDetectorRef.markForCheck();\n });\n // Update the aria-described by when the number of errors changes.\n this._errorChildren.changes.pipe(startWith(null)).subscribe(function () {\n _this._syncDescribedByIds();\n _this._changeDetectorRef.markForCheck();\n });\n };\n /**\n * @return {?}\n */\n MatFormField.prototype.ngAfterContentChecked = /**\n * @return {?}\n */\n function () {\n this._validateControlChild();\n };\n /**\n * @return {?}\n */\n MatFormField.prototype.ngAfterViewInit = /**\n * @return {?}\n */\n function () {\n // Avoid animations on load.\n this._subscriptAnimationState = 'enter';\n this._changeDetectorRef.detectChanges();\n };\n /** Determines whether a class from the NgControl should be forwarded to the host element. */\n /**\n * Determines whether a class from the NgControl should be forwarded to the host element.\n * @param {?} prop\n * @return {?}\n */\n MatFormField.prototype._shouldForward = /**\n * Determines whether a class from the NgControl should be forwarded to the host element.\n * @param {?} prop\n * @return {?}\n */\n function (prop) {\n var /** @type {?} */ ngControl = this._control ? this._control.ngControl : null;\n return ngControl && (/** @type {?} */ (ngControl))[prop];\n };\n /**\n * @return {?}\n */\n MatFormField.prototype._hasPlaceholder = /**\n * @return {?}\n */\n function () {\n return !!(this._control.placeholder || this._placeholderChild);\n };\n /**\n * @return {?}\n */\n MatFormField.prototype._hasLabel = /**\n * @return {?}\n */\n function () {\n return !!this._labelChild;\n };\n /**\n * @return {?}\n */\n MatFormField.prototype._shouldLabelFloat = /**\n * @return {?}\n */\n function () {\n return this._canLabelFloat && (this._control.shouldLabelFloat ||\n this._control.shouldPlaceholderFloat || this._shouldAlwaysFloat);\n };\n /**\n * @return {?}\n */\n MatFormField.prototype._hideControlPlaceholder = /**\n * @return {?}\n */\n function () {\n return !this._hasLabel() || !this._shouldLabelFloat();\n };\n /**\n * @return {?}\n */\n MatFormField.prototype._hasFloatingLabel = /**\n * @return {?}\n */\n function () {\n return this._hasLabel() || this._hasPlaceholder();\n };\n /** Determines whether to display hints or errors. */\n /**\n * Determines whether to display hints or errors.\n * @return {?}\n */\n MatFormField.prototype._getDisplayedMessages = /**\n * Determines whether to display hints or errors.\n * @return {?}\n */\n function () {\n return (this._errorChildren && this._errorChildren.length > 0 &&\n this._control.errorState) ? 'error' : 'hint';\n };\n /** Animates the placeholder up and locks it in position. */\n /**\n * Animates the placeholder up and locks it in position.\n * @return {?}\n */\n MatFormField.prototype._animateAndLockLabel = /**\n * Animates the placeholder up and locks it in position.\n * @return {?}\n */\n function () {\n var _this = this;\n if (this._hasFloatingLabel() && this._canLabelFloat) {\n this._showAlwaysAnimate = true;\n this._floatLabel = 'always';\n fromEvent(this._label.nativeElement, 'transitionend').pipe(take(1)).subscribe(function () {\n _this._showAlwaysAnimate = false;\n });\n this._changeDetectorRef.markForCheck();\n }\n };\n /**\n * Ensure that there is only one placeholder (either `placeholder` attribute on the child control\n * or child element with the `mat-placeholder` directive).\n * @return {?}\n */\n MatFormField.prototype._validatePlaceholders = /**\n * Ensure that there is only one placeholder (either `placeholder` attribute on the child control\n * or child element with the `mat-placeholder` directive).\n * @return {?}\n */\n function () {\n if (this._control.placeholder && this._placeholderChild) {\n throw getMatFormFieldPlaceholderConflictError();\n }\n };\n /**\n * Does any extra processing that is required when handling the hints.\n * @return {?}\n */\n MatFormField.prototype._processHints = /**\n * Does any extra processing that is required when handling the hints.\n * @return {?}\n */\n function () {\n this._validateHints();\n this._syncDescribedByIds();\n };\n /**\n * Ensure that there is a maximum of one of each `
` alignment specified, with the\n * attribute being considered as `align=\"start\"`.\n * @return {?}\n */\n MatFormField.prototype._validateHints = /**\n * Ensure that there is a maximum of one of each `` alignment specified, with the\n * attribute being considered as `align=\"start\"`.\n * @return {?}\n */\n function () {\n var _this = this;\n if (this._hintChildren) {\n var /** @type {?} */ startHint_1;\n var /** @type {?} */ endHint_1;\n this._hintChildren.forEach(function (hint) {\n if (hint.align === 'start') {\n if (startHint_1 || _this.hintLabel) {\n throw getMatFormFieldDuplicatedHintError('start');\n }\n startHint_1 = hint;\n }\n else if (hint.align === 'end') {\n if (endHint_1) {\n throw getMatFormFieldDuplicatedHintError('end');\n }\n endHint_1 = hint;\n }\n });\n }\n };\n /**\n * Sets the list of element IDs that describe the child control. This allows the control to update\n * its `aria-describedby` attribute accordingly.\n * @return {?}\n */\n MatFormField.prototype._syncDescribedByIds = /**\n * Sets the list of element IDs that describe the child control. This allows the control to update\n * its `aria-describedby` attribute accordingly.\n * @return {?}\n */\n function () {\n if (this._control) {\n var /** @type {?} */ ids = [];\n if (this._getDisplayedMessages() === 'hint') {\n var /** @type {?} */ startHint = this._hintChildren ?\n this._hintChildren.find(function (hint) { return hint.align === 'start'; }) : null;\n var /** @type {?} */ endHint = this._hintChildren ?\n this._hintChildren.find(function (hint) { return hint.align === 'end'; }) : null;\n if (startHint) {\n ids.push(startHint.id);\n }\n else if (this._hintLabel) {\n ids.push(this._hintLabelId);\n }\n if (endHint) {\n ids.push(endHint.id);\n }\n }\n else if (this._errorChildren) {\n ids = this._errorChildren.map(function (error) { return error.id; });\n }\n this._control.setDescribedByIds(ids);\n }\n };\n /** Throws an error if the form field's control is missing. */\n /**\n * Throws an error if the form field's control is missing.\n * @return {?}\n */\n MatFormField.prototype._validateControlChild = /**\n * Throws an error if the form field's control is missing.\n * @return {?}\n */\n function () {\n if (!this._control) {\n throw getMatFormFieldMissingControlError();\n }\n };\n MatFormField.decorators = [\n { type: Component, args: [{// TODO(mmalerba): the input-container selectors and classes are deprecated and will be removed.\n selector: 'mat-input-container, mat-form-field',\n exportAs: 'matFormField',\n template: \"\",\n // MatInput is a directive and can't have styles, so we need to include its styles here.\n // The MatInput styles are fairly minimal so it shouldn't be a big deal for people who\n // aren't using MatInput.\n styles: [\".mat-form-field{display:inline-block;position:relative;text-align:left}[dir=rtl] .mat-form-field{text-align:right}.mat-form-field-wrapper{position:relative}.mat-form-field-flex{display:inline-flex;align-items:baseline;width:100%}.mat-form-field-prefix,.mat-form-field-suffix{white-space:nowrap;flex:none}.mat-form-field-prefix .mat-icon,.mat-form-field-suffix .mat-icon{width:1em}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{font:inherit;vertical-align:baseline}.mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field-suffix .mat-icon-button .mat-icon{font-size:inherit}.mat-form-field-infix{display:block;position:relative;flex:auto;min-width:0;width:180px}.mat-form-field-label-wrapper{position:absolute;left:0;box-sizing:content-box;width:100%;height:100%;overflow:hidden;pointer-events:none}.mat-form-field-label{position:absolute;left:0;font:inherit;pointer-events:none;width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;transform:perspective(100px);-ms-transform:none;transform-origin:0 0;transition:transform .4s cubic-bezier(.25,.8,.25,1),color .4s cubic-bezier(.25,.8,.25,1),width .4s cubic-bezier(.25,.8,.25,1);display:none}[dir=rtl] .mat-form-field-label{transform-origin:100% 0;left:auto;right:0}.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-empty.mat-form-field-label{display:block}.mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{display:none}.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{display:block;transition:none}.mat-input-server:focus+.mat-form-field-placeholder-wrapper .mat-form-field-placeholder,.mat-input-server[placeholder]:not(:placeholder-shown)+.mat-form-field-placeholder-wrapper .mat-form-field-placeholder{display:none}.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-placeholder-wrapper .mat-form-field-placeholder,.mat-form-field-can-float .mat-input-server[placeholder]:not(:placeholder-shown)+.mat-form-field-placeholder-wrapper .mat-form-field-placeholder{display:block}.mat-form-field-label:not(.mat-form-field-empty){transition:none}.mat-form-field-underline{position:absolute;height:1px;width:100%}.mat-form-field-disabled .mat-form-field-underline{background-position:0;background-color:transparent}.mat-form-field-underline .mat-form-field-ripple{position:absolute;top:0;left:0;width:100%;height:2px;transform-origin:50%;transform:scaleX(.5);visibility:hidden;opacity:0;transition:background-color .3s cubic-bezier(.55,0,.55,.2)}.mat-form-field-invalid:not(.mat-focused) .mat-form-field-underline .mat-form-field-ripple{height:1px}.mat-focused .mat-form-field-underline .mat-form-field-ripple,.mat-form-field-invalid .mat-form-field-underline .mat-form-field-ripple{visibility:visible;opacity:1;transform:scaleX(1);transition:transform .3s cubic-bezier(.25,.8,.25,1),opacity .1s cubic-bezier(.25,.8,.25,1),background-color .3s cubic-bezier(.25,.8,.25,1)}.mat-form-field-subscript-wrapper{position:absolute;width:100%;overflow:hidden}.mat-form-field-label-wrapper .mat-icon,.mat-form-field-subscript-wrapper .mat-icon{width:1em;height:1em;font-size:inherit;vertical-align:baseline}.mat-form-field-hint-wrapper{display:flex}.mat-form-field-hint-spacer{flex:1 0 1em}.mat-error{display:block} .mat-input-element{font:inherit;background:0 0;color:currentColor;border:none;outline:0;padding:0;margin:0;width:100%;max-width:100%;vertical-align:bottom;text-align:inherit}.mat-input-element:-moz-ui-invalid{box-shadow:none}.mat-input-element::-ms-clear,.mat-input-element::-ms-reveal{display:none}.mat-input-element[type=date]::after,.mat-input-element[type=datetime-local]::after,.mat-input-element[type=datetime]::after,.mat-input-element[type=month]::after,.mat-input-element[type=time]::after,.mat-input-element[type=week]::after{content:' ';white-space:pre;width:1px}.mat-input-element::placeholder{transition:color .4s .133s cubic-bezier(.25,.8,.25,1)}.mat-input-element::-moz-placeholder{transition:color .4s .133s cubic-bezier(.25,.8,.25,1)}.mat-input-element::-webkit-input-placeholder{transition:color .4s .133s cubic-bezier(.25,.8,.25,1)}.mat-input-element:-ms-input-placeholder{transition:color .4s .133s cubic-bezier(.25,.8,.25,1)}.mat-form-field-hide-placeholder .mat-input-element::placeholder{color:transparent!important;transition:none}.mat-form-field-hide-placeholder .mat-input-element::-moz-placeholder{color:transparent!important;transition:none}.mat-form-field-hide-placeholder .mat-input-element::-webkit-input-placeholder{color:transparent!important;transition:none}.mat-form-field-hide-placeholder .mat-input-element:-ms-input-placeholder{color:transparent!important;transition:none}textarea.mat-input-element{resize:vertical;overflow:auto}textarea.mat-autosize{resize:none}\"],\n animations: [matFormFieldAnimations.transitionMessages],\n host: {\n 'class': 'mat-input-container mat-form-field',\n '[class.mat-input-invalid]': '_control.errorState',\n '[class.mat-form-field-invalid]': '_control.errorState',\n '[class.mat-form-field-can-float]': '_canLabelFloat',\n '[class.mat-form-field-should-float]': '_shouldLabelFloat()',\n '[class.mat-form-field-hide-placeholder]': '_hideControlPlaceholder()',\n '[class.mat-form-field-disabled]': '_control.disabled',\n '[class.mat-focused]': '_control.focused',\n '[class.ng-untouched]': '_shouldForward(\"untouched\")',\n '[class.ng-touched]': '_shouldForward(\"touched\")',\n '[class.ng-pristine]': '_shouldForward(\"pristine\")',\n '[class.ng-dirty]': '_shouldForward(\"dirty\")',\n '[class.ng-valid]': '_shouldForward(\"valid\")',\n '[class.ng-invalid]': '_shouldForward(\"invalid\")',\n '[class.ng-pending]': '_shouldForward(\"pending\")',\n },\n inputs: ['color'],\n encapsulation: ViewEncapsulation.None,\n preserveWhitespaces: false,\n changeDetection: ChangeDetectionStrategy.OnPush,\n },] },\n ];\n /** @nocollapse */\n MatFormField.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: ChangeDetectorRef, },\n { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [MAT_LABEL_GLOBAL_OPTIONS,] },] },\n ]; };\n MatFormField.propDecorators = {\n \"dividerColor\": [{ type: Input },],\n \"hideRequiredMarker\": [{ type: Input },],\n \"hintLabel\": [{ type: Input },],\n \"floatPlaceholder\": [{ type: Input },],\n \"floatLabel\": [{ type: Input },],\n \"underlineRef\": [{ type: ViewChild, args: ['underline',] },],\n \"_connectionContainerRef\": [{ type: ViewChild, args: ['connectionContainer',] },],\n \"_inputContainerRef\": [{ type: ViewChild, args: ['inputContainer',] },],\n \"_label\": [{ type: ViewChild, args: ['label',] },],\n \"_control\": [{ type: ContentChild, args: [MatFormFieldControl,] },],\n \"_placeholderChild\": [{ type: ContentChild, args: [MatPlaceholder,] },],\n \"_labelChild\": [{ type: ContentChild, args: [MatLabel,] },],\n \"_errorChildren\": [{ type: ContentChildren, args: [MatError,] },],\n \"_hintChildren\": [{ type: ContentChildren, args: [MatHint,] },],\n \"_prefixChildren\": [{ type: ContentChildren, args: [MatPrefix,] },],\n \"_suffixChildren\": [{ type: ContentChildren, args: [MatSuffix,] },],\n };\n return MatFormField;\n}(_MatFormFieldMixinBase));\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\nvar MatFormFieldModule = /** @class */ (function () {\n function MatFormFieldModule() {\n }\n MatFormFieldModule.decorators = [\n { type: NgModule, args: [{\n declarations: [\n MatError,\n MatHint,\n MatFormField,\n MatPlaceholder,\n MatPrefix,\n MatSuffix,\n MatLabel,\n ],\n imports: [\n CommonModule,\n PlatformModule,\n ],\n exports: [\n MatError,\n MatHint,\n MatFormField,\n MatPlaceholder,\n MatPrefix,\n MatSuffix,\n MatLabel,\n ],\n },] },\n ];\n /** @nocollapse */\n MatFormFieldModule.ctorParameters = function () { return []; };\n return MatFormFieldModule;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { MatFormFieldModule, MatError, MatFormFieldBase, _MatFormFieldMixinBase, MatFormField, MatFormFieldControl, getMatFormFieldPlaceholderConflictError, getMatFormFieldDuplicatedHintError, getMatFormFieldMissingControlError, MatHint, MatPlaceholder, MatPrefix, MatSuffix, MatLabel, matFormFieldAnimations };\n//# sourceMappingURL=form-field.es5.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/@angular/material/esm5/form-field.es5.js\n// module id = 127\n// module chunks = 1","import { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { DateFormatter } from './date-formatter';\n// const MIN_DATE:Date = void 0;\n// const MAX_DATE:Date = void 0;\n// const DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];\n/*\n const KEYS = {\n 13: 'enter',\n 32: 'space',\n 33: 'pageup',\n 34: 'pagedown',\n 35: 'end',\n 36: 'home',\n 37: 'left',\n 38: 'up',\n 39: 'right',\n 40: 'down'\n };\n */\nexport var DatePickerInnerComponent = (function () {\n function DatePickerInnerComponent() {\n this.selectionDone = new EventEmitter(undefined);\n this.update = new EventEmitter(false);\n this.activeDateChange = new EventEmitter(undefined);\n this.stepDay = {};\n this.stepMonth = {};\n this.stepYear = {};\n this.modes = ['day', 'month', 'year'];\n this.dateFormatter = new DateFormatter();\n }\n Object.defineProperty(DatePickerInnerComponent.prototype, \"activeDate\", {\n get: function () {\n return this._activeDate;\n },\n set: function (value) {\n this._activeDate = value;\n },\n enumerable: true,\n configurable: true\n });\n // todo: add formatter value to Date object\n DatePickerInnerComponent.prototype.ngOnInit = function () {\n // todo: use date for unique value\n this.uniqueId = 'datepicker-' + '-' + Math.floor(Math.random() * 10000);\n if (this.initDate) {\n this.activeDate = this.initDate;\n this.selectedDate = new Date(this.activeDate.valueOf());\n this.update.emit(this.activeDate);\n }\n else if (this.activeDate === undefined) {\n this.activeDate = new Date();\n }\n };\n // this.refreshView should be called here to reflect the changes on the fly\n // tslint:disable-next-line:no-unused-variable\n DatePickerInnerComponent.prototype.ngOnChanges = function (changes) {\n this.refreshView();\n };\n DatePickerInnerComponent.prototype.setCompareHandler = function (handler, type) {\n if (type === 'day') {\n this.compareHandlerDay = handler;\n }\n if (type === 'month') {\n this.compareHandlerMonth = handler;\n }\n if (type === 'year') {\n this.compareHandlerYear = handler;\n }\n };\n DatePickerInnerComponent.prototype.compare = function (date1, date2) {\n if (date1 === undefined || date2 === undefined) {\n return undefined;\n }\n if (this.datepickerMode === 'day' && this.compareHandlerDay) {\n return this.compareHandlerDay(date1, date2);\n }\n if (this.datepickerMode === 'month' && this.compareHandlerMonth) {\n return this.compareHandlerMonth(date1, date2);\n }\n if (this.datepickerMode === 'year' && this.compareHandlerYear) {\n return this.compareHandlerYear(date1, date2);\n }\n return void 0;\n };\n DatePickerInnerComponent.prototype.setRefreshViewHandler = function (handler, type) {\n if (type === 'day') {\n this.refreshViewHandlerDay = handler;\n }\n if (type === 'month') {\n this.refreshViewHandlerMonth = handler;\n }\n if (type === 'year') {\n this.refreshViewHandlerYear = handler;\n }\n };\n DatePickerInnerComponent.prototype.refreshView = function () {\n if (this.datepickerMode === 'day' && this.refreshViewHandlerDay) {\n this.refreshViewHandlerDay();\n }\n if (this.datepickerMode === 'month' && this.refreshViewHandlerMonth) {\n this.refreshViewHandlerMonth();\n }\n if (this.datepickerMode === 'year' && this.refreshViewHandlerYear) {\n this.refreshViewHandlerYear();\n }\n };\n DatePickerInnerComponent.prototype.dateFilter = function (date, format) {\n return this.dateFormatter.format(date, format);\n };\n DatePickerInnerComponent.prototype.isActive = function (dateObject) {\n if (this.compare(dateObject.date, this.activeDate) === 0) {\n this.activeDateId = dateObject.uid;\n return true;\n }\n return false;\n };\n DatePickerInnerComponent.prototype.createDateObject = function (date, format) {\n var dateObject = {};\n dateObject.date = new Date(date.getFullYear(), date.getMonth(), date.getDate());\n dateObject.label = this.dateFilter(date, format);\n dateObject.selected = this.compare(date, this.selectedDate) === 0;\n dateObject.disabled = this.isDisabled(date);\n dateObject.current = this.compare(date, new Date()) === 0;\n dateObject.customClass = this.getCustomClassForDate(dateObject.date);\n return dateObject;\n };\n DatePickerInnerComponent.prototype.split = function (arr, size) {\n var arrays = [];\n while (arr.length > 0) {\n arrays.push(arr.splice(0, size));\n }\n return arrays;\n };\n // Fix a hard-reproducible bug with timezones\n // The bug depends on OS, browser, current timezone and current date\n // i.e.\n // var date = new Date(2014, 0, 1);\n // console.log(date.getFullYear(), date.getMonth(), date.getDate(),\n // date.getHours()); can result in \"2013 11 31 23\" because of the bug.\n DatePickerInnerComponent.prototype.fixTimeZone = function (date) {\n var hours = date.getHours();\n return new Date(date.getFullYear(), date.getMonth(), date.getDate(), hours === 23 ? hours + 2 : 0);\n };\n DatePickerInnerComponent.prototype.select = function (date, isManual) {\n if (isManual === void 0) { isManual = true; }\n if (this.datepickerMode === this.minMode) {\n if (!this.activeDate) {\n this.activeDate = new Date(0, 0, 0, 0, 0, 0, 0);\n }\n this.activeDate = new Date(date.getFullYear(), date.getMonth(), date.getDate());\n if (isManual) {\n this.selectionDone.emit(this.activeDate);\n }\n }\n else {\n this.activeDate = new Date(date.getFullYear(), date.getMonth(), date.getDate());\n this.datepickerMode = this.modes[this.modes.indexOf(this.datepickerMode) - 1];\n }\n this.selectedDate = new Date(this.activeDate.valueOf());\n this.update.emit(this.activeDate);\n this.refreshView();\n };\n DatePickerInnerComponent.prototype.move = function (direction) {\n var expectedStep;\n if (this.datepickerMode === 'day') {\n expectedStep = this.stepDay;\n }\n if (this.datepickerMode === 'month') {\n expectedStep = this.stepMonth;\n }\n if (this.datepickerMode === 'year') {\n expectedStep = this.stepYear;\n }\n if (expectedStep) {\n var year = this.activeDate.getFullYear() + direction * (expectedStep.years || 0);\n var month = this.activeDate.getMonth() + direction * (expectedStep.months || 0);\n this.activeDate = new Date(year, month, 1);\n this.refreshView();\n this.activeDateChange.emit(this.activeDate);\n }\n };\n DatePickerInnerComponent.prototype.toggleMode = function (direction) {\n direction = direction || 1;\n if ((this.datepickerMode === this.maxMode && direction === 1) ||\n (this.datepickerMode === this.minMode && direction === -1)) {\n return;\n }\n this.datepickerMode = this.modes[this.modes.indexOf(this.datepickerMode) + direction];\n this.refreshView();\n };\n DatePickerInnerComponent.prototype.getCustomClassForDate = function (date) {\n var _this = this;\n if (!this.customClass) {\n return '';\n }\n // todo: build a hash of custom classes, it will work faster\n var customClassObject = this.customClass\n .find(function (customClass) {\n return customClass.date.valueOf() === date.valueOf() &&\n customClass.mode === _this.datepickerMode;\n }, this);\n return customClassObject === undefined ? '' : customClassObject.clazz;\n };\n DatePickerInnerComponent.prototype.compareDateDisabled = function (date1Disabled, date2) {\n if (date1Disabled === undefined || date2 === undefined) {\n return undefined;\n }\n if (date1Disabled.mode === 'day' && this.compareHandlerDay) {\n return this.compareHandlerDay(date1Disabled.date, date2);\n }\n if (date1Disabled.mode === 'month' && this.compareHandlerMonth) {\n return this.compareHandlerMonth(date1Disabled.date, date2);\n }\n if (date1Disabled.mode === 'year' && this.compareHandlerYear) {\n return this.compareHandlerYear(date1Disabled.date, date2);\n }\n return undefined;\n };\n DatePickerInnerComponent.prototype.isDisabled = function (date) {\n var _this = this;\n var isDateDisabled = false;\n if (this.dateDisabled) {\n this.dateDisabled.forEach(function (disabledDate) {\n if (_this.compareDateDisabled(disabledDate, date) === 0) {\n isDateDisabled = true;\n }\n });\n }\n return (isDateDisabled || (this.minDate && this.compare(date, this.minDate) < 0) ||\n (this.maxDate && this.compare(date, this.maxDate) > 0));\n };\n DatePickerInnerComponent.decorators = [\n { type: Component, args: [{\n selector: 'datepicker-inner',\n template: \"\\n \\n \\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n DatePickerInnerComponent.ctorParameters = function () { return []; };\n DatePickerInnerComponent.propDecorators = {\n 'datepickerMode': [{ type: Input },],\n 'startingDay': [{ type: Input },],\n 'yearRange': [{ type: Input },],\n 'minDate': [{ type: Input },],\n 'maxDate': [{ type: Input },],\n 'minMode': [{ type: Input },],\n 'maxMode': [{ type: Input },],\n 'showWeeks': [{ type: Input },],\n 'formatDay': [{ type: Input },],\n 'formatMonth': [{ type: Input },],\n 'formatYear': [{ type: Input },],\n 'formatDayHeader': [{ type: Input },],\n 'formatDayTitle': [{ type: Input },],\n 'formatMonthTitle': [{ type: Input },],\n 'onlyCurrentMonth': [{ type: Input },],\n 'shortcutPropagation': [{ type: Input },],\n 'customClass': [{ type: Input },],\n 'monthColLimit': [{ type: Input },],\n 'yearColLimit': [{ type: Input },],\n 'dateDisabled': [{ type: Input },],\n 'initDate': [{ type: Input },],\n 'selectionDone': [{ type: Output },],\n 'update': [{ type: Output },],\n 'activeDateChange': [{ type: Output },],\n 'activeDate': [{ type: Input },],\n };\n return DatePickerInnerComponent;\n}());\n//# sourceMappingURL=datepicker-inner.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/datepicker/datepicker-inner.component.js\n// module id = 149\n// module chunks = 1","/**\n *\n * @param {number} year\n * @param {number} dow - start-of-first-week\n * @param {number} doy - start-of-year\n * @returns {number}\n */\nimport { createUTCDate } from '../create/date-from-array';\nimport { daysInYear } from './year';\nimport { getDayOfYear } from './day-of-year';\nimport { getFullYear } from '../utils/date-getters';\nfunction firstWeekOffset(year, dow, doy) {\n // first-week day -- which january is always in the first week (4 for iso, 1 for other)\n var fwd = dow - doy + 7;\n // first-week day local weekday -- which local weekday is fwd\n var fwdlw = (createUTCDate(year, 0, fwd).getUTCDay() - dow + 7) % 7;\n return -fwdlw + fwd - 1;\n}\n// https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday\nexport function dayOfYearFromWeeks(year, week, weekday, dow, doy) {\n var localWeekday = (7 + weekday - dow) % 7;\n var weekOffset = firstWeekOffset(year, dow, doy);\n var dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset;\n var resYear;\n var resDayOfYear;\n if (dayOfYear <= 0) {\n resYear = year - 1;\n resDayOfYear = daysInYear(resYear) + dayOfYear;\n }\n else if (dayOfYear > daysInYear(year)) {\n resYear = year + 1;\n resDayOfYear = dayOfYear - daysInYear(year);\n }\n else {\n resYear = year;\n resDayOfYear = dayOfYear;\n }\n return {\n year: resYear,\n dayOfYear: resDayOfYear\n };\n}\nexport function weekOfYear(date, dow, doy) {\n var weekOffset = firstWeekOffset(getFullYear(date), dow, doy);\n var week = Math.floor((getDayOfYear(date) - weekOffset - 1) / 7) + 1;\n var resWeek;\n var resYear;\n if (week < 1) {\n resYear = getFullYear(date) - 1;\n resWeek = week + weeksInYear(resYear, dow, doy);\n }\n else if (week > weeksInYear(getFullYear(date), dow, doy)) {\n resWeek = week - weeksInYear(getFullYear(date), dow, doy);\n resYear = getFullYear(date) + 1;\n }\n else {\n resYear = getFullYear(date);\n resWeek = week;\n }\n return {\n week: resWeek,\n year: resYear\n };\n}\nexport function weeksInYear(year, dow, doy) {\n var weekOffset = firstWeekOffset(year, dow, doy);\n var weekOffsetNext = firstWeekOffset(year + 1, dow, doy);\n return (daysInYear(year) - weekOffset + weekOffsetNext) / 7;\n}\n//# sourceMappingURL=week-calendar-utils.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/units/week-calendar-utils.js\n// module id = 150\n// module chunks = 1","import { setDate, setHours, setMilliseconds, setMinutes, setMonth, setSeconds } from './date-setters';\nimport { cloneDate } from '../create/clone';\nimport { setISODayOfWeek, setLocaleDayOfWeek } from '../units/day-of-week';\nimport { getMonth } from './date-getters';\nimport { add, subtract } from '../moment/add-subtract';\nexport function startOf(date, unit, isUTC) {\n var _date = cloneDate(date);\n // the following switch intentionally omits break keywords\n // to utilize falling through the cases.\n switch (unit) {\n case 'year':\n setMonth(_date, 0, isUTC);\n /* falls through */\n case 'quarter':\n case 'month':\n setDate(_date, 1, isUTC);\n /* falls through */\n case 'week':\n case 'isoWeek':\n case 'day':\n case 'date':\n setHours(_date, 0, isUTC);\n /* falls through */\n case 'hours':\n setMinutes(_date, 0, isUTC);\n /* falls through */\n case 'minutes':\n setSeconds(_date, 0, isUTC);\n /* falls through */\n case 'seconds':\n setMilliseconds(_date, 0, isUTC);\n }\n // weeks are a special case\n if (unit === 'week') {\n setLocaleDayOfWeek(_date, 0, { isUTC: isUTC });\n }\n if (unit === 'isoWeek') {\n setISODayOfWeek(_date, 1);\n }\n // quarters are also special\n if (unit === 'quarter') {\n setMonth(_date, Math.floor(getMonth(_date, isUTC) / 3) * 3, isUTC);\n }\n return _date;\n}\nexport function endOf(date, unit, isUTC) {\n var _unit = unit;\n // 'date' is an alias for 'day', so it should be considered as such.\n if (_unit === 'date') {\n _unit = 'day';\n }\n var start = startOf(date, _unit, isUTC);\n var _step = add(start, 1, _unit === 'isoWeek' ? 'week' : _unit, isUTC);\n var res = subtract(_step, 1, 'milliseconds', isUTC);\n return res;\n}\n//# sourceMappingURL=start-end-of.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/utils/start-end-of.js\n// module id = 151\n// module chunks = 1","// fastest way to clone date\n// https://jsperf.com/clone-date-object2\nexport function cloneDate(date) {\n return new Date(date.getTime());\n}\n//# sourceMappingURL=clone.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/create/clone.js\n// module id = 152\n// module chunks = 1","/* tslint:disable:max-file-line-count */\nimport { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { DateFormatter } from './date-formatter';\n// const MIN_DATE:Date = void 0;\n// const MAX_DATE:Date = void 0;\n// const DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];\n/*\n const KEYS = {\n 13: 'enter',\n 32: 'space',\n 33: 'pageup',\n 34: 'pagedown',\n 35: 'end',\n 36: 'home',\n 37: 'left',\n 38: 'up',\n 39: 'right',\n 40: 'down'\n };\n */\nvar DatePickerInnerComponent = (function () {\n function DatePickerInnerComponent() {\n this.selectionDone = new EventEmitter(undefined);\n this.update = new EventEmitter(false);\n this.activeDateChange = new EventEmitter(undefined);\n this.stepDay = {};\n this.stepMonth = {};\n this.stepYear = {};\n this.modes = ['day', 'month', 'year'];\n this.dateFormatter = new DateFormatter();\n }\n Object.defineProperty(DatePickerInnerComponent.prototype, \"activeDate\", {\n get: function () {\n return this._activeDate;\n },\n set: function (value) {\n this._activeDate = value;\n },\n enumerable: true,\n configurable: true\n });\n // todo: add formatter value to Date object\n DatePickerInnerComponent.prototype.ngOnInit = function () {\n // todo: use date for unique value\n this.uniqueId = \"datepicker--\" + Math.floor(Math.random() * 10000);\n if (this.initDate) {\n this.activeDate = this.initDate;\n this.selectedDate = new Date(this.activeDate.valueOf());\n this.update.emit(this.activeDate);\n }\n else if (this.activeDate === undefined) {\n this.activeDate = new Date();\n }\n };\n // this.refreshView should be called here to reflect the changes on the fly\n // tslint:disable-next-line:no-unused-variable\n DatePickerInnerComponent.prototype.ngOnChanges = function (changes) {\n this.refreshView();\n this.checkIfActiveDateGotUpdated(changes.activeDate);\n };\n // Check if activeDate has been update and then emit the activeDateChange with the new date\n DatePickerInnerComponent.prototype.checkIfActiveDateGotUpdated = function (activeDate) {\n if (activeDate && !activeDate.firstChange) {\n var previousValue = activeDate.previousValue;\n if (previousValue &&\n previousValue instanceof Date &&\n previousValue.getTime() !== activeDate.currentValue.getTime()) {\n this.activeDateChange.emit(this.activeDate);\n }\n }\n };\n DatePickerInnerComponent.prototype.setCompareHandler = function (handler, type) {\n if (type === 'day') {\n this.compareHandlerDay = handler;\n }\n if (type === 'month') {\n this.compareHandlerMonth = handler;\n }\n if (type === 'year') {\n this.compareHandlerYear = handler;\n }\n };\n DatePickerInnerComponent.prototype.compare = function (date1, date2) {\n if (date1 === undefined || date2 === undefined) {\n return undefined;\n }\n if (this.datepickerMode === 'day' && this.compareHandlerDay) {\n return this.compareHandlerDay(date1, date2);\n }\n if (this.datepickerMode === 'month' && this.compareHandlerMonth) {\n return this.compareHandlerMonth(date1, date2);\n }\n if (this.datepickerMode === 'year' && this.compareHandlerYear) {\n return this.compareHandlerYear(date1, date2);\n }\n return void 0;\n };\n DatePickerInnerComponent.prototype.setRefreshViewHandler = function (handler, type) {\n if (type === 'day') {\n this.refreshViewHandlerDay = handler;\n }\n if (type === 'month') {\n this.refreshViewHandlerMonth = handler;\n }\n if (type === 'year') {\n this.refreshViewHandlerYear = handler;\n }\n };\n DatePickerInnerComponent.prototype.refreshView = function () {\n if (this.datepickerMode === 'day' && this.refreshViewHandlerDay) {\n this.refreshViewHandlerDay();\n }\n if (this.datepickerMode === 'month' && this.refreshViewHandlerMonth) {\n this.refreshViewHandlerMonth();\n }\n if (this.datepickerMode === 'year' && this.refreshViewHandlerYear) {\n this.refreshViewHandlerYear();\n }\n };\n DatePickerInnerComponent.prototype.dateFilter = function (date, format) {\n return this.dateFormatter.format(date, format, this.locale);\n };\n DatePickerInnerComponent.prototype.isActive = function (dateObject) {\n if (this.compare(dateObject.date, this.activeDate) === 0) {\n this.activeDateId = dateObject.uid;\n return true;\n }\n return false;\n };\n DatePickerInnerComponent.prototype.createDateObject = function (date, format) {\n var dateObject = {};\n dateObject.date = new Date(date.getFullYear(), date.getMonth(), date.getDate());\n dateObject.date = this.fixTimeZone(dateObject.date);\n dateObject.label = this.dateFilter(date, format);\n dateObject.selected = this.compare(date, this.selectedDate) === 0;\n dateObject.disabled = this.isDisabled(date);\n dateObject.current = this.compare(date, new Date()) === 0;\n dateObject.customClass = this.getCustomClassForDate(dateObject.date);\n return dateObject;\n };\n DatePickerInnerComponent.prototype.split = function (arr, size) {\n var arrays = [];\n while (arr.length > 0) {\n arrays.push(arr.splice(0, size));\n }\n return arrays;\n };\n // Fix a hard-reproducible bug with timezones\n // The bug depends on OS, browser, current timezone and current date\n // i.e.\n // var date = new Date(2014, 0, 1);\n // console.log(date.getFullYear(), date.getMonth(), date.getDate(),\n // date.getHours()); can result in \"2013 11 31 23\" because of the bug.\n DatePickerInnerComponent.prototype.fixTimeZone = function (date) {\n var hours = date.getHours();\n return new Date(date.getFullYear(), date.getMonth(), date.getDate(), hours === 23 ? hours + 2 : 0);\n };\n DatePickerInnerComponent.prototype.select = function (date, isManual) {\n if (isManual === void 0) { isManual = true; }\n if (this.datepickerMode === this.minMode) {\n if (!this.activeDate) {\n this.activeDate = new Date(0, 0, 0, 0, 0, 0, 0);\n }\n this.activeDate = new Date(date.getFullYear(), date.getMonth(), date.getDate());\n this.activeDate = this.fixTimeZone(this.activeDate);\n if (isManual) {\n this.selectionDone.emit(this.activeDate);\n }\n }\n else {\n this.activeDate = new Date(date.getFullYear(), date.getMonth(), date.getDate());\n this.activeDate = this.fixTimeZone(this.activeDate);\n if (isManual) {\n this.datepickerMode = this.modes[this.modes.indexOf(this.datepickerMode) - 1];\n }\n }\n this.selectedDate = new Date(this.activeDate.valueOf());\n this.update.emit(this.activeDate);\n this.refreshView();\n };\n DatePickerInnerComponent.prototype.move = function (direction) {\n var expectedStep;\n if (this.datepickerMode === 'day') {\n expectedStep = this.stepDay;\n }\n if (this.datepickerMode === 'month') {\n expectedStep = this.stepMonth;\n }\n if (this.datepickerMode === 'year') {\n expectedStep = this.stepYear;\n }\n if (expectedStep) {\n var year = this.activeDate.getFullYear() + direction * (expectedStep.years || 0);\n var month = this.activeDate.getMonth() + direction * (expectedStep.months || 0);\n this.activeDate = new Date(year, month, 1);\n this.refreshView();\n this.activeDateChange.emit(this.activeDate);\n }\n };\n DatePickerInnerComponent.prototype.toggleMode = function (_direction) {\n var direction = _direction || 1;\n if ((this.datepickerMode === this.maxMode && direction === 1) ||\n (this.datepickerMode === this.minMode && direction === -1)) {\n return;\n }\n this.datepickerMode = this.modes[this.modes.indexOf(this.datepickerMode) + direction];\n this.refreshView();\n };\n DatePickerInnerComponent.prototype.getCustomClassForDate = function (date) {\n var _this = this;\n if (!this.customClass) {\n return '';\n }\n // todo: build a hash of custom classes, it will work faster\n var customClassObject = this.customClass.find(function (customClass) {\n return (customClass.date.valueOf() === date.valueOf() &&\n customClass.mode === _this.datepickerMode);\n }, this);\n return customClassObject === undefined ? '' : customClassObject.clazz;\n };\n DatePickerInnerComponent.prototype.compareDateDisabled = function (date1Disabled, date2) {\n if (date1Disabled === undefined || date2 === undefined) {\n return undefined;\n }\n if (date1Disabled.mode === 'day' && this.compareHandlerDay) {\n return this.compareHandlerDay(date1Disabled.date, date2);\n }\n if (date1Disabled.mode === 'month' && this.compareHandlerMonth) {\n return this.compareHandlerMonth(date1Disabled.date, date2);\n }\n if (date1Disabled.mode === 'year' && this.compareHandlerYear) {\n return this.compareHandlerYear(date1Disabled.date, date2);\n }\n return undefined;\n };\n DatePickerInnerComponent.prototype.isDisabled = function (date) {\n var _this = this;\n var isDateDisabled = false;\n if (this.dateDisabled) {\n this.dateDisabled.forEach(function (disabledDate) {\n if (_this.compareDateDisabled(disabledDate, date) === 0) {\n isDateDisabled = true;\n }\n });\n }\n if (this.dayDisabled) {\n isDateDisabled =\n isDateDisabled ||\n this.dayDisabled.indexOf(date.getDay()) > -1;\n }\n return (isDateDisabled ||\n (this.minDate && this.compare(date, this.minDate) < 0) ||\n (this.maxDate && this.compare(date, this.maxDate) > 0));\n };\n DatePickerInnerComponent.decorators = [\n { type: Component, args: [{\n selector: 'datepicker-inner',\n template: \"\\n \\n \\n \\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n DatePickerInnerComponent.ctorParameters = function () { return []; };\n DatePickerInnerComponent.propDecorators = {\n 'locale': [{ type: Input },],\n 'datepickerMode': [{ type: Input },],\n 'startingDay': [{ type: Input },],\n 'yearRange': [{ type: Input },],\n 'minDate': [{ type: Input },],\n 'maxDate': [{ type: Input },],\n 'minMode': [{ type: Input },],\n 'maxMode': [{ type: Input },],\n 'showWeeks': [{ type: Input },],\n 'formatDay': [{ type: Input },],\n 'formatMonth': [{ type: Input },],\n 'formatYear': [{ type: Input },],\n 'formatDayHeader': [{ type: Input },],\n 'formatDayTitle': [{ type: Input },],\n 'formatMonthTitle': [{ type: Input },],\n 'onlyCurrentMonth': [{ type: Input },],\n 'shortcutPropagation': [{ type: Input },],\n 'customClass': [{ type: Input },],\n 'monthColLimit': [{ type: Input },],\n 'yearColLimit': [{ type: Input },],\n 'dateDisabled': [{ type: Input },],\n 'dayDisabled': [{ type: Input },],\n 'initDate': [{ type: Input },],\n 'selectionDone': [{ type: Output },],\n 'update': [{ type: Output },],\n 'activeDateChange': [{ type: Output },],\n 'activeDate': [{ type: Input },],\n };\n return DatePickerInnerComponent;\n}());\nexport { DatePickerInnerComponent };\n//# sourceMappingURL=datepicker-inner.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/datepicker-inner.component.js\n// module id = 153\n// module chunks = 1","import { Injectable } from '@angular/core';\nvar BsDatepickerActions = (function () {\n function BsDatepickerActions() {\n }\n BsDatepickerActions.prototype.calculate = function () {\n return { type: BsDatepickerActions.CALCULATE };\n };\n BsDatepickerActions.prototype.format = function () {\n return { type: BsDatepickerActions.FORMAT };\n };\n BsDatepickerActions.prototype.flag = function () {\n return { type: BsDatepickerActions.FLAG };\n };\n BsDatepickerActions.prototype.select = function (date) {\n return {\n type: BsDatepickerActions.SELECT,\n payload: date\n };\n };\n BsDatepickerActions.prototype.changeViewMode = function (event) {\n return {\n type: BsDatepickerActions.CHANGE_VIEWMODE,\n payload: event\n };\n };\n BsDatepickerActions.prototype.navigateTo = function (event) {\n return {\n type: BsDatepickerActions.NAVIGATE_TO,\n payload: event\n };\n };\n BsDatepickerActions.prototype.navigateStep = function (step) {\n return {\n type: BsDatepickerActions.NAVIGATE_OFFSET,\n payload: step\n };\n };\n BsDatepickerActions.prototype.setOptions = function (options) {\n return {\n type: BsDatepickerActions.SET_OPTIONS,\n payload: options\n };\n };\n // date range picker\n BsDatepickerActions.prototype.selectRange = function (value) {\n return {\n type: BsDatepickerActions.SELECT_RANGE,\n payload: value\n };\n };\n BsDatepickerActions.prototype.hoverDay = function (event) {\n return {\n type: BsDatepickerActions.HOVER,\n payload: event.isHovered ? event.cell.date : null\n };\n };\n BsDatepickerActions.prototype.minDate = function (date) {\n return {\n type: BsDatepickerActions.SET_MIN_DATE,\n payload: date\n };\n };\n BsDatepickerActions.prototype.maxDate = function (date) {\n return {\n type: BsDatepickerActions.SET_MAX_DATE,\n payload: date\n };\n };\n BsDatepickerActions.prototype.isDisabled = function (value) {\n return {\n type: BsDatepickerActions.SET_IS_DISABLED,\n payload: value\n };\n };\n BsDatepickerActions.prototype.setLocale = function (locale) {\n return {\n type: BsDatepickerActions.SET_LOCALE,\n payload: locale\n };\n };\n BsDatepickerActions.CALCULATE = '[datepicker] calculate dates matrix';\n BsDatepickerActions.FORMAT = '[datepicker] format datepicker values';\n BsDatepickerActions.FLAG = '[datepicker] set flags';\n BsDatepickerActions.SELECT = '[datepicker] select date';\n BsDatepickerActions.NAVIGATE_OFFSET = '[datepicker] shift view date';\n BsDatepickerActions.NAVIGATE_TO = '[datepicker] change view date';\n BsDatepickerActions.SET_OPTIONS = '[datepicker] update render options';\n BsDatepickerActions.HOVER = '[datepicker] hover date';\n BsDatepickerActions.CHANGE_VIEWMODE = '[datepicker] switch view mode';\n BsDatepickerActions.SET_MIN_DATE = '[datepicker] set min date';\n BsDatepickerActions.SET_MAX_DATE = '[datepicker] set max date';\n BsDatepickerActions.SET_IS_DISABLED = '[datepicker] set is disabled';\n BsDatepickerActions.SET_LOCALE = '[datepicker] set datepicker locale';\n BsDatepickerActions.SELECT_RANGE = '[daterangepicker] select dates range';\n BsDatepickerActions.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsDatepickerActions.ctorParameters = function () { return []; };\n return BsDatepickerActions;\n}());\nexport { BsDatepickerActions };\n//# sourceMappingURL=bs-datepicker.actions.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/reducer/bs-datepicker.actions.js\n// module id = 154\n// module chunks = 1","import { Injectable } from '@angular/core';\nimport { BehaviorSubject } from 'rxjs/BehaviorSubject';\nvar BsLocaleService = (function () {\n function BsLocaleService() {\n this._defaultLocale = 'en';\n this._locale = new BehaviorSubject(this._defaultLocale);\n this._localeChange = this._locale.asObservable();\n }\n Object.defineProperty(BsLocaleService.prototype, \"locale\", {\n get: function () {\n return this._locale;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsLocaleService.prototype, \"localeChange\", {\n get: function () {\n return this._localeChange;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsLocaleService.prototype, \"currentLocale\", {\n get: function () {\n return this._locale.getValue();\n },\n enumerable: true,\n configurable: true\n });\n BsLocaleService.prototype.use = function (locale) {\n if (locale === this.currentLocale) {\n return;\n }\n this._locale.next(locale);\n };\n BsLocaleService.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsLocaleService.ctorParameters = function () { return []; };\n return BsLocaleService;\n}());\nexport { BsLocaleService };\n//# sourceMappingURL=bs-locale.service.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/bs-locale.service.js\n// module id = 155\n// module chunks = 1","import { Injectable } from '@angular/core';\nvar ModalOptions = (function () {\n function ModalOptions() {\n }\n ModalOptions.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n ModalOptions.ctorParameters = function () { return []; };\n return ModalOptions;\n}());\nexport { ModalOptions };\nexport var modalConfigDefaults = {\n backdrop: true,\n keyboard: true,\n focus: true,\n show: false,\n ignoreBackdropClick: false,\n class: '',\n animated: true,\n initialState: {}\n};\nexport var CLASS_NAME = {\n SCROLLBAR_MEASURER: 'modal-scrollbar-measure',\n BACKDROP: 'modal-backdrop',\n OPEN: 'modal-open',\n FADE: 'fade',\n IN: 'in',\n SHOW: 'show' // bs4\n};\nexport var SELECTOR = {\n DIALOG: '.modal-dialog',\n DATA_TOGGLE: '[data-toggle=\"modal\"]',\n DATA_DISMISS: '[data-dismiss=\"modal\"]',\n FIXED_CONTENT: '.navbar-fixed-top, .navbar-fixed-bottom, .is-fixed'\n};\nexport var TRANSITION_DURATIONS = {\n MODAL: 300,\n BACKDROP: 150\n};\nexport var DISMISS_REASONS = {\n BACKRDOP: 'backdrop-click',\n ESC: 'esc'\n};\n//# sourceMappingURL=modal-options.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/modal/modal-options.class.js\n// module id = 156\n// module chunks = 1","/*tslint:disable */\n/**\n * @license\n * Copyright Google Inc. All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * JS version of browser APIs. This library can only run in the browser.\n */\nvar win = typeof window !== 'undefined' && window || {};\nexport { win as window };\nexport var document = win.document;\nexport var location = win.location;\nexport var gc = win['gc'] ? function () { return win['gc'](); } : function () { return null; };\nexport var performance = win['performance'] ? win['performance'] : null;\nexport var Event = win['Event'];\nexport var MouseEvent = win['MouseEvent'];\nexport var KeyboardEvent = win['KeyboardEvent'];\nexport var EventTarget = win['EventTarget'];\nexport var History = win['History'];\nexport var Location = win['Location'];\nexport var EventListener = win['EventListener'];\n//# sourceMappingURL=browser.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/utils/facade/browser.js\n// module id = 179\n// module chunks = 1","import { Injectable } from '@angular/core';\n/** Provides default values for Pagination and pager components */\nexport var PaginationConfig = (function () {\n function PaginationConfig() {\n this.main = {\n maxSize: void 0,\n itemsPerPage: 10,\n boundaryLinks: false,\n directionLinks: true,\n firstText: 'First',\n previousText: 'Previous',\n nextText: 'Next',\n lastText: 'Last',\n pageBtnClass: '',\n rotate: true\n };\n this.pager = {\n itemsPerPage: 15,\n previousText: '« Previous',\n nextText: 'Next »',\n pageBtnClass: '',\n align: true\n };\n }\n PaginationConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n PaginationConfig.ctorParameters = function () { return []; };\n return PaginationConfig;\n}());\n//# sourceMappingURL=pagination.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/pagination/pagination.config.js\n// module id = 180\n// module chunks = 1","import { Injectable } from '@angular/core';\n/** Default values provider for tooltip */\nexport var TooltipConfig = (function () {\n function TooltipConfig() {\n /** tooltip placement, supported positions: 'top', 'bottom', 'left', 'right' */\n this.placement = 'top';\n /** array of event names which triggers tooltip opening */\n this.triggers = 'hover focus';\n }\n TooltipConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n TooltipConfig.ctorParameters = function () { return []; };\n return TooltipConfig;\n}());\n//# sourceMappingURL=tooltip.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/tooltip/tooltip.config.js\n// module id = 181\n// module chunks = 1","import { Injectable } from '@angular/core';\n/**\n * Configuration service for the Popover directive.\n * You can inject this service, typically in your root component, and customize\n * the values of its properties in order to provide default values for all the\n * popovers used in the application.\n */\nexport var PopoverConfig = (function () {\n function PopoverConfig() {\n /**\n * Placement of a popover. Accepts: \"top\", \"bottom\", \"left\", \"right\"\n */\n this.placement = 'top';\n /**\n * Specifies events that should trigger. Supports a space separated list of\n * event names.\n */\n this.triggers = 'click';\n }\n PopoverConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n PopoverConfig.ctorParameters = function () { return []; };\n return PopoverConfig;\n}());\n//# sourceMappingURL=popover.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/popover/popover.config.js\n// module id = 182\n// module chunks = 1","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar recaptcha_component_1 = require(\"./recaptcha/recaptcha.component\");\nexports.RecaptchaComponent = recaptcha_component_1.RecaptchaComponent;\nvar recaptcha_loader_service_1 = require(\"./recaptcha/recaptcha-loader.service\");\nexports.RecaptchaLoaderService = recaptcha_loader_service_1.RecaptchaLoaderService;\nexports.RECAPTCHA_LANGUAGE = recaptcha_loader_service_1.RECAPTCHA_LANGUAGE;\nvar recaptcha_module_1 = require(\"./recaptcha/recaptcha.module\");\nexports.RecaptchaModule = recaptcha_module_1.RecaptchaModule;\nvar recaptcha_settings_1 = require(\"./recaptcha/recaptcha-settings\");\nexports.RECAPTCHA_SETTINGS = recaptcha_settings_1.RECAPTCHA_SETTINGS;\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng-recaptcha/index.js\n// module id = 183\n// module chunks = 1","import { createLocalOrUTC } from './from-anything';\nimport { isDate } from '../utils/type-checks';\nexport function parseDate(input, format, localeKey, strict, isUTC) {\n if (isDate(input)) {\n return input;\n }\n var config = createLocalOrUTC(input, format, localeKey, strict, isUTC);\n return config._d;\n}\n//# sourceMappingURL=local.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/create/local.js\n// module id = 184\n// module chunks = 1","export { OnChange } from './decorators';\nexport { LinkedList } from './linked-list.class';\nexport { isBs3 } from './theme-provider';\nexport { Trigger } from './trigger.class';\nexport { Utils } from './utils.class';\nexport { setTheme } from './theme-provider';\n//# sourceMappingURL=index.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/utils/index.js\n// module id = 185\n// module chunks = 1","import { getDay, isFirstDayOfWeek } from '../../chronos/utils/date-getters';\nimport { shiftDate } from '../../chronos/utils/date-setters';\nimport { isAfter, isBefore } from '../../chronos/utils/date-compare';\nimport { endOf, startOf } from '../../chronos/utils/start-end-of';\nexport function getStartingDayOfCalendar(date, options) {\n if (isFirstDayOfWeek(date, options.firstDayOfWeek)) {\n return date;\n }\n var weekDay = getDay(date);\n var offset = calculateDateOffset(weekDay, options.firstDayOfWeek);\n return shiftDate(date, { day: -offset });\n}\nexport function calculateDateOffset(weekday, startingDayOffset) {\n if (startingDayOffset === 0) {\n return weekday;\n }\n var offset = weekday - startingDayOffset % 7;\n return offset < 0 ? offset + 7 : offset;\n}\nexport function isMonthDisabled(date, min, max) {\n var minBound = min && isBefore(endOf(date, 'month'), min, 'day');\n var maxBound = max && isAfter(startOf(date, 'month'), max, 'day');\n return minBound || maxBound;\n}\nexport function isYearDisabled(date, min, max) {\n var minBound = min && isBefore(endOf(date, 'year'), min, 'day');\n var maxBound = max && isAfter(startOf(date, 'year'), max, 'day');\n return minBound || maxBound;\n}\n//# sourceMappingURL=bs-calendar-utils.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/utils/bs-calendar-utils.js\n// module id = 186\n// module chunks = 1","/** *************** */\n// events\n/** *************** */\nexport var BsNavigationDirection;\n(function (BsNavigationDirection) {\n BsNavigationDirection[BsNavigationDirection[\"UP\"] = 0] = \"UP\";\n BsNavigationDirection[BsNavigationDirection[\"DOWN\"] = 1] = \"DOWN\";\n})(BsNavigationDirection || (BsNavigationDirection = {}));\n//# sourceMappingURL=index.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/models/index.js\n// module id = 187\n// module chunks = 1","import { Component, ElementRef, Renderer2 } from '@angular/core';\nimport { CLASS_NAME } from './modal-options.class';\nimport { isBs3 } from '../utils/theme-provider';\nimport { Utils } from '../utils/utils.class';\n/** This component will be added as background layout for modals if enabled */\nvar ModalBackdropComponent = (function () {\n function ModalBackdropComponent(element, renderer) {\n this._isShown = false;\n this.element = element;\n this.renderer = renderer;\n }\n Object.defineProperty(ModalBackdropComponent.prototype, \"isAnimated\", {\n get: function () {\n return this._isAnimated;\n },\n set: function (value) {\n this._isAnimated = value;\n // this.renderer.setElementClass(this.element.nativeElement, `${ClassName.FADE}`, value);\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ModalBackdropComponent.prototype, \"isShown\", {\n get: function () {\n return this._isShown;\n },\n set: function (value) {\n this._isShown = value;\n if (value) {\n this.renderer.addClass(this.element.nativeElement, \"\" + CLASS_NAME.IN);\n }\n else {\n this.renderer.removeClass(this.element.nativeElement, \"\" + CLASS_NAME.IN);\n }\n if (!isBs3()) {\n if (value) {\n this.renderer.addClass(this.element.nativeElement, \"\" + CLASS_NAME.SHOW);\n }\n else {\n this.renderer.removeClass(this.element.nativeElement, \"\" + CLASS_NAME.SHOW);\n }\n }\n },\n enumerable: true,\n configurable: true\n });\n ModalBackdropComponent.prototype.ngOnInit = function () {\n if (this.isAnimated) {\n this.renderer.addClass(this.element.nativeElement, \"\" + CLASS_NAME.FADE);\n Utils.reflow(this.element.nativeElement);\n }\n this.isShown = true;\n };\n ModalBackdropComponent.decorators = [\n { type: Component, args: [{\n selector: 'bs-modal-backdrop',\n template: ' ',\n host: { class: CLASS_NAME.BACKDROP }\n },] },\n ];\n /** @nocollapse */\n ModalBackdropComponent.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Renderer2, },\n ]; };\n return ModalBackdropComponent;\n}());\nexport { ModalBackdropComponent };\n//# sourceMappingURL=modal-backdrop.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/modal/modal-backdrop.component.js\n// module id = 188\n// module chunks = 1","// todo: split\nimport { Injectable } from '@angular/core';\n/** Provides default values for Pagination and pager components */\nvar PaginationConfig = (function () {\n function PaginationConfig() {\n this.main = {\n maxSize: void 0,\n itemsPerPage: 10,\n boundaryLinks: false,\n directionLinks: true,\n firstText: 'First',\n previousText: 'Previous',\n nextText: 'Next',\n lastText: 'Last',\n pageBtnClass: '',\n rotate: true\n };\n this.pager = {\n itemsPerPage: 15,\n previousText: '« Previous',\n nextText: 'Next »',\n pageBtnClass: '',\n align: true\n };\n }\n PaginationConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n PaginationConfig.ctorParameters = function () { return []; };\n return PaginationConfig;\n}());\nexport { PaginationConfig };\n//# sourceMappingURL=pagination.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/pagination/pagination.config.js\n// module id = 189\n// module chunks = 1","import { Injectable } from '@angular/core';\nvar TimepickerActions = (function () {\n function TimepickerActions() {\n }\n TimepickerActions.prototype.writeValue = function (value) {\n return {\n type: TimepickerActions.WRITE_VALUE,\n payload: value\n };\n };\n TimepickerActions.prototype.changeHours = function (event) {\n return {\n type: TimepickerActions.CHANGE_HOURS,\n payload: event\n };\n };\n TimepickerActions.prototype.changeMinutes = function (event) {\n return {\n type: TimepickerActions.CHANGE_MINUTES,\n payload: event\n };\n };\n TimepickerActions.prototype.changeSeconds = function (event) {\n return {\n type: TimepickerActions.CHANGE_SECONDS,\n payload: event\n };\n };\n TimepickerActions.prototype.setTime = function (value) {\n return {\n type: TimepickerActions.SET_TIME_UNIT,\n payload: value\n };\n };\n TimepickerActions.prototype.updateControls = function (value) {\n return {\n type: TimepickerActions.UPDATE_CONTROLS,\n payload: value\n };\n };\n TimepickerActions.WRITE_VALUE = '[timepicker] write value from ng model';\n TimepickerActions.CHANGE_HOURS = '[timepicker] change hours';\n TimepickerActions.CHANGE_MINUTES = '[timepicker] change minutes';\n TimepickerActions.CHANGE_SECONDS = '[timepicker] change seconds';\n TimepickerActions.SET_TIME_UNIT = '[timepicker] set time unit';\n TimepickerActions.UPDATE_CONTROLS = '[timepicker] update controls';\n TimepickerActions.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n TimepickerActions.ctorParameters = function () { return []; };\n return TimepickerActions;\n}());\nexport { TimepickerActions };\n//# sourceMappingURL=timepicker.actions.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/timepicker/reducer/timepicker.actions.js\n// module id = 190\n// module chunks = 1","import { Injectable } from '@angular/core';\n/** Provides default configuration values for timepicker */\nvar TimepickerConfig = (function () {\n function TimepickerConfig() {\n /** hours change step */\n this.hourStep = 1;\n /** hours change step */\n this.minuteStep = 5;\n /** seconds changes step */\n this.secondsStep = 10;\n /** if true works in 12H mode and displays AM/PM. If false works in 24H mode and hides AM/PM */\n this.showMeridian = true;\n /** meridian labels based on locale */\n this.meridians = ['AM', 'PM'];\n /** if true hours and minutes fields will be readonly */\n this.readonlyInput = false;\n /** if true hours and minutes fields will be disabled */\n this.disabled = false;\n /** if true scroll inside hours and minutes inputs will change time */\n this.mousewheel = true;\n /** if true up/down arrowkeys inside hours and minutes inputs will change time */\n this.arrowkeys = true;\n /** if true spinner arrows above and below the inputs will be shown */\n this.showSpinners = true;\n /** show seconds in timepicker */\n this.showSeconds = false;\n /** show minutes in timepicker */\n this.showMinutes = true;\n }\n TimepickerConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n TimepickerConfig.ctorParameters = function () { return []; };\n return TimepickerConfig;\n}());\nexport { TimepickerConfig };\n//# sourceMappingURL=timepicker.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/timepicker/timepicker.config.js\n// module id = 191\n// module chunks = 1","import { Injectable } from '@angular/core';\n/** Default values provider for tooltip */\nvar TooltipConfig = (function () {\n function TooltipConfig() {\n /** tooltip placement, supported positions: 'top', 'bottom', 'left', 'right' */\n this.placement = 'top';\n /** array of event names which triggers tooltip opening */\n this.triggers = 'hover focus';\n }\n TooltipConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n TooltipConfig.ctorParameters = function () { return []; };\n return TooltipConfig;\n}());\nexport { TooltipConfig };\n//# sourceMappingURL=tooltip.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/tooltip/tooltip.config.js\n// module id = 192\n// module chunks = 1","import { Injectable } from '@angular/core';\n/**\n * Configuration service for the Popover directive.\n * You can inject this service, typically in your root component, and customize\n * the values of its properties in order to provide default values for all the\n * popovers used in the application.\n */\nvar PopoverConfig = (function () {\n function PopoverConfig() {\n /**\n * Placement of a popover. Accepts: \"top\", \"bottom\", \"left\", \"right\", \"auto\"\n */\n this.placement = 'top';\n /**\n * Specifies events that should trigger. Supports a space separated list of\n * event names.\n */\n this.triggers = 'click';\n this.outsideClick = false;\n }\n PopoverConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n PopoverConfig.ctorParameters = function () { return []; };\n return PopoverConfig;\n}());\nexport { PopoverConfig };\n//# sourceMappingURL=popover.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/popover/popover.config.js\n// module id = 193\n// module chunks = 1","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { Directive, ElementRef, Injectable, NgModule, NgZone, Optional, SkipSelf } from '@angular/core';\nimport { Platform, PlatformModule } from '@angular/cdk/platform';\nimport { Subject } from 'rxjs/Subject';\nimport { Observable } from 'rxjs/Observable';\nimport { of } from 'rxjs/observable/of';\nimport { fromEvent } from 'rxjs/observable/fromEvent';\nimport { auditTime } from 'rxjs/operators/auditTime';\nimport { filter } from 'rxjs/operators/filter';\nimport { merge } from 'rxjs/observable/merge';\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Time in ms to throttle the scrolling events by default.\n */\nvar DEFAULT_SCROLL_TIME = 20;\n/**\n * Service contained all registered Scrollable references and emits an event when any one of the\n * Scrollable references emit a scrolled event.\n */\nvar ScrollDispatcher = /** @class */ (function () {\n function ScrollDispatcher(_ngZone, _platform) {\n this._ngZone = _ngZone;\n this._platform = _platform;\n /**\n * Subject for notifying that a registered scrollable reference element has been scrolled.\n */\n this._scrolled = new Subject();\n /**\n * Keeps track of the global `scroll` and `resize` subscriptions.\n */\n this._globalSubscription = null;\n /**\n * Keeps track of the amount of subscriptions to `scrolled`. Used for cleaning up afterwards.\n */\n this._scrolledCount = 0;\n /**\n * Map of all the scrollable references that are registered with the service and their\n * scroll event subscriptions.\n */\n this.scrollContainers = new Map();\n }\n /**\n * Registers a scrollable instance with the service and listens for its scrolled events. When the\n * scrollable is scrolled, the service emits the event to its scrolled observable.\n * @param scrollable Scrollable instance to be registered.\n */\n /**\n * Registers a scrollable instance with the service and listens for its scrolled events. When the\n * scrollable is scrolled, the service emits the event to its scrolled observable.\n * @param {?} scrollable Scrollable instance to be registered.\n * @return {?}\n */\n ScrollDispatcher.prototype.register = /**\n * Registers a scrollable instance with the service and listens for its scrolled events. When the\n * scrollable is scrolled, the service emits the event to its scrolled observable.\n * @param {?} scrollable Scrollable instance to be registered.\n * @return {?}\n */\n function (scrollable) {\n var _this = this;\n var /** @type {?} */ scrollSubscription = scrollable.elementScrolled()\n .subscribe(function () { return _this._scrolled.next(scrollable); });\n this.scrollContainers.set(scrollable, scrollSubscription);\n };\n /**\n * Deregisters a Scrollable reference and unsubscribes from its scroll event observable.\n * @param scrollable Scrollable instance to be deregistered.\n */\n /**\n * Deregisters a Scrollable reference and unsubscribes from its scroll event observable.\n * @param {?} scrollable Scrollable instance to be deregistered.\n * @return {?}\n */\n ScrollDispatcher.prototype.deregister = /**\n * Deregisters a Scrollable reference and unsubscribes from its scroll event observable.\n * @param {?} scrollable Scrollable instance to be deregistered.\n * @return {?}\n */\n function (scrollable) {\n var /** @type {?} */ scrollableReference = this.scrollContainers.get(scrollable);\n if (scrollableReference) {\n scrollableReference.unsubscribe();\n this.scrollContainers.delete(scrollable);\n }\n };\n /**\n * Returns an observable that emits an event whenever any of the registered Scrollable\n * references (or window, document, or body) fire a scrolled event. Can provide a time in ms\n * to override the default \"throttle\" time.\n *\n * **Note:** in order to avoid hitting change detection for every scroll event,\n * all of the events emitted from this stream will be run outside the Angular zone.\n * If you need to update any data bindings as a result of a scroll event, you have\n * to run the callback using `NgZone.run`.\n */\n /**\n * Returns an observable that emits an event whenever any of the registered Scrollable\n * references (or window, document, or body) fire a scrolled event. Can provide a time in ms\n * to override the default \"throttle\" time.\n *\n * **Note:** in order to avoid hitting change detection for every scroll event,\n * all of the events emitted from this stream will be run outside the Angular zone.\n * If you need to update any data bindings as a result of a scroll event, you have\n * to run the callback using `NgZone.run`.\n * @param {?=} auditTimeInMs\n * @return {?}\n */\n ScrollDispatcher.prototype.scrolled = /**\n * Returns an observable that emits an event whenever any of the registered Scrollable\n * references (or window, document, or body) fire a scrolled event. Can provide a time in ms\n * to override the default \"throttle\" time.\n *\n * **Note:** in order to avoid hitting change detection for every scroll event,\n * all of the events emitted from this stream will be run outside the Angular zone.\n * If you need to update any data bindings as a result of a scroll event, you have\n * to run the callback using `NgZone.run`.\n * @param {?=} auditTimeInMs\n * @return {?}\n */\n function (auditTimeInMs) {\n var _this = this;\n if (auditTimeInMs === void 0) { auditTimeInMs = DEFAULT_SCROLL_TIME; }\n return this._platform.isBrowser ? Observable.create(function (observer) {\n if (!_this._globalSubscription) {\n _this._addGlobalListener();\n }\n // In the case of a 0ms delay, use an observable without auditTime\n // since it does add a perceptible delay in processing overhead.\n var /** @type {?} */ subscription = auditTimeInMs > 0 ?\n _this._scrolled.pipe(auditTime(auditTimeInMs)).subscribe(observer) :\n _this._scrolled.subscribe(observer);\n _this._scrolledCount++;\n return function () {\n subscription.unsubscribe();\n _this._scrolledCount--;\n if (!_this._scrolledCount) {\n _this._removeGlobalListener();\n }\n };\n }) : of();\n };\n /**\n * @return {?}\n */\n ScrollDispatcher.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n var _this = this;\n this._removeGlobalListener();\n this.scrollContainers.forEach(function (_, container) { return _this.deregister(container); });\n };\n /**\n * Returns an observable that emits whenever any of the\n * scrollable ancestors of an element are scrolled.\n * @param elementRef Element whose ancestors to listen for.\n * @param auditTimeInMs Time to throttle the scroll events.\n */\n /**\n * Returns an observable that emits whenever any of the\n * scrollable ancestors of an element are scrolled.\n * @param {?} elementRef Element whose ancestors to listen for.\n * @param {?=} auditTimeInMs Time to throttle the scroll events.\n * @return {?}\n */\n ScrollDispatcher.prototype.ancestorScrolled = /**\n * Returns an observable that emits whenever any of the\n * scrollable ancestors of an element are scrolled.\n * @param {?} elementRef Element whose ancestors to listen for.\n * @param {?=} auditTimeInMs Time to throttle the scroll events.\n * @return {?}\n */\n function (elementRef, auditTimeInMs) {\n var /** @type {?} */ ancestors = this.getAncestorScrollContainers(elementRef);\n return this.scrolled(auditTimeInMs).pipe(filter(function (target) {\n return !target || ancestors.indexOf(target) > -1;\n }));\n };\n /** Returns all registered Scrollables that contain the provided element. */\n /**\n * Returns all registered Scrollables that contain the provided element.\n * @param {?} elementRef\n * @return {?}\n */\n ScrollDispatcher.prototype.getAncestorScrollContainers = /**\n * Returns all registered Scrollables that contain the provided element.\n * @param {?} elementRef\n * @return {?}\n */\n function (elementRef) {\n var _this = this;\n var /** @type {?} */ scrollingContainers = [];\n this.scrollContainers.forEach(function (_subscription, scrollable) {\n if (_this._scrollableContainsElement(scrollable, elementRef)) {\n scrollingContainers.push(scrollable);\n }\n });\n return scrollingContainers;\n };\n /**\n * Returns true if the element is contained within the provided Scrollable.\n * @param {?} scrollable\n * @param {?} elementRef\n * @return {?}\n */\n ScrollDispatcher.prototype._scrollableContainsElement = /**\n * Returns true if the element is contained within the provided Scrollable.\n * @param {?} scrollable\n * @param {?} elementRef\n * @return {?}\n */\n function (scrollable, elementRef) {\n var /** @type {?} */ element = elementRef.nativeElement;\n var /** @type {?} */ scrollableElement = scrollable.getElementRef().nativeElement;\n // Traverse through the element parents until we reach null, checking if any of the elements\n // are the scrollable's element.\n do {\n if (element == scrollableElement) {\n return true;\n }\n } while (element = element.parentElement);\n return false;\n };\n /**\n * Sets up the global scroll listeners.\n * @return {?}\n */\n ScrollDispatcher.prototype._addGlobalListener = /**\n * Sets up the global scroll listeners.\n * @return {?}\n */\n function () {\n var _this = this;\n this._globalSubscription = this._ngZone.runOutsideAngular(function () {\n return fromEvent(window.document, 'scroll').subscribe(function () { return _this._scrolled.next(); });\n });\n };\n /**\n * Cleans up the global scroll listener.\n * @return {?}\n */\n ScrollDispatcher.prototype._removeGlobalListener = /**\n * Cleans up the global scroll listener.\n * @return {?}\n */\n function () {\n if (this._globalSubscription) {\n this._globalSubscription.unsubscribe();\n this._globalSubscription = null;\n }\n };\n ScrollDispatcher.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n ScrollDispatcher.ctorParameters = function () { return [\n { type: NgZone, },\n { type: Platform, },\n ]; };\n return ScrollDispatcher;\n}());\n/**\n * \\@docs-private\n * @param {?} parentDispatcher\n * @param {?} ngZone\n * @param {?} platform\n * @return {?}\n */\nfunction SCROLL_DISPATCHER_PROVIDER_FACTORY(parentDispatcher, ngZone, platform) {\n return parentDispatcher || new ScrollDispatcher(ngZone, platform);\n}\n/**\n * \\@docs-private\n */\nvar SCROLL_DISPATCHER_PROVIDER = {\n // If there is already a ScrollDispatcher available, use that. Otherwise, provide a new one.\n provide: ScrollDispatcher,\n deps: [[new Optional(), new SkipSelf(), ScrollDispatcher], NgZone, Platform],\n useFactory: SCROLL_DISPATCHER_PROVIDER_FACTORY\n};\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Sends an event when the directive's element is scrolled. Registers itself with the\n * ScrollDispatcher service to include itself as part of its collection of scrolling events that it\n * can be listened to through the service.\n */\nvar CdkScrollable = /** @class */ (function () {\n function CdkScrollable(_elementRef, _scroll, _ngZone) {\n var _this = this;\n this._elementRef = _elementRef;\n this._scroll = _scroll;\n this._ngZone = _ngZone;\n this._elementScrolled = new Subject();\n this._scrollListener = function (event) { return _this._elementScrolled.next(event); };\n }\n /**\n * @return {?}\n */\n CdkScrollable.prototype.ngOnInit = /**\n * @return {?}\n */\n function () {\n var _this = this;\n this._ngZone.runOutsideAngular(function () {\n _this.getElementRef().nativeElement.addEventListener('scroll', _this._scrollListener);\n });\n this._scroll.register(this);\n };\n /**\n * @return {?}\n */\n CdkScrollable.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n this._scroll.deregister(this);\n if (this._scrollListener) {\n this.getElementRef().nativeElement.removeEventListener('scroll', this._scrollListener);\n }\n };\n /**\n * Returns observable that emits when a scroll event is fired on the host element.\n */\n /**\n * Returns observable that emits when a scroll event is fired on the host element.\n * @return {?}\n */\n CdkScrollable.prototype.elementScrolled = /**\n * Returns observable that emits when a scroll event is fired on the host element.\n * @return {?}\n */\n function () {\n return this._elementScrolled.asObservable();\n };\n /**\n * @return {?}\n */\n CdkScrollable.prototype.getElementRef = /**\n * @return {?}\n */\n function () {\n return this._elementRef;\n };\n CdkScrollable.decorators = [\n { type: Directive, args: [{\n selector: '[cdk-scrollable], [cdkScrollable]'\n },] },\n ];\n /** @nocollapse */\n CdkScrollable.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: ScrollDispatcher, },\n { type: NgZone, },\n ]; };\n return CdkScrollable;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Time in ms to throttle the resize events by default.\n */\nvar DEFAULT_RESIZE_TIME = 20;\n/**\n * Simple utility for getting the bounds of the browser viewport.\n * \\@docs-private\n */\nvar ViewportRuler = /** @class */ (function () {\n function ViewportRuler(_platform, ngZone) {\n var _this = this;\n this._platform = _platform;\n this._change = _platform.isBrowser ? ngZone.runOutsideAngular(function () {\n return merge(fromEvent(window, 'resize'), fromEvent(window, 'orientationchange'));\n }) : of();\n this._invalidateCache = this.change().subscribe(function () { return _this._updateViewportSize(); });\n }\n /**\n * @return {?}\n */\n ViewportRuler.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n this._invalidateCache.unsubscribe();\n };\n /** Returns the viewport's width and height. */\n /**\n * Returns the viewport's width and height.\n * @return {?}\n */\n ViewportRuler.prototype.getViewportSize = /**\n * Returns the viewport's width and height.\n * @return {?}\n */\n function () {\n if (!this._viewportSize) {\n this._updateViewportSize();\n }\n var /** @type {?} */ output = { width: this._viewportSize.width, height: this._viewportSize.height };\n // If we're not on a browser, don't cache the size since it'll be mocked out anyway.\n if (!this._platform.isBrowser) {\n this._viewportSize = /** @type {?} */ ((null));\n }\n return output;\n };\n /** Gets a ClientRect for the viewport's bounds. */\n /**\n * Gets a ClientRect for the viewport's bounds.\n * @return {?}\n */\n ViewportRuler.prototype.getViewportRect = /**\n * Gets a ClientRect for the viewport's bounds.\n * @return {?}\n */\n function () {\n // Use the document element's bounding rect rather than the window scroll properties\n // (e.g. pageYOffset, scrollY) due to in issue in Chrome and IE where window scroll\n // properties and client coordinates (boundingClientRect, clientX/Y, etc.) are in different\n // conceptual viewports. Under most circumstances these viewports are equivalent, but they\n // can disagree when the page is pinch-zoomed (on devices that support touch).\n // See https://bugs.chromium.org/p/chromium/issues/detail?id=489206#c4\n // We use the documentElement instead of the body because, by default (without a css reset)\n // browsers typically give the document body an 8px margin, which is not included in\n // getBoundingClientRect().\n var /** @type {?} */ scrollPosition = this.getViewportScrollPosition();\n var _a = this.getViewportSize(), width = _a.width, height = _a.height;\n return {\n top: scrollPosition.top,\n left: scrollPosition.left,\n bottom: scrollPosition.top + height,\n right: scrollPosition.left + width,\n height: height,\n width: width,\n };\n };\n /** Gets the (top, left) scroll position of the viewport. */\n /**\n * Gets the (top, left) scroll position of the viewport.\n * @return {?}\n */\n ViewportRuler.prototype.getViewportScrollPosition = /**\n * Gets the (top, left) scroll position of the viewport.\n * @return {?}\n */\n function () {\n // While we can get a reference to the fake document\n // during SSR, it doesn't have getBoundingClientRect.\n if (!this._platform.isBrowser) {\n return { top: 0, left: 0 };\n }\n // The top-left-corner of the viewport is determined by the scroll position of the document\n // body, normally just (scrollLeft, scrollTop). However, Chrome and Firefox disagree about\n // whether `document.body` or `document.documentElement` is the scrolled element, so reading\n // `scrollTop` and `scrollLeft` is inconsistent. However, using the bounding rect of\n // `document.documentElement` works consistently, where the `top` and `left` values will\n // equal negative the scroll position.\n var /** @type {?} */ documentRect = document.documentElement.getBoundingClientRect();\n var /** @type {?} */ top = -documentRect.top || document.body.scrollTop || window.scrollY ||\n document.documentElement.scrollTop || 0;\n var /** @type {?} */ left = -documentRect.left || document.body.scrollLeft || window.scrollX ||\n document.documentElement.scrollLeft || 0;\n return { top: top, left: left };\n };\n /**\n * Returns a stream that emits whenever the size of the viewport changes.\n * @param throttle Time in milliseconds to throttle the stream.\n */\n /**\n * Returns a stream that emits whenever the size of the viewport changes.\n * @param {?=} throttleTime\n * @return {?}\n */\n ViewportRuler.prototype.change = /**\n * Returns a stream that emits whenever the size of the viewport changes.\n * @param {?=} throttleTime\n * @return {?}\n */\n function (throttleTime) {\n if (throttleTime === void 0) { throttleTime = DEFAULT_RESIZE_TIME; }\n return throttleTime > 0 ? this._change.pipe(auditTime(throttleTime)) : this._change;\n };\n /**\n * Updates the cached viewport size.\n * @return {?}\n */\n ViewportRuler.prototype._updateViewportSize = /**\n * Updates the cached viewport size.\n * @return {?}\n */\n function () {\n this._viewportSize = this._platform.isBrowser ?\n { width: window.innerWidth, height: window.innerHeight } :\n { width: 0, height: 0 };\n };\n ViewportRuler.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n ViewportRuler.ctorParameters = function () { return [\n { type: Platform, },\n { type: NgZone, },\n ]; };\n return ViewportRuler;\n}());\n/**\n * \\@docs-private\n * @param {?} parentRuler\n * @param {?} platform\n * @param {?} ngZone\n * @return {?}\n */\nfunction VIEWPORT_RULER_PROVIDER_FACTORY(parentRuler, platform, ngZone) {\n return parentRuler || new ViewportRuler(platform, ngZone);\n}\n/**\n * \\@docs-private\n */\nvar VIEWPORT_RULER_PROVIDER = {\n // If there is already a ViewportRuler available, use that. Otherwise, provide a new one.\n provide: ViewportRuler,\n deps: [[new Optional(), new SkipSelf(), ViewportRuler], Platform, NgZone],\n useFactory: VIEWPORT_RULER_PROVIDER_FACTORY\n};\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\nvar ScrollDispatchModule = /** @class */ (function () {\n function ScrollDispatchModule() {\n }\n ScrollDispatchModule.decorators = [\n { type: NgModule, args: [{\n imports: [PlatformModule],\n exports: [CdkScrollable],\n declarations: [CdkScrollable],\n providers: [SCROLL_DISPATCHER_PROVIDER],\n },] },\n ];\n /** @nocollapse */\n ScrollDispatchModule.ctorParameters = function () { return []; };\n return ScrollDispatchModule;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { DEFAULT_SCROLL_TIME, ScrollDispatcher, SCROLL_DISPATCHER_PROVIDER_FACTORY, SCROLL_DISPATCHER_PROVIDER, CdkScrollable, DEFAULT_RESIZE_TIME, ViewportRuler, VIEWPORT_RULER_PROVIDER_FACTORY, VIEWPORT_RULER_PROVIDER, ScrollDispatchModule };\n//# sourceMappingURL=scrolling.es5.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/@angular/cdk/esm5/scrolling.es5.js\n// module id = 194\n// module chunks = 1","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { ChangeDetectionStrategy, Component, ElementRef, NgModule, ViewChild, ViewEncapsulation } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { MatCommonModule, MatRipple, MatRippleModule, mixinColor, mixinDisableRipple, mixinDisabled } from '@angular/material/core';\nimport { A11yModule, FocusMonitor } from '@angular/cdk/a11y';\nimport { __extends } from 'tslib';\nimport * as tslib_1 from 'tslib';\nimport { Platform } from '@angular/cdk/platform';\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Default color palette for round buttons (mat-fab and mat-mini-fab)\n */\nvar DEFAULT_ROUND_BUTTON_COLOR = 'accent';\n/**\n * Default color palette for flat buttons (mat-flat-button)\n */\nvar DEFAULT_FLAT_BUTTON_COLOR = 'primary';\n/**\n * List of classes to add to MatButton instances based on host attributes to\n * style as different variants.\n */\nvar BUTTON_HOST_ATTRIBUTES = [\n 'mat-button',\n 'mat-flat-button',\n 'mat-icon-button',\n 'mat-raised-button',\n 'mat-stroked-button',\n 'mat-mini-fab',\n 'mat-fab',\n];\n/**\n * \\@docs-private\n */\nvar MatButtonBase = /** @class */ (function () {\n function MatButtonBase(_elementRef) {\n this._elementRef = _elementRef;\n }\n return MatButtonBase;\n}());\nvar _MatButtonMixinBase = mixinColor(mixinDisabled(mixinDisableRipple(MatButtonBase)));\n/**\n * Material design button.\n */\nvar MatButton = /** @class */ (function (_super) {\n __extends(MatButton, _super);\n function MatButton(elementRef, _platform, _focusMonitor) {\n var _this = _super.call(this, elementRef) || this;\n _this._platform = _platform;\n _this._focusMonitor = _focusMonitor;\n /**\n * Whether the button is round.\n */\n _this._isRoundButton = _this._hasHostAttributes('mat-fab', 'mat-mini-fab');\n /**\n * Whether the button is icon button.\n */\n _this._isIconButton = _this._hasHostAttributes('mat-icon-button');\n // For each of the variant selectors that is prevent in the button's host\n // attributes, add the correct corresponding class.\n for (var _i = 0, BUTTON_HOST_ATTRIBUTES_1 = BUTTON_HOST_ATTRIBUTES; _i < BUTTON_HOST_ATTRIBUTES_1.length; _i++) {\n var attr = BUTTON_HOST_ATTRIBUTES_1[_i];\n if (_this._hasHostAttributes(attr)) {\n (/** @type {?} */ (elementRef.nativeElement)).classList.add(attr);\n }\n }\n _this._focusMonitor.monitor(_this._elementRef.nativeElement, true);\n if (_this._isRoundButton) {\n _this.color = DEFAULT_ROUND_BUTTON_COLOR;\n }\n else if (_this._hasHostAttributes('mat-flat-button')) {\n _this.color = DEFAULT_FLAT_BUTTON_COLOR;\n }\n return _this;\n }\n /**\n * @return {?}\n */\n MatButton.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n this._focusMonitor.stopMonitoring(this._elementRef.nativeElement);\n };\n /** Focuses the button. */\n /**\n * Focuses the button.\n * @return {?}\n */\n MatButton.prototype.focus = /**\n * Focuses the button.\n * @return {?}\n */\n function () {\n this._getHostElement().focus();\n };\n /**\n * @return {?}\n */\n MatButton.prototype._getHostElement = /**\n * @return {?}\n */\n function () {\n return this._elementRef.nativeElement;\n };\n /**\n * @return {?}\n */\n MatButton.prototype._isRippleDisabled = /**\n * @return {?}\n */\n function () {\n return this.disableRipple || this.disabled;\n };\n /** Gets whether the button has one of the given attributes. */\n /**\n * Gets whether the button has one of the given attributes.\n * @param {...?} attributes\n * @return {?}\n */\n MatButton.prototype._hasHostAttributes = /**\n * Gets whether the button has one of the given attributes.\n * @param {...?} attributes\n * @return {?}\n */\n function () {\n var _this = this;\n var attributes = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n attributes[_i] = arguments[_i];\n }\n // If not on the browser, say that there are none of the attributes present.\n // Since these only affect how the ripple displays (and ripples only happen on the client),\n // detecting these attributes isn't necessary when not on the browser.\n if (!this._platform.isBrowser) {\n return false;\n }\n return attributes.some(function (attribute) { return _this._getHostElement().hasAttribute(attribute); });\n };\n MatButton.decorators = [\n { type: Component, args: [{selector: \"button[mat-button], button[mat-raised-button], button[mat-icon-button],\\n button[mat-fab], button[mat-mini-fab], button[mat-stroked-button],\\n button[mat-flat-button]\",\n exportAs: 'matButton',\n host: {\n '[disabled]': 'disabled || null',\n },\n template: \"\",\n styles: [\".mat-button,.mat-flat-button,.mat-icon-button,.mat-stroked-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:88px;line-height:36px;padding:0 16px;border-radius:2px}.mat-button[disabled],.mat-flat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay{opacity:1}.mat-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner{border:0}.mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{transition:none;opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:1}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:88px;line-height:36px;padding:0 16px;border-radius:2px;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1)}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:1}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-raised-button:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mat-raised-button[disabled]{box-shadow:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button:not([class*=mat-elevation-z]){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:88px;line-height:36px;padding:0 16px;border-radius:2px;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:1}.mat-fab::-moz-focus-inner{border:0}.mat-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mat-fab[disabled]{box-shadow:none}.mat-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:88px;line-height:36px;padding:0 16px;border-radius:2px;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:1}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mat-mini-fab[disabled]{box-shadow:none}.mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button .mat-icon,.mat-icon-button i{line-height:24px}.mat-button,.mat-fab,.mat-icon-button,.mat-mini-fab,.mat-raised-button{color:currentColor}.mat-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*{vertical-align:middle}.mat-button-focus-overlay,.mat-button-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-button-focus-overlay{background-color:rgba(0,0,0,.12);border-radius:inherit;opacity:0;transition:opacity .2s cubic-bezier(.35,0,.25,1),background-color .2s cubic-bezier(.35,0,.25,1)}@media screen and (-ms-high-contrast:active){.mat-button-focus-overlay{background-color:rgba(255,255,255,.5)}}.mat-button-ripple-round{border-radius:50%;z-index:1}@media screen and (-ms-high-contrast:active){.mat-button,.mat-fab,.mat-flat-button,.mat-icon-button,.mat-mini-fab,.mat-raised-button{outline:solid 1px}}\"],\n inputs: ['disabled', 'disableRipple', 'color'],\n encapsulation: ViewEncapsulation.None,\n preserveWhitespaces: false,\n changeDetection: ChangeDetectionStrategy.OnPush,\n },] },\n ];\n /** @nocollapse */\n MatButton.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Platform, },\n { type: FocusMonitor, },\n ]; };\n MatButton.propDecorators = {\n \"ripple\": [{ type: ViewChild, args: [MatRipple,] },],\n };\n return MatButton;\n}(_MatButtonMixinBase));\n/**\n * Raised Material design button.\n */\nvar MatAnchor = /** @class */ (function (_super) {\n __extends(MatAnchor, _super);\n function MatAnchor(platform, focusMonitor, elementRef) {\n return _super.call(this, elementRef, platform, focusMonitor) || this;\n }\n /**\n * @param {?} event\n * @return {?}\n */\n MatAnchor.prototype._haltDisabledEvents = /**\n * @param {?} event\n * @return {?}\n */\n function (event) {\n // A disabled button shouldn't apply any actions\n if (this.disabled) {\n event.preventDefault();\n event.stopImmediatePropagation();\n }\n };\n MatAnchor.decorators = [\n { type: Component, args: [{selector: \"a[mat-button], a[mat-raised-button], a[mat-icon-button], a[mat-fab],\\n a[mat-mini-fab], a[mat-stroked-button], a[mat-flat-button]\",\n exportAs: 'matButton, matAnchor',\n host: {\n '[attr.tabindex]': 'disabled ? -1 : 0',\n '[attr.disabled]': 'disabled || null',\n '[attr.aria-disabled]': 'disabled.toString()',\n '(click)': '_haltDisabledEvents($event)',\n },\n inputs: ['disabled', 'disableRipple', 'color'],\n template: \"\",\n styles: [\".mat-button,.mat-flat-button,.mat-icon-button,.mat-stroked-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:88px;line-height:36px;padding:0 16px;border-radius:2px}.mat-button[disabled],.mat-flat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay{opacity:1}.mat-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner{border:0}.mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{transition:none;opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:1}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:88px;line-height:36px;padding:0 16px;border-radius:2px;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1)}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:1}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-raised-button:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mat-raised-button[disabled]{box-shadow:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button:not([class*=mat-elevation-z]){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:88px;line-height:36px;padding:0 16px;border-radius:2px;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:1}.mat-fab::-moz-focus-inner{border:0}.mat-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mat-fab[disabled]{box-shadow:none}.mat-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:0;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:88px;line-height:36px;padding:0 16px;border-radius:2px;transform:translate3d(0,0,0);transition:background .4s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:1}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mat-mini-fab[disabled]{box-shadow:none}.mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button .mat-icon,.mat-icon-button i{line-height:24px}.mat-button,.mat-fab,.mat-icon-button,.mat-mini-fab,.mat-raised-button{color:currentColor}.mat-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*{vertical-align:middle}.mat-button-focus-overlay,.mat-button-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-button-focus-overlay{background-color:rgba(0,0,0,.12);border-radius:inherit;opacity:0;transition:opacity .2s cubic-bezier(.35,0,.25,1),background-color .2s cubic-bezier(.35,0,.25,1)}@media screen and (-ms-high-contrast:active){.mat-button-focus-overlay{background-color:rgba(255,255,255,.5)}}.mat-button-ripple-round{border-radius:50%;z-index:1}@media screen and (-ms-high-contrast:active){.mat-button,.mat-fab,.mat-flat-button,.mat-icon-button,.mat-mini-fab,.mat-raised-button{outline:solid 1px}}\"],\n encapsulation: ViewEncapsulation.None,\n preserveWhitespaces: false,\n changeDetection: ChangeDetectionStrategy.OnPush,\n },] },\n ];\n /** @nocollapse */\n MatAnchor.ctorParameters = function () { return [\n { type: Platform, },\n { type: FocusMonitor, },\n { type: ElementRef, },\n ]; };\n return MatAnchor;\n}(MatButton));\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\nvar MatButtonModule = /** @class */ (function () {\n function MatButtonModule() {\n }\n MatButtonModule.decorators = [\n { type: NgModule, args: [{\n imports: [\n CommonModule,\n MatRippleModule,\n MatCommonModule,\n A11yModule,\n ],\n exports: [\n MatButton,\n MatAnchor,\n MatCommonModule,\n ],\n declarations: [\n MatButton,\n MatAnchor,\n ],\n },] },\n ];\n /** @nocollapse */\n MatButtonModule.ctorParameters = function () { return []; };\n return MatButtonModule;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { MatButtonModule, MatButtonBase, _MatButtonMixinBase, MatButton, MatAnchor };\n//# sourceMappingURL=button.es5.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/@angular/material/esm5/button.es5.js\n// module id = 195\n// module chunks = 1","import { NgModule } from '@angular/core';\nimport { CollapseDirective } from './collapse.directive';\nexport var CollapseModule = (function () {\n function CollapseModule() {\n }\n CollapseModule.forRoot = function () {\n return { ngModule: CollapseModule, providers: [] };\n };\n CollapseModule.decorators = [\n { type: NgModule, args: [{\n declarations: [CollapseDirective],\n exports: [CollapseDirective]\n },] },\n ];\n /** @nocollapse */\n CollapseModule.ctorParameters = function () { return []; };\n return CollapseModule;\n}());\n//# sourceMappingURL=collapse.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/collapse/collapse.module.js\n// module id = 264\n// module chunks = 1","import { Component, Input } from '@angular/core';\nimport { AccordionConfig } from './accordion.config';\n/** Displays collapsible content panels for presenting information in a limited amount of space. */\nexport var AccordionComponent = (function () {\n function AccordionComponent(config) {\n this.groups = [];\n Object.assign(this, config);\n }\n AccordionComponent.prototype.closeOtherPanels = function (openGroup) {\n if (!this.closeOthers) {\n return;\n }\n this.groups.forEach(function (group) {\n if (group !== openGroup) {\n group.isOpen = false;\n }\n });\n };\n AccordionComponent.prototype.addGroup = function (group) {\n this.groups.push(group);\n };\n AccordionComponent.prototype.removeGroup = function (group) {\n var index = this.groups.indexOf(group);\n if (index !== -1) {\n this.groups.splice(index, 1);\n }\n };\n AccordionComponent.decorators = [\n { type: Component, args: [{\n selector: 'accordion',\n template: \"\",\n // tslint:disable-next-line\n host: {\n '[class.panel-group]': 'true',\n '[attr.aria-multiselectable]': 'closeOthers',\n role: 'tablist'\n }\n },] },\n ];\n /** @nocollapse */\n AccordionComponent.ctorParameters = function () { return [\n { type: AccordionConfig, },\n ]; };\n AccordionComponent.propDecorators = {\n 'closeOthers': [{ type: Input },],\n };\n return AccordionComponent;\n}());\n//# sourceMappingURL=accordion.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/accordion/accordion.component.js\n// module id = 265\n// module chunks = 1","import { Injectable } from '@angular/core';\n/**\n * Configuration service, provides default values for the AccordionComponent.\n */\nexport var AccordionConfig = (function () {\n function AccordionConfig() {\n /** Whether the other panels should be closed when a panel is opened */\n this.closeOthers = false;\n }\n AccordionConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n AccordionConfig.ctorParameters = function () { return []; };\n return AccordionConfig;\n}());\n//# sourceMappingURL=accordion.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/accordion/accordion.config.js\n// module id = 266\n// module chunks = 1","import { Injectable } from '@angular/core';\nexport var AlertConfig = (function () {\n function AlertConfig() {\n /** default alert type */\n this.type = 'warning';\n /** is alerts are dismissible by default */\n this.dismissible = false;\n /** default time before alert will dismiss */\n this.dismissOnTimeout = undefined;\n }\n AlertConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n AlertConfig.ctorParameters = function () { return []; };\n return AlertConfig;\n}());\n//# sourceMappingURL=alert.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/alert/alert.config.js\n// module id = 267\n// module chunks = 1","/*tslint:disable:no-invalid-this */\nexport function OnChange(defaultValue) {\n var sufix = 'Change';\n return function OnChangeHandler(target, propertyKey) {\n var _key = \" __\" + propertyKey + \"Value\";\n Object.defineProperty(target, propertyKey, {\n get: function () { return this[_key]; },\n set: function (value) {\n var prevValue = this[_key];\n this[_key] = value;\n if (prevValue !== value && this[propertyKey + sufix]) {\n this[propertyKey + sufix].emit(value);\n }\n }\n });\n };\n}\n//# sourceMappingURL=decorators.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/utils/decorators.js\n// module id = 268\n// module chunks = 1","// todo: add animation\nimport { Component, Input, Output, EventEmitter } from '@angular/core';\nimport { isBs3, LinkedList } from '../utils';\nimport { CarouselConfig } from './carousel.config';\nexport var Direction;\n(function (Direction) {\n Direction[Direction[\"UNKNOWN\"] = 0] = \"UNKNOWN\";\n Direction[Direction[\"NEXT\"] = 1] = \"NEXT\";\n Direction[Direction[\"PREV\"] = 2] = \"PREV\";\n})(Direction || (Direction = {}));\n/**\n * Base element to create carousel\n */\nexport var CarouselComponent = (function () {\n function CarouselComponent(config) {\n /** Will be emitted when active slide has been changed. Part of two-way-bindable [(activeSlide)] property */\n this.activeSlideChange = new EventEmitter(false);\n this._slides = new LinkedList();\n this.destroyed = false;\n Object.assign(this, config);\n }\n Object.defineProperty(CarouselComponent.prototype, \"activeSlide\", {\n get: function () {\n return this._currentActiveSlide;\n },\n /** Index of currently displayed slide(started for 0) */\n set: function (index) {\n if (this._slides.length && index !== this._currentActiveSlide) {\n this._select(index);\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CarouselComponent.prototype, \"interval\", {\n /**\n * Delay of item cycling in milliseconds. If false, carousel won't cycle automatically.\n */\n get: function () {\n return this._interval;\n },\n set: function (value) {\n this._interval = value;\n this.restartTimer();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CarouselComponent.prototype, \"slides\", {\n get: function () {\n return this._slides.toArray();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CarouselComponent.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n CarouselComponent.prototype.ngOnDestroy = function () {\n this.destroyed = true;\n };\n /**\n * Adds new slide. If this slide is first in collection - set it as active and starts auto changing\n * @param slide\n */\n CarouselComponent.prototype.addSlide = function (slide) {\n this._slides.add(slide);\n if (this._slides.length === 1) {\n this._currentActiveSlide = void 0;\n this.activeSlide = 0;\n this.play();\n }\n };\n /**\n * Removes specified slide. If this slide is active - will roll to another slide\n * @param slide\n */\n CarouselComponent.prototype.removeSlide = function (slide) {\n var _this = this;\n var remIndex = this._slides.indexOf(slide);\n if (this._currentActiveSlide === remIndex) {\n // removing of active slide\n var nextSlideIndex_1 = void 0;\n if (this._slides.length > 1) {\n // if this slide last - will roll to first slide, if noWrap flag is FALSE or to previous, if noWrap is TRUE\n // in case, if this slide in middle of collection, index of next slide is same to removed\n nextSlideIndex_1 = !this.isLast(remIndex) ? remIndex :\n this.noWrap ? remIndex - 1 : 0;\n }\n this._slides.remove(remIndex);\n // prevents exception with changing some value after checking\n setTimeout(function () {\n _this._select(nextSlideIndex_1);\n }, 0);\n }\n else {\n this._slides.remove(remIndex);\n var currentSlideIndex_1 = this.getCurrentSlideIndex();\n setTimeout(function () {\n // after removing, need to actualize index of current active slide\n _this._currentActiveSlide = currentSlideIndex_1;\n _this.activeSlideChange.emit(_this._currentActiveSlide);\n }, 0);\n }\n };\n /**\n * Rolling to next slide\n * @param force: {boolean} if true - will ignore noWrap flag\n */\n CarouselComponent.prototype.nextSlide = function (force) {\n if (force === void 0) { force = false; }\n this.activeSlide = this.findNextSlideIndex(Direction.NEXT, force);\n };\n /**\n * Rolling to previous slide\n * @param force: {boolean} if true - will ignore noWrap flag\n */\n CarouselComponent.prototype.previousSlide = function (force) {\n if (force === void 0) { force = false; }\n this.activeSlide = this.findNextSlideIndex(Direction.PREV, force);\n };\n /**\n * Rolling to specified slide\n * @param index: {number} index of slide, which must be shown\n */\n CarouselComponent.prototype.selectSlide = function (index) {\n this.activeSlide = index;\n };\n /**\n * Starts a auto changing of slides\n */\n CarouselComponent.prototype.play = function () {\n if (!this.isPlaying) {\n this.isPlaying = true;\n this.restartTimer();\n }\n };\n /**\n * Stops a auto changing of slides\n */\n CarouselComponent.prototype.pause = function () {\n if (!this.noPause) {\n this.isPlaying = false;\n this.resetTimer();\n }\n };\n /**\n * Finds and returns index of currently displayed slide\n * @returns {number}\n */\n CarouselComponent.prototype.getCurrentSlideIndex = function () {\n return this._slides.findIndex(function (slide) { return slide.active; });\n };\n /**\n * Defines, whether the specified index is last in collection\n * @param index\n * @returns {boolean}\n */\n CarouselComponent.prototype.isLast = function (index) {\n return index + 1 >= this._slides.length;\n };\n /**\n * Defines next slide index, depending of direction\n * @param direction: Direction(UNKNOWN|PREV|NEXT)\n * @param force: {boolean} if TRUE - will ignore noWrap flag, else will return undefined if next slide require wrapping\n * @returns {any}\n */\n CarouselComponent.prototype.findNextSlideIndex = function (direction, force) {\n var nextSlideIndex = 0;\n if (!force && (this.isLast(this.activeSlide) && direction !== Direction.PREV && this.noWrap)) {\n return void 0;\n }\n switch (direction) {\n case Direction.NEXT:\n // if this is last slide, not force, looping is disabled and need to going forward - select current slide, as a next\n nextSlideIndex = (!this.isLast(this._currentActiveSlide)) ? this._currentActiveSlide + 1 :\n (!force && this.noWrap) ? this._currentActiveSlide : 0;\n break;\n case Direction.PREV:\n // if this is first slide, not force, looping is disabled and need to going backward - select current slide, as a next\n nextSlideIndex = (this._currentActiveSlide > 0) ? this._currentActiveSlide - 1 :\n (!force && this.noWrap) ? this._currentActiveSlide : this._slides.length - 1;\n break;\n default:\n throw new Error('Unknown direction');\n }\n return nextSlideIndex;\n };\n /**\n * Sets a slide, which specified through index, as active\n * @param index\n * @private\n */\n CarouselComponent.prototype._select = function (index) {\n if (isNaN(index)) {\n this.pause();\n return;\n }\n var currentSlide = this._slides.get(this._currentActiveSlide);\n if (currentSlide) {\n currentSlide.active = false;\n }\n var nextSlide = this._slides.get(index);\n if (nextSlide) {\n this._currentActiveSlide = index;\n nextSlide.active = true;\n this.activeSlide = index;\n this.activeSlideChange.emit(index);\n }\n };\n /**\n * Starts loop of auto changing of slides\n */\n CarouselComponent.prototype.restartTimer = function () {\n var _this = this;\n this.resetTimer();\n var interval = +this.interval;\n if (!isNaN(interval) && interval > 0) {\n this.currentInterval = setInterval(function () {\n var nInterval = +_this.interval;\n if (_this.isPlaying && !isNaN(_this.interval) && nInterval > 0 && _this.slides.length) {\n _this.nextSlide();\n }\n else {\n _this.pause();\n }\n }, interval);\n }\n };\n /**\n * Stops loop of auto changing of slides\n */\n CarouselComponent.prototype.resetTimer = function () {\n if (this.currentInterval) {\n clearInterval(this.currentInterval);\n this.currentInterval = void 0;\n }\n };\n CarouselComponent.decorators = [\n { type: Component, args: [{\n selector: 'carousel',\n template: \"\\n \\n \"\n },] },\n ];\n /** @nocollapse */\n CarouselComponent.ctorParameters = function () { return [\n { type: CarouselConfig, },\n ]; };\n CarouselComponent.propDecorators = {\n 'noWrap': [{ type: Input },],\n 'noPause': [{ type: Input },],\n 'activeSlideChange': [{ type: Output },],\n 'activeSlide': [{ type: Input },],\n 'interval': [{ type: Input },],\n };\n return CarouselComponent;\n}());\n//# sourceMappingURL=carousel.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/carousel/carousel.component.js\n// module id = 269\n// module chunks = 1","import { Injectable } from '@angular/core';\nexport var CarouselConfig = (function () {\n function CarouselConfig() {\n /** Default interval of auto changing of slides */\n this.interval = 5000;\n /** Is loop of auto changing of slides can be paused */\n this.noPause = false;\n /** Is slides can wrap from the last to the first slide */\n this.noWrap = false;\n }\n CarouselConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n CarouselConfig.ctorParameters = function () { return []; };\n return CarouselConfig;\n}());\n//# sourceMappingURL=carousel.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/carousel/carousel.config.js\n// module id = 270\n// module chunks = 1","import { Injectable } from '@angular/core';\nexport var DatepickerConfig = (function () {\n function DatepickerConfig() {\n this.datepickerMode = 'day';\n this.startingDay = 0;\n this.yearRange = 20;\n this.minMode = 'day';\n this.maxMode = 'year';\n this.showWeeks = true;\n this.formatDay = 'DD';\n this.formatMonth = 'MMMM';\n this.formatYear = 'YYYY';\n this.formatDayHeader = 'dd';\n this.formatDayTitle = 'MMMM YYYY';\n this.formatMonthTitle = 'YYYY';\n this.onlyCurrentMonth = false;\n this.monthColLimit = 3;\n this.yearColLimit = 5;\n this.shortcutPropagation = false;\n }\n DatepickerConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n DatepickerConfig.ctorParameters = function () { return []; };\n return DatepickerConfig;\n}());\n//# sourceMappingURL=datepicker.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/datepicker/datepicker.config.js\n// module id = 271\n// module chunks = 1","import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { BsDropdownState } from './bs-dropdown.state';\nexport var BsDropdownContainerComponent = (function () {\n function BsDropdownContainerComponent(_state) {\n var _this = this;\n this._state = _state;\n this.isOpen = false;\n this._subscription = _state.isOpenChange.subscribe(function (value) {\n _this.isOpen = value;\n });\n }\n Object.defineProperty(BsDropdownContainerComponent.prototype, \"direction\", {\n get: function () {\n return this._state.direction;\n },\n enumerable: true,\n configurable: true\n });\n BsDropdownContainerComponent.prototype.ngOnDestroy = function () {\n this._subscription.unsubscribe();\n };\n BsDropdownContainerComponent.decorators = [\n { type: Component, args: [{\n selector: 'bs-dropdown-container',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n style: 'display:block;position: absolute;'\n },\n template: \"\\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n BsDropdownContainerComponent.ctorParameters = function () { return [\n { type: BsDropdownState, },\n ]; };\n return BsDropdownContainerComponent;\n}());\n//# sourceMappingURL=bs-dropdown-container.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/dropdown/bs-dropdown-container.component.js\n// module id = 272\n// module chunks = 1","import { Injectable } from '@angular/core';\n/** Default dropdown configuration */\nexport var BsDropdownConfig = (function () {\n function BsDropdownConfig() {\n /** default dropdown auto closing behavior */\n this.autoClose = true;\n }\n BsDropdownConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsDropdownConfig.ctorParameters = function () { return []; };\n return BsDropdownConfig;\n}());\n//# sourceMappingURL=bs-dropdown.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/dropdown/bs-dropdown.config.js\n// module id = 273\n// module chunks = 1","import { Component, ElementRef, Renderer } from '@angular/core';\nimport { ClassName } from './modal-options.class';\nimport { isBs3 } from '../utils/ng2-bootstrap-config';\nexport var ModalBackdropOptions = (function () {\n function ModalBackdropOptions(options) {\n this.animate = true;\n Object.assign(this, options);\n }\n return ModalBackdropOptions;\n}());\n/** This component will be added as background layout for modals if enabled */\nexport var ModalBackdropComponent = (function () {\n function ModalBackdropComponent(element, renderer) {\n this._isShown = false;\n this.element = element;\n this.renderer = renderer;\n }\n Object.defineProperty(ModalBackdropComponent.prototype, \"isAnimated\", {\n get: function () {\n return this._isAnimated;\n },\n set: function (value) {\n this._isAnimated = value;\n this.renderer.setElementClass(this.element.nativeElement, \"\" + ClassName.FADE, value);\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ModalBackdropComponent.prototype, \"isShown\", {\n get: function () {\n return this._isShown;\n },\n set: function (value) {\n this._isShown = value;\n this.renderer.setElementClass(this.element.nativeElement, \"\" + ClassName.IN, value);\n if (!isBs3()) {\n this.renderer.setElementClass(this.element.nativeElement, \"\" + ClassName.SHOW, value);\n }\n },\n enumerable: true,\n configurable: true\n });\n ModalBackdropComponent.decorators = [\n { type: Component, args: [{\n selector: 'bs-modal-backdrop',\n template: '',\n // tslint:disable-next-line\n host: { 'class': ClassName.BACKDROP }\n },] },\n ];\n /** @nocollapse */\n ModalBackdropComponent.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Renderer, },\n ]; };\n return ModalBackdropComponent;\n}());\n//# sourceMappingURL=modal-backdrop.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/modal/modal-backdrop.component.js\n// module id = 274\n// module chunks = 1","import { Directive, HostBinding, Input } from '@angular/core';\n// todo: progress element conflict with bootstrap.css\n// todo: need hack: replace host element with div\nexport var ProgressDirective = (function () {\n function ProgressDirective() {\n this.addClass = true;\n this.bars = [];\n this._max = 100;\n }\n Object.defineProperty(ProgressDirective.prototype, \"max\", {\n /** maximum total value of progress element */\n get: function () {\n return this._max;\n },\n set: function (v) {\n this._max = v;\n this.bars.forEach(function (bar) {\n bar.recalculatePercentage();\n });\n },\n enumerable: true,\n configurable: true\n });\n ProgressDirective.prototype.addBar = function (bar) {\n if (!this.animate) {\n bar.transition = 'none';\n }\n this.bars.push(bar);\n };\n ProgressDirective.prototype.removeBar = function (bar) {\n this.bars.splice(this.bars.indexOf(bar), 1);\n };\n ProgressDirective.decorators = [\n { type: Directive, args: [{ selector: 'bs-progress, [progress]' },] },\n ];\n /** @nocollapse */\n ProgressDirective.ctorParameters = function () { return []; };\n ProgressDirective.propDecorators = {\n 'animate': [{ type: Input },],\n 'max': [{ type: HostBinding, args: ['attr.max',] }, { type: Input },],\n 'addClass': [{ type: HostBinding, args: ['class.progress',] },],\n };\n return ProgressDirective;\n}());\n//# sourceMappingURL=progress.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/progressbar/progress.directive.js\n// module id = 275\n// module chunks = 1","import { Injectable } from '@angular/core';\nexport var ProgressbarConfig = (function () {\n function ProgressbarConfig() {\n /** if `true` changing value of progress bar will be animated (note: not supported by Bootstrap 4) */\n this.animate = true;\n /** maximum total value of progress element */\n this.max = 100;\n }\n ProgressbarConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n ProgressbarConfig.ctorParameters = function () { return []; };\n return ProgressbarConfig;\n}());\n//# sourceMappingURL=progressbar.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/progressbar/progressbar.config.js\n// module id = 276\n// module chunks = 1","import { Injectable } from '@angular/core';\nimport { Subject } from 'rxjs/Subject';\nexport var DraggableItemService = (function () {\n function DraggableItemService() {\n this.onCapture = new Subject();\n }\n DraggableItemService.prototype.dragStart = function (item) {\n this.draggableItem = item;\n };\n DraggableItemService.prototype.getItem = function () {\n return this.draggableItem;\n };\n DraggableItemService.prototype.captureItem = function (overZoneIndex, newIndex) {\n if (this.draggableItem.overZoneIndex !== overZoneIndex) {\n this.draggableItem.lastZoneIndex = this.draggableItem.overZoneIndex;\n this.draggableItem.overZoneIndex = overZoneIndex;\n this.onCapture.next(this.draggableItem);\n this.draggableItem = Object.assign({}, this.draggableItem, { overZoneIndex: overZoneIndex, i: newIndex });\n }\n return this.draggableItem;\n };\n DraggableItemService.prototype.onCaptureItem = function () {\n return this.onCapture;\n };\n DraggableItemService.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n DraggableItemService.ctorParameters = function () { return []; };\n return DraggableItemService;\n}());\n//# sourceMappingURL=draggable-item.service.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/sortable/draggable-item.service.js\n// module id = 277\n// module chunks = 1","import { Directive, EventEmitter, HostBinding, Input, Output } from '@angular/core';\nimport { TabsetComponent } from './tabset.component';\nexport var TabDirective = (function () {\n function TabDirective(tabset) {\n /** fired when tab became active, $event:Tab equals to selected instance of Tab component */\n this.select = new EventEmitter();\n /** fired when tab became inactive, $event:Tab equals to deselected instance of Tab component */\n this.deselect = new EventEmitter();\n /** fired before tab will be removed */\n this.removed = new EventEmitter();\n this.addClass = true;\n this.tabset = tabset;\n this.tabset.addTab(this);\n }\n Object.defineProperty(TabDirective.prototype, \"active\", {\n /** tab active state toggle */\n get: function () {\n return this._active;\n },\n set: function (active) {\n var _this = this;\n if (this.disabled && active || !active) {\n if (!active) {\n this._active = active;\n }\n this.deselect.emit(this);\n return;\n }\n this._active = active;\n this.select.emit(this);\n this.tabset.tabs.forEach(function (tab) {\n if (tab !== _this) {\n tab.active = false;\n }\n });\n },\n enumerable: true,\n configurable: true\n });\n TabDirective.prototype.ngOnInit = function () {\n this.removable = this.removable;\n };\n TabDirective.decorators = [\n { type: Directive, args: [{ selector: 'tab, [tab]' },] },\n ];\n /** @nocollapse */\n TabDirective.ctorParameters = function () { return [\n { type: TabsetComponent, },\n ]; };\n TabDirective.propDecorators = {\n 'heading': [{ type: Input },],\n 'disabled': [{ type: Input },],\n 'removable': [{ type: Input },],\n 'customClass': [{ type: Input },],\n 'active': [{ type: HostBinding, args: ['class.active',] }, { type: Input },],\n 'select': [{ type: Output },],\n 'deselect': [{ type: Output },],\n 'removed': [{ type: Output },],\n 'addClass': [{ type: HostBinding, args: ['class.tab-pane',] },],\n };\n return TabDirective;\n}());\n//# sourceMappingURL=tab.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/tabs/tab.directive.js\n// module id = 278\n// module chunks = 1","import { Component, HostBinding, Input } from '@angular/core';\nimport { TabsetConfig } from './tabset.config';\n// todo: add active event to tab\n// todo: fix? mixing static and dynamic tabs position tabs in order of creation\nexport var TabsetComponent = (function () {\n function TabsetComponent(config) {\n this.clazz = true;\n this.tabs = [];\n this.classMap = {};\n Object.assign(this, config);\n }\n Object.defineProperty(TabsetComponent.prototype, \"vertical\", {\n /** if true tabs will be placed vertically */\n get: function () {\n return this._vertical;\n },\n set: function (value) {\n this._vertical = value;\n this.setClassMap();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TabsetComponent.prototype, \"justified\", {\n /** if true tabs fill the container and have a consistent width */\n get: function () {\n return this._justified;\n },\n set: function (value) {\n this._justified = value;\n this.setClassMap();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TabsetComponent.prototype, \"type\", {\n /** navigation context class: 'tabs' or 'pills' */\n get: function () {\n return this._type;\n },\n set: function (value) {\n this._type = value;\n this.setClassMap();\n },\n enumerable: true,\n configurable: true\n });\n TabsetComponent.prototype.ngOnDestroy = function () {\n this.isDestroyed = true;\n };\n TabsetComponent.prototype.addTab = function (tab) {\n this.tabs.push(tab);\n tab.active = this.tabs.length === 1 && tab.active !== false;\n };\n TabsetComponent.prototype.removeTab = function (tab) {\n var index = this.tabs.indexOf(tab);\n if (index === -1 || this.isDestroyed) {\n return;\n }\n // Select a new tab if the tab to be removed is selected and not destroyed\n if (tab.active && this.hasAvailableTabs(index)) {\n var newActiveIndex = this.getClosestTabIndex(index);\n this.tabs[newActiveIndex].active = true;\n }\n tab.removed.emit(tab);\n this.tabs.splice(index, 1);\n };\n TabsetComponent.prototype.getClosestTabIndex = function (index) {\n var tabsLength = this.tabs.length;\n if (!tabsLength) {\n return -1;\n }\n for (var step = 1; step <= tabsLength; step += 1) {\n var prevIndex = index - step;\n var nextIndex = index + step;\n if (this.tabs[prevIndex] && !this.tabs[prevIndex].disabled) {\n return prevIndex;\n }\n if (this.tabs[nextIndex] && !this.tabs[nextIndex].disabled) {\n return nextIndex;\n }\n }\n return -1;\n };\n TabsetComponent.prototype.hasAvailableTabs = function (index) {\n var tabsLength = this.tabs.length;\n if (!tabsLength) {\n return false;\n }\n for (var i = 0; i < tabsLength; i += 1) {\n if (!this.tabs[i].disabled && i !== index) {\n return true;\n }\n }\n return false;\n };\n TabsetComponent.prototype.setClassMap = function () {\n this.classMap = (_a = {\n 'nav-stacked': this.vertical,\n 'nav-justified': this.justified\n },\n _a[\"nav-\" + this.type] = true,\n _a\n );\n var _a;\n };\n TabsetComponent.decorators = [\n { type: Component, args: [{\n selector: 'tabset',\n template: \"\\n \\n \\n \\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n TabsetComponent.ctorParameters = function () { return [\n { type: TabsetConfig, },\n ]; };\n TabsetComponent.propDecorators = {\n 'vertical': [{ type: Input },],\n 'justified': [{ type: Input },],\n 'type': [{ type: Input },],\n 'clazz': [{ type: HostBinding, args: ['class.tab-container',] },],\n };\n return TabsetComponent;\n}());\n//# sourceMappingURL=tabset.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/tabs/tabset.component.js\n// module id = 279\n// module chunks = 1","import { Injectable } from '@angular/core';\nexport var TabsetConfig = (function () {\n function TabsetConfig() {\n /** provides default navigation context class: 'tabs' or 'pills' */\n this.type = 'tabs';\n }\n TabsetConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n TabsetConfig.ctorParameters = function () { return []; };\n return TabsetConfig;\n}());\n//# sourceMappingURL=tabset.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/tabs/tabset.config.js\n// module id = 280\n// module chunks = 1","import { Injectable } from '@angular/core';\n/** Provides default configuration values for timepicker */\nexport var TimepickerConfig = (function () {\n function TimepickerConfig() {\n /** hours change step */\n this.hourStep = 1;\n /** hours change step */\n this.minuteStep = 5;\n /** if true works in 12H mode and displays AM/PM. If false works in 24H mode and hides AM/PM */\n this.showMeridian = true;\n /** meridian labels based on locale */\n this.meridians = ['AM', 'PM'];\n /** if true hours and minutes fields will be readonly */\n this.readonlyInput = false;\n /** if true scroll inside hours and minutes inputs will change time */\n this.mousewheel = true;\n /** if true up/down arrowkeys inside hours and minutes inputs will change time */\n this.arrowkeys = true;\n /** if true spinner arrows above and below the inputs will be shown */\n this.showSpinners = true;\n /** minimum time user can select */\n this.min = void 0;\n /** maximum time user can select */\n this.max = void 0;\n }\n TimepickerConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n TimepickerConfig.ctorParameters = function () { return []; };\n return TimepickerConfig;\n}());\n//# sourceMappingURL=timepicker.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/timepicker/timepicker.config.js\n// module id = 281\n// module chunks = 1","import { Component, ChangeDetectionStrategy } from '@angular/core';\nimport { TooltipConfig } from './tooltip.config';\nimport { isBs3 } from '../utils/ng2-bootstrap-config';\nexport var TooltipContainerComponent = (function () {\n function TooltipContainerComponent(config) {\n Object.assign(this, config);\n }\n Object.defineProperty(TooltipContainerComponent.prototype, \"isBs3\", {\n get: function () {\n return isBs3();\n },\n enumerable: true,\n configurable: true\n });\n TooltipContainerComponent.prototype.ngAfterViewInit = function () {\n this.classMap = { in: false, fade: false };\n this.classMap[this.placement] = true;\n this.classMap['tooltip-' + this.placement] = true;\n this.classMap.in = true;\n if (this.animation) {\n this.classMap.fade = true;\n }\n if (this.popupClass) {\n this.classMap[this.popupClass] = true;\n }\n };\n TooltipContainerComponent.decorators = [\n { type: Component, args: [{\n selector: 'bs-tooltip-container',\n changeDetection: ChangeDetectionStrategy.OnPush,\n // tslint:disable-next-line\n host: {\n '[class]': '\"tooltip in tooltip-\" + placement + \" \" + placement',\n '[class.show]': '!isBs3',\n role: 'tooltip'\n },\n template: \"\\n \\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n TooltipContainerComponent.ctorParameters = function () { return [\n { type: TooltipConfig, },\n ]; };\n return TooltipContainerComponent;\n}());\n//# sourceMappingURL=tooltip-container.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/tooltip/tooltip-container.component.js\n// module id = 282\n// module chunks = 1","import { Component, ElementRef, ViewEncapsulation, HostListener } from '@angular/core';\nimport { isBs3 } from '../utils/ng2-bootstrap-config';\nimport { TypeaheadUtils } from './typeahead-utils';\nexport var TypeaheadContainerComponent = (function () {\n function TypeaheadContainerComponent(element) {\n this.isFocused = false;\n this._matches = [];\n this.element = element;\n }\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"active\", {\n get: function () {\n return this._active;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"matches\", {\n get: function () {\n return this._matches;\n },\n set: function (value) {\n this._matches = value;\n if (this._matches.length > 0) {\n this._active = this._matches[0];\n if (this._active.isHeader()) {\n this.nextActiveMatch();\n }\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"optionsListTemplate\", {\n get: function () {\n return this.parent ? this.parent.optionsListTemplate : undefined;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"itemTemplate\", {\n get: function () {\n return this.parent ? this.parent.typeaheadItemTemplate : undefined;\n },\n enumerable: true,\n configurable: true\n });\n TypeaheadContainerComponent.prototype.selectActiveMatch = function () {\n this.selectMatch(this._active);\n };\n TypeaheadContainerComponent.prototype.prevActiveMatch = function () {\n var index = this.matches.indexOf(this._active);\n this._active = this.matches[index - 1 < 0\n ? this.matches.length - 1\n : index - 1];\n if (this._active.isHeader()) {\n this.prevActiveMatch();\n }\n };\n TypeaheadContainerComponent.prototype.nextActiveMatch = function () {\n var index = this.matches.indexOf(this._active);\n this._active = this.matches[index + 1 > this.matches.length - 1\n ? 0\n : index + 1];\n if (this._active.isHeader()) {\n this.nextActiveMatch();\n }\n };\n TypeaheadContainerComponent.prototype.selectActive = function (value) {\n this.isFocused = true;\n this._active = value;\n };\n TypeaheadContainerComponent.prototype.hightlight = function (match, query) {\n var itemStr = match.value;\n var itemStrHelper = (this.parent && this.parent.typeaheadLatinize\n ? TypeaheadUtils.latinize(itemStr)\n : itemStr).toLowerCase();\n var startIdx;\n var tokenLen;\n // Replaces the capture string with the same string inside of a \"strong\" tag\n if (typeof query === 'object') {\n var queryLen = query.length;\n for (var i = 0; i < queryLen; i += 1) {\n // query[i] is already latinized and lower case\n startIdx = itemStrHelper.indexOf(query[i]);\n tokenLen = query[i].length;\n if (startIdx >= 0 && tokenLen > 0) {\n itemStr = itemStr.substring(0, startIdx) + '' + itemStr.substring(startIdx, startIdx + tokenLen) + '' + itemStr.substring(startIdx + tokenLen);\n itemStrHelper = itemStrHelper.substring(0, startIdx) + ' ' + ' '.repeat(tokenLen) + ' ' + itemStrHelper.substring(startIdx + tokenLen);\n }\n }\n }\n else if (query) {\n // query is already latinized and lower case\n startIdx = itemStrHelper.indexOf(query);\n tokenLen = query.length;\n if (startIdx >= 0 && tokenLen > 0) {\n itemStr = itemStr.substring(0, startIdx) + '' + itemStr.substring(startIdx, startIdx + tokenLen) + '' + itemStr.substring(startIdx + tokenLen);\n }\n }\n return itemStr;\n };\n TypeaheadContainerComponent.prototype.focusLost = function () {\n this.isFocused = false;\n };\n TypeaheadContainerComponent.prototype.isActive = function (value) {\n return this._active === value;\n };\n TypeaheadContainerComponent.prototype.selectMatch = function (value, e) {\n var _this = this;\n if (e === void 0) { e = void 0; }\n if (e) {\n e.stopPropagation();\n e.preventDefault();\n }\n this.parent.changeModel(value);\n setTimeout(function () {\n return _this.parent.typeaheadOnSelect.emit(value);\n }, 0);\n return false;\n };\n TypeaheadContainerComponent.decorators = [\n { type: Component, args: [{\n selector: 'typeahead-container',\n // tslint:disable-next-line\n template: \"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n \\n \\n \\n \\n\\n\\n\",\n // tslint:disable\n host: {\n 'class': 'dropdown open',\n '[class.dropdown-menu]': 'isBs4',\n style: 'position: absolute;display: block;'\n },\n // tslint: enable\n encapsulation: ViewEncapsulation.None\n },] },\n ];\n /** @nocollapse */\n TypeaheadContainerComponent.ctorParameters = function () { return [\n { type: ElementRef, },\n ]; };\n TypeaheadContainerComponent.propDecorators = {\n 'focusLost': [{ type: HostListener, args: ['mouseleave',] }, { type: HostListener, args: ['blur',] },],\n };\n return TypeaheadContainerComponent;\n}());\n//# sourceMappingURL=typeahead-container.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/typeahead/typeahead-container.component.js\n// module id = 283\n// module chunks = 1","import { latinMap } from './latin-map';\nexport var TypeaheadUtils = (function () {\n function TypeaheadUtils() {\n }\n TypeaheadUtils.latinize = function (str) {\n if (!str) {\n return '';\n }\n return str.replace(/[^A-Za-z0-9\\[\\] ]/g, function (a) {\n return TypeaheadUtils.latinMap[a] || a;\n });\n };\n TypeaheadUtils.escapeRegexp = function (queryToEscape) {\n // Regex: capture the whole query string and replace it with the string\n // that will be used to match the results, for example if the capture is\n // 'a' the result will be \\a\n return queryToEscape.replace(/([.?*+^$[\\]\\\\(){}|-])/g, '\\\\$1');\n };\n /* tslint:disable */\n TypeaheadUtils.tokenize = function (str, wordRegexDelimiters, phraseRegexDelimiters) {\n if (wordRegexDelimiters === void 0) { wordRegexDelimiters = ' '; }\n if (phraseRegexDelimiters === void 0) { phraseRegexDelimiters = ''; }\n /* tslint:enable */\n var regexStr = '(?:[' + phraseRegexDelimiters + '])([^' + phraseRegexDelimiters + ']+)(?:[' + phraseRegexDelimiters + '])|([^' + wordRegexDelimiters + ']+)';\n var preTokenized = str.split(new RegExp(regexStr, 'g'));\n var result = [];\n var preTokenizedLength = preTokenized.length;\n var token;\n var replacePhraseDelimiters = new RegExp('[' + phraseRegexDelimiters + ']+', 'g');\n for (var i = 0; i < preTokenizedLength; i += 1) {\n token = preTokenized[i];\n if (token && token.length && token !== wordRegexDelimiters) {\n result.push(token.replace(replacePhraseDelimiters, ''));\n }\n }\n return result;\n };\n TypeaheadUtils.getValueFromObject = function (object, option) {\n if (!option || typeof object !== 'object') {\n return object.toString();\n }\n if (option.endsWith('()')) {\n var functionName = option.slice(0, option.length - 2);\n return object[functionName]().toString();\n }\n var properties = option.replace(/\\[(\\w+)\\]/g, '.$1')\n .replace(/^\\./, '');\n var propertiesArray = properties.split('.');\n for (var _i = 0, propertiesArray_1 = propertiesArray; _i < propertiesArray_1.length; _i++) {\n var property = propertiesArray_1[_i];\n if (property in object) {\n object = object[property];\n }\n }\n return object.toString();\n };\n TypeaheadUtils.latinMap = latinMap;\n return TypeaheadUtils;\n}());\n//# sourceMappingURL=typeahead-utils.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/typeahead/typeahead-utils.js\n// module id = 284\n// module chunks = 1","import { ChangeDetectionStrategy, Input, Component } from '@angular/core';\nimport { PopoverConfig } from './popover.config';\nimport { isBs3 } from '../utils/ng2-bootstrap-config';\nexport var PopoverContainerComponent = (function () {\n function PopoverContainerComponent(config) {\n Object.assign(this, config);\n }\n Object.defineProperty(PopoverContainerComponent.prototype, \"isBs3\", {\n get: function () {\n return isBs3();\n },\n enumerable: true,\n configurable: true\n });\n PopoverContainerComponent.decorators = [\n { type: Component, args: [{\n selector: 'popover-container',\n changeDetection: ChangeDetectionStrategy.OnPush,\n // tslint:disable-next-line\n host: {\n '[class]': '\"popover in popover-\" + placement + \" \" + placement',\n '[class.show]': '!isBs3',\n role: 'tooltip',\n style: 'display:block;'\n },\n template: \"\\n\\n{{title}}
\\n \"\n },] },\n ];\n /** @nocollapse */\n PopoverContainerComponent.ctorParameters = function () { return [\n { type: PopoverConfig, },\n ]; };\n PopoverContainerComponent.propDecorators = {\n 'placement': [{ type: Input },],\n 'title': [{ type: Input },],\n };\n return PopoverContainerComponent;\n}());\n//# sourceMappingURL=popover-container.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/popover/popover-container.component.js\n// module id = 285\n// module chunks = 1","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar core_1 = require(\"@angular/core\");\nvar recaptcha_loader_service_1 = require(\"./recaptcha-loader.service\");\nvar recaptcha_settings_1 = require(\"./recaptcha-settings\");\nvar nextId = 0;\nvar RecaptchaComponent = (function () {\n function RecaptchaComponent(elementRef, loader, zone, settings) {\n this.elementRef = elementRef;\n this.loader = loader;\n this.zone = zone;\n this.id = \"ngrecaptcha-\" + nextId++;\n this.resolved = new core_1.EventEmitter();\n if (settings) {\n this.siteKey = settings.siteKey;\n this.theme = settings.theme;\n this.type = settings.type;\n this.size = settings.size;\n this.badge = settings.badge;\n }\n }\n RecaptchaComponent.prototype.ngAfterViewInit = function () {\n var _this = this;\n this.subscription = this.loader.ready.subscribe(function (grecaptcha) {\n if (grecaptcha != null) {\n _this.grecaptcha = grecaptcha;\n _this.renderRecaptcha();\n }\n });\n };\n RecaptchaComponent.prototype.ngOnDestroy = function () {\n // reset the captcha to ensure it does not leave anything behind\n // after the component is no longer needed\n this.grecaptchaReset();\n if (this.subscription) {\n this.subscription.unsubscribe();\n }\n };\n /**\n * Executes the invisible recaptcha.\n * Does nothing if component's size is not set to \"invisible\".\n */\n RecaptchaComponent.prototype.execute = function () {\n if (this.size !== 'invisible') {\n return;\n }\n if (this.widget != null) {\n this.grecaptcha.execute(this.widget);\n }\n };\n RecaptchaComponent.prototype.reset = function () {\n if (this.widget != null) {\n if (this.grecaptcha.getResponse(this.widget)) {\n // Only emit an event in case if something would actually change.\n // That way we do not trigger \"touching\" of the control if someone does a \"reset\"\n // on a non-resolved captcha.\n this.resolved.emit(null);\n }\n this.grecaptchaReset();\n }\n };\n /** @internal */\n RecaptchaComponent.prototype.expired = function () {\n this.resolved.emit(null);\n };\n /** @internal */\n RecaptchaComponent.prototype.captchaReponseCallback = function (response) {\n this.resolved.emit(response);\n };\n /** @internal */\n RecaptchaComponent.prototype.grecaptchaReset = function () {\n var _this = this;\n if (this.widget != null) {\n this.zone.runOutsideAngular(function () { return _this.grecaptcha.reset(_this.widget); });\n }\n };\n /** @internal */\n RecaptchaComponent.prototype.renderRecaptcha = function () {\n var _this = this;\n this.widget = this.grecaptcha.render(this.elementRef.nativeElement, {\n badge: this.badge,\n callback: function (response) {\n _this.zone.run(function () { return _this.captchaReponseCallback(response); });\n },\n 'expired-callback': function () {\n _this.zone.run(function () { return _this.expired(); });\n },\n sitekey: this.siteKey,\n size: this.size,\n tabindex: this.tabIndex,\n theme: this.theme,\n type: this.type,\n });\n };\n RecaptchaComponent.decorators = [\n { type: core_1.Component, args: [{\n exportAs: 'reCaptcha',\n selector: 're-captcha',\n template: \"\",\n },] },\n ];\n /** @nocollapse */\n RecaptchaComponent.ctorParameters = function () { return [\n { type: core_1.ElementRef, },\n { type: recaptcha_loader_service_1.RecaptchaLoaderService, },\n { type: core_1.NgZone, },\n { type: undefined, decorators: [{ type: core_1.Optional }, { type: core_1.Inject, args: [recaptcha_settings_1.RECAPTCHA_SETTINGS,] },] },\n ]; };\n RecaptchaComponent.propDecorators = {\n 'id': [{ type: core_1.Input }, { type: core_1.HostBinding, args: ['attr.id',] },],\n 'siteKey': [{ type: core_1.Input },],\n 'theme': [{ type: core_1.Input },],\n 'type': [{ type: core_1.Input },],\n 'size': [{ type: core_1.Input },],\n 'tabIndex': [{ type: core_1.Input },],\n 'badge': [{ type: core_1.Input },],\n 'resolved': [{ type: core_1.Output },],\n };\n return RecaptchaComponent;\n}());\nexports.RecaptchaComponent = RecaptchaComponent;\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng-recaptcha/recaptcha/recaptcha.component.js\n// module id = 286\n// module chunks = 1","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar common_1 = require(\"@angular/common\");\nvar core_1 = require(\"@angular/core\");\nrequire(\"rxjs/add/observable/of\");\nvar BehaviorSubject_1 = require(\"rxjs/BehaviorSubject\");\nvar Observable_1 = require(\"rxjs/Observable\");\nexports.RECAPTCHA_LANGUAGE = new core_1.InjectionToken('recaptcha-language');\nvar RecaptchaLoaderService = (function () {\n function RecaptchaLoaderService(\n // tslint:disable-next-line:no-any\n platformId, language) {\n this.platformId = platformId;\n this.language = language;\n this.init();\n this.ready = common_1.isPlatformBrowser(this.platformId) ? RecaptchaLoaderService.ready.asObservable() : Observable_1.Observable.of();\n }\n /** @internal */\n RecaptchaLoaderService.prototype.init = function () {\n if (RecaptchaLoaderService.ready) {\n return;\n }\n if (common_1.isPlatformBrowser(this.platformId)) {\n window.ng2recaptchaloaded = function () {\n RecaptchaLoaderService.ready.next(grecaptcha);\n };\n RecaptchaLoaderService.ready = new BehaviorSubject_1.BehaviorSubject(null);\n var script = document.createElement('script');\n script.innerHTML = '';\n var langParam = this.language ? '&hl=' + this.language : '';\n script.src = \"https://www.google.com/recaptcha/api.js?render=explicit&onload=ng2recaptchaloaded\" + langParam;\n script.async = true;\n script.defer = true;\n document.head.appendChild(script);\n }\n };\n RecaptchaLoaderService.decorators = [\n { type: core_1.Injectable },\n ];\n /** @nocollapse */\n RecaptchaLoaderService.ctorParameters = function () { return [\n { type: undefined, decorators: [{ type: core_1.Inject, args: [core_1.PLATFORM_ID,] },] },\n { type: undefined, decorators: [{ type: core_1.Optional }, { type: core_1.Inject, args: [exports.RECAPTCHA_LANGUAGE,] },] },\n ]; };\n return RecaptchaLoaderService;\n}());\nexports.RecaptchaLoaderService = RecaptchaLoaderService;\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng-recaptcha/recaptcha/recaptcha-loader.service.js\n// module id = 287\n// module chunks = 1","// /Script/services/grpc.service.ts\nimport { Injectable, Inject, Component } from \"@angular/core\";\nimport { Http, Response, Headers, RequestOptions, RequestMethod, ResponseContentType, Request, RequestOptionsArgs } from \"@angular/http\";\nimport { Observable } from \"rxjs/Observable\";\nimport { ApplicationConfig } from \".././app.config\";\nimport { PbTransport, XResponse } from \"../model/common\";\n\n// Import RxJs required methods\nimport \"rxjs/add/operator/map\";\nimport \"rxjs/add/operator/catch\";\n\n//-----------------------------------------------------------------------------------------------------\n//GrpcApiService\n//-----------------------------------------------------------------------------------------------------\n@Injectable()\nexport class GrpcService {\n\tprivate _debug: boolean = true;\n\t/** Get token url. */\n\tprivate _requestDemoTokenUrl: string = \"requestdemotoken\";\n\t//-------------------------------------------------------------------------------------------------\n\tconstructor(private _http: Http, private _config: ApplicationConfig) { }\n\n\t//-------------------------------------------------------------------------------------------------\n\tpublic requestDemoToken(recaptcha: string): Observable {\n\t\tlet serviceUrl = `${this._config.grpcapiEndpoint}${this._requestDemoTokenUrl}`;\n\t\tlet body: { [key: string]: string } = {\n\t\t\t\"recaptchaToken\": recaptcha\n\t\t};\n\t\tlet postOptions: RequestOptionsArgs = {\n\t\t\turl: serviceUrl,\n\t\t\tmethod: RequestMethod.Post,\n\t\t\tsearch: null,\n\t\t\twithCredentials: true,\n\t\t\tresponseType: ResponseContentType.Text,\n\t\t\tbody: body\n\t\t};\n\t\tlet postReqOptions = new RequestOptions(postOptions);\n\t\tlet postRequest = new Request(postReqOptions);\n\t\treturn this._http.request(postRequest).map(this.onReceiveDemoToken).catch(this.onError);\n\t}\n\n\t//-------------------------------------------------------------------------------------------------\n\tprivate onReceiveDemoToken(response: Response): string {\n\t\tif (response) {\n\t\t\treturn response.text();\n\t\t}\n\t\treturn \"\"\n\t}\n\t//-------------------------------------------------------------------------------------------------\n\t/** Load all patients for dashboard. */\n\t//public requestDashboardPatients(skipPatients: number = 0, limitPatients: number = 30, skipSources: number = 0, limitSources: number = 20): Observable {\n\t//\tlet serviceUrl = `${this._config.grpcapiEndpoint}${this._requestDashboardPatientsUrl}?skipPatients=${skipPatients}&limitPatients=${limitPatients}&skipSources=${skipSources}&limitSources=${limitSources}`;\n\t//\treturn PbTransport.get(serviceUrl)\n\t//\t\t.map(this.onReceiveDashboardPatientsResponse)\n\t//\t\t.catch(this.onError);\n\t//}\n\n\t//-------------------------------------------------------------------------------------------------\n\t//public requestEcgSourceContent(sourcesId: string[]): Observable<{ [index: string]: EcgSourceContent }> {\n\t//\tlet serviceUrl = `${this._config.grpcapiEndpoint}${this._requestEcgSourcesContentsUrl}`;\n\t//\tlet sourcesContentsRequest: GetEcgSourcesContentsRequest = new GetEcgSourcesContentsRequest();\n\t//\tsourcesContentsRequest.sourcesIds = sourcesId;\n\t//\tsourcesContentsRequest.fieldsToFetch =\n\t//\t\tEcgSourceFields.Leads |\n\t//\t\tEcgSourceFields.Sessions |\n\t//\t\tEcgSourceFields.SignalScale |\n\t//\t\tEcgSourceFields.SignalScope;\n\t//\tlet buffer: Uint8Array = GetEcgSourcesContentsRequest.encode(sourcesContentsRequest).finish();\n\t//\treturn PbTransport.post(serviceUrl, buffer)\n\t//\t\t.map(this.onReceiveEcgSourceContent)\n\t//\t\t.catch(this.onError);\n\t//}\n\n\n\t//-------------------------------------------------------------------------------------------------\n\t// Server response handlers\n\t//-------------------------------------------------------------------------------------------------\n\n\t//-------------------------------------------------------------------------------------------------\n\t/** Handle streams request response. */\n\t//private onReceiveDashboardPatientsResponse(response: XResponse): DashboardPatients {\n\t//\tif (response.bytes) {\n\t//\t\ttry {\n\t//\t\t\tlet dashboardPatients: GetDashboardPatients = GetDashboardPatients.decode(response.bytes);\n\t//\t\t\treturn dashboardPatients;\n\t//\t\t} catch (error) {\n\t//\t\t\tthrow new TypeError(\"unable to decode streams response\");\n\t//\t\t}\n\t//\t} else if (response.text) {\n\t//\t\tthrow new TypeError(response.text);\n\t//\t}\n\t//\treturn null;\n\t//}\n\n\t//-------------------------------------------------------------------------------------------------\n\t//private onReceiveEcgSourceContent(response: XResponse): { [index: string]: EcgSourceContent } {\n\t//\tif (response.bytes) {\n\t//\t\ttry {\n\t//\t\t\tlet ecgSourcesContentsResponse: GetEcgSourcesContentsResponse = GetEcgSourcesContentsResponse.decode(response.bytes);\n\t//\t\t\tif (ecgSourcesContentsResponse && ecgSourcesContentsResponse.sourcesContents)\n\t//\t\t\t\treturn ecgSourcesContentsResponse.sourcesContents;\n\t//\t\t} catch (error) {\n\t//\t\t\tthrow new TypeError(\"unable to decode ecg-source-content response\");\n\t//\t\t}\n\t//\t} else if (response.text) {\n\t//\t\tthrow new TypeError(response.text);\n\t//\t}\n\n\t//\treturn {};\n\t//}\n\n\t//-------------------------------------------------------------------------------------------------\n\t/**\n\t * In a real world app, we might use a remote logging infrastructure\n\t * We'd also dig deeper into the error to get a better message\n\t * @param error\n\t */\n\tprivate onError(error: any) {\n\t\tlet errMsg = (error.message) ? error.message :\n\t\t\terror.status ? `${error.status} - ${error.statusText}` : 'Server error';\n\t\tconsole.error(errMsg); // log to console instead\n\t\treturn Observable.throw(errMsg);\n\t}\n}\n\n\n// WEBPACK FOOTER //\n// ./scripts/services/grpc.service.ts","// /src/services/text.service.ts\nimport { Injectable, Inject, Component } from \"@angular/core\";\nimport { Http, Response, RequestOptions, RequestMethod, ResponseContentType, Request, RequestOptionsArgs } from \"@angular/http\";\nimport { Observable } from \"rxjs/Observable\";\nimport { BehaviorSubject } from \"rxjs/BehaviorSubject\";\n//import { ApplicationConfig } from \".././app.config\";\nimport { StructureData, StructureStorage, RootData, Resources } from \"../model/structure\";\n\n// Import RxJs required methods\nimport \"rxjs/add/operator/map\";\nimport \"rxjs/add/operator/catch\";\n\n\n//-------------------------------------------------------------------------------------------------\n// TextService\n//-------------------------------------------------------------------------------------------------\n@Injectable()\nexport class InfoService {\n\tprivate newsList: string[] = [];\n\tprivate _structureStorage: StructureStorage = null;\n\tprivate _dataDefault: RootData = null;\n\tprivate _rootData: RootData = null;\n\tprivate _lcid: string = null;\n\tprivate _isTree: boolean = false;\n\t/** Spec data subscription. */\n\tpublic dataBs: BehaviorSubject = new BehaviorSubject(null);\n\tpublic menuBs: BehaviorSubject> = new BehaviorSubject(null);\n\tprivate tree: any = [];\n\t//public resourcesBs: BehaviorSubject> = new BehaviorSubject(null);\n\tprivate _resourcesData: any = [];\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get data(): RootData {\n\t\tif (this._rootData === null && this._dataDefault !== null) {\n\t\t\t//console.log(this._dataDefault);\n\t\t\treturn this._dataDefault;\n\t\t} else if (this._rootData !== null) {\n\t\t\treturn this._rootData;\n\t\t}else return null;\n\t};\n\n\t//-------------------------------------------------------------------------------------\n\tpublic set data(value: RootData) { this.dataBs.next(value); }\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get menu(): any {\n\n\t\tlet structureList: RootData = this.dataBs.value;\n\n\t\tif (structureList === null)\n\t\t\treturn null;\n\t\telse {\n\n\t\t\tlet allResources = structureList.keys;\n\t\t\tlet lvlCount: number = structureList.count;\n\t\t\tlet item: number = 0;\n\t\t\tif (lvlCount && this.tree.length == 0) {\n\t\t\t\t//this._isTree = true;\n\n\t\t\t\tfor (let i = 0; i < lvlCount; i++) {\n\t\t\t\t\t//key = resources //4 objects\n\n\t\t\t\t\tlet structureGroups = structureList.values[i];\n\n\t\t\t\t\tthis.tree[item] = [];\n\t\t\t\t\tthis.tree[item].expanded = false;\n\t\t\t\t\tthis.tree[item].name = structureList.keys[i].charAt(0).toUpperCase() + structureList.keys[i].slice(1);\n\t\t\t\t\tthis.tree[item].path = structureList.keys[i].toLowerCase();\n\n\t\t\t\t\tlet structureNames = Object.keys(structureGroups);\n\t\t\t\t\tthis.tree[item].categories = [];\n\t\t\t\t\tif (structureNames.length) {\n\t\t\t\t\t\tfor (let k = 0; k < structureNames.length; k++) {\n\t\t\t\t\t\t\tthis.tree[item].categories[k] = new Array();\n\t\t\t\t\t\t\tthis.tree[item].categories[k].name = structureNames[k];\n\t\t\t\t\t\t\tthis.tree[item].categories[k].path = structureNames[k].toLowerCase();\n\n\t\t\t\t\t\t\tlet currentMainItem: any = structureGroups[structureNames[k]];\n\t\t\t\t\t\t\tif (currentMainItem.display_name !== undefined) {\n\t\t\t\t\t\t\t\tthis.tree[item].categories[k].name = currentMainItem.display_name;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (currentMainItem.title !== undefined) {\n\t\t\t\t\t\t\t\tthis.tree[item].categories[k].title = currentMainItem.title;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (currentMainItem.subtitle !== undefined) {\n\t\t\t\t\t\t\t\tthis.tree[item].categories[k].subtitle = currentMainItem.subtitle;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif (currentMainItem.description !== undefined) {\n\t\t\t\t\t\t\t\tthis.tree[item].categories[k].description = currentMainItem.description;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\titem++;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn this.tree;\n\t\t}\n\t\n\t};\n\n\t//-------------------------------------------------------------------------------------\n\tpublic set menu(value: any) { this.menuBs.next(value); }\n\t\n\t//-------------------------------------------------------------------------------------\n\tpublic getMenu(key: string): any {\n\t\tlet menuList: any = this.menu;\n\t\tlet menu: { [index: number]: any } = null;\n\n\t\tif (menuList && menuList.length) {\n\t\t\tfor (let k = 0; k < menuList.length; k++) {\n\t\t\t\tif (key == menuList[k].page) {\n\t\t\t\t\t//menu = menuList[k].anchors;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn menu;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic getTitle(mainpage: string, subpage: string): string {\n\t\tlet menuList: any = this.menu;\n\t\tlet title: string = '';\n\n\t\tif (menuList.length) {\n\t\t\tfor (let k = 0; k < menuList.length; k++) {\n\t\t\t\tif (mainpage == menuList[k].path && subpage == '' ) {\n\t\t\t\t\ttitle = menuList[k].name;\n\t\t\t\t}\n\t\t\t\tif (subpage !== '' && menuList[k].categories.length > 0) {\n\t\t\t\t\tfor (let i = 0; i < menuList[k].categories.length; i++) {\n\t\t\t\t\t\tif (subpage == menuList[k].categories[i].path) {\n\t\t\t\t\t\t\tif (menuList[k].categories[i].title !== undefined) {\n\t\t\t\t\t\t\t\ttitle = menuList[k].categories[i].title;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn title;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic getSubtitle(mainpage: string, subpage: string): string {\n\t\tlet menuList: any = this.menu;\n\t\tlet subtitle: string = '';\n\n\t\tif (menuList.length) {\n\t\t\tfor (let k = 0; k < menuList.length; k++) {\n\t\t\t\tif (subpage !== '' && menuList[k].categories.length > 0) {\n\t\t\t\t\tfor (let i = 0; i < menuList[k].categories.length; i++) {\n\t\t\t\t\t\tif (subpage == menuList[k].categories[i].path) {\n\t\t\t\t\t\t\tif (menuList[k].categories[i].subtitle !== undefined) {\n\t\t\t\t\t\t\t\tsubtitle = menuList[k].categories[i].subtitle;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn subtitle;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic pageDescription(mainpage: string, subpage: string): string {\n\t\tlet menuList: any = this.menu;\n\t\tlet description: string = '';\n\n\t\tif (menuList.length) {\n\t\t\tfor (let k = 0; k < menuList.length; k++) {\n\t\t\t\tif (subpage !== '' && menuList[k].categories.length > 0) {\n\t\t\t\t\tfor (let i = 0; i < menuList[k].categories.length; i++) {\n\t\t\t\t\t\tif (subpage == menuList[k].categories[i].path) {\n\t\t\t\t\t\t\tif (menuList[k].categories[i].description !== undefined) {\n\t\t\t\t\t\t\t\tdescription = menuList[k].categories[i].description;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn description;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get resourcesData(): any {\n\t\tif (this._resourcesData !== null)\n\t\t\treturn this._resourcesData;\n\t\telse return null;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get lcidList(): string[] {\n\t\treturn this._structureStorage.keys;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get lcid(): string { return this._lcid; }\n\n\t//-------------------------------------------------------------------------------------\n\tpublic set lcid(value: string) { this._lcid = value; }\n\n\t//-------------------------------------------------------------------------------------\n\tconstructor(private _http: Http) {\n\t\tthis.initStructureStorage();\n\t\tthis.lcid = \"en\";\n\n\t\tthis.loadStructure(this._structureStorage.item(this._lcid).filename)\n\t\t\t.subscribe(valueData => {\n\t\t\t\tthis._dataDefault = valueData;\n\t\t\t});\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\t/** Load structure file. */\n\tprivate loadStructure(filename: string): Observable {\n\t\t//console.info(\"load \", filename);\n\t\tlet serviceUrl = \"data/text/\" + filename;\n\n\t\treturn this._http.get(serviceUrl).map(this.processResponse.bind(this));\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\t/** Process structure getting request. */\n\tprivate processResponse(res: Response): RootData {\n\t\tthis.dataBs.next(new RootData().fromJson(res.json()));\n\t\t\n\t\treturn this.dataBs.value;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tprivate initStructureStorage() {\n\t\tthis._structureStorage = new StructureStorage();\n\t\tthis._structureStorage.add('en', new StructureData(\"infocenter.json\"));\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tprivate extractData(res: Response) {\n\t\tlet body = res.json();\n\t\treturn body.data || {};\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tprivate handleError(error: any) {\n\t\tlet errMsg = (error.message) ? error.message :\n\t\t\terror.status ? `${error.status} - ${error.statusText}` : 'Server error';\n\t\tconsole.error(errMsg); // log to console instead\n\t\treturn Observable.throw(errMsg);\n\t}\n\n\t\n}\n\n\n// WEBPACK FOOTER //\n// ./scripts/services/info.service.ts","// tslint:disable:max-file-line-count max-line-length cyclomatic-complexity\nimport { weekOfYear } from '../units/week-calendar-utils';\nimport { hasOwnProp, isArray, isFunction } from '../utils/type-checks';\nimport { getDay, getMonth } from '../utils/date-getters';\nimport { matchWord, regexEscape } from '../parse/regex';\nimport { setDayOfWeek } from '../units/day-of-week';\nvar MONTHS_IN_FORMAT = /D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?/;\nexport var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_');\nexport var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_');\nexport var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_');\nexport var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_');\nexport var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_');\nexport var defaultLongDateFormat = {\n LTS: 'h:mm:ss A',\n LT: 'h:mm A',\n L: 'MM/DD/YYYY',\n LL: 'MMMM D, YYYY',\n LLL: 'MMMM D, YYYY h:mm A',\n LLLL: 'dddd, MMMM D, YYYY h:mm A'\n};\nexport var defaultOrdinal = '%d';\nexport var defaultDayOfMonthOrdinalParse = /\\d{1,2}/;\nvar defaultMonthsShortRegex = matchWord;\nvar defaultMonthsRegex = matchWord;\nvar Locale = (function () {\n function Locale(config) {\n if (!!config) {\n this.set(config);\n }\n }\n Locale.prototype.set = function (config) {\n var confKey;\n for (confKey in config) {\n if (!config.hasOwnProperty(confKey)) {\n continue;\n }\n var prop = config[confKey];\n var key = (isFunction(prop) ? confKey : \"_\" + confKey);\n this[key] = prop;\n }\n this._config = config;\n };\n Locale.prototype.calendar = function (key, date, now) {\n var output = this._calendar[key] || this._calendar.sameElse;\n return isFunction(output) ? output.call(null, date, now) : output;\n };\n Locale.prototype.longDateFormat = function (key) {\n var format = this._longDateFormat[key];\n var formatUpper = this._longDateFormat[key.toUpperCase()];\n if (format || !formatUpper) {\n return format;\n }\n this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) {\n return val.slice(1);\n });\n return this._longDateFormat[key];\n };\n Object.defineProperty(Locale.prototype, \"invalidDate\", {\n get: function () {\n return this._invalidDate;\n },\n set: function (val) {\n this._invalidDate = val;\n },\n enumerable: true,\n configurable: true\n });\n Locale.prototype.ordinal = function (num, token) {\n return this._ordinal.replace('%d', num.toString(10));\n };\n Locale.prototype.preparse = function (str) {\n return str;\n };\n Locale.prototype.postformat = function (str) {\n return str;\n };\n Locale.prototype.relativeTime = function (num, withoutSuffix, str, isFuture) {\n var output = this._relativeTime[str];\n return (isFunction(output)) ?\n output(num, withoutSuffix, str, isFuture) :\n output.replace(/%d/i, num.toString(10));\n };\n Locale.prototype.pastFuture = function (diff, output) {\n var format = this._relativeTime[diff > 0 ? 'future' : 'past'];\n return isFunction(format) ? format(output) : format.replace(/%s/i, output);\n };\n Locale.prototype.months = function (date, format, isUTC) {\n if (isUTC === void 0) { isUTC = false; }\n if (!date) {\n return isArray(this._months)\n ? this._months\n : this._months.standalone;\n }\n if (isArray(this._months)) {\n return this._months[getMonth(date, isUTC)];\n }\n var key = (this._months.isFormat || MONTHS_IN_FORMAT).test(format)\n ? 'format'\n : 'standalone';\n return this._months[key][getMonth(date, isUTC)];\n };\n Locale.prototype.monthsShort = function (date, format, isUTC) {\n if (isUTC === void 0) { isUTC = false; }\n if (!date) {\n return isArray(this._monthsShort)\n ? this._monthsShort\n : this._monthsShort.standalone;\n }\n if (isArray(this._monthsShort)) {\n return this._monthsShort[getMonth(date, isUTC)];\n }\n var key = MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone';\n return this._monthsShort[key][getMonth(date, isUTC)];\n };\n Locale.prototype.monthsParse = function (monthName, format, strict) {\n var date;\n var regex;\n if (this._monthsParseExact) {\n return this.handleMonthStrictParse(monthName, format, strict);\n }\n if (!this._monthsParse) {\n this._monthsParse = [];\n this._longMonthsParse = [];\n this._shortMonthsParse = [];\n }\n // TODO: add sorting\n // Sorting makes sure if one month (or abbr) is a prefix of another\n // see sorting in computeMonthsParse\n var i;\n for (i = 0; i < 12; i++) {\n // make the regex if we don't have it already\n date = new Date(Date.UTC(2000, i));\n if (strict && !this._longMonthsParse[i]) {\n var _months = this.months(date, '').replace('.', '');\n var _shortMonths = this.monthsShort(date, '').replace('.', '');\n this._longMonthsParse[i] = new RegExp(\"^\" + _months + \"$\", 'i');\n this._shortMonthsParse[i] = new RegExp(\"^\" + _shortMonths + \"$\", 'i');\n }\n if (!strict && !this._monthsParse[i]) {\n regex = \"^\" + this.months(date, '') + \"|^\" + this.monthsShort(date, '');\n this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i');\n }\n // test the regex\n if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) {\n return i;\n }\n if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) {\n return i;\n }\n if (!strict && this._monthsParse[i].test(monthName)) {\n return i;\n }\n }\n };\n Locale.prototype.monthsRegex = function (isStrict) {\n if (this._monthsParseExact) {\n if (!hasOwnProp(this, '_monthsRegex')) {\n this.computeMonthsParse();\n }\n if (isStrict) {\n return this._monthsStrictRegex;\n }\n return this._monthsRegex;\n }\n if (!hasOwnProp(this, '_monthsRegex')) {\n this._monthsRegex = defaultMonthsRegex;\n }\n return this._monthsStrictRegex && isStrict ?\n this._monthsStrictRegex : this._monthsRegex;\n };\n Locale.prototype.monthsShortRegex = function (isStrict) {\n if (this._monthsParseExact) {\n if (!hasOwnProp(this, '_monthsRegex')) {\n this.computeMonthsParse();\n }\n if (isStrict) {\n return this._monthsShortStrictRegex;\n }\n return this._monthsShortRegex;\n }\n if (!hasOwnProp(this, '_monthsShortRegex')) {\n this._monthsShortRegex = defaultMonthsShortRegex;\n }\n return this._monthsShortStrictRegex && isStrict ?\n this._monthsShortStrictRegex : this._monthsShortRegex;\n };\n /** Week */\n Locale.prototype.week = function (date) {\n return weekOfYear(date, this._week.dow, this._week.doy).week;\n };\n Locale.prototype.firstDayOfWeek = function () {\n return this._week.dow;\n };\n Locale.prototype.firstDayOfYear = function () {\n return this._week.doy;\n };\n Locale.prototype.weekdays = function (date, format, isUTC) {\n if (!date) {\n return isArray(this._weekdays)\n ? this._weekdays\n : this._weekdays.standalone;\n }\n if (isArray(this._weekdays)) {\n return this._weekdays[getDay(date, isUTC)];\n }\n var _key = this._weekdays.isFormat.test(format)\n ? 'format'\n : 'standalone';\n return this._weekdays[_key][getDay(date, isUTC)];\n };\n Locale.prototype.weekdaysMin = function (date, format, isUTC) {\n return date ? this._weekdaysMin[getDay(date, isUTC)] : this._weekdaysMin;\n };\n Locale.prototype.weekdaysShort = function (date, format, isUTC) {\n return date ? this._weekdaysShort[getDay(date, isUTC)] : this._weekdaysShort;\n };\n // proto.weekdaysParse = localeWeekdaysParse;\n Locale.prototype.weekdaysParse = function (weekdayName, format, strict) {\n var i;\n var regex;\n if (this._weekdaysParseExact) {\n return this.handleWeekStrictParse(weekdayName, format, strict);\n }\n if (!this._weekdaysParse) {\n this._weekdaysParse = [];\n this._minWeekdaysParse = [];\n this._shortWeekdaysParse = [];\n this._fullWeekdaysParse = [];\n }\n for (i = 0; i < 7; i++) {\n // make the regex if we don't have it already\n // fix: here is the issue\n var date = setDayOfWeek(new Date(Date.UTC(2000, 1)), i, null, true);\n if (strict && !this._fullWeekdaysParse[i]) {\n this._fullWeekdaysParse[i] = new RegExp(\"^\" + this.weekdays(date, '').replace('.', '\\.?') + \"$\", 'i');\n this._shortWeekdaysParse[i] = new RegExp(\"^\" + this.weekdaysShort(date).replace('.', '\\.?') + \"$\", 'i');\n this._minWeekdaysParse[i] = new RegExp(\"^\" + this.weekdaysMin(date).replace('.', '\\.?') + \"$\", 'i');\n }\n if (!this._weekdaysParse[i]) {\n regex = \"^\" + this.weekdays(date, '') + \"|^\" + this.weekdaysShort(date) + \"|^\" + this.weekdaysMin(date);\n this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i');\n }\n if (!isArray(this._fullWeekdaysParse)\n || !isArray(this._shortWeekdaysParse)\n || !isArray(this._minWeekdaysParse)\n || !isArray(this._weekdaysParse)) {\n return;\n }\n // test the regex\n if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) {\n return i;\n }\n else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) {\n return i;\n }\n else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) {\n return i;\n }\n else if (!strict && this._weekdaysParse[i].test(weekdayName)) {\n return i;\n }\n }\n };\n // proto.weekdaysRegex = weekdaysRegex;\n Locale.prototype.weekdaysRegex = function (isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n this.computeWeekdaysParse();\n }\n if (isStrict) {\n return this._weekdaysStrictRegex;\n }\n else {\n return this._weekdaysRegex;\n }\n }\n else {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n this._weekdaysRegex = matchWord;\n }\n return this._weekdaysStrictRegex && isStrict ?\n this._weekdaysStrictRegex : this._weekdaysRegex;\n }\n };\n // proto.weekdaysShortRegex = weekdaysShortRegex;\n // proto.weekdaysMinRegex = weekdaysMinRegex;\n Locale.prototype.weekdaysShortRegex = function (isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n this.computeWeekdaysParse();\n }\n if (isStrict) {\n return this._weekdaysShortStrictRegex;\n }\n else {\n return this._weekdaysShortRegex;\n }\n }\n else {\n if (!hasOwnProp(this, '_weekdaysShortRegex')) {\n this._weekdaysShortRegex = matchWord;\n }\n return this._weekdaysShortStrictRegex && isStrict ?\n this._weekdaysShortStrictRegex : this._weekdaysShortRegex;\n }\n };\n Locale.prototype.weekdaysMinRegex = function (isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n this.computeWeekdaysParse();\n }\n if (isStrict) {\n return this._weekdaysMinStrictRegex;\n }\n else {\n return this._weekdaysMinRegex;\n }\n }\n else {\n if (!hasOwnProp(this, '_weekdaysMinRegex')) {\n this._weekdaysMinRegex = matchWord;\n }\n return this._weekdaysMinStrictRegex && isStrict ?\n this._weekdaysMinStrictRegex : this._weekdaysMinRegex;\n }\n };\n Locale.prototype.isPM = function (input) {\n // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays\n // Using charAt should be more compatible.\n return input.toLowerCase().charAt(0) === 'p';\n };\n Locale.prototype.meridiem = function (hours, minutes, isLower) {\n if (hours > 11) {\n return isLower ? 'pm' : 'PM';\n }\n return isLower ? 'am' : 'AM';\n };\n Locale.prototype.formatLongDate = function (key) {\n this._longDateFormat = this._longDateFormat ? this._longDateFormat : defaultLongDateFormat;\n var format = this._longDateFormat[key];\n var formatUpper = this._longDateFormat[key.toUpperCase()];\n if (format || !formatUpper) {\n return format;\n }\n this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) {\n return val.slice(1);\n });\n return this._longDateFormat[key];\n };\n Locale.prototype.handleMonthStrictParse = function (monthName, format, strict) {\n var llc = monthName.toLocaleLowerCase();\n var i;\n var ii;\n var mom;\n if (!this._monthsParse) {\n // this is not used\n this._monthsParse = [];\n this._longMonthsParse = [];\n this._shortMonthsParse = [];\n for (i = 0; i < 12; ++i) {\n mom = new Date(2000, i);\n this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase();\n this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase();\n }\n }\n if (strict) {\n if (format === 'MMM') {\n ii = this._shortMonthsParse.indexOf(llc);\n return ii !== -1 ? ii : null;\n }\n ii = this._longMonthsParse.indexOf(llc);\n return ii !== -1 ? ii : null;\n }\n if (format === 'MMM') {\n ii = this._shortMonthsParse.indexOf(llc);\n if (ii !== -1) {\n return ii;\n }\n ii = this._longMonthsParse.indexOf(llc);\n return ii !== -1 ? ii : null;\n }\n ii = this._longMonthsParse.indexOf(llc);\n if (ii !== -1) {\n return ii;\n }\n ii = this._shortMonthsParse.indexOf(llc);\n return ii !== -1 ? ii : null;\n };\n Locale.prototype.handleWeekStrictParse = function (weekdayName, format, strict) {\n var ii;\n var llc = weekdayName.toLocaleLowerCase();\n if (!this._weekdaysParse) {\n this._weekdaysParse = [];\n this._shortWeekdaysParse = [];\n this._minWeekdaysParse = [];\n var i = void 0;\n for (i = 0; i < 7; ++i) {\n var date = setDayOfWeek(new Date(Date.UTC(2000, 1)), i, null, true);\n this._minWeekdaysParse[i] = this.weekdaysMin(date).toLocaleLowerCase();\n this._shortWeekdaysParse[i] = this.weekdaysShort(date).toLocaleLowerCase();\n this._weekdaysParse[i] = this.weekdays(date, '').toLocaleLowerCase();\n }\n }\n if (!isArray(this._weekdaysParse)\n || !isArray(this._shortWeekdaysParse)\n || !isArray(this._minWeekdaysParse)) {\n return;\n }\n if (strict) {\n if (format === 'dddd') {\n ii = this._weekdaysParse.indexOf(llc);\n return ii !== -1 ? ii : null;\n }\n else if (format === 'ddd') {\n ii = this._shortWeekdaysParse.indexOf(llc);\n return ii !== -1 ? ii : null;\n }\n else {\n ii = this._minWeekdaysParse.indexOf(llc);\n return ii !== -1 ? ii : null;\n }\n }\n else {\n if (format === 'dddd') {\n ii = this._weekdaysParse.indexOf(llc);\n if (ii !== -1) {\n return ii;\n }\n ii = this._shortWeekdaysParse.indexOf(llc);\n if (ii !== -1) {\n return ii;\n }\n ii = this._minWeekdaysParse.indexOf(llc);\n return ii !== -1 ? ii : null;\n }\n else if (format === 'ddd') {\n ii = this._shortWeekdaysParse.indexOf(llc);\n if (ii !== -1) {\n return ii;\n }\n ii = this._weekdaysParse.indexOf(llc);\n if (ii !== -1) {\n return ii;\n }\n ii = this._minWeekdaysParse.indexOf(llc);\n return ii !== -1 ? ii : null;\n }\n else {\n ii = this._minWeekdaysParse.indexOf(llc);\n if (ii !== -1) {\n return ii;\n }\n ii = this._weekdaysParse.indexOf(llc);\n if (ii !== -1) {\n return ii;\n }\n ii = this._shortWeekdaysParse.indexOf(llc);\n return ii !== -1 ? ii : null;\n }\n }\n };\n Locale.prototype.computeMonthsParse = function () {\n var shortPieces = [];\n var longPieces = [];\n var mixedPieces = [];\n var date;\n var i;\n for (i = 0; i < 12; i++) {\n // make the regex if we don't have it already\n date = new Date(2000, i);\n shortPieces.push(this.monthsShort(date, ''));\n longPieces.push(this.months(date, ''));\n mixedPieces.push(this.months(date, ''));\n mixedPieces.push(this.monthsShort(date, ''));\n }\n // Sorting makes sure if one month (or abbr) is a prefix of another it\n // will match the longer piece.\n shortPieces.sort(cmpLenRev);\n longPieces.sort(cmpLenRev);\n mixedPieces.sort(cmpLenRev);\n for (i = 0; i < 12; i++) {\n shortPieces[i] = regexEscape(shortPieces[i]);\n longPieces[i] = regexEscape(longPieces[i]);\n }\n for (i = 0; i < 24; i++) {\n mixedPieces[i] = regexEscape(mixedPieces[i]);\n }\n this._monthsRegex = new RegExp(\"^(\" + mixedPieces.join('|') + \")\", 'i');\n this._monthsShortRegex = this._monthsRegex;\n this._monthsStrictRegex = new RegExp(\"^(\" + longPieces.join('|') + \")\", 'i');\n this._monthsShortStrictRegex = new RegExp(\"^(\" + shortPieces.join('|') + \")\", 'i');\n };\n Locale.prototype.computeWeekdaysParse = function () {\n var minPieces = [];\n var shortPieces = [];\n var longPieces = [];\n var mixedPieces = [];\n var i;\n for (i = 0; i < 7; i++) {\n // make the regex if we don't have it already\n // let mom = createUTC([2000, 1]).day(i);\n var date = setDayOfWeek(new Date(Date.UTC(2000, 1)), i, null, true);\n var minp = this.weekdaysMin(date);\n var shortp = this.weekdaysShort(date);\n var longp = this.weekdays(date);\n minPieces.push(minp);\n shortPieces.push(shortp);\n longPieces.push(longp);\n mixedPieces.push(minp);\n mixedPieces.push(shortp);\n mixedPieces.push(longp);\n }\n // Sorting makes sure if one weekday (or abbr) is a prefix of another it\n // will match the longer piece.\n minPieces.sort(cmpLenRev);\n shortPieces.sort(cmpLenRev);\n longPieces.sort(cmpLenRev);\n mixedPieces.sort(cmpLenRev);\n for (i = 0; i < 7; i++) {\n shortPieces[i] = regexEscape(shortPieces[i]);\n longPieces[i] = regexEscape(longPieces[i]);\n mixedPieces[i] = regexEscape(mixedPieces[i]);\n }\n this._weekdaysRegex = new RegExp(\"^(\" + mixedPieces.join('|') + \")\", 'i');\n this._weekdaysShortRegex = this._weekdaysRegex;\n this._weekdaysMinRegex = this._weekdaysRegex;\n this._weekdaysStrictRegex = new RegExp(\"^(\" + longPieces.join('|') + \")\", 'i');\n this._weekdaysShortStrictRegex = new RegExp(\"^(\" + shortPieces.join('|') + \")\", 'i');\n this._weekdaysMinStrictRegex = new RegExp(\"^(\" + minPieces.join('|') + \")\", 'i');\n };\n return Locale;\n}());\nexport { Locale };\nfunction cmpLenRev(a, b) {\n return b.length - a.length;\n}\n//# sourceMappingURL=locale.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/locale/locale.class.js\n// module id = 290\n// module chunks = 1","export function zeroFill(num, targetLength, forceSign) {\n var absNumber = \"\" + Math.abs(num);\n var zerosToFill = targetLength - absNumber.length;\n var sign = num >= 0;\n var _sign = sign ? (forceSign ? '+' : '') : '-';\n // todo: this is crazy slow\n var _zeros = Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1);\n return (_sign + _zeros + absNumber);\n}\n//# sourceMappingURL=zero-fill.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/utils/zero-fill.js\n// module id = 291\n// module chunks = 1","export function mod(n, x) {\n return (n % x + x) % x;\n}\nexport function absFloor(num) {\n return num < 0 ? Math.ceil(num) || 0 : Math.floor(num);\n}\n//# sourceMappingURL=utils.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/utils.js\n// module id = 292\n// module chunks = 1","import { addFormatToken } from '../format/format';\nimport { isLeapYear } from './year';\nimport { mod } from '../utils';\nimport { getMonth } from '../utils/date-getters';\nimport { addRegexToken, match1to2, match2 } from '../parse/regex';\nimport { addParseToken } from '../parse/token';\nimport { MONTH } from './constants';\nimport { toInt } from '../utils/type-checks';\nimport { addUnitPriority } from './priorities';\nimport { addUnitAlias } from './aliases';\nimport { getParsingFlags } from '../create/parsing-flags';\n// todo: this is duplicate, source in date-getters.ts\nexport function daysInMonth(year, month) {\n if (isNaN(year) || isNaN(month)) {\n return NaN;\n }\n var modMonth = mod(month, 12);\n var _year = year + (month - modMonth) / 12;\n return modMonth === 1\n ? isLeapYear(_year) ? 29 : 28\n : (31 - modMonth % 7 % 2);\n}\n// FORMATTING\naddFormatToken('M', ['MM', 2, false], 'Mo', function (date, opts) {\n return (getMonth(date, opts.isUTC) + 1).toString(10);\n});\naddFormatToken('MMM', null, null, function (date, opts) {\n return opts.locale.monthsShort(date, opts.format, opts.isUTC);\n});\naddFormatToken('MMMM', null, null, function (date, opts) {\n return opts.locale.months(date, opts.format, opts.isUTC);\n});\n// ALIASES\naddUnitAlias('month', 'M');\n// PRIORITY\naddUnitPriority('month', 8);\n// PARSING\naddRegexToken('M', match1to2);\naddRegexToken('MM', match1to2, match2);\naddRegexToken('MMM', function (isStrict, locale) {\n return locale.monthsShortRegex(isStrict);\n});\naddRegexToken('MMMM', function (isStrict, locale) {\n return locale.monthsRegex(isStrict);\n});\naddParseToken(['M', 'MM'], function (input, array, config) {\n array[MONTH] = toInt(input) - 1;\n return config;\n});\naddParseToken(['MMM', 'MMMM'], function (input, array, config, token) {\n var month = config._locale.monthsParse(input, token, config._strict);\n // if we didn't find a month name, mark the date as invalid.\n if (month != null) {\n array[MONTH] = month;\n }\n else {\n getParsingFlags(config).invalidMonth = !!input;\n }\n return config;\n});\n//# sourceMappingURL=month.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/units/month.js\n// module id = 293\n// module chunks = 1","import { getParsingFlags } from './parsing-flags';\nexport function isValid(config) {\n if (config._isValid == null) {\n var flags = getParsingFlags(config);\n var parsedParts = Array.prototype.some.call(flags.parsedDateParts, function (i) {\n return i != null;\n });\n var isNowValid = !isNaN(config._d && config._d.getTime()) &&\n flags.overflow < 0 &&\n !flags.empty &&\n !flags.invalidMonth &&\n !flags.invalidWeekday &&\n !flags.weekdayMismatch &&\n !flags.nullInput &&\n !flags.invalidFormat &&\n !flags.userInvalidated &&\n (!flags.meridiem || (flags.meridiem && parsedParts));\n if (config._strict) {\n isNowValid = isNowValid &&\n flags.charsLeftOver === 0 &&\n flags.unusedTokens.length === 0 &&\n flags.bigHour === undefined;\n }\n if (Object.isFrozen == null || !Object.isFrozen(config)) {\n config._isValid = isNowValid;\n }\n else {\n return isNowValid;\n }\n }\n return config._isValid;\n}\nexport function createInvalid(config, flags) {\n config._d = new Date(NaN);\n Object.assign(getParsingFlags(config), flags || { userInvalidated: true });\n return config;\n}\nexport function markInvalid(config) {\n config._isValid = false;\n return config;\n}\n//# sourceMappingURL=valid.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/create/valid.js\n// module id = 294\n// module chunks = 1","import { configFromISO, configFromRFC2822 } from './from-string';\nimport { expandFormat } from '../format';\nimport { formattingTokens, formatTokenFunctions } from '../format/format';\nimport { isArray } from '../utils/type-checks';\nimport { getParseRegexForToken } from '../parse/regex';\nimport { addTimeToArrayFromToken } from '../parse/token';\nimport { HOUR } from '../units/constants';\nimport { configFromArray } from './from-array';\nimport { getParsingFlags } from './parsing-flags';\nimport { checkOverflow } from './check-overflow';\n// constant that refers to the ISO standard\n// hooks.ISO_8601 = function () {};\nexport var ISO_8601 = 'ISO_8601';\n// constant that refers to the RFC 2822 form\n// hooks.RFC_2822 = function () {};\nexport var RFC_2822 = 'RFC_2822';\n// date from string and format string\nexport function configFromStringAndFormat(config) {\n // TODO: Move this to another part of the creation flow to prevent circular deps\n if (config._f === ISO_8601) {\n return configFromISO(config);\n }\n if (config._f === RFC_2822) {\n return configFromRFC2822(config);\n }\n config._a = [];\n getParsingFlags(config).empty = true;\n if (isArray(config._f) || (!config._i && config._i !== 0)) {\n return config;\n }\n // This array is used to make a Date, either with `new Date` or `Date.UTC`\n var input = config._i.toString();\n var totalParsedInputLength = 0;\n var inputLength = input.length;\n var tokens = expandFormat(config._f, config._locale).match(formattingTokens) || [];\n var i;\n var token;\n var parsedInput;\n var skipped;\n for (i = 0; i < tokens.length; i++) {\n token = tokens[i];\n parsedInput = (input.match(getParseRegexForToken(token, config._locale)) || [])[0];\n if (parsedInput) {\n skipped = input.substr(0, input.indexOf(parsedInput));\n if (skipped.length > 0) {\n getParsingFlags(config).unusedInput.push(skipped);\n }\n input = input.slice(input.indexOf(parsedInput) + parsedInput.length);\n totalParsedInputLength += parsedInput.length;\n }\n // don't parse if it's not a known token\n if (formatTokenFunctions[token]) {\n if (parsedInput) {\n getParsingFlags(config).empty = false;\n }\n else {\n getParsingFlags(config).unusedTokens.push(token);\n }\n addTimeToArrayFromToken(token, parsedInput, config);\n }\n else if (config._strict && !parsedInput) {\n getParsingFlags(config).unusedTokens.push(token);\n }\n }\n // add remaining unparsed input length to the string\n getParsingFlags(config).charsLeftOver = inputLength - totalParsedInputLength;\n if (input.length > 0) {\n getParsingFlags(config).unusedInput.push(input);\n }\n // clear _12h flag if hour is <= 12\n if (config._a[HOUR] <= 12 &&\n getParsingFlags(config).bigHour === true &&\n config._a[HOUR] > 0) {\n getParsingFlags(config).bigHour = void 0;\n }\n getParsingFlags(config).parsedDateParts = config._a.slice(0);\n getParsingFlags(config).meridiem = config._meridiem;\n // handle meridiem\n config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem);\n configFromArray(config);\n return checkOverflow(config);\n}\nfunction meridiemFixWrap(locale, _hour, meridiem) {\n var hour = _hour;\n if (meridiem == null) {\n // nothing to do\n return hour;\n }\n if (locale.meridiemHour != null) {\n return locale.meridiemHour(hour, meridiem);\n }\n if (locale.isPM == null) {\n // this is not supposed to happen\n return hour;\n }\n // Fallback\n var isPm = locale.isPM(meridiem);\n if (isPm && hour < 12) {\n hour += 12;\n }\n if (!isPm && hour === 12) {\n hour = 0;\n }\n return hour;\n}\n//# sourceMappingURL=from-string-and-format.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/create/from-string-and-format.js\n// module id = 295\n// module chunks = 1","import { addFormatToken } from '../format/format';\nimport { weekOfYear } from './week-calendar-utils';\nimport { addRegexToken, match1to2, match2 } from '../parse/regex';\nimport { addUnitAlias } from './aliases';\nimport { addUnitPriority } from './priorities';\nimport { addWeekParseToken } from '../parse/token';\nimport { toInt } from '../utils/type-checks';\nimport { getLocale } from '../locale/locales';\nimport { add } from '../moment/add-subtract';\n// FORMATTING\naddFormatToken('w', ['ww', 2, false], 'wo', function (date, opts) {\n return getWeek(date, opts.locale).toString(10);\n});\naddFormatToken('W', ['WW', 2, false], 'Wo', function (date) {\n return getISOWeek(date).toString(10);\n});\n// ALIASES\naddUnitAlias('week', 'w');\naddUnitAlias('isoWeek', 'W');\n// PRIORITIES\naddUnitPriority('week', 5);\naddUnitPriority('isoWeek', 5);\n// PARSING\naddRegexToken('w', match1to2);\naddRegexToken('ww', match1to2, match2);\naddRegexToken('W', match1to2);\naddRegexToken('WW', match1to2, match2);\naddWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) {\n week[token.substr(0, 1)] = toInt(input);\n return config;\n});\n// export function getSetWeek (input) {\n// var week = this.localeData().week(this);\n// return input == null ? week : this.add((input - week) * 7, 'd');\n// }\nexport function setWeek(date, input, locale) {\n if (locale === void 0) { locale = getLocale(); }\n var week = getWeek(date, locale);\n return add(date, (input - week) * 7, 'day');\n}\nexport function getWeek(date, locale) {\n if (locale === void 0) { locale = getLocale(); }\n return locale.week(date);\n}\n// export function getSetISOWeek (input) {\n// var week = weekOfYear(this, 1, 4).week;\n// return input == null ? week : this.add((input - week) * 7, 'd');\n// }\nexport function setISOWeek(date, input) {\n var week = getISOWeek(date);\n return add(date, (input - week) * 7, 'day');\n}\nexport function getISOWeek(date) {\n return weekOfYear(date, 1, 4).week;\n}\n//# sourceMappingURL=week.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/units/week.js\n// module id = 296\n// module chunks = 1","import { DATE, HOUR, MILLISECOND, MINUTE, MONTH, SECOND, YEAR } from '../units/constants';\nimport { daysInYear } from '../units/year';\nimport { getParsingFlags } from './parsing-flags';\nimport { createUTCDate } from './date-from-array';\nimport { createDate } from './date-from-array';\nimport { dayOfYearFromWeeks, weekOfYear, weeksInYear } from '../units/week-calendar-utils';\nimport { defaults } from '../utils/defaults';\nfunction currentDateArray(config) {\n var nowValue = new Date();\n if (config._useUTC) {\n return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()];\n }\n return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()];\n}\n// convert an array to a date.\n// the array should mirror the parameters below\n// note: all values past the year are optional and will default to the lowest possible value.\n// [year, month, day , hour, minute, second, millisecond]\nexport function configFromArray(config) {\n var input = [];\n var i;\n var date;\n var currentDate;\n var expectedWeekday;\n var yearToUse;\n if (config._d) {\n return config;\n }\n currentDate = currentDateArray(config);\n // compute day of the year from weeks and weekdays\n if (config._w && config._a[DATE] == null && config._a[MONTH] == null) {\n dayOfYearFromWeekInfo(config);\n }\n // if the day of the year is set, figure out what it is\n if (config._dayOfYear != null) {\n yearToUse = defaults(config._a[YEAR], currentDate[YEAR]);\n if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) {\n getParsingFlags(config)._overflowDayOfYear = true;\n }\n date = new Date(Date.UTC(yearToUse, 0, config._dayOfYear));\n config._a[MONTH] = date.getUTCMonth();\n config._a[DATE] = date.getUTCDate();\n }\n // Default to current date.\n // * if no year, month, day of month are given, default to today\n // * if day of month is given, default month and year\n // * if month is given, default only year\n // * if year is given, don't default anything\n for (i = 0; i < 3 && config._a[i] == null; ++i) {\n config._a[i] = input[i] = currentDate[i];\n }\n // Zero out whatever was not defaulted, including time\n for (; i < 7; i++) {\n config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i];\n }\n // Check for 24:00:00.000\n if (config._a[HOUR] === 24 &&\n config._a[MINUTE] === 0 &&\n config._a[SECOND] === 0 &&\n config._a[MILLISECOND] === 0) {\n config._nextDay = true;\n config._a[HOUR] = 0;\n }\n config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);\n expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay();\n // Apply timezone offset from input. The actual utcOffset can be changed\n // with parseZone.\n if (config._tzm != null) {\n config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);\n }\n if (config._nextDay) {\n config._a[HOUR] = 24;\n }\n // check for mismatching day of week\n if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) {\n getParsingFlags(config).weekdayMismatch = true;\n }\n return config;\n}\nfunction dayOfYearFromWeekInfo(config) {\n var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow;\n w = config._w;\n if (w.GG != null || w.W != null || w.E != null) {\n dow = 1;\n doy = 4;\n // TODO: We need to take the current isoWeekYear, but that depends on\n // how we interpret now (local, utc, fixed offset). So create\n // a now version of current config (take local/utc/offset flags, and\n // create now).\n weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(new Date(), 1, 4).year);\n week = defaults(w.W, 1);\n weekday = defaults(w.E, 1);\n if (weekday < 1 || weekday > 7) {\n weekdayOverflow = true;\n }\n }\n else {\n dow = config._locale._week.dow;\n doy = config._locale._week.doy;\n var curWeek = weekOfYear(new Date(), dow, doy);\n weekYear = defaults(w.gg, config._a[YEAR], curWeek.year);\n // Default to current week.\n week = defaults(w.w, curWeek.week);\n if (w.d != null) {\n // weekday -- low day numbers are considered next week\n weekday = w.d;\n if (weekday < 0 || weekday > 6) {\n weekdayOverflow = true;\n }\n }\n else if (w.e != null) {\n // local weekday -- counting starts from begining of week\n weekday = w.e + dow;\n if (w.e < 0 || w.e > 6) {\n weekdayOverflow = true;\n }\n }\n else {\n // default to begining of week\n weekday = dow;\n }\n }\n if (week < 1 || week > weeksInYear(weekYear, dow, doy)) {\n getParsingFlags(config)._overflowWeeks = true;\n }\n else if (weekdayOverflow != null) {\n getParsingFlags(config)._overflowWeekday = true;\n }\n else {\n temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy);\n config._a[YEAR] = temp.year;\n config._dayOfYear = temp.dayOfYear;\n }\n return config;\n}\n//# sourceMappingURL=from-array.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/create/from-array.js\n// module id = 297\n// module chunks = 1","/*tslint:disable */\n/**\n * @license\n * Copyright Google Inc. All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n/**\n * JS version of browser APIs. This library can only run in the browser.\n */\nvar win = (typeof window !== 'undefined' && window) || {};\nexport { win as window };\nexport var document = win.document;\nexport var location = win.location;\nexport var gc = win['gc'] ? function () { return win['gc'](); } : function () { return null; };\nexport var performance = win['performance'] ? win['performance'] : null;\nexport var Event = win['Event'];\nexport var MouseEvent = win['MouseEvent'];\nexport var KeyboardEvent = win['KeyboardEvent'];\nexport var EventTarget = win['EventTarget'];\nexport var History = win['History'];\nexport var Location = win['Location'];\nexport var EventListener = win['EventListener'];\n//# sourceMappingURL=browser.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/utils/facade/browser.js\n// module id = 298\n// module chunks = 1","import { Component, Input } from '@angular/core';\nimport { AccordionConfig } from './accordion.config';\n/** Displays collapsible content panels for presenting information in a limited amount of space. */\nvar AccordionComponent = (function () {\n function AccordionComponent(config) {\n this.groups = [];\n Object.assign(this, config);\n }\n AccordionComponent.prototype.closeOtherPanels = function (openGroup) {\n if (!this.closeOthers) {\n return;\n }\n this.groups.forEach(function (group) {\n if (group !== openGroup) {\n group.isOpen = false;\n }\n });\n };\n AccordionComponent.prototype.addGroup = function (group) {\n this.groups.push(group);\n };\n AccordionComponent.prototype.removeGroup = function (group) {\n var index = this.groups.indexOf(group);\n if (index !== -1) {\n this.groups.splice(index, 1);\n }\n };\n AccordionComponent.decorators = [\n { type: Component, args: [{\n selector: 'accordion',\n template: \"\",\n host: {\n '[attr.aria-multiselectable]': 'closeOthers',\n role: 'tablist',\n class: 'panel-group',\n style: 'display: block'\n }\n },] },\n ];\n /** @nocollapse */\n AccordionComponent.ctorParameters = function () { return [\n { type: AccordionConfig, },\n ]; };\n AccordionComponent.propDecorators = {\n 'closeOthers': [{ type: Input },],\n };\n return AccordionComponent;\n}());\nexport { AccordionComponent };\n//# sourceMappingURL=accordion.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/accordion/accordion.component.js\n// module id = 299\n// module chunks = 1","import { Injectable } from '@angular/core';\n/**\n * Configuration service, provides default values for the AccordionComponent.\n */\nvar AccordionConfig = (function () {\n function AccordionConfig() {\n /** Whether the other panels should be closed when a panel is opened */\n this.closeOthers = false;\n }\n AccordionConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n AccordionConfig.ctorParameters = function () { return []; };\n return AccordionConfig;\n}());\nexport { AccordionConfig };\n//# sourceMappingURL=accordion.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/accordion/accordion.config.js\n// module id = 300\n// module chunks = 1","import { Injectable } from '@angular/core';\nvar AlertConfig = (function () {\n function AlertConfig() {\n /** default alert type */\n this.type = 'warning';\n /** is alerts are dismissible by default */\n this.dismissible = false;\n /** default time before alert will dismiss */\n this.dismissOnTimeout = undefined;\n }\n AlertConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n AlertConfig.ctorParameters = function () { return []; };\n return AlertConfig;\n}());\nexport { AlertConfig };\n//# sourceMappingURL=alert.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/alert/alert.config.js\n// module id = 301\n// module chunks = 1","/*tslint:disable:no-invalid-this */\nexport function OnChange(defaultValue) {\n var sufix = 'Change';\n return function OnChangeHandler(target, propertyKey) {\n var _key = \" __\" + propertyKey + \"Value\";\n Object.defineProperty(target, propertyKey, {\n get: function () {\n return this[_key];\n },\n set: function (value) {\n var prevValue = this[_key];\n this[_key] = value;\n if (prevValue !== value && this[propertyKey + sufix]) {\n this[propertyKey + sufix].emit(value);\n }\n }\n });\n };\n}\n/* tslint:enable */\n//# sourceMappingURL=decorators.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/utils/decorators.js\n// module id = 302\n// module chunks = 1","// tslint:disable:no-use-before-declare\nimport { ChangeDetectorRef, Directive, ElementRef, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nexport var RADIO_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return ButtonRadioGroupDirective; }),\n multi: true\n};\n/**\n * A group of radio buttons.\n * A value of a selected button is bound to a variable specified via ngModel.\n */\nvar ButtonRadioGroupDirective = (function () {\n function ButtonRadioGroupDirective(el, cdr) {\n this.el = el;\n this.cdr = cdr;\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n }\n Object.defineProperty(ButtonRadioGroupDirective.prototype, \"value\", {\n get: function () {\n return this._value;\n },\n set: function (value) {\n this._value = value;\n },\n enumerable: true,\n configurable: true\n });\n ButtonRadioGroupDirective.prototype.writeValue = function (value) {\n this._value = value;\n this.cdr.markForCheck();\n };\n ButtonRadioGroupDirective.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n ButtonRadioGroupDirective.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n ButtonRadioGroupDirective.decorators = [\n { type: Directive, args: [{\n selector: '[btnRadioGroup]',\n providers: [RADIO_CONTROL_VALUE_ACCESSOR]\n },] },\n ];\n /** @nocollapse */\n ButtonRadioGroupDirective.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: ChangeDetectorRef, },\n ]; };\n return ButtonRadioGroupDirective;\n}());\nexport { ButtonRadioGroupDirective };\n//# sourceMappingURL=button-radio-group.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/buttons/button-radio-group.directive.js\n// module id = 303\n// module chunks = 1","// tslint:disable:max-file-line-count\n/***\n * pause (not yet supported) (?string='hover') - event group name which pauses\n * the cycling of the carousel, if hover pauses on mouseenter and resumes on\n * mouseleave keyboard (not yet supported) (?boolean=true) - if false\n * carousel will not react to keyboard events\n * note: swiping not yet supported\n */\n/****\n * Problems:\n * 1) if we set an active slide via model changes, .active class remains on a\n * current slide.\n * 2) if we have only one slide, we shouldn't show prev/next nav buttons\n * 3) if first or last slide is active and noWrap is true, there should be\n * \"disabled\" class on the nav buttons.\n * 4) default interval should be equal 5000\n */\nimport { Component, EventEmitter, Input, NgZone, Output } from '@angular/core';\nimport { isBs3, LinkedList } from '../utils/index';\nimport { CarouselConfig } from './carousel.config';\nexport var Direction;\n(function (Direction) {\n Direction[Direction[\"UNKNOWN\"] = 0] = \"UNKNOWN\";\n Direction[Direction[\"NEXT\"] = 1] = \"NEXT\";\n Direction[Direction[\"PREV\"] = 2] = \"PREV\";\n})(Direction || (Direction = {}));\n/**\n * Base element to create carousel\n */\nvar CarouselComponent = (function () {\n function CarouselComponent(config, ngZone) {\n this.ngZone = ngZone;\n /** Will be emitted when active slide has been changed. Part of two-way-bindable [(activeSlide)] property */\n this.activeSlideChange = new EventEmitter(false);\n this._slides = new LinkedList();\n this.destroyed = false;\n Object.assign(this, config);\n }\n Object.defineProperty(CarouselComponent.prototype, \"activeSlide\", {\n get: function () {\n return this._currentActiveSlide;\n },\n /** Index of currently displayed slide(started for 0) */\n set: function (index) {\n if (this._slides.length && index !== this._currentActiveSlide) {\n this._select(index);\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CarouselComponent.prototype, \"interval\", {\n /**\n * Delay of item cycling in milliseconds. If false, carousel won't cycle\n * automatically.\n */\n get: function () {\n return this._interval;\n },\n set: function (value) {\n this._interval = value;\n this.restartTimer();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CarouselComponent.prototype, \"slides\", {\n get: function () {\n return this._slides.toArray();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CarouselComponent.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n CarouselComponent.prototype.ngOnDestroy = function () {\n this.destroyed = true;\n };\n /**\n * Adds new slide. If this slide is first in collection - set it as active\n * and starts auto changing\n * @param slide\n */\n CarouselComponent.prototype.addSlide = function (slide) {\n this._slides.add(slide);\n if (this._slides.length === 1) {\n this._currentActiveSlide = void 0;\n this.activeSlide = 0;\n this.play();\n }\n };\n /**\n * Removes specified slide. If this slide is active - will roll to another\n * slide\n * @param slide\n */\n CarouselComponent.prototype.removeSlide = function (slide) {\n var _this = this;\n var remIndex = this._slides.indexOf(slide);\n if (this._currentActiveSlide === remIndex) {\n // removing of active slide\n var nextSlideIndex_1 = void 0;\n if (this._slides.length > 1) {\n // if this slide last - will roll to first slide, if noWrap flag is\n // FALSE or to previous, if noWrap is TRUE in case, if this slide in\n // middle of collection, index of next slide is same to removed\n nextSlideIndex_1 = !this.isLast(remIndex)\n ? remIndex\n : this.noWrap ? remIndex - 1 : 0;\n }\n this._slides.remove(remIndex);\n // prevents exception with changing some value after checking\n setTimeout(function () {\n _this._select(nextSlideIndex_1);\n }, 0);\n }\n else {\n this._slides.remove(remIndex);\n var currentSlideIndex_1 = this.getCurrentSlideIndex();\n setTimeout(function () {\n // after removing, need to actualize index of current active slide\n _this._currentActiveSlide = currentSlideIndex_1;\n _this.activeSlideChange.emit(_this._currentActiveSlide);\n }, 0);\n }\n };\n /**\n * Rolling to next slide\n * @param force: {boolean} if true - will ignore noWrap flag\n */\n CarouselComponent.prototype.nextSlide = function (force) {\n if (force === void 0) { force = false; }\n this.activeSlide = this.findNextSlideIndex(Direction.NEXT, force);\n };\n /**\n * Rolling to previous slide\n * @param force: {boolean} if true - will ignore noWrap flag\n */\n CarouselComponent.prototype.previousSlide = function (force) {\n if (force === void 0) { force = false; }\n this.activeSlide = this.findNextSlideIndex(Direction.PREV, force);\n };\n /**\n * Rolling to specified slide\n * @param index: {number} index of slide, which must be shown\n */\n CarouselComponent.prototype.selectSlide = function (index) {\n this.activeSlide = index;\n };\n /**\n * Starts a auto changing of slides\n */\n CarouselComponent.prototype.play = function () {\n if (!this.isPlaying) {\n this.isPlaying = true;\n this.restartTimer();\n }\n };\n /**\n * Stops a auto changing of slides\n */\n CarouselComponent.prototype.pause = function () {\n if (!this.noPause) {\n this.isPlaying = false;\n this.resetTimer();\n }\n };\n /**\n * Finds and returns index of currently displayed slide\n * @returns {number}\n */\n CarouselComponent.prototype.getCurrentSlideIndex = function () {\n return this._slides.findIndex(function (slide) { return slide.active; });\n };\n /**\n * Defines, whether the specified index is last in collection\n * @param index\n * @returns {boolean}\n */\n CarouselComponent.prototype.isLast = function (index) {\n return index + 1 >= this._slides.length;\n };\n /**\n * Defines next slide index, depending of direction\n * @param direction: Direction(UNKNOWN|PREV|NEXT)\n * @param force: {boolean} if TRUE - will ignore noWrap flag, else will\n * return undefined if next slide require wrapping\n * @returns {any}\n */\n CarouselComponent.prototype.findNextSlideIndex = function (direction, force) {\n var nextSlideIndex = 0;\n if (!force &&\n (this.isLast(this.activeSlide) &&\n direction !== Direction.PREV &&\n this.noWrap)) {\n return void 0;\n }\n switch (direction) {\n case Direction.NEXT:\n // if this is last slide, not force, looping is disabled\n // and need to going forward - select current slide, as a next\n nextSlideIndex = !this.isLast(this._currentActiveSlide)\n ? this._currentActiveSlide + 1\n : !force && this.noWrap ? this._currentActiveSlide : 0;\n break;\n case Direction.PREV:\n // if this is first slide, not force, looping is disabled\n // and need to going backward - select current slide, as a next\n nextSlideIndex =\n this._currentActiveSlide > 0\n ? this._currentActiveSlide - 1\n : !force && this.noWrap\n ? this._currentActiveSlide\n : this._slides.length - 1;\n break;\n default:\n throw new Error('Unknown direction');\n }\n return nextSlideIndex;\n };\n /**\n * Sets a slide, which specified through index, as active\n * @param index\n * @private\n */\n CarouselComponent.prototype._select = function (index) {\n if (isNaN(index)) {\n this.pause();\n return;\n }\n var currentSlide = this._slides.get(this._currentActiveSlide);\n if (currentSlide) {\n currentSlide.active = false;\n }\n var nextSlide = this._slides.get(index);\n if (nextSlide) {\n this._currentActiveSlide = index;\n nextSlide.active = true;\n this.activeSlide = index;\n this.activeSlideChange.emit(index);\n }\n };\n /**\n * Starts loop of auto changing of slides\n */\n CarouselComponent.prototype.restartTimer = function () {\n var _this = this;\n this.resetTimer();\n var interval = +this.interval;\n if (!isNaN(interval) && interval > 0) {\n this.currentInterval = this.ngZone.runOutsideAngular(function () {\n return setInterval(function () {\n var nInterval = +_this.interval;\n _this.ngZone.run(function () {\n if (_this.isPlaying &&\n !isNaN(_this.interval) &&\n nInterval > 0 &&\n _this.slides.length) {\n _this.nextSlide();\n }\n else {\n _this.pause();\n }\n });\n }, interval);\n });\n }\n };\n /**\n * Stops loop of auto changing of slides\n */\n CarouselComponent.prototype.resetTimer = function () {\n if (this.currentInterval) {\n clearInterval(this.currentInterval);\n this.currentInterval = void 0;\n }\n };\n CarouselComponent.decorators = [\n { type: Component, args: [{\n selector: 'carousel',\n template: \" \"\n },] },\n ];\n /** @nocollapse */\n CarouselComponent.ctorParameters = function () { return [\n { type: CarouselConfig, },\n { type: NgZone, },\n ]; };\n CarouselComponent.propDecorators = {\n 'noWrap': [{ type: Input },],\n 'noPause': [{ type: Input },],\n 'showIndicators': [{ type: Input },],\n 'activeSlideChange': [{ type: Output },],\n 'activeSlide': [{ type: Input },],\n 'interval': [{ type: Input },],\n };\n return CarouselComponent;\n}());\nexport { CarouselComponent };\n//# sourceMappingURL=carousel.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/carousel/carousel.component.js\n// module id = 304\n// module chunks = 1","import { window } from './facade/browser';\nvar Utils = (function () {\n function Utils() {\n }\n Utils.reflow = function (element) {\n (function (bs) { return bs; })(element.offsetHeight);\n };\n // source: https://github.com/jquery/jquery/blob/master/src/css/var/getStyles.js\n Utils.getStyles = function (elem) {\n // Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n // IE throws on elements created in popups\n // FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n var view = elem.ownerDocument.defaultView;\n if (!view || !view.opener) {\n view = window;\n }\n return view.getComputedStyle(elem);\n };\n return Utils;\n}());\nexport { Utils };\n//# sourceMappingURL=utils.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/utils/utils.class.js\n// module id = 305\n// module chunks = 1","import { Injectable } from '@angular/core';\nvar CarouselConfig = (function () {\n function CarouselConfig() {\n /** Default interval of auto changing of slides */\n this.interval = 5000;\n /** Is loop of auto changing of slides can be paused */\n this.noPause = false;\n /** Is slides can wrap from the last to the first slide */\n this.noWrap = false;\n /** Show carousel-indicators */\n this.showIndicators = true;\n }\n CarouselConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n CarouselConfig.ctorParameters = function () { return []; };\n return CarouselConfig;\n}());\nexport { CarouselConfig };\n//# sourceMappingURL=carousel.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/carousel/carousel.config.js\n// module id = 306\n// module chunks = 1","import { Injectable } from '@angular/core';\nvar DatepickerConfig = (function () {\n function DatepickerConfig() {\n this.locale = 'en';\n this.datepickerMode = 'day';\n this.startingDay = 0;\n this.yearRange = 20;\n this.minMode = 'day';\n this.maxMode = 'year';\n this.showWeeks = true;\n this.formatDay = 'DD';\n this.formatMonth = 'MMMM';\n this.formatYear = 'YYYY';\n this.formatDayHeader = 'dd';\n this.formatDayTitle = 'MMMM YYYY';\n this.formatMonthTitle = 'YYYY';\n this.onlyCurrentMonth = false;\n this.monthColLimit = 3;\n this.yearColLimit = 5;\n this.shortcutPropagation = false;\n }\n DatepickerConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n DatepickerConfig.ctorParameters = function () { return []; };\n return DatepickerConfig;\n}());\nexport { DatepickerConfig };\n//# sourceMappingURL=datepicker.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/datepicker.config.js\n// module id = 307\n// module chunks = 1","import { Directive, ElementRef, EventEmitter, Input, Output, Renderer2, ViewContainerRef } from '@angular/core';\nimport { ComponentLoaderFactory } from '../component-loader/component-loader.factory';\nimport { BsDatepickerContainerComponent } from './themes/bs/bs-datepicker-container.component';\nimport 'rxjs/add/operator/filter';\nimport { BsDatepickerConfig } from './bs-datepicker.config';\nvar BsDatepickerDirective = (function () {\n function BsDatepickerDirective(_config, _elementRef, _renderer, _viewContainerRef, cis) {\n this._config = _config;\n /**\n * Placement of a datepicker. Accepts: \"top\", \"bottom\", \"left\", \"right\"\n */\n this.placement = 'bottom';\n /**\n * Specifies events that should trigger. Supports a space separated list of\n * event names.\n */\n this.triggers = 'click';\n /**\n * Close datepicker on outside click\n */\n this.outsideClick = true;\n /**\n * A selector specifying the element the datepicker should be appended to.\n * Currently only supports \"body\".\n */\n this.container = 'body';\n /**\n * Emits when datepicker value has been changed\n */\n this.bsValueChange = new EventEmitter();\n this._subs = [];\n // todo: assign only subset of fields\n Object.assign(this, this._config);\n this._datepicker = cis.createLoader(_elementRef, _viewContainerRef, _renderer);\n this.onShown = this._datepicker.onShown;\n this.onHidden = this._datepicker.onHidden;\n }\n Object.defineProperty(BsDatepickerDirective.prototype, \"isOpen\", {\n /**\n * Returns whether or not the datepicker is currently being shown\n */\n get: function () {\n return this._datepicker.isShown;\n },\n set: function (value) {\n if (value) {\n this.show();\n }\n else {\n this.hide();\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsDatepickerDirective.prototype, \"bsValue\", {\n /**\n * Initial value of datepicker\n */\n set: function (value) {\n if (this._bsValue === value) {\n return;\n }\n this._bsValue = value;\n this.bsValueChange.emit(value);\n },\n enumerable: true,\n configurable: true\n });\n BsDatepickerDirective.prototype.ngOnInit = function () {\n var _this = this;\n this._datepicker.listen({\n outsideClick: this.outsideClick,\n triggers: this.triggers,\n show: function () { return _this.show(); }\n });\n this.setConfig();\n };\n BsDatepickerDirective.prototype.ngOnChanges = function (changes) {\n if (!this._datepickerRef || !this._datepickerRef.instance) {\n return;\n }\n if (changes.minDate) {\n this._datepickerRef.instance.minDate = this.minDate;\n }\n if (changes.maxDate) {\n this._datepickerRef.instance.maxDate = this.maxDate;\n }\n if (changes.isDisabled) {\n this._datepickerRef.instance.isDisabled = this.isDisabled;\n }\n };\n /**\n * Opens an element’s datepicker. This is considered a “manual” triggering of\n * the datepicker.\n */\n BsDatepickerDirective.prototype.show = function () {\n var _this = this;\n if (this._datepicker.isShown) {\n return;\n }\n this.setConfig();\n this._datepickerRef = this._datepicker\n .provide({ provide: BsDatepickerConfig, useValue: this._config })\n .attach(BsDatepickerContainerComponent)\n .to(this.container)\n .position({ attachment: this.placement })\n .show({ placement: this.placement });\n // if date changes from external source (model -> view)\n this._subs.push(this.bsValueChange.subscribe(function (value) {\n _this._datepickerRef.instance.value = value;\n }));\n // if date changes from picker (view -> model)\n this._subs.push(this._datepickerRef.instance.valueChange.subscribe(function (value) {\n _this.bsValue = value;\n _this.hide();\n }));\n };\n /**\n * Closes an element’s datepicker. This is considered a “manual” triggering of\n * the datepicker.\n */\n BsDatepickerDirective.prototype.hide = function () {\n if (this.isOpen) {\n this._datepicker.hide();\n }\n for (var _i = 0, _a = this._subs; _i < _a.length; _i++) {\n var sub = _a[_i];\n sub.unsubscribe();\n }\n };\n /**\n * Toggles an element’s datepicker. This is considered a “manual” triggering\n * of the datepicker.\n */\n BsDatepickerDirective.prototype.toggle = function () {\n if (this.isOpen) {\n return this.hide();\n }\n this.show();\n };\n /**\n * Set config for datepicker\n */\n BsDatepickerDirective.prototype.setConfig = function () {\n this._config = Object.assign({}, this._config, this.bsConfig, {\n value: this._bsValue,\n isDisabled: this.isDisabled,\n minDate: this.minDate || this.bsConfig && this.bsConfig.minDate,\n maxDate: this.maxDate || this.bsConfig && this.bsConfig.maxDate\n });\n };\n BsDatepickerDirective.prototype.ngOnDestroy = function () {\n this._datepicker.dispose();\n };\n BsDatepickerDirective.decorators = [\n { type: Directive, args: [{\n selector: '[bsDatepicker]',\n exportAs: 'bsDatepicker'\n },] },\n ];\n /** @nocollapse */\n BsDatepickerDirective.ctorParameters = function () { return [\n { type: BsDatepickerConfig, },\n { type: ElementRef, },\n { type: Renderer2, },\n { type: ViewContainerRef, },\n { type: ComponentLoaderFactory, },\n ]; };\n BsDatepickerDirective.propDecorators = {\n 'placement': [{ type: Input },],\n 'triggers': [{ type: Input },],\n 'outsideClick': [{ type: Input },],\n 'container': [{ type: Input },],\n 'isOpen': [{ type: Input },],\n 'onShown': [{ type: Output },],\n 'onHidden': [{ type: Output },],\n 'bsValue': [{ type: Input },],\n 'bsConfig': [{ type: Input },],\n 'isDisabled': [{ type: Input },],\n 'minDate': [{ type: Input },],\n 'maxDate': [{ type: Input },],\n 'bsValueChange': [{ type: Output },],\n };\n return BsDatepickerDirective;\n}());\nexport { BsDatepickerDirective };\n//# sourceMappingURL=bs-datepicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/bs-datepicker.component.js\n// module id = 308\n// module chunks = 1","import { Injectable } from '@angular/core';\nimport 'rxjs/add/operator/filter';\nimport 'rxjs/add/operator/map';\nimport { getFullYear, getMonth } from '../../chronos/utils/date-getters';\nimport { BsDatepickerActions } from './bs-datepicker.actions';\nimport { BsLocaleService } from '../bs-locale.service';\nvar BsDatepickerEffects = (function () {\n function BsDatepickerEffects(_actions, _localeService) {\n this._actions = _actions;\n this._localeService = _localeService;\n this._subs = [];\n }\n BsDatepickerEffects.prototype.init = function (_bsDatepickerStore) {\n this._store = _bsDatepickerStore;\n return this;\n };\n /** setters */\n BsDatepickerEffects.prototype.setValue = function (value) {\n this._store.dispatch(this._actions.select(value));\n };\n BsDatepickerEffects.prototype.setRangeValue = function (value) {\n this._store.dispatch(this._actions.selectRange(value));\n };\n BsDatepickerEffects.prototype.setMinDate = function (value) {\n this._store.dispatch(this._actions.minDate(value));\n return this;\n };\n BsDatepickerEffects.prototype.setMaxDate = function (value) {\n this._store.dispatch(this._actions.maxDate(value));\n return this;\n };\n BsDatepickerEffects.prototype.setDisabled = function (value) {\n this._store.dispatch(this._actions.isDisabled(value));\n return this;\n };\n /* Set rendering options */\n BsDatepickerEffects.prototype.setOptions = function (_config) {\n var _options = Object.assign({ locale: this._localeService.currentLocale }, _config);\n this._store.dispatch(this._actions.setOptions(_options));\n return this;\n };\n /** view to mode bindings */\n BsDatepickerEffects.prototype.setBindings = function (container) {\n container.daysCalendar = this._store\n .select(function (state) { return state.flaggedMonths; })\n .filter(function (months) { return !!months; });\n // month calendar\n container.monthsCalendar = this._store\n .select(function (state) { return state.flaggedMonthsCalendar; })\n .filter(function (months) { return !!months; });\n // year calendar\n container.yearsCalendar = this._store\n .select(function (state) { return state.yearsCalendarFlagged; })\n .filter(function (years) { return !!years; });\n container.viewMode = this._store.select(function (state) { return state.view.mode; });\n container.options = this._store\n .select(function (state) { return state.showWeekNumbers; })\n .map(function (showWeekNumbers) { return ({ showWeekNumbers: showWeekNumbers }); });\n return this;\n };\n /** event handlers */\n BsDatepickerEffects.prototype.setEventHandlers = function (container) {\n var _this = this;\n container.setViewMode = function (event) {\n _this._store.dispatch(_this._actions.changeViewMode(event));\n };\n container.navigateTo = function (event) {\n _this._store.dispatch(_this._actions.navigateStep(event.step));\n };\n container.dayHoverHandler = function (event) {\n var _cell = event.cell;\n if (_cell.isOtherMonth || _cell.isDisabled) {\n return;\n }\n _this._store.dispatch(_this._actions.hoverDay(event));\n _cell.isHovered = event.isHovered;\n };\n container.monthHoverHandler = function (event) {\n event.cell.isHovered = event.isHovered;\n };\n container.yearHoverHandler = function (event) {\n event.cell.isHovered = event.isHovered;\n };\n /** select handlers */\n // container.daySelectHandler = (day: DayViewModel): void => {\n // if (day.isOtherMonth || day.isDisabled) {\n // return;\n // }\n // this._store.dispatch(this._actions.select(day.date));\n // };\n container.monthSelectHandler = function (event) {\n if (event.isDisabled) {\n return;\n }\n _this._store.dispatch(_this._actions.navigateTo({\n unit: { month: getMonth(event.date) },\n viewMode: 'day'\n }));\n };\n container.yearSelectHandler = function (event) {\n if (event.isDisabled) {\n return;\n }\n _this._store.dispatch(_this._actions.navigateTo({\n unit: { year: getFullYear(event.date) },\n viewMode: 'month'\n }));\n };\n return this;\n };\n BsDatepickerEffects.prototype.registerDatepickerSideEffects = function () {\n var _this = this;\n this._subs.push(this._store.select(function (state) { return state.view; }).subscribe(function (view) {\n _this._store.dispatch(_this._actions.calculate());\n }));\n // format calendar values on month model change\n this._subs.push(this._store\n .select(function (state) { return state.monthsModel; })\n .filter(function (monthModel) { return !!monthModel; })\n .subscribe(function (month) { return _this._store.dispatch(_this._actions.format()); }));\n // flag day values\n this._subs.push(this._store\n .select(function (state) { return state.formattedMonths; })\n .filter(function (month) { return !!month; })\n .subscribe(function (month) { return _this._store.dispatch(_this._actions.flag()); }));\n // flag day values\n this._subs.push(this._store\n .select(function (state) { return state.selectedDate; })\n .filter(function (selectedDate) { return !!selectedDate; })\n .subscribe(function (selectedDate) { return _this._store.dispatch(_this._actions.flag()); }));\n // flag for date range picker\n this._subs.push(this._store\n .select(function (state) { return state.selectedRange; })\n .filter(function (selectedRange) { return !!selectedRange; })\n .subscribe(function (selectedRange) { return _this._store.dispatch(_this._actions.flag()); }));\n // monthsCalendar\n this._subs.push(this._store\n .select(function (state) { return state.monthsCalendar; })\n .subscribe(function () { return _this._store.dispatch(_this._actions.flag()); }));\n // years calendar\n this._subs.push(this._store\n .select(function (state) { return state.yearsCalendarModel; })\n .filter(function (state) { return !!state; })\n .subscribe(function () { return _this._store.dispatch(_this._actions.flag()); }));\n // on hover\n this._subs.push(this._store\n .select(function (state) { return state.hoveredDate; })\n .filter(function (hoveredDate) { return !!hoveredDate; })\n .subscribe(function (hoveredDate) { return _this._store.dispatch(_this._actions.flag()); }));\n // on locale change\n this._subs.push(this._localeService.localeChange\n .subscribe(function (locale) { return _this._store.dispatch(_this._actions.setLocale(locale)); }));\n return this;\n };\n BsDatepickerEffects.prototype.destroy = function () {\n for (var _i = 0, _a = this._subs; _i < _a.length; _i++) {\n var sub = _a[_i];\n sub.unsubscribe();\n }\n };\n BsDatepickerEffects.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsDatepickerEffects.ctorParameters = function () { return [\n { type: BsDatepickerActions, },\n { type: BsLocaleService, },\n ]; };\n return BsDatepickerEffects;\n}());\nexport { BsDatepickerEffects };\n//# sourceMappingURL=bs-datepicker.effects.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/reducer/bs-datepicker.effects.js\n// module id = 309\n// module chunks = 1","var __extends = (this && this.__extends) || (function () {\n var extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport { Injectable } from '@angular/core';\nimport { MiniStore } from '../../mini-ngrx/store.class';\nimport { initialDatepickerState } from './bs-datepicker.state';\nimport { BehaviorSubject } from 'rxjs/BehaviorSubject';\nimport { MiniState } from '../../mini-ngrx/state.class';\nimport { bsDatepickerReducer } from './bs-datepicker.reducer';\nvar BsDatepickerStore = (function (_super) {\n __extends(BsDatepickerStore, _super);\n function BsDatepickerStore() {\n var _this = this;\n var _dispatcher = new BehaviorSubject({\n type: '[datepicker] dispatcher init'\n });\n var state = new MiniState(initialDatepickerState, _dispatcher, bsDatepickerReducer);\n _this = _super.call(this, _dispatcher, bsDatepickerReducer, state) || this;\n return _this;\n }\n BsDatepickerStore.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsDatepickerStore.ctorParameters = function () { return []; };\n return BsDatepickerStore;\n}(MiniStore));\nexport { BsDatepickerStore };\n//# sourceMappingURL=bs-datepicker.store.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/reducer/bs-datepicker.store.js\n// module id = 310\n// module chunks = 1","import { shiftDate } from '../../chronos/utils/date-setters';\nexport function createMatrix(options, fn) {\n var prevValue = options.initialDate;\n var matrix = new Array(options.height);\n for (var i = 0; i < options.height; i++) {\n matrix[i] = new Array(options.width);\n for (var j = 0; j < options.width; j++) {\n matrix[i][j] = fn(prevValue);\n prevValue = shiftDate(prevValue, options.shift);\n }\n }\n return matrix;\n}\n//# sourceMappingURL=matrix-utils.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/utils/matrix-utils.js\n// module id = 311\n// module chunks = 1","import { Directive, ElementRef, EventEmitter, Input, Output, Renderer2, ViewContainerRef } from '@angular/core';\nimport { BsDaterangepickerConfig } from './bs-daterangepicker.config';\nimport { BsDaterangepickerContainerComponent } from './themes/bs/bs-daterangepicker-container.component';\nimport { ComponentLoaderFactory } from '../component-loader/component-loader.factory';\nimport { BsDatepickerConfig } from './bs-datepicker.config';\nvar BsDaterangepickerDirective = (function () {\n function BsDaterangepickerDirective(_config, _elementRef, _renderer, _viewContainerRef, cis) {\n this._config = _config;\n /**\n * Placement of a daterangepicker. Accepts: \"top\", \"bottom\", \"left\", \"right\"\n */\n this.placement = 'bottom';\n /**\n * Specifies events that should trigger. Supports a space separated list of\n * event names.\n */\n this.triggers = 'click';\n /**\n * Close daterangepicker on outside click\n */\n this.outsideClick = true;\n /**\n * A selector specifying the element the daterangepicker should be appended\n * to. Currently only supports \"body\".\n */\n this.container = 'body';\n /**\n * Emits when daterangepicker value has been changed\n */\n this.bsValueChange = new EventEmitter();\n this._subs = [];\n this._datepicker = cis.createLoader(_elementRef, _viewContainerRef, _renderer);\n Object.assign(this, _config);\n this.onShown = this._datepicker.onShown;\n this.onHidden = this._datepicker.onHidden;\n }\n Object.defineProperty(BsDaterangepickerDirective.prototype, \"isOpen\", {\n /**\n * Returns whether or not the daterangepicker is currently being shown\n */\n get: function () {\n return this._datepicker.isShown;\n },\n set: function (value) {\n if (value) {\n this.show();\n }\n else {\n this.hide();\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsDaterangepickerDirective.prototype, \"bsValue\", {\n /**\n * Initial value of daterangepicker\n */\n set: function (value) {\n if (this._bsValue === value) {\n return;\n }\n this._bsValue = value;\n this.bsValueChange.emit(value);\n },\n enumerable: true,\n configurable: true\n });\n BsDaterangepickerDirective.prototype.ngOnInit = function () {\n var _this = this;\n this._datepicker.listen({\n outsideClick: this.outsideClick,\n triggers: this.triggers,\n show: function () { return _this.show(); }\n });\n this.setConfig();\n };\n BsDaterangepickerDirective.prototype.ngOnChanges = function (changes) {\n if (!this._datepickerRef || !this._datepickerRef.instance) {\n return;\n }\n if (changes.minDate) {\n this._datepickerRef.instance.minDate = this.minDate;\n }\n if (changes.maxDate) {\n this._datepickerRef.instance.maxDate = this.maxDate;\n }\n if (changes.isDisabled) {\n this._datepickerRef.instance.isDisabled = this.isDisabled;\n }\n };\n /**\n * Opens an element’s datepicker. This is considered a “manual” triggering of\n * the datepicker.\n */\n BsDaterangepickerDirective.prototype.show = function () {\n var _this = this;\n if (this._datepicker.isShown) {\n return;\n }\n this.setConfig();\n this._datepickerRef = this._datepicker\n .provide({ provide: BsDatepickerConfig, useValue: this._config })\n .attach(BsDaterangepickerContainerComponent)\n .to(this.container)\n .position({ attachment: this.placement })\n .show({ placement: this.placement });\n // if date changes from external source (model -> view)\n this._subs.push(this.bsValueChange.subscribe(function (value) {\n _this._datepickerRef.instance.value = value;\n }));\n // if date changes from picker (view -> model)\n this._subs.push(this._datepickerRef.instance.valueChange\n .filter(function (range) { return range && range[0] && !!range[1]; })\n .subscribe(function (value) {\n _this.bsValue = value;\n _this.hide();\n }));\n };\n /**\n * Set config for daterangepicker\n */\n BsDaterangepickerDirective.prototype.setConfig = function () {\n this._config = Object.assign({}, this._config, this.bsConfig, {\n value: this._bsValue,\n isDisabled: this.isDisabled,\n minDate: this.minDate || this.bsConfig && this.bsConfig.minDate,\n maxDate: this.maxDate || this.bsConfig && this.bsConfig.maxDate\n });\n };\n /**\n * Closes an element’s datepicker. This is considered a “manual” triggering of\n * the datepicker.\n */\n BsDaterangepickerDirective.prototype.hide = function () {\n if (this.isOpen) {\n this._datepicker.hide();\n }\n for (var _i = 0, _a = this._subs; _i < _a.length; _i++) {\n var sub = _a[_i];\n sub.unsubscribe();\n }\n };\n /**\n * Toggles an element’s datepicker. This is considered a “manual” triggering\n * of the datepicker.\n */\n BsDaterangepickerDirective.prototype.toggle = function () {\n if (this.isOpen) {\n return this.hide();\n }\n this.show();\n };\n BsDaterangepickerDirective.prototype.ngOnDestroy = function () {\n this._datepicker.dispose();\n };\n BsDaterangepickerDirective.decorators = [\n { type: Directive, args: [{\n selector: '[bsDaterangepicker]',\n exportAs: 'bsDaterangepicker'\n },] },\n ];\n /** @nocollapse */\n BsDaterangepickerDirective.ctorParameters = function () { return [\n { type: BsDaterangepickerConfig, },\n { type: ElementRef, },\n { type: Renderer2, },\n { type: ViewContainerRef, },\n { type: ComponentLoaderFactory, },\n ]; };\n BsDaterangepickerDirective.propDecorators = {\n 'placement': [{ type: Input },],\n 'triggers': [{ type: Input },],\n 'outsideClick': [{ type: Input },],\n 'container': [{ type: Input },],\n 'isOpen': [{ type: Input },],\n 'onShown': [{ type: Output },],\n 'onHidden': [{ type: Output },],\n 'bsValue': [{ type: Input },],\n 'bsConfig': [{ type: Input },],\n 'isDisabled': [{ type: Input },],\n 'minDate': [{ type: Input },],\n 'maxDate': [{ type: Input },],\n 'bsValueChange': [{ type: Output },],\n };\n return BsDaterangepickerDirective;\n}());\nexport { BsDaterangepickerDirective };\n//# sourceMappingURL=bs-daterangepicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/bs-daterangepicker.component.js\n// module id = 312\n// module chunks = 1","var __extends = (this && this.__extends) || (function () {\n var extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport { Injectable } from '@angular/core';\nimport { BsDatepickerConfig } from './bs-datepicker.config';\nvar BsDaterangepickerConfig = (function (_super) {\n __extends(BsDaterangepickerConfig, _super);\n function BsDaterangepickerConfig() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n // DatepickerRenderOptions\n _this.displayMonths = 2;\n return _this;\n }\n BsDaterangepickerConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsDaterangepickerConfig.ctorParameters = function () { return []; };\n return BsDaterangepickerConfig;\n}(BsDatepickerConfig));\nexport { BsDaterangepickerConfig };\n//# sourceMappingURL=bs-daterangepicker.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/bs-daterangepicker.config.js\n// module id = 313\n// module chunks = 1","import { Component, ElementRef, HostListener, Renderer2 } from '@angular/core';\nimport { CLASS_NAME, DISMISS_REASONS, ModalOptions, TRANSITION_DURATIONS } from './modal-options.class';\nimport { isBs3 } from '../utils/theme-provider';\nvar ModalContainerComponent = (function () {\n function ModalContainerComponent(options, _element, _renderer) {\n this._element = _element;\n this._renderer = _renderer;\n this.isShown = false;\n this.isModalHiding = false;\n this.config = Object.assign({}, options);\n }\n ModalContainerComponent.prototype.ngOnInit = function () {\n var _this = this;\n if (this.isAnimated) {\n this._renderer.addClass(this._element.nativeElement, CLASS_NAME.FADE);\n }\n this._renderer.setStyle(this._element.nativeElement, 'display', 'block');\n setTimeout(function () {\n _this.isShown = true;\n _this._renderer.addClass(_this._element.nativeElement, isBs3() ? CLASS_NAME.IN : CLASS_NAME.SHOW);\n }, this.isAnimated ? TRANSITION_DURATIONS.BACKDROP : 0);\n if (document && document.body) {\n if (this.bsModalService.getModalsCount() === 1) {\n this.bsModalService.checkScrollbar();\n this.bsModalService.setScrollbar();\n }\n this._renderer.addClass(document.body, CLASS_NAME.OPEN);\n }\n if (this._element.nativeElement) {\n this._element.nativeElement.focus();\n }\n };\n ModalContainerComponent.prototype.onClick = function (event) {\n if (this.config.ignoreBackdropClick ||\n this.config.backdrop === 'static' ||\n event.target !== this._element.nativeElement) {\n return;\n }\n this.bsModalService.setDismissReason(DISMISS_REASONS.BACKRDOP);\n this.hide();\n };\n ModalContainerComponent.prototype.onEsc = function () {\n if (this.config.keyboard &&\n this.level === this.bsModalService.getModalsCount()) {\n this.bsModalService.setDismissReason(DISMISS_REASONS.ESC);\n this.hide();\n }\n };\n ModalContainerComponent.prototype.ngOnDestroy = function () {\n if (this.isShown) {\n this.hide();\n }\n };\n ModalContainerComponent.prototype.hide = function () {\n var _this = this;\n if (this.isModalHiding || !this.isShown) {\n return;\n }\n this.isModalHiding = true;\n this._renderer.removeClass(this._element.nativeElement, isBs3() ? CLASS_NAME.IN : CLASS_NAME.SHOW);\n setTimeout(function () {\n _this.isShown = false;\n if (document &&\n document.body &&\n _this.bsModalService.getModalsCount() === 1) {\n _this._renderer.removeClass(document.body, CLASS_NAME.OPEN);\n }\n _this.bsModalService.hide(_this.level);\n _this.isModalHiding = false;\n }, this.isAnimated ? TRANSITION_DURATIONS.MODAL : 0);\n };\n ModalContainerComponent.decorators = [\n { type: Component, args: [{\n selector: 'modal-container',\n template: \"\\n \\n \",\n host: {\n class: 'modal',\n role: 'dialog',\n tabindex: '-1'\n }\n },] },\n ];\n /** @nocollapse */\n ModalContainerComponent.ctorParameters = function () { return [\n { type: ModalOptions, },\n { type: ElementRef, },\n { type: Renderer2, },\n ]; };\n ModalContainerComponent.propDecorators = {\n 'onClick': [{ type: HostListener, args: ['click', ['$event'],] },],\n 'onEsc': [{ type: HostListener, args: ['window:keydown.esc',] },],\n };\n return ModalContainerComponent;\n}());\nexport { ModalContainerComponent };\n//# sourceMappingURL=modal-container.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/modal/modal-container.component.js\n// module id = 314\n// module chunks = 1","import { Injectable } from '@angular/core';\n/** Default dropdown configuration */\nvar BsDropdownConfig = (function () {\n function BsDropdownConfig() {\n /** default dropdown auto closing behavior */\n this.autoClose = true;\n }\n BsDropdownConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsDropdownConfig.ctorParameters = function () { return []; };\n return BsDropdownConfig;\n}());\nexport { BsDropdownConfig };\n//# sourceMappingURL=bs-dropdown.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/dropdown/bs-dropdown.config.js\n// module id = 315\n// module chunks = 1","import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, Renderer2 } from '@angular/core';\nimport { BsDropdownState } from './bs-dropdown.state';\nimport { isBs3 } from '../utils/theme-provider';\nvar BsDropdownContainerComponent = (function () {\n function BsDropdownContainerComponent(_state, cd, _renderer, _element) {\n var _this = this;\n this._state = _state;\n this.cd = cd;\n this._renderer = _renderer;\n this.isOpen = false;\n this._subscription = _state.isOpenChange.subscribe(function (value) {\n _this.isOpen = value;\n var dropdown = _element.nativeElement.querySelector('.dropdown-menu');\n if (dropdown && !isBs3()) {\n _this._renderer.addClass(dropdown, 'show');\n if (dropdown.classList.contains('dropdown-menu-right')) {\n _this._renderer.setStyle(dropdown, 'left', 'auto');\n _this._renderer.setStyle(dropdown, 'right', '0');\n }\n if (_this.direction === 'up') {\n _this._renderer.setStyle(dropdown, 'top', 'auto');\n _this._renderer.setStyle(dropdown, 'transform', 'translateY(-101%)');\n }\n }\n _this.cd.markForCheck();\n _this.cd.detectChanges();\n });\n }\n Object.defineProperty(BsDropdownContainerComponent.prototype, \"direction\", {\n get: function () {\n return this._state.direction;\n },\n enumerable: true,\n configurable: true\n });\n BsDropdownContainerComponent.prototype.ngOnDestroy = function () {\n this._subscription.unsubscribe();\n };\n BsDropdownContainerComponent.decorators = [\n { type: Component, args: [{\n selector: 'bs-dropdown-container',\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n style: 'display:block;position: absolute;'\n },\n template: \"\\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n BsDropdownContainerComponent.ctorParameters = function () { return [\n { type: BsDropdownState, },\n { type: ChangeDetectorRef, },\n { type: Renderer2, },\n { type: ElementRef, },\n ]; };\n return BsDropdownContainerComponent;\n}());\nexport { BsDropdownContainerComponent };\n//# sourceMappingURL=bs-dropdown-container.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/dropdown/bs-dropdown-container.component.js\n// module id = 316\n// module chunks = 1","import { Component, HostBinding, Input } from '@angular/core';\nimport { ProgressbarConfig } from './progressbar.config';\nimport { isBs3 } from '../utils/index';\nvar ProgressbarComponent = (function () {\n function ProgressbarComponent(config) {\n this.isStacked = false;\n this.addClass = true;\n this.bars = [];\n this._max = 100;\n Object.assign(this, config);\n }\n Object.defineProperty(ProgressbarComponent.prototype, \"value\", {\n /** current value of progress bar. Could be a number or array of objects\n * like {\"value\":15,\"type\":\"info\",\"label\":\"15 %\"}\n */\n set: function (value) {\n this.isStacked = Array.isArray(value);\n this._value = value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ProgressbarComponent.prototype, \"isBs3\", {\n get: function () {\n return isBs3();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ProgressbarComponent.prototype, \"max\", {\n /** maximum total value of progress element */\n get: function () {\n return this._max;\n },\n set: function (v) {\n this._max = v;\n this.bars.forEach(function (bar) {\n bar.recalculatePercentage();\n });\n },\n enumerable: true,\n configurable: true\n });\n ProgressbarComponent.prototype.addBar = function (bar) {\n bar.animate = this.animate;\n bar.striped = this.striped;\n this.bars.push(bar);\n };\n ProgressbarComponent.prototype.removeBar = function (bar) {\n this.bars.splice(this.bars.indexOf(bar), 1);\n };\n ProgressbarComponent.decorators = [\n { type: Component, args: [{\n selector: 'progressbar',\n template: \" {{ item.label }} \",\n styles: [\n \"\\n :host {\\n width: 100%;\\n display: flex;\\n }\\n \"\n ]\n },] },\n ];\n /** @nocollapse */\n ProgressbarComponent.ctorParameters = function () { return [\n { type: ProgressbarConfig, },\n ]; };\n ProgressbarComponent.propDecorators = {\n 'animate': [{ type: Input },],\n 'striped': [{ type: Input },],\n 'type': [{ type: Input },],\n 'value': [{ type: Input },],\n 'max': [{ type: HostBinding, args: ['attr.max',] }, { type: Input },],\n 'addClass': [{ type: HostBinding, args: ['class.progress',] },],\n };\n return ProgressbarComponent;\n}());\nexport { ProgressbarComponent };\n//# sourceMappingURL=progressbar.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/progressbar/progressbar.component.js\n// module id = 317\n// module chunks = 1","import { Injectable } from '@angular/core';\nvar ProgressbarConfig = (function () {\n function ProgressbarConfig() {\n /** if `true` changing value of progress bar will be animated */\n this.animate = false;\n /** maximum total value of progress element */\n this.max = 100;\n }\n ProgressbarConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n ProgressbarConfig.ctorParameters = function () { return []; };\n return ProgressbarConfig;\n}());\nexport { ProgressbarConfig };\n//# sourceMappingURL=progressbar.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/progressbar/progressbar.config.js\n// module id = 318\n// module chunks = 1","import { Injectable } from '@angular/core';\nimport { Subject } from 'rxjs/Subject';\nvar DraggableItemService = (function () {\n function DraggableItemService() {\n this.onCapture = new Subject();\n }\n DraggableItemService.prototype.dragStart = function (item) {\n this.draggableItem = item;\n };\n DraggableItemService.prototype.getItem = function () {\n return this.draggableItem;\n };\n DraggableItemService.prototype.captureItem = function (overZoneIndex, newIndex) {\n if (this.draggableItem.overZoneIndex !== overZoneIndex) {\n this.draggableItem.lastZoneIndex = this.draggableItem.overZoneIndex;\n this.draggableItem.overZoneIndex = overZoneIndex;\n this.onCapture.next(this.draggableItem);\n this.draggableItem = Object.assign({}, this.draggableItem, {\n overZoneIndex: overZoneIndex,\n i: newIndex\n });\n }\n return this.draggableItem;\n };\n DraggableItemService.prototype.onCaptureItem = function () {\n return this.onCapture;\n };\n DraggableItemService.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n DraggableItemService.ctorParameters = function () { return []; };\n return DraggableItemService;\n}());\nexport { DraggableItemService };\n//# sourceMappingURL=draggable-item.service.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/sortable/draggable-item.service.js\n// module id = 319\n// module chunks = 1","import { Directive, EventEmitter, HostBinding, Input, Output, ElementRef, Renderer2 } from '@angular/core';\nimport { TabsetComponent } from './tabset.component';\nvar TabDirective = (function () {\n function TabDirective(tabset, elementRef, renderer) {\n this.elementRef = elementRef;\n this.renderer = renderer;\n /** fired when tab became active, $event:Tab equals to selected instance of Tab component */\n this.select = new EventEmitter();\n /** fired when tab became inactive, $event:Tab equals to deselected instance of Tab component */\n this.deselect = new EventEmitter();\n /** fired before tab will be removed, $event:Tab equals to instance of removed tab */\n this.removed = new EventEmitter();\n this.addClass = true;\n this.tabset = tabset;\n this.tabset.addTab(this);\n }\n Object.defineProperty(TabDirective.prototype, \"customClass\", {\n /** if set, will be added to the tab's class attribute. Multiple classes are supported. */\n get: function () {\n return this._customClass;\n },\n set: function (customClass) {\n var _this = this;\n if (this.customClass) {\n this.customClass.split(' ').forEach(function (cssClass) {\n _this.renderer.removeClass(_this.elementRef.nativeElement, cssClass);\n });\n }\n this._customClass = customClass ? customClass.trim() : null;\n if (this.customClass) {\n this.customClass.split(' ').forEach(function (cssClass) {\n _this.renderer.addClass(_this.elementRef.nativeElement, cssClass);\n });\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TabDirective.prototype, \"active\", {\n /** tab active state toggle */\n get: function () {\n return this._active;\n },\n set: function (active) {\n var _this = this;\n if (this._active === active) {\n return;\n }\n if ((this.disabled && active) || !active) {\n if (this._active && !active) {\n this.deselect.emit(this);\n this._active = active;\n }\n return;\n }\n this._active = active;\n this.select.emit(this);\n this.tabset.tabs.forEach(function (tab) {\n if (tab !== _this) {\n tab.active = false;\n }\n });\n },\n enumerable: true,\n configurable: true\n });\n TabDirective.prototype.ngOnInit = function () {\n this.removable = this.removable;\n };\n TabDirective.prototype.ngOnDestroy = function () {\n this.tabset.removeTab(this, { reselect: false, emit: false });\n };\n TabDirective.decorators = [\n { type: Directive, args: [{ selector: 'tab, [tab]' },] },\n ];\n /** @nocollapse */\n TabDirective.ctorParameters = function () { return [\n { type: TabsetComponent, },\n { type: ElementRef, },\n { type: Renderer2, },\n ]; };\n TabDirective.propDecorators = {\n 'heading': [{ type: Input },],\n 'id': [{ type: HostBinding, args: ['attr.id',] }, { type: Input },],\n 'disabled': [{ type: Input },],\n 'removable': [{ type: Input },],\n 'customClass': [{ type: Input },],\n 'active': [{ type: HostBinding, args: ['class.active',] }, { type: Input },],\n 'select': [{ type: Output },],\n 'deselect': [{ type: Output },],\n 'removed': [{ type: Output },],\n 'addClass': [{ type: HostBinding, args: ['class.tab-pane',] },],\n };\n return TabDirective;\n}());\nexport { TabDirective };\n//# sourceMappingURL=tab.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/tabs/tab.directive.js\n// module id = 320\n// module chunks = 1","import { Component, HostBinding, Input, Renderer2 } from '@angular/core';\nimport { TabsetConfig } from './tabset.config';\n// todo: add active event to tab\n// todo: fix? mixing static and dynamic tabs position tabs in order of creation\nvar TabsetComponent = (function () {\n function TabsetComponent(config, renderer) {\n this.renderer = renderer;\n this.clazz = true;\n this.tabs = [];\n this.classMap = {};\n Object.assign(this, config);\n }\n Object.defineProperty(TabsetComponent.prototype, \"vertical\", {\n /** if true tabs will be placed vertically */\n get: function () {\n return this._vertical;\n },\n set: function (value) {\n this._vertical = value;\n this.setClassMap();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TabsetComponent.prototype, \"justified\", {\n /** if true tabs fill the container and have a consistent width */\n get: function () {\n return this._justified;\n },\n set: function (value) {\n this._justified = value;\n this.setClassMap();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TabsetComponent.prototype, \"type\", {\n /** navigation context class: 'tabs' or 'pills' */\n get: function () {\n return this._type;\n },\n set: function (value) {\n this._type = value;\n this.setClassMap();\n },\n enumerable: true,\n configurable: true\n });\n TabsetComponent.prototype.ngOnDestroy = function () {\n this.isDestroyed = true;\n };\n TabsetComponent.prototype.addTab = function (tab) {\n this.tabs.push(tab);\n tab.active = this.tabs.length === 1 && typeof tab.active === 'undefined';\n };\n TabsetComponent.prototype.removeTab = function (tab, options) {\n if (options === void 0) { options = { reselect: true, emit: true }; }\n var index = this.tabs.indexOf(tab);\n if (index === -1 || this.isDestroyed) {\n return;\n }\n // Select a new tab if the tab to be removed is selected and not destroyed\n if (options.reselect && tab.active && this.hasAvailableTabs(index)) {\n var newActiveIndex = this.getClosestTabIndex(index);\n this.tabs[newActiveIndex].active = true;\n }\n if (options.emit) {\n tab.removed.emit(tab);\n }\n this.tabs.splice(index, 1);\n if (tab.elementRef.nativeElement.parentNode) {\n this.renderer.removeChild(tab.elementRef.nativeElement.parentNode, tab.elementRef.nativeElement);\n }\n };\n TabsetComponent.prototype.getClosestTabIndex = function (index) {\n var tabsLength = this.tabs.length;\n if (!tabsLength) {\n return -1;\n }\n for (var step = 1; step <= tabsLength; step += 1) {\n var prevIndex = index - step;\n var nextIndex = index + step;\n if (this.tabs[prevIndex] && !this.tabs[prevIndex].disabled) {\n return prevIndex;\n }\n if (this.tabs[nextIndex] && !this.tabs[nextIndex].disabled) {\n return nextIndex;\n }\n }\n return -1;\n };\n TabsetComponent.prototype.hasAvailableTabs = function (index) {\n var tabsLength = this.tabs.length;\n if (!tabsLength) {\n return false;\n }\n for (var i = 0; i < tabsLength; i += 1) {\n if (!this.tabs[i].disabled && i !== index) {\n return true;\n }\n }\n return false;\n };\n TabsetComponent.prototype.setClassMap = function () {\n this.classMap = (_a = {\n 'nav-stacked': this.vertical,\n 'flex-column': this.vertical,\n 'nav-justified': this.justified\n },\n _a[\"nav-\" + this.type] = true,\n _a);\n var _a;\n };\n TabsetComponent.decorators = [\n { type: Component, args: [{\n selector: 'tabset',\n template: \"
\"\n },] },\n ];\n /** @nocollapse */\n TabsetComponent.ctorParameters = function () { return [\n { type: TabsetConfig, },\n { type: Renderer2, },\n ]; };\n TabsetComponent.propDecorators = {\n 'vertical': [{ type: Input },],\n 'justified': [{ type: Input },],\n 'type': [{ type: Input },],\n 'clazz': [{ type: HostBinding, args: ['class.tab-container',] },],\n };\n return TabsetComponent;\n}());\nexport { TabsetComponent };\n//# sourceMappingURL=tabset.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/tabs/tabset.component.js\n// module id = 321\n// module chunks = 1","import { Injectable } from '@angular/core';\nvar TabsetConfig = (function () {\n function TabsetConfig() {\n /** provides default navigation context class: 'tabs' or 'pills' */\n this.type = 'tabs';\n }\n TabsetConfig.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n TabsetConfig.ctorParameters = function () { return []; };\n return TabsetConfig;\n}());\nexport { TabsetConfig };\n//# sourceMappingURL=tabset.config.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/tabs/tabset.config.js\n// module id = 322\n// module chunks = 1","var __extends = (this && this.__extends) || (function () {\n var extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport { Injectable } from '@angular/core';\nimport { timepickerReducer, initialState } from './timepicker.reducer';\nimport { BehaviorSubject } from 'rxjs/BehaviorSubject';\nimport { MiniStore } from '../../mini-ngrx/store.class';\nimport { MiniState } from '../../mini-ngrx/state.class';\nvar TimepickerStore = (function (_super) {\n __extends(TimepickerStore, _super);\n function TimepickerStore() {\n var _this = this;\n var _dispatcher = new BehaviorSubject({\n type: '[mini-ngrx] dispatcher init'\n });\n var state = new MiniState(initialState, _dispatcher, timepickerReducer);\n _this = _super.call(this, _dispatcher, timepickerReducer, state) || this;\n return _this;\n }\n TimepickerStore.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n TimepickerStore.ctorParameters = function () { return []; };\n return TimepickerStore;\n}(MiniStore));\nexport { TimepickerStore };\n//# sourceMappingURL=timepicker.store.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/timepicker/reducer/timepicker.store.js\n// module id = 323\n// module chunks = 1","var dex = 10;\nvar hoursPerDay = 24;\nvar hoursPerDayHalf = 12;\nvar minutesPerHour = 60;\nvar secondsPerMinute = 60;\nexport function isValidDate(value) {\n if (!value) {\n return false;\n }\n if (value instanceof Date && isNaN(value.getHours())) {\n return false;\n }\n if (typeof value === 'string') {\n return isValidDate(new Date(value));\n }\n return true;\n}\nexport function isValidLimit(controls, newDate) {\n if (controls.min && newDate < controls.min) {\n return false;\n }\n if (controls.max && newDate > controls.max) {\n return false;\n }\n return true;\n}\nexport function toNumber(value) {\n if (typeof value === 'number') {\n return value;\n }\n return parseInt(value, dex);\n}\nexport function isNumber(value) {\n return !isNaN(toNumber(value));\n}\nexport function parseHours(value, isPM) {\n if (isPM === void 0) { isPM = false; }\n var hour = toNumber(value);\n if (isNaN(hour) ||\n hour < 0 ||\n hour > (isPM ? hoursPerDayHalf : hoursPerDay)) {\n return NaN;\n }\n return hour;\n}\nexport function parseMinutes(value) {\n var minute = toNumber(value);\n if (isNaN(minute) || minute < 0 || minute > minutesPerHour) {\n return NaN;\n }\n return minute;\n}\nexport function parseSeconds(value) {\n var seconds = toNumber(value);\n if (isNaN(seconds) || seconds < 0 || seconds > secondsPerMinute) {\n return NaN;\n }\n return seconds;\n}\nexport function parseTime(value) {\n if (typeof value === 'string') {\n return new Date(value);\n }\n return value;\n}\nexport function changeTime(value, diff) {\n if (!value) {\n return changeTime(createDate(new Date(), 0, 0, 0), diff);\n }\n var hour = value.getHours();\n var minutes = value.getMinutes();\n var seconds = value.getSeconds();\n if (diff.hour) {\n hour = (hour + toNumber(diff.hour)) % hoursPerDay;\n if (hour < 0) {\n hour += hoursPerDay;\n }\n }\n if (diff.minute) {\n minutes = minutes + toNumber(diff.minute);\n }\n if (diff.seconds) {\n seconds = seconds + toNumber(diff.seconds);\n }\n return createDate(value, hour, minutes, seconds);\n}\nexport function setTime(value, opts) {\n var hour = parseHours(opts.hour);\n var minute = parseMinutes(opts.minute);\n var seconds = parseSeconds(opts.seconds) || 0;\n if (opts.isPM) {\n hour += hoursPerDayHalf;\n }\n if (!value) {\n if (!isNaN(hour) && !isNaN(minute)) {\n return createDate(new Date(), hour, minute, seconds);\n }\n return value;\n }\n if (isNaN(hour) || isNaN(minute)) {\n return value;\n }\n return createDate(value, hour, minute, seconds);\n}\nexport function createDate(value, hours, minutes, seconds) {\n return new Date(value.getFullYear(), value.getMonth(), value.getDate(), hours, minutes, seconds, value.getMilliseconds());\n}\nexport function padNumber(value) {\n var _value = value.toString();\n if (_value.length > 1) {\n return _value;\n }\n return \"0\" + _value;\n}\nexport function isHourInputValid(hours, isPM) {\n return !isNaN(parseHours(hours, isPM));\n}\nexport function isMinuteInputValid(minutes) {\n return !isNaN(parseMinutes(minutes));\n}\nexport function isSecondInputValid(seconds) {\n return !isNaN(parseSeconds(seconds));\n}\nexport function isInputLimitValid(diff, max, min) {\n var newDate = changeTime(new Date(), diff);\n if (max && newDate > max) {\n return false;\n }\n if (min && newDate < min) {\n return false;\n }\n return true;\n}\nexport function isInputValid(hours, minutes, seconds, isPM) {\n if (minutes === void 0) { minutes = '0'; }\n if (seconds === void 0) { seconds = '0'; }\n return isHourInputValid(hours, isPM)\n && isMinuteInputValid(minutes)\n && isSecondInputValid(seconds);\n}\n//# sourceMappingURL=timepicker.utils.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/timepicker/timepicker.utils.js\n// module id = 324\n// module chunks = 1","import { Component, ChangeDetectionStrategy } from '@angular/core';\nimport { TooltipConfig } from './tooltip.config';\nimport { isBs3 } from '../utils/theme-provider';\nvar TooltipContainerComponent = (function () {\n function TooltipContainerComponent(config) {\n Object.assign(this, config);\n }\n Object.defineProperty(TooltipContainerComponent.prototype, \"isBs3\", {\n get: function () {\n return isBs3();\n },\n enumerable: true,\n configurable: true\n });\n TooltipContainerComponent.prototype.ngAfterViewInit = function () {\n this.classMap = { in: false, fade: false };\n this.classMap[this.placement] = true;\n this.classMap[\"tooltip-\" + this.placement] = true;\n this.classMap.in = true;\n if (this.animation) {\n this.classMap.fade = true;\n }\n if (this.containerClass) {\n this.classMap[this.containerClass] = true;\n }\n };\n TooltipContainerComponent.decorators = [\n { type: Component, args: [{\n selector: 'bs-tooltip-container',\n changeDetection: ChangeDetectionStrategy.OnPush,\n // tslint:disable-next-line\n host: {\n '[class]': '\"tooltip in tooltip-\" + placement + \" \" + \"bs-tooltip-\" + placement + \" \" + placement + \" \" + containerClass',\n '[class.show]': '!isBs3',\n role: 'tooltip'\n },\n styles: [\n \"\\n :host.tooltip {\\n display: block;\\n }\\n :host.bs-tooltip-top .arrow, :host.bs-tooltip-bottom .arrow {\\n left: 50%;\\n }\\n :host.bs-tooltip-left .arrow, :host.bs-tooltip-right .arrow {\\n top: 50%;\\n }\\n \"\n ],\n template: \"\\n \\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n TooltipContainerComponent.ctorParameters = function () { return [\n { type: TooltipConfig, },\n ]; };\n return TooltipContainerComponent;\n}());\nexport { TooltipContainerComponent };\n//# sourceMappingURL=tooltip-container.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/tooltip/tooltip-container.component.js\n// module id = 325\n// module chunks = 1","import { latinMap } from './latin-map';\nexport function latinize(str) {\n if (!str) {\n return '';\n }\n return str.replace(/[^A-Za-z0-9\\[\\] ]/g, function (a) {\n return latinMap[a] || a;\n });\n}\nexport function escapeRegexp(queryToEscape) {\n // Regex: capture the whole query string and replace it with the string\n // that will be used to match the results, for example if the capture is\n // 'a' the result will be \\a\n return queryToEscape.replace(/([.?*+^$[\\]\\\\(){}|-])/g, '\\\\$1');\n}\n/* tslint:disable */\nexport function tokenize(str, wordRegexDelimiters, phraseRegexDelimiters) {\n if (wordRegexDelimiters === void 0) { wordRegexDelimiters = ' '; }\n if (phraseRegexDelimiters === void 0) { phraseRegexDelimiters = ''; }\n /* tslint:enable */\n var regexStr = \"(?:[\" + phraseRegexDelimiters + \"])([^\" + phraseRegexDelimiters + \"]+)\" +\n (\"(?:[\" + phraseRegexDelimiters + \"])|([^\" + wordRegexDelimiters + \"]+)\");\n var preTokenized = str.split(new RegExp(regexStr, 'g'));\n var result = [];\n var preTokenizedLength = preTokenized.length;\n var token;\n var replacePhraseDelimiters = new RegExp(\"[\" + phraseRegexDelimiters + \"]+\", 'g');\n for (var i = 0; i < preTokenizedLength; i += 1) {\n token = preTokenized[i];\n if (token && token.length && token !== wordRegexDelimiters) {\n result.push(token.replace(replacePhraseDelimiters, ''));\n }\n }\n return result;\n}\nexport function getValueFromObject(object, option) {\n if (!option || typeof object !== 'object') {\n return object.toString();\n }\n if (option.endsWith('()')) {\n var functionName = option.slice(0, option.length - 2);\n return object[functionName]().toString();\n }\n var properties = option\n .replace(/\\[(\\w+)\\]/g, '.$1')\n .replace(/^\\./, '');\n var propertiesArray = properties.split('.');\n for (var _i = 0, propertiesArray_1 = propertiesArray; _i < propertiesArray_1.length; _i++) {\n var property = propertiesArray_1[_i];\n if (property in object) {\n // tslint:disable-next-line\n object = object[property];\n }\n }\n if (!object) {\n return '';\n }\n return object.toString();\n}\n//# sourceMappingURL=typeahead-utils.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/typeahead/typeahead-utils.js\n// module id = 326\n// module chunks = 1","import { Component, ElementRef, HostListener, ViewChild, ViewChildren, Renderer2 } from '@angular/core';\nimport { isBs3, Utils } from '../utils';\nimport { latinize } from './typeahead-utils';\nvar TypeaheadContainerComponent = (function () {\n function TypeaheadContainerComponent(element, renderer) {\n this.renderer = renderer;\n this.isFocused = false;\n this._matches = [];\n this.isScrolledIntoView = function (elem) {\n var containerViewTop = this.ulElement.nativeElement.scrollTop;\n var containerViewBottom = containerViewTop + this.ulElement.nativeElement.offsetHeight;\n var elemTop = elem.offsetTop;\n var elemBottom = elemTop + elem.offsetHeight;\n return ((elemBottom <= containerViewBottom) && (elemTop >= containerViewTop));\n };\n this.element = element;\n }\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"active\", {\n get: function () {\n return this._active;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"matches\", {\n get: function () {\n return this._matches;\n },\n set: function (value) {\n var _this = this;\n this._matches = value;\n this.needScrollbar = this.typeaheadScrollable && this.typeaheadOptionsInScrollableView < this.matches.length;\n if (this.typeaheadScrollable) {\n setTimeout(function () {\n _this.setScrollableMode();\n });\n }\n if (this._matches.length > 0) {\n this._active = this._matches[0];\n if (this._active.isHeader()) {\n this.nextActiveMatch();\n }\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"optionsListTemplate\", {\n get: function () {\n return this.parent ? this.parent.optionsListTemplate : undefined;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"typeaheadScrollable\", {\n get: function () {\n return this.parent ? this.parent.typeaheadScrollable : false;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"typeaheadOptionsInScrollableView\", {\n get: function () {\n return this.parent ? this.parent.typeaheadOptionsInScrollableView : 5;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TypeaheadContainerComponent.prototype, \"itemTemplate\", {\n get: function () {\n return this.parent ? this.parent.typeaheadItemTemplate : undefined;\n },\n enumerable: true,\n configurable: true\n });\n TypeaheadContainerComponent.prototype.selectActiveMatch = function () {\n this.selectMatch(this._active);\n };\n TypeaheadContainerComponent.prototype.prevActiveMatch = function () {\n var index = this.matches.indexOf(this._active);\n this._active = this.matches[index - 1 < 0 ? this.matches.length - 1 : index - 1];\n if (this._active.isHeader()) {\n this.prevActiveMatch();\n }\n if (this.typeaheadScrollable) {\n this.scrollPrevious(index);\n }\n };\n TypeaheadContainerComponent.prototype.nextActiveMatch = function () {\n var index = this.matches.indexOf(this._active);\n this._active = this.matches[index + 1 > this.matches.length - 1 ? 0 : index + 1];\n if (this._active.isHeader()) {\n this.nextActiveMatch();\n }\n if (this.typeaheadScrollable) {\n this.scrollNext(index);\n }\n };\n TypeaheadContainerComponent.prototype.selectActive = function (value) {\n this.isFocused = true;\n this._active = value;\n };\n TypeaheadContainerComponent.prototype.hightlight = function (match, query) {\n var itemStr = match.value;\n var itemStrHelper = (this.parent && this.parent.typeaheadLatinize\n ? latinize(itemStr)\n : itemStr).toLowerCase();\n var startIdx;\n var tokenLen;\n // Replaces the capture string with the same string inside of a \"strong\" tag\n if (typeof query === 'object') {\n var queryLen = query.length;\n for (var i = 0; i < queryLen; i += 1) {\n // query[i] is already latinized and lower case\n startIdx = itemStrHelper.indexOf(query[i]);\n tokenLen = query[i].length;\n if (startIdx >= 0 && tokenLen > 0) {\n itemStr =\n itemStr.substring(0, startIdx) + \"\" + itemStr.substring(startIdx, startIdx + tokenLen) + \"\" +\n (\"\" + itemStr.substring(startIdx + tokenLen));\n itemStrHelper =\n itemStrHelper.substring(0, startIdx) + \" \" + ' '.repeat(tokenLen) + \" \" +\n (\"\" + itemStrHelper.substring(startIdx + tokenLen));\n }\n }\n }\n else if (query) {\n // query is already latinized and lower case\n startIdx = itemStrHelper.indexOf(query);\n tokenLen = query.length;\n if (startIdx >= 0 && tokenLen > 0) {\n itemStr =\n itemStr.substring(0, startIdx) + \"\" + itemStr.substring(startIdx, startIdx + tokenLen) + \"\" +\n (\"\" + itemStr.substring(startIdx + tokenLen));\n }\n }\n return itemStr;\n };\n TypeaheadContainerComponent.prototype.focusLost = function () {\n this.isFocused = false;\n };\n TypeaheadContainerComponent.prototype.isActive = function (value) {\n return this._active === value;\n };\n TypeaheadContainerComponent.prototype.selectMatch = function (value, e) {\n var _this = this;\n if (e === void 0) { e = void 0; }\n if (e) {\n e.stopPropagation();\n e.preventDefault();\n }\n this.parent.changeModel(value);\n setTimeout(function () { return _this.parent.typeaheadOnSelect.emit(value); }, 0);\n return false;\n };\n TypeaheadContainerComponent.prototype.setScrollableMode = function () {\n if (!this.ulElement) {\n this.ulElement = this.element;\n }\n if (this.liElements.first) {\n var ulStyles = Utils.getStyles(this.ulElement.nativeElement);\n var liStyles = Utils.getStyles(this.liElements.first.nativeElement);\n var ulPaddingBottom = parseFloat((ulStyles['padding-bottom'] ? ulStyles['padding-bottom'] : '').replace('px', ''));\n var ulPaddingTop = parseFloat((ulStyles['padding-top'] ? ulStyles['padding-top'] : '0').replace('px', ''));\n var optionHeight = parseFloat((liStyles['height'] ? liStyles['height'] : '0').replace('px', ''));\n var height = this.typeaheadOptionsInScrollableView * optionHeight;\n this.guiHeight = height + ulPaddingTop + ulPaddingBottom + \"px\";\n }\n this.renderer.setStyle(this.element.nativeElement, 'visibility', 'visible');\n };\n TypeaheadContainerComponent.prototype.scrollPrevious = function (index) {\n if (index === 0) {\n this.scrollToBottom();\n return;\n }\n if (this.liElements) {\n var liElement = this.liElements.toArray()[index - 1];\n if (liElement && !this.isScrolledIntoView(liElement.nativeElement)) {\n this.ulElement.nativeElement.scrollTop = liElement.nativeElement.offsetTop;\n }\n }\n };\n TypeaheadContainerComponent.prototype.scrollNext = function (index) {\n if (index + 1 > this.matches.length - 1) {\n this.scrollToTop();\n return;\n }\n if (this.liElements) {\n var liElement = this.liElements.toArray()[index + 1];\n if (liElement && !this.isScrolledIntoView(liElement.nativeElement)) {\n this.ulElement.nativeElement.scrollTop =\n liElement.nativeElement.offsetTop -\n this.ulElement.nativeElement.offsetHeight +\n liElement.nativeElement.offsetHeight;\n }\n }\n };\n TypeaheadContainerComponent.prototype.scrollToBottom = function () {\n this.ulElement.nativeElement.scrollTop = this.ulElement.nativeElement.scrollHeight;\n };\n TypeaheadContainerComponent.prototype.scrollToTop = function () {\n this.ulElement.nativeElement.scrollTop = 0;\n };\n TypeaheadContainerComponent.decorators = [\n { type: Component, args: [{\n selector: 'typeahead-container',\n // tslint:disable-next-line\n template: \" \",\n host: {\n class: 'dropdown open',\n '[class.dropdown-menu]': 'isBs4',\n '[style.overflow-y]': \"isBs4 && needScrollbar ? 'scroll': 'visible'\",\n '[style.height]': \"isBs4 && needScrollbar ? guiHeight: 'auto'\",\n '[style.visibility]': \"typeaheadScrollable ? 'hidden' : 'visible'\",\n '[class.dropup]': 'dropup',\n style: 'position: absolute;display: block;'\n }\n },] },\n ];\n /** @nocollapse */\n TypeaheadContainerComponent.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Renderer2, },\n ]; };\n TypeaheadContainerComponent.propDecorators = {\n 'ulElement': [{ type: ViewChild, args: ['ulElement',] },],\n 'liElements': [{ type: ViewChildren, args: ['liElements',] },],\n 'focusLost': [{ type: HostListener, args: ['mouseleave',] }, { type: HostListener, args: ['blur',] },],\n };\n return TypeaheadContainerComponent;\n}());\nexport { TypeaheadContainerComponent };\n//# sourceMappingURL=typeahead-container.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/typeahead/typeahead-container.component.js\n// module id = 327\n// module chunks = 1","import { ChangeDetectionStrategy, Input, Component } from '@angular/core';\nimport { PopoverConfig } from './popover.config';\nimport { isBs3 } from '../utils/theme-provider';\nvar PopoverContainerComponent = (function () {\n function PopoverContainerComponent(config) {\n Object.assign(this, config);\n }\n Object.defineProperty(PopoverContainerComponent.prototype, \"isBs3\", {\n get: function () {\n return isBs3();\n },\n enumerable: true,\n configurable: true\n });\n PopoverContainerComponent.decorators = [\n { type: Component, args: [{\n selector: 'popover-container',\n changeDetection: ChangeDetectionStrategy.OnPush,\n // tslint:disable-next-line\n host: {\n '[class]': '\"popover in popover-\" + placement + \" \" + \"bs-popover-\" + placement + \" \" + placement + \" \" + containerClass',\n '[class.show]': '!isBs3',\n role: 'tooltip',\n style: 'display:block;'\n },\n styles: [\n \"\\n :host.bs-popover-top .arrow, :host.bs-popover-bottom .arrow {\\n left: 50%;\\n }\\n :host.bs-popover-left .arrow, :host.bs-popover-right .arrow {\\n top: 50%;\\n }\\n \"\n ],\n template: \" {{ title }}
\"\n },] },\n ];\n /** @nocollapse */\n PopoverContainerComponent.ctorParameters = function () { return [\n { type: PopoverConfig, },\n ]; };\n PopoverContainerComponent.propDecorators = {\n 'placement': [{ type: Input },],\n 'title': [{ type: Input },],\n };\n return PopoverContainerComponent;\n}());\nexport { PopoverContainerComponent };\n//# sourceMappingURL=popover-container.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/popover/popover-container.component.js\n// module id = 328\n// module chunks = 1","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { Directive, ElementRef, EventEmitter, Injectable, Input, NgModule, NgZone, Output } from '@angular/core';\nimport { coerceBooleanProperty } from '@angular/cdk/coercion';\nimport { Subject } from 'rxjs/Subject';\nimport { debounceTime } from 'rxjs/operators/debounceTime';\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Factory that creates a new MutationObserver and allows us to stub it out in unit tests.\n * \\@docs-private\n */\nvar MutationObserverFactory = /** @class */ (function () {\n function MutationObserverFactory() {\n }\n /**\n * @param {?} callback\n * @return {?}\n */\n MutationObserverFactory.prototype.create = /**\n * @param {?} callback\n * @return {?}\n */\n function (callback) {\n return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback);\n };\n MutationObserverFactory.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n MutationObserverFactory.ctorParameters = function () { return []; };\n return MutationObserverFactory;\n}());\n/**\n * Directive that triggers a callback whenever the content of\n * its associated element has changed.\n */\nvar CdkObserveContent = /** @class */ (function () {\n function CdkObserveContent(_mutationObserverFactory, _elementRef, _ngZone) {\n this._mutationObserverFactory = _mutationObserverFactory;\n this._elementRef = _elementRef;\n this._ngZone = _ngZone;\n this._disabled = false;\n /**\n * Event emitted for each change in the element's content.\n */\n this.event = new EventEmitter();\n /**\n * Used for debouncing the emitted values to the observeContent event.\n */\n this._debouncer = new Subject();\n }\n Object.defineProperty(CdkObserveContent.prototype, \"disabled\", {\n get: /**\n * Whether observing content is disabled. This option can be used\n * to disconnect the underlying MutationObserver until it is needed.\n * @return {?}\n */\n function () { return this._disabled; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) {\n this._disabled = coerceBooleanProperty(value);\n },\n enumerable: true,\n configurable: true\n });\n /**\n * @return {?}\n */\n CdkObserveContent.prototype.ngAfterContentInit = /**\n * @return {?}\n */\n function () {\n var _this = this;\n if (this.debounce > 0) {\n this._ngZone.runOutsideAngular(function () {\n _this._debouncer.pipe(debounceTime(_this.debounce))\n .subscribe(function (mutations) { return _this.event.emit(mutations); });\n });\n }\n else {\n this._debouncer.subscribe(function (mutations) { return _this.event.emit(mutations); });\n }\n this._observer = this._ngZone.runOutsideAngular(function () {\n return _this._mutationObserverFactory.create(function (mutations) {\n _this._debouncer.next(mutations);\n });\n });\n if (!this.disabled) {\n this._enable();\n }\n };\n /**\n * @param {?} changes\n * @return {?}\n */\n CdkObserveContent.prototype.ngOnChanges = /**\n * @param {?} changes\n * @return {?}\n */\n function (changes) {\n if (changes['disabled']) {\n changes['disabled'].currentValue ? this._disable() : this._enable();\n }\n };\n /**\n * @return {?}\n */\n CdkObserveContent.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n this._disable();\n this._debouncer.complete();\n };\n /**\n * @return {?}\n */\n CdkObserveContent.prototype._disable = /**\n * @return {?}\n */\n function () {\n if (this._observer) {\n this._observer.disconnect();\n }\n };\n /**\n * @return {?}\n */\n CdkObserveContent.prototype._enable = /**\n * @return {?}\n */\n function () {\n if (this._observer) {\n this._observer.observe(this._elementRef.nativeElement, {\n characterData: true,\n childList: true,\n subtree: true\n });\n }\n };\n CdkObserveContent.decorators = [\n { type: Directive, args: [{\n selector: '[cdkObserveContent]',\n exportAs: 'cdkObserveContent',\n },] },\n ];\n /** @nocollapse */\n CdkObserveContent.ctorParameters = function () { return [\n { type: MutationObserverFactory, },\n { type: ElementRef, },\n { type: NgZone, },\n ]; };\n CdkObserveContent.propDecorators = {\n \"event\": [{ type: Output, args: ['cdkObserveContent',] },],\n \"disabled\": [{ type: Input, args: ['cdkObserveContentDisabled',] },],\n \"debounce\": [{ type: Input },],\n };\n return CdkObserveContent;\n}());\nvar ObserversModule = /** @class */ (function () {\n function ObserversModule() {\n }\n ObserversModule.decorators = [\n { type: NgModule, args: [{\n exports: [CdkObserveContent],\n declarations: [CdkObserveContent],\n providers: [MutationObserverFactory]\n },] },\n ];\n /** @nocollapse */\n ObserversModule.ctorParameters = function () { return []; };\n return ObserversModule;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { CdkObserveContent as ObserveContent, MutationObserverFactory, CdkObserveContent, ObserversModule };\n//# sourceMappingURL=observers.es5.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/@angular/cdk/esm5/observers.es5.js\n// module id = 329\n// module chunks = 1","// /Scripts/components/home.component.ts\n\nimport { Component, Inject, OnInit, ElementRef, ViewChild } from \"@angular/core\";\nimport { FormsModule, FormGroup, FormBuilder, Validators } from \"@angular/forms\";\nimport { ModalDirective } from \"ng2-bootstrap\";\nimport { RecaptchaModule, RecaptchaComponent } from 'ng-recaptcha';\nimport { GrpcService } from \"../services/grpc.service\";\nimport { ApplicationConfig } from \".././app.config\";\n\nimport { inOutAnimation } from '../enterAnimation';\n\ndeclare var ScrollMagic: any;\nexport const baloonAnimLen = 500;\n@Component({\n\tselector: \"app-home\",\n\ttemplateUrl: \"data/templates/home.component.html\"\n})\n\n// -------------------------------------------------------------------------------------------------\n// HomeComponent\n// -------------------------------------------------------------------------------------------------\nexport class HomeComponent implements OnInit {\n\tprivate isProcessing: boolean = false;\n\tpublic demoForm: FormGroup;\n\tpublic siteKey: string = \"\";\n\tprivate captchaResponse: string;\n\tprivate feedbackSuccess: boolean = false;\n\t/* Recaptcha component */\n\t@ViewChild('demoRecaptcha')\n\trecaptchaEl: RecaptchaComponent;\n\t/* Modal window component */\n\t@ViewChild(\"addDemoModal\")\n\tprivate _demoModal: ModalDirective;\n\tprivate _demoLink: string;\n\n\tprivate animationController: any;\n\tprivate animationScene: any;\n\n\t//----------------------------------------------------------------------------------------------\n\t/* class constructor */\n\tconstructor(private _fb: FormBuilder,\n\t\tprivate _el: ElementRef,\n\t\tprivate _ds: GrpcService,\n\t\tprivate _config: ApplicationConfig\n\t\t//private popup: Popup\n\t) { }\n\n\t//----------------------------------------------------------------------------------------------\n\t/** After the first ngOnChanges. */\n\tngOnInit() {\n\t\tthis.demoForm = this._fb.group({});\n\t\tthis.siteKey = this._config.siteKey;\n\t\t// this.initAnimation();\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\t/** Respond after Angular projects external content into the component's view. */\n\tngAfterContentInit() { }\n\t\n\t//----------------------------------------------------------------------------------------------\n\t/**\n\t * Cleanup just before Angular destroys the component. Unsubscribe observables and detach event handlers to avoid memory leaks.\n\t * Called just before Angular destroys the directive/component.\n\t */\n\tngOnDestroy() {\n\t\t// this.destroyAnimation();\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tngAfterViewInit() { }\n\n\t//----------------------------------------------------------------------------------------------\n\t/** During every Angular change detection cycle. */\n\tngDoCheck() {\n\t\t//console.log(\"HomeComponent: ngDoCheck\");\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\t\n\t\n\n\tprivate initAnimation() {\n\t\tconst easeInOut = (\n\t\t\tt: number,\n\t\t\tb: number,\n\t\t\tc: number,\n\t\t\td: number,\n\t\t) => {\n\t\t\treturn -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;\n\t\t};\n\t\tthis.animationController = new ScrollMagic.Controller();\n\t\tlet movableBaloon = document.getElementById(\"movableBaloon\");\n\t\tlet moveBaloon = (evt: any) => {\n\t\t\tif (evt.progress) {\n\t\t\t\tmovableBaloon.style.bottom = 80 * easeInOut(evt.progress, 0, 1, 1) + '%';\n\t\t\t}\n\t\t}\n\t\tthis.animationScene = new ScrollMagic.Scene({\n\t\t\toffset: 0,\n\t\t\tduration: baloonAnimLen\n\t\t })\n\t\t .setPin(\"#home\")\n\t\t .on(\"progress\", moveBaloon)\n\t\t .addTo(this.animationController);\n\t\treturn\n\t}\n\tprivate destroyAnimation() {\n\t\tthis.animationScene = this.animationScene.destroy(true);\n\t\tthis.animationController = this.animationController.destroy(true);\n\t}\n\n\tprivate submitDemo() {\n\t\tif (!this.isProcessing && this.captchaResponse) {\n\t\t\tthis.isProcessing = true;\n\t\t\tthis._ds.requestDemoToken(this.captchaResponse).subscribe(\n\t\t\t\t(value: string) => this.onDemoTokenReceived(value as string),\n\t\t\t\t(error: ErrorEvent) => this.onError(\"on receive demo token\", error as ErrorEvent)\n\t\t\t)\n\t\t}\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate onDemoTokenReceived(token: string) {\n\t\tif (!token) {\n\t\t\tconsole.warn(\"Error occured on receive token!\")\n\t\t} else {\n\t\t\tthis._demoLink = `https://web.cardio.ai/#/viewer/?at=${token}`;\n\t\t}\n\t\tthis.isProcessing = false;\n\t}\n\n\t//-------------------------------------------------------------------------------------------------\n\t/** Open demo link */\n\tprivate openDemoLink() {\n\t\tif (this._demoLink !== null) {\n\t\t\tthis.hideDemoModal();\n\t\t\twindow.open(this._demoLink, \"_blank\");\n\t\t}\n\t\t\n\t}\n\n\t//-----------------------------------------------------------------------------------------------\n\tpublic handleCaptchaResult(response: string) {\n\t\tthis.captchaResponse = response;\n\t\tif (!response) {\n\t\t\tthis._demoLink = null;\n\t\t} else {\n\t\t\tthis.submitDemo();\n\t\t}\n\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate showDemoModal(event: Event) {\n\t\tthis._demoModal.show();\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate hideDemoModal() {\n\t\tif (this._demoModal.isShown)\n\t\t\tthis._demoModal.hide();\n\t\tthis.isProcessing = false;\n\t\tthis.demoForm = this._fb.group({});\n\t\treturn true;\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\t/**\n\t * Handle error.\n\t * @param place method name\n\t * @param error error body\n\t */\n\tprivate onError(place: string, error: ErrorEvent) {\n\t\tconsole.error(`${place} throws error\n\t\t ${error.message}`);\n\t}\n}\n\n\n\n\n\n// WEBPACK FOOTER //\n// ./scripts/components/home.component.ts","import { NgModule } from '@angular/core';\nimport { AccordionModule } from './accordion/accordion.module';\nimport { AlertModule } from './alert/alert.module';\nimport { ButtonsModule } from './buttons/buttons.module';\nimport { CarouselModule } from './carousel/carousel.module';\nimport { CollapseModule } from './collapse/collapse.module';\nimport { DatepickerModule } from './datepicker/datepicker.module';\nimport { BsDropdownModule } from './dropdown/bs-dropdown.module';\nimport { ModalModule } from './modal/modal.module';\nimport { PaginationModule } from './pagination/pagination.module';\nimport { ProgressbarModule } from './progressbar/progressbar.module';\nimport { RatingModule } from './rating/rating.module';\nimport { SortableModule } from './sortable';\nimport { TabsModule } from './tabs/tabs.module';\nimport { TimepickerModule } from './timepicker/timepicker.module';\nimport { TooltipModule } from './tooltip/tooltip.module';\nimport { TypeaheadModule } from './typeahead/typeahead.module';\nimport { PopoverModule } from './popover/popover.module';\nexport { AccordionComponent, AccordionConfig, AccordionModule, AccordionPanelComponent } from './accordion';\nexport { AlertComponent, AlertConfig, AlertModule } from './alert';\nexport { ButtonCheckboxDirective, ButtonRadioDirective, ButtonsModule } from './buttons';\nexport { CarouselComponent, CarouselConfig, CarouselModule, SlideComponent } from './carousel';\nexport { CollapseDirective, CollapseModule } from './collapse';\nexport { DateFormatter, DatePickerComponent, DatepickerConfig, DatepickerModule, DayPickerComponent, MonthPickerComponent, YearPickerComponent } from './datepicker';\nexport { ModalDirective, ModalBackdropOptions, ModalBackdropComponent, ModalModule } from './modal';\nexport { BsDropdownModule, BsDropdownConfig, BsDropdownState, BsDropdownContainerComponent, BsDropdownDirective, BsDropdownMenuDirective, BsDropdownToggleDirective } from './dropdown';\nexport { PagerComponent, PaginationComponent, PaginationConfig, PaginationModule } from './pagination';\nexport { BarComponent, ProgressbarComponent, ProgressbarConfig, ProgressbarModule, ProgressDirective } from './progressbar';\nexport { RatingComponent, RatingModule } from './rating';\nexport { DraggableItemService, SortableComponent, SortableModule } from './sortable';\nexport { NgTranscludeDirective, TabDirective, TabHeadingDirective, TabsetComponent, TabsetConfig, TabsModule } from './tabs';\nexport { TimepickerComponent, TimepickerConfig, TimepickerModule } from './timepicker';\nexport { TooltipConfig, TooltipContainerComponent, TooltipDirective, TooltipModule } from './tooltip';\nexport { TypeaheadOptions, TypeaheadContainerComponent, TypeaheadDirective, TypeaheadMatch, TypeaheadModule, TypeaheadUtils } from './typeahead';\nexport { PopoverConfig, PopoverContainerComponent, PopoverDirective, PopoverModule } from './popover';\nexport { OnChange, LinkedList, isBs3, Trigger, Utils } from './utils';\nexport { ComponentLoader, ComponentLoaderFactory, ContentRef } from './component-loader';\nexport { Positioning, PositioningService, positionElements } from './positioning';\nvar MODULES = [\n AccordionModule, AlertModule, ButtonsModule,\n CarouselModule, CollapseModule, DatepickerModule,\n BsDropdownModule, ModalModule, PaginationModule,\n ProgressbarModule, PopoverModule, RatingModule,\n TabsModule, TimepickerModule, TooltipModule,\n TypeaheadModule\n];\nexport var BsRootModule = (function () {\n function BsRootModule() {\n }\n BsRootModule.decorators = [\n { type: NgModule, args: [{\n imports: [\n AccordionModule.forRoot(), AlertModule.forRoot(), ButtonsModule.forRoot(),\n CarouselModule.forRoot(), CollapseModule.forRoot(),\n DatepickerModule.forRoot(),\n BsDropdownModule.forRoot(), ModalModule.forRoot(), PaginationModule.forRoot(),\n ProgressbarModule.forRoot(), PopoverModule.forRoot(),\n RatingModule.forRoot(),\n TabsModule.forRoot(), TimepickerModule.forRoot(), TooltipModule.forRoot(),\n TypeaheadModule.forRoot(), SortableModule.forRoot()\n ],\n exports: MODULES\n },] },\n ];\n /** @nocollapse */\n BsRootModule.ctorParameters = function () { return []; };\n return BsRootModule;\n}());\nexport var Ng2BootstrapModule = (function () {\n function Ng2BootstrapModule() {\n }\n Ng2BootstrapModule.forRoot = function () {\n return { ngModule: BsRootModule };\n };\n Ng2BootstrapModule.decorators = [\n { type: NgModule, args: [{ exports: MODULES },] },\n ];\n /** @nocollapse */\n Ng2BootstrapModule.ctorParameters = function () { return []; };\n return Ng2BootstrapModule;\n}());\n//# sourceMappingURL=index.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/index.js\n// module id = 502\n// module chunks = 1","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { CollapseModule } from '../collapse/collapse.module';\nimport { AccordionPanelComponent } from './accordion-group.component';\nimport { AccordionComponent } from './accordion.component';\nimport { AccordionConfig } from './accordion.config';\nexport var AccordionModule = (function () {\n function AccordionModule() {\n }\n AccordionModule.forRoot = function () { return { ngModule: AccordionModule, providers: [AccordionConfig] }; };\n AccordionModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule, CollapseModule],\n declarations: [AccordionComponent, AccordionPanelComponent],\n exports: [AccordionComponent, AccordionPanelComponent]\n },] },\n ];\n /** @nocollapse */\n AccordionModule.ctorParameters = function () { return []; };\n return AccordionModule;\n}());\n//# sourceMappingURL=accordion.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/accordion/accordion.module.js\n// module id = 503\n// module chunks = 1","import { Directive, ElementRef, EventEmitter, HostBinding, Input, Output, Renderer } from '@angular/core';\nexport var CollapseDirective = (function () {\n function CollapseDirective(_el, _renderer) {\n /** This event fires as soon as content collapses */\n this.collapsed = new EventEmitter();\n /** This event fires as soon as content becomes visible */\n this.expanded = new EventEmitter();\n // shown\n this.isExpanded = true;\n // hidden\n this.isCollapsed = false;\n // stale state\n this.isCollapse = true;\n // animation state\n this.isCollapsing = false;\n this._el = _el;\n this._renderer = _renderer;\n }\n Object.defineProperty(CollapseDirective.prototype, \"collapse\", {\n get: function () {\n return this.isExpanded;\n },\n /** A flag indicating visibility of content (shown or hidden) */\n set: function (value) {\n this.isExpanded = value;\n this.toggle();\n },\n enumerable: true,\n configurable: true\n });\n /** allows to manually toggle content visibility */\n CollapseDirective.prototype.toggle = function () {\n if (this.isExpanded) {\n this.hide();\n }\n else {\n this.show();\n }\n };\n /** allows to manually hide content */\n CollapseDirective.prototype.hide = function () {\n this.isCollapse = false;\n this.isCollapsing = true;\n this.isExpanded = false;\n this.isCollapsed = true;\n this.isCollapse = true;\n this.isCollapsing = false;\n this.display = 'none';\n this.collapsed.emit(this);\n };\n /** allows to manually show collapsed content */\n CollapseDirective.prototype.show = function () {\n this.isCollapse = false;\n this.isCollapsing = true;\n this.isExpanded = true;\n this.isCollapsed = false;\n this.display = 'block';\n // this.height = 'auto';\n this.isCollapse = true;\n this.isCollapsing = false;\n this._renderer.setElementStyle(this._el.nativeElement, 'overflow', 'visible');\n this._renderer.setElementStyle(this._el.nativeElement, 'height', 'auto');\n this.expanded.emit(this);\n };\n CollapseDirective.decorators = [\n { type: Directive, args: [{\n selector: '[collapse]',\n exportAs: 'bs-collapse',\n /* tslint:disable-next-line */\n host: { '[class.collapse]': 'true' } /*,\n animations: [\n trigger('active', [\n state('void', style({height: 0})),\n state('closed', style({height: 0})),\n state('open', style({height: '*'})),\n transition('void => closed', [animate(0)]),\n transition('closed => open', [animate('350ms ease-out')]),\n transition('open => closed', [animate('350ms ease-out')])\n ])\n ]*/\n },] },\n ];\n /** @nocollapse */\n CollapseDirective.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Renderer, },\n ]; };\n CollapseDirective.propDecorators = {\n 'collapsed': [{ type: Output },],\n 'expanded': [{ type: Output },],\n 'display': [{ type: HostBinding, args: ['style.display',] },],\n 'isExpanded': [{ type: HostBinding, args: ['class.in',] }, { type: HostBinding, args: ['class.show',] }, { type: HostBinding, args: ['attr.aria-expanded',] },],\n 'isCollapsed': [{ type: HostBinding, args: ['attr.aria-hidden',] },],\n 'isCollapse': [{ type: HostBinding, args: ['class.collapse',] },],\n 'isCollapsing': [{ type: HostBinding, args: ['class.collapsing',] },],\n 'collapse': [{ type: Input },],\n };\n return CollapseDirective;\n}());\n//# sourceMappingURL=collapse.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/collapse/collapse.directive.js\n// module id = 504\n// module chunks = 1","import { Component, HostBinding, Inject, Input } from '@angular/core';\nimport { isBs3 } from '../utils/ng2-bootstrap-config';\nimport { AccordionComponent } from './accordion.component';\n/*\n * ### Accordion heading\n\n Instead of using `heading` attribute on the `accordion-group`, you can use an `accordion-heading` attribute on `any` element inside of a group that will be used as group's header template.\n\n * */\nexport var AccordionPanelComponent = (function () {\n function AccordionPanelComponent(accordion) {\n this.accordion = accordion;\n }\n Object.defineProperty(AccordionPanelComponent.prototype, \"isOpen\", {\n // Questionable, maybe .panel-open should be on child div.panel element?\n /** Is accordion group open or closed */\n get: function () {\n return this._isOpen;\n },\n set: function (value) {\n this._isOpen = value;\n if (value) {\n this.accordion.closeOtherPanels(this);\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(AccordionPanelComponent.prototype, \"isBs3\", {\n get: function () {\n return isBs3();\n },\n enumerable: true,\n configurable: true\n });\n AccordionPanelComponent.prototype.ngOnInit = function () {\n this.panelClass = this.panelClass || 'panel-default';\n this.accordion.addGroup(this);\n };\n AccordionPanelComponent.prototype.ngOnDestroy = function () {\n this.accordion.removeGroup(this);\n };\n AccordionPanelComponent.prototype.toggleOpen = function (event) {\n if (!this.isDisabled) {\n this.isOpen = !this.isOpen;\n }\n };\n AccordionPanelComponent.decorators = [\n { type: Component, args: [{\n selector: 'accordion-group, accordion-panel',\n template: \"\\n\\n \"\n },] },\n ];\n /** @nocollapse */\n AccordionPanelComponent.ctorParameters = function () { return [\n { type: AccordionComponent, decorators: [{ type: Inject, args: [AccordionComponent,] },] },\n ]; };\n AccordionPanelComponent.propDecorators = {\n 'heading': [{ type: Input },],\n 'panelClass': [{ type: Input },],\n 'isDisabled': [{ type: Input },],\n 'isOpen': [{ type: HostBinding, args: ['class.panel-open',] }, { type: Input },],\n };\n return AccordionPanelComponent;\n}());\n//# sourceMappingURL=accordion-group.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/accordion/accordion-group.component.js\n// module id = 505\n// module chunks = 1","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { AlertComponent } from './alert.component';\nimport { AlertConfig } from './alert.config';\nexport var AlertModule = (function () {\n function AlertModule() {\n }\n AlertModule.forRoot = function () {\n return { ngModule: AlertModule, providers: [AlertConfig] };\n };\n AlertModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [AlertComponent],\n exports: [AlertComponent],\n entryComponents: [AlertComponent]\n },] },\n ];\n /** @nocollapse */\n AlertModule.ctorParameters = function () { return []; };\n return AlertModule;\n}());\n//# sourceMappingURL=alert.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/alert/alert.module.js\n// module id = 506\n// module chunks = 1","var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n};\nvar __metadata = (this && this.__metadata) || function (k, v) {\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(k, v);\n};\nimport { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { AlertConfig } from './alert.config';\nimport { OnChange } from '../utils/decorators';\nexport var AlertComponent = (function () {\n function AlertComponent(_config) {\n var _this = this;\n /** Alert type. Provides one of four bootstrap supported contextual classes: `success`, `info`, `warning` and `danger` */\n this.type = 'warning';\n /** If set, displays an inline \"Close\" button */\n this.dismissible = false;\n /** This event fires immediately after close instance method is called, $event is an instance of Alert component. */\n this.onClose = new EventEmitter();\n /** This event fires when alert closed, $event is an instance of Alert component */\n this.onClosed = new EventEmitter();\n this.isClosed = false;\n this.classes = '';\n this.dismissibleChange = new EventEmitter();\n Object.assign(this, _config);\n this.dismissibleChange.subscribe(function (dismissible) {\n _this.classes = _this.dismissible ? 'alert-dismissible' : '';\n });\n }\n AlertComponent.prototype.ngOnInit = function () {\n var _this = this;\n if (this.dismissOnTimeout) {\n // if dismissOnTimeout used as attr without binding, it will be a string\n setTimeout(function () { return _this.close(); }, parseInt(this.dismissOnTimeout, 10));\n }\n };\n // todo: animation ` If the .fade and .in classes are present on the element,\n // the alert will fade out before it is removed`\n /**\n * Closes an alert by removing it from the DOM.\n */\n AlertComponent.prototype.close = function () {\n if (this.isClosed) {\n return;\n }\n this.onClose.emit(this);\n this.isClosed = true;\n this.onClosed.emit(this);\n };\n AlertComponent.decorators = [\n { type: Component, args: [{\n selector: 'alert,ngx-alert',\n template: \"\\n\\n \\n \\n \\n \\n \\n
\\n\\n \"\n },] },\n ];\n /** @nocollapse */\n AlertComponent.ctorParameters = function () { return [\n { type: AlertConfig, },\n ]; };\n AlertComponent.propDecorators = {\n 'type': [{ type: Input },],\n 'dismissible': [{ type: Input },],\n 'dismissOnTimeout': [{ type: Input },],\n 'onClose': [{ type: Output },],\n 'onClosed': [{ type: Output },],\n };\n __decorate([\n OnChange(), \n __metadata('design:type', Boolean)\n ], AlertComponent.prototype, \"dismissible\", void 0);\n return AlertComponent;\n}());\n//# sourceMappingURL=alert.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/alert/alert.component.js\n// module id = 507\n// module chunks = 1","import { NgModule } from '@angular/core';\nimport { ButtonCheckboxDirective } from './button-checkbox.directive';\nimport { ButtonRadioDirective } from './button-radio.directive';\nexport var ButtonsModule = (function () {\n function ButtonsModule() {\n }\n ButtonsModule.forRoot = function () {\n return { ngModule: ButtonsModule, providers: [] };\n };\n ButtonsModule.decorators = [\n { type: NgModule, args: [{\n declarations: [ButtonCheckboxDirective, ButtonRadioDirective],\n exports: [ButtonCheckboxDirective, ButtonRadioDirective]\n },] },\n ];\n /** @nocollapse */\n ButtonsModule.ctorParameters = function () { return []; };\n return ButtonsModule;\n}());\n//# sourceMappingURL=buttons.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/buttons/buttons.module.js\n// module id = 508\n// module chunks = 1","import { Directive, HostBinding, HostListener, Input, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\n// TODO: config: activeClass - Class to apply to the checked buttons\nexport var CHECKBOX_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return ButtonCheckboxDirective; }),\n multi: true\n};\n/**\n * Add checkbox functionality to any element\n */\nexport var ButtonCheckboxDirective = (function () {\n function ButtonCheckboxDirective() {\n /** Truthy value, will be set to ngModel */\n this.btnCheckboxTrue = true;\n /** Falsy value, will be set to ngModel */\n this.btnCheckboxFalse = false;\n this.state = false;\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n }\n // view -> model\n ButtonCheckboxDirective.prototype.onClick = function () {\n if (this.isDisabled) {\n return;\n }\n this.toggle(!this.state);\n this.onChange(this.value);\n };\n ButtonCheckboxDirective.prototype.ngOnInit = function () {\n this.toggle(this.trueValue === this.value);\n };\n Object.defineProperty(ButtonCheckboxDirective.prototype, \"trueValue\", {\n get: function () {\n return typeof this.btnCheckboxTrue !== 'undefined'\n ? this.btnCheckboxTrue\n : true;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ButtonCheckboxDirective.prototype, \"falseValue\", {\n get: function () {\n return typeof this.btnCheckboxFalse !== 'undefined'\n ? this.btnCheckboxFalse\n : false;\n },\n enumerable: true,\n configurable: true\n });\n ButtonCheckboxDirective.prototype.toggle = function (state) {\n this.state = state;\n this.value = this.state ? this.trueValue : this.falseValue;\n };\n // ControlValueAccessor\n // model -> view\n ButtonCheckboxDirective.prototype.writeValue = function (value) {\n this.state = this.trueValue === value;\n this.value = value ? this.trueValue : this.falseValue;\n };\n ButtonCheckboxDirective.prototype.setDisabledState = function (isDisabled) {\n this.isDisabled = isDisabled;\n };\n ButtonCheckboxDirective.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n ButtonCheckboxDirective.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n ButtonCheckboxDirective.decorators = [\n { type: Directive, args: [{ selector: '[btnCheckbox]', providers: [CHECKBOX_CONTROL_VALUE_ACCESSOR] },] },\n ];\n /** @nocollapse */\n ButtonCheckboxDirective.ctorParameters = function () { return []; };\n ButtonCheckboxDirective.propDecorators = {\n 'btnCheckboxTrue': [{ type: Input },],\n 'btnCheckboxFalse': [{ type: Input },],\n 'state': [{ type: HostBinding, args: ['class.active',] },],\n 'onClick': [{ type: HostListener, args: ['click',] },],\n };\n return ButtonCheckboxDirective;\n}());\n//# sourceMappingURL=button-checkbox.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/buttons/button-checkbox.directive.js\n// module id = 509\n// module chunks = 1","import { Directive, ElementRef, HostBinding, forwardRef, HostListener, Input } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nexport var RADIO_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return ButtonRadioDirective; }),\n multi: true\n};\n/**\n * Create radio buttons or groups of buttons.\n * A value of a selected button is bound to a variable specified via ngModel.\n */\nexport var ButtonRadioDirective = (function () {\n function ButtonRadioDirective(el) {\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n this.el = el;\n }\n Object.defineProperty(ButtonRadioDirective.prototype, \"isActive\", {\n get: function () {\n return this.btnRadio === this.value;\n },\n enumerable: true,\n configurable: true\n });\n ButtonRadioDirective.prototype.onClick = function () {\n if (this.el.nativeElement.attributes.disabled) {\n return;\n }\n if (this.uncheckable && this.btnRadio === this.value) {\n this.value = undefined;\n }\n else {\n this.value = this.btnRadio;\n }\n this.onTouched();\n this.onChange(this.value);\n };\n ButtonRadioDirective.prototype.ngOnInit = function () {\n this.uncheckable = typeof this.uncheckable !== 'undefined';\n };\n ButtonRadioDirective.prototype.onBlur = function () {\n this.onTouched();\n };\n // ControlValueAccessor\n // model -> view\n ButtonRadioDirective.prototype.writeValue = function (value) {\n this.value = value;\n };\n ButtonRadioDirective.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n ButtonRadioDirective.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n ButtonRadioDirective.decorators = [\n { type: Directive, args: [{ selector: '[btnRadio]', providers: [RADIO_CONTROL_VALUE_ACCESSOR] },] },\n ];\n /** @nocollapse */\n ButtonRadioDirective.ctorParameters = function () { return [\n { type: ElementRef, },\n ]; };\n ButtonRadioDirective.propDecorators = {\n 'btnRadio': [{ type: Input },],\n 'uncheckable': [{ type: Input },],\n 'value': [{ type: Input },],\n 'isActive': [{ type: HostBinding, args: ['class.active',] },],\n 'onClick': [{ type: HostListener, args: ['click',] },],\n };\n return ButtonRadioDirective;\n}());\n//# sourceMappingURL=button-radio.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/buttons/button-radio.directive.js\n// module id = 510\n// module chunks = 1","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { CarouselComponent } from './carousel.component';\nimport { SlideComponent } from './slide.component';\nimport { CarouselConfig } from './carousel.config';\nexport var CarouselModule = (function () {\n function CarouselModule() {\n }\n CarouselModule.forRoot = function () {\n return { ngModule: CarouselModule, providers: [] };\n };\n CarouselModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [SlideComponent, CarouselComponent],\n exports: [SlideComponent, CarouselComponent],\n providers: [CarouselConfig]\n },] },\n ];\n /** @nocollapse */\n CarouselModule.ctorParameters = function () { return []; };\n return CarouselModule;\n}());\n//# sourceMappingURL=carousel.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/carousel/carousel.module.js\n// module id = 511\n// module chunks = 1","export { OnChange } from './decorators';\nexport { LinkedList } from './linked-list.class';\nexport { isBs3 } from './ng2-bootstrap-config';\nexport { Trigger } from './trigger.class';\nexport { Utils } from './utils.class';\n//# sourceMappingURL=index.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/utils/index.js\n// module id = 512\n// module chunks = 1","/**\n * @copyright Valor Software\n * @copyright Angular ng-bootstrap team\n */\nexport var Trigger = (function () {\n function Trigger(open, close) {\n this.open = open;\n this.close = close || open;\n }\n Trigger.prototype.isManual = function () { return this.open === 'manual' || this.close === 'manual'; };\n return Trigger;\n}());\n//# sourceMappingURL=trigger.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/utils/trigger.class.js\n// module id = 513\n// module chunks = 1","import { window } from './facade/browser';\nexport var Utils = (function () {\n function Utils() {\n }\n Utils.reflow = function (element) {\n (function (bs) { return bs; })(element.offsetHeight);\n };\n // source: https://github.com/jquery/jquery/blob/master/src/css/var/getStyles.js\n Utils.getStyles = function (elem) {\n // Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n // IE throws on elements created in popups\n // FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n var view = elem.ownerDocument.defaultView;\n if (!view || !view.opener) {\n view = window;\n }\n return view.getComputedStyle(elem);\n };\n return Utils;\n}());\n//# sourceMappingURL=utils.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/utils/utils.class.js\n// module id = 514\n// module chunks = 1","import { Component, HostBinding, Input } from '@angular/core';\nimport { CarouselComponent } from './carousel.component';\nexport var SlideComponent = (function () {\n function SlideComponent(carousel) {\n /** Wraps element by appropriate CSS classes */\n this.addClass = true;\n this.carousel = carousel;\n }\n /** Fires changes in container collection after adding a new slide instance */\n SlideComponent.prototype.ngOnInit = function () {\n this.carousel.addSlide(this);\n };\n /** Fires changes in container collection after removing of this slide instance */\n SlideComponent.prototype.ngOnDestroy = function () {\n this.carousel.removeSlide(this);\n };\n SlideComponent.decorators = [\n { type: Component, args: [{\n selector: 'slide',\n template: \"\\n \\n \\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n SlideComponent.ctorParameters = function () { return [\n { type: CarouselComponent, },\n ]; };\n SlideComponent.propDecorators = {\n 'active': [{ type: HostBinding, args: ['class.active',] }, { type: Input },],\n 'addClass': [{ type: HostBinding, args: ['class.item',] }, { type: HostBinding, args: ['class.carousel-item',] },],\n };\n return SlideComponent;\n}());\n//# sourceMappingURL=slide.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/carousel/slide.component.js\n// module id = 515\n// module chunks = 1","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { DatePickerInnerComponent } from './datepicker-inner.component';\nimport { DatePickerComponent } from './datepicker.component';\nimport { DayPickerComponent } from './daypicker.component';\nimport { MonthPickerComponent } from './monthpicker.component';\nimport { YearPickerComponent } from './yearpicker.component';\nimport { DatepickerConfig } from './datepicker.config';\nexport var DatepickerModule = (function () {\n function DatepickerModule() {\n }\n DatepickerModule.forRoot = function () {\n return { ngModule: DatepickerModule, providers: [DatepickerConfig] };\n };\n DatepickerModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule, FormsModule],\n declarations: [DatePickerComponent, DatePickerInnerComponent, DayPickerComponent,\n MonthPickerComponent, YearPickerComponent],\n exports: [DatePickerComponent, DatePickerInnerComponent, DayPickerComponent,\n MonthPickerComponent, YearPickerComponent],\n entryComponents: [DatePickerComponent]\n },] },\n ];\n /** @nocollapse */\n DatepickerModule.ctorParameters = function () { return []; };\n return DatepickerModule;\n}());\n//# sourceMappingURL=datepicker.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/datepicker/datepicker.module.js\n// module id = 516\n// module chunks = 1","import moment from 'moment';\nexport var DateFormatter = (function () {\n function DateFormatter() {\n }\n DateFormatter.prototype.format = function (date, format) {\n return moment(date.getTime()).format(format);\n };\n return DateFormatter;\n}());\n//# sourceMappingURL=date-formatter.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/datepicker/date-formatter.js\n// module id = 517\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Afrikaans [af]\n//! author : Werner Mollentze : https://github.com/wernerm\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar af = moment.defineLocale('af', {\n months : 'Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember'.split('_'),\n monthsShort : 'Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'),\n weekdays : 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split('_'),\n weekdaysShort : 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'),\n weekdaysMin : 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'),\n meridiemParse: /vm|nm/i,\n isPM : function (input) {\n return /^nm$/i.test(input);\n },\n meridiem : function (hours, minutes, isLower) {\n if (hours < 12) {\n return isLower ? 'vm' : 'VM';\n } else {\n return isLower ? 'nm' : 'NM';\n }\n },\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[Vandag om] LT',\n nextDay : '[Môre om] LT',\n nextWeek : 'dddd [om] LT',\n lastDay : '[Gister om] LT',\n lastWeek : '[Laas] dddd [om] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'oor %s',\n past : '%s gelede',\n s : '\\'n paar sekondes',\n m : '\\'n minuut',\n mm : '%d minute',\n h : '\\'n uur',\n hh : '%d ure',\n d : '\\'n dag',\n dd : '%d dae',\n M : '\\'n maand',\n MM : '%d maande',\n y : '\\'n jaar',\n yy : '%d jaar'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(ste|de)/,\n ordinal : function (number) {\n return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de'); // Thanks to Joris Röling : https://github.com/jjupiter\n },\n week : {\n dow : 1, // Maandag is die eerste dag van die week.\n doy : 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar.\n }\n});\n\nreturn af;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/af.js\n// module id = 518\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Arabic [ar]\n//! author : Abdel Said: https://github.com/abdelsaid\n//! author : Ahmed Elkhatib\n//! author : forabi https://github.com/forabi\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '١',\n '2': '٢',\n '3': '٣',\n '4': '٤',\n '5': '٥',\n '6': '٦',\n '7': '٧',\n '8': '٨',\n '9': '٩',\n '0': '٠'\n};\nvar numberMap = {\n '١': '1',\n '٢': '2',\n '٣': '3',\n '٤': '4',\n '٥': '5',\n '٦': '6',\n '٧': '7',\n '٨': '8',\n '٩': '9',\n '٠': '0'\n};\nvar pluralForm = function (n) {\n return n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5;\n};\nvar plurals = {\n s : ['أقل من ثانية', 'ثانية واحدة', ['ثانيتان', 'ثانيتين'], '%d ثوان', '%d ثانية', '%d ثانية'],\n m : ['أقل من دقيقة', 'دقيقة واحدة', ['دقيقتان', 'دقيقتين'], '%d دقائق', '%d دقيقة', '%d دقيقة'],\n h : ['أقل من ساعة', 'ساعة واحدة', ['ساعتان', 'ساعتين'], '%d ساعات', '%d ساعة', '%d ساعة'],\n d : ['أقل من يوم', 'يوم واحد', ['يومان', 'يومين'], '%d أيام', '%d يومًا', '%d يوم'],\n M : ['أقل من شهر', 'شهر واحد', ['شهران', 'شهرين'], '%d أشهر', '%d شهرا', '%d شهر'],\n y : ['أقل من عام', 'عام واحد', ['عامان', 'عامين'], '%d أعوام', '%d عامًا', '%d عام']\n};\nvar pluralize = function (u) {\n return function (number, withoutSuffix, string, isFuture) {\n var f = pluralForm(number),\n str = plurals[u][pluralForm(number)];\n if (f === 2) {\n str = str[withoutSuffix ? 0 : 1];\n }\n return str.replace(/%d/i, number);\n };\n};\nvar months = [\n 'كانون الثاني يناير',\n 'شباط فبراير',\n 'آذار مارس',\n 'نيسان أبريل',\n 'أيار مايو',\n 'حزيران يونيو',\n 'تموز يوليو',\n 'آب أغسطس',\n 'أيلول سبتمبر',\n 'تشرين الأول أكتوبر',\n 'تشرين الثاني نوفمبر',\n 'كانون الأول ديسمبر'\n];\n\nvar ar = moment.defineLocale('ar', {\n months : months,\n monthsShort : months,\n weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'D/\\u200FM/\\u200FYYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n meridiemParse: /ص|م/,\n isPM : function (input) {\n return 'م' === input;\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 12) {\n return 'ص';\n } else {\n return 'م';\n }\n },\n calendar : {\n sameDay: '[اليوم عند الساعة] LT',\n nextDay: '[غدًا عند الساعة] LT',\n nextWeek: 'dddd [عند الساعة] LT',\n lastDay: '[أمس عند الساعة] LT',\n lastWeek: 'dddd [عند الساعة] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'بعد %s',\n past : 'منذ %s',\n s : pluralize('s'),\n m : pluralize('m'),\n mm : pluralize('m'),\n h : pluralize('h'),\n hh : pluralize('h'),\n d : pluralize('d'),\n dd : pluralize('d'),\n M : pluralize('M'),\n MM : pluralize('M'),\n y : pluralize('y'),\n yy : pluralize('y')\n },\n preparse: function (string) {\n return string.replace(/\\u200f/g, '').replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {\n return numberMap[match];\n }).replace(/،/g, ',');\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n }).replace(/,/g, '،');\n },\n week : {\n dow : 6, // Saturday is the first day of the week.\n doy : 12 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn ar;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ar.js\n// module id = 519\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Arabic (Algeria) [ar-dz]\n//! author : Noureddine LOUAHEDJ : https://github.com/noureddineme\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar arDz = moment.defineLocale('ar-dz', {\n months : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),\n monthsShort : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),\n weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort : 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin : 'أح_إث_ثلا_أر_خم_جم_سب'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[اليوم على الساعة] LT',\n nextDay: '[غدا على الساعة] LT',\n nextWeek: 'dddd [على الساعة] LT',\n lastDay: '[أمس على الساعة] LT',\n lastWeek: 'dddd [على الساعة] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'في %s',\n past : 'منذ %s',\n s : 'ثوان',\n m : 'دقيقة',\n mm : '%d دقائق',\n h : 'ساعة',\n hh : '%d ساعات',\n d : 'يوم',\n dd : '%d أيام',\n M : 'شهر',\n MM : '%d أشهر',\n y : 'سنة',\n yy : '%d سنوات'\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 4 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn arDz;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ar-dz.js\n// module id = 520\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Arabic (Kuwait) [ar-kw]\n//! author : Nusret Parlak: https://github.com/nusretparlak\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar arKw = moment.defineLocale('ar-kw', {\n months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),\n monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),\n weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[اليوم على الساعة] LT',\n nextDay: '[غدا على الساعة] LT',\n nextWeek: 'dddd [على الساعة] LT',\n lastDay: '[أمس على الساعة] LT',\n lastWeek: 'dddd [على الساعة] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'في %s',\n past : 'منذ %s',\n s : 'ثوان',\n m : 'دقيقة',\n mm : '%d دقائق',\n h : 'ساعة',\n hh : '%d ساعات',\n d : 'يوم',\n dd : '%d أيام',\n M : 'شهر',\n MM : '%d أشهر',\n y : 'سنة',\n yy : '%d سنوات'\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 12 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn arKw;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ar-kw.js\n// module id = 521\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Arabic (Lybia) [ar-ly]\n//! author : Ali Hmer: https://github.com/kikoanis\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '1',\n '2': '2',\n '3': '3',\n '4': '4',\n '5': '5',\n '6': '6',\n '7': '7',\n '8': '8',\n '9': '9',\n '0': '0'\n};\nvar pluralForm = function (n) {\n return n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5;\n};\nvar plurals = {\n s : ['أقل من ثانية', 'ثانية واحدة', ['ثانيتان', 'ثانيتين'], '%d ثوان', '%d ثانية', '%d ثانية'],\n m : ['أقل من دقيقة', 'دقيقة واحدة', ['دقيقتان', 'دقيقتين'], '%d دقائق', '%d دقيقة', '%d دقيقة'],\n h : ['أقل من ساعة', 'ساعة واحدة', ['ساعتان', 'ساعتين'], '%d ساعات', '%d ساعة', '%d ساعة'],\n d : ['أقل من يوم', 'يوم واحد', ['يومان', 'يومين'], '%d أيام', '%d يومًا', '%d يوم'],\n M : ['أقل من شهر', 'شهر واحد', ['شهران', 'شهرين'], '%d أشهر', '%d شهرا', '%d شهر'],\n y : ['أقل من عام', 'عام واحد', ['عامان', 'عامين'], '%d أعوام', '%d عامًا', '%d عام']\n};\nvar pluralize = function (u) {\n return function (number, withoutSuffix, string, isFuture) {\n var f = pluralForm(number),\n str = plurals[u][pluralForm(number)];\n if (f === 2) {\n str = str[withoutSuffix ? 0 : 1];\n }\n return str.replace(/%d/i, number);\n };\n};\nvar months = [\n 'يناير',\n 'فبراير',\n 'مارس',\n 'أبريل',\n 'مايو',\n 'يونيو',\n 'يوليو',\n 'أغسطس',\n 'سبتمبر',\n 'أكتوبر',\n 'نوفمبر',\n 'ديسمبر'\n];\n\nvar arLy = moment.defineLocale('ar-ly', {\n months : months,\n monthsShort : months,\n weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'D/\\u200FM/\\u200FYYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n meridiemParse: /ص|م/,\n isPM : function (input) {\n return 'م' === input;\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 12) {\n return 'ص';\n } else {\n return 'م';\n }\n },\n calendar : {\n sameDay: '[اليوم عند الساعة] LT',\n nextDay: '[غدًا عند الساعة] LT',\n nextWeek: 'dddd [عند الساعة] LT',\n lastDay: '[أمس عند الساعة] LT',\n lastWeek: 'dddd [عند الساعة] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'بعد %s',\n past : 'منذ %s',\n s : pluralize('s'),\n m : pluralize('m'),\n mm : pluralize('m'),\n h : pluralize('h'),\n hh : pluralize('h'),\n d : pluralize('d'),\n dd : pluralize('d'),\n M : pluralize('M'),\n MM : pluralize('M'),\n y : pluralize('y'),\n yy : pluralize('y')\n },\n preparse: function (string) {\n return string.replace(/\\u200f/g, '').replace(/،/g, ',');\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n }).replace(/,/g, '،');\n },\n week : {\n dow : 6, // Saturday is the first day of the week.\n doy : 12 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn arLy;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ar-ly.js\n// module id = 522\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Arabic (Morocco) [ar-ma]\n//! author : ElFadili Yassine : https://github.com/ElFadiliY\n//! author : Abdel Said : https://github.com/abdelsaid\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar arMa = moment.defineLocale('ar-ma', {\n months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),\n monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),\n weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[اليوم على الساعة] LT',\n nextDay: '[غدا على الساعة] LT',\n nextWeek: 'dddd [على الساعة] LT',\n lastDay: '[أمس على الساعة] LT',\n lastWeek: 'dddd [على الساعة] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'في %s',\n past : 'منذ %s',\n s : 'ثوان',\n m : 'دقيقة',\n mm : '%d دقائق',\n h : 'ساعة',\n hh : '%d ساعات',\n d : 'يوم',\n dd : '%d أيام',\n M : 'شهر',\n MM : '%d أشهر',\n y : 'سنة',\n yy : '%d سنوات'\n },\n week : {\n dow : 6, // Saturday is the first day of the week.\n doy : 12 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn arMa;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ar-ma.js\n// module id = 523\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Arabic (Saudi Arabia) [ar-sa]\n//! author : Suhail Alkowaileet : https://github.com/xsoh\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '١',\n '2': '٢',\n '3': '٣',\n '4': '٤',\n '5': '٥',\n '6': '٦',\n '7': '٧',\n '8': '٨',\n '9': '٩',\n '0': '٠'\n};\nvar numberMap = {\n '١': '1',\n '٢': '2',\n '٣': '3',\n '٤': '4',\n '٥': '5',\n '٦': '6',\n '٧': '7',\n '٨': '8',\n '٩': '9',\n '٠': '0'\n};\n\nvar arSa = moment.defineLocale('ar-sa', {\n months : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),\n monthsShort : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),\n weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n meridiemParse: /ص|م/,\n isPM : function (input) {\n return 'م' === input;\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 12) {\n return 'ص';\n } else {\n return 'م';\n }\n },\n calendar : {\n sameDay: '[اليوم على الساعة] LT',\n nextDay: '[غدا على الساعة] LT',\n nextWeek: 'dddd [على الساعة] LT',\n lastDay: '[أمس على الساعة] LT',\n lastWeek: 'dddd [على الساعة] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'في %s',\n past : 'منذ %s',\n s : 'ثوان',\n m : 'دقيقة',\n mm : '%d دقائق',\n h : 'ساعة',\n hh : '%d ساعات',\n d : 'يوم',\n dd : '%d أيام',\n M : 'شهر',\n MM : '%d أشهر',\n y : 'سنة',\n yy : '%d سنوات'\n },\n preparse: function (string) {\n return string.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {\n return numberMap[match];\n }).replace(/،/g, ',');\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n }).replace(/,/g, '،');\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 6 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn arSa;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ar-sa.js\n// module id = 524\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Arabic (Tunisia) [ar-tn]\n//! author : Nader Toukabri : https://github.com/naderio\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar arTn = moment.defineLocale('ar-tn', {\n months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),\n monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),\n weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),\n weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),\n weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),\n weekdaysParseExact : true,\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm'\n },\n calendar: {\n sameDay: '[اليوم على الساعة] LT',\n nextDay: '[غدا على الساعة] LT',\n nextWeek: 'dddd [على الساعة] LT',\n lastDay: '[أمس على الساعة] LT',\n lastWeek: 'dddd [على الساعة] LT',\n sameElse: 'L'\n },\n relativeTime: {\n future: 'في %s',\n past: 'منذ %s',\n s: 'ثوان',\n m: 'دقيقة',\n mm: '%d دقائق',\n h: 'ساعة',\n hh: '%d ساعات',\n d: 'يوم',\n dd: '%d أيام',\n M: 'شهر',\n MM: '%d أشهر',\n y: 'سنة',\n yy: '%d سنوات'\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn arTn;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ar-tn.js\n// module id = 525\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Azerbaijani [az]\n//! author : topchiyev : https://github.com/topchiyev\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar suffixes = {\n 1: '-inci',\n 5: '-inci',\n 8: '-inci',\n 70: '-inci',\n 80: '-inci',\n 2: '-nci',\n 7: '-nci',\n 20: '-nci',\n 50: '-nci',\n 3: '-üncü',\n 4: '-üncü',\n 100: '-üncü',\n 6: '-ncı',\n 9: '-uncu',\n 10: '-uncu',\n 30: '-uncu',\n 60: '-ıncı',\n 90: '-ıncı'\n};\n\nvar az = moment.defineLocale('az', {\n months : 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split('_'),\n monthsShort : 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),\n weekdays : 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split('_'),\n weekdaysShort : 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'),\n weekdaysMin : 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[bugün saat] LT',\n nextDay : '[sabah saat] LT',\n nextWeek : '[gələn həftə] dddd [saat] LT',\n lastDay : '[dünən] LT',\n lastWeek : '[keçən həftə] dddd [saat] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s sonra',\n past : '%s əvvəl',\n s : 'birneçə saniyyə',\n m : 'bir dəqiqə',\n mm : '%d dəqiqə',\n h : 'bir saat',\n hh : '%d saat',\n d : 'bir gün',\n dd : '%d gün',\n M : 'bir ay',\n MM : '%d ay',\n y : 'bir il',\n yy : '%d il'\n },\n meridiemParse: /gecə|səhər|gündüz|axşam/,\n isPM : function (input) {\n return /^(gündüz|axşam)$/.test(input);\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'gecə';\n } else if (hour < 12) {\n return 'səhər';\n } else if (hour < 17) {\n return 'gündüz';\n } else {\n return 'axşam';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,\n ordinal : function (number) {\n if (number === 0) { // special case for zero\n return number + '-ıncı';\n }\n var a = number % 10,\n b = number % 100 - a,\n c = number >= 100 ? 100 : null;\n return number + (suffixes[a] || suffixes[b] || suffixes[c]);\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn az;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/az.js\n// module id = 526\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Belarusian [be]\n//! author : Dmitry Demidov : https://github.com/demidov91\n//! author: Praleska: http://praleska.pro/\n//! Author : Menelion Elensúle : https://github.com/Oire\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction plural(word, num) {\n var forms = word.split('_');\n return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]);\n}\nfunction relativeTimeWithPlural(number, withoutSuffix, key) {\n var format = {\n 'mm': withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',\n 'hh': withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',\n 'dd': 'дзень_дні_дзён',\n 'MM': 'месяц_месяцы_месяцаў',\n 'yy': 'год_гады_гадоў'\n };\n if (key === 'm') {\n return withoutSuffix ? 'хвіліна' : 'хвіліну';\n }\n else if (key === 'h') {\n return withoutSuffix ? 'гадзіна' : 'гадзіну';\n }\n else {\n return number + ' ' + plural(format[key], +number);\n }\n}\n\nvar be = moment.defineLocale('be', {\n months : {\n format: 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split('_'),\n standalone: 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split('_')\n },\n monthsShort : 'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split('_'),\n weekdays : {\n format: 'нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу'.split('_'),\n standalone: 'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split('_'),\n isFormat: /\\[ ?[Вв] ?(?:мінулую|наступную)? ?\\] ?dddd/\n },\n weekdaysShort : 'нд_пн_ат_ср_чц_пт_сб'.split('_'),\n weekdaysMin : 'нд_пн_ат_ср_чц_пт_сб'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY г.',\n LLL : 'D MMMM YYYY г., HH:mm',\n LLLL : 'dddd, D MMMM YYYY г., HH:mm'\n },\n calendar : {\n sameDay: '[Сёння ў] LT',\n nextDay: '[Заўтра ў] LT',\n lastDay: '[Учора ў] LT',\n nextWeek: function () {\n return '[У] dddd [ў] LT';\n },\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n case 3:\n case 5:\n case 6:\n return '[У мінулую] dddd [ў] LT';\n case 1:\n case 2:\n case 4:\n return '[У мінулы] dddd [ў] LT';\n }\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : 'праз %s',\n past : '%s таму',\n s : 'некалькі секунд',\n m : relativeTimeWithPlural,\n mm : relativeTimeWithPlural,\n h : relativeTimeWithPlural,\n hh : relativeTimeWithPlural,\n d : 'дзень',\n dd : relativeTimeWithPlural,\n M : 'месяц',\n MM : relativeTimeWithPlural,\n y : 'год',\n yy : relativeTimeWithPlural\n },\n meridiemParse: /ночы|раніцы|дня|вечара/,\n isPM : function (input) {\n return /^(дня|вечара)$/.test(input);\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'ночы';\n } else if (hour < 12) {\n return 'раніцы';\n } else if (hour < 17) {\n return 'дня';\n } else {\n return 'вечара';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(і|ы|га)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'M':\n case 'd':\n case 'DDD':\n case 'w':\n case 'W':\n return (number % 10 === 2 || number % 10 === 3) && (number % 100 !== 12 && number % 100 !== 13) ? number + '-і' : number + '-ы';\n case 'D':\n return number + '-га';\n default:\n return number;\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn be;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/be.js\n// module id = 527\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Bulgarian [bg]\n//! author : Krasen Borisov : https://github.com/kraz\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar bg = moment.defineLocale('bg', {\n months : 'януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември'.split('_'),\n monthsShort : 'янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек'.split('_'),\n weekdays : 'неделя_понеделник_вторник_сряда_четвъртък_петък_събота'.split('_'),\n weekdaysShort : 'нед_пон_вто_сря_чет_пет_съб'.split('_'),\n weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'D.MM.YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY H:mm',\n LLLL : 'dddd, D MMMM YYYY H:mm'\n },\n calendar : {\n sameDay : '[Днес в] LT',\n nextDay : '[Утре в] LT',\n nextWeek : 'dddd [в] LT',\n lastDay : '[Вчера в] LT',\n lastWeek : function () {\n switch (this.day()) {\n case 0:\n case 3:\n case 6:\n return '[В изминалата] dddd [в] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[В изминалия] dddd [в] LT';\n }\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'след %s',\n past : 'преди %s',\n s : 'няколко секунди',\n m : 'минута',\n mm : '%d минути',\n h : 'час',\n hh : '%d часа',\n d : 'ден',\n dd : '%d дни',\n M : 'месец',\n MM : '%d месеца',\n y : 'година',\n yy : '%d години'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(ев|ен|ти|ви|ри|ми)/,\n ordinal : function (number) {\n var lastDigit = number % 10,\n last2Digits = number % 100;\n if (number === 0) {\n return number + '-ев';\n } else if (last2Digits === 0) {\n return number + '-ен';\n } else if (last2Digits > 10 && last2Digits < 20) {\n return number + '-ти';\n } else if (lastDigit === 1) {\n return number + '-ви';\n } else if (lastDigit === 2) {\n return number + '-ри';\n } else if (lastDigit === 7 || lastDigit === 8) {\n return number + '-ми';\n } else {\n return number + '-ти';\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn bg;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/bg.js\n// module id = 528\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Bengali [bn]\n//! author : Kaushik Gandhi : https://github.com/kaushikgandhi\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '১',\n '2': '২',\n '3': '৩',\n '4': '৪',\n '5': '৫',\n '6': '৬',\n '7': '৭',\n '8': '৮',\n '9': '৯',\n '0': '০'\n};\nvar numberMap = {\n '১': '1',\n '২': '2',\n '৩': '3',\n '৪': '4',\n '৫': '5',\n '৬': '6',\n '৭': '7',\n '৮': '8',\n '৯': '9',\n '০': '0'\n};\n\nvar bn = moment.defineLocale('bn', {\n months : 'জানুয়ারী_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split('_'),\n monthsShort : 'জানু_ফেব_মার্চ_এপ্র_মে_জুন_জুল_আগ_সেপ্ট_অক্টো_নভে_ডিসে'.split('_'),\n weekdays : 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split('_'),\n weekdaysShort : 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),\n weekdaysMin : 'রবি_সোম_মঙ্গ_বুধ_বৃহঃ_শুক্র_শনি'.split('_'),\n longDateFormat : {\n LT : 'A h:mm সময়',\n LTS : 'A h:mm:ss সময়',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY, A h:mm সময়',\n LLLL : 'dddd, D MMMM YYYY, A h:mm সময়'\n },\n calendar : {\n sameDay : '[আজ] LT',\n nextDay : '[আগামীকাল] LT',\n nextWeek : 'dddd, LT',\n lastDay : '[গতকাল] LT',\n lastWeek : '[গত] dddd, LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s পরে',\n past : '%s আগে',\n s : 'কয়েক সেকেন্ড',\n m : 'এক মিনিট',\n mm : '%d মিনিট',\n h : 'এক ঘন্টা',\n hh : '%d ঘন্টা',\n d : 'এক দিন',\n dd : '%d দিন',\n M : 'এক মাস',\n MM : '%d মাস',\n y : 'এক বছর',\n yy : '%d বছর'\n },\n preparse: function (string) {\n return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n meridiemParse: /রাত|সকাল|দুপুর|বিকাল|রাত/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if ((meridiem === 'রাত' && hour >= 4) ||\n (meridiem === 'দুপুর' && hour < 5) ||\n meridiem === 'বিকাল') {\n return hour + 12;\n } else {\n return hour;\n }\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'রাত';\n } else if (hour < 10) {\n return 'সকাল';\n } else if (hour < 17) {\n return 'দুপুর';\n } else if (hour < 20) {\n return 'বিকাল';\n } else {\n return 'রাত';\n }\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 6 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn bn;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/bn.js\n// module id = 529\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Tibetan [bo]\n//! author : Thupten N. Chakrishar : https://github.com/vajradog\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '༡',\n '2': '༢',\n '3': '༣',\n '4': '༤',\n '5': '༥',\n '6': '༦',\n '7': '༧',\n '8': '༨',\n '9': '༩',\n '0': '༠'\n};\nvar numberMap = {\n '༡': '1',\n '༢': '2',\n '༣': '3',\n '༤': '4',\n '༥': '5',\n '༦': '6',\n '༧': '7',\n '༨': '8',\n '༩': '9',\n '༠': '0'\n};\n\nvar bo = moment.defineLocale('bo', {\n months : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),\n monthsShort : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),\n weekdays : 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split('_'),\n weekdaysShort : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),\n weekdaysMin : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),\n longDateFormat : {\n LT : 'A h:mm',\n LTS : 'A h:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY, A h:mm',\n LLLL : 'dddd, D MMMM YYYY, A h:mm'\n },\n calendar : {\n sameDay : '[དི་རིང] LT',\n nextDay : '[སང་ཉིན] LT',\n nextWeek : '[བདུན་ཕྲག་རྗེས་མ], LT',\n lastDay : '[ཁ་སང] LT',\n lastWeek : '[བདུན་ཕྲག་མཐའ་མ] dddd, LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s ལ་',\n past : '%s སྔན་ལ',\n s : 'ལམ་སང',\n m : 'སྐར་མ་གཅིག',\n mm : '%d སྐར་མ',\n h : 'ཆུ་ཚོད་གཅིག',\n hh : '%d ཆུ་ཚོད',\n d : 'ཉིན་གཅིག',\n dd : '%d ཉིན་',\n M : 'ཟླ་བ་གཅིག',\n MM : '%d ཟླ་བ',\n y : 'ལོ་གཅིག',\n yy : '%d ལོ'\n },\n preparse: function (string) {\n return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n meridiemParse: /མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if ((meridiem === 'མཚན་མོ' && hour >= 4) ||\n (meridiem === 'ཉིན་གུང' && hour < 5) ||\n meridiem === 'དགོང་དག') {\n return hour + 12;\n } else {\n return hour;\n }\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'མཚན་མོ';\n } else if (hour < 10) {\n return 'ཞོགས་ཀས';\n } else if (hour < 17) {\n return 'ཉིན་གུང';\n } else if (hour < 20) {\n return 'དགོང་དག';\n } else {\n return 'མཚན་མོ';\n }\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 6 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn bo;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/bo.js\n// module id = 530\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Breton [br]\n//! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction relativeTimeWithMutation(number, withoutSuffix, key) {\n var format = {\n 'mm': 'munutenn',\n 'MM': 'miz',\n 'dd': 'devezh'\n };\n return number + ' ' + mutation(format[key], number);\n}\nfunction specialMutationForYears(number) {\n switch (lastNumber(number)) {\n case 1:\n case 3:\n case 4:\n case 5:\n case 9:\n return number + ' bloaz';\n default:\n return number + ' vloaz';\n }\n}\nfunction lastNumber(number) {\n if (number > 9) {\n return lastNumber(number % 10);\n }\n return number;\n}\nfunction mutation(text, number) {\n if (number === 2) {\n return softMutation(text);\n }\n return text;\n}\nfunction softMutation(text) {\n var mutationTable = {\n 'm': 'v',\n 'b': 'v',\n 'd': 'z'\n };\n if (mutationTable[text.charAt(0)] === undefined) {\n return text;\n }\n return mutationTable[text.charAt(0)] + text.substring(1);\n}\n\nvar br = moment.defineLocale('br', {\n months : 'Genver_C\\'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu'.split('_'),\n monthsShort : 'Gen_C\\'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker'.split('_'),\n weekdays : 'Sul_Lun_Meurzh_Merc\\'her_Yaou_Gwener_Sadorn'.split('_'),\n weekdaysShort : 'Sul_Lun_Meu_Mer_Yao_Gwe_Sad'.split('_'),\n weekdaysMin : 'Su_Lu_Me_Mer_Ya_Gw_Sa'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'h[e]mm A',\n LTS : 'h[e]mm:ss A',\n L : 'DD/MM/YYYY',\n LL : 'D [a viz] MMMM YYYY',\n LLL : 'D [a viz] MMMM YYYY h[e]mm A',\n LLLL : 'dddd, D [a viz] MMMM YYYY h[e]mm A'\n },\n calendar : {\n sameDay : '[Hiziv da] LT',\n nextDay : '[Warc\\'hoazh da] LT',\n nextWeek : 'dddd [da] LT',\n lastDay : '[Dec\\'h da] LT',\n lastWeek : 'dddd [paset da] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'a-benn %s',\n past : '%s \\'zo',\n s : 'un nebeud segondennoù',\n m : 'ur vunutenn',\n mm : relativeTimeWithMutation,\n h : 'un eur',\n hh : '%d eur',\n d : 'un devezh',\n dd : relativeTimeWithMutation,\n M : 'ur miz',\n MM : relativeTimeWithMutation,\n y : 'ur bloaz',\n yy : specialMutationForYears\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(añ|vet)/,\n ordinal : function (number) {\n var output = (number === 1) ? 'añ' : 'vet';\n return number + output;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn br;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/br.js\n// module id = 531\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Bosnian [bs]\n//! author : Nedim Cholich : https://github.com/frontyard\n//! based on (hr) translation by Bojan Marković\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction translate(number, withoutSuffix, key) {\n var result = number + ' ';\n switch (key) {\n case 'm':\n return withoutSuffix ? 'jedna minuta' : 'jedne minute';\n case 'mm':\n if (number === 1) {\n result += 'minuta';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'minute';\n } else {\n result += 'minuta';\n }\n return result;\n case 'h':\n return withoutSuffix ? 'jedan sat' : 'jednog sata';\n case 'hh':\n if (number === 1) {\n result += 'sat';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'sata';\n } else {\n result += 'sati';\n }\n return result;\n case 'dd':\n if (number === 1) {\n result += 'dan';\n } else {\n result += 'dana';\n }\n return result;\n case 'MM':\n if (number === 1) {\n result += 'mjesec';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'mjeseca';\n } else {\n result += 'mjeseci';\n }\n return result;\n case 'yy':\n if (number === 1) {\n result += 'godina';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'godine';\n } else {\n result += 'godina';\n }\n return result;\n }\n}\n\nvar bs = moment.defineLocale('bs', {\n months : 'januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar'.split('_'),\n monthsShort : 'jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.'.split('_'),\n monthsParseExact: true,\n weekdays : 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'),\n weekdaysShort : 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),\n weekdaysMin : 'ne_po_ut_sr_če_pe_su'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY H:mm',\n LLLL : 'dddd, D. MMMM YYYY H:mm'\n },\n calendar : {\n sameDay : '[danas u] LT',\n nextDay : '[sutra u] LT',\n nextWeek : function () {\n switch (this.day()) {\n case 0:\n return '[u] [nedjelju] [u] LT';\n case 3:\n return '[u] [srijedu] [u] LT';\n case 6:\n return '[u] [subotu] [u] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[u] dddd [u] LT';\n }\n },\n lastDay : '[jučer u] LT',\n lastWeek : function () {\n switch (this.day()) {\n case 0:\n case 3:\n return '[prošlu] dddd [u] LT';\n case 6:\n return '[prošle] [subote] [u] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[prošli] dddd [u] LT';\n }\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'za %s',\n past : 'prije %s',\n s : 'par sekundi',\n m : translate,\n mm : translate,\n h : translate,\n hh : translate,\n d : 'dan',\n dd : translate,\n M : 'mjesec',\n MM : translate,\n y : 'godinu',\n yy : translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn bs;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/bs.js\n// module id = 532\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Catalan [ca]\n//! author : Juan G. Hurtado : https://github.com/juanghurtado\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar ca = moment.defineLocale('ca', {\n months : {\n standalone: 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split('_'),\n format: 'de gener_de febrer_de març_d\\'abril_de maig_de juny_de juliol_d\\'agost_de setembre_d\\'octubre_de novembre_de desembre'.split('_'),\n isFormat: /D[oD]?(\\s)+MMMM/\n },\n monthsShort : 'gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.'.split('_'),\n monthsParseExact : true,\n weekdays : 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split('_'),\n weekdaysShort : 'dg._dl._dt._dc._dj._dv._ds.'.split('_'),\n weekdaysMin : 'Dg_Dl_Dt_Dc_Dj_Dv_Ds'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD/MM/YYYY',\n LL : '[el] D MMMM [de] YYYY',\n ll : 'D MMM YYYY',\n LLL : '[el] D MMMM [de] YYYY [a les] H:mm',\n lll : 'D MMM YYYY, H:mm',\n LLLL : '[el] dddd D MMMM [de] YYYY [a les] H:mm',\n llll : 'ddd D MMM YYYY, H:mm'\n },\n calendar : {\n sameDay : function () {\n return '[avui a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';\n },\n nextDay : function () {\n return '[demà a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';\n },\n nextWeek : function () {\n return 'dddd [a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';\n },\n lastDay : function () {\n return '[ahir a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';\n },\n lastWeek : function () {\n return '[el] dddd [passat a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'd\\'aquí %s',\n past : 'fa %s',\n s : 'uns segons',\n m : 'un minut',\n mm : '%d minuts',\n h : 'una hora',\n hh : '%d hores',\n d : 'un dia',\n dd : '%d dies',\n M : 'un mes',\n MM : '%d mesos',\n y : 'un any',\n yy : '%d anys'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(r|n|t|è|a)/,\n ordinal : function (number, period) {\n var output = (number === 1) ? 'r' :\n (number === 2) ? 'n' :\n (number === 3) ? 'r' :\n (number === 4) ? 't' : 'è';\n if (period === 'w' || period === 'W') {\n output = 'a';\n }\n return number + output;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn ca;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ca.js\n// module id = 533\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Czech [cs]\n//! author : petrbela : https://github.com/petrbela\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar months = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split('_');\nvar monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_');\nfunction plural(n) {\n return (n > 1) && (n < 5) && (~~(n / 10) !== 1);\n}\nfunction translate(number, withoutSuffix, key, isFuture) {\n var result = number + ' ';\n switch (key) {\n case 's': // a few seconds / in a few seconds / a few seconds ago\n return (withoutSuffix || isFuture) ? 'pár sekund' : 'pár sekundami';\n case 'm': // a minute / in a minute / a minute ago\n return withoutSuffix ? 'minuta' : (isFuture ? 'minutu' : 'minutou');\n case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'minuty' : 'minut');\n } else {\n return result + 'minutami';\n }\n break;\n case 'h': // an hour / in an hour / an hour ago\n return withoutSuffix ? 'hodina' : (isFuture ? 'hodinu' : 'hodinou');\n case 'hh': // 9 hours / in 9 hours / 9 hours ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'hodiny' : 'hodin');\n } else {\n return result + 'hodinami';\n }\n break;\n case 'd': // a day / in a day / a day ago\n return (withoutSuffix || isFuture) ? 'den' : 'dnem';\n case 'dd': // 9 days / in 9 days / 9 days ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'dny' : 'dní');\n } else {\n return result + 'dny';\n }\n break;\n case 'M': // a month / in a month / a month ago\n return (withoutSuffix || isFuture) ? 'měsíc' : 'měsícem';\n case 'MM': // 9 months / in 9 months / 9 months ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'měsíce' : 'měsíců');\n } else {\n return result + 'měsíci';\n }\n break;\n case 'y': // a year / in a year / a year ago\n return (withoutSuffix || isFuture) ? 'rok' : 'rokem';\n case 'yy': // 9 years / in 9 years / 9 years ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'roky' : 'let');\n } else {\n return result + 'lety';\n }\n break;\n }\n}\n\nvar cs = moment.defineLocale('cs', {\n months : months,\n monthsShort : monthsShort,\n monthsParse : (function (months, monthsShort) {\n var i, _monthsParse = [];\n for (i = 0; i < 12; i++) {\n // use custom parser to solve problem with July (červenec)\n _monthsParse[i] = new RegExp('^' + months[i] + '$|^' + monthsShort[i] + '$', 'i');\n }\n return _monthsParse;\n }(months, monthsShort)),\n shortMonthsParse : (function (monthsShort) {\n var i, _shortMonthsParse = [];\n for (i = 0; i < 12; i++) {\n _shortMonthsParse[i] = new RegExp('^' + monthsShort[i] + '$', 'i');\n }\n return _shortMonthsParse;\n }(monthsShort)),\n longMonthsParse : (function (months) {\n var i, _longMonthsParse = [];\n for (i = 0; i < 12; i++) {\n _longMonthsParse[i] = new RegExp('^' + months[i] + '$', 'i');\n }\n return _longMonthsParse;\n }(months)),\n weekdays : 'neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota'.split('_'),\n weekdaysShort : 'ne_po_út_st_čt_pá_so'.split('_'),\n weekdaysMin : 'ne_po_út_st_čt_pá_so'.split('_'),\n longDateFormat : {\n LT: 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY H:mm',\n LLLL : 'dddd D. MMMM YYYY H:mm',\n l : 'D. M. YYYY'\n },\n calendar : {\n sameDay: '[dnes v] LT',\n nextDay: '[zítra v] LT',\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[v neděli v] LT';\n case 1:\n case 2:\n return '[v] dddd [v] LT';\n case 3:\n return '[ve středu v] LT';\n case 4:\n return '[ve čtvrtek v] LT';\n case 5:\n return '[v pátek v] LT';\n case 6:\n return '[v sobotu v] LT';\n }\n },\n lastDay: '[včera v] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return '[minulou neděli v] LT';\n case 1:\n case 2:\n return '[minulé] dddd [v] LT';\n case 3:\n return '[minulou středu v] LT';\n case 4:\n case 5:\n return '[minulý] dddd [v] LT';\n case 6:\n return '[minulou sobotu v] LT';\n }\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : 'za %s',\n past : 'před %s',\n s : translate,\n m : translate,\n mm : translate,\n h : translate,\n hh : translate,\n d : translate,\n dd : translate,\n M : translate,\n MM : translate,\n y : translate,\n yy : translate\n },\n dayOfMonthOrdinalParse : /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn cs;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/cs.js\n// module id = 534\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Chuvash [cv]\n//! author : Anatoly Mironov : https://github.com/mirontoli\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar cv = moment.defineLocale('cv', {\n months : 'кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав'.split('_'),\n monthsShort : 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'),\n weekdays : 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split('_'),\n weekdaysShort : 'выр_тун_ытл_юн_кӗҫ_эрн_шӑм'.split('_'),\n weekdaysMin : 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD-MM-YYYY',\n LL : 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]',\n LLL : 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',\n LLLL : 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm'\n },\n calendar : {\n sameDay: '[Паян] LT [сехетре]',\n nextDay: '[Ыран] LT [сехетре]',\n lastDay: '[Ӗнер] LT [сехетре]',\n nextWeek: '[Ҫитес] dddd LT [сехетре]',\n lastWeek: '[Иртнӗ] dddd LT [сехетре]',\n sameElse: 'L'\n },\n relativeTime : {\n future : function (output) {\n var affix = /сехет$/i.exec(output) ? 'рен' : /ҫул$/i.exec(output) ? 'тан' : 'ран';\n return output + affix;\n },\n past : '%s каялла',\n s : 'пӗр-ик ҫеккунт',\n m : 'пӗр минут',\n mm : '%d минут',\n h : 'пӗр сехет',\n hh : '%d сехет',\n d : 'пӗр кун',\n dd : '%d кун',\n M : 'пӗр уйӑх',\n MM : '%d уйӑх',\n y : 'пӗр ҫул',\n yy : '%d ҫул'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-мӗш/,\n ordinal : '%d-мӗш',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn cv;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/cv.js\n// module id = 535\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Welsh [cy]\n//! author : Robert Allen : https://github.com/robgallen\n//! author : https://github.com/ryangreaves\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar cy = moment.defineLocale('cy', {\n months: 'Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr'.split('_'),\n monthsShort: 'Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag'.split('_'),\n weekdays: 'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split('_'),\n weekdaysShort: 'Sul_Llun_Maw_Mer_Iau_Gwe_Sad'.split('_'),\n weekdaysMin: 'Su_Ll_Ma_Me_Ia_Gw_Sa'.split('_'),\n weekdaysParseExact : true,\n // time formats are the same as en-gb\n longDateFormat: {\n LT: 'HH:mm',\n LTS : 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm'\n },\n calendar: {\n sameDay: '[Heddiw am] LT',\n nextDay: '[Yfory am] LT',\n nextWeek: 'dddd [am] LT',\n lastDay: '[Ddoe am] LT',\n lastWeek: 'dddd [diwethaf am] LT',\n sameElse: 'L'\n },\n relativeTime: {\n future: 'mewn %s',\n past: '%s yn ôl',\n s: 'ychydig eiliadau',\n m: 'munud',\n mm: '%d munud',\n h: 'awr',\n hh: '%d awr',\n d: 'diwrnod',\n dd: '%d diwrnod',\n M: 'mis',\n MM: '%d mis',\n y: 'blwyddyn',\n yy: '%d flynedd'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,\n // traditional ordinal numbers above 31 are not commonly used in colloquial Welsh\n ordinal: function (number) {\n var b = number,\n output = '',\n lookup = [\n '', 'af', 'il', 'ydd', 'ydd', 'ed', 'ed', 'ed', 'fed', 'fed', 'fed', // 1af to 10fed\n 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'fed' // 11eg to 20fed\n ];\n if (b > 20) {\n if (b === 40 || b === 50 || b === 60 || b === 80 || b === 100) {\n output = 'fed'; // not 30ain, 70ain or 90ain\n } else {\n output = 'ain';\n }\n } else if (b > 0) {\n output = lookup[b];\n }\n return number + output;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn cy;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/cy.js\n// module id = 536\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Danish [da]\n//! author : Ulrik Nielsen : https://github.com/mrbase\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar da = moment.defineLocale('da', {\n months : 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split('_'),\n monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),\n weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),\n weekdaysShort : 'søn_man_tir_ons_tor_fre_lør'.split('_'),\n weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY HH:mm',\n LLLL : 'dddd [d.] D. MMMM YYYY [kl.] HH:mm'\n },\n calendar : {\n sameDay : '[i dag kl.] LT',\n nextDay : '[i morgen kl.] LT',\n nextWeek : 'på dddd [kl.] LT',\n lastDay : '[i går kl.] LT',\n lastWeek : '[i] dddd[s kl.] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'om %s',\n past : '%s siden',\n s : 'få sekunder',\n m : 'et minut',\n mm : '%d minutter',\n h : 'en time',\n hh : '%d timer',\n d : 'en dag',\n dd : '%d dage',\n M : 'en måned',\n MM : '%d måneder',\n y : 'et år',\n yy : '%d år'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn da;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/da.js\n// module id = 537\n// module chunks = 1","//! moment.js locale configuration\n//! locale : German [de]\n//! author : lluchs : https://github.com/lluchs\n//! author: Menelion Elensúle: https://github.com/Oire\n//! author : Mikolaj Dadela : https://github.com/mik01aj\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction processRelativeTime(number, withoutSuffix, key, isFuture) {\n var format = {\n 'm': ['eine Minute', 'einer Minute'],\n 'h': ['eine Stunde', 'einer Stunde'],\n 'd': ['ein Tag', 'einem Tag'],\n 'dd': [number + ' Tage', number + ' Tagen'],\n 'M': ['ein Monat', 'einem Monat'],\n 'MM': [number + ' Monate', number + ' Monaten'],\n 'y': ['ein Jahr', 'einem Jahr'],\n 'yy': [number + ' Jahre', number + ' Jahren']\n };\n return withoutSuffix ? format[key][0] : format[key][1];\n}\n\nvar de = moment.defineLocale('de', {\n months : 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),\n monthsShort : 'Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'),\n monthsParseExact : true,\n weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'),\n weekdaysShort : 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),\n weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY HH:mm',\n LLLL : 'dddd, D. MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[heute um] LT [Uhr]',\n sameElse: 'L',\n nextDay: '[morgen um] LT [Uhr]',\n nextWeek: 'dddd [um] LT [Uhr]',\n lastDay: '[gestern um] LT [Uhr]',\n lastWeek: '[letzten] dddd [um] LT [Uhr]'\n },\n relativeTime : {\n future : 'in %s',\n past : 'vor %s',\n s : 'ein paar Sekunden',\n m : processRelativeTime,\n mm : '%d Minuten',\n h : processRelativeTime,\n hh : '%d Stunden',\n d : processRelativeTime,\n dd : processRelativeTime,\n M : processRelativeTime,\n MM : processRelativeTime,\n y : processRelativeTime,\n yy : processRelativeTime\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn de;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/de.js\n// module id = 538\n// module chunks = 1","//! moment.js locale configuration\n//! locale : German (Austria) [de-at]\n//! author : lluchs : https://github.com/lluchs\n//! author: Menelion Elensúle: https://github.com/Oire\n//! author : Martin Groller : https://github.com/MadMG\n//! author : Mikolaj Dadela : https://github.com/mik01aj\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction processRelativeTime(number, withoutSuffix, key, isFuture) {\n var format = {\n 'm': ['eine Minute', 'einer Minute'],\n 'h': ['eine Stunde', 'einer Stunde'],\n 'd': ['ein Tag', 'einem Tag'],\n 'dd': [number + ' Tage', number + ' Tagen'],\n 'M': ['ein Monat', 'einem Monat'],\n 'MM': [number + ' Monate', number + ' Monaten'],\n 'y': ['ein Jahr', 'einem Jahr'],\n 'yy': [number + ' Jahre', number + ' Jahren']\n };\n return withoutSuffix ? format[key][0] : format[key][1];\n}\n\nvar deAt = moment.defineLocale('de-at', {\n months : 'Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),\n monthsShort : 'Jän._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'),\n monthsParseExact : true,\n weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'),\n weekdaysShort : 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),\n weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY HH:mm',\n LLLL : 'dddd, D. MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[heute um] LT [Uhr]',\n sameElse: 'L',\n nextDay: '[morgen um] LT [Uhr]',\n nextWeek: 'dddd [um] LT [Uhr]',\n lastDay: '[gestern um] LT [Uhr]',\n lastWeek: '[letzten] dddd [um] LT [Uhr]'\n },\n relativeTime : {\n future : 'in %s',\n past : 'vor %s',\n s : 'ein paar Sekunden',\n m : processRelativeTime,\n mm : '%d Minuten',\n h : processRelativeTime,\n hh : '%d Stunden',\n d : processRelativeTime,\n dd : processRelativeTime,\n M : processRelativeTime,\n MM : processRelativeTime,\n y : processRelativeTime,\n yy : processRelativeTime\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn deAt;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/de-at.js\n// module id = 539\n// module chunks = 1","//! moment.js locale configuration\n//! locale : German (Switzerland) [de-ch]\n//! author : sschueller : https://github.com/sschueller\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n// based on: https://www.bk.admin.ch/dokumentation/sprachen/04915/05016/index.html?lang=de#\n\nfunction processRelativeTime(number, withoutSuffix, key, isFuture) {\n var format = {\n 'm': ['eine Minute', 'einer Minute'],\n 'h': ['eine Stunde', 'einer Stunde'],\n 'd': ['ein Tag', 'einem Tag'],\n 'dd': [number + ' Tage', number + ' Tagen'],\n 'M': ['ein Monat', 'einem Monat'],\n 'MM': [number + ' Monate', number + ' Monaten'],\n 'y': ['ein Jahr', 'einem Jahr'],\n 'yy': [number + ' Jahre', number + ' Jahren']\n };\n return withoutSuffix ? format[key][0] : format[key][1];\n}\n\nvar deCh = moment.defineLocale('de-ch', {\n months : 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),\n monthsShort : 'Jan._Febr._März_April_Mai_Juni_Juli_Aug._Sept._Okt._Nov._Dez.'.split('_'),\n monthsParseExact : true,\n weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'),\n weekdaysShort : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),\n weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT: 'HH.mm',\n LTS: 'HH.mm.ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY HH.mm',\n LLLL : 'dddd, D. MMMM YYYY HH.mm'\n },\n calendar : {\n sameDay: '[heute um] LT [Uhr]',\n sameElse: 'L',\n nextDay: '[morgen um] LT [Uhr]',\n nextWeek: 'dddd [um] LT [Uhr]',\n lastDay: '[gestern um] LT [Uhr]',\n lastWeek: '[letzten] dddd [um] LT [Uhr]'\n },\n relativeTime : {\n future : 'in %s',\n past : 'vor %s',\n s : 'ein paar Sekunden',\n m : processRelativeTime,\n mm : '%d Minuten',\n h : processRelativeTime,\n hh : '%d Stunden',\n d : processRelativeTime,\n dd : processRelativeTime,\n M : processRelativeTime,\n MM : processRelativeTime,\n y : processRelativeTime,\n yy : processRelativeTime\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn deCh;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/de-ch.js\n// module id = 540\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Maldivian [dv]\n//! author : Jawish Hameed : https://github.com/jawish\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar months = [\n 'ޖެނުއަރީ',\n 'ފެބްރުއަރީ',\n 'މާރިޗު',\n 'އޭޕްރީލު',\n 'މޭ',\n 'ޖޫން',\n 'ޖުލައި',\n 'އޯގަސްޓު',\n 'ސެޕްޓެމްބަރު',\n 'އޮކްޓޯބަރު',\n 'ނޮވެމްބަރު',\n 'ޑިސެމްބަރު'\n];\nvar weekdays = [\n 'އާދިއްތަ',\n 'ހޯމަ',\n 'އަންގާރަ',\n 'ބުދަ',\n 'ބުރާސްފަތި',\n 'ހުކުރު',\n 'ހޮނިހިރު'\n];\n\nvar dv = moment.defineLocale('dv', {\n months : months,\n monthsShort : months,\n weekdays : weekdays,\n weekdaysShort : weekdays,\n weekdaysMin : 'އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި'.split('_'),\n longDateFormat : {\n\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'D/M/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n meridiemParse: /މކ|މފ/,\n isPM : function (input) {\n return 'މފ' === input;\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 12) {\n return 'މކ';\n } else {\n return 'މފ';\n }\n },\n calendar : {\n sameDay : '[މިއަދު] LT',\n nextDay : '[މާދަމާ] LT',\n nextWeek : 'dddd LT',\n lastDay : '[އިއްޔެ] LT',\n lastWeek : '[ފާއިތުވި] dddd LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'ތެރޭގައި %s',\n past : 'ކުރިން %s',\n s : 'ސިކުންތުކޮޅެއް',\n m : 'މިނިޓެއް',\n mm : 'މިނިޓު %d',\n h : 'ގަޑިއިރެއް',\n hh : 'ގަޑިއިރު %d',\n d : 'ދުވަހެއް',\n dd : 'ދުވަސް %d',\n M : 'މަހެއް',\n MM : 'މަސް %d',\n y : 'އަހަރެއް',\n yy : 'އަހަރު %d'\n },\n preparse: function (string) {\n return string.replace(/،/g, ',');\n },\n postformat: function (string) {\n return string.replace(/,/g, '،');\n },\n week : {\n dow : 7, // Sunday is the first day of the week.\n doy : 12 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn dv;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/dv.js\n// module id = 541\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Greek [el]\n//! author : Aggelos Karalias : https://github.com/mehiel\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\nfunction isFunction(input) {\n return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';\n}\n\n\nvar el = moment.defineLocale('el', {\n monthsNominativeEl : 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split('_'),\n monthsGenitiveEl : 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split('_'),\n months : function (momentToFormat, format) {\n if (!momentToFormat) {\n return this._monthsNominativeEl;\n } else if (/D/.test(format.substring(0, format.indexOf('MMMM')))) { // if there is a day number before 'MMMM'\n return this._monthsGenitiveEl[momentToFormat.month()];\n } else {\n return this._monthsNominativeEl[momentToFormat.month()];\n }\n },\n monthsShort : 'Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ'.split('_'),\n weekdays : 'Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο'.split('_'),\n weekdaysShort : 'Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ'.split('_'),\n weekdaysMin : 'Κυ_Δε_Τρ_Τε_Πε_Πα_Σα'.split('_'),\n meridiem : function (hours, minutes, isLower) {\n if (hours > 11) {\n return isLower ? 'μμ' : 'ΜΜ';\n } else {\n return isLower ? 'πμ' : 'ΠΜ';\n }\n },\n isPM : function (input) {\n return ((input + '').toLowerCase()[0] === 'μ');\n },\n meridiemParse : /[ΠΜ]\\.?Μ?\\.?/i,\n longDateFormat : {\n LT : 'h:mm A',\n LTS : 'h:mm:ss A',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY h:mm A',\n LLLL : 'dddd, D MMMM YYYY h:mm A'\n },\n calendarEl : {\n sameDay : '[Σήμερα {}] LT',\n nextDay : '[Αύριο {}] LT',\n nextWeek : 'dddd [{}] LT',\n lastDay : '[Χθες {}] LT',\n lastWeek : function () {\n switch (this.day()) {\n case 6:\n return '[το προηγούμενο] dddd [{}] LT';\n default:\n return '[την προηγούμενη] dddd [{}] LT';\n }\n },\n sameElse : 'L'\n },\n calendar : function (key, mom) {\n var output = this._calendarEl[key],\n hours = mom && mom.hours();\n if (isFunction(output)) {\n output = output.apply(mom);\n }\n return output.replace('{}', (hours % 12 === 1 ? 'στη' : 'στις'));\n },\n relativeTime : {\n future : 'σε %s',\n past : '%s πριν',\n s : 'λίγα δευτερόλεπτα',\n m : 'ένα λεπτό',\n mm : '%d λεπτά',\n h : 'μία ώρα',\n hh : '%d ώρες',\n d : 'μία μέρα',\n dd : '%d μέρες',\n M : 'ένας μήνας',\n MM : '%d μήνες',\n y : 'ένας χρόνος',\n yy : '%d χρόνια'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}η/,\n ordinal: '%dη',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4st is the first week of the year.\n }\n});\n\nreturn el;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/el.js\n// module id = 542\n// module chunks = 1","//! moment.js locale configuration\n//! locale : English (Australia) [en-au]\n//! author : Jared Morse : https://github.com/jarcoal\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar enAu = moment.defineLocale('en-au', {\n months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),\n monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),\n weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),\n weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),\n weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),\n longDateFormat : {\n LT : 'h:mm A',\n LTS : 'h:mm:ss A',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY h:mm A',\n LLLL : 'dddd, D MMMM YYYY h:mm A'\n },\n calendar : {\n sameDay : '[Today at] LT',\n nextDay : '[Tomorrow at] LT',\n nextWeek : 'dddd [at] LT',\n lastDay : '[Yesterday at] LT',\n lastWeek : '[Last] dddd [at] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'in %s',\n past : '%s ago',\n s : 'a few seconds',\n m : 'a minute',\n mm : '%d minutes',\n h : 'an hour',\n hh : '%d hours',\n d : 'a day',\n dd : '%d days',\n M : 'a month',\n MM : '%d months',\n y : 'a year',\n yy : '%d years'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal : function (number) {\n var b = number % 10,\n output = (~~(number % 100 / 10) === 1) ? 'th' :\n (b === 1) ? 'st' :\n (b === 2) ? 'nd' :\n (b === 3) ? 'rd' : 'th';\n return number + output;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn enAu;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/en-au.js\n// module id = 543\n// module chunks = 1","//! moment.js locale configuration\n//! locale : English (Canada) [en-ca]\n//! author : Jonathan Abourbih : https://github.com/jonbca\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar enCa = moment.defineLocale('en-ca', {\n months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),\n monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),\n weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),\n weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),\n weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),\n longDateFormat : {\n LT : 'h:mm A',\n LTS : 'h:mm:ss A',\n L : 'YYYY-MM-DD',\n LL : 'MMMM D, YYYY',\n LLL : 'MMMM D, YYYY h:mm A',\n LLLL : 'dddd, MMMM D, YYYY h:mm A'\n },\n calendar : {\n sameDay : '[Today at] LT',\n nextDay : '[Tomorrow at] LT',\n nextWeek : 'dddd [at] LT',\n lastDay : '[Yesterday at] LT',\n lastWeek : '[Last] dddd [at] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'in %s',\n past : '%s ago',\n s : 'a few seconds',\n m : 'a minute',\n mm : '%d minutes',\n h : 'an hour',\n hh : '%d hours',\n d : 'a day',\n dd : '%d days',\n M : 'a month',\n MM : '%d months',\n y : 'a year',\n yy : '%d years'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal : function (number) {\n var b = number % 10,\n output = (~~(number % 100 / 10) === 1) ? 'th' :\n (b === 1) ? 'st' :\n (b === 2) ? 'nd' :\n (b === 3) ? 'rd' : 'th';\n return number + output;\n }\n});\n\nreturn enCa;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/en-ca.js\n// module id = 544\n// module chunks = 1","//! moment.js locale configuration\n//! locale : English (United Kingdom) [en-gb]\n//! author : Chris Gedrim : https://github.com/chrisgedrim\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar enGb = moment.defineLocale('en-gb', {\n months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),\n monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),\n weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),\n weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),\n weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[Today at] LT',\n nextDay : '[Tomorrow at] LT',\n nextWeek : 'dddd [at] LT',\n lastDay : '[Yesterday at] LT',\n lastWeek : '[Last] dddd [at] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'in %s',\n past : '%s ago',\n s : 'a few seconds',\n m : 'a minute',\n mm : '%d minutes',\n h : 'an hour',\n hh : '%d hours',\n d : 'a day',\n dd : '%d days',\n M : 'a month',\n MM : '%d months',\n y : 'a year',\n yy : '%d years'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal : function (number) {\n var b = number % 10,\n output = (~~(number % 100 / 10) === 1) ? 'th' :\n (b === 1) ? 'st' :\n (b === 2) ? 'nd' :\n (b === 3) ? 'rd' : 'th';\n return number + output;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn enGb;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/en-gb.js\n// module id = 545\n// module chunks = 1","//! moment.js locale configuration\n//! locale : English (Ireland) [en-ie]\n//! author : Chris Cartlidge : https://github.com/chriscartlidge\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar enIe = moment.defineLocale('en-ie', {\n months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),\n monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),\n weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),\n weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),\n weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD-MM-YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[Today at] LT',\n nextDay : '[Tomorrow at] LT',\n nextWeek : 'dddd [at] LT',\n lastDay : '[Yesterday at] LT',\n lastWeek : '[Last] dddd [at] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'in %s',\n past : '%s ago',\n s : 'a few seconds',\n m : 'a minute',\n mm : '%d minutes',\n h : 'an hour',\n hh : '%d hours',\n d : 'a day',\n dd : '%d days',\n M : 'a month',\n MM : '%d months',\n y : 'a year',\n yy : '%d years'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal : function (number) {\n var b = number % 10,\n output = (~~(number % 100 / 10) === 1) ? 'th' :\n (b === 1) ? 'st' :\n (b === 2) ? 'nd' :\n (b === 3) ? 'rd' : 'th';\n return number + output;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn enIe;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/en-ie.js\n// module id = 546\n// module chunks = 1","//! moment.js locale configuration\n//! locale : English (New Zealand) [en-nz]\n//! author : Luke McGregor : https://github.com/lukemcgregor\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar enNz = moment.defineLocale('en-nz', {\n months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),\n monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),\n weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),\n weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),\n weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),\n longDateFormat : {\n LT : 'h:mm A',\n LTS : 'h:mm:ss A',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY h:mm A',\n LLLL : 'dddd, D MMMM YYYY h:mm A'\n },\n calendar : {\n sameDay : '[Today at] LT',\n nextDay : '[Tomorrow at] LT',\n nextWeek : 'dddd [at] LT',\n lastDay : '[Yesterday at] LT',\n lastWeek : '[Last] dddd [at] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'in %s',\n past : '%s ago',\n s : 'a few seconds',\n m : 'a minute',\n mm : '%d minutes',\n h : 'an hour',\n hh : '%d hours',\n d : 'a day',\n dd : '%d days',\n M : 'a month',\n MM : '%d months',\n y : 'a year',\n yy : '%d years'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal : function (number) {\n var b = number % 10,\n output = (~~(number % 100 / 10) === 1) ? 'th' :\n (b === 1) ? 'st' :\n (b === 2) ? 'nd' :\n (b === 3) ? 'rd' : 'th';\n return number + output;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn enNz;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/en-nz.js\n// module id = 547\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Esperanto [eo]\n//! author : Colin Dean : https://github.com/colindean\n//! author : Mia Nordentoft Imperatori : https://github.com/miestasmia\n//! comment : miestasmia corrected the translation by colindean\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar eo = moment.defineLocale('eo', {\n months : 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split('_'),\n monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aŭg_sep_okt_nov_dec'.split('_'),\n weekdays : 'dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato'.split('_'),\n weekdaysShort : 'dim_lun_mard_merk_ĵaŭ_ven_sab'.split('_'),\n weekdaysMin : 'di_lu_ma_me_ĵa_ve_sa'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'YYYY-MM-DD',\n LL : 'D[-a de] MMMM, YYYY',\n LLL : 'D[-a de] MMMM, YYYY HH:mm',\n LLLL : 'dddd, [la] D[-a de] MMMM, YYYY HH:mm'\n },\n meridiemParse: /[ap]\\.t\\.m/i,\n isPM: function (input) {\n return input.charAt(0).toLowerCase() === 'p';\n },\n meridiem : function (hours, minutes, isLower) {\n if (hours > 11) {\n return isLower ? 'p.t.m.' : 'P.T.M.';\n } else {\n return isLower ? 'a.t.m.' : 'A.T.M.';\n }\n },\n calendar : {\n sameDay : '[Hodiaŭ je] LT',\n nextDay : '[Morgaŭ je] LT',\n nextWeek : 'dddd [je] LT',\n lastDay : '[Hieraŭ je] LT',\n lastWeek : '[pasinta] dddd [je] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'post %s',\n past : 'antaŭ %s',\n s : 'sekundoj',\n m : 'minuto',\n mm : '%d minutoj',\n h : 'horo',\n hh : '%d horoj',\n d : 'tago',//ne 'diurno', ĉar estas uzita por proksimumo\n dd : '%d tagoj',\n M : 'monato',\n MM : '%d monatoj',\n y : 'jaro',\n yy : '%d jaroj'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}a/,\n ordinal : '%da',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn eo;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/eo.js\n// module id = 548\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Spanish [es]\n//! author : Julio Napurí : https://github.com/julionc\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_');\nvar monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');\n\nvar es = moment.defineLocale('es', {\n months : 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),\n monthsShort : function (m, format) {\n if (!m) {\n return monthsShortDot;\n } else if (/-MMM-/.test(format)) {\n return monthsShort[m.month()];\n } else {\n return monthsShortDot[m.month()];\n }\n },\n monthsParseExact : true,\n weekdays : 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),\n weekdaysShort : 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),\n weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D [de] MMMM [de] YYYY',\n LLL : 'D [de] MMMM [de] YYYY H:mm',\n LLLL : 'dddd, D [de] MMMM [de] YYYY H:mm'\n },\n calendar : {\n sameDay : function () {\n return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n nextDay : function () {\n return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n nextWeek : function () {\n return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n lastDay : function () {\n return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n lastWeek : function () {\n return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'en %s',\n past : 'hace %s',\n s : 'unos segundos',\n m : 'un minuto',\n mm : '%d minutos',\n h : 'una hora',\n hh : '%d horas',\n d : 'un día',\n dd : '%d días',\n M : 'un mes',\n MM : '%d meses',\n y : 'un año',\n yy : '%d años'\n },\n dayOfMonthOrdinalParse : /\\d{1,2}º/,\n ordinal : '%dº',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn es;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/es.js\n// module id = 549\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Spanish (Dominican Republic) [es-do]\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_');\nvar monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');\n\nvar esDo = moment.defineLocale('es-do', {\n months : 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),\n monthsShort : function (m, format) {\n if (!m) {\n return monthsShortDot;\n } else if (/-MMM-/.test(format)) {\n return monthsShort[m.month()];\n } else {\n return monthsShortDot[m.month()];\n }\n },\n monthsParseExact : true,\n weekdays : 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),\n weekdaysShort : 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),\n weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'h:mm A',\n LTS : 'h:mm:ss A',\n L : 'DD/MM/YYYY',\n LL : 'D [de] MMMM [de] YYYY',\n LLL : 'D [de] MMMM [de] YYYY h:mm A',\n LLLL : 'dddd, D [de] MMMM [de] YYYY h:mm A'\n },\n calendar : {\n sameDay : function () {\n return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n nextDay : function () {\n return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n nextWeek : function () {\n return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n lastDay : function () {\n return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n lastWeek : function () {\n return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'en %s',\n past : 'hace %s',\n s : 'unos segundos',\n m : 'un minuto',\n mm : '%d minutos',\n h : 'una hora',\n hh : '%d horas',\n d : 'un día',\n dd : '%d días',\n M : 'un mes',\n MM : '%d meses',\n y : 'un año',\n yy : '%d años'\n },\n dayOfMonthOrdinalParse : /\\d{1,2}º/,\n ordinal : '%dº',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn esDo;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/es-do.js\n// module id = 550\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Estonian [et]\n//! author : Henry Kehlmann : https://github.com/madhenry\n//! improvements : Illimar Tambek : https://github.com/ragulka\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction processRelativeTime(number, withoutSuffix, key, isFuture) {\n var format = {\n 's' : ['mõne sekundi', 'mõni sekund', 'paar sekundit'],\n 'm' : ['ühe minuti', 'üks minut'],\n 'mm': [number + ' minuti', number + ' minutit'],\n 'h' : ['ühe tunni', 'tund aega', 'üks tund'],\n 'hh': [number + ' tunni', number + ' tundi'],\n 'd' : ['ühe päeva', 'üks päev'],\n 'M' : ['kuu aja', 'kuu aega', 'üks kuu'],\n 'MM': [number + ' kuu', number + ' kuud'],\n 'y' : ['ühe aasta', 'aasta', 'üks aasta'],\n 'yy': [number + ' aasta', number + ' aastat']\n };\n if (withoutSuffix) {\n return format[key][2] ? format[key][2] : format[key][1];\n }\n return isFuture ? format[key][0] : format[key][1];\n}\n\nvar et = moment.defineLocale('et', {\n months : 'jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember'.split('_'),\n monthsShort : 'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets'.split('_'),\n weekdays : 'pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev'.split('_'),\n weekdaysShort : 'P_E_T_K_N_R_L'.split('_'),\n weekdaysMin : 'P_E_T_K_N_R_L'.split('_'),\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY H:mm',\n LLLL : 'dddd, D. MMMM YYYY H:mm'\n },\n calendar : {\n sameDay : '[Täna,] LT',\n nextDay : '[Homme,] LT',\n nextWeek : '[Järgmine] dddd LT',\n lastDay : '[Eile,] LT',\n lastWeek : '[Eelmine] dddd LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s pärast',\n past : '%s tagasi',\n s : processRelativeTime,\n m : processRelativeTime,\n mm : processRelativeTime,\n h : processRelativeTime,\n hh : processRelativeTime,\n d : processRelativeTime,\n dd : '%d päeva',\n M : processRelativeTime,\n MM : processRelativeTime,\n y : processRelativeTime,\n yy : processRelativeTime\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn et;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/et.js\n// module id = 551\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Basque [eu]\n//! author : Eneko Illarramendi : https://github.com/eillarra\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar eu = moment.defineLocale('eu', {\n months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),\n monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),\n monthsParseExact : true,\n weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'),\n weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'),\n weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'YYYY-MM-DD',\n LL : 'YYYY[ko] MMMM[ren] D[a]',\n LLL : 'YYYY[ko] MMMM[ren] D[a] HH:mm',\n LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',\n l : 'YYYY-M-D',\n ll : 'YYYY[ko] MMM D[a]',\n lll : 'YYYY[ko] MMM D[a] HH:mm',\n llll : 'ddd, YYYY[ko] MMM D[a] HH:mm'\n },\n calendar : {\n sameDay : '[gaur] LT[etan]',\n nextDay : '[bihar] LT[etan]',\n nextWeek : 'dddd LT[etan]',\n lastDay : '[atzo] LT[etan]',\n lastWeek : '[aurreko] dddd LT[etan]',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s barru',\n past : 'duela %s',\n s : 'segundo batzuk',\n m : 'minutu bat',\n mm : '%d minutu',\n h : 'ordu bat',\n hh : '%d ordu',\n d : 'egun bat',\n dd : '%d egun',\n M : 'hilabete bat',\n MM : '%d hilabete',\n y : 'urte bat',\n yy : '%d urte'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn eu;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/eu.js\n// module id = 552\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Persian [fa]\n//! author : Ebrahim Byagowi : https://github.com/ebraminio\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '۱',\n '2': '۲',\n '3': '۳',\n '4': '۴',\n '5': '۵',\n '6': '۶',\n '7': '۷',\n '8': '۸',\n '9': '۹',\n '0': '۰'\n};\nvar numberMap = {\n '۱': '1',\n '۲': '2',\n '۳': '3',\n '۴': '4',\n '۵': '5',\n '۶': '6',\n '۷': '7',\n '۸': '8',\n '۹': '9',\n '۰': '0'\n};\n\nvar fa = moment.defineLocale('fa', {\n months : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),\n monthsShort : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),\n weekdays : 'یک\\u200cشنبه_دوشنبه_سه\\u200cشنبه_چهارشنبه_پنج\\u200cشنبه_جمعه_شنبه'.split('_'),\n weekdaysShort : 'یک\\u200cشنبه_دوشنبه_سه\\u200cشنبه_چهارشنبه_پنج\\u200cشنبه_جمعه_شنبه'.split('_'),\n weekdaysMin : 'ی_د_س_چ_پ_ج_ش'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n meridiemParse: /قبل از ظهر|بعد از ظهر/,\n isPM: function (input) {\n return /بعد از ظهر/.test(input);\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 12) {\n return 'قبل از ظهر';\n } else {\n return 'بعد از ظهر';\n }\n },\n calendar : {\n sameDay : '[امروز ساعت] LT',\n nextDay : '[فردا ساعت] LT',\n nextWeek : 'dddd [ساعت] LT',\n lastDay : '[دیروز ساعت] LT',\n lastWeek : 'dddd [پیش] [ساعت] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'در %s',\n past : '%s پیش',\n s : 'چند ثانیه',\n m : 'یک دقیقه',\n mm : '%d دقیقه',\n h : 'یک ساعت',\n hh : '%d ساعت',\n d : 'یک روز',\n dd : '%d روز',\n M : 'یک ماه',\n MM : '%d ماه',\n y : 'یک سال',\n yy : '%d سال'\n },\n preparse: function (string) {\n return string.replace(/[۰-۹]/g, function (match) {\n return numberMap[match];\n }).replace(/،/g, ',');\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n }).replace(/,/g, '،');\n },\n dayOfMonthOrdinalParse: /\\d{1,2}م/,\n ordinal : '%dم',\n week : {\n dow : 6, // Saturday is the first day of the week.\n doy : 12 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn fa;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/fa.js\n// module id = 553\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Finnish [fi]\n//! author : Tarmo Aidantausta : https://github.com/bleadof\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(' ');\nvar numbersFuture = [\n 'nolla', 'yhden', 'kahden', 'kolmen', 'neljän', 'viiden', 'kuuden',\n numbersPast[7], numbersPast[8], numbersPast[9]\n ];\nfunction translate(number, withoutSuffix, key, isFuture) {\n var result = '';\n switch (key) {\n case 's':\n return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';\n case 'm':\n return isFuture ? 'minuutin' : 'minuutti';\n case 'mm':\n result = isFuture ? 'minuutin' : 'minuuttia';\n break;\n case 'h':\n return isFuture ? 'tunnin' : 'tunti';\n case 'hh':\n result = isFuture ? 'tunnin' : 'tuntia';\n break;\n case 'd':\n return isFuture ? 'päivän' : 'päivä';\n case 'dd':\n result = isFuture ? 'päivän' : 'päivää';\n break;\n case 'M':\n return isFuture ? 'kuukauden' : 'kuukausi';\n case 'MM':\n result = isFuture ? 'kuukauden' : 'kuukautta';\n break;\n case 'y':\n return isFuture ? 'vuoden' : 'vuosi';\n case 'yy':\n result = isFuture ? 'vuoden' : 'vuotta';\n break;\n }\n result = verbalNumber(number, isFuture) + ' ' + result;\n return result;\n}\nfunction verbalNumber(number, isFuture) {\n return number < 10 ? (isFuture ? numbersFuture[number] : numbersPast[number]) : number;\n}\n\nvar fi = moment.defineLocale('fi', {\n months : 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu'.split('_'),\n monthsShort : 'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split('_'),\n weekdays : 'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split('_'),\n weekdaysShort : 'su_ma_ti_ke_to_pe_la'.split('_'),\n weekdaysMin : 'su_ma_ti_ke_to_pe_la'.split('_'),\n longDateFormat : {\n LT : 'HH.mm',\n LTS : 'HH.mm.ss',\n L : 'DD.MM.YYYY',\n LL : 'Do MMMM[ta] YYYY',\n LLL : 'Do MMMM[ta] YYYY, [klo] HH.mm',\n LLLL : 'dddd, Do MMMM[ta] YYYY, [klo] HH.mm',\n l : 'D.M.YYYY',\n ll : 'Do MMM YYYY',\n lll : 'Do MMM YYYY, [klo] HH.mm',\n llll : 'ddd, Do MMM YYYY, [klo] HH.mm'\n },\n calendar : {\n sameDay : '[tänään] [klo] LT',\n nextDay : '[huomenna] [klo] LT',\n nextWeek : 'dddd [klo] LT',\n lastDay : '[eilen] [klo] LT',\n lastWeek : '[viime] dddd[na] [klo] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s päästä',\n past : '%s sitten',\n s : translate,\n m : translate,\n mm : translate,\n h : translate,\n hh : translate,\n d : translate,\n dd : translate,\n M : translate,\n MM : translate,\n y : translate,\n yy : translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn fi;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/fi.js\n// module id = 554\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Faroese [fo]\n//! author : Ragnar Johannesen : https://github.com/ragnar123\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar fo = moment.defineLocale('fo', {\n months : 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'),\n monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),\n weekdays : 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'),\n weekdaysShort : 'sun_mán_týs_mik_hós_frí_ley'.split('_'),\n weekdaysMin : 'su_má_tý_mi_hó_fr_le'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D. MMMM, YYYY HH:mm'\n },\n calendar : {\n sameDay : '[Í dag kl.] LT',\n nextDay : '[Í morgin kl.] LT',\n nextWeek : 'dddd [kl.] LT',\n lastDay : '[Í gjár kl.] LT',\n lastWeek : '[síðstu] dddd [kl] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'um %s',\n past : '%s síðani',\n s : 'fá sekund',\n m : 'ein minutt',\n mm : '%d minuttir',\n h : 'ein tími',\n hh : '%d tímar',\n d : 'ein dagur',\n dd : '%d dagar',\n M : 'ein mánaði',\n MM : '%d mánaðir',\n y : 'eitt ár',\n yy : '%d ár'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn fo;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/fo.js\n// module id = 555\n// module chunks = 1","//! moment.js locale configuration\n//! locale : French [fr]\n//! author : John Fischer : https://github.com/jfroffice\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar fr = moment.defineLocale('fr', {\n months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),\n monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),\n monthsParseExact : true,\n weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),\n weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),\n weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[Aujourd’hui à] LT',\n nextDay : '[Demain à] LT',\n nextWeek : 'dddd [à] LT',\n lastDay : '[Hier à] LT',\n lastWeek : 'dddd [dernier à] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'dans %s',\n past : 'il y a %s',\n s : 'quelques secondes',\n m : 'une minute',\n mm : '%d minutes',\n h : 'une heure',\n hh : '%d heures',\n d : 'un jour',\n dd : '%d jours',\n M : 'un mois',\n MM : '%d mois',\n y : 'un an',\n yy : '%d ans'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(er|)/,\n ordinal : function (number, period) {\n switch (period) {\n // TODO: Return 'e' when day of month > 1. Move this case inside\n // block for masculine words below.\n // See https://github.com/moment/moment/issues/3375\n case 'D':\n return number + (number === 1 ? 'er' : '');\n\n // Words with masculine grammatical gender: mois, trimestre, jour\n default:\n case 'M':\n case 'Q':\n case 'DDD':\n case 'd':\n return number + (number === 1 ? 'er' : 'e');\n\n // Words with feminine grammatical gender: semaine\n case 'w':\n case 'W':\n return number + (number === 1 ? 're' : 'e');\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn fr;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/fr.js\n// module id = 556\n// module chunks = 1","//! moment.js locale configuration\n//! locale : French (Canada) [fr-ca]\n//! author : Jonathan Abourbih : https://github.com/jonbca\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar frCa = moment.defineLocale('fr-ca', {\n months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),\n monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),\n monthsParseExact : true,\n weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),\n weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),\n weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'YYYY-MM-DD',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[Aujourd’hui à] LT',\n nextDay : '[Demain à] LT',\n nextWeek : 'dddd [à] LT',\n lastDay : '[Hier à] LT',\n lastWeek : 'dddd [dernier à] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'dans %s',\n past : 'il y a %s',\n s : 'quelques secondes',\n m : 'une minute',\n mm : '%d minutes',\n h : 'une heure',\n hh : '%d heures',\n d : 'un jour',\n dd : '%d jours',\n M : 'un mois',\n MM : '%d mois',\n y : 'un an',\n yy : '%d ans'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(er|e)/,\n ordinal : function (number, period) {\n switch (period) {\n // Words with masculine grammatical gender: mois, trimestre, jour\n default:\n case 'M':\n case 'Q':\n case 'D':\n case 'DDD':\n case 'd':\n return number + (number === 1 ? 'er' : 'e');\n\n // Words with feminine grammatical gender: semaine\n case 'w':\n case 'W':\n return number + (number === 1 ? 're' : 'e');\n }\n }\n});\n\nreturn frCa;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/fr-ca.js\n// module id = 557\n// module chunks = 1","//! moment.js locale configuration\n//! locale : French (Switzerland) [fr-ch]\n//! author : Gaspard Bucher : https://github.com/gaspard\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar frCh = moment.defineLocale('fr-ch', {\n months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),\n monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),\n monthsParseExact : true,\n weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),\n weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),\n weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[Aujourd’hui à] LT',\n nextDay : '[Demain à] LT',\n nextWeek : 'dddd [à] LT',\n lastDay : '[Hier à] LT',\n lastWeek : 'dddd [dernier à] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'dans %s',\n past : 'il y a %s',\n s : 'quelques secondes',\n m : 'une minute',\n mm : '%d minutes',\n h : 'une heure',\n hh : '%d heures',\n d : 'un jour',\n dd : '%d jours',\n M : 'un mois',\n MM : '%d mois',\n y : 'un an',\n yy : '%d ans'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(er|e)/,\n ordinal : function (number, period) {\n switch (period) {\n // Words with masculine grammatical gender: mois, trimestre, jour\n default:\n case 'M':\n case 'Q':\n case 'D':\n case 'DDD':\n case 'd':\n return number + (number === 1 ? 'er' : 'e');\n\n // Words with feminine grammatical gender: semaine\n case 'w':\n case 'W':\n return number + (number === 1 ? 're' : 'e');\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn frCh;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/fr-ch.js\n// module id = 558\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Frisian [fy]\n//! author : Robin van der Vliet : https://github.com/robin0van0der0v\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar monthsShortWithDots = 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split('_');\nvar monthsShortWithoutDots = 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_');\n\nvar fy = moment.defineLocale('fy', {\n months : 'jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber'.split('_'),\n monthsShort : function (m, format) {\n if (!m) {\n return monthsShortWithDots;\n } else if (/-MMM-/.test(format)) {\n return monthsShortWithoutDots[m.month()];\n } else {\n return monthsShortWithDots[m.month()];\n }\n },\n monthsParseExact : true,\n weekdays : 'snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon'.split('_'),\n weekdaysShort : 'si._mo._ti._wo._to._fr._so.'.split('_'),\n weekdaysMin : 'Si_Mo_Ti_Wo_To_Fr_So'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD-MM-YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[hjoed om] LT',\n nextDay: '[moarn om] LT',\n nextWeek: 'dddd [om] LT',\n lastDay: '[juster om] LT',\n lastWeek: '[ôfrûne] dddd [om] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'oer %s',\n past : '%s lyn',\n s : 'in pear sekonden',\n m : 'ien minút',\n mm : '%d minuten',\n h : 'ien oere',\n hh : '%d oeren',\n d : 'ien dei',\n dd : '%d dagen',\n M : 'ien moanne',\n MM : '%d moannen',\n y : 'ien jier',\n yy : '%d jierren'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(ste|de)/,\n ordinal : function (number) {\n return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn fy;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/fy.js\n// module id = 559\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Scottish Gaelic [gd]\n//! author : Jon Ashdown : https://github.com/jonashdown\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar months = [\n 'Am Faoilleach', 'An Gearran', 'Am Màrt', 'An Giblean', 'An Cèitean', 'An t-Ògmhios', 'An t-Iuchar', 'An Lùnastal', 'An t-Sultain', 'An Dàmhair', 'An t-Samhain', 'An Dùbhlachd'\n];\n\nvar monthsShort = ['Faoi', 'Gear', 'Màrt', 'Gibl', 'Cèit', 'Ògmh', 'Iuch', 'Lùn', 'Sult', 'Dàmh', 'Samh', 'Dùbh'];\n\nvar weekdays = ['Didòmhnaich', 'Diluain', 'Dimàirt', 'Diciadain', 'Diardaoin', 'Dihaoine', 'Disathairne'];\n\nvar weekdaysShort = ['Did', 'Dil', 'Dim', 'Dic', 'Dia', 'Dih', 'Dis'];\n\nvar weekdaysMin = ['Dò', 'Lu', 'Mà', 'Ci', 'Ar', 'Ha', 'Sa'];\n\nvar gd = moment.defineLocale('gd', {\n months : months,\n monthsShort : monthsShort,\n monthsParseExact : true,\n weekdays : weekdays,\n weekdaysShort : weekdaysShort,\n weekdaysMin : weekdaysMin,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[An-diugh aig] LT',\n nextDay : '[A-màireach aig] LT',\n nextWeek : 'dddd [aig] LT',\n lastDay : '[An-dè aig] LT',\n lastWeek : 'dddd [seo chaidh] [aig] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'ann an %s',\n past : 'bho chionn %s',\n s : 'beagan diogan',\n m : 'mionaid',\n mm : '%d mionaidean',\n h : 'uair',\n hh : '%d uairean',\n d : 'latha',\n dd : '%d latha',\n M : 'mìos',\n MM : '%d mìosan',\n y : 'bliadhna',\n yy : '%d bliadhna'\n },\n dayOfMonthOrdinalParse : /\\d{1,2}(d|na|mh)/,\n ordinal : function (number) {\n var output = number === 1 ? 'd' : number % 10 === 2 ? 'na' : 'mh';\n return number + output;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn gd;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/gd.js\n// module id = 560\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Galician [gl]\n//! author : Juan G. Hurtado : https://github.com/juanghurtado\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar gl = moment.defineLocale('gl', {\n months : 'xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro'.split('_'),\n monthsShort : 'xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.'.split('_'),\n monthsParseExact: true,\n weekdays : 'domingo_luns_martes_mércores_xoves_venres_sábado'.split('_'),\n weekdaysShort : 'dom._lun._mar._mér._xov._ven._sáb.'.split('_'),\n weekdaysMin : 'do_lu_ma_mé_xo_ve_sá'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D [de] MMMM [de] YYYY',\n LLL : 'D [de] MMMM [de] YYYY H:mm',\n LLLL : 'dddd, D [de] MMMM [de] YYYY H:mm'\n },\n calendar : {\n sameDay : function () {\n return '[hoxe ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT';\n },\n nextDay : function () {\n return '[mañá ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT';\n },\n nextWeek : function () {\n return 'dddd [' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT';\n },\n lastDay : function () {\n return '[onte ' + ((this.hours() !== 1) ? 'á' : 'a') + '] LT';\n },\n lastWeek : function () {\n return '[o] dddd [pasado ' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT';\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : function (str) {\n if (str.indexOf('un') === 0) {\n return 'n' + str;\n }\n return 'en ' + str;\n },\n past : 'hai %s',\n s : 'uns segundos',\n m : 'un minuto',\n mm : '%d minutos',\n h : 'unha hora',\n hh : '%d horas',\n d : 'un día',\n dd : '%d días',\n M : 'un mes',\n MM : '%d meses',\n y : 'un ano',\n yy : '%d anos'\n },\n dayOfMonthOrdinalParse : /\\d{1,2}º/,\n ordinal : '%dº',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn gl;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/gl.js\n// module id = 561\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Konkani Latin script [gom-latn]\n//! author : The Discoverer : https://github.com/WikiDiscoverer\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction processRelativeTime(number, withoutSuffix, key, isFuture) {\n var format = {\n 's': ['thodde secondanim', 'thodde second'],\n 'm': ['eka mintan', 'ek minute'],\n 'mm': [number + ' mintanim', number + ' mintam'],\n 'h': ['eka horan', 'ek hor'],\n 'hh': [number + ' horanim', number + ' hor'],\n 'd': ['eka disan', 'ek dis'],\n 'dd': [number + ' disanim', number + ' dis'],\n 'M': ['eka mhoinean', 'ek mhoino'],\n 'MM': [number + ' mhoineanim', number + ' mhoine'],\n 'y': ['eka vorsan', 'ek voros'],\n 'yy': [number + ' vorsanim', number + ' vorsam']\n };\n return withoutSuffix ? format[key][0] : format[key][1];\n}\n\nvar gomLatn = moment.defineLocale('gom-latn', {\n months : 'Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr'.split('_'),\n monthsShort : 'Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.'.split('_'),\n monthsParseExact : true,\n weekdays : 'Aitar_Somar_Mongllar_Budvar_Brestar_Sukrar_Son\\'var'.split('_'),\n weekdaysShort : 'Ait._Som._Mon._Bud._Bre._Suk._Son.'.split('_'),\n weekdaysMin : 'Ai_Sm_Mo_Bu_Br_Su_Sn'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'A h:mm [vazta]',\n LTS : 'A h:mm:ss [vazta]',\n L : 'DD-MM-YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY A h:mm [vazta]',\n LLLL : 'dddd, MMMM[achea] Do, YYYY, A h:mm [vazta]',\n llll: 'ddd, D MMM YYYY, A h:mm [vazta]'\n },\n calendar : {\n sameDay: '[Aiz] LT',\n nextDay: '[Faleam] LT',\n nextWeek: '[Ieta to] dddd[,] LT',\n lastDay: '[Kal] LT',\n lastWeek: '[Fatlo] dddd[,] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : '%s',\n past : '%s adim',\n s : processRelativeTime,\n m : processRelativeTime,\n mm : processRelativeTime,\n h : processRelativeTime,\n hh : processRelativeTime,\n d : processRelativeTime,\n dd : processRelativeTime,\n M : processRelativeTime,\n MM : processRelativeTime,\n y : processRelativeTime,\n yy : processRelativeTime\n },\n dayOfMonthOrdinalParse : /\\d{1,2}(er)/,\n ordinal : function (number, period) {\n switch (period) {\n // the ordinal 'er' only applies to day of the month\n case 'D':\n return number + 'er';\n default:\n case 'M':\n case 'Q':\n case 'DDD':\n case 'd':\n case 'w':\n case 'W':\n return number;\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n },\n meridiemParse: /rati|sokalli|donparam|sanje/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'rati') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'sokalli') {\n return hour;\n } else if (meridiem === 'donparam') {\n return hour > 12 ? hour : hour + 12;\n } else if (meridiem === 'sanje') {\n return hour + 12;\n }\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'rati';\n } else if (hour < 12) {\n return 'sokalli';\n } else if (hour < 16) {\n return 'donparam';\n } else if (hour < 20) {\n return 'sanje';\n } else {\n return 'rati';\n }\n }\n});\n\nreturn gomLatn;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/gom-latn.js\n// module id = 562\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Hebrew [he]\n//! author : Tomer Cohen : https://github.com/tomer\n//! author : Moshe Simantov : https://github.com/DevelopmentIL\n//! author : Tal Ater : https://github.com/TalAter\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar he = moment.defineLocale('he', {\n months : 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split('_'),\n monthsShort : 'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split('_'),\n weekdays : 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'),\n weekdaysShort : 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'),\n weekdaysMin : 'א_ב_ג_ד_ה_ו_ש'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D [ב]MMMM YYYY',\n LLL : 'D [ב]MMMM YYYY HH:mm',\n LLLL : 'dddd, D [ב]MMMM YYYY HH:mm',\n l : 'D/M/YYYY',\n ll : 'D MMM YYYY',\n lll : 'D MMM YYYY HH:mm',\n llll : 'ddd, D MMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[היום ב־]LT',\n nextDay : '[מחר ב־]LT',\n nextWeek : 'dddd [בשעה] LT',\n lastDay : '[אתמול ב־]LT',\n lastWeek : '[ביום] dddd [האחרון בשעה] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'בעוד %s',\n past : 'לפני %s',\n s : 'מספר שניות',\n m : 'דקה',\n mm : '%d דקות',\n h : 'שעה',\n hh : function (number) {\n if (number === 2) {\n return 'שעתיים';\n }\n return number + ' שעות';\n },\n d : 'יום',\n dd : function (number) {\n if (number === 2) {\n return 'יומיים';\n }\n return number + ' ימים';\n },\n M : 'חודש',\n MM : function (number) {\n if (number === 2) {\n return 'חודשיים';\n }\n return number + ' חודשים';\n },\n y : 'שנה',\n yy : function (number) {\n if (number === 2) {\n return 'שנתיים';\n } else if (number % 10 === 0 && number !== 10) {\n return number + ' שנה';\n }\n return number + ' שנים';\n }\n },\n meridiemParse: /אחה\"צ|לפנה\"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,\n isPM : function (input) {\n return /^(אחה\"צ|אחרי הצהריים|בערב)$/.test(input);\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 5) {\n return 'לפנות בוקר';\n } else if (hour < 10) {\n return 'בבוקר';\n } else if (hour < 12) {\n return isLower ? 'לפנה\"צ' : 'לפני הצהריים';\n } else if (hour < 18) {\n return isLower ? 'אחה\"צ' : 'אחרי הצהריים';\n } else {\n return 'בערב';\n }\n }\n});\n\nreturn he;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/he.js\n// module id = 563\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Hindi [hi]\n//! author : Mayank Singhal : https://github.com/mayanksinghal\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '१',\n '2': '२',\n '3': '३',\n '4': '४',\n '5': '५',\n '6': '६',\n '7': '७',\n '8': '८',\n '9': '९',\n '0': '०'\n};\nvar numberMap = {\n '१': '1',\n '२': '2',\n '३': '3',\n '४': '4',\n '५': '5',\n '६': '6',\n '७': '7',\n '८': '8',\n '९': '9',\n '०': '0'\n};\n\nvar hi = moment.defineLocale('hi', {\n months : 'जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर'.split('_'),\n monthsShort : 'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split('_'),\n monthsParseExact: true,\n weekdays : 'रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),\n weekdaysShort : 'रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि'.split('_'),\n weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'),\n longDateFormat : {\n LT : 'A h:mm बजे',\n LTS : 'A h:mm:ss बजे',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY, A h:mm बजे',\n LLLL : 'dddd, D MMMM YYYY, A h:mm बजे'\n },\n calendar : {\n sameDay : '[आज] LT',\n nextDay : '[कल] LT',\n nextWeek : 'dddd, LT',\n lastDay : '[कल] LT',\n lastWeek : '[पिछले] dddd, LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s में',\n past : '%s पहले',\n s : 'कुछ ही क्षण',\n m : 'एक मिनट',\n mm : '%d मिनट',\n h : 'एक घंटा',\n hh : '%d घंटे',\n d : 'एक दिन',\n dd : '%d दिन',\n M : 'एक महीने',\n MM : '%d महीने',\n y : 'एक वर्ष',\n yy : '%d वर्ष'\n },\n preparse: function (string) {\n return string.replace(/[१२३४५६७८९०]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n // Hindi notation for meridiems are quite fuzzy in practice. While there exists\n // a rigid notion of a 'Pahar' it is not used as rigidly in modern Hindi.\n meridiemParse: /रात|सुबह|दोपहर|शाम/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'रात') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'सुबह') {\n return hour;\n } else if (meridiem === 'दोपहर') {\n return hour >= 10 ? hour : hour + 12;\n } else if (meridiem === 'शाम') {\n return hour + 12;\n }\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'रात';\n } else if (hour < 10) {\n return 'सुबह';\n } else if (hour < 17) {\n return 'दोपहर';\n } else if (hour < 20) {\n return 'शाम';\n } else {\n return 'रात';\n }\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 6 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn hi;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/hi.js\n// module id = 564\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Croatian [hr]\n//! author : Bojan Marković : https://github.com/bmarkovic\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction translate(number, withoutSuffix, key) {\n var result = number + ' ';\n switch (key) {\n case 'm':\n return withoutSuffix ? 'jedna minuta' : 'jedne minute';\n case 'mm':\n if (number === 1) {\n result += 'minuta';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'minute';\n } else {\n result += 'minuta';\n }\n return result;\n case 'h':\n return withoutSuffix ? 'jedan sat' : 'jednog sata';\n case 'hh':\n if (number === 1) {\n result += 'sat';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'sata';\n } else {\n result += 'sati';\n }\n return result;\n case 'dd':\n if (number === 1) {\n result += 'dan';\n } else {\n result += 'dana';\n }\n return result;\n case 'MM':\n if (number === 1) {\n result += 'mjesec';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'mjeseca';\n } else {\n result += 'mjeseci';\n }\n return result;\n case 'yy':\n if (number === 1) {\n result += 'godina';\n } else if (number === 2 || number === 3 || number === 4) {\n result += 'godine';\n } else {\n result += 'godina';\n }\n return result;\n }\n}\n\nvar hr = moment.defineLocale('hr', {\n months : {\n format: 'siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca'.split('_'),\n standalone: 'siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac'.split('_')\n },\n monthsShort : 'sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.'.split('_'),\n monthsParseExact: true,\n weekdays : 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'),\n weekdaysShort : 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),\n weekdaysMin : 'ne_po_ut_sr_če_pe_su'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY H:mm',\n LLLL : 'dddd, D. MMMM YYYY H:mm'\n },\n calendar : {\n sameDay : '[danas u] LT',\n nextDay : '[sutra u] LT',\n nextWeek : function () {\n switch (this.day()) {\n case 0:\n return '[u] [nedjelju] [u] LT';\n case 3:\n return '[u] [srijedu] [u] LT';\n case 6:\n return '[u] [subotu] [u] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[u] dddd [u] LT';\n }\n },\n lastDay : '[jučer u] LT',\n lastWeek : function () {\n switch (this.day()) {\n case 0:\n case 3:\n return '[prošlu] dddd [u] LT';\n case 6:\n return '[prošle] [subote] [u] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[prošli] dddd [u] LT';\n }\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'za %s',\n past : 'prije %s',\n s : 'par sekundi',\n m : translate,\n mm : translate,\n h : translate,\n hh : translate,\n d : 'dan',\n dd : translate,\n M : 'mjesec',\n MM : translate,\n y : 'godinu',\n yy : translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn hr;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/hr.js\n// module id = 565\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Hungarian [hu]\n//! author : Adam Brunner : https://github.com/adambrunner\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' ');\nfunction translate(number, withoutSuffix, key, isFuture) {\n var num = number,\n suffix;\n switch (key) {\n case 's':\n return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce';\n case 'm':\n return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');\n case 'mm':\n return num + (isFuture || withoutSuffix ? ' perc' : ' perce');\n case 'h':\n return 'egy' + (isFuture || withoutSuffix ? ' óra' : ' órája');\n case 'hh':\n return num + (isFuture || withoutSuffix ? ' óra' : ' órája');\n case 'd':\n return 'egy' + (isFuture || withoutSuffix ? ' nap' : ' napja');\n case 'dd':\n return num + (isFuture || withoutSuffix ? ' nap' : ' napja');\n case 'M':\n return 'egy' + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');\n case 'MM':\n return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');\n case 'y':\n return 'egy' + (isFuture || withoutSuffix ? ' év' : ' éve');\n case 'yy':\n return num + (isFuture || withoutSuffix ? ' év' : ' éve');\n }\n return '';\n}\nfunction week(isFuture) {\n return (isFuture ? '' : '[múlt] ') + '[' + weekEndings[this.day()] + '] LT[-kor]';\n}\n\nvar hu = moment.defineLocale('hu', {\n months : 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split('_'),\n monthsShort : 'jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec'.split('_'),\n weekdays : 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),\n weekdaysShort : 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'),\n weekdaysMin : 'v_h_k_sze_cs_p_szo'.split('_'),\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'YYYY.MM.DD.',\n LL : 'YYYY. MMMM D.',\n LLL : 'YYYY. MMMM D. H:mm',\n LLLL : 'YYYY. MMMM D., dddd H:mm'\n },\n meridiemParse: /de|du/i,\n isPM: function (input) {\n return input.charAt(1).toLowerCase() === 'u';\n },\n meridiem : function (hours, minutes, isLower) {\n if (hours < 12) {\n return isLower === true ? 'de' : 'DE';\n } else {\n return isLower === true ? 'du' : 'DU';\n }\n },\n calendar : {\n sameDay : '[ma] LT[-kor]',\n nextDay : '[holnap] LT[-kor]',\n nextWeek : function () {\n return week.call(this, true);\n },\n lastDay : '[tegnap] LT[-kor]',\n lastWeek : function () {\n return week.call(this, false);\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s múlva',\n past : '%s',\n s : translate,\n m : translate,\n mm : translate,\n h : translate,\n hh : translate,\n d : translate,\n dd : translate,\n M : translate,\n MM : translate,\n y : translate,\n yy : translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn hu;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/hu.js\n// module id = 566\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Armenian [hy-am]\n//! author : Armendarabyan : https://github.com/armendarabyan\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar hyAm = moment.defineLocale('hy-am', {\n months : {\n format: 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split('_'),\n standalone: 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split('_')\n },\n monthsShort : 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_'),\n weekdays : 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split('_'),\n weekdaysShort : 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),\n weekdaysMin : 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY թ.',\n LLL : 'D MMMM YYYY թ., HH:mm',\n LLLL : 'dddd, D MMMM YYYY թ., HH:mm'\n },\n calendar : {\n sameDay: '[այսօր] LT',\n nextDay: '[վաղը] LT',\n lastDay: '[երեկ] LT',\n nextWeek: function () {\n return 'dddd [օրը ժամը] LT';\n },\n lastWeek: function () {\n return '[անցած] dddd [օրը ժամը] LT';\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : '%s հետո',\n past : '%s առաջ',\n s : 'մի քանի վայրկյան',\n m : 'րոպե',\n mm : '%d րոպե',\n h : 'ժամ',\n hh : '%d ժամ',\n d : 'օր',\n dd : '%d օր',\n M : 'ամիս',\n MM : '%d ամիս',\n y : 'տարի',\n yy : '%d տարի'\n },\n meridiemParse: /գիշերվա|առավոտվա|ցերեկվա|երեկոյան/,\n isPM: function (input) {\n return /^(ցերեկվա|երեկոյան)$/.test(input);\n },\n meridiem : function (hour) {\n if (hour < 4) {\n return 'գիշերվա';\n } else if (hour < 12) {\n return 'առավոտվա';\n } else if (hour < 17) {\n return 'ցերեկվա';\n } else {\n return 'երեկոյան';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}|\\d{1,2}-(ին|րդ)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'DDD':\n case 'w':\n case 'W':\n case 'DDDo':\n if (number === 1) {\n return number + '-ին';\n }\n return number + '-րդ';\n default:\n return number;\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn hyAm;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/hy-am.js\n// module id = 567\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Indonesian [id]\n//! author : Mohammad Satrio Utomo : https://github.com/tyok\n//! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar id = moment.defineLocale('id', {\n months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember'.split('_'),\n monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des'.split('_'),\n weekdays : 'Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu'.split('_'),\n weekdaysShort : 'Min_Sen_Sel_Rab_Kam_Jum_Sab'.split('_'),\n weekdaysMin : 'Mg_Sn_Sl_Rb_Km_Jm_Sb'.split('_'),\n longDateFormat : {\n LT : 'HH.mm',\n LTS : 'HH.mm.ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY [pukul] HH.mm',\n LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'\n },\n meridiemParse: /pagi|siang|sore|malam/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'pagi') {\n return hour;\n } else if (meridiem === 'siang') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === 'sore' || meridiem === 'malam') {\n return hour + 12;\n }\n },\n meridiem : function (hours, minutes, isLower) {\n if (hours < 11) {\n return 'pagi';\n } else if (hours < 15) {\n return 'siang';\n } else if (hours < 19) {\n return 'sore';\n } else {\n return 'malam';\n }\n },\n calendar : {\n sameDay : '[Hari ini pukul] LT',\n nextDay : '[Besok pukul] LT',\n nextWeek : 'dddd [pukul] LT',\n lastDay : '[Kemarin pukul] LT',\n lastWeek : 'dddd [lalu pukul] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'dalam %s',\n past : '%s yang lalu',\n s : 'beberapa detik',\n m : 'semenit',\n mm : '%d menit',\n h : 'sejam',\n hh : '%d jam',\n d : 'sehari',\n dd : '%d hari',\n M : 'sebulan',\n MM : '%d bulan',\n y : 'setahun',\n yy : '%d tahun'\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn id;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/id.js\n// module id = 568\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Icelandic [is]\n//! author : Hinrik Örn Sigurðsson : https://github.com/hinrik\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction plural(n) {\n if (n % 100 === 11) {\n return true;\n } else if (n % 10 === 1) {\n return false;\n }\n return true;\n}\nfunction translate(number, withoutSuffix, key, isFuture) {\n var result = number + ' ';\n switch (key) {\n case 's':\n return withoutSuffix || isFuture ? 'nokkrar sekúndur' : 'nokkrum sekúndum';\n case 'm':\n return withoutSuffix ? 'mínúta' : 'mínútu';\n case 'mm':\n if (plural(number)) {\n return result + (withoutSuffix || isFuture ? 'mínútur' : 'mínútum');\n } else if (withoutSuffix) {\n return result + 'mínúta';\n }\n return result + 'mínútu';\n case 'hh':\n if (plural(number)) {\n return result + (withoutSuffix || isFuture ? 'klukkustundir' : 'klukkustundum');\n }\n return result + 'klukkustund';\n case 'd':\n if (withoutSuffix) {\n return 'dagur';\n }\n return isFuture ? 'dag' : 'degi';\n case 'dd':\n if (plural(number)) {\n if (withoutSuffix) {\n return result + 'dagar';\n }\n return result + (isFuture ? 'daga' : 'dögum');\n } else if (withoutSuffix) {\n return result + 'dagur';\n }\n return result + (isFuture ? 'dag' : 'degi');\n case 'M':\n if (withoutSuffix) {\n return 'mánuður';\n }\n return isFuture ? 'mánuð' : 'mánuði';\n case 'MM':\n if (plural(number)) {\n if (withoutSuffix) {\n return result + 'mánuðir';\n }\n return result + (isFuture ? 'mánuði' : 'mánuðum');\n } else if (withoutSuffix) {\n return result + 'mánuður';\n }\n return result + (isFuture ? 'mánuð' : 'mánuði');\n case 'y':\n return withoutSuffix || isFuture ? 'ár' : 'ári';\n case 'yy':\n if (plural(number)) {\n return result + (withoutSuffix || isFuture ? 'ár' : 'árum');\n }\n return result + (withoutSuffix || isFuture ? 'ár' : 'ári');\n }\n}\n\nvar is = moment.defineLocale('is', {\n months : 'janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember'.split('_'),\n monthsShort : 'jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des'.split('_'),\n weekdays : 'sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur'.split('_'),\n weekdaysShort : 'sun_mán_þri_mið_fim_fös_lau'.split('_'),\n weekdaysMin : 'Su_Má_Þr_Mi_Fi_Fö_La'.split('_'),\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY [kl.] H:mm',\n LLLL : 'dddd, D. MMMM YYYY [kl.] H:mm'\n },\n calendar : {\n sameDay : '[í dag kl.] LT',\n nextDay : '[á morgun kl.] LT',\n nextWeek : 'dddd [kl.] LT',\n lastDay : '[í gær kl.] LT',\n lastWeek : '[síðasta] dddd [kl.] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'eftir %s',\n past : 'fyrir %s síðan',\n s : translate,\n m : translate,\n mm : translate,\n h : 'klukkustund',\n hh : translate,\n d : translate,\n dd : translate,\n M : translate,\n MM : translate,\n y : translate,\n yy : translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn is;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/is.js\n// module id = 569\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Italian [it]\n//! author : Lorenzo : https://github.com/aliem\n//! author: Mattia Larentis: https://github.com/nostalgiaz\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar it = moment.defineLocale('it', {\n months : 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split('_'),\n monthsShort : 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'),\n weekdays : 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split('_'),\n weekdaysShort : 'dom_lun_mar_mer_gio_ven_sab'.split('_'),\n weekdaysMin : 'do_lu_ma_me_gi_ve_sa'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[Oggi alle] LT',\n nextDay: '[Domani alle] LT',\n nextWeek: 'dddd [alle] LT',\n lastDay: '[Ieri alle] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return '[la scorsa] dddd [alle] LT';\n default:\n return '[lo scorso] dddd [alle] LT';\n }\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : function (s) {\n return ((/^[0-9].+$/).test(s) ? 'tra' : 'in') + ' ' + s;\n },\n past : '%s fa',\n s : 'alcuni secondi',\n m : 'un minuto',\n mm : '%d minuti',\n h : 'un\\'ora',\n hh : '%d ore',\n d : 'un giorno',\n dd : '%d giorni',\n M : 'un mese',\n MM : '%d mesi',\n y : 'un anno',\n yy : '%d anni'\n },\n dayOfMonthOrdinalParse : /\\d{1,2}º/,\n ordinal: '%dº',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn it;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/it.js\n// module id = 570\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Japanese [ja]\n//! author : LI Long : https://github.com/baryon\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar ja = moment.defineLocale('ja', {\n months : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),\n monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),\n weekdays : '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'),\n weekdaysShort : '日_月_火_水_木_金_土'.split('_'),\n weekdaysMin : '日_月_火_水_木_金_土'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'YYYY/MM/DD',\n LL : 'YYYY年M月D日',\n LLL : 'YYYY年M月D日 HH:mm',\n LLLL : 'YYYY年M月D日 HH:mm dddd',\n l : 'YYYY/MM/DD',\n ll : 'YYYY年M月D日',\n lll : 'YYYY年M月D日 HH:mm',\n llll : 'YYYY年M月D日 HH:mm dddd'\n },\n meridiemParse: /午前|午後/i,\n isPM : function (input) {\n return input === '午後';\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 12) {\n return '午前';\n } else {\n return '午後';\n }\n },\n calendar : {\n sameDay : '[今日] LT',\n nextDay : '[明日] LT',\n nextWeek : '[来週]dddd LT',\n lastDay : '[昨日] LT',\n lastWeek : '[前週]dddd LT',\n sameElse : 'L'\n },\n dayOfMonthOrdinalParse : /\\d{1,2}日/,\n ordinal : function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'DDD':\n return number + '日';\n default:\n return number;\n }\n },\n relativeTime : {\n future : '%s後',\n past : '%s前',\n s : '数秒',\n m : '1分',\n mm : '%d分',\n h : '1時間',\n hh : '%d時間',\n d : '1日',\n dd : '%d日',\n M : '1ヶ月',\n MM : '%dヶ月',\n y : '1年',\n yy : '%d年'\n }\n});\n\nreturn ja;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ja.js\n// module id = 571\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Javanese [jv]\n//! author : Rony Lantip : https://github.com/lantip\n//! reference: http://jv.wikipedia.org/wiki/Basa_Jawa\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar jv = moment.defineLocale('jv', {\n months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember'.split('_'),\n monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des'.split('_'),\n weekdays : 'Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu'.split('_'),\n weekdaysShort : 'Min_Sen_Sel_Reb_Kem_Jem_Sep'.split('_'),\n weekdaysMin : 'Mg_Sn_Sl_Rb_Km_Jm_Sp'.split('_'),\n longDateFormat : {\n LT : 'HH.mm',\n LTS : 'HH.mm.ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY [pukul] HH.mm',\n LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'\n },\n meridiemParse: /enjing|siyang|sonten|ndalu/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'enjing') {\n return hour;\n } else if (meridiem === 'siyang') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === 'sonten' || meridiem === 'ndalu') {\n return hour + 12;\n }\n },\n meridiem : function (hours, minutes, isLower) {\n if (hours < 11) {\n return 'enjing';\n } else if (hours < 15) {\n return 'siyang';\n } else if (hours < 19) {\n return 'sonten';\n } else {\n return 'ndalu';\n }\n },\n calendar : {\n sameDay : '[Dinten puniko pukul] LT',\n nextDay : '[Mbenjang pukul] LT',\n nextWeek : 'dddd [pukul] LT',\n lastDay : '[Kala wingi pukul] LT',\n lastWeek : 'dddd [kepengker pukul] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'wonten ing %s',\n past : '%s ingkang kepengker',\n s : 'sawetawis detik',\n m : 'setunggal menit',\n mm : '%d menit',\n h : 'setunggal jam',\n hh : '%d jam',\n d : 'sedinten',\n dd : '%d dinten',\n M : 'sewulan',\n MM : '%d wulan',\n y : 'setaun',\n yy : '%d taun'\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn jv;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/jv.js\n// module id = 572\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Georgian [ka]\n//! author : Irakli Janiashvili : https://github.com/irakli-janiashvili\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar ka = moment.defineLocale('ka', {\n months : {\n standalone: 'იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი'.split('_'),\n format: 'იანვარს_თებერვალს_მარტს_აპრილის_მაისს_ივნისს_ივლისს_აგვისტს_სექტემბერს_ოქტომბერს_ნოემბერს_დეკემბერს'.split('_')\n },\n monthsShort : 'იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ'.split('_'),\n weekdays : {\n standalone: 'კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი'.split('_'),\n format: 'კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს'.split('_'),\n isFormat: /(წინა|შემდეგ)/\n },\n weekdaysShort : 'კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ'.split('_'),\n weekdaysMin : 'კვ_ორ_სა_ოთ_ხუ_პა_შა'.split('_'),\n longDateFormat : {\n LT : 'h:mm A',\n LTS : 'h:mm:ss A',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY h:mm A',\n LLLL : 'dddd, D MMMM YYYY h:mm A'\n },\n calendar : {\n sameDay : '[დღეს] LT[-ზე]',\n nextDay : '[ხვალ] LT[-ზე]',\n lastDay : '[გუშინ] LT[-ზე]',\n nextWeek : '[შემდეგ] dddd LT[-ზე]',\n lastWeek : '[წინა] dddd LT-ზე',\n sameElse : 'L'\n },\n relativeTime : {\n future : function (s) {\n return (/(წამი|წუთი|საათი|წელი)/).test(s) ?\n s.replace(/ი$/, 'ში') :\n s + 'ში';\n },\n past : function (s) {\n if ((/(წამი|წუთი|საათი|დღე|თვე)/).test(s)) {\n return s.replace(/(ი|ე)$/, 'ის უკან');\n }\n if ((/წელი/).test(s)) {\n return s.replace(/წელი$/, 'წლის უკან');\n }\n },\n s : 'რამდენიმე წამი',\n m : 'წუთი',\n mm : '%d წუთი',\n h : 'საათი',\n hh : '%d საათი',\n d : 'დღე',\n dd : '%d დღე',\n M : 'თვე',\n MM : '%d თვე',\n y : 'წელი',\n yy : '%d წელი'\n },\n dayOfMonthOrdinalParse: /0|1-ლი|მე-\\d{1,2}|\\d{1,2}-ე/,\n ordinal : function (number) {\n if (number === 0) {\n return number;\n }\n if (number === 1) {\n return number + '-ლი';\n }\n if ((number < 20) || (number <= 100 && (number % 20 === 0)) || (number % 100 === 0)) {\n return 'მე-' + number;\n }\n return number + '-ე';\n },\n week : {\n dow : 1,\n doy : 7\n }\n});\n\nreturn ka;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ka.js\n// module id = 573\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Kazakh [kk]\n//! authors : Nurlan Rakhimzhanov : https://github.com/nurlan\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar suffixes = {\n 0: '-ші',\n 1: '-ші',\n 2: '-ші',\n 3: '-ші',\n 4: '-ші',\n 5: '-ші',\n 6: '-шы',\n 7: '-ші',\n 8: '-ші',\n 9: '-шы',\n 10: '-шы',\n 20: '-шы',\n 30: '-шы',\n 40: '-шы',\n 50: '-ші',\n 60: '-шы',\n 70: '-ші',\n 80: '-ші',\n 90: '-шы',\n 100: '-ші'\n};\n\nvar kk = moment.defineLocale('kk', {\n months : 'қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан'.split('_'),\n monthsShort : 'қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел'.split('_'),\n weekdays : 'жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі'.split('_'),\n weekdaysShort : 'жек_дүй_сей_сәр_бей_жұм_сен'.split('_'),\n weekdaysMin : 'жк_дй_сй_ср_бй_жм_сн'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[Бүгін сағат] LT',\n nextDay : '[Ертең сағат] LT',\n nextWeek : 'dddd [сағат] LT',\n lastDay : '[Кеше сағат] LT',\n lastWeek : '[Өткен аптаның] dddd [сағат] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s ішінде',\n past : '%s бұрын',\n s : 'бірнеше секунд',\n m : 'бір минут',\n mm : '%d минут',\n h : 'бір сағат',\n hh : '%d сағат',\n d : 'бір күн',\n dd : '%d күн',\n M : 'бір ай',\n MM : '%d ай',\n y : 'бір жыл',\n yy : '%d жыл'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(ші|шы)/,\n ordinal : function (number) {\n var a = number % 10,\n b = number >= 100 ? 100 : null;\n return number + (suffixes[number] || suffixes[a] || suffixes[b]);\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn kk;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/kk.js\n// module id = 574\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Cambodian [km]\n//! author : Kruy Vanna : https://github.com/kruyvanna\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar km = moment.defineLocale('km', {\n months: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'),\n monthsShort: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'),\n weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),\n weekdaysShort: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),\n weekdaysMin: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS : 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd, D MMMM YYYY HH:mm'\n },\n calendar: {\n sameDay: '[ថ្ងៃនេះ ម៉ោង] LT',\n nextDay: '[ស្អែក ម៉ោង] LT',\n nextWeek: 'dddd [ម៉ោង] LT',\n lastDay: '[ម្សិលមិញ ម៉ោង] LT',\n lastWeek: 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT',\n sameElse: 'L'\n },\n relativeTime: {\n future: '%sទៀត',\n past: '%sមុន',\n s: 'ប៉ុន្មានវិនាទី',\n m: 'មួយនាទី',\n mm: '%d នាទី',\n h: 'មួយម៉ោង',\n hh: '%d ម៉ោង',\n d: 'មួយថ្ងៃ',\n dd: '%d ថ្ងៃ',\n M: 'មួយខែ',\n MM: '%d ខែ',\n y: 'មួយឆ្នាំ',\n yy: '%d ឆ្នាំ'\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn km;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/km.js\n// module id = 575\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Kannada [kn]\n//! author : Rajeev Naik : https://github.com/rajeevnaikte\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '೧',\n '2': '೨',\n '3': '೩',\n '4': '೪',\n '5': '೫',\n '6': '೬',\n '7': '೭',\n '8': '೮',\n '9': '೯',\n '0': '೦'\n};\nvar numberMap = {\n '೧': '1',\n '೨': '2',\n '೩': '3',\n '೪': '4',\n '೫': '5',\n '೬': '6',\n '೭': '7',\n '೮': '8',\n '೯': '9',\n '೦': '0'\n};\n\nvar kn = moment.defineLocale('kn', {\n months : 'ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್'.split('_'),\n monthsShort : 'ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬ_ಅಕ್ಟೋಬ_ನವೆಂಬ_ಡಿಸೆಂಬ'.split('_'),\n monthsParseExact: true,\n weekdays : 'ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ'.split('_'),\n weekdaysShort : 'ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ'.split('_'),\n weekdaysMin : 'ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ'.split('_'),\n longDateFormat : {\n LT : 'A h:mm',\n LTS : 'A h:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY, A h:mm',\n LLLL : 'dddd, D MMMM YYYY, A h:mm'\n },\n calendar : {\n sameDay : '[ಇಂದು] LT',\n nextDay : '[ನಾಳೆ] LT',\n nextWeek : 'dddd, LT',\n lastDay : '[ನಿನ್ನೆ] LT',\n lastWeek : '[ಕೊನೆಯ] dddd, LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s ನಂತರ',\n past : '%s ಹಿಂದೆ',\n s : 'ಕೆಲವು ಕ್ಷಣಗಳು',\n m : 'ಒಂದು ನಿಮಿಷ',\n mm : '%d ನಿಮಿಷ',\n h : 'ಒಂದು ಗಂಟೆ',\n hh : '%d ಗಂಟೆ',\n d : 'ಒಂದು ದಿನ',\n dd : '%d ದಿನ',\n M : 'ಒಂದು ತಿಂಗಳು',\n MM : '%d ತಿಂಗಳು',\n y : 'ಒಂದು ವರ್ಷ',\n yy : '%d ವರ್ಷ'\n },\n preparse: function (string) {\n return string.replace(/[೧೨೩೪೫೬೭೮೯೦]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n meridiemParse: /ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'ರಾತ್ರಿ') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'ಬೆಳಿಗ್ಗೆ') {\n return hour;\n } else if (meridiem === 'ಮಧ್ಯಾಹ್ನ') {\n return hour >= 10 ? hour : hour + 12;\n } else if (meridiem === 'ಸಂಜೆ') {\n return hour + 12;\n }\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'ರಾತ್ರಿ';\n } else if (hour < 10) {\n return 'ಬೆಳಿಗ್ಗೆ';\n } else if (hour < 17) {\n return 'ಮಧ್ಯಾಹ್ನ';\n } else if (hour < 20) {\n return 'ಸಂಜೆ';\n } else {\n return 'ರಾತ್ರಿ';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(ನೇ)/,\n ordinal : function (number) {\n return number + 'ನೇ';\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 6 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn kn;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/kn.js\n// module id = 576\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Korean [ko]\n//! author : Kyungwook, Park : https://github.com/kyungw00k\n//! author : Jeeeyul Lee \n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar ko = moment.defineLocale('ko', {\n months : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),\n monthsShort : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),\n weekdays : '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'),\n weekdaysShort : '일_월_화_수_목_금_토'.split('_'),\n weekdaysMin : '일_월_화_수_목_금_토'.split('_'),\n longDateFormat : {\n LT : 'A h:mm',\n LTS : 'A h:mm:ss',\n L : 'YYYY.MM.DD',\n LL : 'YYYY년 MMMM D일',\n LLL : 'YYYY년 MMMM D일 A h:mm',\n LLLL : 'YYYY년 MMMM D일 dddd A h:mm',\n l : 'YYYY.MM.DD',\n ll : 'YYYY년 MMMM D일',\n lll : 'YYYY년 MMMM D일 A h:mm',\n llll : 'YYYY년 MMMM D일 dddd A h:mm'\n },\n calendar : {\n sameDay : '오늘 LT',\n nextDay : '내일 LT',\n nextWeek : 'dddd LT',\n lastDay : '어제 LT',\n lastWeek : '지난주 dddd LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s 후',\n past : '%s 전',\n s : '몇 초',\n ss : '%d초',\n m : '1분',\n mm : '%d분',\n h : '한 시간',\n hh : '%d시간',\n d : '하루',\n dd : '%d일',\n M : '한 달',\n MM : '%d달',\n y : '일 년',\n yy : '%d년'\n },\n dayOfMonthOrdinalParse : /\\d{1,2}일/,\n ordinal : '%d일',\n meridiemParse : /오전|오후/,\n isPM : function (token) {\n return token === '오후';\n },\n meridiem : function (hour, minute, isUpper) {\n return hour < 12 ? '오전' : '오후';\n }\n});\n\nreturn ko;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ko.js\n// module id = 577\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Kyrgyz [ky]\n//! author : Chyngyz Arystan uulu : https://github.com/chyngyz\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n\nvar suffixes = {\n 0: '-чү',\n 1: '-чи',\n 2: '-чи',\n 3: '-чү',\n 4: '-чү',\n 5: '-чи',\n 6: '-чы',\n 7: '-чи',\n 8: '-чи',\n 9: '-чу',\n 10: '-чу',\n 20: '-чы',\n 30: '-чу',\n 40: '-чы',\n 50: '-чү',\n 60: '-чы',\n 70: '-чи',\n 80: '-чи',\n 90: '-чу',\n 100: '-чү'\n};\n\nvar ky = moment.defineLocale('ky', {\n months : 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_'),\n monthsShort : 'янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек'.split('_'),\n weekdays : 'Жекшемби_Дүйшөмбү_Шейшемби_Шаршемби_Бейшемби_Жума_Ишемби'.split('_'),\n weekdaysShort : 'Жек_Дүй_Шей_Шар_Бей_Жум_Ише'.split('_'),\n weekdaysMin : 'Жк_Дй_Шй_Шр_Бй_Жм_Иш'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[Бүгүн саат] LT',\n nextDay : '[Эртең саат] LT',\n nextWeek : 'dddd [саат] LT',\n lastDay : '[Кече саат] LT',\n lastWeek : '[Өткен аптанын] dddd [күнү] [саат] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s ичинде',\n past : '%s мурун',\n s : 'бирнече секунд',\n m : 'бир мүнөт',\n mm : '%d мүнөт',\n h : 'бир саат',\n hh : '%d саат',\n d : 'бир күн',\n dd : '%d күн',\n M : 'бир ай',\n MM : '%d ай',\n y : 'бир жыл',\n yy : '%d жыл'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(чи|чы|чү|чу)/,\n ordinal : function (number) {\n var a = number % 10,\n b = number >= 100 ? 100 : null;\n return number + (suffixes[number] || suffixes[a] || suffixes[b]);\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn ky;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ky.js\n// module id = 578\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Luxembourgish [lb]\n//! author : mweimerskirch : https://github.com/mweimerskirch\n//! author : David Raison : https://github.com/kwisatz\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction processRelativeTime(number, withoutSuffix, key, isFuture) {\n var format = {\n 'm': ['eng Minutt', 'enger Minutt'],\n 'h': ['eng Stonn', 'enger Stonn'],\n 'd': ['een Dag', 'engem Dag'],\n 'M': ['ee Mount', 'engem Mount'],\n 'y': ['ee Joer', 'engem Joer']\n };\n return withoutSuffix ? format[key][0] : format[key][1];\n}\nfunction processFutureTime(string) {\n var number = string.substr(0, string.indexOf(' '));\n if (eifelerRegelAppliesToNumber(number)) {\n return 'a ' + string;\n }\n return 'an ' + string;\n}\nfunction processPastTime(string) {\n var number = string.substr(0, string.indexOf(' '));\n if (eifelerRegelAppliesToNumber(number)) {\n return 'viru ' + string;\n }\n return 'virun ' + string;\n}\n/**\n * Returns true if the word before the given number loses the '-n' ending.\n * e.g. 'an 10 Deeg' but 'a 5 Deeg'\n *\n * @param number {integer}\n * @returns {boolean}\n */\nfunction eifelerRegelAppliesToNumber(number) {\n number = parseInt(number, 10);\n if (isNaN(number)) {\n return false;\n }\n if (number < 0) {\n // Negative Number --> always true\n return true;\n } else if (number < 10) {\n // Only 1 digit\n if (4 <= number && number <= 7) {\n return true;\n }\n return false;\n } else if (number < 100) {\n // 2 digits\n var lastDigit = number % 10, firstDigit = number / 10;\n if (lastDigit === 0) {\n return eifelerRegelAppliesToNumber(firstDigit);\n }\n return eifelerRegelAppliesToNumber(lastDigit);\n } else if (number < 10000) {\n // 3 or 4 digits --> recursively check first digit\n while (number >= 10) {\n number = number / 10;\n }\n return eifelerRegelAppliesToNumber(number);\n } else {\n // Anything larger than 4 digits: recursively check first n-3 digits\n number = number / 1000;\n return eifelerRegelAppliesToNumber(number);\n }\n}\n\nvar lb = moment.defineLocale('lb', {\n months: 'Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),\n monthsShort: 'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'),\n monthsParseExact : true,\n weekdays: 'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split('_'),\n weekdaysShort: 'So._Mé._Dë._Më._Do._Fr._Sa.'.split('_'),\n weekdaysMin: 'So_Mé_Dë_Më_Do_Fr_Sa'.split('_'),\n weekdaysParseExact : true,\n longDateFormat: {\n LT: 'H:mm [Auer]',\n LTS: 'H:mm:ss [Auer]',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY H:mm [Auer]',\n LLLL: 'dddd, D. MMMM YYYY H:mm [Auer]'\n },\n calendar: {\n sameDay: '[Haut um] LT',\n sameElse: 'L',\n nextDay: '[Muer um] LT',\n nextWeek: 'dddd [um] LT',\n lastDay: '[Gëschter um] LT',\n lastWeek: function () {\n // Different date string for 'Dënschdeg' (Tuesday) and 'Donneschdeg' (Thursday) due to phonological rule\n switch (this.day()) {\n case 2:\n case 4:\n return '[Leschten] dddd [um] LT';\n default:\n return '[Leschte] dddd [um] LT';\n }\n }\n },\n relativeTime : {\n future : processFutureTime,\n past : processPastTime,\n s : 'e puer Sekonnen',\n m : processRelativeTime,\n mm : '%d Minutten',\n h : processRelativeTime,\n hh : '%d Stonnen',\n d : processRelativeTime,\n dd : '%d Deeg',\n M : processRelativeTime,\n MM : '%d Méint',\n y : processRelativeTime,\n yy : '%d Joer'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal: '%d.',\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn lb;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/lb.js\n// module id = 579\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Lao [lo]\n//! author : Ryan Hart : https://github.com/ryanhart2\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar lo = moment.defineLocale('lo', {\n months : 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split('_'),\n monthsShort : 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split('_'),\n weekdays : 'ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),\n weekdaysShort : 'ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),\n weekdaysMin : 'ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'ວັນdddd D MMMM YYYY HH:mm'\n },\n meridiemParse: /ຕອນເຊົ້າ|ຕອນແລງ/,\n isPM: function (input) {\n return input === 'ຕອນແລງ';\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 12) {\n return 'ຕອນເຊົ້າ';\n } else {\n return 'ຕອນແລງ';\n }\n },\n calendar : {\n sameDay : '[ມື້ນີ້ເວລາ] LT',\n nextDay : '[ມື້ອື່ນເວລາ] LT',\n nextWeek : '[ວັນ]dddd[ໜ້າເວລາ] LT',\n lastDay : '[ມື້ວານນີ້ເວລາ] LT',\n lastWeek : '[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'ອີກ %s',\n past : '%sຜ່ານມາ',\n s : 'ບໍ່ເທົ່າໃດວິນາທີ',\n m : '1 ນາທີ',\n mm : '%d ນາທີ',\n h : '1 ຊົ່ວໂມງ',\n hh : '%d ຊົ່ວໂມງ',\n d : '1 ມື້',\n dd : '%d ມື້',\n M : '1 ເດືອນ',\n MM : '%d ເດືອນ',\n y : '1 ປີ',\n yy : '%d ປີ'\n },\n dayOfMonthOrdinalParse: /(ທີ່)\\d{1,2}/,\n ordinal : function (number) {\n return 'ທີ່' + number;\n }\n});\n\nreturn lo;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/lo.js\n// module id = 580\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Lithuanian [lt]\n//! author : Mindaugas Mozūras : https://github.com/mmozuras\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar units = {\n 'm' : 'minutė_minutės_minutę',\n 'mm': 'minutės_minučių_minutes',\n 'h' : 'valanda_valandos_valandą',\n 'hh': 'valandos_valandų_valandas',\n 'd' : 'diena_dienos_dieną',\n 'dd': 'dienos_dienų_dienas',\n 'M' : 'mėnuo_mėnesio_mėnesį',\n 'MM': 'mėnesiai_mėnesių_mėnesius',\n 'y' : 'metai_metų_metus',\n 'yy': 'metai_metų_metus'\n};\nfunction translateSeconds(number, withoutSuffix, key, isFuture) {\n if (withoutSuffix) {\n return 'kelios sekundės';\n } else {\n return isFuture ? 'kelių sekundžių' : 'kelias sekundes';\n }\n}\nfunction translateSingular(number, withoutSuffix, key, isFuture) {\n return withoutSuffix ? forms(key)[0] : (isFuture ? forms(key)[1] : forms(key)[2]);\n}\nfunction special(number) {\n return number % 10 === 0 || (number > 10 && number < 20);\n}\nfunction forms(key) {\n return units[key].split('_');\n}\nfunction translate(number, withoutSuffix, key, isFuture) {\n var result = number + ' ';\n if (number === 1) {\n return result + translateSingular(number, withoutSuffix, key[0], isFuture);\n } else if (withoutSuffix) {\n return result + (special(number) ? forms(key)[1] : forms(key)[0]);\n } else {\n if (isFuture) {\n return result + forms(key)[1];\n } else {\n return result + (special(number) ? forms(key)[1] : forms(key)[2]);\n }\n }\n}\nvar lt = moment.defineLocale('lt', {\n months : {\n format: 'sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio'.split('_'),\n standalone: 'sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis'.split('_'),\n isFormat: /D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?/\n },\n monthsShort : 'sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd'.split('_'),\n weekdays : {\n format: 'sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį'.split('_'),\n standalone: 'sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis'.split('_'),\n isFormat: /dddd HH:mm/\n },\n weekdaysShort : 'Sek_Pir_Ant_Tre_Ket_Pen_Šeš'.split('_'),\n weekdaysMin : 'S_P_A_T_K_Pn_Š'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'YYYY-MM-DD',\n LL : 'YYYY [m.] MMMM D [d.]',\n LLL : 'YYYY [m.] MMMM D [d.], HH:mm [val.]',\n LLLL : 'YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]',\n l : 'YYYY-MM-DD',\n ll : 'YYYY [m.] MMMM D [d.]',\n lll : 'YYYY [m.] MMMM D [d.], HH:mm [val.]',\n llll : 'YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]'\n },\n calendar : {\n sameDay : '[Šiandien] LT',\n nextDay : '[Rytoj] LT',\n nextWeek : 'dddd LT',\n lastDay : '[Vakar] LT',\n lastWeek : '[Praėjusį] dddd LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'po %s',\n past : 'prieš %s',\n s : translateSeconds,\n m : translateSingular,\n mm : translate,\n h : translateSingular,\n hh : translate,\n d : translateSingular,\n dd : translate,\n M : translateSingular,\n MM : translate,\n y : translateSingular,\n yy : translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-oji/,\n ordinal : function (number) {\n return number + '-oji';\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn lt;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/lt.js\n// module id = 581\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Latvian [lv]\n//! author : Kristaps Karlsons : https://github.com/skakri\n//! author : Jānis Elmeris : https://github.com/JanisE\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar units = {\n 'm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),\n 'mm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),\n 'h': 'stundas_stundām_stunda_stundas'.split('_'),\n 'hh': 'stundas_stundām_stunda_stundas'.split('_'),\n 'd': 'dienas_dienām_diena_dienas'.split('_'),\n 'dd': 'dienas_dienām_diena_dienas'.split('_'),\n 'M': 'mēneša_mēnešiem_mēnesis_mēneši'.split('_'),\n 'MM': 'mēneša_mēnešiem_mēnesis_mēneši'.split('_'),\n 'y': 'gada_gadiem_gads_gadi'.split('_'),\n 'yy': 'gada_gadiem_gads_gadi'.split('_')\n};\n/**\n * @param withoutSuffix boolean true = a length of time; false = before/after a period of time.\n */\nfunction format(forms, number, withoutSuffix) {\n if (withoutSuffix) {\n // E.g. \"21 minūte\", \"3 minūtes\".\n return number % 10 === 1 && number % 100 !== 11 ? forms[2] : forms[3];\n } else {\n // E.g. \"21 minūtes\" as in \"pēc 21 minūtes\".\n // E.g. \"3 minūtēm\" as in \"pēc 3 minūtēm\".\n return number % 10 === 1 && number % 100 !== 11 ? forms[0] : forms[1];\n }\n}\nfunction relativeTimeWithPlural(number, withoutSuffix, key) {\n return number + ' ' + format(units[key], number, withoutSuffix);\n}\nfunction relativeTimeWithSingular(number, withoutSuffix, key) {\n return format(units[key], number, withoutSuffix);\n}\nfunction relativeSeconds(number, withoutSuffix) {\n return withoutSuffix ? 'dažas sekundes' : 'dažām sekundēm';\n}\n\nvar lv = moment.defineLocale('lv', {\n months : 'janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris'.split('_'),\n monthsShort : 'jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec'.split('_'),\n weekdays : 'svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena'.split('_'),\n weekdaysShort : 'Sv_P_O_T_C_Pk_S'.split('_'),\n weekdaysMin : 'Sv_P_O_T_C_Pk_S'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY.',\n LL : 'YYYY. [gada] D. MMMM',\n LLL : 'YYYY. [gada] D. MMMM, HH:mm',\n LLLL : 'YYYY. [gada] D. MMMM, dddd, HH:mm'\n },\n calendar : {\n sameDay : '[Šodien pulksten] LT',\n nextDay : '[Rīt pulksten] LT',\n nextWeek : 'dddd [pulksten] LT',\n lastDay : '[Vakar pulksten] LT',\n lastWeek : '[Pagājušā] dddd [pulksten] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'pēc %s',\n past : 'pirms %s',\n s : relativeSeconds,\n m : relativeTimeWithSingular,\n mm : relativeTimeWithPlural,\n h : relativeTimeWithSingular,\n hh : relativeTimeWithPlural,\n d : relativeTimeWithSingular,\n dd : relativeTimeWithPlural,\n M : relativeTimeWithSingular,\n MM : relativeTimeWithPlural,\n y : relativeTimeWithSingular,\n yy : relativeTimeWithPlural\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn lv;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/lv.js\n// module id = 582\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Montenegrin [me]\n//! author : Miodrag Nikač : https://github.com/miodragnikac\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar translator = {\n words: { //Different grammatical cases\n m: ['jedan minut', 'jednog minuta'],\n mm: ['minut', 'minuta', 'minuta'],\n h: ['jedan sat', 'jednog sata'],\n hh: ['sat', 'sata', 'sati'],\n dd: ['dan', 'dana', 'dana'],\n MM: ['mjesec', 'mjeseca', 'mjeseci'],\n yy: ['godina', 'godine', 'godina']\n },\n correctGrammaticalCase: function (number, wordKey) {\n return number === 1 ? wordKey[0] : (number >= 2 && number <= 4 ? wordKey[1] : wordKey[2]);\n },\n translate: function (number, withoutSuffix, key) {\n var wordKey = translator.words[key];\n if (key.length === 1) {\n return withoutSuffix ? wordKey[0] : wordKey[1];\n } else {\n return number + ' ' + translator.correctGrammaticalCase(number, wordKey);\n }\n }\n};\n\nvar me = moment.defineLocale('me', {\n months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split('_'),\n monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split('_'),\n monthsParseExact : true,\n weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'),\n weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),\n weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),\n weekdaysParseExact : true,\n longDateFormat: {\n LT: 'H:mm',\n LTS : 'H:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY H:mm',\n LLLL: 'dddd, D. MMMM YYYY H:mm'\n },\n calendar: {\n sameDay: '[danas u] LT',\n nextDay: '[sjutra u] LT',\n\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[u] [nedjelju] [u] LT';\n case 3:\n return '[u] [srijedu] [u] LT';\n case 6:\n return '[u] [subotu] [u] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[u] dddd [u] LT';\n }\n },\n lastDay : '[juče u] LT',\n lastWeek : function () {\n var lastWeekDays = [\n '[prošle] [nedjelje] [u] LT',\n '[prošlog] [ponedjeljka] [u] LT',\n '[prošlog] [utorka] [u] LT',\n '[prošle] [srijede] [u] LT',\n '[prošlog] [četvrtka] [u] LT',\n '[prošlog] [petka] [u] LT',\n '[prošle] [subote] [u] LT'\n ];\n return lastWeekDays[this.day()];\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'za %s',\n past : 'prije %s',\n s : 'nekoliko sekundi',\n m : translator.translate,\n mm : translator.translate,\n h : translator.translate,\n hh : translator.translate,\n d : 'dan',\n dd : translator.translate,\n M : 'mjesec',\n MM : translator.translate,\n y : 'godinu',\n yy : translator.translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn me;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/me.js\n// module id = 583\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Maori [mi]\n//! author : John Corrigan : https://github.com/johnideal\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar mi = moment.defineLocale('mi', {\n months: 'Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea'.split('_'),\n monthsShort: 'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split('_'),\n monthsRegex: /(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,\n monthsStrictRegex: /(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,\n monthsShortRegex: /(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,\n monthsShortStrictRegex: /(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,2}/i,\n weekdays: 'Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei'.split('_'),\n weekdaysShort: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),\n weekdaysMin: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY [i] HH:mm',\n LLLL: 'dddd, D MMMM YYYY [i] HH:mm'\n },\n calendar: {\n sameDay: '[i teie mahana, i] LT',\n nextDay: '[apopo i] LT',\n nextWeek: 'dddd [i] LT',\n lastDay: '[inanahi i] LT',\n lastWeek: 'dddd [whakamutunga i] LT',\n sameElse: 'L'\n },\n relativeTime: {\n future: 'i roto i %s',\n past: '%s i mua',\n s: 'te hēkona ruarua',\n m: 'he meneti',\n mm: '%d meneti',\n h: 'te haora',\n hh: '%d haora',\n d: 'he ra',\n dd: '%d ra',\n M: 'he marama',\n MM: '%d marama',\n y: 'he tau',\n yy: '%d tau'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}º/,\n ordinal: '%dº',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn mi;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/mi.js\n// module id = 584\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Macedonian [mk]\n//! author : Borislav Mickov : https://github.com/B0k0\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar mk = moment.defineLocale('mk', {\n months : 'јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември'.split('_'),\n monthsShort : 'јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек'.split('_'),\n weekdays : 'недела_понеделник_вторник_среда_четврток_петок_сабота'.split('_'),\n weekdaysShort : 'нед_пон_вто_сре_чет_пет_саб'.split('_'),\n weekdaysMin : 'нe_пo_вт_ср_че_пе_сa'.split('_'),\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'D.MM.YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY H:mm',\n LLLL : 'dddd, D MMMM YYYY H:mm'\n },\n calendar : {\n sameDay : '[Денес во] LT',\n nextDay : '[Утре во] LT',\n nextWeek : '[Во] dddd [во] LT',\n lastDay : '[Вчера во] LT',\n lastWeek : function () {\n switch (this.day()) {\n case 0:\n case 3:\n case 6:\n return '[Изминатата] dddd [во] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[Изминатиот] dddd [во] LT';\n }\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'после %s',\n past : 'пред %s',\n s : 'неколку секунди',\n m : 'минута',\n mm : '%d минути',\n h : 'час',\n hh : '%d часа',\n d : 'ден',\n dd : '%d дена',\n M : 'месец',\n MM : '%d месеци',\n y : 'година',\n yy : '%d години'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(ев|ен|ти|ви|ри|ми)/,\n ordinal : function (number) {\n var lastDigit = number % 10,\n last2Digits = number % 100;\n if (number === 0) {\n return number + '-ев';\n } else if (last2Digits === 0) {\n return number + '-ен';\n } else if (last2Digits > 10 && last2Digits < 20) {\n return number + '-ти';\n } else if (lastDigit === 1) {\n return number + '-ви';\n } else if (lastDigit === 2) {\n return number + '-ри';\n } else if (lastDigit === 7 || lastDigit === 8) {\n return number + '-ми';\n } else {\n return number + '-ти';\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn mk;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/mk.js\n// module id = 585\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Malayalam [ml]\n//! author : Floyd Pink : https://github.com/floydpink\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar ml = moment.defineLocale('ml', {\n months : 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split('_'),\n monthsShort : 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split('_'),\n monthsParseExact : true,\n weekdays : 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split('_'),\n weekdaysShort : 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split('_'),\n weekdaysMin : 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split('_'),\n longDateFormat : {\n LT : 'A h:mm -നു',\n LTS : 'A h:mm:ss -നു',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY, A h:mm -നു',\n LLLL : 'dddd, D MMMM YYYY, A h:mm -നു'\n },\n calendar : {\n sameDay : '[ഇന്ന്] LT',\n nextDay : '[നാളെ] LT',\n nextWeek : 'dddd, LT',\n lastDay : '[ഇന്നലെ] LT',\n lastWeek : '[കഴിഞ്ഞ] dddd, LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s കഴിഞ്ഞ്',\n past : '%s മുൻപ്',\n s : 'അൽപ നിമിഷങ്ങൾ',\n m : 'ഒരു മിനിറ്റ്',\n mm : '%d മിനിറ്റ്',\n h : 'ഒരു മണിക്കൂർ',\n hh : '%d മണിക്കൂർ',\n d : 'ഒരു ദിവസം',\n dd : '%d ദിവസം',\n M : 'ഒരു മാസം',\n MM : '%d മാസം',\n y : 'ഒരു വർഷം',\n yy : '%d വർഷം'\n },\n meridiemParse: /രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if ((meridiem === 'രാത്രി' && hour >= 4) ||\n meridiem === 'ഉച്ച കഴിഞ്ഞ്' ||\n meridiem === 'വൈകുന്നേരം') {\n return hour + 12;\n } else {\n return hour;\n }\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'രാത്രി';\n } else if (hour < 12) {\n return 'രാവിലെ';\n } else if (hour < 17) {\n return 'ഉച്ച കഴിഞ്ഞ്';\n } else if (hour < 20) {\n return 'വൈകുന്നേരം';\n } else {\n return 'രാത്രി';\n }\n }\n});\n\nreturn ml;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ml.js\n// module id = 586\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Marathi [mr]\n//! author : Harshad Kale : https://github.com/kalehv\n//! author : Vivek Athalye : https://github.com/vnathalye\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '१',\n '2': '२',\n '3': '३',\n '4': '४',\n '5': '५',\n '6': '६',\n '7': '७',\n '8': '८',\n '9': '९',\n '0': '०'\n};\nvar numberMap = {\n '१': '1',\n '२': '2',\n '३': '3',\n '४': '4',\n '५': '5',\n '६': '6',\n '७': '7',\n '८': '8',\n '९': '9',\n '०': '0'\n};\n\nfunction relativeTimeMr(number, withoutSuffix, string, isFuture)\n{\n var output = '';\n if (withoutSuffix) {\n switch (string) {\n case 's': output = 'काही सेकंद'; break;\n case 'm': output = 'एक मिनिट'; break;\n case 'mm': output = '%d मिनिटे'; break;\n case 'h': output = 'एक तास'; break;\n case 'hh': output = '%d तास'; break;\n case 'd': output = 'एक दिवस'; break;\n case 'dd': output = '%d दिवस'; break;\n case 'M': output = 'एक महिना'; break;\n case 'MM': output = '%d महिने'; break;\n case 'y': output = 'एक वर्ष'; break;\n case 'yy': output = '%d वर्षे'; break;\n }\n }\n else {\n switch (string) {\n case 's': output = 'काही सेकंदां'; break;\n case 'm': output = 'एका मिनिटा'; break;\n case 'mm': output = '%d मिनिटां'; break;\n case 'h': output = 'एका तासा'; break;\n case 'hh': output = '%d तासां'; break;\n case 'd': output = 'एका दिवसा'; break;\n case 'dd': output = '%d दिवसां'; break;\n case 'M': output = 'एका महिन्या'; break;\n case 'MM': output = '%d महिन्यां'; break;\n case 'y': output = 'एका वर्षा'; break;\n case 'yy': output = '%d वर्षां'; break;\n }\n }\n return output.replace(/%d/i, number);\n}\n\nvar mr = moment.defineLocale('mr', {\n months : 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split('_'),\n monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split('_'),\n monthsParseExact : true,\n weekdays : 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),\n weekdaysShort : 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'),\n weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'),\n longDateFormat : {\n LT : 'A h:mm वाजता',\n LTS : 'A h:mm:ss वाजता',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY, A h:mm वाजता',\n LLLL : 'dddd, D MMMM YYYY, A h:mm वाजता'\n },\n calendar : {\n sameDay : '[आज] LT',\n nextDay : '[उद्या] LT',\n nextWeek : 'dddd, LT',\n lastDay : '[काल] LT',\n lastWeek: '[मागील] dddd, LT',\n sameElse : 'L'\n },\n relativeTime : {\n future: '%sमध्ये',\n past: '%sपूर्वी',\n s: relativeTimeMr,\n m: relativeTimeMr,\n mm: relativeTimeMr,\n h: relativeTimeMr,\n hh: relativeTimeMr,\n d: relativeTimeMr,\n dd: relativeTimeMr,\n M: relativeTimeMr,\n MM: relativeTimeMr,\n y: relativeTimeMr,\n yy: relativeTimeMr\n },\n preparse: function (string) {\n return string.replace(/[१२३४५६७८९०]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n meridiemParse: /रात्री|सकाळी|दुपारी|सायंकाळी/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'रात्री') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'सकाळी') {\n return hour;\n } else if (meridiem === 'दुपारी') {\n return hour >= 10 ? hour : hour + 12;\n } else if (meridiem === 'सायंकाळी') {\n return hour + 12;\n }\n },\n meridiem: function (hour, minute, isLower) {\n if (hour < 4) {\n return 'रात्री';\n } else if (hour < 10) {\n return 'सकाळी';\n } else if (hour < 17) {\n return 'दुपारी';\n } else if (hour < 20) {\n return 'सायंकाळी';\n } else {\n return 'रात्री';\n }\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 6 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn mr;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/mr.js\n// module id = 587\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Malay [ms]\n//! author : Weldan Jamili : https://github.com/weldan\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar ms = moment.defineLocale('ms', {\n months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'),\n monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),\n weekdays : 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),\n weekdaysShort : 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),\n weekdaysMin : 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),\n longDateFormat : {\n LT : 'HH.mm',\n LTS : 'HH.mm.ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY [pukul] HH.mm',\n LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'\n },\n meridiemParse: /pagi|tengahari|petang|malam/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'pagi') {\n return hour;\n } else if (meridiem === 'tengahari') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === 'petang' || meridiem === 'malam') {\n return hour + 12;\n }\n },\n meridiem : function (hours, minutes, isLower) {\n if (hours < 11) {\n return 'pagi';\n } else if (hours < 15) {\n return 'tengahari';\n } else if (hours < 19) {\n return 'petang';\n } else {\n return 'malam';\n }\n },\n calendar : {\n sameDay : '[Hari ini pukul] LT',\n nextDay : '[Esok pukul] LT',\n nextWeek : 'dddd [pukul] LT',\n lastDay : '[Kelmarin pukul] LT',\n lastWeek : 'dddd [lepas pukul] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'dalam %s',\n past : '%s yang lepas',\n s : 'beberapa saat',\n m : 'seminit',\n mm : '%d minit',\n h : 'sejam',\n hh : '%d jam',\n d : 'sehari',\n dd : '%d hari',\n M : 'sebulan',\n MM : '%d bulan',\n y : 'setahun',\n yy : '%d tahun'\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn ms;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ms.js\n// module id = 588\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Malay [ms-my]\n//! note : DEPRECATED, the correct one is [ms]\n//! author : Weldan Jamili : https://github.com/weldan\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar msMy = moment.defineLocale('ms-my', {\n months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'),\n monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),\n weekdays : 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),\n weekdaysShort : 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),\n weekdaysMin : 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),\n longDateFormat : {\n LT : 'HH.mm',\n LTS : 'HH.mm.ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY [pukul] HH.mm',\n LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'\n },\n meridiemParse: /pagi|tengahari|petang|malam/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'pagi') {\n return hour;\n } else if (meridiem === 'tengahari') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === 'petang' || meridiem === 'malam') {\n return hour + 12;\n }\n },\n meridiem : function (hours, minutes, isLower) {\n if (hours < 11) {\n return 'pagi';\n } else if (hours < 15) {\n return 'tengahari';\n } else if (hours < 19) {\n return 'petang';\n } else {\n return 'malam';\n }\n },\n calendar : {\n sameDay : '[Hari ini pukul] LT',\n nextDay : '[Esok pukul] LT',\n nextWeek : 'dddd [pukul] LT',\n lastDay : '[Kelmarin pukul] LT',\n lastWeek : 'dddd [lepas pukul] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'dalam %s',\n past : '%s yang lepas',\n s : 'beberapa saat',\n m : 'seminit',\n mm : '%d minit',\n h : 'sejam',\n hh : '%d jam',\n d : 'sehari',\n dd : '%d hari',\n M : 'sebulan',\n MM : '%d bulan',\n y : 'setahun',\n yy : '%d tahun'\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn msMy;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ms-my.js\n// module id = 589\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Burmese [my]\n//! author : Squar team, mysquar.com\n//! author : David Rossellat : https://github.com/gholadr\n//! author : Tin Aung Lin : https://github.com/thanyawzinmin\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '၁',\n '2': '၂',\n '3': '၃',\n '4': '၄',\n '5': '၅',\n '6': '၆',\n '7': '၇',\n '8': '၈',\n '9': '၉',\n '0': '၀'\n};\nvar numberMap = {\n '၁': '1',\n '၂': '2',\n '၃': '3',\n '၄': '4',\n '၅': '5',\n '၆': '6',\n '၇': '7',\n '၈': '8',\n '၉': '9',\n '၀': '0'\n};\n\nvar my = moment.defineLocale('my', {\n months: 'ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ'.split('_'),\n monthsShort: 'ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ'.split('_'),\n weekdays: 'တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ'.split('_'),\n weekdaysShort: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),\n weekdaysMin: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),\n\n longDateFormat: {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L: 'DD/MM/YYYY',\n LL: 'D MMMM YYYY',\n LLL: 'D MMMM YYYY HH:mm',\n LLLL: 'dddd D MMMM YYYY HH:mm'\n },\n calendar: {\n sameDay: '[ယနေ.] LT [မှာ]',\n nextDay: '[မနက်ဖြန်] LT [မှာ]',\n nextWeek: 'dddd LT [မှာ]',\n lastDay: '[မနေ.က] LT [မှာ]',\n lastWeek: '[ပြီးခဲ့သော] dddd LT [မှာ]',\n sameElse: 'L'\n },\n relativeTime: {\n future: 'လာမည့် %s မှာ',\n past: 'လွန်ခဲ့သော %s က',\n s: 'စက္ကန်.အနည်းငယ်',\n m: 'တစ်မိနစ်',\n mm: '%d မိနစ်',\n h: 'တစ်နာရီ',\n hh: '%d နာရီ',\n d: 'တစ်ရက်',\n dd: '%d ရက်',\n M: 'တစ်လ',\n MM: '%d လ',\n y: 'တစ်နှစ်',\n yy: '%d နှစ်'\n },\n preparse: function (string) {\n return string.replace(/[၁၂၃၄၅၆၇၈၉၀]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n week: {\n dow: 1, // Monday is the first day of the week.\n doy: 4 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn my;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/my.js\n// module id = 590\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Norwegian Bokmål [nb]\n//! authors : Espen Hovlandsdal : https://github.com/rexxars\n//! Sigurd Gartmann : https://github.com/sigurdga\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar nb = moment.defineLocale('nb', {\n months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'),\n monthsShort : 'jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.'.split('_'),\n monthsParseExact : true,\n weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),\n weekdaysShort : 'sø._ma._ti._on._to._fr._lø.'.split('_'),\n weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY [kl.] HH:mm',\n LLLL : 'dddd D. MMMM YYYY [kl.] HH:mm'\n },\n calendar : {\n sameDay: '[i dag kl.] LT',\n nextDay: '[i morgen kl.] LT',\n nextWeek: 'dddd [kl.] LT',\n lastDay: '[i går kl.] LT',\n lastWeek: '[forrige] dddd [kl.] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'om %s',\n past : '%s siden',\n s : 'noen sekunder',\n m : 'ett minutt',\n mm : '%d minutter',\n h : 'en time',\n hh : '%d timer',\n d : 'en dag',\n dd : '%d dager',\n M : 'en måned',\n MM : '%d måneder',\n y : 'ett år',\n yy : '%d år'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn nb;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/nb.js\n// module id = 591\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Nepalese [ne]\n//! author : suvash : https://github.com/suvash\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '१',\n '2': '२',\n '3': '३',\n '4': '४',\n '5': '५',\n '6': '६',\n '7': '७',\n '8': '८',\n '9': '९',\n '0': '०'\n};\nvar numberMap = {\n '१': '1',\n '२': '2',\n '३': '3',\n '४': '4',\n '५': '5',\n '६': '6',\n '७': '7',\n '८': '8',\n '९': '9',\n '०': '0'\n};\n\nvar ne = moment.defineLocale('ne', {\n months : 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split('_'),\n monthsShort : 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split('_'),\n monthsParseExact : true,\n weekdays : 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split('_'),\n weekdaysShort : 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'),\n weekdaysMin : 'आ._सो._मं._बु._बि._शु._श.'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'Aको h:mm बजे',\n LTS : 'Aको h:mm:ss बजे',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY, Aको h:mm बजे',\n LLLL : 'dddd, D MMMM YYYY, Aको h:mm बजे'\n },\n preparse: function (string) {\n return string.replace(/[१२३४५६७८९०]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n meridiemParse: /राति|बिहान|दिउँसो|साँझ/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'राति') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'बिहान') {\n return hour;\n } else if (meridiem === 'दिउँसो') {\n return hour >= 10 ? hour : hour + 12;\n } else if (meridiem === 'साँझ') {\n return hour + 12;\n }\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 3) {\n return 'राति';\n } else if (hour < 12) {\n return 'बिहान';\n } else if (hour < 16) {\n return 'दिउँसो';\n } else if (hour < 20) {\n return 'साँझ';\n } else {\n return 'राति';\n }\n },\n calendar : {\n sameDay : '[आज] LT',\n nextDay : '[भोलि] LT',\n nextWeek : '[आउँदो] dddd[,] LT',\n lastDay : '[हिजो] LT',\n lastWeek : '[गएको] dddd[,] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%sमा',\n past : '%s अगाडि',\n s : 'केही क्षण',\n m : 'एक मिनेट',\n mm : '%d मिनेट',\n h : 'एक घण्टा',\n hh : '%d घण्टा',\n d : 'एक दिन',\n dd : '%d दिन',\n M : 'एक महिना',\n MM : '%d महिना',\n y : 'एक बर्ष',\n yy : '%d बर्ष'\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 6 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn ne;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ne.js\n// module id = 592\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Dutch [nl]\n//! author : Joris Röling : https://github.com/jorisroling\n//! author : Jacob Middag : https://github.com/middagj\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_');\nvar monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_');\n\nvar monthsParse = [/^jan/i, /^feb/i, /^maart|mrt.?$/i, /^apr/i, /^mei$/i, /^jun[i.]?$/i, /^jul[i.]?$/i, /^aug/i, /^sep/i, /^okt/i, /^nov/i, /^dec/i];\nvar monthsRegex = /^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;\n\nvar nl = moment.defineLocale('nl', {\n months : 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),\n monthsShort : function (m, format) {\n if (!m) {\n return monthsShortWithDots;\n } else if (/-MMM-/.test(format)) {\n return monthsShortWithoutDots[m.month()];\n } else {\n return monthsShortWithDots[m.month()];\n }\n },\n\n monthsRegex: monthsRegex,\n monthsShortRegex: monthsRegex,\n monthsStrictRegex: /^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,\n monthsShortStrictRegex: /^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,\n\n monthsParse : monthsParse,\n longMonthsParse : monthsParse,\n shortMonthsParse : monthsParse,\n\n weekdays : 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),\n weekdaysShort : 'zo._ma._di._wo._do._vr._za.'.split('_'),\n weekdaysMin : 'Zo_Ma_Di_Wo_Do_Vr_Za'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD-MM-YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[vandaag om] LT',\n nextDay: '[morgen om] LT',\n nextWeek: 'dddd [om] LT',\n lastDay: '[gisteren om] LT',\n lastWeek: '[afgelopen] dddd [om] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'over %s',\n past : '%s geleden',\n s : 'een paar seconden',\n m : 'één minuut',\n mm : '%d minuten',\n h : 'één uur',\n hh : '%d uur',\n d : 'één dag',\n dd : '%d dagen',\n M : 'één maand',\n MM : '%d maanden',\n y : 'één jaar',\n yy : '%d jaar'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(ste|de)/,\n ordinal : function (number) {\n return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn nl;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/nl.js\n// module id = 593\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Dutch (Belgium) [nl-be]\n//! author : Joris Röling : https://github.com/jorisroling\n//! author : Jacob Middag : https://github.com/middagj\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_');\nvar monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_');\n\nvar monthsParse = [/^jan/i, /^feb/i, /^maart|mrt.?$/i, /^apr/i, /^mei$/i, /^jun[i.]?$/i, /^jul[i.]?$/i, /^aug/i, /^sep/i, /^okt/i, /^nov/i, /^dec/i];\nvar monthsRegex = /^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;\n\nvar nlBe = moment.defineLocale('nl-be', {\n months : 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),\n monthsShort : function (m, format) {\n if (!m) {\n return monthsShortWithDots;\n } else if (/-MMM-/.test(format)) {\n return monthsShortWithoutDots[m.month()];\n } else {\n return monthsShortWithDots[m.month()];\n }\n },\n\n monthsRegex: monthsRegex,\n monthsShortRegex: monthsRegex,\n monthsStrictRegex: /^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,\n monthsShortStrictRegex: /^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,\n\n monthsParse : monthsParse,\n longMonthsParse : monthsParse,\n shortMonthsParse : monthsParse,\n\n weekdays : 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),\n weekdaysShort : 'zo._ma._di._wo._do._vr._za.'.split('_'),\n weekdaysMin : 'Zo_Ma_Di_Wo_Do_Vr_Za'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[vandaag om] LT',\n nextDay: '[morgen om] LT',\n nextWeek: 'dddd [om] LT',\n lastDay: '[gisteren om] LT',\n lastWeek: '[afgelopen] dddd [om] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'over %s',\n past : '%s geleden',\n s : 'een paar seconden',\n m : 'één minuut',\n mm : '%d minuten',\n h : 'één uur',\n hh : '%d uur',\n d : 'één dag',\n dd : '%d dagen',\n M : 'één maand',\n MM : '%d maanden',\n y : 'één jaar',\n yy : '%d jaar'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(ste|de)/,\n ordinal : function (number) {\n return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn nlBe;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/nl-be.js\n// module id = 594\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Nynorsk [nn]\n//! author : https://github.com/mechuwind\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar nn = moment.defineLocale('nn', {\n months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'),\n monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),\n weekdays : 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'),\n weekdaysShort : 'sun_mån_tys_ons_tor_fre_lau'.split('_'),\n weekdaysMin : 'su_må_ty_on_to_fr_lø'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY [kl.] H:mm',\n LLLL : 'dddd D. MMMM YYYY [kl.] HH:mm'\n },\n calendar : {\n sameDay: '[I dag klokka] LT',\n nextDay: '[I morgon klokka] LT',\n nextWeek: 'dddd [klokka] LT',\n lastDay: '[I går klokka] LT',\n lastWeek: '[Føregåande] dddd [klokka] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'om %s',\n past : '%s sidan',\n s : 'nokre sekund',\n m : 'eit minutt',\n mm : '%d minutt',\n h : 'ein time',\n hh : '%d timar',\n d : 'ein dag',\n dd : '%d dagar',\n M : 'ein månad',\n MM : '%d månader',\n y : 'eit år',\n yy : '%d år'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn nn;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/nn.js\n// module id = 595\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Punjabi (India) [pa-in]\n//! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '੧',\n '2': '੨',\n '3': '੩',\n '4': '੪',\n '5': '੫',\n '6': '੬',\n '7': '੭',\n '8': '੮',\n '9': '੯',\n '0': '੦'\n};\nvar numberMap = {\n '੧': '1',\n '੨': '2',\n '੩': '3',\n '੪': '4',\n '੫': '5',\n '੬': '6',\n '੭': '7',\n '੮': '8',\n '੯': '9',\n '੦': '0'\n};\n\nvar paIn = moment.defineLocale('pa-in', {\n // There are months name as per Nanakshahi Calender but they are not used as rigidly in modern Punjabi.\n months : 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split('_'),\n monthsShort : 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split('_'),\n weekdays : 'ਐਤਵਾਰ_ਸੋਮਵਾਰ_ਮੰਗਲਵਾਰ_ਬੁਧਵਾਰ_ਵੀਰਵਾਰ_ਸ਼ੁੱਕਰਵਾਰ_ਸ਼ਨੀਚਰਵਾਰ'.split('_'),\n weekdaysShort : 'ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ'.split('_'),\n weekdaysMin : 'ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ'.split('_'),\n longDateFormat : {\n LT : 'A h:mm ਵਜੇ',\n LTS : 'A h:mm:ss ਵਜੇ',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY, A h:mm ਵਜੇ',\n LLLL : 'dddd, D MMMM YYYY, A h:mm ਵਜੇ'\n },\n calendar : {\n sameDay : '[ਅਜ] LT',\n nextDay : '[ਕਲ] LT',\n nextWeek : 'dddd, LT',\n lastDay : '[ਕਲ] LT',\n lastWeek : '[ਪਿਛਲੇ] dddd, LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s ਵਿੱਚ',\n past : '%s ਪਿਛਲੇ',\n s : 'ਕੁਝ ਸਕਿੰਟ',\n m : 'ਇਕ ਮਿੰਟ',\n mm : '%d ਮਿੰਟ',\n h : 'ਇੱਕ ਘੰਟਾ',\n hh : '%d ਘੰਟੇ',\n d : 'ਇੱਕ ਦਿਨ',\n dd : '%d ਦਿਨ',\n M : 'ਇੱਕ ਮਹੀਨਾ',\n MM : '%d ਮਹੀਨੇ',\n y : 'ਇੱਕ ਸਾਲ',\n yy : '%d ਸਾਲ'\n },\n preparse: function (string) {\n return string.replace(/[੧੨੩੪੫੬੭੮੯੦]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n // Punjabi notation for meridiems are quite fuzzy in practice. While there exists\n // a rigid notion of a 'Pahar' it is not used as rigidly in modern Punjabi.\n meridiemParse: /ਰਾਤ|ਸਵੇਰ|ਦੁਪਹਿਰ|ਸ਼ਾਮ/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'ਰਾਤ') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'ਸਵੇਰ') {\n return hour;\n } else if (meridiem === 'ਦੁਪਹਿਰ') {\n return hour >= 10 ? hour : hour + 12;\n } else if (meridiem === 'ਸ਼ਾਮ') {\n return hour + 12;\n }\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'ਰਾਤ';\n } else if (hour < 10) {\n return 'ਸਵੇਰ';\n } else if (hour < 17) {\n return 'ਦੁਪਹਿਰ';\n } else if (hour < 20) {\n return 'ਸ਼ਾਮ';\n } else {\n return 'ਰਾਤ';\n }\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 6 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn paIn;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/pa-in.js\n// module id = 596\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Polish [pl]\n//! author : Rafal Hirsz : https://github.com/evoL\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split('_');\nvar monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split('_');\nfunction plural(n) {\n return (n % 10 < 5) && (n % 10 > 1) && ((~~(n / 10) % 10) !== 1);\n}\nfunction translate(number, withoutSuffix, key) {\n var result = number + ' ';\n switch (key) {\n case 'm':\n return withoutSuffix ? 'minuta' : 'minutę';\n case 'mm':\n return result + (plural(number) ? 'minuty' : 'minut');\n case 'h':\n return withoutSuffix ? 'godzina' : 'godzinę';\n case 'hh':\n return result + (plural(number) ? 'godziny' : 'godzin');\n case 'MM':\n return result + (plural(number) ? 'miesiące' : 'miesięcy');\n case 'yy':\n return result + (plural(number) ? 'lata' : 'lat');\n }\n}\n\nvar pl = moment.defineLocale('pl', {\n months : function (momentToFormat, format) {\n if (!momentToFormat) {\n return monthsNominative;\n } else if (format === '') {\n // Hack: if format empty we know this is used to generate\n // RegExp by moment. Give then back both valid forms of months\n // in RegExp ready format.\n return '(' + monthsSubjective[momentToFormat.month()] + '|' + monthsNominative[momentToFormat.month()] + ')';\n } else if (/D MMMM/.test(format)) {\n return monthsSubjective[momentToFormat.month()];\n } else {\n return monthsNominative[momentToFormat.month()];\n }\n },\n monthsShort : 'sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru'.split('_'),\n weekdays : 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split('_'),\n weekdaysShort : 'ndz_pon_wt_śr_czw_pt_sob'.split('_'),\n weekdaysMin : 'Nd_Pn_Wt_Śr_Cz_Pt_So'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[Dziś o] LT',\n nextDay: '[Jutro o] LT',\n nextWeek: '[W] dddd [o] LT',\n lastDay: '[Wczoraj o] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return '[W zeszłą niedzielę o] LT';\n case 3:\n return '[W zeszłą środę o] LT';\n case 6:\n return '[W zeszłą sobotę o] LT';\n default:\n return '[W zeszły] dddd [o] LT';\n }\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : 'za %s',\n past : '%s temu',\n s : 'kilka sekund',\n m : translate,\n mm : translate,\n h : translate,\n hh : translate,\n d : '1 dzień',\n dd : '%d dni',\n M : 'miesiąc',\n MM : translate,\n y : 'rok',\n yy : translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn pl;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/pl.js\n// module id = 597\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Portuguese [pt]\n//! author : Jefferson : https://github.com/jalex79\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar pt = moment.defineLocale('pt', {\n months : 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro'.split('_'),\n monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),\n weekdays : 'Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado'.split('_'),\n weekdaysShort : 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),\n weekdaysMin : 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D [de] MMMM [de] YYYY',\n LLL : 'D [de] MMMM [de] YYYY HH:mm',\n LLLL : 'dddd, D [de] MMMM [de] YYYY HH:mm'\n },\n calendar : {\n sameDay: '[Hoje às] LT',\n nextDay: '[Amanhã às] LT',\n nextWeek: 'dddd [às] LT',\n lastDay: '[Ontem às] LT',\n lastWeek: function () {\n return (this.day() === 0 || this.day() === 6) ?\n '[Último] dddd [às] LT' : // Saturday + Sunday\n '[Última] dddd [às] LT'; // Monday - Friday\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : 'em %s',\n past : 'há %s',\n s : 'segundos',\n m : 'um minuto',\n mm : '%d minutos',\n h : 'uma hora',\n hh : '%d horas',\n d : 'um dia',\n dd : '%d dias',\n M : 'um mês',\n MM : '%d meses',\n y : 'um ano',\n yy : '%d anos'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}º/,\n ordinal : '%dº',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn pt;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/pt.js\n// module id = 598\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Portuguese (Brazil) [pt-br]\n//! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar ptBr = moment.defineLocale('pt-br', {\n months : 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro'.split('_'),\n monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),\n weekdays : 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split('_'),\n weekdaysShort : 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),\n weekdaysMin : 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D [de] MMMM [de] YYYY',\n LLL : 'D [de] MMMM [de] YYYY [às] HH:mm',\n LLLL : 'dddd, D [de] MMMM [de] YYYY [às] HH:mm'\n },\n calendar : {\n sameDay: '[Hoje às] LT',\n nextDay: '[Amanhã às] LT',\n nextWeek: 'dddd [às] LT',\n lastDay: '[Ontem às] LT',\n lastWeek: function () {\n return (this.day() === 0 || this.day() === 6) ?\n '[Último] dddd [às] LT' : // Saturday + Sunday\n '[Última] dddd [às] LT'; // Monday - Friday\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : 'em %s',\n past : '%s atrás',\n s : 'poucos segundos',\n m : 'um minuto',\n mm : '%d minutos',\n h : 'uma hora',\n hh : '%d horas',\n d : 'um dia',\n dd : '%d dias',\n M : 'um mês',\n MM : '%d meses',\n y : 'um ano',\n yy : '%d anos'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}º/,\n ordinal : '%dº'\n});\n\nreturn ptBr;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/pt-br.js\n// module id = 599\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Romanian [ro]\n//! author : Vlad Gurdiga : https://github.com/gurdiga\n//! author : Valentin Agachi : https://github.com/avaly\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction relativeTimeWithPlural(number, withoutSuffix, key) {\n var format = {\n 'mm': 'minute',\n 'hh': 'ore',\n 'dd': 'zile',\n 'MM': 'luni',\n 'yy': 'ani'\n },\n separator = ' ';\n if (number % 100 >= 20 || (number >= 100 && number % 100 === 0)) {\n separator = ' de ';\n }\n return number + separator + format[key];\n}\n\nvar ro = moment.defineLocale('ro', {\n months : 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split('_'),\n monthsShort : 'ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split('_'),\n monthsParseExact: true,\n weekdays : 'duminică_luni_marți_miercuri_joi_vineri_sâmbătă'.split('_'),\n weekdaysShort : 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'),\n weekdaysMin : 'Du_Lu_Ma_Mi_Jo_Vi_Sâ'.split('_'),\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY H:mm',\n LLLL : 'dddd, D MMMM YYYY H:mm'\n },\n calendar : {\n sameDay: '[azi la] LT',\n nextDay: '[mâine la] LT',\n nextWeek: 'dddd [la] LT',\n lastDay: '[ieri la] LT',\n lastWeek: '[fosta] dddd [la] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'peste %s',\n past : '%s în urmă',\n s : 'câteva secunde',\n m : 'un minut',\n mm : relativeTimeWithPlural,\n h : 'o oră',\n hh : relativeTimeWithPlural,\n d : 'o zi',\n dd : relativeTimeWithPlural,\n M : 'o lună',\n MM : relativeTimeWithPlural,\n y : 'un an',\n yy : relativeTimeWithPlural\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn ro;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ro.js\n// module id = 600\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Russian [ru]\n//! author : Viktorminator : https://github.com/Viktorminator\n//! Author : Menelion Elensúle : https://github.com/Oire\n//! author : Коренберг Марк : https://github.com/socketpair\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction plural(word, num) {\n var forms = word.split('_');\n return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]);\n}\nfunction relativeTimeWithPlural(number, withoutSuffix, key) {\n var format = {\n 'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',\n 'hh': 'час_часа_часов',\n 'dd': 'день_дня_дней',\n 'MM': 'месяц_месяца_месяцев',\n 'yy': 'год_года_лет'\n };\n if (key === 'm') {\n return withoutSuffix ? 'минута' : 'минуту';\n }\n else {\n return number + ' ' + plural(format[key], +number);\n }\n}\nvar monthsParse = [/^янв/i, /^фев/i, /^мар/i, /^апр/i, /^ма[йя]/i, /^июн/i, /^июл/i, /^авг/i, /^сен/i, /^окт/i, /^ноя/i, /^дек/i];\n\n// http://new.gramota.ru/spravka/rules/139-prop : § 103\n// Сокращения месяцев: http://new.gramota.ru/spravka/buro/search-answer?s=242637\n// CLDR data: http://www.unicode.org/cldr/charts/28/summary/ru.html#1753\nvar ru = moment.defineLocale('ru', {\n months : {\n format: 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split('_'),\n standalone: 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_')\n },\n monthsShort : {\n // по CLDR именно \"июл.\" и \"июн.\", но какой смысл менять букву на точку ?\n format: 'янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.'.split('_'),\n standalone: 'янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.'.split('_')\n },\n weekdays : {\n standalone: 'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split('_'),\n format: 'воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу'.split('_'),\n isFormat: /\\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\\] ?dddd/\n },\n weekdaysShort : 'вс_пн_вт_ср_чт_пт_сб'.split('_'),\n weekdaysMin : 'вс_пн_вт_ср_чт_пт_сб'.split('_'),\n monthsParse : monthsParse,\n longMonthsParse : monthsParse,\n shortMonthsParse : monthsParse,\n\n // полные названия с падежами, по три буквы, для некоторых, по 4 буквы, сокращения с точкой и без точки\n monthsRegex: /^(январ[ья]|янв\\.?|феврал[ья]|февр?\\.?|марта?|мар\\.?|апрел[ья]|апр\\.?|ма[йя]|июн[ья]|июн\\.?|июл[ья]|июл\\.?|августа?|авг\\.?|сентябр[ья]|сент?\\.?|октябр[ья]|окт\\.?|ноябр[ья]|нояб?\\.?|декабр[ья]|дек\\.?)/i,\n\n // копия предыдущего\n monthsShortRegex: /^(январ[ья]|янв\\.?|феврал[ья]|февр?\\.?|марта?|мар\\.?|апрел[ья]|апр\\.?|ма[йя]|июн[ья]|июн\\.?|июл[ья]|июл\\.?|августа?|авг\\.?|сентябр[ья]|сент?\\.?|октябр[ья]|окт\\.?|ноябр[ья]|нояб?\\.?|декабр[ья]|дек\\.?)/i,\n\n // полные названия с падежами\n monthsStrictRegex: /^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,\n\n // Выражение, которое соотвествует только сокращённым формам\n monthsShortStrictRegex: /^(янв\\.|февр?\\.|мар[т.]|апр\\.|ма[яй]|июн[ья.]|июл[ья.]|авг\\.|сент?\\.|окт\\.|нояб?\\.|дек\\.)/i,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY г.',\n LLL : 'D MMMM YYYY г., HH:mm',\n LLLL : 'dddd, D MMMM YYYY г., HH:mm'\n },\n calendar : {\n sameDay: '[Сегодня в] LT',\n nextDay: '[Завтра в] LT',\n lastDay: '[Вчера в] LT',\n nextWeek: function (now) {\n if (now.week() !== this.week()) {\n switch (this.day()) {\n case 0:\n return '[В следующее] dddd [в] LT';\n case 1:\n case 2:\n case 4:\n return '[В следующий] dddd [в] LT';\n case 3:\n case 5:\n case 6:\n return '[В следующую] dddd [в] LT';\n }\n } else {\n if (this.day() === 2) {\n return '[Во] dddd [в] LT';\n } else {\n return '[В] dddd [в] LT';\n }\n }\n },\n lastWeek: function (now) {\n if (now.week() !== this.week()) {\n switch (this.day()) {\n case 0:\n return '[В прошлое] dddd [в] LT';\n case 1:\n case 2:\n case 4:\n return '[В прошлый] dddd [в] LT';\n case 3:\n case 5:\n case 6:\n return '[В прошлую] dddd [в] LT';\n }\n } else {\n if (this.day() === 2) {\n return '[Во] dddd [в] LT';\n } else {\n return '[В] dddd [в] LT';\n }\n }\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : 'через %s',\n past : '%s назад',\n s : 'несколько секунд',\n m : relativeTimeWithPlural,\n mm : relativeTimeWithPlural,\n h : 'час',\n hh : relativeTimeWithPlural,\n d : 'день',\n dd : relativeTimeWithPlural,\n M : 'месяц',\n MM : relativeTimeWithPlural,\n y : 'год',\n yy : relativeTimeWithPlural\n },\n meridiemParse: /ночи|утра|дня|вечера/i,\n isPM : function (input) {\n return /^(дня|вечера)$/.test(input);\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'ночи';\n } else if (hour < 12) {\n return 'утра';\n } else if (hour < 17) {\n return 'дня';\n } else {\n return 'вечера';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(й|го|я)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'M':\n case 'd':\n case 'DDD':\n return number + '-й';\n case 'D':\n return number + '-го';\n case 'w':\n case 'W':\n return number + '-я';\n default:\n return number;\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn ru;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ru.js\n// module id = 601\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Sindhi [sd]\n//! author : Narain Sagar : https://github.com/narainsagar\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar months = [\n 'جنوري',\n 'فيبروري',\n 'مارچ',\n 'اپريل',\n 'مئي',\n 'جون',\n 'جولاءِ',\n 'آگسٽ',\n 'سيپٽمبر',\n 'آڪٽوبر',\n 'نومبر',\n 'ڊسمبر'\n];\nvar days = [\n 'آچر',\n 'سومر',\n 'اڱارو',\n 'اربع',\n 'خميس',\n 'جمع',\n 'ڇنڇر'\n];\n\nvar sd = moment.defineLocale('sd', {\n months : months,\n monthsShort : months,\n weekdays : days,\n weekdaysShort : days,\n weekdaysMin : days,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd، D MMMM YYYY HH:mm'\n },\n meridiemParse: /صبح|شام/,\n isPM : function (input) {\n return 'شام' === input;\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 12) {\n return 'صبح';\n }\n return 'شام';\n },\n calendar : {\n sameDay : '[اڄ] LT',\n nextDay : '[سڀاڻي] LT',\n nextWeek : 'dddd [اڳين هفتي تي] LT',\n lastDay : '[ڪالهه] LT',\n lastWeek : '[گزريل هفتي] dddd [تي] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s پوء',\n past : '%s اڳ',\n s : 'چند سيڪنڊ',\n m : 'هڪ منٽ',\n mm : '%d منٽ',\n h : 'هڪ ڪلاڪ',\n hh : '%d ڪلاڪ',\n d : 'هڪ ڏينهن',\n dd : '%d ڏينهن',\n M : 'هڪ مهينو',\n MM : '%d مهينا',\n y : 'هڪ سال',\n yy : '%d سال'\n },\n preparse: function (string) {\n return string.replace(/،/g, ',');\n },\n postformat: function (string) {\n return string.replace(/,/g, '،');\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn sd;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/sd.js\n// module id = 602\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Northern Sami [se]\n//! authors : Bård Rolstad Henriksen : https://github.com/karamell\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n\nvar se = moment.defineLocale('se', {\n months : 'ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu'.split('_'),\n monthsShort : 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split('_'),\n weekdays : 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split('_'),\n weekdaysShort : 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'),\n weekdaysMin : 's_v_m_g_d_b_L'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'MMMM D. [b.] YYYY',\n LLL : 'MMMM D. [b.] YYYY [ti.] HH:mm',\n LLLL : 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm'\n },\n calendar : {\n sameDay: '[otne ti] LT',\n nextDay: '[ihttin ti] LT',\n nextWeek: 'dddd [ti] LT',\n lastDay: '[ikte ti] LT',\n lastWeek: '[ovddit] dddd [ti] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : '%s geažes',\n past : 'maŋit %s',\n s : 'moadde sekunddat',\n m : 'okta minuhta',\n mm : '%d minuhtat',\n h : 'okta diimmu',\n hh : '%d diimmut',\n d : 'okta beaivi',\n dd : '%d beaivvit',\n M : 'okta mánnu',\n MM : '%d mánut',\n y : 'okta jahki',\n yy : '%d jagit'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn se;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/se.js\n// module id = 603\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Sinhalese [si]\n//! author : Sampath Sitinamaluwa : https://github.com/sampathsris\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n/*jshint -W100*/\nvar si = moment.defineLocale('si', {\n months : 'ජනවාරි_පෙබරවාරි_මාර්තු_අප්රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්බර්_දෙසැම්බර්'.split('_'),\n monthsShort : 'ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ'.split('_'),\n weekdays : 'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split('_'),\n weekdaysShort : 'ඉරි_සඳු_අඟ_බදා_බ්රහ_සිකු_සෙන'.split('_'),\n weekdaysMin : 'ඉ_ස_අ_බ_බ්ර_සි_සෙ'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'a h:mm',\n LTS : 'a h:mm:ss',\n L : 'YYYY/MM/DD',\n LL : 'YYYY MMMM D',\n LLL : 'YYYY MMMM D, a h:mm',\n LLLL : 'YYYY MMMM D [වැනි] dddd, a h:mm:ss'\n },\n calendar : {\n sameDay : '[අද] LT[ට]',\n nextDay : '[හෙට] LT[ට]',\n nextWeek : 'dddd LT[ට]',\n lastDay : '[ඊයේ] LT[ට]',\n lastWeek : '[පසුගිය] dddd LT[ට]',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%sකින්',\n past : '%sකට පෙර',\n s : 'තත්පර කිහිපය',\n m : 'මිනිත්තුව',\n mm : 'මිනිත්තු %d',\n h : 'පැය',\n hh : 'පැය %d',\n d : 'දිනය',\n dd : 'දින %d',\n M : 'මාසය',\n MM : 'මාස %d',\n y : 'වසර',\n yy : 'වසර %d'\n },\n dayOfMonthOrdinalParse: /\\d{1,2} වැනි/,\n ordinal : function (number) {\n return number + ' වැනි';\n },\n meridiemParse : /පෙර වරු|පස් වරු|පෙ.ව|ප.ව./,\n isPM : function (input) {\n return input === 'ප.ව.' || input === 'පස් වරු';\n },\n meridiem : function (hours, minutes, isLower) {\n if (hours > 11) {\n return isLower ? 'ප.ව.' : 'පස් වරු';\n } else {\n return isLower ? 'පෙ.ව.' : 'පෙර වරු';\n }\n }\n});\n\nreturn si;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/si.js\n// module id = 604\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Slovak [sk]\n//! author : Martin Minka : https://github.com/k2s\n//! based on work of petrbela : https://github.com/petrbela\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar months = 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split('_');\nvar monthsShort = 'jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec'.split('_');\nfunction plural(n) {\n return (n > 1) && (n < 5);\n}\nfunction translate(number, withoutSuffix, key, isFuture) {\n var result = number + ' ';\n switch (key) {\n case 's': // a few seconds / in a few seconds / a few seconds ago\n return (withoutSuffix || isFuture) ? 'pár sekúnd' : 'pár sekundami';\n case 'm': // a minute / in a minute / a minute ago\n return withoutSuffix ? 'minúta' : (isFuture ? 'minútu' : 'minútou');\n case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'minúty' : 'minút');\n } else {\n return result + 'minútami';\n }\n break;\n case 'h': // an hour / in an hour / an hour ago\n return withoutSuffix ? 'hodina' : (isFuture ? 'hodinu' : 'hodinou');\n case 'hh': // 9 hours / in 9 hours / 9 hours ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'hodiny' : 'hodín');\n } else {\n return result + 'hodinami';\n }\n break;\n case 'd': // a day / in a day / a day ago\n return (withoutSuffix || isFuture) ? 'deň' : 'dňom';\n case 'dd': // 9 days / in 9 days / 9 days ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'dni' : 'dní');\n } else {\n return result + 'dňami';\n }\n break;\n case 'M': // a month / in a month / a month ago\n return (withoutSuffix || isFuture) ? 'mesiac' : 'mesiacom';\n case 'MM': // 9 months / in 9 months / 9 months ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'mesiace' : 'mesiacov');\n } else {\n return result + 'mesiacmi';\n }\n break;\n case 'y': // a year / in a year / a year ago\n return (withoutSuffix || isFuture) ? 'rok' : 'rokom';\n case 'yy': // 9 years / in 9 years / 9 years ago\n if (withoutSuffix || isFuture) {\n return result + (plural(number) ? 'roky' : 'rokov');\n } else {\n return result + 'rokmi';\n }\n break;\n }\n}\n\nvar sk = moment.defineLocale('sk', {\n months : months,\n monthsShort : monthsShort,\n weekdays : 'nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota'.split('_'),\n weekdaysShort : 'ne_po_ut_st_št_pi_so'.split('_'),\n weekdaysMin : 'ne_po_ut_st_št_pi_so'.split('_'),\n longDateFormat : {\n LT: 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY H:mm',\n LLLL : 'dddd D. MMMM YYYY H:mm'\n },\n calendar : {\n sameDay: '[dnes o] LT',\n nextDay: '[zajtra o] LT',\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[v nedeľu o] LT';\n case 1:\n case 2:\n return '[v] dddd [o] LT';\n case 3:\n return '[v stredu o] LT';\n case 4:\n return '[vo štvrtok o] LT';\n case 5:\n return '[v piatok o] LT';\n case 6:\n return '[v sobotu o] LT';\n }\n },\n lastDay: '[včera o] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return '[minulú nedeľu o] LT';\n case 1:\n case 2:\n return '[minulý] dddd [o] LT';\n case 3:\n return '[minulú stredu o] LT';\n case 4:\n case 5:\n return '[minulý] dddd [o] LT';\n case 6:\n return '[minulú sobotu o] LT';\n }\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : 'za %s',\n past : 'pred %s',\n s : translate,\n m : translate,\n mm : translate,\n h : translate,\n hh : translate,\n d : translate,\n dd : translate,\n M : translate,\n MM : translate,\n y : translate,\n yy : translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn sk;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/sk.js\n// module id = 605\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Slovenian [sl]\n//! author : Robert Sedovšek : https://github.com/sedovsek\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction processRelativeTime(number, withoutSuffix, key, isFuture) {\n var result = number + ' ';\n switch (key) {\n case 's':\n return withoutSuffix || isFuture ? 'nekaj sekund' : 'nekaj sekundami';\n case 'm':\n return withoutSuffix ? 'ena minuta' : 'eno minuto';\n case 'mm':\n if (number === 1) {\n result += withoutSuffix ? 'minuta' : 'minuto';\n } else if (number === 2) {\n result += withoutSuffix || isFuture ? 'minuti' : 'minutama';\n } else if (number < 5) {\n result += withoutSuffix || isFuture ? 'minute' : 'minutami';\n } else {\n result += withoutSuffix || isFuture ? 'minut' : 'minutami';\n }\n return result;\n case 'h':\n return withoutSuffix ? 'ena ura' : 'eno uro';\n case 'hh':\n if (number === 1) {\n result += withoutSuffix ? 'ura' : 'uro';\n } else if (number === 2) {\n result += withoutSuffix || isFuture ? 'uri' : 'urama';\n } else if (number < 5) {\n result += withoutSuffix || isFuture ? 'ure' : 'urami';\n } else {\n result += withoutSuffix || isFuture ? 'ur' : 'urami';\n }\n return result;\n case 'd':\n return withoutSuffix || isFuture ? 'en dan' : 'enim dnem';\n case 'dd':\n if (number === 1) {\n result += withoutSuffix || isFuture ? 'dan' : 'dnem';\n } else if (number === 2) {\n result += withoutSuffix || isFuture ? 'dni' : 'dnevoma';\n } else {\n result += withoutSuffix || isFuture ? 'dni' : 'dnevi';\n }\n return result;\n case 'M':\n return withoutSuffix || isFuture ? 'en mesec' : 'enim mesecem';\n case 'MM':\n if (number === 1) {\n result += withoutSuffix || isFuture ? 'mesec' : 'mesecem';\n } else if (number === 2) {\n result += withoutSuffix || isFuture ? 'meseca' : 'mesecema';\n } else if (number < 5) {\n result += withoutSuffix || isFuture ? 'mesece' : 'meseci';\n } else {\n result += withoutSuffix || isFuture ? 'mesecev' : 'meseci';\n }\n return result;\n case 'y':\n return withoutSuffix || isFuture ? 'eno leto' : 'enim letom';\n case 'yy':\n if (number === 1) {\n result += withoutSuffix || isFuture ? 'leto' : 'letom';\n } else if (number === 2) {\n result += withoutSuffix || isFuture ? 'leti' : 'letoma';\n } else if (number < 5) {\n result += withoutSuffix || isFuture ? 'leta' : 'leti';\n } else {\n result += withoutSuffix || isFuture ? 'let' : 'leti';\n }\n return result;\n }\n}\n\nvar sl = moment.defineLocale('sl', {\n months : 'januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december'.split('_'),\n monthsShort : 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split('_'),\n monthsParseExact: true,\n weekdays : 'nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota'.split('_'),\n weekdaysShort : 'ned._pon._tor._sre._čet._pet._sob.'.split('_'),\n weekdaysMin : 'ne_po_to_sr_če_pe_so'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY H:mm',\n LLLL : 'dddd, D. MMMM YYYY H:mm'\n },\n calendar : {\n sameDay : '[danes ob] LT',\n nextDay : '[jutri ob] LT',\n\n nextWeek : function () {\n switch (this.day()) {\n case 0:\n return '[v] [nedeljo] [ob] LT';\n case 3:\n return '[v] [sredo] [ob] LT';\n case 6:\n return '[v] [soboto] [ob] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[v] dddd [ob] LT';\n }\n },\n lastDay : '[včeraj ob] LT',\n lastWeek : function () {\n switch (this.day()) {\n case 0:\n return '[prejšnjo] [nedeljo] [ob] LT';\n case 3:\n return '[prejšnjo] [sredo] [ob] LT';\n case 6:\n return '[prejšnjo] [soboto] [ob] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[prejšnji] dddd [ob] LT';\n }\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'čez %s',\n past : 'pred %s',\n s : processRelativeTime,\n m : processRelativeTime,\n mm : processRelativeTime,\n h : processRelativeTime,\n hh : processRelativeTime,\n d : processRelativeTime,\n dd : processRelativeTime,\n M : processRelativeTime,\n MM : processRelativeTime,\n y : processRelativeTime,\n yy : processRelativeTime\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn sl;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/sl.js\n// module id = 606\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Albanian [sq]\n//! author : Flakërim Ismani : https://github.com/flakerimi\n//! author : Menelion Elensúle : https://github.com/Oire\n//! author : Oerd Cukalla : https://github.com/oerd\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar sq = moment.defineLocale('sq', {\n months : 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split('_'),\n monthsShort : 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'),\n weekdays : 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split('_'),\n weekdaysShort : 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'),\n weekdaysMin : 'D_H_Ma_Më_E_P_Sh'.split('_'),\n weekdaysParseExact : true,\n meridiemParse: /PD|MD/,\n isPM: function (input) {\n return input.charAt(0) === 'M';\n },\n meridiem : function (hours, minutes, isLower) {\n return hours < 12 ? 'PD' : 'MD';\n },\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[Sot në] LT',\n nextDay : '[Nesër në] LT',\n nextWeek : 'dddd [në] LT',\n lastDay : '[Dje në] LT',\n lastWeek : 'dddd [e kaluar në] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'në %s',\n past : '%s më parë',\n s : 'disa sekonda',\n m : 'një minutë',\n mm : '%d minuta',\n h : 'një orë',\n hh : '%d orë',\n d : 'një ditë',\n dd : '%d ditë',\n M : 'një muaj',\n MM : '%d muaj',\n y : 'një vit',\n yy : '%d vite'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn sq;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/sq.js\n// module id = 607\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Serbian [sr]\n//! author : Milan Janačković : https://github.com/milan-j\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar translator = {\n words: { //Different grammatical cases\n m: ['jedan minut', 'jedne minute'],\n mm: ['minut', 'minute', 'minuta'],\n h: ['jedan sat', 'jednog sata'],\n hh: ['sat', 'sata', 'sati'],\n dd: ['dan', 'dana', 'dana'],\n MM: ['mesec', 'meseca', 'meseci'],\n yy: ['godina', 'godine', 'godina']\n },\n correctGrammaticalCase: function (number, wordKey) {\n return number === 1 ? wordKey[0] : (number >= 2 && number <= 4 ? wordKey[1] : wordKey[2]);\n },\n translate: function (number, withoutSuffix, key) {\n var wordKey = translator.words[key];\n if (key.length === 1) {\n return withoutSuffix ? wordKey[0] : wordKey[1];\n } else {\n return number + ' ' + translator.correctGrammaticalCase(number, wordKey);\n }\n }\n};\n\nvar sr = moment.defineLocale('sr', {\n months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split('_'),\n monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split('_'),\n monthsParseExact: true,\n weekdays: 'nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota'.split('_'),\n weekdaysShort: 'ned._pon._uto._sre._čet._pet._sub.'.split('_'),\n weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),\n weekdaysParseExact : true,\n longDateFormat: {\n LT: 'H:mm',\n LTS : 'H:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY H:mm',\n LLLL: 'dddd, D. MMMM YYYY H:mm'\n },\n calendar: {\n sameDay: '[danas u] LT',\n nextDay: '[sutra u] LT',\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[u] [nedelju] [u] LT';\n case 3:\n return '[u] [sredu] [u] LT';\n case 6:\n return '[u] [subotu] [u] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[u] dddd [u] LT';\n }\n },\n lastDay : '[juče u] LT',\n lastWeek : function () {\n var lastWeekDays = [\n '[prošle] [nedelje] [u] LT',\n '[prošlog] [ponedeljka] [u] LT',\n '[prošlog] [utorka] [u] LT',\n '[prošle] [srede] [u] LT',\n '[prošlog] [četvrtka] [u] LT',\n '[prošlog] [petka] [u] LT',\n '[prošle] [subote] [u] LT'\n ];\n return lastWeekDays[this.day()];\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'za %s',\n past : 'pre %s',\n s : 'nekoliko sekundi',\n m : translator.translate,\n mm : translator.translate,\n h : translator.translate,\n hh : translator.translate,\n d : 'dan',\n dd : translator.translate,\n M : 'mesec',\n MM : translator.translate,\n y : 'godinu',\n yy : translator.translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn sr;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/sr.js\n// module id = 608\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Serbian Cyrillic [sr-cyrl]\n//! author : Milan Janačković : https://github.com/milan-j\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar translator = {\n words: { //Different grammatical cases\n m: ['један минут', 'једне минуте'],\n mm: ['минут', 'минуте', 'минута'],\n h: ['један сат', 'једног сата'],\n hh: ['сат', 'сата', 'сати'],\n dd: ['дан', 'дана', 'дана'],\n MM: ['месец', 'месеца', 'месеци'],\n yy: ['година', 'године', 'година']\n },\n correctGrammaticalCase: function (number, wordKey) {\n return number === 1 ? wordKey[0] : (number >= 2 && number <= 4 ? wordKey[1] : wordKey[2]);\n },\n translate: function (number, withoutSuffix, key) {\n var wordKey = translator.words[key];\n if (key.length === 1) {\n return withoutSuffix ? wordKey[0] : wordKey[1];\n } else {\n return number + ' ' + translator.correctGrammaticalCase(number, wordKey);\n }\n }\n};\n\nvar srCyrl = moment.defineLocale('sr-cyrl', {\n months: 'јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар'.split('_'),\n monthsShort: 'јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.'.split('_'),\n monthsParseExact: true,\n weekdays: 'недеља_понедељак_уторак_среда_четвртак_петак_субота'.split('_'),\n weekdaysShort: 'нед._пон._уто._сре._чет._пет._суб.'.split('_'),\n weekdaysMin: 'не_по_ут_ср_че_пе_су'.split('_'),\n weekdaysParseExact : true,\n longDateFormat: {\n LT: 'H:mm',\n LTS : 'H:mm:ss',\n L: 'DD.MM.YYYY',\n LL: 'D. MMMM YYYY',\n LLL: 'D. MMMM YYYY H:mm',\n LLLL: 'dddd, D. MMMM YYYY H:mm'\n },\n calendar: {\n sameDay: '[данас у] LT',\n nextDay: '[сутра у] LT',\n nextWeek: function () {\n switch (this.day()) {\n case 0:\n return '[у] [недељу] [у] LT';\n case 3:\n return '[у] [среду] [у] LT';\n case 6:\n return '[у] [суботу] [у] LT';\n case 1:\n case 2:\n case 4:\n case 5:\n return '[у] dddd [у] LT';\n }\n },\n lastDay : '[јуче у] LT',\n lastWeek : function () {\n var lastWeekDays = [\n '[прошле] [недеље] [у] LT',\n '[прошлог] [понедељка] [у] LT',\n '[прошлог] [уторка] [у] LT',\n '[прошле] [среде] [у] LT',\n '[прошлог] [четвртка] [у] LT',\n '[прошлог] [петка] [у] LT',\n '[прошле] [суботе] [у] LT'\n ];\n return lastWeekDays[this.day()];\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'за %s',\n past : 'пре %s',\n s : 'неколико секунди',\n m : translator.translate,\n mm : translator.translate,\n h : translator.translate,\n hh : translator.translate,\n d : 'дан',\n dd : translator.translate,\n M : 'месец',\n MM : translator.translate,\n y : 'годину',\n yy : translator.translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn srCyrl;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/sr-cyrl.js\n// module id = 609\n// module chunks = 1","//! moment.js locale configuration\n//! locale : siSwati [ss]\n//! author : Nicolai Davies : https://github.com/nicolaidavies\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n\nvar ss = moment.defineLocale('ss', {\n months : \"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni\".split('_'),\n monthsShort : 'Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo'.split('_'),\n weekdays : 'Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo'.split('_'),\n weekdaysShort : 'Lis_Umb_Lsb_Les_Lsi_Lsh_Umg'.split('_'),\n weekdaysMin : 'Li_Us_Lb_Lt_Ls_Lh_Ug'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'h:mm A',\n LTS : 'h:mm:ss A',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY h:mm A',\n LLLL : 'dddd, D MMMM YYYY h:mm A'\n },\n calendar : {\n sameDay : '[Namuhla nga] LT',\n nextDay : '[Kusasa nga] LT',\n nextWeek : 'dddd [nga] LT',\n lastDay : '[Itolo nga] LT',\n lastWeek : 'dddd [leliphelile] [nga] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'nga %s',\n past : 'wenteka nga %s',\n s : 'emizuzwana lomcane',\n m : 'umzuzu',\n mm : '%d emizuzu',\n h : 'lihora',\n hh : '%d emahora',\n d : 'lilanga',\n dd : '%d emalanga',\n M : 'inyanga',\n MM : '%d tinyanga',\n y : 'umnyaka',\n yy : '%d iminyaka'\n },\n meridiemParse: /ekuseni|emini|entsambama|ebusuku/,\n meridiem : function (hours, minutes, isLower) {\n if (hours < 11) {\n return 'ekuseni';\n } else if (hours < 15) {\n return 'emini';\n } else if (hours < 19) {\n return 'entsambama';\n } else {\n return 'ebusuku';\n }\n },\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'ekuseni') {\n return hour;\n } else if (meridiem === 'emini') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === 'entsambama' || meridiem === 'ebusuku') {\n if (hour === 0) {\n return 0;\n }\n return hour + 12;\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}/,\n ordinal : '%d',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn ss;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ss.js\n// module id = 610\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Swedish [sv]\n//! author : Jens Alm : https://github.com/ulmus\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar sv = moment.defineLocale('sv', {\n months : 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split('_'),\n monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),\n weekdays : 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'),\n weekdaysShort : 'sön_mån_tis_ons_tor_fre_lör'.split('_'),\n weekdaysMin : 'sö_må_ti_on_to_fr_lö'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'YYYY-MM-DD',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY [kl.] HH:mm',\n LLLL : 'dddd D MMMM YYYY [kl.] HH:mm',\n lll : 'D MMM YYYY HH:mm',\n llll : 'ddd D MMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[Idag] LT',\n nextDay: '[Imorgon] LT',\n lastDay: '[Igår] LT',\n nextWeek: '[På] dddd LT',\n lastWeek: '[I] dddd[s] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'om %s',\n past : 'för %s sedan',\n s : 'några sekunder',\n m : 'en minut',\n mm : '%d minuter',\n h : 'en timme',\n hh : '%d timmar',\n d : 'en dag',\n dd : '%d dagar',\n M : 'en månad',\n MM : '%d månader',\n y : 'ett år',\n yy : '%d år'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(e|a)/,\n ordinal : function (number) {\n var b = number % 10,\n output = (~~(number % 100 / 10) === 1) ? 'e' :\n (b === 1) ? 'a' :\n (b === 2) ? 'a' :\n (b === 3) ? 'e' : 'e';\n return number + output;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn sv;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/sv.js\n// module id = 611\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Swahili [sw]\n//! author : Fahad Kassim : https://github.com/fadsel\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar sw = moment.defineLocale('sw', {\n months : 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split('_'),\n monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'),\n weekdays : 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split('_'),\n weekdaysShort : 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'),\n weekdaysMin : 'J2_J3_J4_J5_Al_Ij_J1'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[leo saa] LT',\n nextDay : '[kesho saa] LT',\n nextWeek : '[wiki ijayo] dddd [saat] LT',\n lastDay : '[jana] LT',\n lastWeek : '[wiki iliyopita] dddd [saat] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s baadaye',\n past : 'tokea %s',\n s : 'hivi punde',\n m : 'dakika moja',\n mm : 'dakika %d',\n h : 'saa limoja',\n hh : 'masaa %d',\n d : 'siku moja',\n dd : 'masiku %d',\n M : 'mwezi mmoja',\n MM : 'miezi %d',\n y : 'mwaka mmoja',\n yy : 'miaka %d'\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn sw;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/sw.js\n// module id = 612\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Tamil [ta]\n//! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar symbolMap = {\n '1': '௧',\n '2': '௨',\n '3': '௩',\n '4': '௪',\n '5': '௫',\n '6': '௬',\n '7': '௭',\n '8': '௮',\n '9': '௯',\n '0': '௦'\n};\nvar numberMap = {\n '௧': '1',\n '௨': '2',\n '௩': '3',\n '௪': '4',\n '௫': '5',\n '௬': '6',\n '௭': '7',\n '௮': '8',\n '௯': '9',\n '௦': '0'\n};\n\nvar ta = moment.defineLocale('ta', {\n months : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),\n monthsShort : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),\n weekdays : 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split('_'),\n weekdaysShort : 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split('_'),\n weekdaysMin : 'ஞா_தி_செ_பு_வி_வெ_ச'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY, HH:mm',\n LLLL : 'dddd, D MMMM YYYY, HH:mm'\n },\n calendar : {\n sameDay : '[இன்று] LT',\n nextDay : '[நாளை] LT',\n nextWeek : 'dddd, LT',\n lastDay : '[நேற்று] LT',\n lastWeek : '[கடந்த வாரம்] dddd, LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s இல்',\n past : '%s முன்',\n s : 'ஒரு சில விநாடிகள்',\n m : 'ஒரு நிமிடம்',\n mm : '%d நிமிடங்கள்',\n h : 'ஒரு மணி நேரம்',\n hh : '%d மணி நேரம்',\n d : 'ஒரு நாள்',\n dd : '%d நாட்கள்',\n M : 'ஒரு மாதம்',\n MM : '%d மாதங்கள்',\n y : 'ஒரு வருடம்',\n yy : '%d ஆண்டுகள்'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}வது/,\n ordinal : function (number) {\n return number + 'வது';\n },\n preparse: function (string) {\n return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) {\n return numberMap[match];\n });\n },\n postformat: function (string) {\n return string.replace(/\\d/g, function (match) {\n return symbolMap[match];\n });\n },\n // refer http://ta.wikipedia.org/s/1er1\n meridiemParse: /யாமம்|வைகறை|காலை|நண்பகல்|எற்பாடு|மாலை/,\n meridiem : function (hour, minute, isLower) {\n if (hour < 2) {\n return ' யாமம்';\n } else if (hour < 6) {\n return ' வைகறை'; // வைகறை\n } else if (hour < 10) {\n return ' காலை'; // காலை\n } else if (hour < 14) {\n return ' நண்பகல்'; // நண்பகல்\n } else if (hour < 18) {\n return ' எற்பாடு'; // எற்பாடு\n } else if (hour < 22) {\n return ' மாலை'; // மாலை\n } else {\n return ' யாமம்';\n }\n },\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'யாமம்') {\n return hour < 2 ? hour : hour + 12;\n } else if (meridiem === 'வைகறை' || meridiem === 'காலை') {\n return hour;\n } else if (meridiem === 'நண்பகல்') {\n return hour >= 10 ? hour : hour + 12;\n } else {\n return hour + 12;\n }\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 6 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn ta;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ta.js\n// module id = 613\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Telugu [te]\n//! author : Krishna Chaitanya Thota : https://github.com/kcthota\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar te = moment.defineLocale('te', {\n months : 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జూలై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split('_'),\n monthsShort : 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జూలై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split('_'),\n monthsParseExact : true,\n weekdays : 'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split('_'),\n weekdaysShort : 'ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని'.split('_'),\n weekdaysMin : 'ఆ_సో_మం_బు_గు_శు_శ'.split('_'),\n longDateFormat : {\n LT : 'A h:mm',\n LTS : 'A h:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY, A h:mm',\n LLLL : 'dddd, D MMMM YYYY, A h:mm'\n },\n calendar : {\n sameDay : '[నేడు] LT',\n nextDay : '[రేపు] LT',\n nextWeek : 'dddd, LT',\n lastDay : '[నిన్న] LT',\n lastWeek : '[గత] dddd, LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s లో',\n past : '%s క్రితం',\n s : 'కొన్ని క్షణాలు',\n m : 'ఒక నిమిషం',\n mm : '%d నిమిషాలు',\n h : 'ఒక గంట',\n hh : '%d గంటలు',\n d : 'ఒక రోజు',\n dd : '%d రోజులు',\n M : 'ఒక నెల',\n MM : '%d నెలలు',\n y : 'ఒక సంవత్సరం',\n yy : '%d సంవత్సరాలు'\n },\n dayOfMonthOrdinalParse : /\\d{1,2}వ/,\n ordinal : '%dవ',\n meridiemParse: /రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === 'రాత్రి') {\n return hour < 4 ? hour : hour + 12;\n } else if (meridiem === 'ఉదయం') {\n return hour;\n } else if (meridiem === 'మధ్యాహ్నం') {\n return hour >= 10 ? hour : hour + 12;\n } else if (meridiem === 'సాయంత్రం') {\n return hour + 12;\n }\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'రాత్రి';\n } else if (hour < 10) {\n return 'ఉదయం';\n } else if (hour < 17) {\n return 'మధ్యాహ్నం';\n } else if (hour < 20) {\n return 'సాయంత్రం';\n } else {\n return 'రాత్రి';\n }\n },\n week : {\n dow : 0, // Sunday is the first day of the week.\n doy : 6 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn te;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/te.js\n// module id = 614\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Tetun Dili (East Timor) [tet]\n//! author : Joshua Brooks : https://github.com/joshbrooks\n//! author : Onorio De J. Afonso : https://github.com/marobo\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar tet = moment.defineLocale('tet', {\n months : 'Janeiru_Fevereiru_Marsu_Abril_Maiu_Juniu_Juliu_Augustu_Setembru_Outubru_Novembru_Dezembru'.split('_'),\n monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Aug_Set_Out_Nov_Dez'.split('_'),\n weekdays : 'Domingu_Segunda_Tersa_Kuarta_Kinta_Sexta_Sabadu'.split('_'),\n weekdaysShort : 'Dom_Seg_Ters_Kua_Kint_Sext_Sab'.split('_'),\n weekdaysMin : 'Do_Seg_Te_Ku_Ki_Sex_Sa'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[Ohin iha] LT',\n nextDay: '[Aban iha] LT',\n nextWeek: 'dddd [iha] LT',\n lastDay: '[Horiseik iha] LT',\n lastWeek: 'dddd [semana kotuk] [iha] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'iha %s',\n past : '%s liuba',\n s : 'minutu balun',\n m : 'minutu ida',\n mm : 'minutus %d',\n h : 'horas ida',\n hh : 'horas %d',\n d : 'loron ida',\n dd : 'loron %d',\n M : 'fulan ida',\n MM : 'fulan %d',\n y : 'tinan ida',\n yy : 'tinan %d'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(st|nd|rd|th)/,\n ordinal : function (number) {\n var b = number % 10,\n output = (~~(number % 100 / 10) === 1) ? 'th' :\n (b === 1) ? 'st' :\n (b === 2) ? 'nd' :\n (b === 3) ? 'rd' : 'th';\n return number + output;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn tet;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/tet.js\n// module id = 615\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Thai [th]\n//! author : Kridsada Thanabulpong : https://github.com/sirn\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar th = moment.defineLocale('th', {\n months : 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split('_'),\n monthsShort : 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split('_'),\n monthsParseExact: true,\n weekdays : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),\n weekdaysShort : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference\n weekdaysMin : 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY เวลา H:mm',\n LLLL : 'วันddddที่ D MMMM YYYY เวลา H:mm'\n },\n meridiemParse: /ก่อนเที่ยง|หลังเที่ยง/,\n isPM: function (input) {\n return input === 'หลังเที่ยง';\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 12) {\n return 'ก่อนเที่ยง';\n } else {\n return 'หลังเที่ยง';\n }\n },\n calendar : {\n sameDay : '[วันนี้ เวลา] LT',\n nextDay : '[พรุ่งนี้ เวลา] LT',\n nextWeek : 'dddd[หน้า เวลา] LT',\n lastDay : '[เมื่อวานนี้ เวลา] LT',\n lastWeek : '[วัน]dddd[ที่แล้ว เวลา] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'อีก %s',\n past : '%sที่แล้ว',\n s : 'ไม่กี่วินาที',\n m : '1 นาที',\n mm : '%d นาที',\n h : '1 ชั่วโมง',\n hh : '%d ชั่วโมง',\n d : '1 วัน',\n dd : '%d วัน',\n M : '1 เดือน',\n MM : '%d เดือน',\n y : '1 ปี',\n yy : '%d ปี'\n }\n});\n\nreturn th;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/th.js\n// module id = 616\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Tagalog (Philippines) [tl-ph]\n//! author : Dan Hagman : https://github.com/hagmandan\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar tlPh = moment.defineLocale('tl-ph', {\n months : 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split('_'),\n monthsShort : 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),\n weekdays : 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split('_'),\n weekdaysShort : 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'),\n weekdaysMin : 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'MM/D/YYYY',\n LL : 'MMMM D, YYYY',\n LLL : 'MMMM D, YYYY HH:mm',\n LLLL : 'dddd, MMMM DD, YYYY HH:mm'\n },\n calendar : {\n sameDay: 'LT [ngayong araw]',\n nextDay: '[Bukas ng] LT',\n nextWeek: 'LT [sa susunod na] dddd',\n lastDay: 'LT [kahapon]',\n lastWeek: 'LT [noong nakaraang] dddd',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'sa loob ng %s',\n past : '%s ang nakalipas',\n s : 'ilang segundo',\n m : 'isang minuto',\n mm : '%d minuto',\n h : 'isang oras',\n hh : '%d oras',\n d : 'isang araw',\n dd : '%d araw',\n M : 'isang buwan',\n MM : '%d buwan',\n y : 'isang taon',\n yy : '%d taon'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}/,\n ordinal : function (number) {\n return number;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn tlPh;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/tl-ph.js\n// module id = 617\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Klingon [tlh]\n//! author : Dominika Kruk : https://github.com/amaranthrose\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar numbersNouns = 'pagh_wa’_cha’_wej_loS_vagh_jav_Soch_chorgh_Hut'.split('_');\n\nfunction translateFuture(output) {\n var time = output;\n time = (output.indexOf('jaj') !== -1) ?\n time.slice(0, -3) + 'leS' :\n (output.indexOf('jar') !== -1) ?\n time.slice(0, -3) + 'waQ' :\n (output.indexOf('DIS') !== -1) ?\n time.slice(0, -3) + 'nem' :\n time + ' pIq';\n return time;\n}\n\nfunction translatePast(output) {\n var time = output;\n time = (output.indexOf('jaj') !== -1) ?\n time.slice(0, -3) + 'Hu’' :\n (output.indexOf('jar') !== -1) ?\n time.slice(0, -3) + 'wen' :\n (output.indexOf('DIS') !== -1) ?\n time.slice(0, -3) + 'ben' :\n time + ' ret';\n return time;\n}\n\nfunction translate(number, withoutSuffix, string, isFuture) {\n var numberNoun = numberAsNoun(number);\n switch (string) {\n case 'mm':\n return numberNoun + ' tup';\n case 'hh':\n return numberNoun + ' rep';\n case 'dd':\n return numberNoun + ' jaj';\n case 'MM':\n return numberNoun + ' jar';\n case 'yy':\n return numberNoun + ' DIS';\n }\n}\n\nfunction numberAsNoun(number) {\n var hundred = Math.floor((number % 1000) / 100),\n ten = Math.floor((number % 100) / 10),\n one = number % 10,\n word = '';\n if (hundred > 0) {\n word += numbersNouns[hundred] + 'vatlh';\n }\n if (ten > 0) {\n word += ((word !== '') ? ' ' : '') + numbersNouns[ten] + 'maH';\n }\n if (one > 0) {\n word += ((word !== '') ? ' ' : '') + numbersNouns[one];\n }\n return (word === '') ? 'pagh' : word;\n}\n\nvar tlh = moment.defineLocale('tlh', {\n months : 'tera’ jar wa’_tera’ jar cha’_tera’ jar wej_tera’ jar loS_tera’ jar vagh_tera’ jar jav_tera’ jar Soch_tera’ jar chorgh_tera’ jar Hut_tera’ jar wa’maH_tera’ jar wa’maH wa’_tera’ jar wa’maH cha’'.split('_'),\n monthsShort : 'jar wa’_jar cha’_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa’maH_jar wa’maH wa’_jar wa’maH cha’'.split('_'),\n monthsParseExact : true,\n weekdays : 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split('_'),\n weekdaysShort : 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split('_'),\n weekdaysMin : 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[DaHjaj] LT',\n nextDay: '[wa’leS] LT',\n nextWeek: 'LLL',\n lastDay: '[wa’Hu’] LT',\n lastWeek: 'LLL',\n sameElse: 'L'\n },\n relativeTime : {\n future : translateFuture,\n past : translatePast,\n s : 'puS lup',\n m : 'wa’ tup',\n mm : translate,\n h : 'wa’ rep',\n hh : translate,\n d : 'wa’ jaj',\n dd : translate,\n M : 'wa’ jar',\n MM : translate,\n y : 'wa’ DIS',\n yy : translate\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn tlh;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/tlh.js\n// module id = 618\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Turkish [tr]\n//! authors : Erhan Gundogan : https://github.com/erhangundogan,\n//! Burak Yiğit Kaya: https://github.com/BYK\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar suffixes = {\n 1: '\\'inci',\n 5: '\\'inci',\n 8: '\\'inci',\n 70: '\\'inci',\n 80: '\\'inci',\n 2: '\\'nci',\n 7: '\\'nci',\n 20: '\\'nci',\n 50: '\\'nci',\n 3: '\\'üncü',\n 4: '\\'üncü',\n 100: '\\'üncü',\n 6: '\\'ncı',\n 9: '\\'uncu',\n 10: '\\'uncu',\n 30: '\\'uncu',\n 60: '\\'ıncı',\n 90: '\\'ıncı'\n};\n\nvar tr = moment.defineLocale('tr', {\n months : 'Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık'.split('_'),\n monthsShort : 'Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara'.split('_'),\n weekdays : 'Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi'.split('_'),\n weekdaysShort : 'Paz_Pts_Sal_Çar_Per_Cum_Cts'.split('_'),\n weekdaysMin : 'Pz_Pt_Sa_Ça_Pe_Cu_Ct'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[bugün saat] LT',\n nextDay : '[yarın saat] LT',\n nextWeek : '[haftaya] dddd [saat] LT',\n lastDay : '[dün] LT',\n lastWeek : '[geçen hafta] dddd [saat] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s sonra',\n past : '%s önce',\n s : 'birkaç saniye',\n m : 'bir dakika',\n mm : '%d dakika',\n h : 'bir saat',\n hh : '%d saat',\n d : 'bir gün',\n dd : '%d gün',\n M : 'bir ay',\n MM : '%d ay',\n y : 'bir yıl',\n yy : '%d yıl'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}'(inci|nci|üncü|ncı|uncu|ıncı)/,\n ordinal : function (number) {\n if (number === 0) { // special case for zero\n return number + '\\'ıncı';\n }\n var a = number % 10,\n b = number % 100 - a,\n c = number >= 100 ? 100 : null;\n return number + (suffixes[a] || suffixes[b] || suffixes[c]);\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn tr;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/tr.js\n// module id = 619\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Talossan [tzl]\n//! author : Robin van der Vliet : https://github.com/robin0van0der0v\n//! author : Iustì Canun\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n// After the year there should be a slash and the amount of years since December 26, 1979 in Roman numerals.\n// This is currently too difficult (maybe even impossible) to add.\nvar tzl = moment.defineLocale('tzl', {\n months : 'Januar_Fevraglh_Març_Avrïu_Mai_Gün_Julia_Guscht_Setemvar_Listopäts_Noemvar_Zecemvar'.split('_'),\n monthsShort : 'Jan_Fev_Mar_Avr_Mai_Gün_Jul_Gus_Set_Lis_Noe_Zec'.split('_'),\n weekdays : 'Súladi_Lúneçi_Maitzi_Márcuri_Xhúadi_Viénerçi_Sáturi'.split('_'),\n weekdaysShort : 'Súl_Lún_Mai_Már_Xhú_Vié_Sát'.split('_'),\n weekdaysMin : 'Sú_Lú_Ma_Má_Xh_Vi_Sá'.split('_'),\n longDateFormat : {\n LT : 'HH.mm',\n LTS : 'HH.mm.ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM [dallas] YYYY',\n LLL : 'D. MMMM [dallas] YYYY HH.mm',\n LLLL : 'dddd, [li] D. MMMM [dallas] YYYY HH.mm'\n },\n meridiemParse: /d\\'o|d\\'a/i,\n isPM : function (input) {\n return 'd\\'o' === input.toLowerCase();\n },\n meridiem : function (hours, minutes, isLower) {\n if (hours > 11) {\n return isLower ? 'd\\'o' : 'D\\'O';\n } else {\n return isLower ? 'd\\'a' : 'D\\'A';\n }\n },\n calendar : {\n sameDay : '[oxhi à] LT',\n nextDay : '[demà à] LT',\n nextWeek : 'dddd [à] LT',\n lastDay : '[ieiri à] LT',\n lastWeek : '[sür el] dddd [lasteu à] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'osprei %s',\n past : 'ja%s',\n s : processRelativeTime,\n m : processRelativeTime,\n mm : processRelativeTime,\n h : processRelativeTime,\n hh : processRelativeTime,\n d : processRelativeTime,\n dd : processRelativeTime,\n M : processRelativeTime,\n MM : processRelativeTime,\n y : processRelativeTime,\n yy : processRelativeTime\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nfunction processRelativeTime(number, withoutSuffix, key, isFuture) {\n var format = {\n 's': ['viensas secunds', '\\'iensas secunds'],\n 'm': ['\\'n míut', '\\'iens míut'],\n 'mm': [number + ' míuts', '' + number + ' míuts'],\n 'h': ['\\'n þora', '\\'iensa þora'],\n 'hh': [number + ' þoras', '' + number + ' þoras'],\n 'd': ['\\'n ziua', '\\'iensa ziua'],\n 'dd': [number + ' ziuas', '' + number + ' ziuas'],\n 'M': ['\\'n mes', '\\'iens mes'],\n 'MM': [number + ' mesen', '' + number + ' mesen'],\n 'y': ['\\'n ar', '\\'iens ar'],\n 'yy': [number + ' ars', '' + number + ' ars']\n };\n return isFuture ? format[key][0] : (withoutSuffix ? format[key][0] : format[key][1]);\n}\n\nreturn tzl;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/tzl.js\n// module id = 620\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Central Atlas Tamazight [tzm]\n//! author : Abdel Said : https://github.com/abdelsaid\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar tzm = moment.defineLocale('tzm', {\n months : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'),\n monthsShort : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'),\n weekdays : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),\n weekdaysShort : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),\n weekdaysMin : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS: 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[ⴰⵙⴷⵅ ⴴ] LT',\n nextDay: '[ⴰⵙⴽⴰ ⴴ] LT',\n nextWeek: 'dddd [ⴴ] LT',\n lastDay: '[ⴰⵚⴰⵏⵜ ⴴ] LT',\n lastWeek: 'dddd [ⴴ] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s',\n past : 'ⵢⴰⵏ %s',\n s : 'ⵉⵎⵉⴽ',\n m : 'ⵎⵉⵏⵓⴺ',\n mm : '%d ⵎⵉⵏⵓⴺ',\n h : 'ⵙⴰⵄⴰ',\n hh : '%d ⵜⴰⵙⵙⴰⵄⵉⵏ',\n d : 'ⴰⵙⵙ',\n dd : '%d oⵙⵙⴰⵏ',\n M : 'ⴰⵢoⵓⵔ',\n MM : '%d ⵉⵢⵢⵉⵔⵏ',\n y : 'ⴰⵙⴳⴰⵙ',\n yy : '%d ⵉⵙⴳⴰⵙⵏ'\n },\n week : {\n dow : 6, // Saturday is the first day of the week.\n doy : 12 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn tzm;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/tzm.js\n// module id = 621\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Central Atlas Tamazight Latin [tzm-latn]\n//! author : Abdel Said : https://github.com/abdelsaid\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar tzmLatn = moment.defineLocale('tzm-latn', {\n months : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'),\n monthsShort : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'),\n weekdays : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),\n weekdaysShort : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),\n weekdaysMin : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[asdkh g] LT',\n nextDay: '[aska g] LT',\n nextWeek: 'dddd [g] LT',\n lastDay: '[assant g] LT',\n lastWeek: 'dddd [g] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'dadkh s yan %s',\n past : 'yan %s',\n s : 'imik',\n m : 'minuḍ',\n mm : '%d minuḍ',\n h : 'saɛa',\n hh : '%d tassaɛin',\n d : 'ass',\n dd : '%d ossan',\n M : 'ayowr',\n MM : '%d iyyirn',\n y : 'asgas',\n yy : '%d isgasn'\n },\n week : {\n dow : 6, // Saturday is the first day of the week.\n doy : 12 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn tzmLatn;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/tzm-latn.js\n// module id = 622\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Ukrainian [uk]\n//! author : zemlanin : https://github.com/zemlanin\n//! Author : Menelion Elensúle : https://github.com/Oire\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nfunction plural(word, num) {\n var forms = word.split('_');\n return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]);\n}\nfunction relativeTimeWithPlural(number, withoutSuffix, key) {\n var format = {\n 'mm': withoutSuffix ? 'хвилина_хвилини_хвилин' : 'хвилину_хвилини_хвилин',\n 'hh': withoutSuffix ? 'година_години_годин' : 'годину_години_годин',\n 'dd': 'день_дні_днів',\n 'MM': 'місяць_місяці_місяців',\n 'yy': 'рік_роки_років'\n };\n if (key === 'm') {\n return withoutSuffix ? 'хвилина' : 'хвилину';\n }\n else if (key === 'h') {\n return withoutSuffix ? 'година' : 'годину';\n }\n else {\n return number + ' ' + plural(format[key], +number);\n }\n}\nfunction weekdaysCaseReplace(m, format) {\n var weekdays = {\n 'nominative': 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split('_'),\n 'accusative': 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split('_'),\n 'genitive': 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split('_')\n };\n\n if (!m) {\n return weekdays['nominative'];\n }\n\n var nounCase = (/(\\[[ВвУу]\\]) ?dddd/).test(format) ?\n 'accusative' :\n ((/\\[?(?:минулої|наступної)? ?\\] ?dddd/).test(format) ?\n 'genitive' :\n 'nominative');\n return weekdays[nounCase][m.day()];\n}\nfunction processHoursFunction(str) {\n return function () {\n return str + 'о' + (this.hours() === 11 ? 'б' : '') + '] LT';\n };\n}\n\nvar uk = moment.defineLocale('uk', {\n months : {\n 'format': 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split('_'),\n 'standalone': 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split('_')\n },\n monthsShort : 'січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд'.split('_'),\n weekdays : weekdaysCaseReplace,\n weekdaysShort : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),\n weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY р.',\n LLL : 'D MMMM YYYY р., HH:mm',\n LLLL : 'dddd, D MMMM YYYY р., HH:mm'\n },\n calendar : {\n sameDay: processHoursFunction('[Сьогодні '),\n nextDay: processHoursFunction('[Завтра '),\n lastDay: processHoursFunction('[Вчора '),\n nextWeek: processHoursFunction('[У] dddd ['),\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n case 3:\n case 5:\n case 6:\n return processHoursFunction('[Минулої] dddd [').call(this);\n case 1:\n case 2:\n case 4:\n return processHoursFunction('[Минулого] dddd [').call(this);\n }\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : 'за %s',\n past : '%s тому',\n s : 'декілька секунд',\n m : relativeTimeWithPlural,\n mm : relativeTimeWithPlural,\n h : 'годину',\n hh : relativeTimeWithPlural,\n d : 'день',\n dd : relativeTimeWithPlural,\n M : 'місяць',\n MM : relativeTimeWithPlural,\n y : 'рік',\n yy : relativeTimeWithPlural\n },\n // M. E.: those two are virtually unused but a user might want to implement them for his/her website for some reason\n meridiemParse: /ночі|ранку|дня|вечора/,\n isPM: function (input) {\n return /^(дня|вечора)$/.test(input);\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'ночі';\n } else if (hour < 12) {\n return 'ранку';\n } else if (hour < 17) {\n return 'дня';\n } else {\n return 'вечора';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(й|го)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'M':\n case 'd':\n case 'DDD':\n case 'w':\n case 'W':\n return number + '-й';\n case 'D':\n return number + '-го';\n default:\n return number;\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn uk;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/uk.js\n// module id = 623\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Urdu [ur]\n//! author : Sawood Alam : https://github.com/ibnesayeed\n//! author : Zack : https://github.com/ZackVision\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar months = [\n 'جنوری',\n 'فروری',\n 'مارچ',\n 'اپریل',\n 'مئی',\n 'جون',\n 'جولائی',\n 'اگست',\n 'ستمبر',\n 'اکتوبر',\n 'نومبر',\n 'دسمبر'\n];\nvar days = [\n 'اتوار',\n 'پیر',\n 'منگل',\n 'بدھ',\n 'جمعرات',\n 'جمعہ',\n 'ہفتہ'\n];\n\nvar ur = moment.defineLocale('ur', {\n months : months,\n monthsShort : months,\n weekdays : days,\n weekdaysShort : days,\n weekdaysMin : days,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd، D MMMM YYYY HH:mm'\n },\n meridiemParse: /صبح|شام/,\n isPM : function (input) {\n return 'شام' === input;\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 12) {\n return 'صبح';\n }\n return 'شام';\n },\n calendar : {\n sameDay : '[آج بوقت] LT',\n nextDay : '[کل بوقت] LT',\n nextWeek : 'dddd [بوقت] LT',\n lastDay : '[گذشتہ روز بوقت] LT',\n lastWeek : '[گذشتہ] dddd [بوقت] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : '%s بعد',\n past : '%s قبل',\n s : 'چند سیکنڈ',\n m : 'ایک منٹ',\n mm : '%d منٹ',\n h : 'ایک گھنٹہ',\n hh : '%d گھنٹے',\n d : 'ایک دن',\n dd : '%d دن',\n M : 'ایک ماہ',\n MM : '%d ماہ',\n y : 'ایک سال',\n yy : '%d سال'\n },\n preparse: function (string) {\n return string.replace(/،/g, ',');\n },\n postformat: function (string) {\n return string.replace(/,/g, '،');\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn ur;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/ur.js\n// module id = 624\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Uzbek [uz]\n//! author : Sardor Muminov : https://github.com/muminoff\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar uz = moment.defineLocale('uz', {\n months : 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split('_'),\n monthsShort : 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'),\n weekdays : 'Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба'.split('_'),\n weekdaysShort : 'Якш_Душ_Сеш_Чор_Пай_Жум_Шан'.split('_'),\n weekdaysMin : 'Як_Ду_Се_Чо_Па_Жу_Ша'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'D MMMM YYYY, dddd HH:mm'\n },\n calendar : {\n sameDay : '[Бугун соат] LT [да]',\n nextDay : '[Эртага] LT [да]',\n nextWeek : 'dddd [куни соат] LT [да]',\n lastDay : '[Кеча соат] LT [да]',\n lastWeek : '[Утган] dddd [куни соат] LT [да]',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'Якин %s ичида',\n past : 'Бир неча %s олдин',\n s : 'фурсат',\n m : 'бир дакика',\n mm : '%d дакика',\n h : 'бир соат',\n hh : '%d соат',\n d : 'бир кун',\n dd : '%d кун',\n M : 'бир ой',\n MM : '%d ой',\n y : 'бир йил',\n yy : '%d йил'\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn uz;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/uz.js\n// module id = 625\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Uzbek Latin [uz-latn]\n//! author : Rasulbek Mirzayev : github.com/Rasulbeeek\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar uzLatn = moment.defineLocale('uz-latn', {\n months : 'Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr'.split('_'),\n monthsShort : 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'),\n weekdays : 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split('_'),\n weekdaysShort : 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'),\n weekdaysMin : 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'D MMMM YYYY, dddd HH:mm'\n },\n calendar : {\n sameDay : '[Bugun soat] LT [da]',\n nextDay : '[Ertaga] LT [da]',\n nextWeek : 'dddd [kuni soat] LT [da]',\n lastDay : '[Kecha soat] LT [da]',\n lastWeek : '[O\\'tgan] dddd [kuni soat] LT [da]',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'Yaqin %s ichida',\n past : 'Bir necha %s oldin',\n s : 'soniya',\n m : 'bir daqiqa',\n mm : '%d daqiqa',\n h : 'bir soat',\n hh : '%d soat',\n d : 'bir kun',\n dd : '%d kun',\n M : 'bir oy',\n MM : '%d oy',\n y : 'bir yil',\n yy : '%d yil'\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 1st is the first week of the year.\n }\n});\n\nreturn uzLatn;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/uz-latn.js\n// module id = 626\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Vietnamese [vi]\n//! author : Bang Nguyen : https://github.com/bangnk\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar vi = moment.defineLocale('vi', {\n months : 'tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12'.split('_'),\n monthsShort : 'Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12'.split('_'),\n monthsParseExact : true,\n weekdays : 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split('_'),\n weekdaysShort : 'CN_T2_T3_T4_T5_T6_T7'.split('_'),\n weekdaysMin : 'CN_T2_T3_T4_T5_T6_T7'.split('_'),\n weekdaysParseExact : true,\n meridiemParse: /sa|ch/i,\n isPM : function (input) {\n return /^ch$/i.test(input);\n },\n meridiem : function (hours, minutes, isLower) {\n if (hours < 12) {\n return isLower ? 'sa' : 'SA';\n } else {\n return isLower ? 'ch' : 'CH';\n }\n },\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM [năm] YYYY',\n LLL : 'D MMMM [năm] YYYY HH:mm',\n LLLL : 'dddd, D MMMM [năm] YYYY HH:mm',\n l : 'DD/M/YYYY',\n ll : 'D MMM YYYY',\n lll : 'D MMM YYYY HH:mm',\n llll : 'ddd, D MMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[Hôm nay lúc] LT',\n nextDay: '[Ngày mai lúc] LT',\n nextWeek: 'dddd [tuần tới lúc] LT',\n lastDay: '[Hôm qua lúc] LT',\n lastWeek: 'dddd [tuần rồi lúc] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : '%s tới',\n past : '%s trước',\n s : 'vài giây',\n m : 'một phút',\n mm : '%d phút',\n h : 'một giờ',\n hh : '%d giờ',\n d : 'một ngày',\n dd : '%d ngày',\n M : 'một tháng',\n MM : '%d tháng',\n y : 'một năm',\n yy : '%d năm'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}/,\n ordinal : function (number) {\n return number;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn vi;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/vi.js\n// module id = 627\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Pseudo [x-pseudo]\n//! author : Andrew Hood : https://github.com/andrewhood125\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar xPseudo = moment.defineLocale('x-pseudo', {\n months : 'J~áñúá~rý_F~ébrú~árý_~Márc~h_Áp~ríl_~Máý_~Júñé~_Júl~ý_Áú~gúst~_Sép~témb~ér_Ó~ctób~ér_Ñ~óvém~bér_~Décé~mbér'.split('_'),\n monthsShort : 'J~áñ_~Féb_~Már_~Ápr_~Máý_~Júñ_~Júl_~Áúg_~Sép_~Óct_~Ñóv_~Déc'.split('_'),\n monthsParseExact : true,\n weekdays : 'S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~Fríd~áý_S~átúr~dáý'.split('_'),\n weekdaysShort : 'S~úñ_~Móñ_~Túé_~Wéd_~Thú_~Frí_~Sát'.split('_'),\n weekdaysMin : 'S~ú_Mó~_Tú_~Wé_T~h_Fr~_Sá'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd, D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[T~ódá~ý át] LT',\n nextDay : '[T~ómó~rró~w át] LT',\n nextWeek : 'dddd [át] LT',\n lastDay : '[Ý~ést~érdá~ý át] LT',\n lastWeek : '[L~ást] dddd [át] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'í~ñ %s',\n past : '%s á~gó',\n s : 'á ~féw ~sécó~ñds',\n m : 'á ~míñ~úté',\n mm : '%d m~íñú~tés',\n h : 'á~ñ hó~úr',\n hh : '%d h~óúrs',\n d : 'á ~dáý',\n dd : '%d d~áýs',\n M : 'á ~móñ~th',\n MM : '%d m~óñt~hs',\n y : 'á ~ýéár',\n yy : '%d ý~éárs'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(th|st|nd|rd)/,\n ordinal : function (number) {\n var b = number % 10,\n output = (~~(number % 100 / 10) === 1) ? 'th' :\n (b === 1) ? 'st' :\n (b === 2) ? 'nd' :\n (b === 3) ? 'rd' : 'th';\n return number + output;\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn xPseudo;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/x-pseudo.js\n// module id = 628\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Yoruba Nigeria [yo]\n//! author : Atolagbe Abisoye : https://github.com/andela-batolagbe\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar yo = moment.defineLocale('yo', {\n months : 'Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀'.split('_'),\n monthsShort : 'Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀'.split('_'),\n weekdays : 'Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta'.split('_'),\n weekdaysShort : 'Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá'.split('_'),\n weekdaysMin : 'Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb'.split('_'),\n longDateFormat : {\n LT : 'h:mm A',\n LTS : 'h:mm:ss A',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY h:mm A',\n LLLL : 'dddd, D MMMM YYYY h:mm A'\n },\n calendar : {\n sameDay : '[Ònì ni] LT',\n nextDay : '[Ọ̀la ni] LT',\n nextWeek : 'dddd [Ọsẹ̀ tón\\'bọ] [ni] LT',\n lastDay : '[Àna ni] LT',\n lastWeek : 'dddd [Ọsẹ̀ tólọ́] [ni] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'ní %s',\n past : '%s kọjá',\n s : 'ìsẹjú aayá die',\n m : 'ìsẹjú kan',\n mm : 'ìsẹjú %d',\n h : 'wákati kan',\n hh : 'wákati %d',\n d : 'ọjọ́ kan',\n dd : 'ọjọ́ %d',\n M : 'osù kan',\n MM : 'osù %d',\n y : 'ọdún kan',\n yy : 'ọdún %d'\n },\n dayOfMonthOrdinalParse : /ọjọ́\\s\\d{1,2}/,\n ordinal : 'ọjọ́ %d',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn yo;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/yo.js\n// module id = 629\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Chinese (China) [zh-cn]\n//! author : suupic : https://github.com/suupic\n//! author : Zeno Zeng : https://github.com/zenozeng\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar zhCn = moment.defineLocale('zh-cn', {\n months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),\n monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),\n weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),\n weekdaysShort : '周日_周一_周二_周三_周四_周五_周六'.split('_'),\n weekdaysMin : '日_一_二_三_四_五_六'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'YYYY年MMMD日',\n LL : 'YYYY年MMMD日',\n LLL : 'YYYY年MMMD日Ah点mm分',\n LLLL : 'YYYY年MMMD日ddddAh点mm分',\n l : 'YYYY年MMMD日',\n ll : 'YYYY年MMMD日',\n lll : 'YYYY年MMMD日 HH:mm',\n llll : 'YYYY年MMMD日dddd HH:mm'\n },\n meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,\n meridiemHour: function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === '凌晨' || meridiem === '早上' ||\n meridiem === '上午') {\n return hour;\n } else if (meridiem === '下午' || meridiem === '晚上') {\n return hour + 12;\n } else {\n // '中午'\n return hour >= 11 ? hour : hour + 12;\n }\n },\n meridiem : function (hour, minute, isLower) {\n var hm = hour * 100 + minute;\n if (hm < 600) {\n return '凌晨';\n } else if (hm < 900) {\n return '早上';\n } else if (hm < 1130) {\n return '上午';\n } else if (hm < 1230) {\n return '中午';\n } else if (hm < 1800) {\n return '下午';\n } else {\n return '晚上';\n }\n },\n calendar : {\n sameDay : '[今天]LT',\n nextDay : '[明天]LT',\n nextWeek : '[下]ddddLT',\n lastDay : '[昨天]LT',\n lastWeek : '[上]ddddLT',\n sameElse : 'L'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(日|月|周)/,\n ordinal : function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'DDD':\n return number + '日';\n case 'M':\n return number + '月';\n case 'w':\n case 'W':\n return number + '周';\n default:\n return number;\n }\n },\n relativeTime : {\n future : '%s内',\n past : '%s前',\n s : '几秒',\n m : '1 分钟',\n mm : '%d 分钟',\n h : '1 小时',\n hh : '%d 小时',\n d : '1 天',\n dd : '%d 天',\n M : '1 个月',\n MM : '%d 个月',\n y : '1 年',\n yy : '%d 年'\n },\n week : {\n // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n});\n\nreturn zhCn;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/zh-cn.js\n// module id = 630\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Chinese (Hong Kong) [zh-hk]\n//! author : Ben : https://github.com/ben-lin\n//! author : Chris Lam : https://github.com/hehachris\n//! author : Konstantin : https://github.com/skfd\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar zhHk = moment.defineLocale('zh-hk', {\n months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),\n monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),\n weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),\n weekdaysShort : '週日_週一_週二_週三_週四_週五_週六'.split('_'),\n weekdaysMin : '日_一_二_三_四_五_六'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'YYYY年MMMD日',\n LL : 'YYYY年MMMD日',\n LLL : 'YYYY年MMMD日 HH:mm',\n LLLL : 'YYYY年MMMD日dddd HH:mm',\n l : 'YYYY年MMMD日',\n ll : 'YYYY年MMMD日',\n lll : 'YYYY年MMMD日 HH:mm',\n llll : 'YYYY年MMMD日dddd HH:mm'\n },\n meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {\n return hour;\n } else if (meridiem === '中午') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === '下午' || meridiem === '晚上') {\n return hour + 12;\n }\n },\n meridiem : function (hour, minute, isLower) {\n var hm = hour * 100 + minute;\n if (hm < 600) {\n return '凌晨';\n } else if (hm < 900) {\n return '早上';\n } else if (hm < 1130) {\n return '上午';\n } else if (hm < 1230) {\n return '中午';\n } else if (hm < 1800) {\n return '下午';\n } else {\n return '晚上';\n }\n },\n calendar : {\n sameDay : '[今天]LT',\n nextDay : '[明天]LT',\n nextWeek : '[下]ddddLT',\n lastDay : '[昨天]LT',\n lastWeek : '[上]ddddLT',\n sameElse : 'L'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(日|月|週)/,\n ordinal : function (number, period) {\n switch (period) {\n case 'd' :\n case 'D' :\n case 'DDD' :\n return number + '日';\n case 'M' :\n return number + '月';\n case 'w' :\n case 'W' :\n return number + '週';\n default :\n return number;\n }\n },\n relativeTime : {\n future : '%s內',\n past : '%s前',\n s : '幾秒',\n m : '1 分鐘',\n mm : '%d 分鐘',\n h : '1 小時',\n hh : '%d 小時',\n d : '1 天',\n dd : '%d 天',\n M : '1 個月',\n MM : '%d 個月',\n y : '1 年',\n yy : '%d 年'\n }\n});\n\nreturn zhHk;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/zh-hk.js\n// module id = 631\n// module chunks = 1","//! moment.js locale configuration\n//! locale : Chinese (Taiwan) [zh-tw]\n//! author : Ben : https://github.com/ben-lin\n//! author : Chris Lam : https://github.com/hehachris\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\nvar zhTw = moment.defineLocale('zh-tw', {\n months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),\n monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),\n weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),\n weekdaysShort : '週日_週一_週二_週三_週四_週五_週六'.split('_'),\n weekdaysMin : '日_一_二_三_四_五_六'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'YYYY年MMMD日',\n LL : 'YYYY年MMMD日',\n LLL : 'YYYY年MMMD日 HH:mm',\n LLLL : 'YYYY年MMMD日dddd HH:mm',\n l : 'YYYY年MMMD日',\n ll : 'YYYY年MMMD日',\n lll : 'YYYY年MMMD日 HH:mm',\n llll : 'YYYY年MMMD日dddd HH:mm'\n },\n meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,\n meridiemHour : function (hour, meridiem) {\n if (hour === 12) {\n hour = 0;\n }\n if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {\n return hour;\n } else if (meridiem === '中午') {\n return hour >= 11 ? hour : hour + 12;\n } else if (meridiem === '下午' || meridiem === '晚上') {\n return hour + 12;\n }\n },\n meridiem : function (hour, minute, isLower) {\n var hm = hour * 100 + minute;\n if (hm < 600) {\n return '凌晨';\n } else if (hm < 900) {\n return '早上';\n } else if (hm < 1130) {\n return '上午';\n } else if (hm < 1230) {\n return '中午';\n } else if (hm < 1800) {\n return '下午';\n } else {\n return '晚上';\n }\n },\n calendar : {\n sameDay : '[今天]LT',\n nextDay : '[明天]LT',\n nextWeek : '[下]ddddLT',\n lastDay : '[昨天]LT',\n lastWeek : '[上]ddddLT',\n sameElse : 'L'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(日|月|週)/,\n ordinal : function (number, period) {\n switch (period) {\n case 'd' :\n case 'D' :\n case 'DDD' :\n return number + '日';\n case 'M' :\n return number + '月';\n case 'w' :\n case 'W' :\n return number + '週';\n default :\n return number;\n }\n },\n relativeTime : {\n future : '%s內',\n past : '%s前',\n s : '幾秒',\n m : '1 分鐘',\n mm : '%d 分鐘',\n h : '1 小時',\n hh : '%d 小時',\n d : '1 天',\n dd : '%d 天',\n M : '1 個月',\n MM : '%d 個月',\n y : '1 年',\n yy : '%d 年'\n }\n});\n\nreturn zhTw;\n\n})));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/moment/locale/zh-tw.js\n// module id = 632\n// module chunks = 1","import { Component, EventEmitter, Input, Output, ViewChild, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { DatePickerInnerComponent } from './datepicker-inner.component';\nimport { DatepickerConfig } from './datepicker.config';\nexport var DATEPICKER_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return DatePickerComponent; }),\n multi: true\n};\n/* tslint:disable:component-selector-name component-selector-type */\n/* tslint:enable:component-selector-name component-selector-type */\nexport var DatePickerComponent = (function () {\n function DatePickerComponent(config) {\n /** sets datepicker mode, supports: `day`, `month`, `year` */\n this.datepickerMode = 'day';\n /** if false week numbers will be hidden */\n this.showWeeks = true;\n this.selectionDone = new EventEmitter(undefined);\n /** callback to invoke when the activeDate is changed. */\n this.activeDateChange = new EventEmitter(undefined);\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n this._now = new Date();\n this.config = config;\n this.configureOptions();\n }\n Object.defineProperty(DatePickerComponent.prototype, \"activeDate\", {\n /** currently active date */\n get: function () {\n return this._activeDate || this._now;\n },\n set: function (value) {\n this._activeDate = value;\n },\n enumerable: true,\n configurable: true\n });\n DatePickerComponent.prototype.configureOptions = function () {\n Object.assign(this, this.config);\n };\n DatePickerComponent.prototype.onUpdate = function (event) {\n this.activeDate = event;\n this.onChange(event);\n };\n DatePickerComponent.prototype.onSelectionDone = function (event) {\n this.selectionDone.emit(event);\n };\n DatePickerComponent.prototype.onActiveDateChange = function (event) {\n this.activeDateChange.emit(event);\n };\n // todo: support null value\n DatePickerComponent.prototype.writeValue = function (value) {\n if (this._datePicker.compare(value, this._activeDate) === 0) {\n return;\n }\n if (value && value instanceof Date) {\n this.activeDate = value;\n this._datePicker.select(value, false);\n return;\n }\n this.activeDate = value ? new Date(value) : void 0;\n };\n DatePickerComponent.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n DatePickerComponent.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n DatePickerComponent.decorators = [\n { type: Component, args: [{\n selector: 'datepicker',\n template: \"\\n \\n \\n \\n \\n \\n \",\n providers: [DATEPICKER_CONTROL_VALUE_ACCESSOR]\n },] },\n ];\n /** @nocollapse */\n DatePickerComponent.ctorParameters = function () { return [\n { type: DatepickerConfig, },\n ]; };\n DatePickerComponent.propDecorators = {\n 'datepickerMode': [{ type: Input },],\n 'initDate': [{ type: Input },],\n 'minDate': [{ type: Input },],\n 'maxDate': [{ type: Input },],\n 'minMode': [{ type: Input },],\n 'maxMode': [{ type: Input },],\n 'showWeeks': [{ type: Input },],\n 'formatDay': [{ type: Input },],\n 'formatMonth': [{ type: Input },],\n 'formatYear': [{ type: Input },],\n 'formatDayHeader': [{ type: Input },],\n 'formatDayTitle': [{ type: Input },],\n 'formatMonthTitle': [{ type: Input },],\n 'startingDay': [{ type: Input },],\n 'yearRange': [{ type: Input },],\n 'onlyCurrentMonth': [{ type: Input },],\n 'shortcutPropagation': [{ type: Input },],\n 'monthColLimit': [{ type: Input },],\n 'yearColLimit': [{ type: Input },],\n 'customClass': [{ type: Input },],\n 'dateDisabled': [{ type: Input },],\n 'activeDate': [{ type: Input },],\n 'selectionDone': [{ type: Output },],\n 'activeDateChange': [{ type: Output },],\n '_datePicker': [{ type: ViewChild, args: [DatePickerInnerComponent,] },],\n };\n return DatePickerComponent;\n}());\n//# sourceMappingURL=datepicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/datepicker/datepicker.component.js\n// module id = 633\n// module chunks = 1","import { Component } from '@angular/core';\nimport { isBs3 } from '../utils/ng2-bootstrap-config';\nimport { DatePickerInnerComponent } from './datepicker-inner.component';\n// write an interface for template options\nvar TEMPLATE_OPTIONS = {\n 'bs4': {\n ARROW_LEFT: '<',\n ARROW_RIGHT: '>'\n },\n 'bs3': {\n ARROW_LEFT: \"\\n \\n \",\n ARROW_RIGHT: \"\\n \\n \"\n }\n};\nexport var DayPickerComponent = (function () {\n function DayPickerComponent(datePicker) {\n this.labels = [];\n this.rows = [];\n this.weekNumbers = [];\n this.CURRENT_THEME_TEMPLATE = isBs3()\n ? TEMPLATE_OPTIONS.bs3\n : TEMPLATE_OPTIONS.bs4;\n this.datePicker = datePicker;\n }\n Object.defineProperty(DayPickerComponent.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n /*protected getDaysInMonth(year:number, month:number) {\n return ((month === 1) && (year % 4 === 0) &&\n ((year % 100 !== 0) || (year % 400 === 0))) ? 29 : DAYS_IN_MONTH[month];\n }*/\n DayPickerComponent.prototype.ngOnInit = function () {\n var self = this;\n this.datePicker.stepDay = { months: 1 };\n this.datePicker.setRefreshViewHandler(function () {\n var year = this.activeDate.getFullYear();\n var month = this.activeDate.getMonth();\n var firstDayOfMonth = new Date(year, month, 1);\n var difference = this.startingDay - firstDayOfMonth.getDay();\n var numDisplayedFromPreviousMonth = (difference > 0)\n ? 7 - difference\n : -difference;\n var firstDate = new Date(firstDayOfMonth.getTime());\n if (numDisplayedFromPreviousMonth > 0) {\n firstDate.setDate(-numDisplayedFromPreviousMonth + 1);\n }\n // 42 is the number of days on a six-week calendar\n var _days = self.getDates(firstDate, 42);\n var days = [];\n for (var i = 0; i < 42; i++) {\n var _dateObject = this.createDateObject(_days[i], this.formatDay);\n _dateObject.secondary = _days[i].getMonth() !== month;\n _dateObject.uid = this.uniqueId + '-' + i;\n days[i] = _dateObject;\n }\n self.labels = [];\n for (var j = 0; j < 7; j++) {\n self.labels[j] = {};\n self.labels[j].abbr = this.dateFilter(days[j].date, this.formatDayHeader);\n self.labels[j].full = this.dateFilter(days[j].date, 'EEEE');\n }\n self.title = this.dateFilter(this.activeDate, this.formatDayTitle);\n self.rows = this.split(days, 7);\n if (this.showWeeks) {\n self.weekNumbers = [];\n var thursdayIndex = (4 + 7 - this.startingDay) % 7;\n var numWeeks = self.rows.length;\n for (var curWeek = 0; curWeek < numWeeks; curWeek++) {\n self.weekNumbers.push(self.getISO8601WeekNumber(self.rows[curWeek][thursdayIndex].date));\n }\n }\n }, 'day');\n this.datePicker.setCompareHandler(function (date1, date2) {\n var d1 = new Date(date1.getFullYear(), date1.getMonth(), date1.getDate());\n var d2 = new Date(date2.getFullYear(), date2.getMonth(), date2.getDate());\n return d1.getTime() - d2.getTime();\n }, 'day');\n this.datePicker.refreshView();\n };\n DayPickerComponent.prototype.getDates = function (startDate, n) {\n var dates = new Array(n);\n var current = new Date(startDate.getTime());\n var i = 0;\n var date;\n while (i < n) {\n date = new Date(current.getTime());\n date = this.datePicker.fixTimeZone(date);\n dates[i++] = date;\n current = new Date(current.getFullYear(), current.getMonth(), current.getDate() + 1);\n }\n return dates;\n };\n DayPickerComponent.prototype.getISO8601WeekNumber = function (date) {\n var checkDate = new Date(date.getTime());\n // Thursday\n checkDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7));\n var time = checkDate.getTime();\n // Compare with Jan 1\n checkDate.setMonth(0);\n checkDate.setDate(1);\n return Math.floor(Math.round((time - checkDate.getTime()) / 86400000) / 7) + 1;\n };\n // todo: key events implementation\n DayPickerComponent.decorators = [\n { type: Component, args: [{\n selector: 'daypicker',\n template: \"\\n\\n \\n \\n \\n \\n | \\n \\n \\n | \\n \\n \\n | \\n
\\n \\n | \\n \\n {{labelz.abbr}}\\n | \\n
\\n \\n \\n \\n \\n \\n {{ weekNumbers[index] }}\\n | \\n \\n \\n | \\n
\\n \\n \\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n DayPickerComponent.ctorParameters = function () { return [\n { type: DatePickerInnerComponent, },\n ]; };\n return DayPickerComponent;\n}());\n//# sourceMappingURL=daypicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/datepicker/daypicker.component.js\n// module id = 634\n// module chunks = 1","import { Component } from '@angular/core';\nimport { isBs3 } from '../utils/ng2-bootstrap-config';\nimport { DatePickerInnerComponent } from './datepicker-inner.component';\nexport var MonthPickerComponent = (function () {\n function MonthPickerComponent(datePicker) {\n this.rows = [];\n this.datePicker = datePicker;\n }\n Object.defineProperty(MonthPickerComponent.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n MonthPickerComponent.prototype.ngOnInit = function () {\n var self = this;\n this.datePicker.stepMonth = { years: 1 };\n this.datePicker.setRefreshViewHandler(function () {\n var months = new Array(12);\n var year = this.activeDate.getFullYear();\n var date;\n for (var i = 0; i < 12; i++) {\n date = new Date(year, i, 1);\n date = this.fixTimeZone(date);\n months[i] = this.createDateObject(date, this.formatMonth);\n months[i].uid = this.uniqueId + '-' + i;\n }\n self.title = this.dateFilter(this.activeDate, this.formatMonthTitle);\n self.rows = this.split(months, self.datePicker.monthColLimit);\n }, 'month');\n this.datePicker.setCompareHandler(function (date1, date2) {\n var d1 = new Date(date1.getFullYear(), date1.getMonth());\n var d2 = new Date(date2.getFullYear(), date2.getMonth());\n return d1.getTime() - d2.getTime();\n }, 'month');\n this.datePicker.refreshView();\n };\n // todo: key events implementation\n MonthPickerComponent.decorators = [\n { type: Component, args: [{\n selector: 'monthpicker',\n template: \"\\n\\n \\n \\n \\n | \\n \\n \\n | \\n \\n \\n | \\n
\\n \\n \\n \\n \\n \\n | \\n
\\n \\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n MonthPickerComponent.ctorParameters = function () { return [\n { type: DatePickerInnerComponent, },\n ]; };\n return MonthPickerComponent;\n}());\n//# sourceMappingURL=monthpicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/datepicker/monthpicker.component.js\n// module id = 635\n// module chunks = 1","import { Component } from '@angular/core';\nimport { isBs3 } from '../utils/ng2-bootstrap-config';\nimport { DatePickerInnerComponent } from './datepicker-inner.component';\nexport var YearPickerComponent = (function () {\n function YearPickerComponent(datePicker) {\n this.rows = [];\n this.datePicker = datePicker;\n }\n Object.defineProperty(YearPickerComponent.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n YearPickerComponent.prototype.ngOnInit = function () {\n var self = this;\n this.datePicker.stepYear = { years: this.datePicker.yearRange };\n this.datePicker.setRefreshViewHandler(function () {\n var years = new Array(this.yearRange);\n var date;\n var start = self.getStartingYear(this.activeDate.getFullYear());\n for (var i = 0; i < this.yearRange; i++) {\n date = new Date(start + i, 0, 1);\n date = this.fixTimeZone(date);\n years[i] = this.createDateObject(date, this.formatYear);\n years[i].uid = this.uniqueId + '-' + i;\n }\n self.title = [years[0].label,\n years[this.yearRange - 1].label].join(' - ');\n self.rows = this.split(years, self.datePicker.yearColLimit);\n }, 'year');\n this.datePicker.setCompareHandler(function (date1, date2) {\n return date1.getFullYear() - date2.getFullYear();\n }, 'year');\n this.datePicker.refreshView();\n };\n YearPickerComponent.prototype.getStartingYear = function (year) {\n // todo: parseInt\n return ((year - 1) / this.datePicker.yearRange) * this.datePicker.yearRange + 1;\n };\n YearPickerComponent.decorators = [\n { type: Component, args: [{\n selector: 'yearpicker',\n template: \"\\n\\n \\n \\n \\n \\n | \\n \\n \\n | \\n \\n \\n | \\n
\\n \\n \\n \\n \\n \\n | \\n
\\n \\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n YearPickerComponent.ctorParameters = function () { return [\n { type: DatePickerInnerComponent, },\n ]; };\n return YearPickerComponent;\n}());\n//# sourceMappingURL=yearpicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/datepicker/yearpicker.component.js\n// module id = 636\n// module chunks = 1","import { NgModule } from '@angular/core';\nimport { ComponentLoaderFactory } from '../component-loader';\nimport { PositioningService } from '../positioning';\nimport { BsDropdownContainerComponent } from './bs-dropdown-container.component';\nimport { BsDropdownMenuDirective } from './bs-dropdown-menu.directive';\nimport { BsDropdownToggleDirective } from './bs-dropdown-toggle.directive';\nimport { BsDropdownConfig } from './bs-dropdown.config';\nimport { BsDropdownDirective } from './bs-dropdown.directive';\nimport { BsDropdownState } from './bs-dropdown.state';\nexport var BsDropdownModule = (function () {\n function BsDropdownModule() {\n }\n BsDropdownModule.forRoot = function (config) {\n return {\n ngModule: BsDropdownModule, providers: [\n ComponentLoaderFactory,\n PositioningService,\n BsDropdownState,\n { provide: BsDropdownConfig, useValue: config ? config : { autoClose: true } }\n ]\n };\n };\n ;\n BsDropdownModule.decorators = [\n { type: NgModule, args: [{\n declarations: [\n BsDropdownMenuDirective,\n BsDropdownToggleDirective,\n BsDropdownContainerComponent,\n BsDropdownDirective\n ],\n exports: [\n BsDropdownMenuDirective,\n BsDropdownToggleDirective,\n BsDropdownDirective\n ],\n entryComponents: [BsDropdownContainerComponent]\n },] },\n ];\n /** @nocollapse */\n BsDropdownModule.ctorParameters = function () { return []; };\n return BsDropdownModule;\n}());\n//# sourceMappingURL=bs-dropdown.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/dropdown/bs-dropdown.module.js\n// module id = 637\n// module chunks = 1","import { TemplateRef, EventEmitter, ReflectiveInjector } from '@angular/core';\nimport { ContentRef } from './content-ref.class';\nimport { listenToTriggers } from '../utils/triggers';\nexport var ComponentLoader = (function () {\n /**\n * Do not use this directly, it should be instanced via\n * `ComponentLoadFactory.attach`\n * @internal\n * @param _viewContainerRef\n * @param _elementRef\n * @param _injector\n * @param _renderer\n * @param _componentFactoryResolver\n * @param _ngZone\n * @param _posService\n */\n // tslint:disable-next-line\n function ComponentLoader(_viewContainerRef, _renderer, _elementRef, _injector, _componentFactoryResolver, _ngZone, _posService) {\n this.onBeforeShow = new EventEmitter();\n this.onShown = new EventEmitter();\n this.onBeforeHide = new EventEmitter();\n this.onHidden = new EventEmitter();\n this._providers = [];\n this._ngZone = _ngZone;\n this._injector = _injector;\n this._renderer = _renderer;\n this._elementRef = _elementRef;\n this._posService = _posService;\n this._viewContainerRef = _viewContainerRef;\n this._componentFactoryResolver = _componentFactoryResolver;\n }\n Object.defineProperty(ComponentLoader.prototype, \"isShown\", {\n get: function () {\n return !!this._componentRef;\n },\n enumerable: true,\n configurable: true\n });\n ;\n ComponentLoader.prototype.attach = function (compType) {\n this._componentFactory = this._componentFactoryResolver\n .resolveComponentFactory(compType);\n return this;\n };\n // todo: add behaviour: to target element, `body`, custom element\n ComponentLoader.prototype.to = function (container) {\n this.container = container || this.container;\n return this;\n };\n ComponentLoader.prototype.position = function (opts) {\n this.attachment = opts.attachment || this.attachment;\n this._elementRef = opts.target || this._elementRef;\n return this;\n };\n ComponentLoader.prototype.provide = function (provider) {\n this._providers.push(provider);\n return this;\n };\n ComponentLoader.prototype.show = function (opts) {\n if (opts === void 0) { opts = {}; }\n this._subscribePositioning();\n if (!this._componentRef) {\n this.onBeforeShow.emit();\n this._contentRef = this._getContentRef(opts.content);\n var injector = ReflectiveInjector.resolveAndCreate(this._providers, this._injector);\n this._componentRef = this._viewContainerRef\n .createComponent(this._componentFactory, 0, injector, this._contentRef.nodes);\n this.instance = this._componentRef.instance;\n Object.assign(this._componentRef.instance, opts);\n if (this.container === 'body' && typeof document !== 'undefined') {\n document.querySelector(this.container)\n .appendChild(this._componentRef.location.nativeElement);\n }\n // we need to manually invoke change detection since events registered\n // via\n // Renderer::listen() are not picked up by change detection with the\n // OnPush strategy\n this._componentRef.changeDetectorRef.markForCheck();\n this.onShown.emit(this._componentRef.instance);\n }\n return this._componentRef;\n };\n ComponentLoader.prototype.hide = function () {\n if (this._componentRef) {\n this.onBeforeHide.emit(this._componentRef.instance);\n this._viewContainerRef.remove(this._viewContainerRef.indexOf(this._componentRef.hostView));\n this._componentRef = null;\n if (this._contentRef.viewRef) {\n this._viewContainerRef.remove(this._viewContainerRef.indexOf(this._contentRef.viewRef));\n this._contentRef = null;\n }\n this._componentRef = null;\n this.onHidden.emit();\n }\n return this;\n };\n ComponentLoader.prototype.toggle = function () {\n if (this.isShown) {\n this.hide();\n return;\n }\n this.show();\n };\n ComponentLoader.prototype.dispose = function () {\n if (this.isShown) {\n this.hide();\n }\n this._unsubscribePositioning();\n if (this._unregisterListenersFn) {\n this._unregisterListenersFn();\n }\n };\n ComponentLoader.prototype.listen = function (listenOpts) {\n var _this = this;\n this.triggers = listenOpts.triggers || this.triggers;\n listenOpts.target = listenOpts.target || this._elementRef;\n listenOpts.show = listenOpts.show || (function () { return _this.show(); });\n listenOpts.hide = listenOpts.hide || (function () { return _this.hide(); });\n listenOpts.toggle = listenOpts.toggle || (function () { return _this.isShown\n ? listenOpts.hide()\n : listenOpts.show(); });\n this._unregisterListenersFn = listenToTriggers(this._renderer, listenOpts.target.nativeElement, this.triggers, listenOpts.show, listenOpts.hide, listenOpts.toggle);\n return this;\n };\n ComponentLoader.prototype._subscribePositioning = function () {\n var _this = this;\n if (this._zoneSubscription || !this.attachment) {\n return;\n }\n this._zoneSubscription = this._ngZone\n .onStable.subscribe(function () {\n if (!_this._componentRef) {\n return;\n }\n _this._posService.position({\n element: _this._componentRef.location,\n target: _this._elementRef,\n attachment: _this.attachment,\n appendToBody: _this.container === 'body'\n });\n });\n };\n ComponentLoader.prototype._unsubscribePositioning = function () {\n if (!this._zoneSubscription) {\n return;\n }\n this._zoneSubscription.unsubscribe();\n this._zoneSubscription = null;\n };\n ComponentLoader.prototype._getContentRef = function (content) {\n if (!content) {\n return new ContentRef([]);\n }\n if (content instanceof TemplateRef) {\n var viewRef = this._viewContainerRef\n .createEmbeddedView(content);\n return new ContentRef([viewRef.rootNodes], viewRef);\n }\n return new ContentRef([[this._renderer.createText(null, \"\" + content)]]);\n };\n return ComponentLoader;\n}());\n//# sourceMappingURL=component-loader.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/component-loader/component-loader.class.js\n// module id = 638\n// module chunks = 1","/**\n * @copyright Valor Software\n * @copyright Angular ng-bootstrap team\n */\nexport var ContentRef = (function () {\n function ContentRef(nodes, viewRef, componentRef) {\n this.nodes = nodes;\n this.viewRef = viewRef;\n this.componentRef = componentRef;\n }\n return ContentRef;\n}());\n//# sourceMappingURL=content-ref.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/component-loader/content-ref.class.js\n// module id = 639\n// module chunks = 1","import { Injectable, NgZone, ComponentFactoryResolver, Injector } from '@angular/core';\nimport { ComponentLoader } from './component-loader.class';\nimport { PositioningService } from '../positioning';\nexport var ComponentLoaderFactory = (function () {\n function ComponentLoaderFactory(componentFactoryResolver, ngZone, injector, posService) {\n this._ngZone = ngZone;\n this._injector = injector;\n this._posService = posService;\n this._componentFactoryResolver = componentFactoryResolver;\n }\n /**\n *\n * @param _elementRef\n * @param _viewContainerRef\n * @param _renderer\n * @returns {ComponentLoader}\n */\n ComponentLoaderFactory.prototype.createLoader = function (_elementRef, _viewContainerRef, _renderer) {\n return new ComponentLoader(_viewContainerRef, _renderer, _elementRef, this._injector, this._componentFactoryResolver, this._ngZone, this._posService);\n };\n ComponentLoaderFactory.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n ComponentLoaderFactory.ctorParameters = function () { return [\n { type: ComponentFactoryResolver, },\n { type: NgZone, },\n { type: Injector, },\n { type: PositioningService, },\n ]; };\n return ComponentLoaderFactory;\n}());\n//# sourceMappingURL=component-loader.factory.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/component-loader/component-loader.factory.js\n// module id = 640\n// module chunks = 1","/**\n * @copyright Valor Software\n * @copyright Angular ng-bootstrap team\n */\n// previous version:\n// https://github.com/angular-ui/bootstrap/blob/07c31d0731f7cb068a1932b8e01d2312b796b4ec/src/position/position.js\n// tslint:disable\nexport var Positioning = (function () {\n function Positioning() {\n }\n Positioning.prototype.position = function (element, round) {\n if (round === void 0) { round = true; }\n var elPosition;\n var parentOffset = { width: 0, height: 0, top: 0, bottom: 0, left: 0, right: 0 };\n if (this.getStyle(element, 'position') === 'fixed') {\n elPosition = element.getBoundingClientRect();\n }\n else {\n var offsetParentEl = this.offsetParent(element);\n elPosition = this.offset(element, false);\n if (offsetParentEl !== document.documentElement) {\n parentOffset = this.offset(offsetParentEl, false);\n }\n parentOffset.top += offsetParentEl.clientTop;\n parentOffset.left += offsetParentEl.clientLeft;\n }\n elPosition.top -= parentOffset.top;\n elPosition.bottom -= parentOffset.top;\n elPosition.left -= parentOffset.left;\n elPosition.right -= parentOffset.left;\n if (round) {\n elPosition.top = Math.round(elPosition.top);\n elPosition.bottom = Math.round(elPosition.bottom);\n elPosition.left = Math.round(elPosition.left);\n elPosition.right = Math.round(elPosition.right);\n }\n return elPosition;\n };\n Positioning.prototype.offset = function (element, round) {\n if (round === void 0) { round = true; }\n var elBcr = element.getBoundingClientRect();\n var viewportOffset = {\n top: window.pageYOffset - document.documentElement.clientTop,\n left: window.pageXOffset - document.documentElement.clientLeft\n };\n var elOffset = {\n height: elBcr.height || element.offsetHeight,\n width: elBcr.width || element.offsetWidth,\n top: elBcr.top + viewportOffset.top,\n bottom: elBcr.bottom + viewportOffset.top,\n left: elBcr.left + viewportOffset.left,\n right: elBcr.right + viewportOffset.left\n };\n if (round) {\n elOffset.height = Math.round(elOffset.height);\n elOffset.width = Math.round(elOffset.width);\n elOffset.top = Math.round(elOffset.top);\n elOffset.bottom = Math.round(elOffset.bottom);\n elOffset.left = Math.round(elOffset.left);\n elOffset.right = Math.round(elOffset.right);\n }\n return elOffset;\n };\n Positioning.prototype.positionElements = function (hostElement, targetElement, placement, appendToBody) {\n var hostElPosition = appendToBody ? this.offset(hostElement, false) : this.position(hostElement, false);\n var shiftWidth = {\n left: hostElPosition.left,\n center: hostElPosition.left + hostElPosition.width / 2 - targetElement.offsetWidth / 2,\n right: hostElPosition.left + hostElPosition.width\n };\n var shiftHeight = {\n top: hostElPosition.top,\n center: hostElPosition.top + hostElPosition.height / 2 - targetElement.offsetHeight / 2,\n bottom: hostElPosition.top + hostElPosition.height\n };\n var targetElBCR = targetElement.getBoundingClientRect();\n var placementPrimary = placement.split(' ')[0] || 'top';\n var placementSecondary = placement.split(' ')[1] || 'center';\n var targetElPosition = {\n height: targetElBCR.height || targetElement.offsetHeight,\n width: targetElBCR.width || targetElement.offsetWidth,\n top: 0,\n bottom: targetElBCR.height || targetElement.offsetHeight,\n left: 0,\n right: targetElBCR.width || targetElement.offsetWidth\n };\n switch (placementPrimary) {\n case 'top':\n targetElPosition.top = hostElPosition.top - targetElement.offsetHeight;\n targetElPosition.bottom += hostElPosition.top - targetElement.offsetHeight;\n targetElPosition.left = shiftWidth[placementSecondary];\n targetElPosition.right += shiftWidth[placementSecondary];\n break;\n case 'bottom':\n targetElPosition.top = shiftHeight[placementPrimary];\n targetElPosition.bottom += shiftHeight[placementPrimary];\n targetElPosition.left = shiftWidth[placementSecondary];\n targetElPosition.right += shiftWidth[placementSecondary];\n break;\n case 'left':\n targetElPosition.top = shiftHeight[placementSecondary];\n targetElPosition.bottom += shiftHeight[placementSecondary];\n targetElPosition.left = hostElPosition.left - targetElement.offsetWidth;\n targetElPosition.right += hostElPosition.left - targetElement.offsetWidth;\n break;\n case 'right':\n targetElPosition.top = shiftHeight[placementSecondary];\n targetElPosition.bottom += shiftHeight[placementSecondary];\n targetElPosition.left = shiftWidth[placementPrimary];\n targetElPosition.right += shiftWidth[placementPrimary];\n break;\n }\n targetElPosition.top = Math.round(targetElPosition.top);\n targetElPosition.bottom = Math.round(targetElPosition.bottom);\n targetElPosition.left = Math.round(targetElPosition.left);\n targetElPosition.right = Math.round(targetElPosition.right);\n return targetElPosition;\n };\n Positioning.prototype.getStyle = function (element, prop) { return window.getComputedStyle(element)[prop]; };\n Positioning.prototype.isStaticPositioned = function (element) {\n return (this.getStyle(element, 'position') || 'static') === 'static';\n };\n Positioning.prototype.offsetParent = function (element) {\n var offsetParentEl = element.offsetParent || document.documentElement;\n while (offsetParentEl && offsetParentEl !== document.documentElement && this.isStaticPositioned(offsetParentEl)) {\n offsetParentEl = offsetParentEl.offsetParent;\n }\n return offsetParentEl || document.documentElement;\n };\n return Positioning;\n}());\nvar positionService = new Positioning();\nexport function positionElements(hostElement, targetElement, placement, appendToBody) {\n var pos = positionService.positionElements(hostElement, targetElement, placement, appendToBody);\n targetElement.style.top = pos.top + \"px\";\n targetElement.style.left = pos.left + \"px\";\n}\n//# sourceMappingURL=ng-positioning.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/positioning/ng-positioning.js\n// module id = 641\n// module chunks = 1","import { Directive, TemplateRef, ViewContainerRef } from '@angular/core';\nimport { BsDropdownState } from './bs-dropdown.state';\nexport var BsDropdownMenuDirective = (function () {\n function BsDropdownMenuDirective(_state, _viewContainer, _templateRef) {\n _state.resolveDropdownMenu({\n templateRef: _templateRef,\n viewContainer: _viewContainer\n });\n }\n BsDropdownMenuDirective.decorators = [\n { type: Directive, args: [{\n selector: '[bsDropdownMenu],[dropdownMenu]',\n exportAs: 'bs-dropdown-menu'\n },] },\n ];\n /** @nocollapse */\n BsDropdownMenuDirective.ctorParameters = function () { return [\n { type: BsDropdownState, },\n { type: ViewContainerRef, },\n { type: TemplateRef, },\n ]; };\n return BsDropdownMenuDirective;\n}());\n//# sourceMappingURL=bs-dropdown-menu.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/dropdown/bs-dropdown-menu.directive.js\n// module id = 642\n// module chunks = 1","import { Directive, ElementRef, HostBinding, HostListener } from '@angular/core';\nimport { BsDropdownState } from './bs-dropdown.state';\nexport var BsDropdownToggleDirective = (function () {\n function BsDropdownToggleDirective(_state, _element) {\n var _this = this;\n this._state = _state;\n this._element = _element;\n this.isDisabled = null;\n this._subscriptions = [];\n // sync is open value with state\n this._subscriptions.push(this._state\n .isOpenChange.subscribe(function (value) { return _this.isOpen = value; }));\n // populate disabled state\n this._subscriptions.push(this._state\n .isDisabledChange\n .subscribe(function (value) { return _this.isDisabled = value || null; }));\n }\n BsDropdownToggleDirective.prototype.onClick = function () {\n if (this.isDisabled) {\n return;\n }\n this._state.toggleClick.emit();\n };\n BsDropdownToggleDirective.prototype.onDocumentClick = function (event) {\n if (this._state.autoClose && event.button !== 2 &&\n !this._element.nativeElement.contains(event.target)) {\n this._state.toggleClick.emit(false);\n }\n };\n BsDropdownToggleDirective.prototype.onEsc = function () {\n if (this._state.autoClose) {\n this._state.toggleClick.emit(false);\n }\n };\n BsDropdownToggleDirective.prototype.ngOnDestroy = function () {\n for (var _i = 0, _a = this._subscriptions; _i < _a.length; _i++) {\n var sub = _a[_i];\n sub.unsubscribe();\n }\n };\n BsDropdownToggleDirective.decorators = [\n { type: Directive, args: [{\n selector: '[bsDropdownToggle],[dropdownToggle]',\n exportAs: 'bs-dropdown-toggle',\n host: {\n '[attr.aria-haspopup]': 'true'\n }\n },] },\n ];\n /** @nocollapse */\n BsDropdownToggleDirective.ctorParameters = function () { return [\n { type: BsDropdownState, },\n { type: ElementRef, },\n ]; };\n BsDropdownToggleDirective.propDecorators = {\n 'isDisabled': [{ type: HostBinding, args: ['attr.disabled',] },],\n 'isOpen': [{ type: HostBinding, args: ['attr.aria-expanded',] },],\n 'onClick': [{ type: HostListener, args: ['click',] },],\n 'onDocumentClick': [{ type: HostListener, args: ['document:click', ['$event'],] },],\n 'onEsc': [{ type: HostListener, args: ['keyup.esc',] },],\n };\n return BsDropdownToggleDirective;\n}());\n//# sourceMappingURL=bs-dropdown-toggle.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/dropdown/bs-dropdown-toggle.directive.js\n// module id = 643\n// module chunks = 1","import { Directive, ElementRef, Input, Output, Renderer, ViewContainerRef } from '@angular/core';\nimport 'rxjs/add/operator/filter';\nimport { ComponentLoaderFactory } from '../component-loader';\nimport { BsDropdownConfig } from './bs-dropdown.config';\nimport { BsDropdownContainerComponent } from './bs-dropdown-container.component';\nimport { BsDropdownState } from './bs-dropdown.state';\nimport { isBs3 } from '../utils/ng2-bootstrap-config';\nexport var BsDropdownDirective = (function () {\n function BsDropdownDirective(_elementRef, _renderer, _viewContainerRef, _cis, _config, _state) {\n this._elementRef = _elementRef;\n this._renderer = _renderer;\n this._viewContainerRef = _viewContainerRef;\n this._cis = _cis;\n this._config = _config;\n this._state = _state;\n // todo: move to component loader\n this._isInlineOpen = false;\n this._subscriptions = [];\n // create dropdown component loader\n this._dropdown = this._cis\n .createLoader(this._elementRef, this._viewContainerRef, this._renderer)\n .provide({ provide: BsDropdownState, useValue: this._state });\n this.onShown = this._dropdown.onShown;\n this.onHidden = this._dropdown.onHidden;\n // set initial dropdown state from config\n this._state.autoClose = this._config.autoClose;\n }\n Object.defineProperty(BsDropdownDirective.prototype, \"autoClose\", {\n get: function () {\n return this._state.autoClose;\n },\n /**\n * Indicates that dropdown will be closed on item or document click,\n * and after pressing ESC\n */\n set: function (value) {\n if (typeof value === 'boolean') {\n this._state.autoClose = value;\n }\n },\n enumerable: true,\n configurable: true\n });\n ;\n Object.defineProperty(BsDropdownDirective.prototype, \"isDisabled\", {\n get: function () { return this._isDisabled; },\n /**\n * Disables dropdown toggle and hides dropdown menu if opened\n */\n set: function (value) {\n this._isDisabled = value;\n this._state.isDisabledChange.emit(value);\n if (value) {\n this.hide();\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsDropdownDirective.prototype, \"isOpen\", {\n /**\n * Returns whether or not the popover is currently being shown\n */\n get: function () {\n if (this._showInline) {\n return this._isInlineOpen;\n }\n return this._dropdown.isShown;\n },\n set: function (value) {\n if (value) {\n this.show();\n }\n else {\n this.hide();\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsDropdownDirective.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n BsDropdownDirective.prototype.ngOnInit = function () {\n var _this = this;\n this._showInline = !this.container;\n // attach DOM listeners\n this._dropdown.listen({\n triggers: this.triggers,\n show: function () { return _this.show(); }\n });\n // toggle visibility on toggle element click\n this._subscriptions.push(this._state\n .toggleClick.subscribe(function (value) { return _this.toggle(value); }));\n // hide dropdown if set disabled while opened\n this._subscriptions.push(this._state\n .isDisabledChange\n .filter(function (value) { return value === true; })\n .subscribe(function (value) { return _this.hide(); }));\n // attach dropdown menu inside of dropdown\n if (this._showInline) {\n this._state.dropdownMenu\n .then(function (dropdownMenu) {\n _this._inlinedMenu = dropdownMenu.viewContainer.createEmbeddedView(dropdownMenu.templateRef);\n });\n }\n };\n /**\n * Opens an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n BsDropdownDirective.prototype.show = function () {\n var _this = this;\n if (this.isOpen || this.isDisabled) {\n return;\n }\n if (this._showInline) {\n this._isInlineOpen = true;\n this._state.isOpenChange.emit(true);\n return;\n }\n this._state.dropdownMenu\n .then(function (dropdownMenu) {\n // check direction in which dropdown should be opened\n var _dropup = _this.dropup === true ||\n (typeof _this.dropup !== 'undefined' && _this.dropup !== false);\n _this._state.direction = _dropup ? 'up' : 'down';\n var _placement = _this.placement ||\n (_dropup ? 'top left' : 'bottom left');\n // show dropdown\n _this._dropdown\n .attach(BsDropdownContainerComponent)\n .to(_this.container)\n .position({ attachment: _placement })\n .show({\n content: dropdownMenu.templateRef,\n placement: _placement\n });\n _this._state.isOpenChange.emit(true);\n });\n };\n /**\n * Closes an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n BsDropdownDirective.prototype.hide = function () {\n if (!this.isOpen) {\n return;\n }\n if (this._showInline) {\n this._isInlineOpen = false;\n }\n else {\n this._dropdown.hide();\n }\n this._state.isOpenChange.emit(false);\n };\n /**\n * Toggles an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n BsDropdownDirective.prototype.toggle = function (value) {\n if (this.isOpen || value === false) {\n return this.hide();\n }\n return this.show();\n };\n BsDropdownDirective.prototype.ngOnDestroy = function () {\n // clean up subscriptions and destroy dropdown\n for (var _i = 0, _a = this._subscriptions; _i < _a.length; _i++) {\n var sub = _a[_i];\n sub.unsubscribe();\n }\n this._dropdown.dispose();\n };\n BsDropdownDirective.decorators = [\n { type: Directive, args: [{\n selector: '[bsDropdown],[dropdown]',\n exportAs: 'bs-dropdown',\n providers: [BsDropdownState],\n host: {\n '[class.dropup]': 'dropup',\n '[class.open]': 'isOpen',\n '[class.show]': 'isOpen && isBs4'\n }\n },] },\n ];\n /** @nocollapse */\n BsDropdownDirective.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Renderer, },\n { type: ViewContainerRef, },\n { type: ComponentLoaderFactory, },\n { type: BsDropdownConfig, },\n { type: BsDropdownState, },\n ]; };\n BsDropdownDirective.propDecorators = {\n 'placement': [{ type: Input },],\n 'triggers': [{ type: Input },],\n 'container': [{ type: Input },],\n 'dropup': [{ type: Input },],\n 'autoClose': [{ type: Input },],\n 'isDisabled': [{ type: Input },],\n 'isOpen': [{ type: Input },],\n 'onShown': [{ type: Output },],\n 'onHidden': [{ type: Output },],\n };\n return BsDropdownDirective;\n}());\n//# sourceMappingURL=bs-dropdown.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/dropdown/bs-dropdown.directive.js\n// module id = 644\n// module chunks = 1","import { NgModule } from '@angular/core';\nimport { ModalBackdropComponent } from './modal-backdrop.component';\nimport { ModalDirective } from './modal.component';\nimport { PositioningService } from '../positioning';\nimport { ComponentLoaderFactory } from '../component-loader';\nexport var ModalModule = (function () {\n function ModalModule() {\n }\n ModalModule.forRoot = function () {\n return { ngModule: ModalModule, providers: [ComponentLoaderFactory, PositioningService] };\n };\n ModalModule.decorators = [\n { type: NgModule, args: [{\n declarations: [ModalBackdropComponent, ModalDirective],\n exports: [ModalBackdropComponent, ModalDirective],\n entryComponents: [ModalBackdropComponent]\n },] },\n ];\n /** @nocollapse */\n ModalModule.ctorParameters = function () { return []; };\n return ModalModule;\n}());\n//# sourceMappingURL=modal.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/modal/modal.module.js\n// module id = 645\n// module chunks = 1","export var modalConfigDefaults = {\n backdrop: true,\n keyboard: true,\n focus: true,\n show: false,\n ignoreBackdropClick: false\n};\nexport var ClassName = {\n SCROLLBAR_MEASURER: 'modal-scrollbar-measure',\n BACKDROP: 'modal-backdrop',\n OPEN: 'modal-open',\n FADE: 'fade',\n IN: 'in',\n SHOW: 'show' // bs4\n};\nexport var Selector = {\n DIALOG: '.modal-dialog',\n DATA_TOGGLE: '[data-toggle=\"modal\"]',\n DATA_DISMISS: '[data-dismiss=\"modal\"]',\n FIXED_CONTENT: '.navbar-fixed-top, .navbar-fixed-bottom, .is-fixed'\n};\n//# sourceMappingURL=modal-options.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/modal/modal-options.class.js\n// module id = 646\n// module chunks = 1","/* tslint:disable:max-file-line-count */\n// todo: should we support enforce focus in?\n// todo: in original bs there are was a way to prevent modal from showing\n// todo: original modal had resize events\nimport { Directive, ElementRef, EventEmitter, HostListener, Input, Output, Renderer, ViewContainerRef } from '@angular/core';\nimport { document } from '../utils/facade/browser';\nimport { isBs3 } from '../utils/ng2-bootstrap-config';\nimport { Utils } from '../utils/utils.class';\nimport { ModalBackdropComponent } from './modal-backdrop.component';\nimport { ClassName, modalConfigDefaults, Selector } from './modal-options.class';\nimport { window } from '../utils/facade/browser';\nimport { ComponentLoaderFactory } from '../component-loader/component-loader.factory';\nvar TRANSITION_DURATION = 300;\nvar BACKDROP_TRANSITION_DURATION = 150;\n/** Mark any code with directive to show it's content in modal */\nexport var ModalDirective = (function () {\n function ModalDirective(_element, _viewContainerRef, _renderer, clf) {\n /** This event fires immediately when the `show` instance method is called. */\n this.onShow = new EventEmitter();\n /** This event is fired when the modal has been made visible to the user (will wait for CSS transitions to complete) */\n this.onShown = new EventEmitter();\n /** This event is fired immediately when the hide instance method has been called. */\n this.onHide = new EventEmitter();\n /** This event is fired when the modal has finished being hidden from the user (will wait for CSS transitions to complete). */\n this.onHidden = new EventEmitter();\n // seems like an Options\n this.isAnimated = true;\n this._isShown = false;\n this.isBodyOverflowing = false;\n this.originalBodyPadding = 0;\n this.scrollbarWidth = 0;\n this.timerHideModal = 0;\n this.timerRmBackDrop = 0;\n this._element = _element;\n this._renderer = _renderer;\n this._backdrop = clf.createLoader(_element, _viewContainerRef, _renderer);\n }\n Object.defineProperty(ModalDirective.prototype, \"config\", {\n get: function () {\n return this._config;\n },\n /** allows to set modal configuration via element property */\n set: function (conf) {\n this._config = this.getConfig(conf);\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ModalDirective.prototype, \"isShown\", {\n get: function () {\n return this._isShown;\n },\n enumerable: true,\n configurable: true\n });\n ModalDirective.prototype.onClick = function (event) {\n if (this.config.ignoreBackdropClick || this.config.backdrop === 'static' || event.target !== this._element.nativeElement) {\n return;\n }\n this.hide(event);\n };\n // todo: consider preventing default and stopping propagation\n ModalDirective.prototype.onEsc = function () {\n if (this.config.keyboard) {\n this.hide();\n }\n };\n ModalDirective.prototype.ngOnDestroy = function () {\n this.config = void 0;\n if (this._isShown) {\n this._isShown = false;\n this.hideModal();\n this._backdrop.dispose();\n }\n };\n ModalDirective.prototype.ngAfterViewInit = function () {\n this._config = this._config || this.getConfig();\n if (this._config.show) {\n this.show();\n }\n };\n /* Public methods */\n /** Allows to manually toggle modal visibility */\n ModalDirective.prototype.toggle = function () {\n return this._isShown ? this.hide() : this.show();\n };\n /** Allows to manually open modal */\n ModalDirective.prototype.show = function () {\n var _this = this;\n this.onShow.emit(this);\n if (this._isShown) {\n return;\n }\n clearTimeout(this.timerHideModal);\n clearTimeout(this.timerRmBackDrop);\n this._isShown = true;\n this.checkScrollbar();\n this.setScrollbar();\n if (document && document.body) {\n this._renderer.setElementClass(document.body, ClassName.OPEN, true);\n }\n this.showBackdrop(function () {\n _this.showElement();\n });\n };\n /** Allows to manually close modal */\n ModalDirective.prototype.hide = function (event) {\n var _this = this;\n if (event) {\n event.preventDefault();\n }\n this.onHide.emit(this);\n // todo: add an option to prevent hiding\n if (!this._isShown) {\n return;\n }\n clearTimeout(this.timerHideModal);\n clearTimeout(this.timerRmBackDrop);\n this._isShown = false;\n this._renderer.setElementClass(this._element.nativeElement, ClassName.IN, false);\n if (!isBs3()) {\n this._renderer.setElementClass(this._element.nativeElement, ClassName.SHOW, false);\n }\n // this._addClassIn = false;\n if (this.isAnimated) {\n this.timerHideModal = setTimeout(function () { return _this.hideModal(); }, TRANSITION_DURATION);\n }\n else {\n this.hideModal();\n }\n };\n /** Private methods @internal */\n ModalDirective.prototype.getConfig = function (config) {\n return Object.assign({}, modalConfigDefaults, config);\n };\n /**\n * Show dialog\n * @internal\n */\n ModalDirective.prototype.showElement = function () {\n var _this = this;\n // todo: replace this with component loader usage\n if (!this._element.nativeElement.parentNode ||\n (this._element.nativeElement.parentNode.nodeType !== Node.ELEMENT_NODE)) {\n // don't move modals dom position\n if (document && document.body) {\n document.body.appendChild(this._element.nativeElement);\n }\n }\n this._renderer.setElementAttribute(this._element.nativeElement, 'aria-hidden', 'false');\n this._renderer.setElementStyle(this._element.nativeElement, 'display', 'block');\n this._renderer.setElementProperty(this._element.nativeElement, 'scrollTop', 0);\n if (this.isAnimated) {\n Utils.reflow(this._element.nativeElement);\n }\n // this._addClassIn = true;\n this._renderer.setElementClass(this._element.nativeElement, ClassName.IN, true);\n if (!isBs3()) {\n this._renderer.setElementClass(this._element.nativeElement, ClassName.SHOW, true);\n }\n var transitionComplete = function () {\n if (_this._config.focus) {\n _this._element.nativeElement.focus();\n }\n _this.onShown.emit(_this);\n };\n if (this.isAnimated) {\n setTimeout(transitionComplete, TRANSITION_DURATION);\n }\n else {\n transitionComplete();\n }\n };\n /** @internal */\n ModalDirective.prototype.hideModal = function () {\n var _this = this;\n this._renderer.setElementAttribute(this._element.nativeElement, 'aria-hidden', 'true');\n this._renderer.setElementStyle(this._element.nativeElement, 'display', 'none');\n this.showBackdrop(function () {\n if (document && document.body) {\n _this._renderer.setElementClass(document.body, ClassName.OPEN, false);\n }\n _this.resetAdjustments();\n _this.resetScrollbar();\n _this.onHidden.emit(_this);\n });\n };\n // todo: original show was calling a callback when done, but we can use promise\n /** @internal */\n ModalDirective.prototype.showBackdrop = function (callback) {\n var _this = this;\n if (this._isShown && this.config.backdrop && (!this.backdrop || !this.backdrop.instance.isShown)) {\n this.removeBackdrop();\n this._backdrop\n .attach(ModalBackdropComponent)\n .to('body')\n .show({ isAnimated: false });\n this.backdrop = this._backdrop._componentRef;\n if (this.isAnimated) {\n this.backdrop.instance.isAnimated = this.isAnimated;\n Utils.reflow(this.backdrop.instance.element.nativeElement);\n }\n this.backdrop.instance.isShown = true;\n if (!callback) {\n return;\n }\n if (!this.isAnimated) {\n callback();\n return;\n }\n setTimeout(callback, BACKDROP_TRANSITION_DURATION);\n }\n else if (!this._isShown && this.backdrop) {\n this.backdrop.instance.isShown = false;\n var callbackRemove = function () {\n _this.removeBackdrop();\n if (callback) {\n callback();\n }\n };\n if (this.backdrop.instance.isAnimated) {\n this.timerRmBackDrop = setTimeout(callbackRemove, BACKDROP_TRANSITION_DURATION);\n }\n else {\n callbackRemove();\n }\n }\n else if (callback) {\n callback();\n }\n };\n /** @internal */\n ModalDirective.prototype.removeBackdrop = function () {\n this._backdrop.hide();\n };\n /** Events tricks */\n // no need for it\n // protected setEscapeEvent():void {\n // if (this._isShown && this._config.keyboard) {\n // $(this._element).on(Event.KEYDOWN_DISMISS, (event) => {\n // if (event.which === 27) {\n // this.hide()\n // }\n // })\n //\n // } else if (!this._isShown) {\n // $(this._element).off(Event.KEYDOWN_DISMISS)\n // }\n // }\n // protected setResizeEvent():void {\n // console.log(this.renderer.listenGlobal('', Event.RESIZE));\n // if (this._isShown) {\n // $(window).on(Event.RESIZE, $.proxy(this._handleUpdate, this))\n // } else {\n // $(window).off(Event.RESIZE)\n // }\n // }\n /** @internal */\n ModalDirective.prototype.resetAdjustments = function () {\n this._renderer.setElementStyle(this._element.nativeElement, 'paddingLeft', '');\n this._renderer.setElementStyle(this._element.nativeElement, 'paddingRight', '');\n };\n /** Scroll bar tricks */\n /** @internal */\n ModalDirective.prototype.checkScrollbar = function () {\n this.isBodyOverflowing = document.body.clientWidth < window.innerWidth;\n this.scrollbarWidth = this.getScrollbarWidth();\n };\n ModalDirective.prototype.setScrollbar = function () {\n if (!document) {\n return;\n }\n var fixedEl = document.querySelector(Selector.FIXED_CONTENT);\n if (!fixedEl) {\n return;\n }\n var bodyPadding = parseInt(Utils.getStyles(fixedEl).paddingRight || 0, 10);\n this.originalBodyPadding = parseInt(document.body.style.paddingRight || 0, 10);\n if (this.isBodyOverflowing) {\n document.body.style.paddingRight = (bodyPadding + this.scrollbarWidth) + \"px\";\n }\n };\n ModalDirective.prototype.resetScrollbar = function () {\n document.body.style.paddingRight = this.originalBodyPadding;\n };\n // thx d.walsh\n ModalDirective.prototype.getScrollbarWidth = function () {\n var scrollDiv = this._renderer.createElement(document.body, 'div', void 0);\n scrollDiv.className = ClassName.SCROLLBAR_MEASURER;\n var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;\n document.body.removeChild(scrollDiv);\n return scrollbarWidth;\n };\n ModalDirective.decorators = [\n { type: Directive, args: [{\n selector: '[bsModal]',\n exportAs: 'bs-modal'\n },] },\n ];\n /** @nocollapse */\n ModalDirective.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: ViewContainerRef, },\n { type: Renderer, },\n { type: ComponentLoaderFactory, },\n ]; };\n ModalDirective.propDecorators = {\n 'config': [{ type: Input },],\n 'onShow': [{ type: Output },],\n 'onShown': [{ type: Output },],\n 'onHide': [{ type: Output },],\n 'onHidden': [{ type: Output },],\n 'onClick': [{ type: HostListener, args: ['click', ['$event'],] },],\n 'onEsc': [{ type: HostListener, args: ['keydown.esc',] },],\n };\n return ModalDirective;\n}());\n//# sourceMappingURL=modal.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/modal/modal.component.js\n// module id = 647\n// module chunks = 1","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { PaginationConfig } from './pagination.config';\nimport { PagerComponent } from './pager.component';\nimport { PaginationComponent } from './pagination.component';\nexport var PaginationModule = (function () {\n function PaginationModule() {\n }\n PaginationModule.forRoot = function () {\n return { ngModule: PaginationModule, providers: [PaginationConfig] };\n };\n PaginationModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [PagerComponent, PaginationComponent],\n exports: [PagerComponent, PaginationComponent]\n },] },\n ];\n /** @nocollapse */\n PaginationModule.ctorParameters = function () { return []; };\n return PaginationModule;\n}());\n//# sourceMappingURL=pagination.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/pagination/pagination.module.js\n// module id = 648\n// module chunks = 1","import { Component, ElementRef, Renderer, Input, Output, EventEmitter, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { PaginationConfig } from './pagination.config';\nexport var PAGER_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return PagerComponent; }),\n multi: true\n};\nvar PAGER_TEMPLATE = \"\\n \\n\";\nexport var PagerComponent = (function () {\n function PagerComponent(renderer, elementRef, paginationConfig) {\n /** fired when total pages count changes, $event:number equals to total pages count */\n this.numPages = new EventEmitter();\n /** fired when page was changed, $event:{page, itemsPerPage} equals to object with current page index and number of items per page */\n this.pageChanged = new EventEmitter();\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n this.inited = false;\n this._page = 1;\n this.renderer = renderer;\n this.elementRef = elementRef;\n if (!this.config) {\n this.configureOptions(Object.assign({}, paginationConfig.main, paginationConfig.pager));\n }\n }\n Object.defineProperty(PagerComponent.prototype, \"itemsPerPage\", {\n /** maximum number of items per page. If value less than 1 will display all items on one page */\n get: function () {\n return this._itemsPerPage;\n },\n set: function (v) {\n this._itemsPerPage = v;\n this.totalPages = this.calculateTotalPages();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PagerComponent.prototype, \"totalItems\", {\n /** total number of items in all pages */\n get: function () {\n return this._totalItems;\n },\n set: function (v) {\n this._totalItems = v;\n this.totalPages = this.calculateTotalPages();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PagerComponent.prototype, \"totalPages\", {\n get: function () {\n return this._totalPages;\n },\n set: function (v) {\n this._totalPages = v;\n this.numPages.emit(v);\n if (this.inited) {\n this.selectPage(this.page);\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PagerComponent.prototype, \"page\", {\n get: function () {\n return this._page;\n },\n set: function (value) {\n var _previous = this._page;\n this._page = (value > this.totalPages) ? this.totalPages : (value || 1);\n if (_previous === this._page || typeof _previous === 'undefined') {\n return;\n }\n this.pageChanged.emit({\n page: this._page,\n itemsPerPage: this.itemsPerPage\n });\n },\n enumerable: true,\n configurable: true\n });\n PagerComponent.prototype.configureOptions = function (config) {\n this.config = Object.assign({}, config);\n };\n PagerComponent.prototype.ngOnInit = function () {\n this.classMap = this.elementRef.nativeElement.getAttribute('class') || '';\n // watch for maxSize\n this.maxSize = typeof this.maxSize !== 'undefined'\n ? this.maxSize\n : this.config.maxSize;\n this.rotate = typeof this.rotate !== 'undefined'\n ? this.rotate\n : this.config.rotate;\n this.boundaryLinks = typeof this.boundaryLinks !== 'undefined'\n ? this.boundaryLinks\n : this.config.boundaryLinks;\n this.directionLinks = typeof this.directionLinks !== 'undefined'\n ? this.directionLinks\n : this.config.directionLinks;\n this.pageBtnClass = typeof this.pageBtnClass !== 'undefined'\n ? this.pageBtnClass\n : this.config.pageBtnClass;\n // base class\n this.itemsPerPage = typeof this.itemsPerPage !== 'undefined'\n ? this.itemsPerPage\n : this.config.itemsPerPage;\n this.totalPages = this.calculateTotalPages();\n // this class\n this.pages = this.getPages(this.page, this.totalPages);\n this.inited = true;\n };\n PagerComponent.prototype.writeValue = function (value) {\n this.page = value;\n this.pages = this.getPages(this.page, this.totalPages);\n };\n PagerComponent.prototype.getText = function (key) {\n return this[key + 'Text'] || this.config[key + 'Text'];\n };\n PagerComponent.prototype.noPrevious = function () {\n return this.page === 1;\n };\n PagerComponent.prototype.noNext = function () {\n return this.page === this.totalPages;\n };\n PagerComponent.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n PagerComponent.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n PagerComponent.prototype.selectPage = function (page, event) {\n if (event) {\n event.preventDefault();\n }\n if (!this.disabled) {\n if (event && event.target) {\n var target = event.target;\n target.blur();\n }\n this.writeValue(page);\n this.onChange(this.page);\n }\n };\n // Create page object used in template\n PagerComponent.prototype.makePage = function (num, text, active) {\n return { text: text, number: num, active: active };\n };\n PagerComponent.prototype.getPages = function (currentPage, totalPages) {\n var pages = [];\n // Default page limits\n var startPage = 1;\n var endPage = totalPages;\n var isMaxSized = typeof this.maxSize !== 'undefined' && this.maxSize < totalPages;\n // recompute if maxSize\n if (isMaxSized) {\n if (this.rotate) {\n // Current page is displayed in the middle of the visible ones\n startPage = Math.max(currentPage - Math.floor(this.maxSize / 2), 1);\n endPage = startPage + this.maxSize - 1;\n // Adjust if limit is exceeded\n if (endPage > totalPages) {\n endPage = totalPages;\n startPage = endPage - this.maxSize + 1;\n }\n }\n else {\n // Visible pages are paginated with maxSize\n startPage = ((Math.ceil(currentPage / this.maxSize) - 1) * this.maxSize) + 1;\n // Adjust last page if limit is exceeded\n endPage = Math.min(startPage + this.maxSize - 1, totalPages);\n }\n }\n // Add page number links\n for (var num = startPage; num <= endPage; num++) {\n var page = this.makePage(num, num.toString(), num === currentPage);\n pages.push(page);\n }\n // Add links to move between page sets\n if (isMaxSized && !this.rotate) {\n if (startPage > 1) {\n var previousPageSet = this.makePage(startPage - 1, '...', false);\n pages.unshift(previousPageSet);\n }\n if (endPage < totalPages) {\n var nextPageSet = this.makePage(endPage + 1, '...', false);\n pages.push(nextPageSet);\n }\n }\n return pages;\n };\n // base class\n PagerComponent.prototype.calculateTotalPages = function () {\n var totalPages = this.itemsPerPage < 1\n ? 1\n : Math.ceil(this.totalItems / this.itemsPerPage);\n return Math.max(totalPages || 0, 1);\n };\n PagerComponent.decorators = [\n { type: Component, args: [{\n selector: 'pager',\n template: PAGER_TEMPLATE,\n providers: [PAGER_CONTROL_VALUE_ACCESSOR]\n },] },\n ];\n /** @nocollapse */\n PagerComponent.ctorParameters = function () { return [\n { type: Renderer, },\n { type: ElementRef, },\n { type: PaginationConfig, },\n ]; };\n PagerComponent.propDecorators = {\n 'align': [{ type: Input },],\n 'maxSize': [{ type: Input },],\n 'boundaryLinks': [{ type: Input },],\n 'directionLinks': [{ type: Input },],\n 'firstText': [{ type: Input },],\n 'previousText': [{ type: Input },],\n 'nextText': [{ type: Input },],\n 'lastText': [{ type: Input },],\n 'rotate': [{ type: Input },],\n 'pageBtnClass': [{ type: Input },],\n 'disabled': [{ type: Input },],\n 'numPages': [{ type: Output },],\n 'pageChanged': [{ type: Output },],\n 'itemsPerPage': [{ type: Input },],\n 'totalItems': [{ type: Input },],\n };\n return PagerComponent;\n}());\n//# sourceMappingURL=pager.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/pagination/pager.component.js\n// module id = 649\n// module chunks = 1","import { Component, ElementRef, EventEmitter, Input, Output, Renderer, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { PaginationConfig } from './pagination.config';\nexport var PAGINATION_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return PaginationComponent; }),\n multi: true\n};\nvar PAGINATION_TEMPLATE = \"\\n \\n \";\nexport var PaginationComponent = (function () {\n function PaginationComponent(renderer, elementRef, paginationConfig) {\n /** fired when total pages count changes, $event:number equals to total pages count */\n this.numPages = new EventEmitter();\n /** fired when page was changed, $event:{page, itemsPerPage} equals to object with current page index and number of items per page */\n this.pageChanged = new EventEmitter();\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n this.inited = false;\n this._page = 1;\n this.renderer = renderer;\n this.elementRef = elementRef;\n if (!this.config) {\n this.configureOptions(paginationConfig.main);\n }\n }\n Object.defineProperty(PaginationComponent.prototype, \"itemsPerPage\", {\n /** maximum number of items per page. If value less than 1 will display all items on one page */\n get: function () {\n return this._itemsPerPage;\n },\n set: function (v) {\n this._itemsPerPage = v;\n this.totalPages = this.calculateTotalPages();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PaginationComponent.prototype, \"totalItems\", {\n /** total number of items in all pages */\n get: function () {\n return this._totalItems;\n },\n set: function (v) {\n this._totalItems = v;\n this.totalPages = this.calculateTotalPages();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PaginationComponent.prototype, \"totalPages\", {\n get: function () {\n return this._totalPages;\n },\n set: function (v) {\n this._totalPages = v;\n this.numPages.emit(v);\n if (this.inited) {\n this.selectPage(this.page);\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PaginationComponent.prototype, \"page\", {\n get: function () {\n return this._page;\n },\n set: function (value) {\n var _previous = this._page;\n this._page = (value > this.totalPages) ? this.totalPages : (value || 1);\n if (_previous === this._page || typeof _previous === 'undefined') {\n return;\n }\n this.pageChanged.emit({\n page: this._page,\n itemsPerPage: this.itemsPerPage\n });\n },\n enumerable: true,\n configurable: true\n });\n PaginationComponent.prototype.configureOptions = function (config) {\n this.config = Object.assign({}, config);\n };\n PaginationComponent.prototype.ngOnInit = function () {\n this.classMap = this.elementRef.nativeElement.getAttribute('class') || '';\n // watch for maxSize\n this.maxSize = typeof this.maxSize !== 'undefined'\n ? this.maxSize\n : this.config.maxSize;\n this.rotate = typeof this.rotate !== 'undefined'\n ? this.rotate\n : this.config.rotate;\n this.boundaryLinks = typeof this.boundaryLinks !== 'undefined'\n ? this.boundaryLinks\n : this.config.boundaryLinks;\n this.directionLinks = typeof this.directionLinks !== 'undefined'\n ? this.directionLinks\n : this.config.directionLinks;\n this.pageBtnClass = typeof this.pageBtnClass !== 'undefined'\n ? this.pageBtnClass\n : this.config.pageBtnClass;\n // base class\n this.itemsPerPage = typeof this.itemsPerPage !== 'undefined'\n ? this.itemsPerPage\n : this.config.itemsPerPage;\n this.totalPages = this.calculateTotalPages();\n // this class\n this.pages = this.getPages(this.page, this.totalPages);\n this.inited = true;\n };\n PaginationComponent.prototype.writeValue = function (value) {\n this.page = value;\n this.pages = this.getPages(this.page, this.totalPages);\n };\n PaginationComponent.prototype.getText = function (key) {\n return this[key + 'Text'] || this.config[key + 'Text'];\n };\n PaginationComponent.prototype.noPrevious = function () {\n return this.page === 1;\n };\n PaginationComponent.prototype.noNext = function () {\n return this.page === this.totalPages;\n };\n PaginationComponent.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n PaginationComponent.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n PaginationComponent.prototype.selectPage = function (page, event) {\n if (event) {\n event.preventDefault();\n }\n if (!this.disabled) {\n if (event && event.target) {\n var target = event.target;\n target.blur();\n }\n this.writeValue(page);\n this.onChange(this.page);\n }\n };\n // Create page object used in template\n PaginationComponent.prototype.makePage = function (num, text, active) {\n return { text: text, number: num, active: active };\n };\n PaginationComponent.prototype.getPages = function (currentPage, totalPages) {\n var pages = [];\n // Default page limits\n var startPage = 1;\n var endPage = totalPages;\n var isMaxSized = typeof this.maxSize !== 'undefined' && this.maxSize < totalPages;\n // recompute if maxSize\n if (isMaxSized) {\n if (this.rotate) {\n // Current page is displayed in the middle of the visible ones\n startPage = Math.max(currentPage - Math.floor(this.maxSize / 2), 1);\n endPage = startPage + this.maxSize - 1;\n // Adjust if limit is exceeded\n if (endPage > totalPages) {\n endPage = totalPages;\n startPage = endPage - this.maxSize + 1;\n }\n }\n else {\n // Visible pages are paginated with maxSize\n startPage = ((Math.ceil(currentPage / this.maxSize) - 1) * this.maxSize) + 1;\n // Adjust last page if limit is exceeded\n endPage = Math.min(startPage + this.maxSize - 1, totalPages);\n }\n }\n // Add page number links\n for (var num = startPage; num <= endPage; num++) {\n var page = this.makePage(num, num.toString(), num === currentPage);\n pages.push(page);\n }\n // Add links to move between page sets\n if (isMaxSized && !this.rotate) {\n if (startPage > 1) {\n var previousPageSet = this.makePage(startPage - 1, '...', false);\n pages.unshift(previousPageSet);\n }\n if (endPage < totalPages) {\n var nextPageSet = this.makePage(endPage + 1, '...', false);\n pages.push(nextPageSet);\n }\n }\n return pages;\n };\n // base class\n PaginationComponent.prototype.calculateTotalPages = function () {\n var totalPages = this.itemsPerPage < 1\n ? 1\n : Math.ceil(this.totalItems / this.itemsPerPage);\n return Math.max(totalPages || 0, 1);\n };\n PaginationComponent.decorators = [\n { type: Component, args: [{\n selector: 'pagination',\n template: PAGINATION_TEMPLATE,\n providers: [PAGINATION_CONTROL_VALUE_ACCESSOR]\n },] },\n ];\n /** @nocollapse */\n PaginationComponent.ctorParameters = function () { return [\n { type: Renderer, },\n { type: ElementRef, },\n { type: PaginationConfig, },\n ]; };\n PaginationComponent.propDecorators = {\n 'align': [{ type: Input },],\n 'maxSize': [{ type: Input },],\n 'boundaryLinks': [{ type: Input },],\n 'directionLinks': [{ type: Input },],\n 'firstText': [{ type: Input },],\n 'previousText': [{ type: Input },],\n 'nextText': [{ type: Input },],\n 'lastText': [{ type: Input },],\n 'rotate': [{ type: Input },],\n 'pageBtnClass': [{ type: Input },],\n 'disabled': [{ type: Input },],\n 'numPages': [{ type: Output },],\n 'pageChanged': [{ type: Output },],\n 'itemsPerPage': [{ type: Input },],\n 'totalItems': [{ type: Input },],\n };\n return PaginationComponent;\n}());\n//# sourceMappingURL=pagination.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/pagination/pagination.component.js\n// module id = 650\n// module chunks = 1","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { BarComponent } from './bar.component';\nimport { ProgressDirective } from './progress.directive';\nimport { ProgressbarComponent } from './progressbar.component';\nimport { ProgressbarConfig } from './progressbar.config';\nexport var ProgressbarModule = (function () {\n function ProgressbarModule() {\n }\n ProgressbarModule.forRoot = function () {\n return { ngModule: ProgressbarModule, providers: [ProgressbarConfig] };\n };\n ProgressbarModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [ProgressDirective, BarComponent, ProgressbarComponent],\n exports: [ProgressDirective, BarComponent, ProgressbarComponent]\n },] },\n ];\n /** @nocollapse */\n ProgressbarModule.ctorParameters = function () { return []; };\n return ProgressbarModule;\n}());\n//# sourceMappingURL=progressbar.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/progressbar/progressbar.module.js\n// module id = 651\n// module chunks = 1","import { Component, Host, Input } from '@angular/core';\nimport { ProgressDirective } from './progress.directive';\n// todo: number pipe\n// todo: use query from progress?\nexport var BarComponent = (function () {\n function BarComponent(progress) {\n this.percent = 0;\n this.progress = progress;\n }\n Object.defineProperty(BarComponent.prototype, \"value\", {\n /** current value of progress bar */\n get: function () {\n return this._value;\n },\n set: function (v) {\n if (!v && v !== 0) {\n return;\n }\n this._value = v;\n this.recalculatePercentage();\n },\n enumerable: true,\n configurable: true\n });\n BarComponent.prototype.ngOnInit = function () {\n this.progress.addBar(this);\n };\n BarComponent.prototype.ngOnDestroy = function () {\n this.progress.removeBar(this);\n };\n BarComponent.prototype.recalculatePercentage = function () {\n this.percent = +(100 * this.value / this.progress.max).toFixed(2);\n var totalPercentage = this.progress.bars.reduce(function (total, bar) {\n return total + bar.percent;\n }, 0);\n if (totalPercentage > 100) {\n this.percent -= totalPercentage - 100;\n }\n };\n BarComponent.decorators = [\n { type: Component, args: [{\n selector: 'bar',\n template: \"\\n
\\n\"\n },] },\n ];\n /** @nocollapse */\n BarComponent.ctorParameters = function () { return [\n { type: ProgressDirective, decorators: [{ type: Host },] },\n ]; };\n BarComponent.propDecorators = {\n 'type': [{ type: Input },],\n 'value': [{ type: Input },],\n };\n return BarComponent;\n}());\n//# sourceMappingURL=bar.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/progressbar/bar.component.js\n// module id = 652\n// module chunks = 1","import { Component, Input } from '@angular/core';\nimport { ProgressbarConfig } from './progressbar.config';\nexport var ProgressbarComponent = (function () {\n function ProgressbarComponent(config) {\n Object.assign(this, config);\n }\n ProgressbarComponent.decorators = [\n { type: Component, args: [{\n selector: 'progressbar',\n template: \"\\n \\n \\n \\n \\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n ProgressbarComponent.ctorParameters = function () { return [\n { type: ProgressbarConfig, },\n ]; };\n ProgressbarComponent.propDecorators = {\n 'animate': [{ type: Input },],\n 'max': [{ type: Input },],\n 'type': [{ type: Input },],\n 'value': [{ type: Input },],\n };\n return ProgressbarComponent;\n}());\n//# sourceMappingURL=progressbar.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/progressbar/progressbar.component.js\n// module id = 653\n// module chunks = 1","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { RatingComponent } from './rating.component';\nexport var RatingModule = (function () {\n function RatingModule() {\n }\n RatingModule.forRoot = function () {\n return {\n ngModule: RatingModule,\n providers: []\n };\n };\n RatingModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [RatingComponent],\n exports: [RatingComponent]\n },] },\n ];\n /** @nocollapse */\n RatingModule.ctorParameters = function () { return []; };\n return RatingModule;\n}());\n//# sourceMappingURL=rating.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/rating/rating.module.js\n// module id = 654\n// module chunks = 1","import { Component, EventEmitter, HostListener, Input, Output, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nexport var RATING_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return RatingComponent; }),\n multi: true\n};\nexport var RatingComponent = (function () {\n function RatingComponent() {\n /** number of icons */\n this.max = 5;\n /** fired when icon selected, $event:number equals to selected rating */\n this.onHover = new EventEmitter();\n /** fired when icon selected, $event:number equals to previous rating value */\n this.onLeave = new EventEmitter();\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n }\n RatingComponent.prototype.onKeydown = function (event) {\n if ([37, 38, 39, 40].indexOf(event.which) === -1) {\n return;\n }\n event.preventDefault();\n event.stopPropagation();\n var sign = event.which === 38 || event.which === 39 ? 1 : -1;\n this.rate(this.value + sign);\n };\n RatingComponent.prototype.ngOnInit = function () {\n this.max = typeof this.max !== 'undefined' ? this.max : 5;\n this.readonly = this.readonly === true;\n this.stateOn = typeof this.stateOn !== 'undefined'\n ? this.stateOn\n : 'glyphicon-star';\n this.stateOff = typeof this.stateOff !== 'undefined'\n ? this.stateOff\n : 'glyphicon-star-empty';\n this.titles = typeof this.titles !== 'undefined' && this.titles.length > 0\n ? this.titles\n : ['one', 'two', 'three', 'four', 'five'];\n this.range = this.buildTemplateObjects(this.ratingStates, this.max);\n };\n // model -> view\n RatingComponent.prototype.writeValue = function (value) {\n if (value % 1 !== value) {\n this.value = Math.round(value);\n this.preValue = value;\n return;\n }\n this.preValue = value;\n this.value = value;\n };\n RatingComponent.prototype.enter = function (value) {\n if (!this.readonly) {\n this.value = value;\n this.onHover.emit(value);\n }\n };\n RatingComponent.prototype.reset = function () {\n this.value = this.preValue;\n this.onLeave.emit(this.value);\n };\n RatingComponent.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n RatingComponent.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n RatingComponent.prototype.rate = function (value) {\n if (!this.readonly && value >= 0 && value <= this.range.length) {\n this.writeValue(value);\n this.onChange(value);\n }\n };\n RatingComponent.prototype.buildTemplateObjects = function (ratingStates, max) {\n ratingStates = ratingStates || [];\n var count = ratingStates.length || max;\n var result = [];\n for (var i = 0; i < count; i++) {\n result.push(Object.assign({\n index: i,\n stateOn: this.stateOn,\n stateOff: this.stateOff,\n title: this.titles[i] || i + 1\n }, ratingStates[i] || {}));\n }\n return result;\n };\n RatingComponent.decorators = [\n { type: Component, args: [{\n selector: 'rating',\n template: \"\\n \\n \\n ({{ index < value ? '*' : ' ' }})\\n \\n \\n \\n \",\n providers: [RATING_CONTROL_VALUE_ACCESSOR]\n },] },\n ];\n /** @nocollapse */\n RatingComponent.ctorParameters = function () { return []; };\n RatingComponent.propDecorators = {\n 'max': [{ type: Input },],\n 'stateOn': [{ type: Input },],\n 'stateOff': [{ type: Input },],\n 'readonly': [{ type: Input },],\n 'titles': [{ type: Input },],\n 'ratingStates': [{ type: Input },],\n 'onHover': [{ type: Output },],\n 'onLeave': [{ type: Output },],\n 'onKeydown': [{ type: HostListener, args: ['keydown', ['$event'],] },],\n };\n return RatingComponent;\n}());\n//# sourceMappingURL=rating.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/rating/rating.component.js\n// module id = 655\n// module chunks = 1","export { SortableModule } from './sortable.module';\nexport { SortableComponent } from './sortable.component';\nexport { DraggableItemService } from './draggable-item.service';\n//# sourceMappingURL=index.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/sortable/index.js\n// module id = 656\n// module chunks = 1","import { Component, Input, Output, EventEmitter, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { DraggableItemService } from './draggable-item.service';\n/* tslint:disable */\n/* tslint:enable */\nexport var SortableComponent = (function () {\n function SortableComponent(transfer) {\n var _this = this;\n /** class name for items wrapper */\n this.wrapperClass = '';\n /** style object for items wrapper */\n this.wrapperStyle = {};\n /** class name for item */\n this.itemClass = '';\n /** style object for item */\n this.itemStyle = {};\n /** class name for active item */\n this.itemActiveClass = '';\n /** style object for active item */\n this.itemActiveStyle = {};\n /** class name for placeholder */\n this.placeholderClass = '';\n /** style object for placeholder */\n this.placeholderStyle = {};\n /** placeholder item which will be shown if collection is empty */\n this.placeholderItem = '';\n /** fired on array change (reordering, insert, remove), same as ngModelChange
.\n * Returns new items collection as a payload.\n */\n this.onChange = new EventEmitter();\n this.showPlaceholder = false;\n this.activeItem = -1;\n this.onTouched = Function.prototype;\n this.onChanged = Function.prototype;\n this.transfer = transfer;\n this.currentZoneIndex = SortableComponent.globalZoneIndex++;\n this.transfer.onCaptureItem()\n .subscribe(function (item) { return _this.onDrop(item); });\n }\n Object.defineProperty(SortableComponent.prototype, \"items\", {\n get: function () {\n return this._items;\n },\n set: function (value) {\n this._items = value;\n var out = this.items.map(function (x) { return x.initData; });\n this.onChanged(out);\n this.onChange.emit(out);\n },\n enumerable: true,\n configurable: true\n });\n SortableComponent.prototype.onItemDragstart = function (event, item, i) {\n this.initDragstartEvent(event);\n this.onTouched();\n this.transfer.dragStart({\n event: event,\n item: item,\n i: i,\n initialIndex: i,\n lastZoneIndex: this.currentZoneIndex,\n overZoneIndex: this.currentZoneIndex\n });\n };\n SortableComponent.prototype.onItemDragover = function (event, i) {\n if (!this.transfer.getItem()) {\n return;\n }\n event.preventDefault();\n var dragItem = this.transfer.captureItem(this.currentZoneIndex, this.items.length);\n var newArray = [];\n if (!this.items.length) {\n newArray = [dragItem.item];\n }\n else if (dragItem.i > i) {\n newArray = this.items.slice(0, i).concat([\n dragItem.item\n ], this.items.slice(i, dragItem.i), this.items.slice(dragItem.i + 1));\n }\n else {\n newArray = this.items.slice(0, dragItem.i).concat(this.items.slice(dragItem.i + 1, i + 1), [\n dragItem.item\n ], this.items.slice(i + 1));\n }\n this.items = newArray;\n dragItem.i = i;\n this.activeItem = i;\n this.updatePlaceholderState();\n };\n SortableComponent.prototype.cancelEvent = function (event) {\n if (!this.transfer.getItem() || !event) {\n return;\n }\n event.preventDefault();\n };\n SortableComponent.prototype.onDrop = function (item) {\n if (item &&\n item.overZoneIndex !== this.currentZoneIndex &&\n item.lastZoneIndex === this.currentZoneIndex) {\n this.items = this.items.filter(function (x, i) { return i !== item.i; });\n this.updatePlaceholderState();\n }\n this.resetActiveItem(undefined);\n };\n SortableComponent.prototype.resetActiveItem = function (event) {\n this.cancelEvent(event);\n this.activeItem = -1;\n };\n SortableComponent.prototype.registerOnChange = function (callback) {\n this.onChanged = callback;\n };\n SortableComponent.prototype.registerOnTouched = function (callback) {\n this.onTouched = callback;\n };\n SortableComponent.prototype.writeValue = function (value) {\n var _this = this;\n if (value) {\n this.items = value.map(function (x, i) { return ({\n id: i,\n initData: x,\n value: _this.fieldName ? x[_this.fieldName] : x\n }); });\n }\n else {\n this.items = [];\n }\n this.updatePlaceholderState();\n };\n SortableComponent.prototype.updatePlaceholderState = function () {\n this.showPlaceholder = !this._items.length;\n };\n SortableComponent.prototype.getItemStyle = function (isActive) {\n return isActive\n ? Object.assign({}, this.itemStyle, this.itemActiveStyle)\n : this.itemStyle;\n };\n SortableComponent.prototype.initDragstartEvent = function (event) {\n // it is necessary for mozilla\n // data type should be 'Text' instead of 'text/plain' to keep compatibility\n // with IE\n event.dataTransfer.setData('Text', 'placeholder');\n };\n SortableComponent.globalZoneIndex = 0;\n SortableComponent.decorators = [\n { type: Component, args: [{\n selector: 'bs-sortable',\n exportAs: 'bs-sortable',\n template: \"\\n\\n
{{placeholderItem}}
\\n
\\n
\\n\\n{{item.value}} \\n\",\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return SortableComponent; }),\n multi: true\n }],\n },] },\n ];\n /** @nocollapse */\n SortableComponent.ctorParameters = function () { return [\n { type: DraggableItemService, },\n ]; };\n SortableComponent.propDecorators = {\n 'fieldName': [{ type: Input },],\n 'wrapperClass': [{ type: Input },],\n 'wrapperStyle': [{ type: Input },],\n 'itemClass': [{ type: Input },],\n 'itemStyle': [{ type: Input },],\n 'itemActiveClass': [{ type: Input },],\n 'itemActiveStyle': [{ type: Input },],\n 'placeholderClass': [{ type: Input },],\n 'placeholderStyle': [{ type: Input },],\n 'placeholderItem': [{ type: Input },],\n 'itemTemplate': [{ type: Input },],\n 'onChange': [{ type: Output },],\n };\n return SortableComponent;\n}());\n//# sourceMappingURL=sortable.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/sortable/sortable.component.js\n// module id = 657\n// module chunks = 1","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NgTranscludeDirective } from './ng-transclude.directive';\nimport { TabHeadingDirective } from './tab-heading.directive';\nimport { TabDirective } from './tab.directive';\nimport { TabsetComponent } from './tabset.component';\nimport { TabsetConfig } from './tabset.config';\nexport var TabsModule = (function () {\n function TabsModule() {\n }\n TabsModule.forRoot = function () {\n return {\n ngModule: TabsModule,\n providers: [TabsetConfig]\n };\n };\n TabsModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [NgTranscludeDirective, TabDirective, TabsetComponent, TabHeadingDirective],\n exports: [TabDirective, TabsetComponent, TabHeadingDirective, NgTranscludeDirective]\n },] },\n ];\n /** @nocollapse */\n TabsModule.ctorParameters = function () { return []; };\n return TabsModule;\n}());\n//# sourceMappingURL=tabs.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/tabs/tabs.module.js\n// module id = 658\n// module chunks = 1","import { Directive, Input, ViewContainerRef } from '@angular/core';\nexport var NgTranscludeDirective = (function () {\n function NgTranscludeDirective(viewRef) {\n this.viewRef = viewRef;\n }\n Object.defineProperty(NgTranscludeDirective.prototype, \"ngTransclude\", {\n get: function () {\n return this._ngTransclude;\n },\n set: function (templateRef) {\n this._ngTransclude = templateRef;\n if (templateRef) {\n this.viewRef.createEmbeddedView(templateRef);\n }\n },\n enumerable: true,\n configurable: true\n });\n NgTranscludeDirective.decorators = [\n { type: Directive, args: [{\n selector: '[ngTransclude]'\n },] },\n ];\n /** @nocollapse */\n NgTranscludeDirective.ctorParameters = function () { return [\n { type: ViewContainerRef, },\n ]; };\n NgTranscludeDirective.propDecorators = {\n 'ngTransclude': [{ type: Input },],\n };\n return NgTranscludeDirective;\n}());\n//# sourceMappingURL=ng-transclude.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/tabs/ng-transclude.directive.js\n// module id = 659\n// module chunks = 1","import { Directive, TemplateRef } from '@angular/core';\nimport { TabDirective } from './tab.directive';\n/** Should be used to mark element as a template for tab heading */\nexport var TabHeadingDirective = (function () {\n function TabHeadingDirective(templateRef, tab) {\n tab.headingRef = templateRef;\n }\n TabHeadingDirective.decorators = [\n { type: Directive, args: [{ selector: '[tabHeading]' },] },\n ];\n /** @nocollapse */\n TabHeadingDirective.ctorParameters = function () { return [\n { type: TemplateRef, },\n { type: TabDirective, },\n ]; };\n return TabHeadingDirective;\n}());\n//# sourceMappingURL=tab-heading.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/tabs/tab-heading.directive.js\n// module id = 660\n// module chunks = 1","import { CommonModule } from '@angular/common';\nimport { FormsModule } from '@angular/forms';\nimport { NgModule } from '@angular/core';\nimport { TimepickerComponent } from './timepicker.component';\nimport { TimepickerConfig } from './timepicker.config';\nexport var TimepickerModule = (function () {\n function TimepickerModule() {\n }\n TimepickerModule.forRoot = function () {\n return {\n ngModule: TimepickerModule,\n providers: [TimepickerConfig]\n };\n };\n TimepickerModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule, FormsModule],\n declarations: [TimepickerComponent],\n exports: [TimepickerComponent, FormsModule]\n },] },\n ];\n /** @nocollapse */\n TimepickerModule.ctorParameters = function () { return []; };\n return TimepickerModule;\n}());\n//# sourceMappingURL=timepicker.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/timepicker/timepicker.module.js\n// module id = 661\n// module chunks = 1","import { Component, Input, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { TimepickerConfig } from './timepicker.config';\nexport var TIMEPICKER_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return TimepickerComponent; }),\n multi: true\n};\n// todo: refactor directive has to many functions! (extract to stateless helper)\n// todo: use moment js?\n// todo: implement `time` validator\n// todo: replace increment/decrement blockers with getters, or extract\n// todo: unify work with selected\nfunction isDefined(value) {\n return typeof value !== 'undefined';\n}\nfunction addMinutes(date, minutes) {\n var dt = new Date(date.getTime() + minutes * 60000);\n var newDate = new Date(date);\n newDate.setHours(dt.getHours(), dt.getMinutes());\n return newDate;\n}\nexport var TimepickerComponent = (function () {\n function TimepickerComponent(_config) {\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n // result value\n this._selected = new Date();\n this.config = _config;\n Object.assign(this, _config);\n }\n Object.defineProperty(TimepickerComponent.prototype, \"showMeridian\", {\n /** if true works in 12H mode and displays AM/PM. If false works in 24H mode and hides AM/PM */\n get: function () {\n return this._showMeridian;\n },\n set: function (value) {\n this._showMeridian = value;\n // || !this.$error.time\n // if (true) {\n this.updateTemplate();\n return;\n // }\n // Evaluate from template\n /*let hours = this.getHoursFromTemplate();\n let minutes = this.getMinutesFromTemplate();\n if (isDefined(hours) && isDefined(minutes)) {\n this.selected.setHours(hours);\n this.refresh();\n }*/\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TimepickerComponent.prototype, \"selected\", {\n get: function () {\n return this._selected;\n },\n set: function (v) {\n if (v) {\n this._selected = v;\n this.updateTemplate();\n this.onChange(this.selected);\n }\n },\n enumerable: true,\n configurable: true\n });\n // todo: add formatter value to Date object\n TimepickerComponent.prototype.ngOnInit = function () {\n // todo: take in account $locale.DATETIME_FORMATS.AMPMS;\n if (this.mousewheel) {\n }\n if (this.arrowkeys) {\n }\n // this.setupInputEvents();\n };\n TimepickerComponent.prototype.writeValue = function (v) {\n if (v === this.selected) {\n return;\n }\n if (v && v instanceof Date) {\n this.selected = v;\n return;\n }\n this.selected = v ? new Date(v) : void 0;\n };\n TimepickerComponent.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n TimepickerComponent.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n TimepickerComponent.prototype.setDisabledState = function (isDisabled) {\n this.readonlyInput = isDisabled;\n };\n TimepickerComponent.prototype.updateHours = function () {\n if (this.readonlyInput) {\n return;\n }\n var hours = this.getHoursFromTemplate();\n var minutes = this.getMinutesFromTemplate();\n this.invalidHours = !isDefined(hours);\n this.invalidMinutes = !isDefined(minutes);\n if (this.invalidHours || this.invalidMinutes) {\n // TODO: needed a validation functionality.\n return;\n }\n this.selected.setHours(hours);\n this.invalidHours = (this.selected < this.min || this.selected > this.max);\n if (this.invalidHours) {\n // todo: validation?\n // invalidate(true);\n return;\n }\n else {\n this.refresh();\n }\n };\n TimepickerComponent.prototype.hoursOnBlur = function () {\n if (this.readonlyInput) {\n return;\n }\n // todo: binded with validation\n if (!this.invalidHours && parseInt(this.hours, 10) < 10) {\n this.hours = this.pad(this.hours);\n }\n };\n TimepickerComponent.prototype.updateMinutes = function () {\n if (this.readonlyInput) {\n return;\n }\n var minutes = this.getMinutesFromTemplate();\n var hours = this.getHoursFromTemplate();\n this.invalidMinutes = !isDefined(minutes);\n this.invalidHours = !isDefined(hours);\n if (this.invalidMinutes || this.invalidHours) {\n // TODO: needed a validation functionality.\n return;\n }\n this.selected.setMinutes(minutes);\n this.invalidMinutes = (this.selected < this.min || this.selected > this.max);\n if (this.invalidMinutes) {\n // todo: validation\n // invalidate(undefined, true);\n return;\n }\n else {\n this.refresh();\n }\n };\n TimepickerComponent.prototype.minutesOnBlur = function () {\n if (this.readonlyInput) {\n return;\n }\n if (!this.invalidMinutes && parseInt(this.minutes, 10) < 10) {\n this.minutes = this.pad(this.minutes);\n }\n };\n TimepickerComponent.prototype.incrementHours = function () {\n if (!this.noIncrementHours()) {\n this.addMinutesToSelected(this.hourStep * 60);\n }\n };\n TimepickerComponent.prototype.decrementHours = function () {\n if (!this.noDecrementHours()) {\n this.addMinutesToSelected(-this.hourStep * 60);\n }\n };\n TimepickerComponent.prototype.incrementMinutes = function () {\n if (!this.noIncrementMinutes()) {\n this.addMinutesToSelected(this.minuteStep);\n }\n };\n TimepickerComponent.prototype.decrementMinutes = function () {\n if (!this.noDecrementMinutes()) {\n this.addMinutesToSelected(-this.minuteStep);\n }\n };\n TimepickerComponent.prototype.noIncrementHours = function () {\n var incrementedSelected = addMinutes(this.selected, this.hourStep * 60);\n return incrementedSelected > this.max ||\n (incrementedSelected < this.selected && incrementedSelected < this.min);\n };\n TimepickerComponent.prototype.noDecrementHours = function () {\n var decrementedSelected = addMinutes(this.selected, -this.hourStep * 60);\n return decrementedSelected < this.min ||\n (decrementedSelected > this.selected && decrementedSelected > this.max);\n };\n TimepickerComponent.prototype.noIncrementMinutes = function () {\n var incrementedSelected = addMinutes(this.selected, this.minuteStep);\n return incrementedSelected > this.max ||\n (incrementedSelected < this.selected && incrementedSelected < this.min);\n };\n TimepickerComponent.prototype.noDecrementMinutes = function () {\n var decrementedSelected = addMinutes(this.selected, -this.minuteStep);\n return decrementedSelected < this.min ||\n (decrementedSelected > this.selected && decrementedSelected > this.max);\n };\n TimepickerComponent.prototype.toggleMeridian = function () {\n if (!this.noToggleMeridian()) {\n var sign = this.selected.getHours() < 12 ? 1 : -1;\n this.addMinutesToSelected(12 * 60 * sign);\n }\n };\n TimepickerComponent.prototype.noToggleMeridian = function () {\n if (this.readonlyInput) {\n return true;\n }\n if (this.selected.getHours() < 13) {\n return addMinutes(this.selected, 12 * 60) > this.max;\n }\n else {\n return addMinutes(this.selected, -12 * 60) < this.min;\n }\n };\n TimepickerComponent.prototype.refresh = function () {\n // this.makeValid();\n this.updateTemplate();\n this.onChange(this.selected);\n };\n TimepickerComponent.prototype.updateTemplate = function () {\n var hours = this.selected.getHours();\n var minutes = this.selected.getMinutes();\n if (this.showMeridian) {\n // Convert 24 to 12 hour system\n hours = (hours === 0 || hours === 12) ? 12 : hours % 12;\n }\n // this.hours = keyboardChange === 'h' ? hours : this.pad(hours);\n // if (keyboardChange !== 'm') {\n // this.minutes = this.pad(minutes);\n // }\n this.hours = this.pad(hours);\n this.minutes = this.pad(minutes);\n if (!this.meridians) {\n this.meridians = this.config.meridians;\n }\n this.meridian = this.selected.getHours() < 12\n ? this.meridians[0]\n : this.meridians[1];\n };\n TimepickerComponent.prototype.getHoursFromTemplate = function () {\n var hours = parseInt(this.hours, 10);\n var valid = this.showMeridian\n ? (hours > 0 && hours < 13)\n : (hours >= 0 && hours < 24);\n if (!valid) {\n return void 0;\n }\n if (this.showMeridian) {\n if (hours === 12) {\n hours = 0;\n }\n if (this.meridian === this.meridians[1]) {\n hours = hours + 12;\n }\n }\n return hours;\n };\n TimepickerComponent.prototype.getMinutesFromTemplate = function () {\n var minutes = parseInt(this.minutes, 10);\n return (minutes >= 0 && minutes < 60) ? minutes : undefined;\n };\n TimepickerComponent.prototype.pad = function (value) {\n return (isDefined(value) && value.toString().length < 2)\n ? '0' + value\n : value.toString();\n };\n TimepickerComponent.prototype.addMinutesToSelected = function (minutes) {\n this.selected = addMinutes(this.selected, minutes);\n this.refresh();\n };\n TimepickerComponent.decorators = [\n { type: Component, args: [{\n selector: 'timepicker',\n template: \"\\n \\n \",\n providers: [TIMEPICKER_CONTROL_VALUE_ACCESSOR]\n },] },\n ];\n /** @nocollapse */\n TimepickerComponent.ctorParameters = function () { return [\n { type: TimepickerConfig, },\n ]; };\n TimepickerComponent.propDecorators = {\n 'hourStep': [{ type: Input },],\n 'minuteStep': [{ type: Input },],\n 'readonlyInput': [{ type: Input },],\n 'mousewheel': [{ type: Input },],\n 'arrowkeys': [{ type: Input },],\n 'showSpinners': [{ type: Input },],\n 'min': [{ type: Input },],\n 'max': [{ type: Input },],\n 'meridians': [{ type: Input },],\n 'showMeridian': [{ type: Input },],\n };\n return TimepickerComponent;\n}());\n//# sourceMappingURL=timepicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/timepicker/timepicker.component.js\n// module id = 662\n// module chunks = 1","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { TooltipContainerComponent } from './tooltip-container.component';\nimport { TooltipDirective } from './tooltip.directive';\nimport { TooltipConfig } from './tooltip.config';\nimport { ComponentLoaderFactory } from '../component-loader';\nimport { PositioningService } from '../positioning';\nexport var TooltipModule = (function () {\n function TooltipModule() {\n }\n TooltipModule.forRoot = function () {\n return {\n ngModule: TooltipModule,\n providers: [TooltipConfig, ComponentLoaderFactory, PositioningService]\n };\n };\n ;\n TooltipModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [TooltipDirective, TooltipContainerComponent],\n exports: [TooltipDirective],\n entryComponents: [TooltipContainerComponent]\n },] },\n ];\n /** @nocollapse */\n TooltipModule.ctorParameters = function () { return []; };\n return TooltipModule;\n}());\n//# sourceMappingURL=tooltip.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/tooltip/tooltip.module.js\n// module id = 663\n// module chunks = 1","var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n};\nvar __metadata = (this && this.__metadata) || function (k, v) {\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(k, v);\n};\nimport { Directive, Input, ViewContainerRef, Output, EventEmitter, Renderer, ElementRef } from '@angular/core';\nimport { TooltipContainerComponent } from './tooltip-container.component';\nimport { TooltipConfig } from './tooltip.config';\nimport { ComponentLoaderFactory } from '../component-loader';\nimport { OnChange } from '../utils/decorators';\nexport var TooltipDirective = (function () {\n // tslint:disable-next-line\n function TooltipDirective(_viewContainerRef, _renderer, _elementRef, cis, config) {\n /** Fired when tooltip content changes */\n this.tooltipChange = new EventEmitter();\n /** @deprecated - removed, will be added to configuration */\n this._animation = true;\n /** @deprecated */\n this._delay = 0;\n /** @deprecated */\n this._fadeDuration = 150;\n /** @deprecated */\n this.tooltipStateChanged = new EventEmitter();\n this._tooltip = cis\n .createLoader(_elementRef, _viewContainerRef, _renderer)\n .provide({ provide: TooltipConfig, useValue: config });\n Object.assign(this, config);\n this.onShown = this._tooltip.onShown;\n this.onHidden = this._tooltip.onHidden;\n }\n Object.defineProperty(TooltipDirective.prototype, \"isOpen\", {\n /**\n * Returns whether or not the tooltip is currently being shown\n */\n get: function () { return this._tooltip.isShown; },\n set: function (value) {\n if (value) {\n this.show();\n }\n else {\n this.hide();\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"htmlContent\", {\n /* tslint:disable */\n /** @deprecated - please use `tooltip` instead */\n set: function (value) {\n console.warn('tooltipHtml was deprecated, please use `tooltip` instead');\n this.tooltip = value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_placement\", {\n /** @deprecated - please use `placement` instead */\n set: function (value) {\n console.warn('tooltipPlacement was deprecated, please use `placement` instead');\n this.placement = value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_isOpen\", {\n get: function () {\n console.warn('tooltipIsOpen was deprecated, please use `isOpen` instead');\n return this.isOpen;\n },\n /** @deprecated - please use `isOpen` instead*/\n set: function (value) {\n console.warn('tooltipIsOpen was deprecated, please use `isOpen` instead');\n this.isOpen = value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_enable\", {\n get: function () {\n console.warn('tooltipEnable was deprecated, please use `isDisabled` instead');\n return this.isDisabled === true;\n },\n /** @deprecated - please use `isDisabled` instead */\n set: function (value) {\n console.warn('tooltipEnable was deprecated, please use `isDisabled` instead');\n this.isDisabled = value === true;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_appendToBody\", {\n get: function () {\n console.warn('tooltipAppendToBody was deprecated, please use `container=\"body\"` instead');\n return this.container === 'body';\n },\n /** @deprecated - please use `container=\"body\"` instead */\n set: function (value) {\n console.warn('tooltipAppendToBody was deprecated, please use `container=\"body\"` instead');\n this.container = value ? 'body' : this.container;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_popupClass\", {\n /** @deprecated - will replaced with customClass */\n set: function (value) {\n console.warn('tooltipClass deprecated');\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_tooltipContext\", {\n /** @deprecated - removed */\n set: function (value) {\n console.warn('tooltipContext deprecated');\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_tooltipTrigger\", {\n /** @deprecated - please use `triggers` instead */\n get: function () {\n console.warn('tooltipTrigger was deprecated, please use `triggers` instead');\n return this.triggers;\n },\n set: function (value) {\n console.warn('tooltipTrigger was deprecated, please use `triggers` instead');\n this.triggers = (value || '').toString();\n },\n enumerable: true,\n configurable: true\n });\n ;\n ;\n TooltipDirective.prototype.ngOnInit = function () {\n var _this = this;\n this._tooltip.listen({\n triggers: this.triggers,\n show: function () { return _this.show(); }\n });\n this.tooltipChange.subscribe(function (value) {\n if (!value) {\n _this._tooltip.hide();\n }\n });\n };\n /**\n * Toggles an element’s tooltip. This is considered a “manual” triggering of\n * the tooltip.\n */\n TooltipDirective.prototype.toggle = function () {\n if (this.isOpen) {\n return this.hide();\n }\n this.show();\n };\n /**\n * Opens an element’s tooltip. This is considered a “manual” triggering of\n * the tooltip.\n */\n TooltipDirective.prototype.show = function () {\n var _this = this;\n if (this.isOpen || this.isDisabled || this._delayTimeoutId || !this.tooltip) {\n return;\n }\n var showTooltip = function () { return _this._tooltip\n .attach(TooltipContainerComponent)\n .to(_this.container)\n .position({ attachment: _this.placement })\n .show({\n content: _this.tooltip,\n placement: _this.placement\n }); };\n if (this._delay) {\n this._delayTimeoutId = setTimeout(function () { showTooltip(); }, this._delay);\n }\n else {\n showTooltip();\n }\n };\n /**\n * Closes an element’s tooltip. This is considered a “manual” triggering of\n * the tooltip.\n */\n TooltipDirective.prototype.hide = function () {\n var _this = this;\n if (this._delayTimeoutId) {\n clearTimeout(this._delayTimeoutId);\n this._delayTimeoutId = undefined;\n }\n if (!this._tooltip.isShown) {\n return;\n }\n this._tooltip.instance.classMap.in = false;\n setTimeout(function () {\n _this._tooltip.hide();\n }, this._fadeDuration);\n };\n TooltipDirective.prototype.ngOnDestroy = function () {\n this._tooltip.dispose();\n };\n TooltipDirective.decorators = [\n { type: Directive, args: [{\n selector: '[tooltip], [tooltipHtml]',\n exportAs: 'bs-tooltip'\n },] },\n ];\n /** @nocollapse */\n TooltipDirective.ctorParameters = function () { return [\n { type: ViewContainerRef, },\n { type: Renderer, },\n { type: ElementRef, },\n { type: ComponentLoaderFactory, },\n { type: TooltipConfig, },\n ]; };\n TooltipDirective.propDecorators = {\n 'tooltip': [{ type: Input },],\n 'tooltipChange': [{ type: Output },],\n 'placement': [{ type: Input },],\n 'triggers': [{ type: Input },],\n 'container': [{ type: Input },],\n 'isOpen': [{ type: Input },],\n 'isDisabled': [{ type: Input },],\n 'onShown': [{ type: Output },],\n 'onHidden': [{ type: Output },],\n 'htmlContent': [{ type: Input, args: ['tooltipHtml',] },],\n '_placement': [{ type: Input, args: ['tooltipPlacement',] },],\n '_isOpen': [{ type: Input, args: ['tooltipIsOpen',] },],\n '_enable': [{ type: Input, args: ['tooltipEnable',] },],\n '_appendToBody': [{ type: Input, args: ['tooltipAppendToBody',] },],\n '_animation': [{ type: Input, args: ['tooltipAnimation',] },],\n '_popupClass': [{ type: Input, args: ['tooltipClass',] },],\n '_tooltipContext': [{ type: Input, args: ['tooltipContext',] },],\n '_delay': [{ type: Input, args: ['tooltipPopupDelay',] },],\n '_fadeDuration': [{ type: Input, args: ['tooltipFadeDuration',] },],\n '_tooltipTrigger': [{ type: Input, args: ['tooltipTrigger',] },],\n 'tooltipStateChanged': [{ type: Output },],\n };\n __decorate([\n OnChange(), \n __metadata('design:type', Object)\n ], TooltipDirective.prototype, \"tooltip\", void 0);\n return TooltipDirective;\n}());\n//# sourceMappingURL=tooltip.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/tooltip/tooltip.directive.js\n// module id = 664\n// module chunks = 1","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { TypeaheadContainerComponent } from './typeahead-container.component';\nimport { TypeaheadDirective } from './typeahead.directive';\nimport { ComponentLoaderFactory } from '../component-loader';\nimport { PositioningService } from '../positioning';\nexport var TypeaheadModule = (function () {\n function TypeaheadModule() {\n }\n TypeaheadModule.forRoot = function () {\n return {\n ngModule: TypeaheadModule,\n providers: [ComponentLoaderFactory, PositioningService]\n };\n };\n ;\n TypeaheadModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [TypeaheadContainerComponent, TypeaheadDirective],\n exports: [TypeaheadContainerComponent, TypeaheadDirective],\n entryComponents: [TypeaheadContainerComponent]\n },] },\n ];\n /** @nocollapse */\n TypeaheadModule.ctorParameters = function () { return []; };\n return TypeaheadModule;\n}());\n//# sourceMappingURL=typeahead.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/typeahead/typeahead.module.js\n// module id = 665\n// module chunks = 1","/* tslint:disable:max-file-line-count */\nexport var latinMap = {\n 'Á': 'A',\n 'Ă': 'A',\n 'Ắ': 'A',\n 'Ặ': 'A',\n 'Ằ': 'A',\n 'Ẳ': 'A',\n 'Ẵ': 'A',\n 'Ǎ': 'A',\n 'Â': 'A',\n 'Ấ': 'A',\n 'Ậ': 'A',\n 'Ầ': 'A',\n 'Ẩ': 'A',\n 'Ẫ': 'A',\n 'Ä': 'A',\n 'Ǟ': 'A',\n 'Ȧ': 'A',\n 'Ǡ': 'A',\n 'Ạ': 'A',\n 'Ȁ': 'A',\n 'À': 'A',\n 'Ả': 'A',\n 'Ȃ': 'A',\n 'Ā': 'A',\n 'Ą': 'A',\n 'Å': 'A',\n 'Ǻ': 'A',\n 'Ḁ': 'A',\n 'Ⱥ': 'A',\n 'Ã': 'A',\n 'Ꜳ': 'AA',\n 'Æ': 'AE',\n 'Ǽ': 'AE',\n 'Ǣ': 'AE',\n 'Ꜵ': 'AO',\n 'Ꜷ': 'AU',\n 'Ꜹ': 'AV',\n 'Ꜻ': 'AV',\n 'Ꜽ': 'AY',\n 'Ḃ': 'B',\n 'Ḅ': 'B',\n 'Ɓ': 'B',\n 'Ḇ': 'B',\n 'Ƀ': 'B',\n 'Ƃ': 'B',\n 'Ć': 'C',\n 'Č': 'C',\n 'Ç': 'C',\n 'Ḉ': 'C',\n 'Ĉ': 'C',\n 'Ċ': 'C',\n 'Ƈ': 'C',\n 'Ȼ': 'C',\n 'Ď': 'D',\n 'Ḑ': 'D',\n 'Ḓ': 'D',\n 'Ḋ': 'D',\n 'Ḍ': 'D',\n 'Ɗ': 'D',\n 'Ḏ': 'D',\n 'Dz': 'D',\n 'Dž': 'D',\n 'Đ': 'D',\n 'Ƌ': 'D',\n 'DZ': 'DZ',\n 'DŽ': 'DZ',\n 'É': 'E',\n 'Ĕ': 'E',\n 'Ě': 'E',\n 'Ȩ': 'E',\n 'Ḝ': 'E',\n 'Ê': 'E',\n 'Ế': 'E',\n 'Ệ': 'E',\n 'Ề': 'E',\n 'Ể': 'E',\n 'Ễ': 'E',\n 'Ḙ': 'E',\n 'Ë': 'E',\n 'Ė': 'E',\n 'Ẹ': 'E',\n 'Ȅ': 'E',\n 'È': 'E',\n 'Ẻ': 'E',\n 'Ȇ': 'E',\n 'Ē': 'E',\n 'Ḗ': 'E',\n 'Ḕ': 'E',\n 'Ę': 'E',\n 'Ɇ': 'E',\n 'Ẽ': 'E',\n 'Ḛ': 'E',\n 'Ꝫ': 'ET',\n 'Ḟ': 'F',\n 'Ƒ': 'F',\n 'Ǵ': 'G',\n 'Ğ': 'G',\n 'Ǧ': 'G',\n 'Ģ': 'G',\n 'Ĝ': 'G',\n 'Ġ': 'G',\n 'Ɠ': 'G',\n 'Ḡ': 'G',\n 'Ǥ': 'G',\n 'Ḫ': 'H',\n 'Ȟ': 'H',\n 'Ḩ': 'H',\n 'Ĥ': 'H',\n 'Ⱨ': 'H',\n 'Ḧ': 'H',\n 'Ḣ': 'H',\n 'Ḥ': 'H',\n 'Ħ': 'H',\n 'Í': 'I',\n 'Ĭ': 'I',\n 'Ǐ': 'I',\n 'Î': 'I',\n 'Ï': 'I',\n 'Ḯ': 'I',\n 'İ': 'I',\n 'Ị': 'I',\n 'Ȉ': 'I',\n 'Ì': 'I',\n 'Ỉ': 'I',\n 'Ȋ': 'I',\n 'Ī': 'I',\n 'Į': 'I',\n 'Ɨ': 'I',\n 'Ĩ': 'I',\n 'Ḭ': 'I',\n 'Ꝺ': 'D',\n 'Ꝼ': 'F',\n 'Ᵹ': 'G',\n 'Ꞃ': 'R',\n 'Ꞅ': 'S',\n 'Ꞇ': 'T',\n 'Ꝭ': 'IS',\n 'Ĵ': 'J',\n 'Ɉ': 'J',\n 'Ḱ': 'K',\n 'Ǩ': 'K',\n 'Ķ': 'K',\n 'Ⱪ': 'K',\n 'Ꝃ': 'K',\n 'Ḳ': 'K',\n 'Ƙ': 'K',\n 'Ḵ': 'K',\n 'Ꝁ': 'K',\n 'Ꝅ': 'K',\n 'Ĺ': 'L',\n 'Ƚ': 'L',\n 'Ľ': 'L',\n 'Ļ': 'L',\n 'Ḽ': 'L',\n 'Ḷ': 'L',\n 'Ḹ': 'L',\n 'Ⱡ': 'L',\n 'Ꝉ': 'L',\n 'Ḻ': 'L',\n 'Ŀ': 'L',\n 'Ɫ': 'L',\n 'Lj': 'L',\n 'Ł': 'L',\n 'LJ': 'LJ',\n 'Ḿ': 'M',\n 'Ṁ': 'M',\n 'Ṃ': 'M',\n 'Ɱ': 'M',\n 'Ń': 'N',\n 'Ň': 'N',\n 'Ņ': 'N',\n 'Ṋ': 'N',\n 'Ṅ': 'N',\n 'Ṇ': 'N',\n 'Ǹ': 'N',\n 'Ɲ': 'N',\n 'Ṉ': 'N',\n 'Ƞ': 'N',\n 'Nj': 'N',\n 'Ñ': 'N',\n 'NJ': 'NJ',\n 'Ó': 'O',\n 'Ŏ': 'O',\n 'Ǒ': 'O',\n 'Ô': 'O',\n 'Ố': 'O',\n 'Ộ': 'O',\n 'Ồ': 'O',\n 'Ổ': 'O',\n 'Ỗ': 'O',\n 'Ö': 'O',\n 'Ȫ': 'O',\n 'Ȯ': 'O',\n 'Ȱ': 'O',\n 'Ọ': 'O',\n 'Ő': 'O',\n 'Ȍ': 'O',\n 'Ò': 'O',\n 'Ỏ': 'O',\n 'Ơ': 'O',\n 'Ớ': 'O',\n 'Ợ': 'O',\n 'Ờ': 'O',\n 'Ở': 'O',\n 'Ỡ': 'O',\n 'Ȏ': 'O',\n 'Ꝋ': 'O',\n 'Ꝍ': 'O',\n 'Ō': 'O',\n 'Ṓ': 'O',\n 'Ṑ': 'O',\n 'Ɵ': 'O',\n 'Ǫ': 'O',\n 'Ǭ': 'O',\n 'Ø': 'O',\n 'Ǿ': 'O',\n 'Õ': 'O',\n 'Ṍ': 'O',\n 'Ṏ': 'O',\n 'Ȭ': 'O',\n 'Ƣ': 'OI',\n 'Ꝏ': 'OO',\n 'Ɛ': 'E',\n 'Ɔ': 'O',\n 'Ȣ': 'OU',\n 'Ṕ': 'P',\n 'Ṗ': 'P',\n 'Ꝓ': 'P',\n 'Ƥ': 'P',\n 'Ꝕ': 'P',\n 'Ᵽ': 'P',\n 'Ꝑ': 'P',\n 'Ꝙ': 'Q',\n 'Ꝗ': 'Q',\n 'Ŕ': 'R',\n 'Ř': 'R',\n 'Ŗ': 'R',\n 'Ṙ': 'R',\n 'Ṛ': 'R',\n 'Ṝ': 'R',\n 'Ȑ': 'R',\n 'Ȓ': 'R',\n 'Ṟ': 'R',\n 'Ɍ': 'R',\n 'Ɽ': 'R',\n 'Ꜿ': 'C',\n 'Ǝ': 'E',\n 'Ś': 'S',\n 'Ṥ': 'S',\n 'Š': 'S',\n 'Ṧ': 'S',\n 'Ş': 'S',\n 'Ŝ': 'S',\n 'Ș': 'S',\n 'Ṡ': 'S',\n 'Ṣ': 'S',\n 'Ṩ': 'S',\n 'Ť': 'T',\n 'Ţ': 'T',\n 'Ṱ': 'T',\n 'Ț': 'T',\n 'Ⱦ': 'T',\n 'Ṫ': 'T',\n 'Ṭ': 'T',\n 'Ƭ': 'T',\n 'Ṯ': 'T',\n 'Ʈ': 'T',\n 'Ŧ': 'T',\n 'Ɐ': 'A',\n 'Ꞁ': 'L',\n 'Ɯ': 'M',\n 'Ʌ': 'V',\n 'Ꜩ': 'TZ',\n 'Ú': 'U',\n 'Ŭ': 'U',\n 'Ǔ': 'U',\n 'Û': 'U',\n 'Ṷ': 'U',\n 'Ü': 'U',\n 'Ǘ': 'U',\n 'Ǚ': 'U',\n 'Ǜ': 'U',\n 'Ǖ': 'U',\n 'Ṳ': 'U',\n 'Ụ': 'U',\n 'Ű': 'U',\n 'Ȕ': 'U',\n 'Ù': 'U',\n 'Ủ': 'U',\n 'Ư': 'U',\n 'Ứ': 'U',\n 'Ự': 'U',\n 'Ừ': 'U',\n 'Ử': 'U',\n 'Ữ': 'U',\n 'Ȗ': 'U',\n 'Ū': 'U',\n 'Ṻ': 'U',\n 'Ų': 'U',\n 'Ů': 'U',\n 'Ũ': 'U',\n 'Ṹ': 'U',\n 'Ṵ': 'U',\n 'Ꝟ': 'V',\n 'Ṿ': 'V',\n 'Ʋ': 'V',\n 'Ṽ': 'V',\n 'Ꝡ': 'VY',\n 'Ẃ': 'W',\n 'Ŵ': 'W',\n 'Ẅ': 'W',\n 'Ẇ': 'W',\n 'Ẉ': 'W',\n 'Ẁ': 'W',\n 'Ⱳ': 'W',\n 'Ẍ': 'X',\n 'Ẋ': 'X',\n 'Ý': 'Y',\n 'Ŷ': 'Y',\n 'Ÿ': 'Y',\n 'Ẏ': 'Y',\n 'Ỵ': 'Y',\n 'Ỳ': 'Y',\n 'Ƴ': 'Y',\n 'Ỷ': 'Y',\n 'Ỿ': 'Y',\n 'Ȳ': 'Y',\n 'Ɏ': 'Y',\n 'Ỹ': 'Y',\n 'Ź': 'Z',\n 'Ž': 'Z',\n 'Ẑ': 'Z',\n 'Ⱬ': 'Z',\n 'Ż': 'Z',\n 'Ẓ': 'Z',\n 'Ȥ': 'Z',\n 'Ẕ': 'Z',\n 'Ƶ': 'Z',\n 'IJ': 'IJ',\n 'Œ': 'OE',\n 'ᴀ': 'A',\n 'ᴁ': 'AE',\n 'ʙ': 'B',\n 'ᴃ': 'B',\n 'ᴄ': 'C',\n 'ᴅ': 'D',\n 'ᴇ': 'E',\n 'ꜰ': 'F',\n 'ɢ': 'G',\n 'ʛ': 'G',\n 'ʜ': 'H',\n 'ɪ': 'I',\n 'ʁ': 'R',\n 'ᴊ': 'J',\n 'ᴋ': 'K',\n 'ʟ': 'L',\n 'ᴌ': 'L',\n 'ᴍ': 'M',\n 'ɴ': 'N',\n 'ᴏ': 'O',\n 'ɶ': 'OE',\n 'ᴐ': 'O',\n 'ᴕ': 'OU',\n 'ᴘ': 'P',\n 'ʀ': 'R',\n 'ᴎ': 'N',\n 'ᴙ': 'R',\n 'ꜱ': 'S',\n 'ᴛ': 'T',\n 'ⱻ': 'E',\n 'ᴚ': 'R',\n 'ᴜ': 'U',\n 'ᴠ': 'V',\n 'ᴡ': 'W',\n 'ʏ': 'Y',\n 'ᴢ': 'Z',\n 'á': 'a',\n 'ă': 'a',\n 'ắ': 'a',\n 'ặ': 'a',\n 'ằ': 'a',\n 'ẳ': 'a',\n 'ẵ': 'a',\n 'ǎ': 'a',\n 'â': 'a',\n 'ấ': 'a',\n 'ậ': 'a',\n 'ầ': 'a',\n 'ẩ': 'a',\n 'ẫ': 'a',\n 'ä': 'a',\n 'ǟ': 'a',\n 'ȧ': 'a',\n 'ǡ': 'a',\n 'ạ': 'a',\n 'ȁ': 'a',\n 'à': 'a',\n 'ả': 'a',\n 'ȃ': 'a',\n 'ā': 'a',\n 'ą': 'a',\n 'ᶏ': 'a',\n 'ẚ': 'a',\n 'å': 'a',\n 'ǻ': 'a',\n 'ḁ': 'a',\n 'ⱥ': 'a',\n 'ã': 'a',\n 'ꜳ': 'aa',\n 'æ': 'ae',\n 'ǽ': 'ae',\n 'ǣ': 'ae',\n 'ꜵ': 'ao',\n 'ꜷ': 'au',\n 'ꜹ': 'av',\n 'ꜻ': 'av',\n 'ꜽ': 'ay',\n 'ḃ': 'b',\n 'ḅ': 'b',\n 'ɓ': 'b',\n 'ḇ': 'b',\n 'ᵬ': 'b',\n 'ᶀ': 'b',\n 'ƀ': 'b',\n 'ƃ': 'b',\n 'ɵ': 'o',\n 'ć': 'c',\n 'č': 'c',\n 'ç': 'c',\n 'ḉ': 'c',\n 'ĉ': 'c',\n 'ɕ': 'c',\n 'ċ': 'c',\n 'ƈ': 'c',\n 'ȼ': 'c',\n 'ď': 'd',\n 'ḑ': 'd',\n 'ḓ': 'd',\n 'ȡ': 'd',\n 'ḋ': 'd',\n 'ḍ': 'd',\n 'ɗ': 'd',\n 'ᶑ': 'd',\n 'ḏ': 'd',\n 'ᵭ': 'd',\n 'ᶁ': 'd',\n 'đ': 'd',\n 'ɖ': 'd',\n 'ƌ': 'd',\n 'ı': 'i',\n 'ȷ': 'j',\n 'ɟ': 'j',\n 'ʄ': 'j',\n 'dz': 'dz',\n 'dž': 'dz',\n 'é': 'e',\n 'ĕ': 'e',\n 'ě': 'e',\n 'ȩ': 'e',\n 'ḝ': 'e',\n 'ê': 'e',\n 'ế': 'e',\n 'ệ': 'e',\n 'ề': 'e',\n 'ể': 'e',\n 'ễ': 'e',\n 'ḙ': 'e',\n 'ë': 'e',\n 'ė': 'e',\n 'ẹ': 'e',\n 'ȅ': 'e',\n 'è': 'e',\n 'ẻ': 'e',\n 'ȇ': 'e',\n 'ē': 'e',\n 'ḗ': 'e',\n 'ḕ': 'e',\n 'ⱸ': 'e',\n 'ę': 'e',\n 'ᶒ': 'e',\n 'ɇ': 'e',\n 'ẽ': 'e',\n 'ḛ': 'e',\n 'ꝫ': 'et',\n 'ḟ': 'f',\n 'ƒ': 'f',\n 'ᵮ': 'f',\n 'ᶂ': 'f',\n 'ǵ': 'g',\n 'ğ': 'g',\n 'ǧ': 'g',\n 'ģ': 'g',\n 'ĝ': 'g',\n 'ġ': 'g',\n 'ɠ': 'g',\n 'ḡ': 'g',\n 'ᶃ': 'g',\n 'ǥ': 'g',\n 'ḫ': 'h',\n 'ȟ': 'h',\n 'ḩ': 'h',\n 'ĥ': 'h',\n 'ⱨ': 'h',\n 'ḧ': 'h',\n 'ḣ': 'h',\n 'ḥ': 'h',\n 'ɦ': 'h',\n 'ẖ': 'h',\n 'ħ': 'h',\n 'ƕ': 'hv',\n 'í': 'i',\n 'ĭ': 'i',\n 'ǐ': 'i',\n 'î': 'i',\n 'ï': 'i',\n 'ḯ': 'i',\n 'ị': 'i',\n 'ȉ': 'i',\n 'ì': 'i',\n 'ỉ': 'i',\n 'ȋ': 'i',\n 'ī': 'i',\n 'į': 'i',\n 'ᶖ': 'i',\n 'ɨ': 'i',\n 'ĩ': 'i',\n 'ḭ': 'i',\n 'ꝺ': 'd',\n 'ꝼ': 'f',\n 'ᵹ': 'g',\n 'ꞃ': 'r',\n 'ꞅ': 's',\n 'ꞇ': 't',\n 'ꝭ': 'is',\n 'ǰ': 'j',\n 'ĵ': 'j',\n 'ʝ': 'j',\n 'ɉ': 'j',\n 'ḱ': 'k',\n 'ǩ': 'k',\n 'ķ': 'k',\n 'ⱪ': 'k',\n 'ꝃ': 'k',\n 'ḳ': 'k',\n 'ƙ': 'k',\n 'ḵ': 'k',\n 'ᶄ': 'k',\n 'ꝁ': 'k',\n 'ꝅ': 'k',\n 'ĺ': 'l',\n 'ƚ': 'l',\n 'ɬ': 'l',\n 'ľ': 'l',\n 'ļ': 'l',\n 'ḽ': 'l',\n 'ȴ': 'l',\n 'ḷ': 'l',\n 'ḹ': 'l',\n 'ⱡ': 'l',\n 'ꝉ': 'l',\n 'ḻ': 'l',\n 'ŀ': 'l',\n 'ɫ': 'l',\n 'ᶅ': 'l',\n 'ɭ': 'l',\n 'ł': 'l',\n 'lj': 'lj',\n 'ſ': 's',\n 'ẜ': 's',\n 'ẛ': 's',\n 'ẝ': 's',\n 'ḿ': 'm',\n 'ṁ': 'm',\n 'ṃ': 'm',\n 'ɱ': 'm',\n 'ᵯ': 'm',\n 'ᶆ': 'm',\n 'ń': 'n',\n 'ň': 'n',\n 'ņ': 'n',\n 'ṋ': 'n',\n 'ȵ': 'n',\n 'ṅ': 'n',\n 'ṇ': 'n',\n 'ǹ': 'n',\n 'ɲ': 'n',\n 'ṉ': 'n',\n 'ƞ': 'n',\n 'ᵰ': 'n',\n 'ᶇ': 'n',\n 'ɳ': 'n',\n 'ñ': 'n',\n 'nj': 'nj',\n 'ó': 'o',\n 'ŏ': 'o',\n 'ǒ': 'o',\n 'ô': 'o',\n 'ố': 'o',\n 'ộ': 'o',\n 'ồ': 'o',\n 'ổ': 'o',\n 'ỗ': 'o',\n 'ö': 'o',\n 'ȫ': 'o',\n 'ȯ': 'o',\n 'ȱ': 'o',\n 'ọ': 'o',\n 'ő': 'o',\n 'ȍ': 'o',\n 'ò': 'o',\n 'ỏ': 'o',\n 'ơ': 'o',\n 'ớ': 'o',\n 'ợ': 'o',\n 'ờ': 'o',\n 'ở': 'o',\n 'ỡ': 'o',\n 'ȏ': 'o',\n 'ꝋ': 'o',\n 'ꝍ': 'o',\n 'ⱺ': 'o',\n 'ō': 'o',\n 'ṓ': 'o',\n 'ṑ': 'o',\n 'ǫ': 'o',\n 'ǭ': 'o',\n 'ø': 'o',\n 'ǿ': 'o',\n 'õ': 'o',\n 'ṍ': 'o',\n 'ṏ': 'o',\n 'ȭ': 'o',\n 'ƣ': 'oi',\n 'ꝏ': 'oo',\n 'ɛ': 'e',\n 'ᶓ': 'e',\n 'ɔ': 'o',\n 'ᶗ': 'o',\n 'ȣ': 'ou',\n 'ṕ': 'p',\n 'ṗ': 'p',\n 'ꝓ': 'p',\n 'ƥ': 'p',\n 'ᵱ': 'p',\n 'ᶈ': 'p',\n 'ꝕ': 'p',\n 'ᵽ': 'p',\n 'ꝑ': 'p',\n 'ꝙ': 'q',\n 'ʠ': 'q',\n 'ɋ': 'q',\n 'ꝗ': 'q',\n 'ŕ': 'r',\n 'ř': 'r',\n 'ŗ': 'r',\n 'ṙ': 'r',\n 'ṛ': 'r',\n 'ṝ': 'r',\n 'ȑ': 'r',\n 'ɾ': 'r',\n 'ᵳ': 'r',\n 'ȓ': 'r',\n 'ṟ': 'r',\n 'ɼ': 'r',\n 'ᵲ': 'r',\n 'ᶉ': 'r',\n 'ɍ': 'r',\n 'ɽ': 'r',\n 'ↄ': 'c',\n 'ꜿ': 'c',\n 'ɘ': 'e',\n 'ɿ': 'r',\n 'ś': 's',\n 'ṥ': 's',\n 'š': 's',\n 'ṧ': 's',\n 'ş': 's',\n 'ŝ': 's',\n 'ș': 's',\n 'ṡ': 's',\n 'ṣ': 's',\n 'ṩ': 's',\n 'ʂ': 's',\n 'ᵴ': 's',\n 'ᶊ': 's',\n 'ȿ': 's',\n 'ɡ': 'g',\n 'ᴑ': 'o',\n 'ᴓ': 'o',\n 'ᴝ': 'u',\n 'ť': 't',\n 'ţ': 't',\n 'ṱ': 't',\n 'ț': 't',\n 'ȶ': 't',\n 'ẗ': 't',\n 'ⱦ': 't',\n 'ṫ': 't',\n 'ṭ': 't',\n 'ƭ': 't',\n 'ṯ': 't',\n 'ᵵ': 't',\n 'ƫ': 't',\n 'ʈ': 't',\n 'ŧ': 't',\n 'ᵺ': 'th',\n 'ɐ': 'a',\n 'ᴂ': 'ae',\n 'ǝ': 'e',\n 'ᵷ': 'g',\n 'ɥ': 'h',\n 'ʮ': 'h',\n 'ʯ': 'h',\n 'ᴉ': 'i',\n 'ʞ': 'k',\n 'ꞁ': 'l',\n 'ɯ': 'm',\n 'ɰ': 'm',\n 'ᴔ': 'oe',\n 'ɹ': 'r',\n 'ɻ': 'r',\n 'ɺ': 'r',\n 'ⱹ': 'r',\n 'ʇ': 't',\n 'ʌ': 'v',\n 'ʍ': 'w',\n 'ʎ': 'y',\n 'ꜩ': 'tz',\n 'ú': 'u',\n 'ŭ': 'u',\n 'ǔ': 'u',\n 'û': 'u',\n 'ṷ': 'u',\n 'ü': 'u',\n 'ǘ': 'u',\n 'ǚ': 'u',\n 'ǜ': 'u',\n 'ǖ': 'u',\n 'ṳ': 'u',\n 'ụ': 'u',\n 'ű': 'u',\n 'ȕ': 'u',\n 'ù': 'u',\n 'ủ': 'u',\n 'ư': 'u',\n 'ứ': 'u',\n 'ự': 'u',\n 'ừ': 'u',\n 'ử': 'u',\n 'ữ': 'u',\n 'ȗ': 'u',\n 'ū': 'u',\n 'ṻ': 'u',\n 'ų': 'u',\n 'ᶙ': 'u',\n 'ů': 'u',\n 'ũ': 'u',\n 'ṹ': 'u',\n 'ṵ': 'u',\n 'ᵫ': 'ue',\n 'ꝸ': 'um',\n 'ⱴ': 'v',\n 'ꝟ': 'v',\n 'ṿ': 'v',\n 'ʋ': 'v',\n 'ᶌ': 'v',\n 'ⱱ': 'v',\n 'ṽ': 'v',\n 'ꝡ': 'vy',\n 'ẃ': 'w',\n 'ŵ': 'w',\n 'ẅ': 'w',\n 'ẇ': 'w',\n 'ẉ': 'w',\n 'ẁ': 'w',\n 'ⱳ': 'w',\n 'ẘ': 'w',\n 'ẍ': 'x',\n 'ẋ': 'x',\n 'ᶍ': 'x',\n 'ý': 'y',\n 'ŷ': 'y',\n 'ÿ': 'y',\n 'ẏ': 'y',\n 'ỵ': 'y',\n 'ỳ': 'y',\n 'ƴ': 'y',\n 'ỷ': 'y',\n 'ỿ': 'y',\n 'ȳ': 'y',\n 'ẙ': 'y',\n 'ɏ': 'y',\n 'ỹ': 'y',\n 'ź': 'z',\n 'ž': 'z',\n 'ẑ': 'z',\n 'ʑ': 'z',\n 'ⱬ': 'z',\n 'ż': 'z',\n 'ẓ': 'z',\n 'ȥ': 'z',\n 'ẕ': 'z',\n 'ᵶ': 'z',\n 'ᶎ': 'z',\n 'ʐ': 'z',\n 'ƶ': 'z',\n 'ɀ': 'z',\n 'ff': 'ff',\n 'ffi': 'ffi',\n 'ffl': 'ffl',\n 'fi': 'fi',\n 'fl': 'fl',\n 'ij': 'ij',\n 'œ': 'oe',\n 'st': 'st',\n 'ₐ': 'a',\n 'ₑ': 'e',\n 'ᵢ': 'i',\n 'ⱼ': 'j',\n 'ₒ': 'o',\n 'ᵣ': 'r',\n 'ᵤ': 'u',\n 'ᵥ': 'v',\n 'ₓ': 'x'\n};\n//# sourceMappingURL=latin-map.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/typeahead/latin-map.js\n// module id = 666\n// module chunks = 1","import { Directive, ElementRef, EventEmitter, HostListener, Input, Output, Renderer, ViewContainerRef } from '@angular/core';\nimport { NgControl } from '@angular/forms';\nimport { TypeaheadContainerComponent } from './typeahead-container.component';\nimport { TypeaheadUtils } from './typeahead-utils';\nimport { Observable } from 'rxjs/Observable';\nimport 'rxjs/add/observable/from';\nimport 'rxjs/add/operator/debounceTime';\nimport 'rxjs/add/operator/filter';\nimport 'rxjs/add/operator/map';\nimport 'rxjs/add/operator/mergeMap';\nimport 'rxjs/add/operator/toArray';\nimport { TypeaheadMatch } from './typeahead-match.class';\nimport { ComponentLoaderFactory } from '../component-loader';\nexport var TypeaheadDirective = (function () {\n function TypeaheadDirective(control, viewContainerRef, element, renderer, cis) {\n /** minimal no of characters that needs to be entered before typeahead kicks-in. When set to 0, typeahead shows on focus with full list of options (limited as normal by typeaheadOptionsLimit) */\n this.typeaheadMinLength = void 0;\n /** should be used only in case of typeahead attribute is array. If true - loading of options will be async, otherwise - sync. true make sense if options array is large. */\n this.typeaheadAsync = void 0;\n /** match latin symbols. If true the word súper would match super and vice versa. */\n this.typeaheadLatinize = true;\n /** break words with spaces. If true the text \"exact phrase\" here match would match with match exact phrase here but not with phrase here exact match (kind of \"google style\"). */\n this.typeaheadSingleWords = true;\n /** should be used only in case typeaheadSingleWords attribute is true. Sets the word delimiter to break words. Defaults to space. */\n this.typeaheadWordDelimiters = ' ';\n /** should be used only in case typeaheadSingleWords attribute is true. Sets the word delimiter to match exact phrase. Defaults to simple and double quotes. */\n this.typeaheadPhraseDelimiters = '\\'\"';\n /** fired when 'busy' state of this component was changed, fired on async mode only, returns boolean */\n this.typeaheadLoading = new EventEmitter();\n /** fired on every key event and returns true in case of matches are not detected */\n this.typeaheadNoResults = new EventEmitter();\n /** fired when option was selected, return object with data of this option */\n this.typeaheadOnSelect = new EventEmitter();\n /** fired when blur event occurres. returns the active item */\n this.typeaheadOnBlur = new EventEmitter();\n this.isTypeaheadOptionsListActive = false;\n this.keyUpEventEmitter = new EventEmitter();\n this.placement = 'bottom-left';\n this.element = element;\n this.ngControl = control;\n this.viewContainerRef = viewContainerRef;\n this.renderer = renderer;\n this._typeahead = cis\n .createLoader(element, viewContainerRef, renderer);\n }\n TypeaheadDirective.prototype.onChange = function (e) {\n if (this._container) {\n // esc\n if (e.keyCode === 27) {\n this.hide();\n return;\n }\n // up\n if (e.keyCode === 38) {\n this._container.prevActiveMatch();\n return;\n }\n // down\n if (e.keyCode === 40) {\n this._container.nextActiveMatch();\n return;\n }\n // enter\n if (e.keyCode === 13) {\n this._container.selectActiveMatch();\n return;\n }\n }\n // For ``s, use the `value` property. For others that don't have a\n // `value` (such as ``, use `innerText`.\n var value = e.target.value !== undefined\n ? e.target.value\n : e.target.innerText;\n if (value.trim().length >= this.typeaheadMinLength) {\n this.typeaheadLoading.emit(true);\n this.keyUpEventEmitter.emit(e.target.value);\n }\n else {\n this.typeaheadLoading.emit(false);\n this.typeaheadNoResults.emit(false);\n this.hide();\n }\n };\n TypeaheadDirective.prototype.onFocus = function () {\n if (this.typeaheadMinLength === 0) {\n this.typeaheadLoading.emit(true);\n this.keyUpEventEmitter.emit('');\n }\n };\n TypeaheadDirective.prototype.onBlur = function () {\n if (this._container && !this._container.isFocused) {\n this.typeaheadOnBlur.emit(this._container.active);\n this.hide();\n }\n };\n TypeaheadDirective.prototype.onKeydown = function (e) {\n // no container - no problems\n if (!this._container) {\n return;\n }\n // if items is visible - prevent form submition\n if (e.keyCode === 13) {\n e.preventDefault();\n return;\n }\n };\n TypeaheadDirective.prototype.ngOnInit = function () {\n this.typeaheadOptionsLimit = this.typeaheadOptionsLimit || 20;\n this.typeaheadMinLength = this.typeaheadMinLength === void 0\n ? 1\n : this.typeaheadMinLength;\n this.typeaheadWaitMs = this.typeaheadWaitMs || 0;\n // async should be false in case of array\n if (this.typeaheadAsync === undefined && !(this.typeahead instanceof Observable)) {\n this.typeaheadAsync = false;\n }\n if (this.typeahead instanceof Observable) {\n this.typeaheadAsync = true;\n }\n if (this.typeaheadAsync) {\n this.asyncActions();\n }\n else {\n this.syncActions();\n }\n };\n TypeaheadDirective.prototype.changeModel = function (match) {\n var valueStr = match.value;\n this.ngControl.viewToModelUpdate(valueStr);\n this.ngControl.control.setValue(valueStr);\n this.hide();\n };\n Object.defineProperty(TypeaheadDirective.prototype, \"matches\", {\n get: function () {\n return this._matches;\n },\n enumerable: true,\n configurable: true\n });\n TypeaheadDirective.prototype.show = function () {\n this._typeahead\n .attach(TypeaheadContainerComponent)\n .to(this.container)\n .position({ attachment: 'bottom left' })\n .show({\n typeaheadRef: this,\n placement: this.placement,\n animation: false\n });\n this._container = this._typeahead.instance;\n this._container.parent = this;\n // This improves the speed as it won't have to be done for each list item\n var normalizedQuery = (this.typeaheadLatinize\n ? TypeaheadUtils.latinize(this.ngControl.control.value)\n : this.ngControl.control.value).toString()\n .toLowerCase();\n this._container.query = this.typeaheadSingleWords\n ? TypeaheadUtils.tokenize(normalizedQuery, this.typeaheadWordDelimiters, this.typeaheadPhraseDelimiters)\n : normalizedQuery;\n this._container.matches = this._matches;\n this.element.nativeElement.focus();\n };\n TypeaheadDirective.prototype.hide = function () {\n if (this._typeahead.isShown) {\n this._typeahead.hide();\n this._container = null;\n }\n };\n TypeaheadDirective.prototype.ngOnDestroy = function () {\n this._typeahead.dispose();\n };\n TypeaheadDirective.prototype.asyncActions = function () {\n var _this = this;\n this.keyUpEventEmitter\n .debounceTime(this.typeaheadWaitMs)\n .mergeMap(function () { return _this.typeahead; })\n .subscribe(function (matches) {\n _this.finalizeAsyncCall(matches);\n }, function (err) {\n console.error(err);\n });\n };\n TypeaheadDirective.prototype.syncActions = function () {\n var _this = this;\n this.keyUpEventEmitter\n .debounceTime(this.typeaheadWaitMs)\n .mergeMap(function (value) {\n var normalizedQuery = _this.normalizeQuery(value);\n return Observable.from(_this.typeahead)\n .filter(function (option) {\n return option && _this.testMatch(_this.normalizeOption(option), normalizedQuery);\n })\n .toArray();\n })\n .subscribe(function (matches) {\n _this.finalizeAsyncCall(matches);\n }, function (err) {\n console.error(err);\n });\n };\n TypeaheadDirective.prototype.normalizeOption = function (option) {\n var optionValue = TypeaheadUtils.getValueFromObject(option, this.typeaheadOptionField);\n var normalizedOption = this.typeaheadLatinize\n ? TypeaheadUtils.latinize(optionValue)\n : optionValue;\n return normalizedOption.toLowerCase();\n };\n TypeaheadDirective.prototype.normalizeQuery = function (value) {\n // If singleWords, break model here to not be doing extra work on each\n // iteration\n var normalizedQuery = (this.typeaheadLatinize ? TypeaheadUtils.latinize(value) : value)\n .toString()\n .toLowerCase();\n normalizedQuery = this.typeaheadSingleWords\n ?\n TypeaheadUtils.tokenize(normalizedQuery, this.typeaheadWordDelimiters, this.typeaheadPhraseDelimiters)\n :\n normalizedQuery;\n return normalizedQuery;\n };\n TypeaheadDirective.prototype.testMatch = function (match, test) {\n var spaceLength;\n if (typeof test === 'object') {\n spaceLength = test.length;\n for (var i = 0; i < spaceLength; i += 1) {\n if (test[i].length > 0 && match.indexOf(test[i]) < 0) {\n return false;\n }\n }\n return true;\n }\n else {\n return match.indexOf(test) >= 0;\n }\n };\n TypeaheadDirective.prototype.finalizeAsyncCall = function (matches) {\n this.prepareMatches(matches);\n this.typeaheadLoading.emit(false);\n this.typeaheadNoResults.emit(!this.hasMatches());\n if (!this.hasMatches()) {\n this.hide();\n return;\n }\n if (this._container) {\n // This improves the speed as it won't have to be done for each list item\n var normalizedQuery = (this.typeaheadLatinize\n ? TypeaheadUtils.latinize(this.ngControl.control.value)\n : this.ngControl.control.value).toString()\n .toLowerCase();\n this._container.query = this.typeaheadSingleWords\n ? TypeaheadUtils.tokenize(normalizedQuery, this.typeaheadWordDelimiters, this.typeaheadPhraseDelimiters)\n : normalizedQuery;\n this._container.matches = this._matches;\n }\n else {\n this.show();\n }\n };\n TypeaheadDirective.prototype.prepareMatches = function (options) {\n var _this = this;\n var limited = options.slice(0, this.typeaheadOptionsLimit);\n if (this.typeaheadGroupField) {\n var matches_1 = [];\n // extract all group names\n var groups = limited\n .map(function (option) { return TypeaheadUtils.getValueFromObject(option, _this.typeaheadGroupField); })\n .filter(function (v, i, a) { return a.indexOf(v) === i; });\n groups.forEach(function (group) {\n // add group header to array of matches\n matches_1.push(new TypeaheadMatch(group, group, true));\n // add each item of group to array of matches\n matches_1 = matches_1.concat(limited\n .filter(function (option) { return TypeaheadUtils.getValueFromObject(option, _this.typeaheadGroupField) === group; })\n .map(function (option) { return new TypeaheadMatch(option, TypeaheadUtils.getValueFromObject(option, _this.typeaheadOptionField)); }));\n });\n this._matches = matches_1;\n }\n else {\n this._matches = limited.map(function (option) { return new TypeaheadMatch(option, TypeaheadUtils.getValueFromObject(option, _this.typeaheadOptionField)); });\n }\n };\n TypeaheadDirective.prototype.hasMatches = function () {\n return this._matches.length > 0;\n };\n TypeaheadDirective.decorators = [\n { type: Directive, args: [{ selector: '[typeahead]', exportAs: 'bs-typeahead' },] },\n ];\n /** @nocollapse */\n TypeaheadDirective.ctorParameters = function () { return [\n { type: NgControl, },\n { type: ViewContainerRef, },\n { type: ElementRef, },\n { type: Renderer, },\n { type: ComponentLoaderFactory, },\n ]; };\n TypeaheadDirective.propDecorators = {\n 'typeahead': [{ type: Input },],\n 'typeaheadMinLength': [{ type: Input },],\n 'typeaheadWaitMs': [{ type: Input },],\n 'typeaheadOptionsLimit': [{ type: Input },],\n 'typeaheadOptionField': [{ type: Input },],\n 'typeaheadGroupField': [{ type: Input },],\n 'typeaheadAsync': [{ type: Input },],\n 'typeaheadLatinize': [{ type: Input },],\n 'typeaheadSingleWords': [{ type: Input },],\n 'typeaheadWordDelimiters': [{ type: Input },],\n 'typeaheadPhraseDelimiters': [{ type: Input },],\n 'typeaheadItemTemplate': [{ type: Input },],\n 'optionsListTemplate': [{ type: Input },],\n 'typeaheadLoading': [{ type: Output },],\n 'typeaheadNoResults': [{ type: Output },],\n 'typeaheadOnSelect': [{ type: Output },],\n 'typeaheadOnBlur': [{ type: Output },],\n 'container': [{ type: Input },],\n 'onChange': [{ type: HostListener, args: ['keyup', ['$event'],] },],\n 'onFocus': [{ type: HostListener, args: ['focus',] },],\n 'onBlur': [{ type: HostListener, args: ['blur',] },],\n 'onKeydown': [{ type: HostListener, args: ['keydown', ['$event'],] },],\n };\n return TypeaheadDirective;\n}());\n//# sourceMappingURL=typeahead.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/typeahead/typeahead.directive.js\n// module id = 667\n// module chunks = 1","export var TypeaheadMatch = (function () {\n function TypeaheadMatch(item, value, header) {\n if (value === void 0) { value = item; }\n if (header === void 0) { header = false; }\n this.item = item;\n this.value = value;\n this.header = header;\n }\n TypeaheadMatch.prototype.isHeader = function () {\n return this.header;\n };\n TypeaheadMatch.prototype.toString = function () {\n return this.value;\n };\n return TypeaheadMatch;\n}());\n//# sourceMappingURL=typeahead-match.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/typeahead/typeahead-match.class.js\n// module id = 668\n// module chunks = 1","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ComponentLoaderFactory } from '../component-loader';\nimport { PositioningService } from '../positioning';\nimport { PopoverConfig } from './popover.config';\nimport { PopoverDirective } from './popover.directive';\nimport { PopoverContainerComponent } from './popover-container.component';\nexport var PopoverModule = (function () {\n function PopoverModule() {\n }\n PopoverModule.forRoot = function () {\n return {\n ngModule: PopoverModule,\n providers: [PopoverConfig, ComponentLoaderFactory, PositioningService]\n };\n };\n PopoverModule.decorators = [\n { type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [PopoverDirective, PopoverContainerComponent],\n exports: [PopoverDirective],\n entryComponents: [PopoverContainerComponent]\n },] },\n ];\n /** @nocollapse */\n PopoverModule.ctorParameters = function () { return []; };\n return PopoverModule;\n}());\n//# sourceMappingURL=popover.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/popover/popover.module.js\n// module id = 669\n// module chunks = 1","import { Directive, Input, Output, Renderer, ElementRef, ViewContainerRef } from '@angular/core';\nimport { PopoverConfig } from './popover.config';\nimport { ComponentLoaderFactory } from '../component-loader';\nimport { PopoverContainerComponent } from './popover-container.component';\n/**\n * A lightweight, extensible directive for fancy popover creation.\n */\nexport var PopoverDirective = (function () {\n function PopoverDirective(_elementRef, _renderer, _viewContainerRef, _config, cis) {\n this._popover = cis\n .createLoader(_elementRef, _viewContainerRef, _renderer)\n .provide({ provide: PopoverConfig, useValue: _config });\n Object.assign(this, _config);\n this.onShown = this._popover.onShown;\n this.onHidden = this._popover.onHidden;\n }\n Object.defineProperty(PopoverDirective.prototype, \"isOpen\", {\n /**\n * Returns whether or not the popover is currently being shown\n */\n get: function () { return this._popover.isShown; },\n set: function (value) {\n if (value) {\n this.show();\n }\n else {\n this.hide();\n }\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Opens an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n PopoverDirective.prototype.show = function () {\n if (this._popover.isShown) {\n return;\n }\n this._popover\n .attach(PopoverContainerComponent)\n .to(this.container)\n .position({ attachment: this.placement })\n .show({\n content: this.popover,\n placement: this.placement,\n title: this.popoverTitle\n });\n this.isOpen = true;\n };\n /**\n * Closes an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n PopoverDirective.prototype.hide = function () {\n if (this.isOpen) {\n this._popover.hide();\n this.isOpen = false;\n }\n };\n /**\n * Toggles an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n PopoverDirective.prototype.toggle = function () {\n if (this.isOpen) {\n return this.hide();\n }\n this.show();\n };\n PopoverDirective.prototype.ngOnInit = function () {\n var _this = this;\n this._popover.listen({\n triggers: this.triggers,\n show: function () { return _this.show(); }\n });\n };\n PopoverDirective.prototype.ngOnDestroy = function () {\n this._popover.dispose();\n };\n PopoverDirective.decorators = [\n { type: Directive, args: [{ selector: '[popover]', exportAs: 'bs-popover' },] },\n ];\n /** @nocollapse */\n PopoverDirective.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Renderer, },\n { type: ViewContainerRef, },\n { type: PopoverConfig, },\n { type: ComponentLoaderFactory, },\n ]; };\n PopoverDirective.propDecorators = {\n 'popover': [{ type: Input },],\n 'popoverTitle': [{ type: Input },],\n 'placement': [{ type: Input },],\n 'triggers': [{ type: Input },],\n 'container': [{ type: Input },],\n 'isOpen': [{ type: Input },],\n 'onShown': [{ type: Output },],\n 'onHidden': [{ type: Output },],\n };\n return PopoverDirective;\n}());\n//# sourceMappingURL=popover.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng2-bootstrap/popover/popover.directive.js\n// module id = 670\n// module chunks = 1","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar core_1 = require(\"@angular/core\");\nexports.RECAPTCHA_SETTINGS = new core_1.InjectionToken('recaptcha-settings');\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ng-recaptcha/recaptcha/recaptcha-settings.js\n// module id = 671\n// module chunks = 1","// /Scripts/components/solutions.component.ts\n\nimport { Component, Inject, OnInit, ElementRef, ViewChild } from \"@angular/core\";\nimport { FormsModule, FormGroup, FormBuilder, Validators } from \"@angular/forms\";\nimport { ModalDirective } from \"ng2-bootstrap\";\nimport { RecaptchaModule, RecaptchaComponent } from 'ng-recaptcha';\nimport { GrpcService } from \"../services/grpc.service\";\nimport { ApplicationConfig } from \".././app.config\";\n\n@Component({\n\tselector: \"app-solutions\",\n\ttemplateUrl: \"data/templates/solutions.component.html\"\n})\n\n\n// -------------------------------------------------------------------------------------------------\n// SolutionsComponent\n// -------------------------------------------------------------------------------------------------\nexport class SolutionsComponent implements OnInit {\n\tprivate isProcessing: boolean = false;\n\tpublic demoForm: FormGroup;\n\tpublic siteKey: string = \"\";\n\tprivate captchaResponse: string;\n\tprivate feedbackSuccess: boolean = false;\n\t/* Recaptcha component */\n\t@ViewChild('demoRecaptcha')\n\trecaptchaEl: RecaptchaComponent;\n\t/* Modal window component */\n\t@ViewChild(\"addDemoModal\")\n\tprivate _demoModal: ModalDirective;\n\tprivate _demoLink: string;\n\t\n\t//----------------------------------------------------------------------------------------------\n\t/* class constructor */\n\tconstructor(private _fb: FormBuilder,\n\t\tprivate _el: ElementRef,\n\t\tprivate _ds: GrpcService,\n\t\tprivate _config: ApplicationConfig\n\t) { }\n\n\t//----------------------------------------------------------------------------------------------\n\t/** After the first ngOnChanges. */\n\tngOnInit() {\n\t\tthis.demoForm = this._fb.group({});\n\t\tthis.siteKey = this._config.siteKey\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\t/** Respond after Angular projects external content into the component's view. */\n\tngAfterContentInit() { }\n\t\n\t//----------------------------------------------------------------------------------------------\n\t/**\n\t * Cleanup just before Angular destroys the component. Unsubscribe observables and detach event handlers to avoid memory leaks.\n\t * Called just before Angular destroys the directive/component.\n\t */\n\tngOnDestroy() { }\n\n\t//----------------------------------------------------------------------------------------------\n\tngAfterViewInit() { }\n\n\t//----------------------------------------------------------------------------------------------\n\t/** During every Angular change detection cycle. */\n\tngDoCheck() {\n\t\t//console.log(\"HomeComponent: ngDoCheck\");\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate submitDemo() {\n\t\tif (!this.isProcessing && this.captchaResponse) {\n\t\t\tthis.isProcessing = true;\n\t\t\tthis._ds.requestDemoToken(this.captchaResponse).subscribe(\n\t\t\t\t(value: string) => this.onDemoTokenReceived(value as string),\n\t\t\t\t(error: ErrorEvent) => this.onError(\"on receive demo token\", error as ErrorEvent)\n\t\t\t)\n\t\t}\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate onDemoTokenReceived(token: string) {\n\t\tif (!token) {\n\t\t\tconsole.warn(\"Error occured on receive token!\")\n\t\t} else {\n\t\t\tthis._demoLink = `https://web.cardio.ai/#/viewer/?at=${token}`;\n\t\t}\n\t\tthis.isProcessing = false;\n\t}\n\n\t//-------------------------------------------------------------------------------------------------\n\t/** Open demo link */\n\tprivate openDemoLink() {\n\t\tif (this._demoLink !== null) {\n\t\t\tthis.hideDemoModal();\n\t\t\twindow.open(this._demoLink, \"_blank\");\n\t\t}\n\n\t}\n\n\t//-----------------------------------------------------------------------------------------------\n\tpublic handleCaptchaResult(response: string) {\n\t\tthis.captchaResponse = response;\n\t\tif (!response) {\n\t\t\tthis._demoLink = null;\n\t\t} else {\n\t\t\tthis.submitDemo();\n\t\t}\n\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate showDemoModal(event: Event) {\n\t\tthis._demoModal.show();\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate hideDemoModal() {\n\t\tif (this._demoModal.isShown)\n\t\t\tthis._demoModal.hide();\n\t\tthis.isProcessing = false;\n\t\tthis.demoForm = this._fb.group({});\n\t\treturn true;\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\t/**\n\t * Handle error.\n\t * @param place method name\n\t * @param error error body\n\t */\n\tprivate onError(place: string, error: ErrorEvent) {\n\t\tconsole.error(`${place} throws error\n\t\t ${error.message}`);\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./scripts/components/solutions.component.ts","// /Scripts/components/api.component.ts\n\nimport { Component, Inject, OnInit, ElementRef, ViewChild } from \"@angular/core\";\nimport { FormsModule, FormGroup, FormBuilder, Validators } from \"@angular/forms\";\n\n@Component({\n\tselector: \"app-api\",\n\ttemplateUrl: \"data/templates/api.component.html\"\n})\n\n\n// -------------------------------------------------------------------------------------------------\n// ApiComponent\n// -------------------------------------------------------------------------------------------------\nexport class ApiComponent implements OnInit {\n\n\t//----------------------------------------------------------------------------------------------\n\t/* class constructor */\n\tconstructor(private _el: ElementRef\n\t) { }\n\n\t//----------------------------------------------------------------------------------------------\n\t/** After the first ngOnChanges. */\n\tngOnInit() {\n\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\t/** Respond after Angular projects external content into the component's view. */\n\tngAfterContentInit() { }\n\t\n\t//----------------------------------------------------------------------------------------------\n\t/**\n\t * Cleanup just before Angular destroys the component. Unsubscribe observables and detach event handlers to avoid memory leaks.\n\t * Called just before Angular destroys the directive/component.\n\t */\n\tngOnDestroy() { }\n\n\t//----------------------------------------------------------------------------------------------\n\tngAfterViewInit() { }\n\n\t//----------------------------------------------------------------------------------------------\n\t/** During every Angular change detection cycle. */\n\tngDoCheck() {\n\t\t//console.log(\"HomeComponent: ngDoCheck\");\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\t/**\n\t * Handle error.\n\t * @param place method name\n\t * @param error error body\n\t */\n\tprivate onError(place: string, error: ErrorEvent) {\n\t\tconsole.error(`${place} throws error\n\t\t ${error.message}`);\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./scripts/components/api.component.ts","// /src/components/infocenter.component.ts\n\nimport { Component, OnInit, Input, HostListener } from \"@angular/core\";\nimport { ActivatedRoute, Router, UrlSegment, Params } from \"@angular/router\";\nimport { Subscription, BehaviorSubject, Observable } from \"rxjs\";\nimport { InfoService } from \"../services/info.service\";\n\n@Component({\n\tselector: \"infocenter-app\",\n\ttemplateUrl: \"data/templates/infocenter.component.html\"\n})\n\n// -------------------------------------------------------------------------------------------------\n// InfocenterComponent\n// -------------------------------------------------------------------------------------------------\nexport class InfocenterComponent implements OnInit {\n\tprivate _urlChangesSubs: Subscription = null;\n\tprivate _paramChangesSubs: Subscription = null;\n\tprivate _path: string = \"\";\n\tprivate _pathSubpage: string = \"\";\n\tprivate tree: any = [];\n\tprivate menu: any = [];\n\n\t//----------------------------------------------------------------------------------------------\n\tconstructor(\n\t\tprivate _router: Router,\n\t\tprivate _activatedRoute: ActivatedRoute,\n\t\tprivate _infocenter: InfoService) {\n\t}\n\n\n\t//----------------------------------------------------------------------------------------------\n\t/**\n\t * Initialize the directive/component after Angular first displays the data-bound properties and sets input properties.\n\t * Called once, after the first ngOnChanges.\n\t */\n\tngOnInit() {\n\n\t\tthis._urlChangesSubs = this._activatedRoute.url.subscribe(\n\t\t\t(segments: UrlSegment[]) => this.onUrlChanged(segments),\n\t\t\t(error: ErrorEvent) => this.onError(\"on url changed\", error as ErrorEvent));\n\t\tthis._paramChangesSubs = this._activatedRoute.params.subscribe(\n\t\t\t(params: Params) => this.onParamChanged(params),\n\t\t\t(error: ErrorEvent) => this.onError(\"on url changed\", error as ErrorEvent));\n\n\t}\n\n\tngAfterViewInit() {\n\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\t/**\n\t * Cleanup just before Angular destroys the component. Unsubscribe observables and detach event handlers to avoid memory leaks.\n\t * Called just before Angular destroys the directive/component.\n\t */\n\tngOnDestroy() {\n\t\tthis._urlChangesSubs.unsubscribe();\n\t\tthis._paramChangesSubs.unsubscribe();\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate onUrlChanged(segments: UrlSegment[]) {\n\t\tif (!segments) return;\n\n\t\tthis._path = \"\";\n\n\t\tfor (let i: number = 1; i < segments.length; i++) {\n\t\t\tif(i == 1)\n\t\t\t\tthis._path = `${segments[i].path}`;\n\t\t\telse\n\t\t\t\tthis._pathSubpage = `${segments[i].path}`;\n\t\t}\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate onParamChanged(params: Params) {\n\t\tif (!params) return;\n\n\t\tthis._path = params['page'];\n\t\tif (params['subpage'] !== undefined)\n\t\t\tthis._pathSubpage = params['subpage'];\n\n\t}\n\n\t//-------------------------------------------------------------------------------------------------\n\tpublic get pageTitle(): string {\n\n\t\tif (this._infocenter.menu !== null) {\n\t\t\tlet title: string = this._infocenter.getTitle(this._path, this._pathSubpage);\n\t\t\tif (title.length > 0) {\n\t\t\t\treturn title;\n\t\t\t} else {\n\t\t\t\tthis._router.navigate(['not-found/404']);\n\t\t\t}\n\t\t}\n\t\treturn '';\n\t\t\n\t}\n\n\t//-------------------------------------------------------------------------------------------------\n\tpublic get pageSubtitle(): string {\n\n\t\tif (this._infocenter.menu !== null) {\n\t\t\tlet title: string = this._infocenter.getSubtitle(this._path, this._pathSubpage);\n\t\t\tif (title.length > 0) {\n\t\t\t\treturn title;\n\t\t\t}\n\t\t}\n\t\treturn '';\n\n\t}\n\n\t//-------------------------------------------------------------------------------------------------\n\tpublic get pageDescription(): string {\n\t\t\n\t\tif (this._infocenter.menu !== null) {\n\t\t\treturn this._infocenter.pageDescription(this._path, this._pathSubpage);\n\t\t}\n\t\treturn '';\n\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate onRequestFailed(e: ErrorEvent) {\n\t\tconsole.error(e.message);\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\t/**\n\t * Handle error.\n\t * @param place method name\n\t * @param error error body\n\t */\n\tprivate onError(place: string, error?: ErrorEvent) {\n\t\tconsole.error(`${place} throws error\n\t\t ${error.message || error}`);\n\t}\n}\n\n\n\n\n// WEBPACK FOOTER //\n// ./scripts/components/infocenter.component.ts","// /src/model/spec.ts\n\n//-------------------------------------------------------------------------------------------------\n// Serializable\n//-------------------------------------------------------------------------------------------------\nexport interface Serializable {\n\t//deserialize(input: Object): T;\n\n\t//add(key: string, value: T): void;\n\titem(key: string): T;\n\tcontainsKey(key: string): boolean;\n\tcount: number;\n\tkeys: string[];\n\t//remove(key: string): void;\n\tvalues: T[];\n}\n\n//-------------------------------------------------------------------------------------------------\nexport class Resource {\n\tprivate name: string;\n\tprivate description: string;\n\tprivate overview: string;\n\n\tprivate _count: number = 0;\n\tprivate _items: { [index: string]: any } = {};\n\n\tpublic deserialize(input: any) {\n\t\tthis.description = input.description;\n\t\tthis.overview = input.overview;\n\t\treturn this;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get count(): number { return this.keys.length; }\n\t//-------------------------------------------------------------------------------------\n\tpublic get keys(): string[] {\n\t\tlet keySet: string[] = new Array;\n\t\tfor (let prop in this._items) {\n\t\t\tif (this._items.hasOwnProperty(prop)) {\n\t\t\t\tkeySet.push(prop);\n\t\t\t}\n\t\t}\n\t\treturn keySet;\n\t}\n\t//-------------------------------------------------------------------------------------\n\tpublic get values(): any[] {\n\t\tlet values: any[] = new Array();\n\t\tfor (let prop in this._items) {\n\t\t\tif (this._items.hasOwnProperty(prop)) {\n\t\t\t\tvalues.push(this._items[prop]);\n\t\t\t}\n\t\t}\n\t\treturn values;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic item(key: string): any {\n\t\treturn this._items[key];\n\t}\n\t//-------------------------------------------------------------------------------------\n\tpublic containsKey(key: string): boolean {\n\t\treturn this._items.hasOwnProperty(key);\n\t}\n\n}\n\n//-------------------------------------------------------------------------------------------------\nexport class Resources implements Serializable {\n\tprivate _count: number = 0;\n\tprivate _items: { [index: string]: Resource } = {};\n\n\tpublic deserialize(input: any) {\n\t\treturn this;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get count(): number { return this.keys.length; }\n\t//-------------------------------------------------------------------------------------\n\tpublic get keys(): string[] {\n\t\tlet keySet: string[] = new Array;\n\t\tfor (let prop in this._items) {\n\t\t\tif (this._items.hasOwnProperty(prop)) {\n\t\t\t\tkeySet.push(prop);\n\t\t\t}\n\t\t}\n\t\treturn keySet;\n\t}\n\t//-------------------------------------------------------------------------------------\n\tpublic get values(): Resource[] {\n\t\tlet values: Resource[] = new Array();\n\t\tfor (let prop in this._items) {\n\t\t\tif (this._items.hasOwnProperty(prop)) {\n\t\t\t\tvalues.push(this._items[prop]);\n\t\t\t}\n\t\t}\n\t\treturn values;\n\t}\n\t//-------------------------------------------------------------------------------------\n\tpublic add(key: string, value: Resource) {\n\t\tthis._items[key] = value;\n\t\tthis._count++;\n\t}\n\t//-------------------------------------------------------------------------------------\n\tpublic item(key: string): Resource {\n\t\treturn this._items[key];\n\t}\n\t//-------------------------------------------------------------------------------------\n\tpublic containsKey(key: string): boolean {\n\t\treturn this._items.hasOwnProperty(key);\n\t}\n\n\n\t\n\t\n}\n\n// -------------------------------------------------------------------------------------------------\n// StructureData\n// -------------------------------------------------------------------------------------------------\nexport class StructureData {\n\n\tprivate _f: string;\n\n\tpublic get filename(): string { return this._f; }\n\n\t//-------------------------------------------------------------------------------------\n\tconstructor(f: string) {\n\t\tthis._f = f;\n\t}\n}\n\n\n// -------------------------------------------------------------------------------------------------\n// StructureStorage\n// -------------------------------------------------------------------------------------------------\nexport class StructureStorage implements Serializable{\n\tprivate _count: number = 0;\n\tprivate _items: { [index: string]: StructureData } = {};\n\n\t//-------------------------------------------------------------------------------------\n\tdeserialize(input: any) {\n\t\treturn this;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get count(): number { return this.keys.length; }\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get keys(): string[] {\n\t\tlet keySet: string[] = new Array;\n\t\tfor (let prop in this._items) {\n\t\t\tif (this._items.hasOwnProperty(prop)) {\n\t\t\t\tkeySet.push(prop);\n\t\t\t}\n\t\t}\n\t\treturn keySet;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get values(): StructureData[] {\n\t\tlet values: StructureData[] = new Array();\n\t\tfor (let prop in this._items) {\n\t\t\tif (this._items.hasOwnProperty(prop)) {\n\t\t\t\tvalues.push(this._items[prop]);\n\t\t\t}\n\t\t}\n\t\treturn values;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic add(key: string, value: StructureData) {\n\t\tthis._items[key] = value;\n\t\tthis._count++;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic item(key: string): StructureData {\n\t\treturn this._items[key];\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic containsKey(key: string): boolean {\n\t\treturn this._items.hasOwnProperty(key);\n\t}\n\n}\n\n\n\n// -------------------------------------------------------------------------------------------------\n// ResourceData\n// -------------------------------------------------------------------------------------------------\nexport class RootData {\n\n\tprivate _count: number = 0;\n\tprivate _items: { [index: string]: any[] } = {};\n\tprivate _listCache: any[];\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get count(): number {\n\t\t//return this._count;\n\t\treturn this.keys.length;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get keys(): string[] {\n\t\tlet keySet: string[] = new Array;\n\t\tfor (let prop in this._items) {\n\t\t\tif (this._items.hasOwnProperty(prop)) {\n\t\t\t\tkeySet.push(prop);\n\t\t\t}\n\t\t}\n\t\treturn keySet;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic get values(): any[] {\n\n\t\tlet values: any[] = new Array();\n\t\tfor (let prop in this._items) {\n\t\t\tif (this._items.hasOwnProperty(prop)) {\n\t\t\t\tvalues.push(this._items[prop]);\n\t\t\t}\n\t\t}\n\t\treturn values;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic add(key: string, value: any) {\n\t\tthis._items[key] = value;\n\t\tthis._count++;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic item(key: string): any {\n\t\tif (this.containsKey(key))\n\t\t\treturn this._items[key];\n\t\telse return null;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic fromJson(json: any): RootData {\n\t\t\n\t\tthis._items = json;\n\t\tthis._count = this.keys.length;\n\t\treturn this;\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic containsKey(key: string): boolean {\n\t\treturn this._items.hasOwnProperty(key);\n\t}\n\n\t//-------------------------------------------------------------------------------------\n\tpublic remove(key: string): string { return \"\"; }\n\n\t//-------------------------------------------------------------------------------------\n\tpublic deserialize(input: any): RootData {\n\t\treturn this;\n\t}\n}\n\n\n\n\n\n// WEBPACK FOOTER //\n// ./scripts/model/structure.ts","// /Scripts/components/notfound.component.ts\nimport { Component, Inject } from \"@angular/core\";\nimport { ActivatedRoute, Router, UrlSegment } from \"@angular/router\";\nimport { Location } from '@angular/common';\n\n@Component({\n\tselector: \"app-404\",\n\ttemplateUrl: \"data/templates/notfound.component.html\"\n})\n\n// -------------------------------------------------------------------------------------------------\n// NotFoundComponent\n// -------------------------------------------------------------------------------------------------\nexport class NotFoundComponent {\n\n\tprivate errorCode: number = 404;\n\tprivate _urlChangesSubs: any;\n\n\tconstructor(private _router: Router,\n\t\tprivate _location: Location,\n\t\tprivate _activatedRoute: ActivatedRoute) {\n\t\tthis.errorCode = 404;\n\t\tthis._urlChangesSubs = this._activatedRoute.url.subscribe(\n\t\t\t(segments: UrlSegment[]) => this.onUrlChanged(segments),\n\t\t\t(error: ErrorEvent) => this.onError(\"on url changed\", error as ErrorEvent));\n\t}\n\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate onUrlChanged(segments: UrlSegment[]) {\n\t\t//if (!this._config.errTriggered)\n\t\t//\tthis._router.navigate([this._config.defaultRoute]);\n\t\t// todo parse url segments\n\t\tif (segments.length == 2) {\n\t\t\ttry {\n\t\t\t\tthis.errorCode = parseInt(segments[1].path);\n\t\t\t} catch (err) {\n\t\t\t\tconsole.log(\"Wrong url. Error: \", err);\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t// ----------------------------------------------------------------------------------------------\n\t/**\n\t * Initialize the directive/component after Angular first displays the data-bound properties and sets input properties.\n\t * Called once, after the first ngOnChanges.\n\t */\n\tngOnInit() {\n\t\tif (this.errorCode == 404) {\n\t\t\tdocument.getElementsByTagName(\"app-404\")[0].classList.add(\"not-found\");\n\t\t}\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate goHome() {\n\t\t//this._router.navigate([this._config.defaultRoute]);\n\t\twindow.location.href = \"https://cardio.ai\";\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\tprivate goBack() {\n\t\tthis._location.back();\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\t/**\n\t * In a real world app, we might use a remote logging infrastructure\n\t * We'd also dig deeper into the error to get a better message\n\t * @param error\n\t*/\n\tprivate onError(place: string, error: ErrorEvent) {\n\t\tconsole.error(`${place} throws error ${error.message}`);\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./scripts/components/notfound.component.ts","import { Component, OnInit} from \"@angular/core\";\nimport { ModalDirective } from \"ng2-bootstrap\";\nimport { DataService } from '../services/data.service';\n\n@Component({\n\tselector: \"app-insights\",\n\ttemplateUrl: \"data/templates/insights.component.html\"\n})\n\n\n// -------------------------------------------------------------------------------------------------\n// SolutionsComponent\n// -------------------------------------------------------------------------------------------------\nexport class InsightsComponent implements OnInit {\n\t//----------------------------------------------------------------------------------------------\n\t/* class constructor */\n\tconstructor(\n\t\tprivate ds: DataService,\n\t) { }\n\n\tfeed: any;\n\terrMessage = '';\n\n\t//----------------------------------------------------------------------------------------------\n\t/** After the first ngOnChanges. */\n\tngOnInit() {\n\t\tthis.ds.getMediumPosts('https://medium.com/feed/@xoresearch/')\n\t\t\t.subscribe(res => {\n\t\t\t\tconsole.log(res);\n\t\t\t\tif (res.status !== 'ok') {\n\t\t\t\t\tthis.errMessage = 'Failed to get feed.'\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tres.items.forEach((el: any) => {\n\t\t\t\t\tconst srcBeg = el.description.indexOf('src=') + 5;\n\t\t\t\t\tconst srcEnd = el.description.substring(srcBeg).indexOf('\"') + srcBeg;\n\t\t\t\t\tel.image = el.description.substring(srcBeg, srcEnd);\n\n\t\t\t\t\tel.description = el.description.replace(/<(?:.|\\n)*?>/gm, '');\n\t\t\t\t\tconst maxLen = 180;\n\t\t\t\t\tel.description = el.description.substring(0, maxLen);\n\t\t\t\t\tel.description = el.description.substring(0, Math.min(el.description.length, el.description.lastIndexOf(' '))) + '...';\n\t\t\t\t\tconst dateSplit = el.pubDate.split(' ')[0].split('-');\n\t\t\t\t\tel.date = {\n\t\t\t\t\t\tmonth: dateSplit[1],\n\t\t\t\t\t\tday: dateSplit[2]\n\t\t\t\t\t}\n\t\t\t\t\tconsole.log(el.date);\n\t\t\t\t});\n\t\t\t\tthis.feed = res;\n\t\t\t})\n\t}\n\n\t//----------------------------------------------------------------------------------------------\n\t/** Respond after Angular projects external content into the component's view. */\n\tngAfterContentInit() { }\n\t\n\t//----------------------------------------------------------------------------------------------\n\t/**\n\t * Cleanup just before Angular destroys the component. Unsubscribe observables and detach event handlers to avoid memory leaks.\n\t * Called just before Angular destroys the directive/component.\n\t */\n\tngOnDestroy() { }\n\n\t//----------------------------------------------------------------------------------------------\n\tngAfterViewInit() { }\n\n\t//----------------------------------------------------------------------------------------------\n\t/** During every Angular change detection cycle. */\n\tngDoCheck() {\n\t\t//console.log(\"HomeComponent: ngDoCheck\");\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./scripts/components/insights.component.ts","/// \n// /Script/services/viewerdata.service.ts\nimport {\n\tOutput,\n\tInject,\n\tComponent,\n\tInjectable,\n\tEventEmitter\n} from \"@angular/core\";\nimport {\n\tHttp,\n\tRequest,\n\tResponse,\n\tRequestMethod,\n\tRequestOptions,\n\tRequestOptionsArgs,\n\tResponseContentType\n} from \"@angular/http\";\nimport {Example} from \"../model/common\";\n\n\nimport { Observable } from \"rxjs/Observable\";\nimport { BehaviorSubject } from \"rxjs/BehaviorSubject\";\nimport { ApplicationConfig } from \".././app.config\";\n\n// Import RxJs required methods\nimport \"rxjs/add/operator/map\";\nimport \"rxjs/add/operator/catch\";\n\n// Import apigate entities\n//import { cai } from \"../model/proto/cai-sm-cj\";\n// enums\n//import EcgLeadCode = cai.services.grpc.EcgLeadCode;\n// types\n//import DashboardPatients = cai.services.grpc.DashboardPatients$Properties;\n\n// -------------------------------------------------------------------------------------------------\n// ViewerData service https://www.facebook.com/XOresearch/\n// -------------------------------------------------------------------------------------------------\n@Injectable()\nexport class DataService {\n\tconstructor(\n\t\tprivate http: Http,\n\t) { }\n\tgetMediumPosts(feedLink: string) {\n\t\treturn this.http.get('https://api.rss2json.com/v1/api.json?rss_url=' + feedLink)\n\t\t\t.map(res => res.json());\n\t}\n\t\n}\n\n\n\n\n// WEBPACK FOOTER //\n// ./scripts/services/data.service.ts","// /Scripts/components/ecgapp.component.ts\nimport { Component, OnInit } from \"@angular/core\"\n\n@Component({\n\tselector: \"app-products\",\n\ttemplateUrl: \"data/templates/products.component.html\"\n})\n\n// -------------------------------------------------------------------------------------------------\n// DemoAppComponent\n// -------------------------------------------------------------------------------------------------\nexport class ProductsComponent implements OnInit {\n\n\t// ----------------------------------------------------------------------------------------------\n\tconstructor() { }\n\n\t// ----------------------------------------------------------------------------------------------\n\t/**\n\t * Initialize the directive/component after Angular first displays the data-bound properties and sets input properties.\n\t * Called once, after the first ngOnChanges.\n\t */\n\tngOnInit() {\n\t}\n\n\t// ----------------------------------------------------------------------------------------------\n\t/**\n\t * Cleanup just before Angular destroys the component. Unsubscribe observables and detach event handlers to avoid memory leaks.\n\t * Called just before Angular destroys the directive/component.\n\t */\n\tngOnDestroy() {\n\t}\n}\n\n\n// WEBPACK FOOTER //\n// ./scripts/components/products.component.ts","import { addFormatToken } from '../format/format';\nimport { startOf } from '../utils/start-end-of';\nimport { addRegexToken, match1to3, match3 } from '../parse/regex';\nimport { addParseToken } from '../parse/token';\nimport { addUnitPriority } from './priorities';\nimport { addUnitAlias } from './aliases';\nimport { toInt } from '../utils/type-checks';\nimport { add } from '../moment/add-subtract';\n// FORMATTING\naddFormatToken('DDD', ['DDDD', 3, false], 'DDDo', function (date) {\n return getDayOfYear(date).toString(10);\n});\n// ALIASES\naddUnitAlias('dayOfYear', 'DDD');\n// PRIORITY\naddUnitPriority('dayOfYear', 4);\naddRegexToken('DDD', match1to3);\naddRegexToken('DDDD', match3);\naddParseToken(['DDD', 'DDDD'], function (input, array, config) {\n config._dayOfYear = toInt(input);\n return config;\n});\nexport function getDayOfYear(date) {\n var date1 = +startOf(date, 'day');\n var date2 = +startOf(date, 'year');\n var someDate = date1 - date2;\n var oneDay = 1000 * 60 * 60 * 24;\n return Math.round(someDate / oneDay) + 1;\n}\nexport function setDayOfYear(date, input) {\n var dayOfYear = getDayOfYear(date);\n return add(date, (input - dayOfYear), 'day');\n}\n//# sourceMappingURL=day-of-year.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/units/day-of-year.js\n// module id = 680\n// module chunks = 1","// ASP.NET json date format regex\nimport { Duration, isDuration } from './constructor';\nimport { isDateValid, isNumber, isObject, isString, toInt } from '../utils/type-checks';\nimport { DATE, HOUR, MILLISECOND, MINUTE, SECOND } from '../units/constants';\nimport { parseDate } from '../create/local';\nimport { absRound } from '../utils/abs-round';\nimport { cloneWithOffset } from '../units/offset';\nimport { isAfter, isBefore } from '../utils/date-compare';\nimport { getFullYear, getMonth } from '../utils/date-getters';\nimport { add } from '../moment/add-subtract';\nimport { cloneDate } from '../create/clone';\nvar aspNetRegex = /^(\\-|\\+)?(?:(\\d*)[. ])?(\\d+)\\:(\\d+)(?:\\:(\\d+)(\\.\\d*)?)?$/;\n// from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html\n// somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere\n// and further modified to allow for strings containing both week and day\n// tslint:disable-next-line\nvar isoRegex = /^(-|\\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;\nexport function createDuration(input, key, config) {\n if (config === void 0) { config = {}; }\n var duration = convertDuration(input, key);\n // matching against regexp is expensive, do it on demand\n return new Duration(duration, config);\n}\nfunction convertDuration(input, key) {\n // checks for null or undefined\n if (input == null) {\n return {};\n }\n if (isDuration(input)) {\n return {\n milliseconds: input._milliseconds,\n day: input._days,\n month: input._months\n };\n }\n if (isNumber(input)) {\n // duration = {};\n return key ? (_a = {}, _a[key] = input, _a) : { milliseconds: input };\n }\n if (isString(input)) {\n var match = aspNetRegex.exec(input);\n if (match) {\n var sign = (match[1] === '-') ? -1 : 1;\n return {\n year: 0,\n day: toInt(match[DATE]) * sign,\n hours: toInt(match[HOUR]) * sign,\n minutes: toInt(match[MINUTE]) * sign,\n seconds: toInt(match[SECOND]) * sign,\n // the millisecond decimal point is included in the match\n milliseconds: toInt(absRound(toInt(match[MILLISECOND]) * 1000)) * sign\n };\n }\n match = isoRegex.exec(input);\n if (match) {\n var sign = (match[1] === '-') ? -1 : (match[1] === '+') ? 1 : 1;\n return {\n year: parseIso(match[2], sign),\n month: parseIso(match[3], sign),\n week: parseIso(match[4], sign),\n day: parseIso(match[5], sign),\n hours: parseIso(match[6], sign),\n minutes: parseIso(match[7], sign),\n seconds: parseIso(match[8], sign)\n };\n }\n }\n if (isObject(input) && ('from' in input || 'to' in input)) {\n var diffRes = momentsDifference(parseDate(input.from), parseDate(input.to));\n return {\n milliseconds: diffRes.milliseconds,\n month: diffRes.months\n };\n }\n return input;\n var _a;\n}\n// createDuration.fn = Duration.prototype;\n// createDuration.invalid = invalid;\nfunction parseIso(inp, sign) {\n // We'd normally use ~~inp for this, but unfortunately it also\n // converts floats to ints.\n // inp may be undefined, so careful calling replace on it.\n var res = inp && parseFloat(inp.replace(',', '.'));\n // apply sign while we're at it\n return (isNaN(res) ? 0 : res) * sign;\n}\nfunction positiveMomentsDifference(base, other) {\n var res = { milliseconds: 0, months: 0 };\n res.months = getMonth(other) - getMonth(base) +\n (getFullYear(other) - getFullYear(base)) * 12;\n var _basePlus = add(cloneDate(base), res.months, 'month');\n if (isAfter(_basePlus, other)) {\n --res.months;\n }\n res.milliseconds = +other - +(add(cloneDate(base), res.months, 'month'));\n return res;\n}\nfunction momentsDifference(base, other) {\n if (!(isDateValid(base) && isDateValid(other))) {\n return { milliseconds: 0, months: 0 };\n }\n var res;\n var _other = cloneWithOffset(other, base, { _offset: base.getTimezoneOffset() });\n if (isBefore(base, _other)) {\n res = positiveMomentsDifference(base, _other);\n }\n else {\n res = positiveMomentsDifference(_other, base);\n res.milliseconds = -res.milliseconds;\n res.months = -res.months;\n }\n return res;\n}\n//# sourceMappingURL=create.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/duration/create.js\n// module id = 681\n// module chunks = 1","// tslint:disable-next-line\nimport { defaultLocaleMonthsShort, defaultLocaleWeekdaysShort } from '../locale/locale.class';\nimport { isString } from '../utils/type-checks';\nimport { configFromStringAndFormat } from './from-string-and-format';\nimport { createUTCDate } from './date-from-array';\nimport { createInvalid, markInvalid } from './valid';\nimport { getParsingFlags } from './parsing-flags';\n// iso 8601 regex\n// 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)\n// tslint:disable-next-line\nvar extendedIsoRegex = /^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/;\n// tslint:disable-next-line\nvar basicIsoRegex = /^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/;\nvar tzRegex = /Z|[+-]\\d\\d(?::?\\d\\d)?/;\nvar isoDates = [\n ['YYYYYY-MM-DD', /[+-]\\d{6}-\\d\\d-\\d\\d/, true],\n ['YYYY-MM-DD', /\\d{4}-\\d\\d-\\d\\d/, true],\n ['GGGG-[W]WW-E', /\\d{4}-W\\d\\d-\\d/, true],\n ['GGGG-[W]WW', /\\d{4}-W\\d\\d/, false],\n ['YYYY-DDD', /\\d{4}-\\d{3}/, true],\n ['YYYY-MM', /\\d{4}-\\d\\d/, false],\n ['YYYYYYMMDD', /[+-]\\d{10}/, true],\n ['YYYYMMDD', /\\d{8}/, true],\n // YYYYMM is NOT allowed by the standard\n ['GGGG[W]WWE', /\\d{4}W\\d{3}/, true],\n ['GGGG[W]WW', /\\d{4}W\\d{2}/, false],\n ['YYYYDDD', /\\d{7}/, true]\n];\n// iso time formats and regexes\nvar isoTimes = [\n ['HH:mm:ss.SSSS', /\\d\\d:\\d\\d:\\d\\d\\.\\d+/],\n ['HH:mm:ss,SSSS', /\\d\\d:\\d\\d:\\d\\d,\\d+/],\n ['HH:mm:ss', /\\d\\d:\\d\\d:\\d\\d/],\n ['HH:mm', /\\d\\d:\\d\\d/],\n ['HHmmss.SSSS', /\\d\\d\\d\\d\\d\\d\\.\\d+/],\n ['HHmmss,SSSS', /\\d\\d\\d\\d\\d\\d,\\d+/],\n ['HHmmss', /\\d\\d\\d\\d\\d\\d/],\n ['HHmm', /\\d\\d\\d\\d/],\n ['HH', /\\d\\d/]\n];\nvar aspNetJsonRegex = /^\\/?Date\\((\\-?\\d+)/i;\nvar obsOffsets = {\n UT: 0,\n GMT: 0,\n EDT: -4 * 60,\n EST: -5 * 60,\n CDT: -5 * 60,\n CST: -6 * 60,\n MDT: -6 * 60,\n MST: -7 * 60,\n PDT: -7 * 60,\n PST: -8 * 60\n};\n// RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3\n// tslint:disable-next-line\nvar rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\\s)?(\\d{1,2})\\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\\s(\\d{2,4})\\s(\\d\\d):(\\d\\d)(?::(\\d\\d))?\\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\\d{4}))$/;\n// date from iso format\nexport function configFromISO(config) {\n if (!isString(config._i)) {\n return config;\n }\n var input = config._i;\n var match = extendedIsoRegex.exec(input) || basicIsoRegex.exec(input);\n var allowTime;\n var dateFormat;\n var timeFormat;\n var tzFormat;\n if (!match) {\n config._isValid = false;\n return config;\n }\n // getParsingFlags(config).iso = true;\n var i;\n var l;\n for (i = 0, l = isoDates.length; i < l; i++) {\n if (isoDates[i][1].exec(match[1])) {\n dateFormat = isoDates[i][0];\n allowTime = isoDates[i][2] !== false;\n break;\n }\n }\n if (dateFormat == null) {\n config._isValid = false;\n return config;\n }\n if (match[3]) {\n for (i = 0, l = isoTimes.length; i < l; i++) {\n if (isoTimes[i][1].exec(match[3])) {\n // match[2] should be 'T' or space\n timeFormat = (match[2] || ' ') + isoTimes[i][0];\n break;\n }\n }\n if (timeFormat == null) {\n config._isValid = false;\n return config;\n }\n }\n if (!allowTime && timeFormat != null) {\n config._isValid = false;\n return config;\n }\n if (match[4]) {\n if (tzRegex.exec(match[4])) {\n tzFormat = 'Z';\n }\n else {\n config._isValid = false;\n return config;\n }\n }\n config._f = dateFormat + (timeFormat || '') + (tzFormat || '');\n return configFromStringAndFormat(config);\n}\n// tslint:disable-next-line\nfunction extractFromRFC2822Strings(yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) {\n var result = [\n untruncateYear(yearStr),\n defaultLocaleMonthsShort.indexOf(monthStr),\n parseInt(dayStr, 10),\n parseInt(hourStr, 10),\n parseInt(minuteStr, 10)\n ];\n if (secondStr) {\n result.push(parseInt(secondStr, 10));\n }\n return result;\n}\nfunction untruncateYear(yearStr) {\n var year = parseInt(yearStr, 10);\n return year <= 49 ? year + 2000 : year;\n}\nfunction preprocessRFC2822(str) {\n // Remove comments and folding whitespace and replace multiple-spaces with a single space\n return str\n .replace(/\\([^)]*\\)|[\\n\\t]/g, ' ')\n .replace(/(\\s\\s+)/g, ' ').trim();\n}\nfunction checkWeekday(weekdayStr, parsedInput, config) {\n if (weekdayStr) {\n // TODO: Replace the vanilla JS Date object with an indepentent day-of-week check.\n var weekdayProvided = defaultLocaleWeekdaysShort.indexOf(weekdayStr);\n var weekdayActual = new Date(parsedInput[0], parsedInput[1], parsedInput[2]).getDay();\n if (weekdayProvided !== weekdayActual) {\n getParsingFlags(config).weekdayMismatch = true;\n config._isValid = false;\n return false;\n }\n }\n return true;\n}\nfunction calculateOffset(obsOffset, militaryOffset, numOffset) {\n if (obsOffset) {\n return obsOffsets[obsOffset];\n }\n else if (militaryOffset) {\n // the only allowed military tz is Z\n return 0;\n }\n else {\n var hm = parseInt(numOffset, 10);\n var m = hm % 100;\n var h = (hm - m) / 100;\n return h * 60 + m;\n }\n}\n// date and time from ref 2822 format\nexport function configFromRFC2822(config) {\n if (!isString(config._i)) {\n return config;\n }\n var match = rfc2822.exec(preprocessRFC2822(config._i));\n if (!match) {\n return markInvalid(config);\n }\n var parsedArray = extractFromRFC2822Strings(match[4], match[3], match[2], match[5], match[6], match[7]);\n if (!checkWeekday(match[1], parsedArray, config)) {\n return config;\n }\n config._a = parsedArray;\n config._tzm = calculateOffset(match[8], match[9], match[10]);\n config._d = createUTCDate.apply(null, config._a);\n config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);\n getParsingFlags(config).rfc2822 = true;\n return config;\n}\n// date from iso format or fallback\nexport function configFromString(config) {\n if (!isString(config._i)) {\n return config;\n }\n var matched = aspNetJsonRegex.exec(config._i);\n if (matched !== null) {\n config._d = new Date(+matched[1]);\n return config;\n }\n // todo: update logic processing\n // isISO -> configFromISO\n // isRFC -> configFromRFC\n configFromISO(config);\n if (config._isValid === false) {\n delete config._isValid;\n }\n else {\n return config;\n }\n configFromRFC2822(config);\n if (config._isValid === false) {\n delete config._isValid;\n }\n else {\n return config;\n }\n // Final attempt, use Input Fallback\n // hooks.createFromInputFallback(config);\n return createInvalid(config);\n}\n// hooks.createFromInputFallback = deprecate(\n// 'value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' +\n// 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' +\n// 'discouraged and will be removed in an upcoming major release. Please refer to ' +\n// 'http://momentjs.com/guides/#/warnings/js-date/ for more info.',\n// function (config) {\n// config._d = new Date(config._i + (config._useUTC ? ' UTC' : ''));\n// }\n// );\n//# sourceMappingURL=from-string.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/create/from-string.js\n// module id = 682\n// module chunks = 1","import './aliases';\nimport './constants';\nimport './day-of-month';\nimport './day-of-week';\nimport './day-of-year';\nimport './hour';\nimport './millisecond';\nimport './minute';\nimport './month';\nimport './offset';\nimport './priorities';\nimport './quarter';\nimport './second';\nimport './timestamp';\nimport './week';\nimport './week-calendar-utils';\nimport './week-year';\nimport './year';\n//# sourceMappingURL=index.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/units/index.js\n// module id = 683\n// module chunks = 1","// tslint:disable:no-bitwise max-line-length\n// FORMATTING\nimport { addFormatToken } from '../format/format';\nimport { zeroFill } from '../utils/zero-fill';\nimport { isNumber, isString, toInt } from '../utils/type-checks';\nimport { addRegexToken, matchOffset, matchShortOffset } from '../parse/regex';\nimport { add } from '../moment/add-subtract';\nimport { addParseToken } from '../parse/token';\nimport { cloneDate } from '../create/clone';\nimport { setMonth } from '../utils/date-setters';\nfunction addOffsetFormatToken(token, separator) {\n addFormatToken(token, null, null, function (date, config) {\n var offset = getUTCOffset(date, { _isUTC: config.isUTC, _offset: config.offset });\n var sign = '+';\n if (offset < 0) {\n offset = -offset;\n sign = '-';\n }\n return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~(offset) % 60, 2);\n });\n}\naddOffsetFormatToken('Z', ':');\naddOffsetFormatToken('ZZ', '');\n// PARSING\naddRegexToken('Z', matchShortOffset);\naddRegexToken('ZZ', matchShortOffset);\naddParseToken(['Z', 'ZZ'], function (input, array, config) {\n config._useUTC = true;\n config._tzm = offsetFromString(matchShortOffset, input);\n return config;\n});\n// HELPERS\n// timezone chunker\n// '+10:00' > ['10', '00']\n// '-1530' > ['-15', '30']\nvar chunkOffset = /([\\+\\-]|\\d\\d)/gi;\nfunction offsetFromString(matcher, str) {\n var matches = (str || '').match(matcher);\n if (matches === null) {\n return null;\n }\n var chunk = matches[matches.length - 1];\n var parts = chunk.match(chunkOffset) || ['-', '0', '0'];\n var minutes = parseInt(parts[1], 10) * 60 + toInt(parts[2]);\n var _min = parts[0] === '+' ? minutes : -minutes;\n return minutes === 0 ? 0 : _min;\n}\n// Return a moment from input, that is local/utc/zone equivalent to model.\nexport function cloneWithOffset(input, date, config) {\n if (config === void 0) { config = {}; }\n if (!config._isUTC) {\n return input;\n }\n var res = cloneDate(date);\n // todo: input._d - res._d + ((res._offset || 0) - (input._offset || 0))*60000\n var offsetDiff = (config._offset || 0) * 60000;\n var diff = input.valueOf() - res.valueOf() + offsetDiff;\n // Use low-level api, because this fn is low-level api.\n res.setTime(res.valueOf() + diff);\n // todo: add timezone handling\n // hooks.updateOffset(res, false);\n return res;\n}\nexport function getDateOffset(date) {\n // On Firefox.24 Date#getTimezoneOffset returns a floating point.\n // https://github.com/moment/moment/pull/1871\n return -Math.round(date.getTimezoneOffset() / 15) * 15;\n}\n// HOOKS\n// This function will be called whenever a moment is mutated.\n// It is intended to keep the offset in sync with the timezone.\n// todo: it's from moment timezones\n// hooks.updateOffset = function () {\n// };\n// MOMENTS\n// keepLocalTime = true means only change the timezone, without\n// affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]-->\n// 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset\n// +0200, so we adjust the time as needed, to be valid.\n//\n// Keeping the time actually adds/subtracts (one hour)\n// from the actual represented time. That is why we call updateOffset\n// a second time. In case it wants us to change the offset again\n// _changeInProgress == true case, then we have to adjust, because\n// there is no such time in the given timezone.\nexport function getUTCOffset(date, config) {\n if (config === void 0) { config = {}; }\n var _offset = config._offset || 0;\n return config._isUTC ? _offset : getDateOffset(date);\n}\nexport function setUTCOffset(date, input, keepLocalTime, keepMinutes, config) {\n if (config === void 0) { config = {}; }\n var offset = config._offset || 0;\n var localAdjust;\n var _input = input;\n var _date = date;\n if (isString(_input)) {\n _input = offsetFromString(matchShortOffset, _input);\n if (_input === null) {\n return _date;\n }\n }\n else if (isNumber(_input) && Math.abs(_input) < 16 && !keepMinutes) {\n _input = _input * 60;\n }\n if (!config._isUTC && keepLocalTime) {\n localAdjust = getDateOffset(_date);\n }\n config._offset = _input;\n config._isUTC = true;\n if (localAdjust != null) {\n _date = add(_date, localAdjust, 'minutes');\n }\n if (offset !== _input) {\n if (!keepLocalTime || config._changeInProgress) {\n _date = add(_date, _input - offset, 'minutes', config._isUTC);\n // addSubtract(this, createDuration(_input - offset, 'm'), 1, false);\n }\n else if (!config._changeInProgress) {\n config._changeInProgress = true;\n // todo: add timezone handling\n // hooks.updateOffset(this, true);\n config._changeInProgress = null;\n }\n }\n return _date;\n}\n/*\nexport function getSetZone(input, keepLocalTime) {\n if (input != null) {\n if (typeof input !== 'string') {\n input = -input;\n }\n\n this.utcOffset(input, keepLocalTime);\n\n return this;\n } else {\n return -this.utcOffset();\n }\n}\n*/\nexport function setOffsetToUTC(date, keepLocalTime) {\n return setUTCOffset(date, 0, keepLocalTime);\n}\nexport function isDaylightSavingTime(date) {\n return (getUTCOffset(date) > getUTCOffset(setMonth(cloneDate(date), 0))\n || getUTCOffset(date) > getUTCOffset(setMonth(cloneDate(date), 5)));\n}\n/*export function setOffsetToLocal(date: Date, isUTC?: boolean, keepLocalTime?: boolean) {\n if (this._isUTC) {\n this.utcOffset(0, keepLocalTime);\n this._isUTC = false;\n\n if (keepLocalTime) {\n this.subtract(getDateOffset(this), 'm');\n }\n }\n return this;\n}*/\nexport function setOffsetToParsedOffset(date, input, config) {\n if (config === void 0) { config = {}; }\n if (config._tzm != null) {\n return setUTCOffset(date, config._tzm, false, true, config);\n }\n if (isString(input)) {\n var tZone = offsetFromString(matchOffset, input);\n if (tZone != null) {\n return setUTCOffset(date, tZone, false, false, config);\n }\n return setUTCOffset(date, 0, true, false, config);\n }\n return date;\n}\nexport function hasAlignedHourOffset(date, input) {\n var _input = input ? getUTCOffset(input, { _isUTC: false }) : 0;\n return (getUTCOffset(date) - _input) % 60 === 0;\n}\n// DEPRECATED\n/*export function isDaylightSavingTimeShifted() {\n if (!isUndefined(this._isDSTShifted)) {\n return this._isDSTShifted;\n }\n\n const c = {};\n\n copyConfig(c, this);\n c = prepareConfig(c);\n\n if (c._a) {\n const other = c._isUTC ? createUTC(c._a) : createLocal(c._a);\n this._isDSTShifted = this.isValid() &&\n compareArrays(c._a, other.toArray()) > 0;\n } else {\n this._isDSTShifted = false;\n }\n\n return this._isDSTShifted;\n}*/\n// in Khronos\n/*export function isLocal() {\n return this.isValid() ? !this._isUTC : false;\n}\n\nexport function isUtcOffset() {\n return this.isValid() ? this._isUTC : false;\n}\n\nexport function isUtc() {\n return this.isValid() ? this._isUTC && this._offset === 0 : false;\n}*/\n//# sourceMappingURL=offset.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/units/offset.js\n// module id = 684\n// module chunks = 1","import { getParsingFlags } from './parsing-flags';\nimport { DATE, HOUR, MILLISECOND, MINUTE, MONTH, SECOND, WEEK, WEEKDAY, YEAR } from '../units/constants';\nimport { daysInMonth } from '../units/month';\nexport function checkOverflow(config) {\n var overflow;\n var a = config._a;\n if (a && getParsingFlags(config).overflow === -2) {\n // todo: fix this sh*t\n overflow =\n a[MONTH] < 0 || a[MONTH] > 11 ? MONTH :\n a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE :\n a[HOUR] < 0 || a[HOUR] > 24 || (a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0)) ? HOUR :\n a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE :\n a[SECOND] < 0 || a[SECOND] > 59 ? SECOND :\n a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND :\n -1;\n if (getParsingFlags(config)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) {\n overflow = DATE;\n }\n if (getParsingFlags(config)._overflowWeeks && overflow === -1) {\n overflow = WEEK;\n }\n if (getParsingFlags(config)._overflowWeekday && overflow === -1) {\n overflow = WEEKDAY;\n }\n getParsingFlags(config).overflow = overflow;\n }\n return config;\n}\n//# sourceMappingURL=check-overflow.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/create/check-overflow.js\n// module id = 685\n// module chunks = 1","export function absRound(num) {\n return num < 0 ? Math.round(num * -1) * -1 : Math.round(num);\n}\n//# sourceMappingURL=abs-round.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/chronos/utils/abs-round.js\n// module id = 686\n// module chunks = 1","import { Component, HostBinding, Inject, Input, Output, EventEmitter } from '@angular/core';\nimport { isBs3 } from '../utils/theme-provider';\nimport { AccordionComponent } from './accordion.component';\n/**\n * ### Accordion heading\n * Instead of using `heading` attribute on the `accordion-group`, you can use\n * an `accordion-heading` attribute on `any` element inside of a group that\n * will be used as group's header template.\n */\nvar AccordionPanelComponent = (function () {\n function AccordionPanelComponent(accordion) {\n /** Emits when the opened state changes */\n this.isOpenChange = new EventEmitter();\n this._isOpen = false;\n this.accordion = accordion;\n }\n Object.defineProperty(AccordionPanelComponent.prototype, \"isOpen\", {\n // Questionable, maybe .panel-open should be on child div.panel element?\n /** Is accordion group open or closed. This property supports two-way binding */\n get: function () {\n return this._isOpen;\n },\n set: function (value) {\n var _this = this;\n if (value !== this.isOpen) {\n if (value) {\n this.accordion.closeOtherPanels(this);\n }\n this._isOpen = value;\n Promise.resolve(null).then(function () {\n _this.isOpenChange.emit(value);\n });\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(AccordionPanelComponent.prototype, \"isBs3\", {\n get: function () {\n return isBs3();\n },\n enumerable: true,\n configurable: true\n });\n AccordionPanelComponent.prototype.ngOnInit = function () {\n this.panelClass = this.panelClass || 'panel-default';\n this.accordion.addGroup(this);\n };\n AccordionPanelComponent.prototype.ngOnDestroy = function () {\n this.accordion.removeGroup(this);\n };\n AccordionPanelComponent.prototype.toggleOpen = function (event) {\n if (!this.isDisabled) {\n this.isOpen = !this.isOpen;\n }\n };\n AccordionPanelComponent.decorators = [\n { type: Component, args: [{\n selector: 'accordion-group, accordion-panel',\n template: \" \",\n host: {\n class: 'panel',\n style: 'display: block'\n }\n },] },\n ];\n /** @nocollapse */\n AccordionPanelComponent.ctorParameters = function () { return [\n { type: AccordionComponent, decorators: [{ type: Inject, args: [AccordionComponent,] },] },\n ]; };\n AccordionPanelComponent.propDecorators = {\n 'heading': [{ type: Input },],\n 'panelClass': [{ type: Input },],\n 'isDisabled': [{ type: Input },],\n 'isOpenChange': [{ type: Output },],\n 'isOpen': [{ type: HostBinding, args: ['class.panel-open',] }, { type: Input },],\n };\n return AccordionPanelComponent;\n}());\nexport { AccordionPanelComponent };\n//# sourceMappingURL=accordion-group.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/accordion/accordion-group.component.js\n// module id = 687\n// module chunks = 1","import { NgModule } from '@angular/core';\nimport { CollapseDirective } from './collapse.directive';\nvar CollapseModule = (function () {\n function CollapseModule() {\n }\n CollapseModule.forRoot = function () {\n return { ngModule: CollapseModule, providers: [] };\n };\n CollapseModule.decorators = [\n { type: NgModule, args: [{\n declarations: [CollapseDirective],\n exports: [CollapseDirective]\n },] },\n ];\n /** @nocollapse */\n CollapseModule.ctorParameters = function () { return []; };\n return CollapseModule;\n}());\nexport { CollapseModule };\n//# sourceMappingURL=collapse.module.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/collapse/collapse.module.js\n// module id = 688\n// module chunks = 1","// todo: add animations when https://github.com/angular/angular/issues/9947 solved\nimport { Directive, ElementRef, EventEmitter, HostBinding, Input, Output, Renderer2 } from '@angular/core';\nvar CollapseDirective = (function () {\n function CollapseDirective(_el, _renderer) {\n this._el = _el;\n this._renderer = _renderer;\n /** This event fires as soon as content collapses */\n this.collapsed = new EventEmitter();\n /** This event fires as soon as content becomes visible */\n this.expanded = new EventEmitter();\n // shown\n this.isExpanded = true;\n // hidden\n this.isCollapsed = false;\n // stale state\n this.isCollapse = true;\n // animation state\n this.isCollapsing = false;\n }\n Object.defineProperty(CollapseDirective.prototype, \"collapse\", {\n get: function () {\n return this.isExpanded;\n },\n /** A flag indicating visibility of content (shown or hidden) */\n set: function (value) {\n this.isExpanded = value;\n this.toggle();\n },\n enumerable: true,\n configurable: true\n });\n /** allows to manually toggle content visibility */\n CollapseDirective.prototype.toggle = function () {\n if (this.isExpanded) {\n this.hide();\n }\n else {\n this.show();\n }\n };\n /** allows to manually hide content */\n CollapseDirective.prototype.hide = function () {\n this.isCollapse = false;\n this.isCollapsing = true;\n this.isExpanded = false;\n this.isCollapsed = true;\n this.isCollapse = true;\n this.isCollapsing = false;\n this.display = 'none';\n this.collapsed.emit(this);\n };\n /** allows to manually show collapsed content */\n CollapseDirective.prototype.show = function () {\n this.isCollapse = false;\n this.isCollapsing = true;\n this.isExpanded = true;\n this.isCollapsed = false;\n this.display = 'block';\n // this.height = 'auto';\n this.isCollapse = true;\n this.isCollapsing = false;\n this._renderer.setStyle(this._el.nativeElement, 'overflow', 'visible');\n this._renderer.setStyle(this._el.nativeElement, 'height', 'auto');\n this.expanded.emit(this);\n };\n CollapseDirective.decorators = [\n { type: Directive, args: [{\n selector: '[collapse]',\n exportAs: 'bs-collapse',\n host: {\n '[class.collapse]': 'true'\n }\n },] },\n ];\n /** @nocollapse */\n CollapseDirective.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Renderer2, },\n ]; };\n CollapseDirective.propDecorators = {\n 'collapsed': [{ type: Output },],\n 'expanded': [{ type: Output },],\n 'display': [{ type: HostBinding, args: ['style.display',] },],\n 'isExpanded': [{ type: HostBinding, args: ['class.in',] }, { type: HostBinding, args: ['class.show',] }, { type: HostBinding, args: ['attr.aria-expanded',] },],\n 'isCollapsed': [{ type: HostBinding, args: ['attr.aria-hidden',] },],\n 'isCollapse': [{ type: HostBinding, args: ['class.collapse',] },],\n 'isCollapsing': [{ type: HostBinding, args: ['class.collapsing',] },],\n 'collapse': [{ type: Input },],\n };\n return CollapseDirective;\n}());\nexport { CollapseDirective };\n//# sourceMappingURL=collapse.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/collapse/collapse.directive.js\n// module id = 689\n// module chunks = 1","var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n};\nvar __metadata = (this && this.__metadata) || function (k, v) {\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(k, v);\n};\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, EventEmitter, Input, Output } from '@angular/core';\nimport { AlertConfig } from './alert.config';\nimport { OnChange } from '../utils/decorators';\nvar AlertComponent = (function () {\n function AlertComponent(_config, changeDetection) {\n var _this = this;\n this.changeDetection = changeDetection;\n /** Alert type.\n * Provides one of four bootstrap supported contextual classes:\n * `success`, `info`, `warning` and `danger`\n */\n this.type = 'warning';\n /** If set, displays an inline \"Close\" button */\n this.dismissible = false;\n /** Is alert visible */\n this.isOpen = true;\n /** This event fires immediately after close instance method is called,\n * $event is an instance of Alert component.\n */\n this.onClose = new EventEmitter();\n /** This event fires when alert closed, $event is an instance of Alert component */\n this.onClosed = new EventEmitter();\n this.classes = '';\n this.dismissibleChange = new EventEmitter();\n Object.assign(this, _config);\n this.dismissibleChange.subscribe(function (dismissible) {\n _this.classes = _this.dismissible ? 'alert-dismissible' : '';\n _this.changeDetection.markForCheck();\n });\n }\n AlertComponent.prototype.ngOnInit = function () {\n var _this = this;\n if (this.dismissOnTimeout) {\n // if dismissOnTimeout used as attr without binding, it will be a string\n setTimeout(function () { return _this.close(); }, parseInt(this.dismissOnTimeout, 10));\n }\n };\n // todo: animation ` If the .fade and .in classes are present on the element,\n // the alert will fade out before it is removed`\n /**\n * Closes an alert by removing it from the DOM.\n */\n AlertComponent.prototype.close = function () {\n if (!this.isOpen) {\n return;\n }\n this.onClose.emit(this);\n this.isOpen = false;\n this.changeDetection.markForCheck();\n this.onClosed.emit(this);\n };\n AlertComponent.decorators = [\n { type: Component, args: [{\n selector: 'alert,bs-alert',\n template: \"
\",\n changeDetection: ChangeDetectionStrategy.OnPush\n },] },\n ];\n /** @nocollapse */\n AlertComponent.ctorParameters = function () { return [\n { type: AlertConfig, },\n { type: ChangeDetectorRef, },\n ]; };\n AlertComponent.propDecorators = {\n 'type': [{ type: Input },],\n 'dismissible': [{ type: Input },],\n 'dismissOnTimeout': [{ type: Input },],\n 'isOpen': [{ type: Input },],\n 'onClose': [{ type: Output },],\n 'onClosed': [{ type: Output },],\n };\n __decorate([\n OnChange(),\n __metadata(\"design:type\", Object)\n ], AlertComponent.prototype, \"dismissible\", void 0);\n return AlertComponent;\n}());\nexport { AlertComponent };\n//# sourceMappingURL=alert.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/alert/alert.component.js\n// module id = 690\n// module chunks = 1","// tslint:disable:no-use-before-declare\nimport { Directive, HostBinding, HostListener, Input, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\n// TODO: config: activeClass - Class to apply to the checked buttons\nexport var CHECKBOX_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return ButtonCheckboxDirective; }),\n multi: true\n};\n/**\n * Add checkbox functionality to any element\n */\nvar ButtonCheckboxDirective = (function () {\n function ButtonCheckboxDirective() {\n /** Truthy value, will be set to ngModel */\n this.btnCheckboxTrue = true;\n /** Falsy value, will be set to ngModel */\n this.btnCheckboxFalse = false;\n this.state = false;\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n }\n // view -> model\n ButtonCheckboxDirective.prototype.onClick = function () {\n if (this.isDisabled) {\n return;\n }\n this.toggle(!this.state);\n this.onChange(this.value);\n };\n ButtonCheckboxDirective.prototype.ngOnInit = function () {\n this.toggle(this.trueValue === this.value);\n };\n Object.defineProperty(ButtonCheckboxDirective.prototype, \"trueValue\", {\n get: function () {\n return typeof this.btnCheckboxTrue !== 'undefined'\n ? this.btnCheckboxTrue\n : true;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ButtonCheckboxDirective.prototype, \"falseValue\", {\n get: function () {\n return typeof this.btnCheckboxFalse !== 'undefined'\n ? this.btnCheckboxFalse\n : false;\n },\n enumerable: true,\n configurable: true\n });\n ButtonCheckboxDirective.prototype.toggle = function (state) {\n this.state = state;\n this.value = this.state ? this.trueValue : this.falseValue;\n };\n // ControlValueAccessor\n // model -> view\n ButtonCheckboxDirective.prototype.writeValue = function (value) {\n this.state = this.trueValue === value;\n this.value = value ? this.trueValue : this.falseValue;\n };\n ButtonCheckboxDirective.prototype.setDisabledState = function (isDisabled) {\n this.isDisabled = isDisabled;\n };\n ButtonCheckboxDirective.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n ButtonCheckboxDirective.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n ButtonCheckboxDirective.decorators = [\n { type: Directive, args: [{\n selector: '[btnCheckbox]',\n providers: [CHECKBOX_CONTROL_VALUE_ACCESSOR]\n },] },\n ];\n /** @nocollapse */\n ButtonCheckboxDirective.ctorParameters = function () { return []; };\n ButtonCheckboxDirective.propDecorators = {\n 'btnCheckboxTrue': [{ type: Input },],\n 'btnCheckboxFalse': [{ type: Input },],\n 'state': [{ type: HostBinding, args: ['class.active',] },],\n 'onClick': [{ type: HostListener, args: ['click',] },],\n };\n return ButtonCheckboxDirective;\n}());\nexport { ButtonCheckboxDirective };\n//# sourceMappingURL=button-checkbox.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/buttons/button-checkbox.directive.js\n// module id = 691\n// module chunks = 1","// tslint:disable:no-use-before-declare\nimport { ChangeDetectorRef, Directive, ElementRef, forwardRef, HostBinding, HostListener, Input, Optional, Renderer2 } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ButtonRadioGroupDirective } from './button-radio-group.directive';\nexport var RADIO_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return ButtonRadioDirective; }),\n multi: true\n};\n/**\n * Create radio buttons or groups of buttons.\n * A value of a selected button is bound to a variable specified via ngModel.\n */\nvar ButtonRadioDirective = (function () {\n function ButtonRadioDirective(el, cdr, group, renderer) {\n this.el = el;\n this.cdr = cdr;\n this.group = group;\n this.renderer = renderer;\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n }\n Object.defineProperty(ButtonRadioDirective.prototype, \"value\", {\n /** Current value of radio component or group */\n get: function () {\n return this.group ? this.group.value : this._value;\n },\n set: function (value) {\n if (this.group) {\n this.group.value = value;\n return;\n }\n this._value = value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ButtonRadioDirective.prototype, \"disabled\", {\n /** If `true` — radio button is disabled */\n get: function () {\n return this._disabled;\n },\n set: function (disabled) {\n this._disabled = disabled;\n this.setDisabledState(disabled);\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ButtonRadioDirective.prototype, \"isActive\", {\n get: function () {\n return this.btnRadio === this.value;\n },\n enumerable: true,\n configurable: true\n });\n ButtonRadioDirective.prototype.onClick = function () {\n if (this.el.nativeElement.attributes.disabled || !this.uncheckable && this.btnRadio === this.value) {\n return;\n }\n this.value = this.uncheckable && this.btnRadio === this.value ? undefined : this.btnRadio;\n this._onChange(this.value);\n };\n ButtonRadioDirective.prototype.ngOnInit = function () {\n this.uncheckable = typeof this.uncheckable !== 'undefined';\n };\n ButtonRadioDirective.prototype.onBlur = function () {\n this.onTouched();\n };\n ButtonRadioDirective.prototype._onChange = function (value) {\n if (this.group) {\n this.group.onTouched();\n this.group.onChange(value);\n return;\n }\n this.onTouched();\n this.onChange(value);\n };\n // ControlValueAccessor\n // model -> view\n ButtonRadioDirective.prototype.writeValue = function (value) {\n this.value = value;\n this.cdr.markForCheck();\n };\n ButtonRadioDirective.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n ButtonRadioDirective.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n ButtonRadioDirective.prototype.setDisabledState = function (disabled) {\n if (disabled) {\n this.renderer.setAttribute(this.el.nativeElement, 'disabled', 'disabled');\n return;\n }\n this.renderer.removeAttribute(this.el.nativeElement, 'disabled');\n };\n ButtonRadioDirective.decorators = [\n { type: Directive, args: [{\n selector: '[btnRadio]',\n providers: [RADIO_CONTROL_VALUE_ACCESSOR]\n },] },\n ];\n /** @nocollapse */\n ButtonRadioDirective.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: ChangeDetectorRef, },\n { type: ButtonRadioGroupDirective, decorators: [{ type: Optional },] },\n { type: Renderer2, },\n ]; };\n ButtonRadioDirective.propDecorators = {\n 'btnRadio': [{ type: Input },],\n 'uncheckable': [{ type: Input },],\n 'value': [{ type: Input },],\n 'disabled': [{ type: Input },],\n 'isActive': [{ type: HostBinding, args: ['class.active',] },],\n 'onClick': [{ type: HostListener, args: ['click',] },],\n };\n return ButtonRadioDirective;\n}());\nexport { ButtonRadioDirective };\n//# sourceMappingURL=button-radio.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/buttons/button-radio.directive.js\n// module id = 692\n// module chunks = 1","/**\n * @copyright Valor Software\n * @copyright Angular ng-bootstrap team\n */\nvar Trigger = (function () {\n function Trigger(open, close) {\n this.open = open;\n this.close = close || open;\n }\n Trigger.prototype.isManual = function () {\n return this.open === 'manual' || this.close === 'manual';\n };\n return Trigger;\n}());\nexport { Trigger };\n//# sourceMappingURL=trigger.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/utils/trigger.class.js\n// module id = 693\n// module chunks = 1","import { Component, HostBinding, Input } from '@angular/core';\nimport { CarouselComponent } from './carousel.component';\nvar SlideComponent = (function () {\n function SlideComponent(carousel) {\n /** Wraps element by appropriate CSS classes */\n this.addClass = true;\n this.carousel = carousel;\n }\n /** Fires changes in container collection after adding a new slide instance */\n SlideComponent.prototype.ngOnInit = function () {\n this.carousel.addSlide(this);\n };\n /** Fires changes in container collection after removing of this slide instance */\n SlideComponent.prototype.ngOnDestroy = function () {\n this.carousel.removeSlide(this);\n };\n SlideComponent.decorators = [\n { type: Component, args: [{\n selector: 'slide',\n template: \"\\n \\n \\n
\\n \"\n },] },\n ];\n /** @nocollapse */\n SlideComponent.ctorParameters = function () { return [\n { type: CarouselComponent, },\n ]; };\n SlideComponent.propDecorators = {\n 'active': [{ type: HostBinding, args: ['class.active',] }, { type: Input },],\n 'addClass': [{ type: HostBinding, args: ['class.item',] }, { type: HostBinding, args: ['class.carousel-item',] },],\n };\n return SlideComponent;\n}());\nexport { SlideComponent };\n//# sourceMappingURL=slide.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/carousel/slide.component.js\n// module id = 694\n// module chunks = 1","import { Component, EventEmitter, Input, Output, ViewChild, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { DatePickerInnerComponent } from './datepicker-inner.component';\nimport { DatepickerConfig } from './datepicker.config';\nexport var DATEPICKER_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n // tslint:disable-next-line\n useExisting: forwardRef(function () { return DatePickerComponent; }),\n multi: true\n};\n/* tslint:disable:component-selector-name component-selector-type */\n/* tslint:enable:component-selector-name component-selector-type */\nvar DatePickerComponent = (function () {\n function DatePickerComponent(config) {\n /** sets datepicker mode, supports: `day`, `month`, `year` */\n this.datepickerMode = 'day';\n /** if false week numbers will be hidden */\n this.showWeeks = true;\n this.selectionDone = new EventEmitter(undefined);\n /** callback to invoke when the activeDate is changed. */\n this.activeDateChange = new EventEmitter(undefined);\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n this._now = new Date();\n this.config = config;\n this.configureOptions();\n }\n Object.defineProperty(DatePickerComponent.prototype, \"activeDate\", {\n /** currently active date */\n get: function () {\n return this._activeDate || this._now;\n },\n set: function (value) {\n this._activeDate = value;\n },\n enumerable: true,\n configurable: true\n });\n DatePickerComponent.prototype.configureOptions = function () {\n Object.assign(this, this.config);\n };\n DatePickerComponent.prototype.onUpdate = function (event) {\n this.activeDate = event;\n this.onChange(event);\n };\n DatePickerComponent.prototype.onSelectionDone = function (event) {\n this.selectionDone.emit(event);\n };\n DatePickerComponent.prototype.onActiveDateChange = function (event) {\n this.activeDateChange.emit(event);\n };\n // todo: support null value\n DatePickerComponent.prototype.writeValue = function (value) {\n if (this._datePicker.compare(value, this._activeDate) === 0) {\n return;\n }\n if (value && value instanceof Date) {\n this.activeDate = value;\n this._datePicker.select(value, false);\n return;\n }\n this.activeDate = value ? new Date(value) : void 0;\n };\n DatePickerComponent.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n DatePickerComponent.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n DatePickerComponent.decorators = [\n { type: Component, args: [{\n selector: 'datepicker',\n template: \"\\n \\n \\n \\n \\n \\n \",\n providers: [DATEPICKER_CONTROL_VALUE_ACCESSOR]\n },] },\n ];\n /** @nocollapse */\n DatePickerComponent.ctorParameters = function () { return [\n { type: DatepickerConfig, },\n ]; };\n DatePickerComponent.propDecorators = {\n 'datepickerMode': [{ type: Input },],\n 'initDate': [{ type: Input },],\n 'minDate': [{ type: Input },],\n 'maxDate': [{ type: Input },],\n 'minMode': [{ type: Input },],\n 'maxMode': [{ type: Input },],\n 'showWeeks': [{ type: Input },],\n 'formatDay': [{ type: Input },],\n 'formatMonth': [{ type: Input },],\n 'formatYear': [{ type: Input },],\n 'formatDayHeader': [{ type: Input },],\n 'formatDayTitle': [{ type: Input },],\n 'formatMonthTitle': [{ type: Input },],\n 'startingDay': [{ type: Input },],\n 'yearRange': [{ type: Input },],\n 'onlyCurrentMonth': [{ type: Input },],\n 'shortcutPropagation': [{ type: Input },],\n 'monthColLimit': [{ type: Input },],\n 'yearColLimit': [{ type: Input },],\n 'customClass': [{ type: Input },],\n 'dateDisabled': [{ type: Input },],\n 'dayDisabled': [{ type: Input },],\n 'activeDate': [{ type: Input },],\n 'selectionDone': [{ type: Output },],\n 'activeDateChange': [{ type: Output },],\n '_datePicker': [{ type: ViewChild, args: [DatePickerInnerComponent,] },],\n };\n return DatePickerComponent;\n}());\nexport { DatePickerComponent };\n//# sourceMappingURL=datepicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/datepicker.component.js\n// module id = 695\n// module chunks = 1","import { formatDate } from '../chronos/format';\nvar DateFormatter = (function () {\n function DateFormatter() {\n }\n DateFormatter.prototype.format = function (date, format, locale) {\n return formatDate(date, format, locale);\n };\n return DateFormatter;\n}());\nexport { DateFormatter };\n//# sourceMappingURL=date-formatter.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/date-formatter.js\n// module id = 696\n// module chunks = 1","// @deprecated\n// tslint:disable\nimport { Component } from '@angular/core';\nimport { isBs3 } from '../utils/theme-provider';\nimport { DatePickerInnerComponent } from './datepicker-inner.component';\nvar DayPickerComponent = (function () {\n function DayPickerComponent(datePicker) {\n this.labels = [];\n this.rows = [];\n this.weekNumbers = [];\n this.datePicker = datePicker;\n }\n Object.defineProperty(DayPickerComponent.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n /*protected getDaysInMonth(year:number, month:number) {\n return ((month === 1) && (year % 4 === 0) &&\n ((year % 100 !== 0) || (year % 400 === 0))) ? 29 : DAYS_IN_MONTH[month];\n }*/\n DayPickerComponent.prototype.ngOnInit = function () {\n var self = this;\n this.datePicker.stepDay = { months: 1 };\n this.datePicker.setRefreshViewHandler(function () {\n var year = this.activeDate.getFullYear();\n var month = this.activeDate.getMonth();\n var firstDayOfMonth = new Date(year, month, 1);\n var difference = this.startingDay - firstDayOfMonth.getDay();\n var numDisplayedFromPreviousMonth = difference > 0 ? 7 - difference : -difference;\n var firstDate = new Date(firstDayOfMonth.getTime());\n if (numDisplayedFromPreviousMonth > 0) {\n firstDate.setDate(-numDisplayedFromPreviousMonth + 1);\n }\n // 42 is the number of days on a six-week calendar\n var _days = self.getDates(firstDate, 42);\n var days = [];\n for (var i = 0; i < 42; i++) {\n var _dateObject = this.createDateObject(_days[i], this.formatDay);\n _dateObject.secondary = _days[i].getMonth() !== month;\n _dateObject.uid = this.uniqueId + '-' + i;\n days[i] = _dateObject;\n }\n self.labels = [];\n for (var j = 0; j < 7; j++) {\n self.labels[j] = {};\n self.labels[j].abbr = this.dateFilter(days[j].date, this.formatDayHeader);\n self.labels[j].full = this.dateFilter(days[j].date, 'EEEE');\n }\n self.title = this.dateFilter(this.activeDate, this.formatDayTitle);\n self.rows = this.split(days, 7);\n if (this.showWeeks) {\n self.weekNumbers = [];\n var thursdayIndex = (4 + 7 - this.startingDay) % 7;\n var numWeeks = self.rows.length;\n for (var curWeek = 0; curWeek < numWeeks; curWeek++) {\n self.weekNumbers.push(self.getISO8601WeekNumber(self.rows[curWeek][thursdayIndex].date));\n }\n }\n }, 'day');\n this.datePicker.setCompareHandler(function (date1, date2) {\n var d1 = new Date(date1.getFullYear(), date1.getMonth(), date1.getDate());\n var d2 = new Date(date2.getFullYear(), date2.getMonth(), date2.getDate());\n return d1.getTime() - d2.getTime();\n }, 'day');\n this.datePicker.refreshView();\n };\n DayPickerComponent.prototype.getDates = function (startDate, n) {\n var dates = new Array(n);\n var current = new Date(startDate.getTime());\n var i = 0;\n var date;\n while (i < n) {\n date = new Date(current.getTime());\n date = this.datePicker.fixTimeZone(date);\n dates[i++] = date;\n current = new Date(date.getFullYear(), date.getMonth(), date.getDate() + 1);\n }\n return dates;\n };\n DayPickerComponent.prototype.getISO8601WeekNumber = function (date) {\n var checkDate = new Date(date.getTime());\n // Thursday\n checkDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7));\n var time = checkDate.getTime();\n // Compare with Jan 1\n checkDate.setMonth(0);\n checkDate.setDate(1);\n return (Math.floor(Math.round((time - checkDate.getTime()) / 86400000) / 7) + 1);\n };\n // todo: key events implementation\n DayPickerComponent.decorators = [\n { type: Component, args: [{\n selector: 'daypicker',\n template: \"\\n\\n \\n \\n \\n \\n \\n | \\n \\n \\n | \\n \\n \\n \\n | \\n
\\n \\n | \\n \\n {{ labelz.abbr }}\\n | \\n
\\n \\n \\n \\n \\n \\n {{ weekNumbers[index] }}\\n | \\n \\n \\n | \\n
\\n \\n \\n
\\n \",\n styles: [\n \"\\n :host .btn-secondary {\\n color: #292b2c;\\n background-color: #fff;\\n border-color: #ccc;\\n }\\n :host .btn-info .text-muted {\\n color: #292b2c !important;\\n }\\n \"\n ]\n },] },\n ];\n /** @nocollapse */\n DayPickerComponent.ctorParameters = function () { return [\n { type: DatePickerInnerComponent, },\n ]; };\n return DayPickerComponent;\n}());\nexport { DayPickerComponent };\n//# sourceMappingURL=daypicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/daypicker.component.js\n// module id = 697\n// module chunks = 1","// @deprecated\n// tslint:disable\nimport { Component } from '@angular/core';\nimport { isBs3 } from '../utils/theme-provider';\nimport { DatePickerInnerComponent } from './datepicker-inner.component';\nvar MonthPickerComponent = (function () {\n function MonthPickerComponent(datePicker) {\n this.rows = [];\n this.datePicker = datePicker;\n }\n Object.defineProperty(MonthPickerComponent.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n MonthPickerComponent.prototype.ngOnInit = function () {\n var self = this;\n this.datePicker.stepMonth = { years: 1 };\n this.datePicker.setRefreshViewHandler(function () {\n var months = new Array(12);\n var year = this.activeDate.getFullYear();\n var date;\n for (var i = 0; i < 12; i++) {\n date = new Date(year, i, 1);\n date = this.fixTimeZone(date);\n months[i] = this.createDateObject(date, this.formatMonth);\n months[i].uid = this.uniqueId + '-' + i;\n }\n self.title = this.dateFilter(this.activeDate, this.formatMonthTitle);\n self.rows = this.split(months, self.datePicker.monthColLimit);\n }, 'month');\n this.datePicker.setCompareHandler(function (date1, date2) {\n var d1 = new Date(date1.getFullYear(), date1.getMonth());\n var d2 = new Date(date2.getFullYear(), date2.getMonth());\n return d1.getTime() - d2.getTime();\n }, 'month');\n this.datePicker.refreshView();\n };\n // todo: key events implementation\n MonthPickerComponent.decorators = [\n { type: Component, args: [{\n selector: 'monthpicker',\n template: \"\\n\\n \\n \\n \\n | \\n \\n \\n | \\n \\n \\n | \\n
\\n \\n \\n \\n \\n \\n | \\n
\\n \\n
\\n \",\n styles: [\n \"\\n :host .btn-info .text-success {\\n color: #fff !important;\\n }\\n \"\n ]\n },] },\n ];\n /** @nocollapse */\n MonthPickerComponent.ctorParameters = function () { return [\n { type: DatePickerInnerComponent, },\n ]; };\n return MonthPickerComponent;\n}());\nexport { MonthPickerComponent };\n//# sourceMappingURL=monthpicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/monthpicker.component.js\n// module id = 698\n// module chunks = 1","// @deprecated\n// tslint:disable\nimport { Component } from '@angular/core';\nimport { isBs3 } from '../utils/theme-provider';\nimport { DatePickerInnerComponent } from './datepicker-inner.component';\nvar YearPickerComponent = (function () {\n function YearPickerComponent(datePicker) {\n this.rows = [];\n this.datePicker = datePicker;\n }\n Object.defineProperty(YearPickerComponent.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n YearPickerComponent.prototype.ngOnInit = function () {\n var self = this;\n this.datePicker.stepYear = { years: this.datePicker.yearRange };\n this.datePicker.setRefreshViewHandler(function () {\n var years = new Array(this.yearRange);\n var date;\n var start = self.getStartingYear(this.activeDate.getFullYear());\n for (var i = 0; i < this.yearRange; i++) {\n date = new Date(start + i, 0, 1);\n date = this.fixTimeZone(date);\n years[i] = this.createDateObject(date, this.formatYear);\n years[i].uid = this.uniqueId + '-' + i;\n }\n self.title = [years[0].label, years[this.yearRange - 1].label].join(' - ');\n self.rows = this.split(years, self.datePicker.yearColLimit);\n }, 'year');\n this.datePicker.setCompareHandler(function (date1, date2) {\n return date1.getFullYear() - date2.getFullYear();\n }, 'year');\n this.datePicker.refreshView();\n };\n YearPickerComponent.prototype.getStartingYear = function (year) {\n // todo: parseInt\n return ((year - 1) / this.datePicker.yearRange * this.datePicker.yearRange + 1);\n };\n YearPickerComponent.decorators = [\n { type: Component, args: [{\n selector: 'yearpicker',\n template: \"\\n\\n \\n \\n \\n \\n | \\n \\n \\n | \\n \\n \\n | \\n
\\n \\n \\n \\n \\n \\n | \\n
\\n \\n
\\n \",\n styles: [\n \"\\n :host .btn-info .text-success {\\n color: #fff !important;\\n }\\n \"\n ]\n },] },\n ];\n /** @nocollapse */\n YearPickerComponent.ctorParameters = function () { return [\n { type: DatePickerInnerComponent, },\n ]; };\n return YearPickerComponent;\n}());\nexport { YearPickerComponent };\n//# sourceMappingURL=yearpicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/yearpicker.component.js\n// module id = 699\n// module chunks = 1","// tslint:disable:max-file-line-count\n// todo: add delay support\n// todo: merge events onShow, onShown, etc...\n// todo: add global positioning configuration?\nimport { ElementRef, EventEmitter, ReflectiveInjector, TemplateRef } from '@angular/core';\nimport { listenToTriggersV2, registerOutsideClick } from '../utils/triggers';\nimport { ContentRef } from './content-ref.class';\nvar ComponentLoader = (function () {\n /**\n * Do not use this directly, it should be instanced via\n * `ComponentLoadFactory.attach`\n * @internal\n */\n // tslint:disable-next-line\n function ComponentLoader(_viewContainerRef, _renderer, _elementRef, _injector, _componentFactoryResolver, _ngZone, _applicationRef, _posService) {\n this._viewContainerRef = _viewContainerRef;\n this._renderer = _renderer;\n this._elementRef = _elementRef;\n this._injector = _injector;\n this._componentFactoryResolver = _componentFactoryResolver;\n this._ngZone = _ngZone;\n this._applicationRef = _applicationRef;\n this._posService = _posService;\n this.onBeforeShow = new EventEmitter();\n this.onShown = new EventEmitter();\n this.onBeforeHide = new EventEmitter();\n this.onHidden = new EventEmitter();\n this._providers = [];\n this._isHiding = false;\n this._listenOpts = {};\n this._globalListener = Function.prototype;\n }\n Object.defineProperty(ComponentLoader.prototype, \"isShown\", {\n get: function () {\n if (this._isHiding) {\n return false;\n }\n return !!this._componentRef;\n },\n enumerable: true,\n configurable: true\n });\n ComponentLoader.prototype.attach = function (compType) {\n this._componentFactory = this._componentFactoryResolver\n .resolveComponentFactory(compType);\n return this;\n };\n // todo: add behaviour: to target element, `body`, custom element\n ComponentLoader.prototype.to = function (container) {\n this.container = container || this.container;\n return this;\n };\n ComponentLoader.prototype.position = function (opts) {\n this.attachment = opts.attachment || this.attachment;\n this._elementRef = opts.target || this._elementRef;\n return this;\n };\n ComponentLoader.prototype.provide = function (provider) {\n this._providers.push(provider);\n return this;\n };\n // todo: appendChild to element or document.querySelector(this.container)\n ComponentLoader.prototype.show = function (opts) {\n if (opts === void 0) { opts = {}; }\n this._subscribePositioning();\n this._innerComponent = null;\n if (!this._componentRef) {\n this.onBeforeShow.emit();\n this._contentRef = this._getContentRef(opts.content, opts.context, opts.initialState);\n var injector = ReflectiveInjector.resolveAndCreate(this._providers, this._injector);\n this._componentRef = this._componentFactory.create(injector, this._contentRef.nodes);\n this._applicationRef.attachView(this._componentRef.hostView);\n // this._componentRef = this._viewContainerRef\n // .createComponent(this._componentFactory, 0, injector, this._contentRef.nodes);\n this.instance = this._componentRef.instance;\n Object.assign(this._componentRef.instance, opts);\n if (this.container instanceof ElementRef) {\n this.container.nativeElement.appendChild(this._componentRef.location.nativeElement);\n }\n if (this.container === 'body' && typeof document !== 'undefined') {\n document\n .querySelector(this.container)\n .appendChild(this._componentRef.location.nativeElement);\n }\n if (!this.container &&\n this._elementRef &&\n this._elementRef.nativeElement.parentElement) {\n this._elementRef.nativeElement.parentElement.appendChild(this._componentRef.location.nativeElement);\n }\n // we need to manually invoke change detection since events registered\n // via\n // Renderer::listen() are not picked up by change detection with the\n // OnPush strategy\n if (this._contentRef.componentRef) {\n this._innerComponent = this._contentRef.componentRef.instance;\n this._contentRef.componentRef.changeDetectorRef.markForCheck();\n this._contentRef.componentRef.changeDetectorRef.detectChanges();\n }\n this._componentRef.changeDetectorRef.markForCheck();\n this._componentRef.changeDetectorRef.detectChanges();\n this.onShown.emit(this._componentRef.instance);\n }\n this._registerOutsideClick();\n return this._componentRef;\n };\n ComponentLoader.prototype.hide = function () {\n if (!this._componentRef) {\n return this;\n }\n this.onBeforeHide.emit(this._componentRef.instance);\n var componentEl = this._componentRef.location.nativeElement;\n componentEl.parentNode.removeChild(componentEl);\n if (this._contentRef.componentRef) {\n this._contentRef.componentRef.destroy();\n }\n this._componentRef.destroy();\n if (this._viewContainerRef && this._contentRef.viewRef) {\n this._viewContainerRef.remove(this._viewContainerRef.indexOf(this._contentRef.viewRef));\n }\n if (this._contentRef.viewRef) {\n this._contentRef.viewRef.destroy();\n }\n // this._viewContainerRef.remove(this._viewContainerRef.indexOf(this._componentRef.hostView));\n //\n // if (this._contentRef.viewRef && this._viewContainerRef.indexOf(this._contentRef.viewRef) !== -1) {\n // this._viewContainerRef.remove(this._viewContainerRef.indexOf(this._contentRef.viewRef));\n // }\n this._contentRef = null;\n this._componentRef = null;\n this._removeGlobalListener();\n this.onHidden.emit();\n return this;\n };\n ComponentLoader.prototype.toggle = function () {\n if (this.isShown) {\n this.hide();\n return;\n }\n this.show();\n };\n ComponentLoader.prototype.dispose = function () {\n if (this.isShown) {\n this.hide();\n }\n this._unsubscribePositioning();\n if (this._unregisterListenersFn) {\n this._unregisterListenersFn();\n }\n };\n ComponentLoader.prototype.listen = function (listenOpts) {\n var _this = this;\n this.triggers = listenOpts.triggers || this.triggers;\n this._listenOpts.outsideClick = listenOpts.outsideClick;\n listenOpts.target = listenOpts.target || this._elementRef.nativeElement;\n var hide = (this._listenOpts.hide = function () {\n return listenOpts.hide ? listenOpts.hide() : void _this.hide();\n });\n var show = (this._listenOpts.show = function (registerHide) {\n listenOpts.show ? listenOpts.show(registerHide) : _this.show(registerHide);\n registerHide();\n });\n var toggle = function (registerHide) {\n _this.isShown ? hide() : show(registerHide);\n };\n this._unregisterListenersFn = listenToTriggersV2(this._renderer, {\n target: listenOpts.target,\n triggers: listenOpts.triggers,\n show: show,\n hide: hide,\n toggle: toggle\n });\n return this;\n };\n ComponentLoader.prototype._removeGlobalListener = function () {\n if (this._globalListener) {\n this._globalListener();\n this._globalListener = null;\n }\n };\n ComponentLoader.prototype.attachInline = function (vRef, template) {\n this._inlineViewRef = vRef.createEmbeddedView(template);\n return this;\n };\n ComponentLoader.prototype._registerOutsideClick = function () {\n var _this = this;\n if (!this._componentRef || !this._componentRef.location) {\n return;\n }\n // why: should run after first event bubble\n if (this._listenOpts.outsideClick) {\n var target_1 = this._componentRef.location.nativeElement;\n setTimeout(function () {\n _this._globalListener = registerOutsideClick(_this._renderer, {\n targets: [target_1, _this._elementRef.nativeElement],\n outsideClick: _this._listenOpts.outsideClick,\n hide: function () { return _this._listenOpts.hide(); }\n });\n });\n }\n };\n ComponentLoader.prototype.getInnerComponent = function () {\n return this._innerComponent;\n };\n ComponentLoader.prototype._subscribePositioning = function () {\n var _this = this;\n if (this._zoneSubscription || !this.attachment) {\n return;\n }\n this._zoneSubscription = this._ngZone.onStable.subscribe(function () {\n if (!_this._componentRef) {\n return;\n }\n _this._posService.position({\n element: _this._componentRef.location,\n target: _this._elementRef,\n attachment: _this.attachment,\n appendToBody: _this.container === 'body'\n });\n });\n };\n ComponentLoader.prototype._unsubscribePositioning = function () {\n if (!this._zoneSubscription) {\n return;\n }\n this._zoneSubscription.unsubscribe();\n this._zoneSubscription = null;\n };\n ComponentLoader.prototype._getContentRef = function (content, context, initialState) {\n if (!content) {\n return new ContentRef([]);\n }\n if (content instanceof TemplateRef) {\n if (this._viewContainerRef) {\n var _viewRef = this._viewContainerRef\n .createEmbeddedView(content, context);\n _viewRef.markForCheck();\n return new ContentRef([_viewRef.rootNodes], _viewRef);\n }\n var viewRef = content.createEmbeddedView({});\n this._applicationRef.attachView(viewRef);\n return new ContentRef([viewRef.rootNodes], viewRef);\n }\n if (typeof content === 'function') {\n var contentCmptFactory = this._componentFactoryResolver.resolveComponentFactory(content);\n var modalContentInjector = ReflectiveInjector.resolveAndCreate(this._providers.slice(), this._injector);\n var componentRef = contentCmptFactory.create(modalContentInjector);\n Object.assign(componentRef.instance, initialState);\n this._applicationRef.attachView(componentRef.hostView);\n return new ContentRef([[componentRef.location.nativeElement]], componentRef.hostView, componentRef);\n }\n return new ContentRef([[this._renderer.createText(\"\" + content)]]);\n };\n return ComponentLoader;\n}());\nexport { ComponentLoader };\n//# sourceMappingURL=component-loader.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/component-loader/component-loader.class.js\n// module id = 700\n// module chunks = 1","import { Trigger } from './trigger.class';\nvar DEFAULT_ALIASES = {\n hover: ['mouseover', 'mouseout'],\n focus: ['focusin', 'focusout']\n};\nexport function parseTriggers(triggers, aliases) {\n if (aliases === void 0) { aliases = DEFAULT_ALIASES; }\n var trimmedTriggers = (triggers || '').trim();\n if (trimmedTriggers.length === 0) {\n return [];\n }\n var parsedTriggers = trimmedTriggers\n .split(/\\s+/)\n .map(function (trigger) { return trigger.split(':'); })\n .map(function (triggerPair) {\n var alias = aliases[triggerPair[0]] || triggerPair;\n return new Trigger(alias[0], alias[1]);\n });\n var manualTriggers = parsedTriggers.filter(function (triggerPair) {\n return triggerPair.isManual();\n });\n if (manualTriggers.length > 1) {\n throw new Error('Triggers parse error: only one manual trigger is allowed');\n }\n if (manualTriggers.length === 1 && parsedTriggers.length > 1) {\n throw new Error('Triggers parse error: manual trigger can\\'t be mixed with other triggers');\n }\n return parsedTriggers;\n}\nexport function listenToTriggers(renderer, target, triggers, showFn, hideFn, toggleFn) {\n var parsedTriggers = parseTriggers(triggers);\n var listeners = [];\n if (parsedTriggers.length === 1 && parsedTriggers[0].isManual()) {\n return Function.prototype;\n }\n parsedTriggers.forEach(function (trigger) {\n if (trigger.open === trigger.close) {\n listeners.push(renderer.listen(target, trigger.open, toggleFn));\n return;\n }\n listeners.push(renderer.listen(target, trigger.open, showFn), renderer.listen(target, trigger.close, hideFn));\n });\n return function () {\n listeners.forEach(function (unsubscribeFn) { return unsubscribeFn(); });\n };\n}\nexport function listenToTriggersV2(renderer, options) {\n var parsedTriggers = parseTriggers(options.triggers);\n var target = options.target;\n // do nothing\n if (parsedTriggers.length === 1 && parsedTriggers[0].isManual()) {\n return Function.prototype;\n }\n // all listeners\n var listeners = [];\n // lazy listeners registration\n var _registerHide = [];\n var registerHide = function () {\n // add hide listeners to unregister array\n _registerHide.forEach(function (fn) { return listeners.push(fn()); });\n // register hide events only once\n _registerHide.length = 0;\n };\n // register open\\close\\toggle listeners\n parsedTriggers.forEach(function (trigger) {\n var useToggle = trigger.open === trigger.close;\n var showFn = useToggle ? options.toggle : options.show;\n if (!useToggle) {\n _registerHide.push(function () {\n return renderer.listen(target, trigger.close, options.hide);\n });\n }\n listeners.push(renderer.listen(target, trigger.open, function () { return showFn(registerHide); }));\n });\n return function () {\n listeners.forEach(function (unsubscribeFn) { return unsubscribeFn(); });\n };\n}\nexport function registerOutsideClick(renderer, options) {\n if (!options.outsideClick) {\n return Function.prototype;\n }\n return renderer.listen('document', 'click', function (event) {\n if (options.target && options.target.contains(event.target)) {\n return;\n }\n if (options.targets &&\n options.targets.some(function (target) { return target.contains(event.target); })) {\n return;\n }\n options.hide();\n });\n}\n//# sourceMappingURL=triggers.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/utils/triggers.js\n// module id = 701\n// module chunks = 1","/**\n * @copyright Valor Software\n * @copyright Angular ng-bootstrap team\n */\nvar ContentRef = (function () {\n function ContentRef(nodes, viewRef, componentRef) {\n this.nodes = nodes;\n this.viewRef = viewRef;\n this.componentRef = componentRef;\n }\n return ContentRef;\n}());\nexport { ContentRef };\n//# sourceMappingURL=content-ref.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/component-loader/content-ref.class.js\n// module id = 702\n// module chunks = 1","/**\n * @copyright Valor Software\n * @copyright Angular ng-bootstrap team\n */\n// previous version:\n// https://github.com/angular-ui/bootstrap/blob/07c31d0731f7cb068a1932b8e01d2312b796b4ec/src/position/position.js\n// tslint:disable\nvar Positioning = (function () {\n function Positioning() {\n }\n Positioning.prototype.position = function (element, round) {\n if (round === void 0) { round = true; }\n var elPosition;\n var parentOffset = {\n width: 0,\n height: 0,\n top: 0,\n bottom: 0,\n left: 0,\n right: 0\n };\n if (this.getStyle(element, 'position') === 'fixed') {\n var bcRect = element.getBoundingClientRect();\n elPosition = {\n width: bcRect.width,\n height: bcRect.height,\n top: bcRect.top,\n bottom: bcRect.bottom,\n left: bcRect.left,\n right: bcRect.right\n };\n }\n else {\n var offsetParentEl = this.offsetParent(element);\n elPosition = this.offset(element, false);\n if (offsetParentEl !== document.documentElement) {\n parentOffset = this.offset(offsetParentEl, false);\n }\n parentOffset.top += offsetParentEl.clientTop;\n parentOffset.left += offsetParentEl.clientLeft;\n }\n elPosition.top -= parentOffset.top;\n elPosition.bottom -= parentOffset.top;\n elPosition.left -= parentOffset.left;\n elPosition.right -= parentOffset.left;\n if (round) {\n elPosition.top = Math.round(elPosition.top);\n elPosition.bottom = Math.round(elPosition.bottom);\n elPosition.left = Math.round(elPosition.left);\n elPosition.right = Math.round(elPosition.right);\n }\n return elPosition;\n };\n Positioning.prototype.offset = function (element, round) {\n if (round === void 0) { round = true; }\n var elBcr = element.getBoundingClientRect();\n var viewportOffset = {\n top: window.pageYOffset - document.documentElement.clientTop,\n left: window.pageXOffset - document.documentElement.clientLeft\n };\n var elOffset = {\n height: elBcr.height || element.offsetHeight,\n width: elBcr.width || element.offsetWidth,\n top: elBcr.top + viewportOffset.top,\n bottom: elBcr.bottom + viewportOffset.top,\n left: elBcr.left + viewportOffset.left,\n right: elBcr.right + viewportOffset.left\n };\n if (round) {\n elOffset.height = Math.round(elOffset.height);\n elOffset.width = Math.round(elOffset.width);\n elOffset.top = Math.round(elOffset.top);\n elOffset.bottom = Math.round(elOffset.bottom);\n elOffset.left = Math.round(elOffset.left);\n elOffset.right = Math.round(elOffset.right);\n }\n return elOffset;\n };\n Positioning.prototype.positionElements = function (hostElement, targetElement, placement, appendToBody) {\n var hostElPosition = appendToBody\n ? this.offset(hostElement, false)\n : this.position(hostElement, false);\n var targetElStyles = this.getAllStyles(targetElement);\n var shiftWidth = {\n left: hostElPosition.left,\n center: hostElPosition.left +\n hostElPosition.width / 2 -\n targetElement.offsetWidth / 2,\n right: hostElPosition.left + hostElPosition.width\n };\n var shiftHeight = {\n top: hostElPosition.top,\n center: hostElPosition.top +\n hostElPosition.height / 2 -\n targetElement.offsetHeight / 2,\n bottom: hostElPosition.top + hostElPosition.height\n };\n var targetElBCR = targetElement.getBoundingClientRect();\n var placementPrimary = placement.split(' ')[0] || 'top';\n var placementSecondary = placement.split(' ')[1] || 'center';\n var targetElPosition = {\n height: targetElBCR.height || targetElement.offsetHeight,\n width: targetElBCR.width || targetElement.offsetWidth,\n top: 0,\n bottom: targetElBCR.height || targetElement.offsetHeight,\n left: 0,\n right: targetElBCR.width || targetElement.offsetWidth\n };\n if (placementPrimary === 'auto') {\n var newPlacementPrimary = this.autoPosition(targetElPosition, hostElPosition, targetElement, placementSecondary);\n if (!newPlacementPrimary)\n newPlacementPrimary = this.autoPosition(targetElPosition, hostElPosition, targetElement);\n if (newPlacementPrimary)\n placementPrimary = newPlacementPrimary;\n targetElement.classList.add(placementPrimary);\n }\n switch (placementPrimary) {\n case 'top':\n targetElPosition.top =\n hostElPosition.top -\n (targetElement.offsetHeight +\n parseFloat(targetElStyles.marginBottom));\n targetElPosition.bottom +=\n hostElPosition.top - targetElement.offsetHeight;\n targetElPosition.left = shiftWidth[placementSecondary];\n targetElPosition.right += shiftWidth[placementSecondary];\n break;\n case 'bottom':\n targetElPosition.top = shiftHeight[placementPrimary];\n targetElPosition.bottom += shiftHeight[placementPrimary];\n targetElPosition.left = shiftWidth[placementSecondary];\n targetElPosition.right += shiftWidth[placementSecondary];\n break;\n case 'left':\n targetElPosition.top = shiftHeight[placementSecondary];\n targetElPosition.bottom += shiftHeight[placementSecondary];\n targetElPosition.left =\n hostElPosition.left -\n (targetElement.offsetWidth + parseFloat(targetElStyles.marginRight));\n targetElPosition.right +=\n hostElPosition.left - targetElement.offsetWidth;\n break;\n case 'right':\n targetElPosition.top = shiftHeight[placementSecondary];\n targetElPosition.bottom += shiftHeight[placementSecondary];\n targetElPosition.left = shiftWidth[placementPrimary];\n targetElPosition.right += shiftWidth[placementPrimary];\n break;\n }\n targetElPosition.top = Math.round(targetElPosition.top);\n targetElPosition.bottom = Math.round(targetElPosition.bottom);\n targetElPosition.left = Math.round(targetElPosition.left);\n targetElPosition.right = Math.round(targetElPosition.right);\n return targetElPosition;\n };\n Positioning.prototype.autoPosition = function (targetElPosition, hostElPosition, targetElement, preferredPosition) {\n if ((!preferredPosition || preferredPosition === 'right') &&\n targetElPosition.left + hostElPosition.left - targetElement.offsetWidth <\n 0) {\n return 'right';\n }\n else if ((!preferredPosition || preferredPosition === 'top') &&\n targetElPosition.bottom +\n hostElPosition.bottom +\n targetElement.offsetHeight >\n window.innerHeight) {\n return 'top';\n }\n else if ((!preferredPosition || preferredPosition === 'bottom') &&\n targetElPosition.top + hostElPosition.top - targetElement.offsetHeight < 0) {\n return 'bottom';\n }\n else if ((!preferredPosition || preferredPosition === 'left') &&\n targetElPosition.right +\n hostElPosition.right +\n targetElement.offsetWidth >\n window.innerWidth) {\n return 'left';\n }\n return null;\n };\n Positioning.prototype.getAllStyles = function (element) {\n return window.getComputedStyle(element);\n };\n Positioning.prototype.getStyle = function (element, prop) {\n return this.getAllStyles(element)[prop];\n };\n Positioning.prototype.isStaticPositioned = function (element) {\n return (this.getStyle(element, 'position') || 'static') === 'static';\n };\n Positioning.prototype.offsetParent = function (element) {\n var offsetParentEl = element.offsetParent || document.documentElement;\n while (offsetParentEl &&\n offsetParentEl !== document.documentElement &&\n this.isStaticPositioned(offsetParentEl)) {\n offsetParentEl = offsetParentEl.offsetParent;\n }\n return offsetParentEl || document.documentElement;\n };\n return Positioning;\n}());\nexport { Positioning };\nvar positionService = new Positioning();\nexport function positionElements(hostElement, targetElement, placement, appendToBody) {\n var pos = positionService.positionElements(hostElement, targetElement, placement, appendToBody);\n targetElement.style.top = pos.top + \"px\";\n targetElement.style.left = pos.left + \"px\";\n}\n//# sourceMappingURL=ng-positioning.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/positioning/ng-positioning.js\n// module id = 703\n// module chunks = 1","import { Injectable, ElementRef } from '@angular/core';\nimport { positionElements } from './ng-positioning';\nvar PositioningService = (function () {\n function PositioningService() {\n }\n PositioningService.prototype.position = function (options) {\n var element = options.element, target = options.target, attachment = options.attachment, appendToBody = options.appendToBody;\n positionElements(_getHtmlElement(target), _getHtmlElement(element), attachment, appendToBody);\n };\n PositioningService.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n PositioningService.ctorParameters = function () { return []; };\n return PositioningService;\n}());\nexport { PositioningService };\nfunction _getHtmlElement(element) {\n // it means that we got a selector\n if (typeof element === 'string') {\n return document.querySelector(element);\n }\n if (element instanceof ElementRef) {\n return element.nativeElement;\n }\n return element;\n}\n//# sourceMappingURL=positioning.service.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/positioning/positioning.service.js\n// module id = 704\n// module chunks = 1","import { isDevMode } from '@angular/core';\nvar _messagesHash = {};\nvar _hideMsg = typeof console === 'undefined' || !('warn' in console);\nexport function warnOnce(msg) {\n if (!isDevMode() || _hideMsg || msg in _messagesHash) {\n return;\n }\n _messagesHash[msg] = true;\n /*tslint:disable-next-line*/\n console.warn(msg);\n}\n//# sourceMappingURL=warn-once.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/utils/warn-once.js\n// module id = 705\n// module chunks = 1","var __extends = (this && this.__extends) || (function () {\n var extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport { Component, EventEmitter } from '@angular/core';\nimport { BsDatepickerAbstractComponent } from '../../base/bs-datepicker-container';\nimport { BsDatepickerConfig } from '../../bs-datepicker.config';\nimport { BsDatepickerActions } from '../../reducer/bs-datepicker.actions';\nimport { BsDatepickerEffects } from '../../reducer/bs-datepicker.effects';\nimport { BsDatepickerStore } from '../../reducer/bs-datepicker.store';\nvar BsDatepickerContainerComponent = (function (_super) {\n __extends(BsDatepickerContainerComponent, _super);\n function BsDatepickerContainerComponent(_config, _store, _actions, _effects) {\n var _this = _super.call(this) || this;\n _this._config = _config;\n _this._store = _store;\n _this._actions = _actions;\n _this.valueChange = new EventEmitter();\n _this._subs = [];\n _this._effects = _effects;\n return _this;\n }\n Object.defineProperty(BsDatepickerContainerComponent.prototype, \"value\", {\n set: function (value) {\n this._effects.setValue(value);\n },\n enumerable: true,\n configurable: true\n });\n BsDatepickerContainerComponent.prototype.ngOnInit = function () {\n var _this = this;\n this.containerClass = this._config.containerClass;\n this._effects\n .init(this._store)\n .setOptions(this._config)\n .setBindings(this)\n .setEventHandlers(this)\n .registerDatepickerSideEffects();\n // todo: move it somewhere else\n // on selected date change\n this._subs.push(this._store\n .select(function (state) { return state.selectedDate; })\n .subscribe(function (date) { return _this.valueChange.emit(date); }));\n };\n BsDatepickerContainerComponent.prototype.daySelectHandler = function (day) {\n if (day.isOtherMonth || day.isDisabled) {\n return;\n }\n this._store.dispatch(this._actions.select(day.date));\n };\n BsDatepickerContainerComponent.prototype.ngOnDestroy = function () {\n for (var _i = 0, _a = this._subs; _i < _a.length; _i++) {\n var sub = _a[_i];\n sub.unsubscribe();\n }\n this._effects.destroy();\n };\n BsDatepickerContainerComponent.decorators = [\n { type: Component, args: [{\n selector: 'bs-datepicker-container',\n providers: [BsDatepickerStore, BsDatepickerEffects],\n template: \" 1\\\" [calendar]=\\\"calendar\\\" [options]=\\\"options | async\\\" (onNavigate)=\\\"navigateTo($event)\\\" (onViewMode)=\\\"setViewMode($event)\\\" (onHover)=\\\"dayHoverHandler($event)\\\" (onSelect)=\\\"daySelectHandler($event)\\\" >
1\\\" [calendar]=\\\"calendar\\\" (onNavigate)=\\\"navigateTo($event)\\\" (onViewMode)=\\\"setViewMode($event)\\\" (onHover)=\\\"monthHoverHandler($event)\\\" (onSelect)=\\\"monthSelectHandler($event)\\\" >
1\\\" [calendar]=\\\"calendar\\\" (onNavigate)=\\\"navigateTo($event)\\\" (onViewMode)=\\\"setViewMode($event)\\\" (onHover)=\\\"yearHoverHandler($event)\\\" (onSelect)=\\\"yearSelectHandler($event)\\\" >
\",\n host: {\n '(click)': '_stopPropagation($event)',\n style: 'position: absolute; display: block;'\n }\n },] },\n ];\n /** @nocollapse */\n BsDatepickerContainerComponent.ctorParameters = function () { return [\n { type: BsDatepickerConfig, },\n { type: BsDatepickerStore, },\n { type: BsDatepickerActions, },\n { type: BsDatepickerEffects, },\n ]; };\n return BsDatepickerContainerComponent;\n}(BsDatepickerAbstractComponent));\nexport { BsDatepickerContainerComponent };\n//# sourceMappingURL=bs-datepicker-container.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/themes/bs/bs-datepicker-container.component.js\n// module id = 706\n// module chunks = 1","var BsDatepickerAbstractComponent = (function () {\n function BsDatepickerAbstractComponent() {\n this._customRangesFish = [];\n }\n Object.defineProperty(BsDatepickerAbstractComponent.prototype, \"minDate\", {\n set: function (value) {\n this._effects.setMinDate(value);\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsDatepickerAbstractComponent.prototype, \"maxDate\", {\n set: function (value) {\n this._effects.setMaxDate(value);\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsDatepickerAbstractComponent.prototype, \"isDisabled\", {\n set: function (value) {\n this._effects.setDisabled(value);\n },\n enumerable: true,\n configurable: true\n });\n BsDatepickerAbstractComponent.prototype.setViewMode = function (event) { };\n BsDatepickerAbstractComponent.prototype.navigateTo = function (event) { };\n BsDatepickerAbstractComponent.prototype.dayHoverHandler = function (event) { };\n BsDatepickerAbstractComponent.prototype.monthHoverHandler = function (event) { };\n BsDatepickerAbstractComponent.prototype.yearHoverHandler = function (event) { };\n BsDatepickerAbstractComponent.prototype.daySelectHandler = function (day) { };\n BsDatepickerAbstractComponent.prototype.monthSelectHandler = function (event) { };\n BsDatepickerAbstractComponent.prototype.yearSelectHandler = function (event) { };\n BsDatepickerAbstractComponent.prototype._stopPropagation = function (event) {\n event.stopPropagation();\n };\n return BsDatepickerAbstractComponent;\n}());\nexport { BsDatepickerAbstractComponent };\n//# sourceMappingURL=bs-datepicker-container.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/base/bs-datepicker-container.js\n// module id = 707\n// module chunks = 1","var __extends = (this && this.__extends) || (function () {\n var extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @copyright ngrx\n */\nimport { Observable } from 'rxjs/Observable';\nimport { distinctUntilChanged } from 'rxjs/operator/distinctUntilChanged';\nimport { map } from 'rxjs/operator/map';\nvar MiniStore = (function (_super) {\n __extends(MiniStore, _super);\n function MiniStore(_dispatcher, _reducer, state$) {\n var _this = _super.call(this) || this;\n _this._dispatcher = _dispatcher;\n _this._reducer = _reducer;\n _this.source = state$;\n return _this;\n }\n MiniStore.prototype.select = function (pathOrMapFn) {\n var mapped$ = map.call(this, pathOrMapFn);\n return distinctUntilChanged.call(mapped$);\n };\n MiniStore.prototype.lift = function (operator) {\n var store = new MiniStore(this._dispatcher, this._reducer, this);\n store.operator = operator;\n return store;\n };\n MiniStore.prototype.dispatch = function (action) {\n this._dispatcher.next(action);\n };\n MiniStore.prototype.next = function (action) {\n this._dispatcher.next(action);\n };\n MiniStore.prototype.error = function (err) {\n this._dispatcher.error(err);\n };\n MiniStore.prototype.complete = function () {\n /*noop*/\n };\n return MiniStore;\n}(Observable));\nexport { MiniStore };\n//# sourceMappingURL=store.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/mini-ngrx/store.class.js\n// module id = 708\n// module chunks = 1","import { defaultMonthOptions } from './_defaults';\nimport { BsDatepickerConfig } from '../bs-datepicker.config';\nvar BsDatepickerState = (function () {\n function BsDatepickerState() {\n }\n return BsDatepickerState;\n}());\nexport { BsDatepickerState };\nvar _initialView = { date: new Date(), mode: 'day' };\nexport var initialDatepickerState = Object.assign(new BsDatepickerConfig(), {\n locale: 'en',\n view: _initialView,\n selectedRange: [],\n monthViewOptions: defaultMonthOptions\n});\n//# sourceMappingURL=bs-datepicker.state.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/reducer/bs-datepicker.state.js\n// module id = 709\n// module chunks = 1","var __extends = (this && this.__extends) || (function () {\n var extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\n/**\n * @copyright ngrx\n */\nimport { BehaviorSubject } from 'rxjs/BehaviorSubject';\nimport { observeOn } from 'rxjs/operator/observeOn';\nimport { queue } from 'rxjs/scheduler/queue';\nimport { scan } from 'rxjs/operator/scan';\nvar MiniState = (function (_super) {\n __extends(MiniState, _super);\n function MiniState(_initialState, actionsDispatcher$, reducer) {\n var _this = _super.call(this, _initialState) || this;\n var actionInQueue$ = observeOn.call(actionsDispatcher$, queue);\n var state$ = scan.call(actionInQueue$, function (state, action) {\n if (!action) {\n return state;\n }\n return reducer(state, action);\n }, _initialState);\n state$.subscribe(function (value) { return _this.next(value); });\n return _this;\n }\n return MiniState;\n}(BehaviorSubject));\nexport { MiniState };\n//# sourceMappingURL=state.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/mini-ngrx/state.class.js\n// module id = 710\n// module chunks = 1","import { shiftDate } from '../../chronos/utils/date-setters';\nimport { formatDate } from '../../chronos/format';\nimport { createMatrix } from '../utils/matrix-utils';\nvar height = 4;\nvar width = 4;\nexport var yearsPerCalendar = height * width;\nvar initialShift = (Math.floor(yearsPerCalendar / 2) - 1) * -1;\nvar shift = { year: 1 };\nexport function formatYearsCalendar(viewDate, formatOptions) {\n var initialDate = shiftDate(viewDate, { year: initialShift });\n var matrixOptions = { width: width, height: height, initialDate: initialDate, shift: shift };\n var yearsMatrix = createMatrix(matrixOptions, function (date) { return ({\n date: date,\n label: formatDate(date, formatOptions.yearLabel, formatOptions.locale)\n }); });\n var yearTitle = formatYearRangeTitle(yearsMatrix, formatOptions);\n return {\n years: yearsMatrix,\n monthTitle: '',\n yearTitle: yearTitle\n };\n}\nfunction formatYearRangeTitle(yearsMatrix, formatOptions) {\n var from = formatDate(yearsMatrix[0][0].date, formatOptions.yearTitle, formatOptions.locale);\n var to = formatDate(yearsMatrix[height - 1][width - 1].date, formatOptions.yearTitle, formatOptions.locale);\n return from + \" - \" + to;\n}\n//# sourceMappingURL=format-years-calendar.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/engine/format-years-calendar.js\n// module id = 711\n// module chunks = 1","var __extends = (this && this.__extends) || (function () {\n var extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport { Component, EventEmitter } from '@angular/core';\nimport { BsDatepickerAbstractComponent } from '../../base/bs-datepicker-container';\nimport { BsDatepickerConfig } from '../../bs-datepicker.config';\nimport { BsDatepickerActions } from '../../reducer/bs-datepicker.actions';\nimport { BsDatepickerEffects } from '../../reducer/bs-datepicker.effects';\nimport { BsDatepickerStore } from '../../reducer/bs-datepicker.store';\nvar BsDaterangepickerContainerComponent = (function (_super) {\n __extends(BsDaterangepickerContainerComponent, _super);\n function BsDaterangepickerContainerComponent(_config, _store, _actions, _effects) {\n var _this = _super.call(this) || this;\n _this._config = _config;\n _this._store = _store;\n _this._actions = _actions;\n _this.valueChange = new EventEmitter();\n _this._rangeStack = [];\n _this._subs = [];\n _this._effects = _effects;\n return _this;\n }\n Object.defineProperty(BsDaterangepickerContainerComponent.prototype, \"value\", {\n set: function (value) {\n this._effects.setRangeValue(value);\n },\n enumerable: true,\n configurable: true\n });\n BsDaterangepickerContainerComponent.prototype.ngOnInit = function () {\n var _this = this;\n this.containerClass = this._config.containerClass;\n this._effects\n .init(this._store)\n .setOptions(this._config)\n .setBindings(this)\n .setEventHandlers(this)\n .registerDatepickerSideEffects();\n // todo: move it somewhere else\n // on selected date change\n this._subs.push(this._store\n .select(function (state) { return state.selectedRange; })\n .subscribe(function (date) { return _this.valueChange.emit(date); }));\n };\n BsDaterangepickerContainerComponent.prototype.daySelectHandler = function (day) {\n if (day.isOtherMonth || day.isDisabled) {\n return;\n }\n // if only one date is already selected\n // and user clicks on previous date\n // start selection from new date\n // but if new date is after initial one\n // than finish selection\n if (this._rangeStack.length === 1) {\n this._rangeStack =\n day.date >= this._rangeStack[0]\n ? [this._rangeStack[0], day.date]\n : [day.date];\n }\n if (this._rangeStack.length === 0) {\n this._rangeStack = [day.date];\n }\n this._store.dispatch(this._actions.selectRange(this._rangeStack));\n if (this._rangeStack.length === 2) {\n this._rangeStack = [];\n }\n };\n BsDaterangepickerContainerComponent.prototype.ngOnDestroy = function () {\n for (var _i = 0, _a = this._subs; _i < _a.length; _i++) {\n var sub = _a[_i];\n sub.unsubscribe();\n }\n this._effects.destroy();\n };\n BsDaterangepickerContainerComponent.decorators = [\n { type: Component, args: [{\n selector: 'bs-daterangepicker-container',\n providers: [BsDatepickerStore, BsDatepickerEffects],\n template: \" 1\\\" [calendar]=\\\"calendar\\\" [options]=\\\"options | async\\\" (onNavigate)=\\\"navigateTo($event)\\\" (onViewMode)=\\\"setViewMode($event)\\\" (onHover)=\\\"dayHoverHandler($event)\\\" (onSelect)=\\\"daySelectHandler($event)\\\" >
1\\\" [calendar]=\\\"calendar\\\" (onNavigate)=\\\"navigateTo($event)\\\" (onViewMode)=\\\"setViewMode($event)\\\" (onHover)=\\\"monthHoverHandler($event)\\\" (onSelect)=\\\"monthSelectHandler($event)\\\" >
1\\\" [calendar]=\\\"calendar\\\" (onNavigate)=\\\"navigateTo($event)\\\" (onViewMode)=\\\"setViewMode($event)\\\" (onHover)=\\\"yearHoverHandler($event)\\\" (onSelect)=\\\"yearSelectHandler($event)\\\" >
\",\n host: {\n '(click)': '_stopPropagation($event)',\n style: 'position: absolute; display: block;'\n }\n },] },\n ];\n /** @nocollapse */\n BsDaterangepickerContainerComponent.ctorParameters = function () { return [\n { type: BsDatepickerConfig, },\n { type: BsDatepickerStore, },\n { type: BsDatepickerActions, },\n { type: BsDatepickerEffects, },\n ]; };\n return BsDaterangepickerContainerComponent;\n}(BsDatepickerAbstractComponent));\nexport { BsDaterangepickerContainerComponent };\n//# sourceMappingURL=bs-daterangepicker-container.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/datepicker/themes/bs/bs-daterangepicker-container.component.js\n// module id = 712\n// module chunks = 1","import { Injectable } from '@angular/core';\nvar BsModalRef = (function () {\n function BsModalRef() {\n /**\n * Hides the modal\n */\n this.hide = Function;\n }\n BsModalRef.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsModalRef.ctorParameters = function () { return []; };\n return BsModalRef;\n}());\nexport { BsModalRef };\n//# sourceMappingURL=bs-modal-ref.service.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/modal/bs-modal-ref.service.js\n// module id = 713\n// module chunks = 1","/* tslint:disable:max-file-line-count */\n// todo: should we support enforce focus in?\n// todo: in original bs there are was a way to prevent modal from showing\n// todo: original modal had resize events\nimport { Directive, ElementRef, EventEmitter, HostListener, Input, Output, Renderer2, ViewContainerRef } from '@angular/core';\nimport { document, window } from '../utils/facade/browser';\nimport { isBs3 } from '../utils/theme-provider';\nimport { Utils } from '../utils/utils.class';\nimport { ModalBackdropComponent } from './modal-backdrop.component';\nimport { CLASS_NAME, DISMISS_REASONS, modalConfigDefaults } from './modal-options.class';\nimport { ComponentLoaderFactory } from '../component-loader/component-loader.factory';\nvar TRANSITION_DURATION = 300;\nvar BACKDROP_TRANSITION_DURATION = 150;\n/** Mark any code with directive to show it's content in modal */\nvar ModalDirective = (function () {\n function ModalDirective(_element, _viewContainerRef, _renderer, clf) {\n this._element = _element;\n this._renderer = _renderer;\n /** This event fires immediately when the `show` instance method is called. */\n this.onShow = new EventEmitter();\n /** This event is fired when the modal has been made visible to the user\n * (will wait for CSS transitions to complete)\n */\n this.onShown = new EventEmitter();\n /** This event is fired immediately when\n * the hide instance method has been called.\n */\n this.onHide = new EventEmitter();\n /** This event is fired when the modal has finished being\n * hidden from the user (will wait for CSS transitions to complete).\n */\n this.onHidden = new EventEmitter();\n this._isShown = false;\n this.isBodyOverflowing = false;\n this.originalBodyPadding = 0;\n this.scrollbarWidth = 0;\n this.timerHideModal = 0;\n this.timerRmBackDrop = 0;\n this.isNested = false;\n this._backdrop = clf.createLoader(_element, _viewContainerRef, _renderer);\n }\n Object.defineProperty(ModalDirective.prototype, \"config\", {\n get: function () {\n return this._config;\n },\n /** allows to set modal configuration via element property */\n set: function (conf) {\n this._config = this.getConfig(conf);\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ModalDirective.prototype, \"isShown\", {\n get: function () {\n return this._isShown;\n },\n enumerable: true,\n configurable: true\n });\n ModalDirective.prototype.onClick = function (event) {\n if (this.config.ignoreBackdropClick ||\n this.config.backdrop === 'static' ||\n event.target !== this._element.nativeElement) {\n return;\n }\n this.dismissReason = DISMISS_REASONS.BACKRDOP;\n this.hide(event);\n };\n // todo: consider preventing default and stopping propagation\n ModalDirective.prototype.onEsc = function () {\n if (this.config.keyboard) {\n this.dismissReason = DISMISS_REASONS.ESC;\n this.hide();\n }\n };\n ModalDirective.prototype.ngOnDestroy = function () {\n this.config = void 0;\n if (this._isShown) {\n this._isShown = false;\n this.hideModal();\n this._backdrop.dispose();\n }\n };\n ModalDirective.prototype.ngOnInit = function () {\n var _this = this;\n this._config = this._config || this.getConfig();\n setTimeout(function () {\n if (_this._config.show) {\n _this.show();\n }\n }, 0);\n };\n /* Public methods */\n /** Allows to manually toggle modal visibility */\n ModalDirective.prototype.toggle = function () {\n return this._isShown ? this.hide() : this.show();\n };\n /** Allows to manually open modal */\n ModalDirective.prototype.show = function () {\n var _this = this;\n this.dismissReason = null;\n this.onShow.emit(this);\n if (this._isShown) {\n return;\n }\n clearTimeout(this.timerHideModal);\n clearTimeout(this.timerRmBackDrop);\n this._isShown = true;\n this.checkScrollbar();\n this.setScrollbar();\n if (document && document.body) {\n if (document.body.classList.contains(CLASS_NAME.OPEN)) {\n this.isNested = true;\n }\n else {\n this._renderer.addClass(document.body, CLASS_NAME.OPEN);\n }\n }\n this.showBackdrop(function () {\n _this.showElement();\n });\n };\n /** Allows to manually close modal */\n ModalDirective.prototype.hide = function (event) {\n var _this = this;\n if (event) {\n event.preventDefault();\n }\n this.onHide.emit(this);\n // todo: add an option to prevent hiding\n if (!this._isShown) {\n return;\n }\n clearTimeout(this.timerHideModal);\n clearTimeout(this.timerRmBackDrop);\n this._isShown = false;\n this._renderer.removeClass(this._element.nativeElement, CLASS_NAME.IN);\n if (!isBs3()) {\n this._renderer.removeClass(this._element.nativeElement, CLASS_NAME.SHOW);\n }\n // this._addClassIn = false;\n if (this._config.animated) {\n this.timerHideModal = setTimeout(function () { return _this.hideModal(); }, TRANSITION_DURATION);\n }\n else {\n this.hideModal();\n }\n };\n /** Private methods @internal */\n ModalDirective.prototype.getConfig = function (config) {\n return Object.assign({}, modalConfigDefaults, config);\n };\n /**\n * Show dialog\n * @internal\n */\n ModalDirective.prototype.showElement = function () {\n var _this = this;\n // todo: replace this with component loader usage\n if (!this._element.nativeElement.parentNode ||\n this._element.nativeElement.parentNode.nodeType !== Node.ELEMENT_NODE) {\n // don't move modals dom position\n if (document && document.body) {\n document.body.appendChild(this._element.nativeElement);\n }\n }\n this._renderer.setAttribute(this._element.nativeElement, 'aria-hidden', 'false');\n this._renderer.setStyle(this._element.nativeElement, 'display', 'block');\n this._renderer.setProperty(this._element.nativeElement, 'scrollTop', 0);\n if (this._config.animated) {\n Utils.reflow(this._element.nativeElement);\n }\n // this._addClassIn = true;\n this._renderer.addClass(this._element.nativeElement, CLASS_NAME.IN);\n if (!isBs3()) {\n this._renderer.addClass(this._element.nativeElement, CLASS_NAME.SHOW);\n }\n var transitionComplete = function () {\n if (_this._config.focus) {\n _this._element.nativeElement.focus();\n }\n _this.onShown.emit(_this);\n };\n if (this._config.animated) {\n setTimeout(transitionComplete, TRANSITION_DURATION);\n }\n else {\n transitionComplete();\n }\n };\n /** @internal */\n ModalDirective.prototype.hideModal = function () {\n var _this = this;\n this._renderer.setAttribute(this._element.nativeElement, 'aria-hidden', 'true');\n this._renderer.setStyle(this._element.nativeElement, 'display', 'none');\n this.showBackdrop(function () {\n if (!_this.isNested) {\n if (document && document.body) {\n _this._renderer.removeClass(document.body, CLASS_NAME.OPEN);\n }\n _this.resetScrollbar();\n }\n _this.resetAdjustments();\n _this.focusOtherModal();\n _this.onHidden.emit(_this);\n });\n };\n // todo: original show was calling a callback when done, but we can use\n // promise\n /** @internal */\n ModalDirective.prototype.showBackdrop = function (callback) {\n var _this = this;\n if (this._isShown &&\n this.config.backdrop &&\n (!this.backdrop || !this.backdrop.instance.isShown)) {\n this.removeBackdrop();\n this._backdrop\n .attach(ModalBackdropComponent)\n .to('body')\n .show({ isAnimated: this._config.animated });\n this.backdrop = this._backdrop._componentRef;\n if (!callback) {\n return;\n }\n if (!this._config.animated) {\n callback();\n return;\n }\n setTimeout(callback, BACKDROP_TRANSITION_DURATION);\n }\n else if (!this._isShown && this.backdrop) {\n this.backdrop.instance.isShown = false;\n var callbackRemove = function () {\n _this.removeBackdrop();\n if (callback) {\n callback();\n }\n };\n if (this.backdrop.instance.isAnimated) {\n this.timerRmBackDrop = setTimeout(callbackRemove, BACKDROP_TRANSITION_DURATION);\n }\n else {\n callbackRemove();\n }\n }\n else if (callback) {\n callback();\n }\n };\n /** @internal */\n ModalDirective.prototype.removeBackdrop = function () {\n this._backdrop.hide();\n };\n /** Events tricks */\n // no need for it\n // protected setEscapeEvent():void {\n // if (this._isShown && this._config.keyboard) {\n // $(this._element).on(Event.KEYDOWN_DISMISS, (event) => {\n // if (event.which === 27) {\n // this.hide()\n // }\n // })\n //\n // } else if (!this._isShown) {\n // $(this._element).off(Event.KEYDOWN_DISMISS)\n // }\n // }\n // protected setResizeEvent():void {\n // console.log(this.renderer.listenGlobal('', Event.RESIZE));\n // if (this._isShown) {\n // $(window).on(Event.RESIZE, $.proxy(this._handleUpdate, this))\n // } else {\n // $(window).off(Event.RESIZE)\n // }\n // }\n ModalDirective.prototype.focusOtherModal = function () {\n if (this._element.nativeElement.parentElement == null)\n return;\n var otherOpenedModals = this._element.nativeElement.parentElement.querySelectorAll('.in[bsModal]');\n if (!otherOpenedModals.length) {\n return;\n }\n otherOpenedModals[otherOpenedModals.length - 1].focus();\n };\n /** @internal */\n ModalDirective.prototype.resetAdjustments = function () {\n this._renderer.setStyle(this._element.nativeElement, 'paddingLeft', '');\n this._renderer.setStyle(this._element.nativeElement, 'paddingRight', '');\n };\n /** Scroll bar tricks */\n /** @internal */\n ModalDirective.prototype.checkScrollbar = function () {\n this.isBodyOverflowing = document.body.clientWidth < window.innerWidth;\n this.scrollbarWidth = this.getScrollbarWidth();\n };\n ModalDirective.prototype.setScrollbar = function () {\n if (!document) {\n return;\n }\n this.originalBodyPadding = parseInt(window\n .getComputedStyle(document.body)\n .getPropertyValue('padding-right') || 0, 10);\n if (this.isBodyOverflowing) {\n document.body.style.paddingRight = this.originalBodyPadding +\n this.scrollbarWidth + \"px\";\n }\n };\n ModalDirective.prototype.resetScrollbar = function () {\n document.body.style.paddingRight = this.originalBodyPadding + 'px';\n };\n // thx d.walsh\n ModalDirective.prototype.getScrollbarWidth = function () {\n var scrollDiv = this._renderer.createElement('div');\n this._renderer.addClass(scrollDiv, CLASS_NAME.SCROLLBAR_MEASURER);\n this._renderer.appendChild(document.body, scrollDiv);\n var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;\n this._renderer.removeChild(document.body, scrollDiv);\n return scrollbarWidth;\n };\n ModalDirective.decorators = [\n { type: Directive, args: [{\n selector: '[bsModal]',\n exportAs: 'bs-modal'\n },] },\n ];\n /** @nocollapse */\n ModalDirective.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: ViewContainerRef, },\n { type: Renderer2, },\n { type: ComponentLoaderFactory, },\n ]; };\n ModalDirective.propDecorators = {\n 'config': [{ type: Input },],\n 'onShow': [{ type: Output },],\n 'onShown': [{ type: Output },],\n 'onHide': [{ type: Output },],\n 'onHidden': [{ type: Output },],\n 'onClick': [{ type: HostListener, args: ['click', ['$event'],] },],\n 'onEsc': [{ type: HostListener, args: ['keydown.esc',] },],\n };\n return ModalDirective;\n}());\nexport { ModalDirective };\n//# sourceMappingURL=modal.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/modal/modal.directive.js\n// module id = 714\n// module chunks = 1","import { Injectable, EventEmitter, RendererFactory2 } from '@angular/core';\nimport { ComponentLoaderFactory } from '../component-loader/component-loader.factory';\nimport { ModalBackdropComponent } from './modal-backdrop.component';\nimport { ModalContainerComponent } from './modal-container.component';\nimport { CLASS_NAME, modalConfigDefaults, ModalOptions, TRANSITION_DURATIONS } from './modal-options.class';\nimport { BsModalRef } from './bs-modal-ref.service';\nvar BsModalService = (function () {\n function BsModalService(rendererFactory, clf) {\n this.clf = clf;\n // constructor props\n this.config = modalConfigDefaults;\n this.onShow = new EventEmitter();\n this.onShown = new EventEmitter();\n this.onHide = new EventEmitter();\n this.onHidden = new EventEmitter();\n this.isBodyOverflowing = false;\n this.originalBodyPadding = 0;\n this.scrollbarWidth = 0;\n this.modalsCount = 0;\n this.lastDismissReason = '';\n this.loaders = [];\n this._backdropLoader = this.clf.createLoader(null, null, null);\n this._renderer = rendererFactory.createRenderer(null, null);\n }\n /** Shows a modal */\n BsModalService.prototype.show = function (content, config) {\n this.modalsCount++;\n this._createLoaders();\n this.config = Object.assign({}, modalConfigDefaults, config);\n this._showBackdrop();\n this.lastDismissReason = null;\n return this._showModal(content);\n };\n BsModalService.prototype.hide = function (level) {\n var _this = this;\n if (this.modalsCount === 1) {\n this._hideBackdrop();\n this.resetScrollbar();\n }\n this.modalsCount = this.modalsCount >= 1 ? this.modalsCount - 1 : 0;\n setTimeout(function () {\n _this._hideModal(level);\n _this.removeLoaders(level);\n }, this.config.animated ? TRANSITION_DURATIONS.BACKDROP : 0);\n };\n BsModalService.prototype._showBackdrop = function () {\n var isBackdropEnabled = this.config.backdrop || this.config.backdrop === 'static';\n var isBackdropInDOM = !this.backdropRef || !this.backdropRef.instance.isShown;\n if (this.modalsCount === 1) {\n this.removeBackdrop();\n if (isBackdropEnabled && isBackdropInDOM) {\n this._backdropLoader\n .attach(ModalBackdropComponent)\n .to('body')\n .show({ isAnimated: this.config.animated });\n this.backdropRef = this._backdropLoader._componentRef;\n }\n }\n };\n BsModalService.prototype._hideBackdrop = function () {\n var _this = this;\n if (!this.backdropRef) {\n return;\n }\n this.backdropRef.instance.isShown = false;\n var duration = this.config.animated ? TRANSITION_DURATIONS.BACKDROP : 0;\n setTimeout(function () { return _this.removeBackdrop(); }, duration);\n };\n BsModalService.prototype._showModal = function (content) {\n var modalLoader = this.loaders[this.loaders.length - 1];\n var bsModalRef = new BsModalRef();\n var modalContainerRef = modalLoader\n .provide({ provide: ModalOptions, useValue: this.config })\n .provide({ provide: BsModalRef, useValue: bsModalRef })\n .attach(ModalContainerComponent)\n .to('body')\n .show({ content: content, isAnimated: this.config.animated, initialState: this.config.initialState, bsModalService: this });\n modalContainerRef.instance.level = this.getModalsCount();\n bsModalRef.hide = function () {\n modalContainerRef.instance.hide();\n };\n bsModalRef.content = modalLoader.getInnerComponent() || null;\n return bsModalRef;\n };\n BsModalService.prototype._hideModal = function (level) {\n var modalLoader = this.loaders[level - 1];\n if (modalLoader) {\n modalLoader.hide();\n }\n };\n BsModalService.prototype.getModalsCount = function () {\n return this.modalsCount;\n };\n BsModalService.prototype.setDismissReason = function (reason) {\n this.lastDismissReason = reason;\n };\n BsModalService.prototype.removeBackdrop = function () {\n this._backdropLoader.hide();\n this.backdropRef = null;\n };\n /** AFTER PR MERGE MODAL.COMPONENT WILL BE USING THIS CODE */\n /** Scroll bar tricks */\n /** @internal */\n BsModalService.prototype.checkScrollbar = function () {\n this.isBodyOverflowing = document.body.clientWidth < window.innerWidth;\n this.scrollbarWidth = this.getScrollbarWidth();\n };\n BsModalService.prototype.setScrollbar = function () {\n if (!document) {\n return;\n }\n this.originalBodyPadding = parseInt(window\n .getComputedStyle(document.body)\n .getPropertyValue('padding-right') || '0', 10);\n if (this.isBodyOverflowing) {\n document.body.style.paddingRight = this.originalBodyPadding +\n this.scrollbarWidth + \"px\";\n }\n };\n BsModalService.prototype.resetScrollbar = function () {\n document.body.style.paddingRight = this.originalBodyPadding + \"px\";\n };\n // thx d.walsh\n BsModalService.prototype.getScrollbarWidth = function () {\n var scrollDiv = this._renderer.createElement('div');\n this._renderer.addClass(scrollDiv, CLASS_NAME.SCROLLBAR_MEASURER);\n this._renderer.appendChild(document.body, scrollDiv);\n var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;\n this._renderer.removeChild(document.body, scrollDiv);\n return scrollbarWidth;\n };\n BsModalService.prototype._createLoaders = function () {\n var loader = this.clf.createLoader(null, null, null);\n this.copyEvent(loader.onBeforeShow, this.onShow);\n this.copyEvent(loader.onShown, this.onShown);\n this.copyEvent(loader.onBeforeHide, this.onHide);\n this.copyEvent(loader.onHidden, this.onHidden);\n this.loaders.push(loader);\n };\n BsModalService.prototype.removeLoaders = function (level) {\n this.loaders.splice(level - 1, 1);\n this.loaders.forEach(function (loader, i) {\n loader.instance.level = i + 1;\n });\n };\n BsModalService.prototype.copyEvent = function (from, to) {\n var _this = this;\n from.subscribe(function () {\n to.emit(_this.lastDismissReason);\n });\n };\n BsModalService.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n BsModalService.ctorParameters = function () { return [\n { type: RendererFactory2, },\n { type: ComponentLoaderFactory, },\n ]; };\n return BsModalService;\n}());\nexport { BsModalService };\n//# sourceMappingURL=bs-modal.service.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/modal/bs-modal.service.js\n// module id = 715\n// module chunks = 1","// tslint:disable:max-file-line-count\nimport { Directive, ElementRef, Input, Output, Renderer2, ViewContainerRef } from '@angular/core';\nimport 'rxjs/add/operator/filter';\nimport { ComponentLoaderFactory } from '../component-loader/index';\nimport { BsDropdownConfig } from './bs-dropdown.config';\nimport { BsDropdownContainerComponent } from './bs-dropdown-container.component';\nimport { BsDropdownState } from './bs-dropdown.state';\nimport { isBs3 } from '../utils/theme-provider';\nvar BsDropdownDirective = (function () {\n function BsDropdownDirective(_elementRef, _renderer, _viewContainerRef, _cis, _config, _state) {\n this._elementRef = _elementRef;\n this._renderer = _renderer;\n this._viewContainerRef = _viewContainerRef;\n this._cis = _cis;\n this._config = _config;\n this._state = _state;\n // todo: move to component loader\n this._isInlineOpen = false;\n this._subscriptions = [];\n this._isInited = false;\n // set initial dropdown state from config\n this._state.autoClose = this._config.autoClose;\n // create dropdown component loader\n this._dropdown = this._cis\n .createLoader(this._elementRef, this._viewContainerRef, this._renderer)\n .provide({ provide: BsDropdownState, useValue: this._state });\n this.onShown = this._dropdown.onShown;\n this.onHidden = this._dropdown.onHidden;\n this.isOpenChange = this._state.isOpenChange;\n }\n Object.defineProperty(BsDropdownDirective.prototype, \"autoClose\", {\n get: function () {\n return this._state.autoClose;\n },\n /**\n * Indicates that dropdown will be closed on item or document click,\n * and after pressing ESC\n */\n set: function (value) {\n this._state.autoClose = value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsDropdownDirective.prototype, \"isDisabled\", {\n get: function () {\n return this._isDisabled;\n },\n /**\n * Disables dropdown toggle and hides dropdown menu if opened\n */\n set: function (value) {\n this._isDisabled = value;\n this._state.isDisabledChange.emit(value);\n if (value) {\n this.hide();\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsDropdownDirective.prototype, \"isOpen\", {\n /**\n * Returns whether or not the popover is currently being shown\n */\n get: function () {\n if (this._showInline) {\n return this._isInlineOpen;\n }\n return this._dropdown.isShown;\n },\n set: function (value) {\n if (value) {\n this.show();\n }\n else {\n this.hide();\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsDropdownDirective.prototype, \"isBs4\", {\n get: function () {\n return !isBs3();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BsDropdownDirective.prototype, \"_showInline\", {\n get: function () {\n return !this.container;\n },\n enumerable: true,\n configurable: true\n });\n BsDropdownDirective.prototype.ngOnInit = function () {\n var _this = this;\n // fix: seems there are an issue with `routerLinkActive`\n // which result in duplicated call ngOnInit without call to ngOnDestroy\n // read more: https://github.com/valor-software/ngx-bootstrap/issues/1885\n if (this._isInited) {\n return;\n }\n this._isInited = true;\n // attach DOM listeners\n this._dropdown.listen({\n // because of dropdown inline mode\n outsideClick: false,\n triggers: this.triggers,\n show: function () { return _this.show(); }\n });\n // toggle visibility on toggle element click\n this._subscriptions.push(this._state.toggleClick.subscribe(function (value) { return _this.toggle(value); }));\n // hide dropdown if set disabled while opened\n this._subscriptions.push(this._state.isDisabledChange\n .filter(function (value) { return value; })\n .subscribe(function (value) { return _this.hide(); }));\n };\n /**\n * Opens an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n BsDropdownDirective.prototype.show = function () {\n var _this = this;\n if (this.isOpen || this.isDisabled) {\n return;\n }\n if (this._showInline) {\n if (!this._inlinedMenu) {\n this._state.dropdownMenu.then(function (dropdownMenu) {\n _this._dropdown.attachInline(dropdownMenu.viewContainer, dropdownMenu.templateRef);\n _this._inlinedMenu = _this._dropdown._inlineViewRef;\n _this.addBs4Polyfills();\n })\n .catch();\n }\n this.addBs4Polyfills();\n this._isInlineOpen = true;\n this.onShown.emit(true);\n this._state.isOpenChange.emit(true);\n return;\n }\n this._state.dropdownMenu.then(function (dropdownMenu) {\n // check direction in which dropdown should be opened\n var _dropup = _this.dropup ||\n (typeof _this.dropup !== 'undefined' && _this.dropup);\n _this._state.direction = _dropup ? 'up' : 'down';\n var _placement = _this.placement || (_dropup ? 'top left' : 'bottom left');\n // show dropdown\n _this._dropdown\n .attach(BsDropdownContainerComponent)\n .to(_this.container)\n .position({ attachment: _placement })\n .show({\n content: dropdownMenu.templateRef,\n placement: _placement\n });\n _this._state.isOpenChange.emit(true);\n })\n .catch();\n };\n /**\n * Closes an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n BsDropdownDirective.prototype.hide = function () {\n if (!this.isOpen) {\n return;\n }\n if (this._showInline) {\n this.removeShowClass();\n this.removeDropupStyles();\n this._isInlineOpen = false;\n this.onHidden.emit(true);\n }\n else {\n this._dropdown.hide();\n }\n this._state.isOpenChange.emit(false);\n };\n /**\n * Toggles an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n BsDropdownDirective.prototype.toggle = function (value) {\n if (this.isOpen || !value) {\n return this.hide();\n }\n return this.show();\n };\n BsDropdownDirective.prototype.ngOnDestroy = function () {\n // clean up subscriptions and destroy dropdown\n for (var _i = 0, _a = this._subscriptions; _i < _a.length; _i++) {\n var sub = _a[_i];\n sub.unsubscribe();\n }\n this._dropdown.dispose();\n };\n BsDropdownDirective.prototype.addBs4Polyfills = function () {\n if (!isBs3()) {\n this.addShowClass();\n this.checkRightAlignment();\n this.addDropupStyles();\n }\n };\n BsDropdownDirective.prototype.addShowClass = function () {\n if (this._inlinedMenu && this._inlinedMenu.rootNodes[0]) {\n this._renderer.addClass(this._inlinedMenu.rootNodes[0], 'show');\n }\n };\n BsDropdownDirective.prototype.removeShowClass = function () {\n if (this._inlinedMenu && this._inlinedMenu.rootNodes[0]) {\n this._renderer.removeClass(this._inlinedMenu.rootNodes[0], 'show');\n }\n };\n BsDropdownDirective.prototype.checkRightAlignment = function () {\n if (this._inlinedMenu && this._inlinedMenu.rootNodes[0]) {\n var isRightAligned = this._inlinedMenu.rootNodes[0].classList.contains('dropdown-menu-right');\n this._renderer.setStyle(this._inlinedMenu.rootNodes[0], 'left', isRightAligned ? 'auto' : '0');\n this._renderer.setStyle(this._inlinedMenu.rootNodes[0], 'right', isRightAligned ? '0' : 'auto');\n }\n };\n BsDropdownDirective.prototype.addDropupStyles = function () {\n if (this._inlinedMenu && this._inlinedMenu.rootNodes[0]) {\n // a little hack to not break support of bootstrap 4 beta\n this._renderer.setStyle(this._inlinedMenu.rootNodes[0], 'top', this.dropup ? 'auto' : '100%');\n this._renderer.setStyle(this._inlinedMenu.rootNodes[0], 'transform', this.dropup ? 'translateY(-101%)' : 'translateY(0)');\n }\n };\n BsDropdownDirective.prototype.removeDropupStyles = function () {\n if (this._inlinedMenu && this._inlinedMenu.rootNodes[0]) {\n this._renderer.removeStyle(this._inlinedMenu.rootNodes[0], 'top');\n this._renderer.removeStyle(this._inlinedMenu.rootNodes[0], 'transform');\n }\n };\n BsDropdownDirective.decorators = [\n { type: Directive, args: [{\n selector: '[bsDropdown],[dropdown]',\n exportAs: 'bs-dropdown',\n providers: [BsDropdownState],\n host: {\n '[class.dropup]': 'dropup',\n '[class.open]': 'isOpen',\n '[class.show]': 'isOpen && isBs4'\n }\n },] },\n ];\n /** @nocollapse */\n BsDropdownDirective.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Renderer2, },\n { type: ViewContainerRef, },\n { type: ComponentLoaderFactory, },\n { type: BsDropdownConfig, },\n { type: BsDropdownState, },\n ]; };\n BsDropdownDirective.propDecorators = {\n 'placement': [{ type: Input },],\n 'triggers': [{ type: Input },],\n 'container': [{ type: Input },],\n 'dropup': [{ type: Input },],\n 'autoClose': [{ type: Input },],\n 'isDisabled': [{ type: Input },],\n 'isOpen': [{ type: Input },],\n 'isOpenChange': [{ type: Output },],\n 'onShown': [{ type: Output },],\n 'onHidden': [{ type: Output },],\n };\n return BsDropdownDirective;\n}());\nexport { BsDropdownDirective };\n//# sourceMappingURL=bs-dropdown.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/dropdown/bs-dropdown.directive.js\n// module id = 716\n// module chunks = 1","import { Directive, TemplateRef, ViewContainerRef } from '@angular/core';\nimport { BsDropdownState } from './bs-dropdown.state';\nvar BsDropdownMenuDirective = (function () {\n function BsDropdownMenuDirective(_state, _viewContainer, _templateRef) {\n _state.resolveDropdownMenu({\n templateRef: _templateRef,\n viewContainer: _viewContainer\n });\n }\n BsDropdownMenuDirective.decorators = [\n { type: Directive, args: [{\n selector: '[bsDropdownMenu],[dropdownMenu]',\n exportAs: 'bs-dropdown-menu'\n },] },\n ];\n /** @nocollapse */\n BsDropdownMenuDirective.ctorParameters = function () { return [\n { type: BsDropdownState, },\n { type: ViewContainerRef, },\n { type: TemplateRef, },\n ]; };\n return BsDropdownMenuDirective;\n}());\nexport { BsDropdownMenuDirective };\n//# sourceMappingURL=bs-dropdown-menu.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/dropdown/bs-dropdown-menu.directive.js\n// module id = 717\n// module chunks = 1","import { Directive, ElementRef, HostBinding, HostListener } from '@angular/core';\nimport { BsDropdownState } from './bs-dropdown.state';\nvar BsDropdownToggleDirective = (function () {\n function BsDropdownToggleDirective(_state, _element) {\n var _this = this;\n this._state = _state;\n this._element = _element;\n this.isDisabled = null;\n this._subscriptions = [];\n // sync is open value with state\n this._subscriptions.push(this._state.isOpenChange.subscribe(function (value) { return (_this.isOpen = value); }));\n // populate disabled state\n this._subscriptions.push(this._state.isDisabledChange.subscribe(function (value) { return (_this.isDisabled = value || null); }));\n }\n BsDropdownToggleDirective.prototype.onClick = function () {\n if (this.isDisabled) {\n return;\n }\n this._state.toggleClick.emit(true);\n };\n BsDropdownToggleDirective.prototype.onDocumentClick = function (event) {\n if (this._state.autoClose &&\n event.button !== 2 &&\n !this._element.nativeElement.contains(event.target)) {\n this._state.toggleClick.emit(false);\n }\n };\n BsDropdownToggleDirective.prototype.onEsc = function () {\n if (this._state.autoClose) {\n this._state.toggleClick.emit(false);\n }\n };\n BsDropdownToggleDirective.prototype.ngOnDestroy = function () {\n for (var _i = 0, _a = this._subscriptions; _i < _a.length; _i++) {\n var sub = _a[_i];\n sub.unsubscribe();\n }\n };\n BsDropdownToggleDirective.decorators = [\n { type: Directive, args: [{\n selector: '[bsDropdownToggle],[dropdownToggle]',\n exportAs: 'bs-dropdown-toggle',\n host: {\n '[attr.aria-haspopup]': 'true'\n }\n },] },\n ];\n /** @nocollapse */\n BsDropdownToggleDirective.ctorParameters = function () { return [\n { type: BsDropdownState, },\n { type: ElementRef, },\n ]; };\n BsDropdownToggleDirective.propDecorators = {\n 'isDisabled': [{ type: HostBinding, args: ['attr.disabled',] },],\n 'isOpen': [{ type: HostBinding, args: ['attr.aria-expanded',] },],\n 'onClick': [{ type: HostListener, args: ['click', [],] },],\n 'onDocumentClick': [{ type: HostListener, args: ['document:click', ['$event'],] },],\n 'onEsc': [{ type: HostListener, args: ['keyup.esc',] },],\n };\n return BsDropdownToggleDirective;\n}());\nexport { BsDropdownToggleDirective };\n//# sourceMappingURL=bs-dropdown-toggle.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/dropdown/bs-dropdown-toggle.directive.js\n// module id = 718\n// module chunks = 1","import { Component, ElementRef, Renderer2, Input, Output, EventEmitter, forwardRef, ChangeDetectorRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { PaginationConfig } from './pagination.config';\nexport var PAGER_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n // tslint:disable-next-line\n useExisting: forwardRef(function () { return PagerComponent; }),\n multi: true\n};\nvar PagerComponent = (function () {\n function PagerComponent(renderer, elementRef, paginationConfig, changeDetection) {\n this.renderer = renderer;\n this.elementRef = elementRef;\n this.changeDetection = changeDetection;\n /** fired when total pages count changes, $event:number equals to total pages count */\n this.numPages = new EventEmitter();\n /** fired when page was changed, $event:{page, itemsPerPage} equals to\n * object with current page index and number of items per page\n */\n this.pageChanged = new EventEmitter();\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n this.inited = false;\n this._page = 1;\n this.renderer = renderer;\n this.elementRef = elementRef;\n if (!this.config) {\n this.configureOptions(Object.assign({}, paginationConfig.main, paginationConfig.pager));\n }\n }\n Object.defineProperty(PagerComponent.prototype, \"itemsPerPage\", {\n /** maximum number of items per page. If value less than 1 will display all items on one page */\n get: function () {\n return this._itemsPerPage;\n },\n set: function (v) {\n this._itemsPerPage = v;\n this.totalPages = this.calculateTotalPages();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PagerComponent.prototype, \"totalItems\", {\n /** total number of items in all pages */\n get: function () {\n return this._totalItems;\n },\n set: function (v) {\n this._totalItems = v;\n this.totalPages = this.calculateTotalPages();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PagerComponent.prototype, \"totalPages\", {\n get: function () {\n return this._totalPages;\n },\n set: function (v) {\n this._totalPages = v;\n this.numPages.emit(v);\n if (this.inited) {\n this.selectPage(this.page);\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PagerComponent.prototype, \"page\", {\n get: function () {\n return this._page;\n },\n set: function (value) {\n var _previous = this._page;\n this._page = value > this.totalPages ? this.totalPages : value || 1;\n this.changeDetection.markForCheck();\n if (_previous === this._page || typeof _previous === 'undefined') {\n return;\n }\n this.pageChanged.emit({\n page: this._page,\n itemsPerPage: this.itemsPerPage\n });\n },\n enumerable: true,\n configurable: true\n });\n PagerComponent.prototype.configureOptions = function (config) {\n this.config = Object.assign({}, config);\n };\n PagerComponent.prototype.ngOnInit = function () {\n if (typeof window !== 'undefined') {\n this.classMap = this.elementRef.nativeElement.getAttribute('class') || '';\n }\n // watch for maxSize\n this.maxSize =\n typeof this.maxSize !== 'undefined' ? this.maxSize : this.config.maxSize;\n this.rotate =\n typeof this.rotate !== 'undefined' ? this.rotate : this.config.rotate;\n this.boundaryLinks =\n typeof this.boundaryLinks !== 'undefined'\n ? this.boundaryLinks\n : this.config.boundaryLinks;\n this.directionLinks =\n typeof this.directionLinks !== 'undefined'\n ? this.directionLinks\n : this.config.directionLinks;\n this.pageBtnClass =\n typeof this.pageBtnClass !== 'undefined'\n ? this.pageBtnClass\n : this.config.pageBtnClass;\n // base class\n this.itemsPerPage =\n typeof this.itemsPerPage !== 'undefined'\n ? this.itemsPerPage\n : this.config.itemsPerPage;\n this.totalPages = this.calculateTotalPages();\n // this class\n this.pages = this.getPages(this.page, this.totalPages);\n this.inited = true;\n };\n PagerComponent.prototype.writeValue = function (value) {\n this.page = value;\n this.pages = this.getPages(this.page, this.totalPages);\n };\n PagerComponent.prototype.getText = function (key) {\n return this[key + \"Text\"] || this.config[key + \"Text\"];\n };\n PagerComponent.prototype.noPrevious = function () {\n return this.page === 1;\n };\n PagerComponent.prototype.noNext = function () {\n return this.page === this.totalPages;\n };\n PagerComponent.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n PagerComponent.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n PagerComponent.prototype.selectPage = function (page, event) {\n if (event) {\n event.preventDefault();\n }\n if (!this.disabled) {\n if (event && event.target) {\n var target = event.target;\n target.blur();\n }\n this.writeValue(page);\n this.onChange(this.page);\n }\n };\n // Create page object used in template\n PagerComponent.prototype.makePage = function (num, text, active) {\n return { text: text, number: num, active: active };\n };\n PagerComponent.prototype.getPages = function (currentPage, totalPages) {\n var pages = [];\n // Default page limits\n var startPage = 1;\n var endPage = totalPages;\n var isMaxSized = typeof this.maxSize !== 'undefined' && this.maxSize < totalPages;\n // recompute if maxSize\n if (isMaxSized) {\n if (this.rotate) {\n // Current page is displayed in the middle of the visible ones\n startPage = Math.max(currentPage - Math.floor(this.maxSize / 2), 1);\n endPage = startPage + this.maxSize - 1;\n // Adjust if limit is exceeded\n if (endPage > totalPages) {\n endPage = totalPages;\n startPage = endPage - this.maxSize + 1;\n }\n }\n else {\n // Visible pages are paginated with maxSize\n startPage =\n (Math.ceil(currentPage / this.maxSize) - 1) * this.maxSize + 1;\n // Adjust last page if limit is exceeded\n endPage = Math.min(startPage + this.maxSize - 1, totalPages);\n }\n }\n // Add page number links\n for (var num = startPage; num <= endPage; num++) {\n var page = this.makePage(num, num.toString(), num === currentPage);\n pages.push(page);\n }\n // Add links to move between page sets\n if (isMaxSized && !this.rotate) {\n if (startPage > 1) {\n var previousPageSet = this.makePage(startPage - 1, '...', false);\n pages.unshift(previousPageSet);\n }\n if (endPage < totalPages) {\n var nextPageSet = this.makePage(endPage + 1, '...', false);\n pages.push(nextPageSet);\n }\n }\n return pages;\n };\n // base class\n PagerComponent.prototype.calculateTotalPages = function () {\n var totalPages = this.itemsPerPage < 1\n ? 1\n : Math.ceil(this.totalItems / this.itemsPerPage);\n return Math.max(totalPages || 0, 1);\n };\n PagerComponent.decorators = [\n { type: Component, args: [{\n selector: 'pager',\n template: \" \",\n providers: [PAGER_CONTROL_VALUE_ACCESSOR]\n },] },\n ];\n /** @nocollapse */\n PagerComponent.ctorParameters = function () { return [\n { type: Renderer2, },\n { type: ElementRef, },\n { type: PaginationConfig, },\n { type: ChangeDetectorRef, },\n ]; };\n PagerComponent.propDecorators = {\n 'align': [{ type: Input },],\n 'maxSize': [{ type: Input },],\n 'boundaryLinks': [{ type: Input },],\n 'directionLinks': [{ type: Input },],\n 'firstText': [{ type: Input },],\n 'previousText': [{ type: Input },],\n 'nextText': [{ type: Input },],\n 'lastText': [{ type: Input },],\n 'rotate': [{ type: Input },],\n 'pageBtnClass': [{ type: Input },],\n 'disabled': [{ type: Input },],\n 'numPages': [{ type: Output },],\n 'pageChanged': [{ type: Output },],\n 'itemsPerPage': [{ type: Input },],\n 'totalItems': [{ type: Input },],\n };\n return PagerComponent;\n}());\nexport { PagerComponent };\n//# sourceMappingURL=pager.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/pagination/pager.component.js\n// module id = 719\n// module chunks = 1","import { Component, ElementRef, EventEmitter, Input, Output, Renderer2, forwardRef, ChangeDetectorRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { PaginationConfig } from './pagination.config';\nexport var PAGINATION_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n // tslint:disable-next-line\n useExisting: forwardRef(function () { return PaginationComponent; }),\n multi: true\n};\nvar PaginationComponent = (function () {\n function PaginationComponent(renderer, elementRef, paginationConfig, changeDetection) {\n this.renderer = renderer;\n this.elementRef = elementRef;\n this.changeDetection = changeDetection;\n /** fired when total pages count changes, $event:number equals to total pages count */\n this.numPages = new EventEmitter();\n /** fired when page was changed, $event:{page, itemsPerPage} equals to object\n * with current page index and number of items per page\n */\n this.pageChanged = new EventEmitter();\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n this.inited = false;\n this._page = 1;\n this.renderer = renderer;\n this.elementRef = elementRef;\n if (!this.config) {\n this.configureOptions(paginationConfig.main);\n }\n }\n Object.defineProperty(PaginationComponent.prototype, \"itemsPerPage\", {\n /** maximum number of items per page. If value less than 1 will display all items on one page */\n get: function () {\n return this._itemsPerPage;\n },\n set: function (v) {\n this._itemsPerPage = v;\n this.totalPages = this.calculateTotalPages();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PaginationComponent.prototype, \"totalItems\", {\n /** total number of items in all pages */\n get: function () {\n return this._totalItems;\n },\n set: function (v) {\n this._totalItems = v;\n this.totalPages = this.calculateTotalPages();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PaginationComponent.prototype, \"totalPages\", {\n get: function () {\n return this._totalPages;\n },\n set: function (v) {\n this._totalPages = v;\n this.numPages.emit(v);\n if (this.inited) {\n this.selectPage(this.page);\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(PaginationComponent.prototype, \"page\", {\n get: function () {\n return this._page;\n },\n set: function (value) {\n var _previous = this._page;\n this._page = value > this.totalPages ? this.totalPages : value || 1;\n this.changeDetection.markForCheck();\n if (_previous === this._page || typeof _previous === 'undefined') {\n return;\n }\n this.pageChanged.emit({\n page: this._page,\n itemsPerPage: this.itemsPerPage\n });\n },\n enumerable: true,\n configurable: true\n });\n PaginationComponent.prototype.configureOptions = function (config) {\n this.config = Object.assign({}, config);\n };\n PaginationComponent.prototype.ngOnInit = function () {\n if (typeof window !== 'undefined') {\n this.classMap = this.elementRef.nativeElement.getAttribute('class') || '';\n }\n // watch for maxSize\n this.maxSize =\n typeof this.maxSize !== 'undefined' ? this.maxSize : this.config.maxSize;\n this.rotate =\n typeof this.rotate !== 'undefined' ? this.rotate : this.config.rotate;\n this.boundaryLinks =\n typeof this.boundaryLinks !== 'undefined'\n ? this.boundaryLinks\n : this.config.boundaryLinks;\n this.directionLinks =\n typeof this.directionLinks !== 'undefined'\n ? this.directionLinks\n : this.config.directionLinks;\n this.pageBtnClass =\n typeof this.pageBtnClass !== 'undefined'\n ? this.pageBtnClass\n : this.config.pageBtnClass;\n // base class\n this.itemsPerPage =\n typeof this.itemsPerPage !== 'undefined'\n ? this.itemsPerPage\n : this.config.itemsPerPage;\n this.totalPages = this.calculateTotalPages();\n // this class\n this.pages = this.getPages(this.page, this.totalPages);\n this.inited = true;\n };\n PaginationComponent.prototype.writeValue = function (value) {\n this.page = value;\n this.pages = this.getPages(this.page, this.totalPages);\n };\n PaginationComponent.prototype.getText = function (key) {\n return this[key + \"Text\"] || this.config[key + \"Text\"];\n };\n PaginationComponent.prototype.noPrevious = function () {\n return this.page === 1;\n };\n PaginationComponent.prototype.noNext = function () {\n return this.page === this.totalPages;\n };\n PaginationComponent.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n PaginationComponent.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n PaginationComponent.prototype.selectPage = function (page, event) {\n if (event) {\n event.preventDefault();\n }\n if (!this.disabled) {\n if (event && event.target) {\n var target = event.target;\n target.blur();\n }\n this.writeValue(page);\n this.onChange(this.page);\n }\n };\n // Create page object used in template\n PaginationComponent.prototype.makePage = function (num, text, active) {\n return { text: text, number: num, active: active };\n };\n PaginationComponent.prototype.getPages = function (currentPage, totalPages) {\n var pages = [];\n // Default page limits\n var startPage = 1;\n var endPage = totalPages;\n var isMaxSized = typeof this.maxSize !== 'undefined' && this.maxSize < totalPages;\n // recompute if maxSize\n if (isMaxSized) {\n if (this.rotate) {\n // Current page is displayed in the middle of the visible ones\n startPage = Math.max(currentPage - Math.floor(this.maxSize / 2), 1);\n endPage = startPage + this.maxSize - 1;\n // Adjust if limit is exceeded\n if (endPage > totalPages) {\n endPage = totalPages;\n startPage = endPage - this.maxSize + 1;\n }\n }\n else {\n // Visible pages are paginated with maxSize\n startPage =\n (Math.ceil(currentPage / this.maxSize) - 1) * this.maxSize + 1;\n // Adjust last page if limit is exceeded\n endPage = Math.min(startPage + this.maxSize - 1, totalPages);\n }\n }\n // Add page number links\n for (var num = startPage; num <= endPage; num++) {\n var page = this.makePage(num, num.toString(), num === currentPage);\n pages.push(page);\n }\n // Add links to move between page sets\n if (isMaxSized && !this.rotate) {\n if (startPage > 1) {\n var previousPageSet = this.makePage(startPage - 1, '...', false);\n pages.unshift(previousPageSet);\n }\n if (endPage < totalPages) {\n var nextPageSet = this.makePage(endPage + 1, '...', false);\n pages.push(nextPageSet);\n }\n }\n return pages;\n };\n // base class\n PaginationComponent.prototype.calculateTotalPages = function () {\n var totalPages = this.itemsPerPage < 1\n ? 1\n : Math.ceil(this.totalItems / this.itemsPerPage);\n return Math.max(totalPages || 0, 1);\n };\n PaginationComponent.decorators = [\n { type: Component, args: [{\n selector: 'pagination',\n template: \" \",\n providers: [PAGINATION_CONTROL_VALUE_ACCESSOR]\n },] },\n ];\n /** @nocollapse */\n PaginationComponent.ctorParameters = function () { return [\n { type: Renderer2, },\n { type: ElementRef, },\n { type: PaginationConfig, },\n { type: ChangeDetectorRef, },\n ]; };\n PaginationComponent.propDecorators = {\n 'align': [{ type: Input },],\n 'maxSize': [{ type: Input },],\n 'boundaryLinks': [{ type: Input },],\n 'directionLinks': [{ type: Input },],\n 'firstText': [{ type: Input },],\n 'previousText': [{ type: Input },],\n 'nextText': [{ type: Input },],\n 'lastText': [{ type: Input },],\n 'rotate': [{ type: Input },],\n 'pageBtnClass': [{ type: Input },],\n 'disabled': [{ type: Input },],\n 'numPages': [{ type: Output },],\n 'pageChanged': [{ type: Output },],\n 'itemsPerPage': [{ type: Input },],\n 'totalItems': [{ type: Input },],\n };\n return PaginationComponent;\n}());\nexport { PaginationComponent };\n//# sourceMappingURL=pagination.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/pagination/pagination.component.js\n// module id = 720\n// module chunks = 1","import { Component, Host, HostBinding, Input } from '@angular/core';\nimport { ProgressbarComponent } from './progressbar.component';\nimport { isBs3 } from '../utils/theme-provider';\n// todo: number pipe\n// todo: use query from progress?\nvar BarComponent = (function () {\n function BarComponent(progress) {\n this.percent = 0;\n this.progress = progress;\n }\n Object.defineProperty(BarComponent.prototype, \"value\", {\n /** current value of progress bar */\n get: function () {\n return this._value;\n },\n set: function (v) {\n if (!v && v !== 0) {\n return;\n }\n this._value = v;\n this.recalculatePercentage();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BarComponent.prototype, \"setBarWidth\", {\n get: function () {\n this.recalculatePercentage();\n return this.percent;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BarComponent.prototype, \"isBs3\", {\n get: function () {\n return isBs3();\n },\n enumerable: true,\n configurable: true\n });\n BarComponent.prototype.ngOnInit = function () {\n this.progress.addBar(this);\n };\n BarComponent.prototype.ngOnDestroy = function () {\n this.progress.removeBar(this);\n };\n BarComponent.prototype.recalculatePercentage = function () {\n this.percent = +(this.value / this.progress.max * 100).toFixed(2);\n var totalPercentage = this.progress.bars\n .reduce(function (total, bar) {\n return total + bar.percent;\n }, 0);\n if (totalPercentage > 100) {\n this.percent -= totalPercentage - 100;\n }\n };\n BarComponent.decorators = [\n { type: Component, args: [{\n selector: 'bar',\n template: \" \",\n host: {\n role: 'progressbar',\n 'aria-valuemin': '0',\n '[class]': '\"progress-bar \" + (type ? \"progress-bar-\" + type + \" bg-\" + type : \"\")',\n '[class.progress-bar-animated]': '!isBs3 && animate',\n '[class.progress-bar-striped]': 'striped',\n '[class.active]': 'isBs3 && animate',\n '[attr.aria-valuenow]': 'value',\n '[attr.aria-valuetext]': 'percent ? percent.toFixed(0) + \"%\" : \"\"',\n '[attr.aria-valuemax]': 'max',\n '[style.height.%]': '\"100\"'\n }\n },] },\n ];\n /** @nocollapse */\n BarComponent.ctorParameters = function () { return [\n { type: ProgressbarComponent, decorators: [{ type: Host },] },\n ]; };\n BarComponent.propDecorators = {\n 'type': [{ type: Input },],\n 'value': [{ type: Input },],\n 'setBarWidth': [{ type: HostBinding, args: ['style.width.%',] },],\n };\n return BarComponent;\n}());\nexport { BarComponent };\n//# sourceMappingURL=bar.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/progressbar/bar.component.js\n// module id = 721\n// module chunks = 1","import { Component, EventEmitter, HostListener, Input, Output, forwardRef, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nexport var RATING_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n // tslint:disable-next-line\n useExisting: forwardRef(function () { return RatingComponent; }),\n multi: true\n};\nvar RatingComponent = (function () {\n function RatingComponent(changeDetection) {\n this.changeDetection = changeDetection;\n /** number of icons */\n this.max = 5;\n /** fired when icon selected, $event:number equals to selected rating */\n this.onHover = new EventEmitter();\n /** fired when icon selected, $event:number equals to previous rating value */\n this.onLeave = new EventEmitter();\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n }\n RatingComponent.prototype.onKeydown = function (event) {\n if ([37, 38, 39, 40].indexOf(event.which) === -1) {\n return;\n }\n event.preventDefault();\n event.stopPropagation();\n var sign = event.which === 38 || event.which === 39 ? 1 : -1;\n this.rate(this.value + sign);\n };\n RatingComponent.prototype.ngOnInit = function () {\n this.max = typeof this.max !== 'undefined' ? this.max : 5;\n this.titles =\n typeof this.titles !== 'undefined' && this.titles.length > 0\n ? this.titles\n : ['one', 'two', 'three', 'four', 'five'];\n this.range = this.buildTemplateObjects(this.max);\n };\n // model -> view\n RatingComponent.prototype.writeValue = function (value) {\n if (value % 1 !== value) {\n this.value = Math.round(value);\n this.preValue = value;\n this.changeDetection.markForCheck();\n return;\n }\n this.preValue = value;\n this.value = value;\n this.changeDetection.markForCheck();\n };\n RatingComponent.prototype.enter = function (value) {\n if (!this.readonly) {\n this.value = value;\n this.changeDetection.markForCheck();\n this.onHover.emit(value);\n }\n };\n RatingComponent.prototype.reset = function () {\n this.value = this.preValue;\n this.changeDetection.markForCheck();\n this.onLeave.emit(this.value);\n };\n RatingComponent.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n RatingComponent.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n RatingComponent.prototype.rate = function (value) {\n if (!this.readonly && value >= 0 && value <= this.range.length) {\n this.writeValue(value);\n this.onChange(value);\n }\n };\n RatingComponent.prototype.buildTemplateObjects = function (max) {\n var result = [];\n for (var i = 0; i < max; i++) {\n result.push({\n index: i,\n title: this.titles[i] || i + 1\n });\n }\n return result;\n };\n RatingComponent.decorators = [\n { type: Component, args: [{\n selector: 'rating',\n template: \" {{index < value ? '★' : '☆'}} ({{ index < value ? '*' : ' ' }}) \",\n providers: [RATING_CONTROL_VALUE_ACCESSOR],\n changeDetection: ChangeDetectionStrategy.OnPush\n },] },\n ];\n /** @nocollapse */\n RatingComponent.ctorParameters = function () { return [\n { type: ChangeDetectorRef, },\n ]; };\n RatingComponent.propDecorators = {\n 'max': [{ type: Input },],\n 'readonly': [{ type: Input },],\n 'titles': [{ type: Input },],\n 'customTemplate': [{ type: Input },],\n 'onHover': [{ type: Output },],\n 'onLeave': [{ type: Output },],\n 'onKeydown': [{ type: HostListener, args: ['keydown', ['$event'],] },],\n };\n return RatingComponent;\n}());\nexport { RatingComponent };\n//# sourceMappingURL=rating.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/rating/rating.component.js\n// module id = 722\n// module chunks = 1","import { Component, Input, Output, EventEmitter, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { DraggableItemService } from './draggable-item.service';\n/* tslint:disable */\n/* tslint:enable */\nvar SortableComponent = (function () {\n function SortableComponent(transfer) {\n var _this = this;\n /** class name for items wrapper */\n this.wrapperClass = '';\n /** style object for items wrapper */\n this.wrapperStyle = {};\n /** class name for item */\n this.itemClass = '';\n /** style object for item */\n this.itemStyle = {};\n /** class name for active item */\n this.itemActiveClass = '';\n /** style object for active item */\n this.itemActiveStyle = {};\n /** class name for placeholder */\n this.placeholderClass = '';\n /** style object for placeholder */\n this.placeholderStyle = {};\n /** placeholder item which will be shown if collection is empty */\n this.placeholderItem = '';\n /** fired on array change (reordering, insert, remove), same as ngModelChange
.\n * Returns new items collection as a payload.\n */\n this.onChange = new EventEmitter();\n this.showPlaceholder = false;\n this.activeItem = -1;\n this.onTouched = Function.prototype;\n this.onChanged = Function.prototype;\n this.transfer = transfer;\n this.currentZoneIndex = SortableComponent.globalZoneIndex++;\n this.transfer\n .onCaptureItem()\n .subscribe(function (item) { return _this.onDrop(item); });\n }\n Object.defineProperty(SortableComponent.prototype, \"items\", {\n get: function () {\n return this._items;\n },\n set: function (value) {\n this._items = value;\n var out = this.items.map(function (x) { return x.initData; });\n this.onChanged(out);\n this.onChange.emit(out);\n },\n enumerable: true,\n configurable: true\n });\n SortableComponent.prototype.onItemDragstart = function (event, item, i) {\n this.initDragstartEvent(event);\n this.onTouched();\n this.transfer.dragStart({\n event: event,\n item: item,\n i: i,\n initialIndex: i,\n lastZoneIndex: this.currentZoneIndex,\n overZoneIndex: this.currentZoneIndex\n });\n };\n SortableComponent.prototype.onItemDragover = function (event, i) {\n if (!this.transfer.getItem()) {\n return;\n }\n event.preventDefault();\n var dragItem = this.transfer.captureItem(this.currentZoneIndex, this.items.length);\n var newArray = [];\n if (!this.items.length) {\n newArray = [dragItem.item];\n }\n else if (dragItem.i > i) {\n newArray = this.items.slice(0, i).concat([\n dragItem.item\n ], this.items.slice(i, dragItem.i), this.items.slice(dragItem.i + 1));\n }\n else {\n // this.draggedItem.i < i\n newArray = this.items.slice(0, dragItem.i).concat(this.items.slice(dragItem.i + 1, i + 1), [\n dragItem.item\n ], this.items.slice(i + 1));\n }\n this.items = newArray;\n dragItem.i = i;\n this.activeItem = i;\n this.updatePlaceholderState();\n };\n SortableComponent.prototype.cancelEvent = function (event) {\n if (!this.transfer.getItem() || !event) {\n return;\n }\n event.preventDefault();\n };\n SortableComponent.prototype.onDrop = function (item) {\n if (item &&\n item.overZoneIndex !== this.currentZoneIndex &&\n item.lastZoneIndex === this.currentZoneIndex) {\n this.items = this.items.filter(function (x, i) { return i !== item.i; });\n this.updatePlaceholderState();\n }\n this.resetActiveItem(undefined);\n };\n SortableComponent.prototype.resetActiveItem = function (event) {\n this.cancelEvent(event);\n this.activeItem = -1;\n };\n SortableComponent.prototype.registerOnChange = function (callback) {\n this.onChanged = callback;\n };\n SortableComponent.prototype.registerOnTouched = function (callback) {\n this.onTouched = callback;\n };\n SortableComponent.prototype.writeValue = function (value) {\n var _this = this;\n if (value) {\n this.items = value.map(function (x, i) { return ({\n id: i,\n initData: x,\n value: _this.fieldName ? x[_this.fieldName] : x\n }); });\n }\n else {\n this.items = [];\n }\n this.updatePlaceholderState();\n };\n SortableComponent.prototype.updatePlaceholderState = function () {\n this.showPlaceholder = !this._items.length;\n };\n SortableComponent.prototype.getItemStyle = function (isActive) {\n return isActive\n ? Object.assign({}, this.itemStyle, this.itemActiveStyle)\n : this.itemStyle;\n };\n // tslint:disable-next-line\n SortableComponent.prototype.initDragstartEvent = function (event) {\n // it is necessary for mozilla\n // data type should be 'Text' instead of 'text/plain' to keep compatibility\n // with IE\n event.dataTransfer.setData('Text', 'placeholder');\n };\n SortableComponent.globalZoneIndex = 0;\n SortableComponent.decorators = [\n { type: Component, args: [{\n selector: 'bs-sortable',\n exportAs: 'bs-sortable',\n template: \"\\n\\n
{{placeholderItem}}
\\n
\\n
\\n\\n{{item.value}} \\n\",\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(function () { return SortableComponent; }),\n multi: true\n }\n ]\n },] },\n ];\n /** @nocollapse */\n SortableComponent.ctorParameters = function () { return [\n { type: DraggableItemService, },\n ]; };\n SortableComponent.propDecorators = {\n 'fieldName': [{ type: Input },],\n 'wrapperClass': [{ type: Input },],\n 'wrapperStyle': [{ type: Input },],\n 'itemClass': [{ type: Input },],\n 'itemStyle': [{ type: Input },],\n 'itemActiveClass': [{ type: Input },],\n 'itemActiveStyle': [{ type: Input },],\n 'placeholderClass': [{ type: Input },],\n 'placeholderStyle': [{ type: Input },],\n 'placeholderItem': [{ type: Input },],\n 'itemTemplate': [{ type: Input },],\n 'onChange': [{ type: Output },],\n };\n return SortableComponent;\n}());\nexport { SortableComponent };\n//# sourceMappingURL=sortable.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/sortable/sortable.component.js\n// module id = 723\n// module chunks = 1","import { Directive, Input, ViewContainerRef } from '@angular/core';\nvar NgTranscludeDirective = (function () {\n function NgTranscludeDirective(viewRef) {\n this.viewRef = viewRef;\n }\n Object.defineProperty(NgTranscludeDirective.prototype, \"ngTransclude\", {\n get: function () {\n return this._ngTransclude;\n },\n set: function (templateRef) {\n this._ngTransclude = templateRef;\n if (templateRef) {\n this.viewRef.createEmbeddedView(templateRef);\n }\n },\n enumerable: true,\n configurable: true\n });\n NgTranscludeDirective.decorators = [\n { type: Directive, args: [{\n selector: '[ngTransclude]'\n },] },\n ];\n /** @nocollapse */\n NgTranscludeDirective.ctorParameters = function () { return [\n { type: ViewContainerRef, },\n ]; };\n NgTranscludeDirective.propDecorators = {\n 'ngTransclude': [{ type: Input },],\n };\n return NgTranscludeDirective;\n}());\nexport { NgTranscludeDirective };\n//# sourceMappingURL=ng-transclude.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/tabs/ng-transclude.directive.js\n// module id = 724\n// module chunks = 1","import { Directive, TemplateRef } from '@angular/core';\nimport { TabDirective } from './tab.directive';\n/** Should be used to mark element as a template for tab heading */\nvar TabHeadingDirective = (function () {\n function TabHeadingDirective(templateRef, tab) {\n tab.headingRef = templateRef;\n }\n TabHeadingDirective.decorators = [\n { type: Directive, args: [{ selector: '[tabHeading]' },] },\n ];\n /** @nocollapse */\n TabHeadingDirective.ctorParameters = function () { return [\n { type: TemplateRef, },\n { type: TabDirective, },\n ]; };\n return TabHeadingDirective;\n}());\nexport { TabHeadingDirective };\n//# sourceMappingURL=tab-heading.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/tabs/tab-heading.directive.js\n// module id = 725\n// module chunks = 1","/* tslint:disable:no-forward-ref max-file-line-count */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, EventEmitter, forwardRef, Input, Output, ViewEncapsulation } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { TimepickerActions } from './reducer/timepicker.actions';\nimport { TimepickerStore } from './reducer/timepicker.store';\nimport { getControlsValue } from './timepicker-controls.util';\nimport { TimepickerConfig } from './timepicker.config';\nimport { isValidDate, padNumber, parseTime, isInputValid, isHourInputValid, isMinuteInputValid, isSecondInputValid, isInputLimitValid } from './timepicker.utils';\nexport var TIMEPICKER_CONTROL_VALUE_ACCESSOR = {\n provide: NG_VALUE_ACCESSOR,\n // tslint:disable-next-line\n useExisting: forwardRef(function () { return TimepickerComponent; }),\n multi: true\n};\nvar TimepickerComponent = (function () {\n function TimepickerComponent(_config, _cd, _store, _timepickerActions) {\n var _this = this;\n this._store = _store;\n this._timepickerActions = _timepickerActions;\n /** emits true if value is a valid date */\n this.isValid = new EventEmitter();\n // min\\max validation for input fields\n this.invalidHours = false;\n this.invalidMinutes = false;\n this.invalidSeconds = false;\n // control value accessor methods\n this.onChange = Function.prototype;\n this.onTouched = Function.prototype;\n Object.assign(this, _config);\n this.timepickerSub = _store.select(function (state) { return state.value; }).subscribe(function (value) {\n // update UI values if date changed\n _this._renderTime(value);\n _this.onChange(value);\n _this._store.dispatch(_this._timepickerActions.updateControls(getControlsValue(_this)));\n });\n _store.select(function (state) { return state.controls; }).subscribe(function (controlsState) {\n _this.isValid.emit(isInputValid(_this.hours, _this.minutes, _this.seconds, _this.isPM()));\n Object.assign(_this, controlsState);\n _cd.markForCheck();\n });\n }\n Object.defineProperty(TimepickerComponent.prototype, \"isSpinnersVisible\", {\n /** @deprecated - please use `isEditable` instead */\n get: function () {\n return this.showSpinners && !this.readonlyInput;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TimepickerComponent.prototype, \"isEditable\", {\n get: function () {\n return !(this.readonlyInput || this.disabled);\n },\n enumerable: true,\n configurable: true\n });\n TimepickerComponent.prototype.resetValidation = function () {\n this.invalidHours = false;\n this.invalidMinutes = false;\n this.invalidSeconds = false;\n };\n TimepickerComponent.prototype.isPM = function () {\n return this.showMeridian && this.meridian === this.meridians[1];\n };\n TimepickerComponent.prototype.prevDef = function ($event) {\n $event.preventDefault();\n };\n TimepickerComponent.prototype.wheelSign = function ($event) {\n return Math.sign($event.deltaY) * -1;\n };\n TimepickerComponent.prototype.ngOnChanges = function (changes) {\n this._store.dispatch(this._timepickerActions.updateControls(getControlsValue(this)));\n };\n TimepickerComponent.prototype.changeHours = function (step, source) {\n if (source === void 0) { source = ''; }\n this.resetValidation();\n this._store.dispatch(this._timepickerActions.changeHours({ step: step, source: source }));\n };\n TimepickerComponent.prototype.changeMinutes = function (step, source) {\n if (source === void 0) { source = ''; }\n this.resetValidation();\n this._store.dispatch(this._timepickerActions.changeMinutes({ step: step, source: source }));\n };\n TimepickerComponent.prototype.changeSeconds = function (step, source) {\n if (source === void 0) { source = ''; }\n this.resetValidation();\n this._store.dispatch(this._timepickerActions.changeSeconds({ step: step, source: source }));\n };\n TimepickerComponent.prototype.updateHours = function (hours) {\n this.resetValidation();\n this.hours = hours;\n var isValid = isHourInputValid(this.hours, this.isPM()) && this.isValidLimit();\n if (!isValid) {\n this.invalidHours = true;\n this.isValid.emit(false);\n this.onChange(null);\n return;\n }\n this._updateTime();\n };\n TimepickerComponent.prototype.updateMinutes = function (minutes) {\n this.resetValidation();\n this.minutes = minutes;\n var isValid = isMinuteInputValid(this.minutes) && this.isValidLimit();\n if (!isValid) {\n this.invalidMinutes = true;\n this.isValid.emit(false);\n this.onChange(null);\n return;\n }\n this._updateTime();\n };\n TimepickerComponent.prototype.updateSeconds = function (seconds) {\n this.resetValidation();\n this.seconds = seconds;\n var isValid = isSecondInputValid(this.seconds) && this.isValidLimit();\n if (!isValid) {\n this.invalidSeconds = true;\n this.isValid.emit(false);\n this.onChange(null);\n return;\n }\n this._updateTime();\n };\n TimepickerComponent.prototype.isValidLimit = function () {\n return isInputLimitValid({\n hour: this.hours,\n minute: this.minutes,\n seconds: this.seconds,\n isPM: this.isPM()\n }, this.max, this.min);\n };\n TimepickerComponent.prototype._updateTime = function () {\n var _seconds = this.showSeconds ? this.seconds : void 0;\n var _minutes = this.showMinutes ? this.minutes : void 0;\n if (!isInputValid(this.hours, _minutes, _seconds, this.isPM())) {\n this.isValid.emit(false);\n this.onChange(null);\n return;\n }\n this._store.dispatch(this._timepickerActions.setTime({\n hour: this.hours,\n minute: this.minutes,\n seconds: this.seconds,\n isPM: this.isPM()\n }));\n };\n TimepickerComponent.prototype.toggleMeridian = function () {\n if (!this.showMeridian || !this.isEditable) {\n return;\n }\n var _hoursPerDayHalf = 12;\n this._store.dispatch(this._timepickerActions.changeHours({\n step: _hoursPerDayHalf,\n source: ''\n }));\n };\n /**\n * Write a new value to the element.\n */\n TimepickerComponent.prototype.writeValue = function (obj) {\n if (isValidDate(obj)) {\n this._store.dispatch(this._timepickerActions.writeValue(parseTime(obj)));\n }\n else if (obj == null) {\n this._store.dispatch(this._timepickerActions.writeValue(null));\n }\n };\n /**\n * Set the function to be called when the control receives a change event.\n */\n TimepickerComponent.prototype.registerOnChange = function (fn) {\n this.onChange = fn;\n };\n /**\n * Set the function to be called when the control receives a touch event.\n */\n TimepickerComponent.prototype.registerOnTouched = function (fn) {\n this.onTouched = fn;\n };\n /**\n * This function is called when the control status changes to or from \"disabled\".\n * Depending on the value, it will enable or disable the appropriate DOM element.\n *\n * @param isDisabled\n */\n TimepickerComponent.prototype.setDisabledState = function (isDisabled) {\n this.disabled = isDisabled;\n };\n TimepickerComponent.prototype.ngOnDestroy = function () {\n this.timepickerSub.unsubscribe();\n };\n TimepickerComponent.prototype._renderTime = function (value) {\n if (!isValidDate(value)) {\n this.hours = '';\n this.minutes = '';\n this.seconds = '';\n this.meridian = this.meridians[0];\n return;\n }\n var _value = parseTime(value);\n var _hoursPerDayHalf = 12;\n var _hours = _value.getHours();\n if (this.showMeridian) {\n this.meridian = this.meridians[_hours >= _hoursPerDayHalf ? 1 : 0];\n _hours = _hours % _hoursPerDayHalf;\n // should be 12 PM, not 00 PM\n if (_hours === 0) {\n _hours = _hoursPerDayHalf;\n }\n }\n this.hours = padNumber(_hours);\n this.minutes = padNumber(_value.getMinutes());\n this.seconds = padNumber(_value.getUTCSeconds());\n };\n TimepickerComponent.decorators = [\n { type: Component, args: [{\n selector: 'timepicker',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [TIMEPICKER_CONTROL_VALUE_ACCESSOR, TimepickerStore],\n template: \" \",\n styles: [\"\\n .bs-chevron{\\n border-style: solid;\\n display: block;\\n width: 9px;\\n height: 9px;\\n position: relative;\\n border-width: 3px 0px 0 3px;\\n }\\n .bs-chevron-up{\\n -webkit-transform: rotate(45deg);\\n transform: rotate(45deg);\\n top: 2px;\\n }\\n .bs-chevron-down{\\n -webkit-transform: rotate(-135deg);\\n transform: rotate(-135deg);\\n top: -2px;\\n }\\n .bs-timepicker-field{\\n width: 50px;\\n }\\n \"],\n encapsulation: ViewEncapsulation.None\n },] },\n ];\n /** @nocollapse */\n TimepickerComponent.ctorParameters = function () { return [\n { type: TimepickerConfig, },\n { type: ChangeDetectorRef, },\n { type: TimepickerStore, },\n { type: TimepickerActions, },\n ]; };\n TimepickerComponent.propDecorators = {\n 'hourStep': [{ type: Input },],\n 'minuteStep': [{ type: Input },],\n 'secondsStep': [{ type: Input },],\n 'readonlyInput': [{ type: Input },],\n 'disabled': [{ type: Input },],\n 'mousewheel': [{ type: Input },],\n 'arrowkeys': [{ type: Input },],\n 'showSpinners': [{ type: Input },],\n 'showMeridian': [{ type: Input },],\n 'showMinutes': [{ type: Input },],\n 'showSeconds': [{ type: Input },],\n 'meridians': [{ type: Input },],\n 'min': [{ type: Input },],\n 'max': [{ type: Input },],\n 'isValid': [{ type: Output },],\n };\n return TimepickerComponent;\n}());\nexport { TimepickerComponent };\n//# sourceMappingURL=timepicker.component.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/timepicker/timepicker.component.js\n// module id = 726\n// module chunks = 1","import { changeTime } from './timepicker.utils';\nexport function canChangeValue(state, event) {\n if (state.readonlyInput || state.disabled) {\n return false;\n }\n if (event) {\n if (event.source === 'wheel' && !state.mousewheel) {\n return false;\n }\n if (event.source === 'key' && !state.arrowkeys) {\n return false;\n }\n }\n return true;\n}\nexport function canChangeHours(event, controls) {\n if (!event.step) {\n return false;\n }\n if (event.step > 0 && !controls.canIncrementHours) {\n return false;\n }\n if (event.step < 0 && !controls.canDecrementHours) {\n return false;\n }\n return true;\n}\nexport function canChangeMinutes(event, controls) {\n if (!event.step) {\n return false;\n }\n if (event.step > 0 && !controls.canIncrementMinutes) {\n return false;\n }\n if (event.step < 0 && !controls.canDecrementMinutes) {\n return false;\n }\n return true;\n}\nexport function canChangeSeconds(event, controls) {\n if (!event.step) {\n return false;\n }\n if (event.step > 0 && !controls.canIncrementSeconds) {\n return false;\n }\n if (event.step < 0 && !controls.canDecrementSeconds) {\n return false;\n }\n return true;\n}\nexport function getControlsValue(state) {\n var hourStep = state.hourStep, minuteStep = state.minuteStep, secondsStep = state.secondsStep, readonlyInput = state.readonlyInput, disabled = state.disabled, mousewheel = state.mousewheel, arrowkeys = state.arrowkeys, showSpinners = state.showSpinners, showMeridian = state.showMeridian, showSeconds = state.showSeconds, meridians = state.meridians, min = state.min, max = state.max;\n return {\n hourStep: hourStep,\n minuteStep: minuteStep,\n secondsStep: secondsStep,\n readonlyInput: readonlyInput,\n disabled: disabled,\n mousewheel: mousewheel,\n arrowkeys: arrowkeys,\n showSpinners: showSpinners,\n showMeridian: showMeridian,\n showSeconds: showSeconds,\n meridians: meridians,\n min: min,\n max: max\n };\n}\nexport function timepickerControls(value, state) {\n var hoursPerDayHalf = 12;\n var min = state.min, max = state.max, hourStep = state.hourStep, minuteStep = state.minuteStep, secondsStep = state.secondsStep, showSeconds = state.showSeconds;\n var res = {\n canIncrementHours: true,\n canIncrementMinutes: true,\n canIncrementSeconds: true,\n canDecrementHours: true,\n canDecrementMinutes: true,\n canDecrementSeconds: true,\n canToggleMeridian: true\n };\n if (!value) {\n return res;\n }\n // compare dates\n if (max) {\n var _newHour = changeTime(value, { hour: hourStep });\n res.canIncrementHours = max > _newHour;\n if (!res.canIncrementHours) {\n var _newMinutes = changeTime(value, { minute: minuteStep });\n res.canIncrementMinutes = showSeconds\n ? max > _newMinutes\n : max >= _newMinutes;\n }\n if (!res.canIncrementMinutes) {\n var _newSeconds = changeTime(value, { seconds: secondsStep });\n res.canIncrementSeconds = max >= _newSeconds;\n }\n if (value.getHours() < hoursPerDayHalf) {\n res.canToggleMeridian = changeTime(value, { hour: hoursPerDayHalf }) < max;\n }\n }\n if (min) {\n var _newHour = changeTime(value, { hour: -hourStep });\n res.canDecrementHours = min < _newHour;\n if (!res.canDecrementHours) {\n var _newMinutes = changeTime(value, { minute: -minuteStep });\n res.canDecrementMinutes = showSeconds\n ? min < _newMinutes\n : min <= _newMinutes;\n }\n if (!res.canDecrementMinutes) {\n var _newSeconds = changeTime(value, { seconds: -secondsStep });\n res.canDecrementSeconds = min <= _newSeconds;\n }\n if (value.getHours() >= hoursPerDayHalf) {\n res.canToggleMeridian = changeTime(value, { hour: -hoursPerDayHalf }) > min;\n }\n }\n return res;\n}\n//# sourceMappingURL=timepicker-controls.util.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/timepicker/timepicker-controls.util.js\n// module id = 727\n// module chunks = 1","var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n};\nvar __metadata = (this && this.__metadata) || function (k, v) {\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(k, v);\n};\n// tslint:disable:deprecation\nimport { Directive, ElementRef, EventEmitter, Input, Output, Renderer2, ViewContainerRef } from '@angular/core';\nimport { TooltipContainerComponent } from './tooltip-container.component';\nimport { TooltipConfig } from './tooltip.config';\nimport { ComponentLoaderFactory } from '../component-loader/index';\nimport { OnChange } from '../utils/decorators';\nimport { warnOnce } from '../utils/warn-once';\nimport { parseTriggers } from '../utils/triggers';\nimport { Observable } from 'rxjs/Observable';\nimport 'rxjs/add/observable/timer';\nvar TooltipDirective = (function () {\n function TooltipDirective(_viewContainerRef, _renderer, _elementRef, cis, config) {\n this._renderer = _renderer;\n this._elementRef = _elementRef;\n /** Fired when tooltip content changes */\n this.tooltipChange = new EventEmitter();\n /**\n * Css class for tooltip container\n */\n this.containerClass = '';\n /** @deprecated - removed, will be added to configuration */\n this._animation = true;\n /** @deprecated */\n this._fadeDuration = 150;\n /** @deprecated */\n this.tooltipStateChanged = new EventEmitter();\n this._tooltip = cis\n .createLoader(this._elementRef, _viewContainerRef, this._renderer)\n .provide({ provide: TooltipConfig, useValue: config });\n Object.assign(this, config);\n this.onShown = this._tooltip.onShown;\n this.onHidden = this._tooltip.onHidden;\n }\n Object.defineProperty(TooltipDirective.prototype, \"isOpen\", {\n /**\n * Returns whether or not the tooltip is currently being shown\n */\n get: function () {\n return this._tooltip.isShown;\n },\n set: function (value) {\n if (value) {\n this.show();\n }\n else {\n this.hide();\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"htmlContent\", {\n /** @deprecated - please use `tooltip` instead */\n set: function (value) {\n warnOnce('tooltipHtml was deprecated, please use `tooltip` instead');\n this.tooltip = value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_placement\", {\n /** @deprecated - please use `placement` instead */\n set: function (value) {\n warnOnce('tooltipPlacement was deprecated, please use `placement` instead');\n this.placement = value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_isOpen\", {\n get: function () {\n warnOnce('tooltipIsOpen was deprecated, please use `isOpen` instead');\n return this.isOpen;\n },\n /** @deprecated - please use `isOpen` instead*/\n set: function (value) {\n warnOnce('tooltipIsOpen was deprecated, please use `isOpen` instead');\n this.isOpen = value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_enable\", {\n get: function () {\n warnOnce('tooltipEnable was deprecated, please use `isDisabled` instead');\n return this.isDisabled;\n },\n /** @deprecated - please use `isDisabled` instead */\n set: function (value) {\n warnOnce('tooltipEnable was deprecated, please use `isDisabled` instead');\n this.isDisabled = value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_appendToBody\", {\n get: function () {\n warnOnce('tooltipAppendToBody was deprecated, please use `container=\"body\"` instead');\n return this.container === 'body';\n },\n /** @deprecated - please use `container=\"body\"` instead */\n set: function (value) {\n warnOnce('tooltipAppendToBody was deprecated, please use `container=\"body\"` instead');\n this.container = value ? 'body' : this.container;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_popupClass\", {\n /** @deprecated - will replaced with customClass */\n set: function (value) {\n warnOnce('tooltipClass deprecated');\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_tooltipContext\", {\n /** @deprecated - removed */\n set: function (value) {\n warnOnce('tooltipContext deprecated');\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_tooltipPopupDelay\", {\n /** @deprecated */\n set: function (value) {\n warnOnce('tooltipPopupDelay is deprecated, use `delay` instead');\n this.delay = value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TooltipDirective.prototype, \"_tooltipTrigger\", {\n /** @deprecated - please use `triggers` instead */\n get: function () {\n warnOnce('tooltipTrigger was deprecated, please use `triggers` instead');\n return this.triggers;\n },\n set: function (value) {\n warnOnce('tooltipTrigger was deprecated, please use `triggers` instead');\n this.triggers = (value || '').toString();\n },\n enumerable: true,\n configurable: true\n });\n TooltipDirective.prototype.ngOnInit = function () {\n var _this = this;\n this._tooltip.listen({\n triggers: this.triggers,\n show: function () { return _this.show(); }\n });\n this.tooltipChange.subscribe(function (value) {\n if (!value) {\n _this._tooltip.hide();\n }\n });\n };\n /**\n * Toggles an element’s tooltip. This is considered a “manual” triggering of\n * the tooltip.\n */\n TooltipDirective.prototype.toggle = function () {\n if (this.isOpen) {\n return this.hide();\n }\n this.show();\n };\n /**\n * Opens an element’s tooltip. This is considered a “manual” triggering of\n * the tooltip.\n */\n TooltipDirective.prototype.show = function () {\n var _this = this;\n if (this.isOpen ||\n this.isDisabled ||\n this._delayTimeoutId ||\n !this.tooltip) {\n return;\n }\n var showTooltip = function () {\n if (_this._delayTimeoutId) {\n _this._delayTimeoutId = undefined;\n }\n _this._tooltip\n .attach(TooltipContainerComponent)\n .to(_this.container)\n .position({ attachment: _this.placement })\n .show({\n content: _this.tooltip,\n placement: _this.placement,\n containerClass: _this.containerClass\n });\n };\n var cancelDelayedTooltipShowing = function () {\n if (_this._tooltipCancelShowFn) {\n _this._tooltipCancelShowFn();\n }\n };\n if (this.delay) {\n var timer_1 = Observable.timer(this.delay).subscribe(function () {\n showTooltip();\n cancelDelayedTooltipShowing();\n });\n if (this.triggers) {\n var triggers = parseTriggers(this.triggers);\n this._tooltipCancelShowFn = this._renderer.listen(this._elementRef.nativeElement, triggers[0].close, function () {\n timer_1.unsubscribe();\n cancelDelayedTooltipShowing();\n });\n }\n }\n else {\n showTooltip();\n }\n };\n /**\n * Closes an element’s tooltip. This is considered a “manual” triggering of\n * the tooltip.\n */\n TooltipDirective.prototype.hide = function () {\n var _this = this;\n if (this._delayTimeoutId) {\n clearTimeout(this._delayTimeoutId);\n this._delayTimeoutId = undefined;\n }\n if (!this._tooltip.isShown) {\n return;\n }\n this._tooltip.instance.classMap.in = false;\n setTimeout(function () {\n _this._tooltip.hide();\n }, this._fadeDuration);\n };\n TooltipDirective.prototype.ngOnDestroy = function () {\n this._tooltip.dispose();\n };\n TooltipDirective.decorators = [\n { type: Directive, args: [{\n selector: '[tooltip], [tooltipHtml]',\n exportAs: 'bs-tooltip'\n },] },\n ];\n /** @nocollapse */\n TooltipDirective.ctorParameters = function () { return [\n { type: ViewContainerRef, },\n { type: Renderer2, },\n { type: ElementRef, },\n { type: ComponentLoaderFactory, },\n { type: TooltipConfig, },\n ]; };\n TooltipDirective.propDecorators = {\n 'tooltip': [{ type: Input },],\n 'tooltipChange': [{ type: Output },],\n 'placement': [{ type: Input },],\n 'triggers': [{ type: Input },],\n 'container': [{ type: Input },],\n 'isOpen': [{ type: Input },],\n 'isDisabled': [{ type: Input },],\n 'containerClass': [{ type: Input },],\n 'delay': [{ type: Input },],\n 'onShown': [{ type: Output },],\n 'onHidden': [{ type: Output },],\n 'htmlContent': [{ type: Input, args: ['tooltipHtml',] },],\n '_placement': [{ type: Input, args: ['tooltipPlacement',] },],\n '_isOpen': [{ type: Input, args: ['tooltipIsOpen',] },],\n '_enable': [{ type: Input, args: ['tooltipEnable',] },],\n '_appendToBody': [{ type: Input, args: ['tooltipAppendToBody',] },],\n '_animation': [{ type: Input, args: ['tooltipAnimation',] },],\n '_popupClass': [{ type: Input, args: ['tooltipClass',] },],\n '_tooltipContext': [{ type: Input, args: ['tooltipContext',] },],\n '_tooltipPopupDelay': [{ type: Input, args: ['tooltipPopupDelay',] },],\n '_fadeDuration': [{ type: Input, args: ['tooltipFadeDuration',] },],\n '_tooltipTrigger': [{ type: Input, args: ['tooltipTrigger',] },],\n 'tooltipStateChanged': [{ type: Output },],\n };\n __decorate([\n OnChange(),\n __metadata(\"design:type\", Object)\n ], TooltipDirective.prototype, \"tooltip\", void 0);\n return TooltipDirective;\n}());\nexport { TooltipDirective };\n//# sourceMappingURL=tooltip.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/tooltip/tooltip.directive.js\n// module id = 728\n// module chunks = 1","/* tslint:disable */\nexport var latinMap = {\n 'Á': 'A',\n 'Ă': 'A',\n 'Ắ': 'A',\n 'Ặ': 'A',\n 'Ằ': 'A',\n 'Ẳ': 'A',\n 'Ẵ': 'A',\n 'Ǎ': 'A',\n 'Â': 'A',\n 'Ấ': 'A',\n 'Ậ': 'A',\n 'Ầ': 'A',\n 'Ẩ': 'A',\n 'Ẫ': 'A',\n 'Ä': 'A',\n 'Ǟ': 'A',\n 'Ȧ': 'A',\n 'Ǡ': 'A',\n 'Ạ': 'A',\n 'Ȁ': 'A',\n 'À': 'A',\n 'Ả': 'A',\n 'Ȃ': 'A',\n 'Ā': 'A',\n 'Ą': 'A',\n 'Å': 'A',\n 'Ǻ': 'A',\n 'Ḁ': 'A',\n 'Ⱥ': 'A',\n 'Ã': 'A',\n 'Ꜳ': 'AA',\n 'Æ': 'AE',\n 'Ǽ': 'AE',\n 'Ǣ': 'AE',\n 'Ꜵ': 'AO',\n 'Ꜷ': 'AU',\n 'Ꜹ': 'AV',\n 'Ꜻ': 'AV',\n 'Ꜽ': 'AY',\n 'Ḃ': 'B',\n 'Ḅ': 'B',\n 'Ɓ': 'B',\n 'Ḇ': 'B',\n 'Ƀ': 'B',\n 'Ƃ': 'B',\n 'Ć': 'C',\n 'Č': 'C',\n 'Ç': 'C',\n 'Ḉ': 'C',\n 'Ĉ': 'C',\n 'Ċ': 'C',\n 'Ƈ': 'C',\n 'Ȼ': 'C',\n 'Ď': 'D',\n 'Ḑ': 'D',\n 'Ḓ': 'D',\n 'Ḋ': 'D',\n 'Ḍ': 'D',\n 'Ɗ': 'D',\n 'Ḏ': 'D',\n 'Dz': 'D',\n 'Dž': 'D',\n 'Đ': 'D',\n 'Ƌ': 'D',\n 'DZ': 'DZ',\n 'DŽ': 'DZ',\n 'É': 'E',\n 'Ĕ': 'E',\n 'Ě': 'E',\n 'Ȩ': 'E',\n 'Ḝ': 'E',\n 'Ê': 'E',\n 'Ế': 'E',\n 'Ệ': 'E',\n 'Ề': 'E',\n 'Ể': 'E',\n 'Ễ': 'E',\n 'Ḙ': 'E',\n 'Ë': 'E',\n 'Ė': 'E',\n 'Ẹ': 'E',\n 'Ȅ': 'E',\n 'È': 'E',\n 'Ẻ': 'E',\n 'Ȇ': 'E',\n 'Ē': 'E',\n 'Ḗ': 'E',\n 'Ḕ': 'E',\n 'Ę': 'E',\n 'Ɇ': 'E',\n 'Ẽ': 'E',\n 'Ḛ': 'E',\n 'Ꝫ': 'ET',\n 'Ḟ': 'F',\n 'Ƒ': 'F',\n 'Ǵ': 'G',\n 'Ğ': 'G',\n 'Ǧ': 'G',\n 'Ģ': 'G',\n 'Ĝ': 'G',\n 'Ġ': 'G',\n 'Ɠ': 'G',\n 'Ḡ': 'G',\n 'Ǥ': 'G',\n 'Ḫ': 'H',\n 'Ȟ': 'H',\n 'Ḩ': 'H',\n 'Ĥ': 'H',\n 'Ⱨ': 'H',\n 'Ḧ': 'H',\n 'Ḣ': 'H',\n 'Ḥ': 'H',\n 'Ħ': 'H',\n 'Í': 'I',\n 'Ĭ': 'I',\n 'Ǐ': 'I',\n 'Î': 'I',\n 'Ï': 'I',\n 'Ḯ': 'I',\n 'İ': 'I',\n 'Ị': 'I',\n 'Ȉ': 'I',\n 'Ì': 'I',\n 'Ỉ': 'I',\n 'Ȋ': 'I',\n 'Ī': 'I',\n 'Į': 'I',\n 'Ɨ': 'I',\n 'Ĩ': 'I',\n 'Ḭ': 'I',\n 'Ꝺ': 'D',\n 'Ꝼ': 'F',\n 'Ᵹ': 'G',\n 'Ꞃ': 'R',\n 'Ꞅ': 'S',\n 'Ꞇ': 'T',\n 'Ꝭ': 'IS',\n 'Ĵ': 'J',\n 'Ɉ': 'J',\n 'Ḱ': 'K',\n 'Ǩ': 'K',\n 'Ķ': 'K',\n 'Ⱪ': 'K',\n 'Ꝃ': 'K',\n 'Ḳ': 'K',\n 'Ƙ': 'K',\n 'Ḵ': 'K',\n 'Ꝁ': 'K',\n 'Ꝅ': 'K',\n 'Ĺ': 'L',\n 'Ƚ': 'L',\n 'Ľ': 'L',\n 'Ļ': 'L',\n 'Ḽ': 'L',\n 'Ḷ': 'L',\n 'Ḹ': 'L',\n 'Ⱡ': 'L',\n 'Ꝉ': 'L',\n 'Ḻ': 'L',\n 'Ŀ': 'L',\n 'Ɫ': 'L',\n 'Lj': 'L',\n 'Ł': 'L',\n 'LJ': 'LJ',\n 'Ḿ': 'M',\n 'Ṁ': 'M',\n 'Ṃ': 'M',\n 'Ɱ': 'M',\n 'Ń': 'N',\n 'Ň': 'N',\n 'Ņ': 'N',\n 'Ṋ': 'N',\n 'Ṅ': 'N',\n 'Ṇ': 'N',\n 'Ǹ': 'N',\n 'Ɲ': 'N',\n 'Ṉ': 'N',\n 'Ƞ': 'N',\n 'Nj': 'N',\n 'Ñ': 'N',\n 'NJ': 'NJ',\n 'Ó': 'O',\n 'Ŏ': 'O',\n 'Ǒ': 'O',\n 'Ô': 'O',\n 'Ố': 'O',\n 'Ộ': 'O',\n 'Ồ': 'O',\n 'Ổ': 'O',\n 'Ỗ': 'O',\n 'Ö': 'O',\n 'Ȫ': 'O',\n 'Ȯ': 'O',\n 'Ȱ': 'O',\n 'Ọ': 'O',\n 'Ő': 'O',\n 'Ȍ': 'O',\n 'Ò': 'O',\n 'Ỏ': 'O',\n 'Ơ': 'O',\n 'Ớ': 'O',\n 'Ợ': 'O',\n 'Ờ': 'O',\n 'Ở': 'O',\n 'Ỡ': 'O',\n 'Ȏ': 'O',\n 'Ꝋ': 'O',\n 'Ꝍ': 'O',\n 'Ō': 'O',\n 'Ṓ': 'O',\n 'Ṑ': 'O',\n 'Ɵ': 'O',\n 'Ǫ': 'O',\n 'Ǭ': 'O',\n 'Ø': 'O',\n 'Ǿ': 'O',\n 'Õ': 'O',\n 'Ṍ': 'O',\n 'Ṏ': 'O',\n 'Ȭ': 'O',\n 'Ƣ': 'OI',\n 'Ꝏ': 'OO',\n 'Ɛ': 'E',\n 'Ɔ': 'O',\n 'Ȣ': 'OU',\n 'Ṕ': 'P',\n 'Ṗ': 'P',\n 'Ꝓ': 'P',\n 'Ƥ': 'P',\n 'Ꝕ': 'P',\n 'Ᵽ': 'P',\n 'Ꝑ': 'P',\n 'Ꝙ': 'Q',\n 'Ꝗ': 'Q',\n 'Ŕ': 'R',\n 'Ř': 'R',\n 'Ŗ': 'R',\n 'Ṙ': 'R',\n 'Ṛ': 'R',\n 'Ṝ': 'R',\n 'Ȑ': 'R',\n 'Ȓ': 'R',\n 'Ṟ': 'R',\n 'Ɍ': 'R',\n 'Ɽ': 'R',\n 'Ꜿ': 'C',\n 'Ǝ': 'E',\n 'Ś': 'S',\n 'Ṥ': 'S',\n 'Š': 'S',\n 'Ṧ': 'S',\n 'Ş': 'S',\n 'Ŝ': 'S',\n 'Ș': 'S',\n 'Ṡ': 'S',\n 'Ṣ': 'S',\n 'Ṩ': 'S',\n 'Ť': 'T',\n 'Ţ': 'T',\n 'Ṱ': 'T',\n 'Ț': 'T',\n 'Ⱦ': 'T',\n 'Ṫ': 'T',\n 'Ṭ': 'T',\n 'Ƭ': 'T',\n 'Ṯ': 'T',\n 'Ʈ': 'T',\n 'Ŧ': 'T',\n 'Ɐ': 'A',\n 'Ꞁ': 'L',\n 'Ɯ': 'M',\n 'Ʌ': 'V',\n 'Ꜩ': 'TZ',\n 'Ú': 'U',\n 'Ŭ': 'U',\n 'Ǔ': 'U',\n 'Û': 'U',\n 'Ṷ': 'U',\n 'Ü': 'U',\n 'Ǘ': 'U',\n 'Ǚ': 'U',\n 'Ǜ': 'U',\n 'Ǖ': 'U',\n 'Ṳ': 'U',\n 'Ụ': 'U',\n 'Ű': 'U',\n 'Ȕ': 'U',\n 'Ù': 'U',\n 'Ủ': 'U',\n 'Ư': 'U',\n 'Ứ': 'U',\n 'Ự': 'U',\n 'Ừ': 'U',\n 'Ử': 'U',\n 'Ữ': 'U',\n 'Ȗ': 'U',\n 'Ū': 'U',\n 'Ṻ': 'U',\n 'Ų': 'U',\n 'Ů': 'U',\n 'Ũ': 'U',\n 'Ṹ': 'U',\n 'Ṵ': 'U',\n 'Ꝟ': 'V',\n 'Ṿ': 'V',\n 'Ʋ': 'V',\n 'Ṽ': 'V',\n 'Ꝡ': 'VY',\n 'Ẃ': 'W',\n 'Ŵ': 'W',\n 'Ẅ': 'W',\n 'Ẇ': 'W',\n 'Ẉ': 'W',\n 'Ẁ': 'W',\n 'Ⱳ': 'W',\n 'Ẍ': 'X',\n 'Ẋ': 'X',\n 'Ý': 'Y',\n 'Ŷ': 'Y',\n 'Ÿ': 'Y',\n 'Ẏ': 'Y',\n 'Ỵ': 'Y',\n 'Ỳ': 'Y',\n 'Ƴ': 'Y',\n 'Ỷ': 'Y',\n 'Ỿ': 'Y',\n 'Ȳ': 'Y',\n 'Ɏ': 'Y',\n 'Ỹ': 'Y',\n 'Ź': 'Z',\n 'Ž': 'Z',\n 'Ẑ': 'Z',\n 'Ⱬ': 'Z',\n 'Ż': 'Z',\n 'Ẓ': 'Z',\n 'Ȥ': 'Z',\n 'Ẕ': 'Z',\n 'Ƶ': 'Z',\n 'IJ': 'IJ',\n 'Œ': 'OE',\n 'ᴀ': 'A',\n 'ᴁ': 'AE',\n 'ʙ': 'B',\n 'ᴃ': 'B',\n 'ᴄ': 'C',\n 'ᴅ': 'D',\n 'ᴇ': 'E',\n 'ꜰ': 'F',\n 'ɢ': 'G',\n 'ʛ': 'G',\n 'ʜ': 'H',\n 'ɪ': 'I',\n 'ʁ': 'R',\n 'ᴊ': 'J',\n 'ᴋ': 'K',\n 'ʟ': 'L',\n 'ᴌ': 'L',\n 'ᴍ': 'M',\n 'ɴ': 'N',\n 'ᴏ': 'O',\n 'ɶ': 'OE',\n 'ᴐ': 'O',\n 'ᴕ': 'OU',\n 'ᴘ': 'P',\n 'ʀ': 'R',\n 'ᴎ': 'N',\n 'ᴙ': 'R',\n 'ꜱ': 'S',\n 'ᴛ': 'T',\n 'ⱻ': 'E',\n 'ᴚ': 'R',\n 'ᴜ': 'U',\n 'ᴠ': 'V',\n 'ᴡ': 'W',\n 'ʏ': 'Y',\n 'ᴢ': 'Z',\n 'á': 'a',\n 'ă': 'a',\n 'ắ': 'a',\n 'ặ': 'a',\n 'ằ': 'a',\n 'ẳ': 'a',\n 'ẵ': 'a',\n 'ǎ': 'a',\n 'â': 'a',\n 'ấ': 'a',\n 'ậ': 'a',\n 'ầ': 'a',\n 'ẩ': 'a',\n 'ẫ': 'a',\n 'ä': 'a',\n 'ǟ': 'a',\n 'ȧ': 'a',\n 'ǡ': 'a',\n 'ạ': 'a',\n 'ȁ': 'a',\n 'à': 'a',\n 'ả': 'a',\n 'ȃ': 'a',\n 'ā': 'a',\n 'ą': 'a',\n 'ᶏ': 'a',\n 'ẚ': 'a',\n 'å': 'a',\n 'ǻ': 'a',\n 'ḁ': 'a',\n 'ⱥ': 'a',\n 'ã': 'a',\n 'ꜳ': 'aa',\n 'æ': 'ae',\n 'ǽ': 'ae',\n 'ǣ': 'ae',\n 'ꜵ': 'ao',\n 'ꜷ': 'au',\n 'ꜹ': 'av',\n 'ꜻ': 'av',\n 'ꜽ': 'ay',\n 'ḃ': 'b',\n 'ḅ': 'b',\n 'ɓ': 'b',\n 'ḇ': 'b',\n 'ᵬ': 'b',\n 'ᶀ': 'b',\n 'ƀ': 'b',\n 'ƃ': 'b',\n 'ɵ': 'o',\n 'ć': 'c',\n 'č': 'c',\n 'ç': 'c',\n 'ḉ': 'c',\n 'ĉ': 'c',\n 'ɕ': 'c',\n 'ċ': 'c',\n 'ƈ': 'c',\n 'ȼ': 'c',\n 'ď': 'd',\n 'ḑ': 'd',\n 'ḓ': 'd',\n 'ȡ': 'd',\n 'ḋ': 'd',\n 'ḍ': 'd',\n 'ɗ': 'd',\n 'ᶑ': 'd',\n 'ḏ': 'd',\n 'ᵭ': 'd',\n 'ᶁ': 'd',\n 'đ': 'd',\n 'ɖ': 'd',\n 'ƌ': 'd',\n 'ı': 'i',\n 'ȷ': 'j',\n 'ɟ': 'j',\n 'ʄ': 'j',\n 'dz': 'dz',\n 'dž': 'dz',\n 'é': 'e',\n 'ĕ': 'e',\n 'ě': 'e',\n 'ȩ': 'e',\n 'ḝ': 'e',\n 'ê': 'e',\n 'ế': 'e',\n 'ệ': 'e',\n 'ề': 'e',\n 'ể': 'e',\n 'ễ': 'e',\n 'ḙ': 'e',\n 'ë': 'e',\n 'ė': 'e',\n 'ẹ': 'e',\n 'ȅ': 'e',\n 'è': 'e',\n 'ẻ': 'e',\n 'ȇ': 'e',\n 'ē': 'e',\n 'ḗ': 'e',\n 'ḕ': 'e',\n 'ⱸ': 'e',\n 'ę': 'e',\n 'ᶒ': 'e',\n 'ɇ': 'e',\n 'ẽ': 'e',\n 'ḛ': 'e',\n 'ꝫ': 'et',\n 'ḟ': 'f',\n 'ƒ': 'f',\n 'ᵮ': 'f',\n 'ᶂ': 'f',\n 'ǵ': 'g',\n 'ğ': 'g',\n 'ǧ': 'g',\n 'ģ': 'g',\n 'ĝ': 'g',\n 'ġ': 'g',\n 'ɠ': 'g',\n 'ḡ': 'g',\n 'ᶃ': 'g',\n 'ǥ': 'g',\n 'ḫ': 'h',\n 'ȟ': 'h',\n 'ḩ': 'h',\n 'ĥ': 'h',\n 'ⱨ': 'h',\n 'ḧ': 'h',\n 'ḣ': 'h',\n 'ḥ': 'h',\n 'ɦ': 'h',\n 'ẖ': 'h',\n 'ħ': 'h',\n 'ƕ': 'hv',\n 'í': 'i',\n 'ĭ': 'i',\n 'ǐ': 'i',\n 'î': 'i',\n 'ï': 'i',\n 'ḯ': 'i',\n 'ị': 'i',\n 'ȉ': 'i',\n 'ì': 'i',\n 'ỉ': 'i',\n 'ȋ': 'i',\n 'ī': 'i',\n 'į': 'i',\n 'ᶖ': 'i',\n 'ɨ': 'i',\n 'ĩ': 'i',\n 'ḭ': 'i',\n 'ꝺ': 'd',\n 'ꝼ': 'f',\n 'ᵹ': 'g',\n 'ꞃ': 'r',\n 'ꞅ': 's',\n 'ꞇ': 't',\n 'ꝭ': 'is',\n 'ǰ': 'j',\n 'ĵ': 'j',\n 'ʝ': 'j',\n 'ɉ': 'j',\n 'ḱ': 'k',\n 'ǩ': 'k',\n 'ķ': 'k',\n 'ⱪ': 'k',\n 'ꝃ': 'k',\n 'ḳ': 'k',\n 'ƙ': 'k',\n 'ḵ': 'k',\n 'ᶄ': 'k',\n 'ꝁ': 'k',\n 'ꝅ': 'k',\n 'ĺ': 'l',\n 'ƚ': 'l',\n 'ɬ': 'l',\n 'ľ': 'l',\n 'ļ': 'l',\n 'ḽ': 'l',\n 'ȴ': 'l',\n 'ḷ': 'l',\n 'ḹ': 'l',\n 'ⱡ': 'l',\n 'ꝉ': 'l',\n 'ḻ': 'l',\n 'ŀ': 'l',\n 'ɫ': 'l',\n 'ᶅ': 'l',\n 'ɭ': 'l',\n 'ł': 'l',\n 'lj': 'lj',\n 'ſ': 's',\n 'ẜ': 's',\n 'ẛ': 's',\n 'ẝ': 's',\n 'ḿ': 'm',\n 'ṁ': 'm',\n 'ṃ': 'm',\n 'ɱ': 'm',\n 'ᵯ': 'm',\n 'ᶆ': 'm',\n 'ń': 'n',\n 'ň': 'n',\n 'ņ': 'n',\n 'ṋ': 'n',\n 'ȵ': 'n',\n 'ṅ': 'n',\n 'ṇ': 'n',\n 'ǹ': 'n',\n 'ɲ': 'n',\n 'ṉ': 'n',\n 'ƞ': 'n',\n 'ᵰ': 'n',\n 'ᶇ': 'n',\n 'ɳ': 'n',\n 'ñ': 'n',\n 'nj': 'nj',\n 'ó': 'o',\n 'ŏ': 'o',\n 'ǒ': 'o',\n 'ô': 'o',\n 'ố': 'o',\n 'ộ': 'o',\n 'ồ': 'o',\n 'ổ': 'o',\n 'ỗ': 'o',\n 'ö': 'o',\n 'ȫ': 'o',\n 'ȯ': 'o',\n 'ȱ': 'o',\n 'ọ': 'o',\n 'ő': 'o',\n 'ȍ': 'o',\n 'ò': 'o',\n 'ỏ': 'o',\n 'ơ': 'o',\n 'ớ': 'o',\n 'ợ': 'o',\n 'ờ': 'o',\n 'ở': 'o',\n 'ỡ': 'o',\n 'ȏ': 'o',\n 'ꝋ': 'o',\n 'ꝍ': 'o',\n 'ⱺ': 'o',\n 'ō': 'o',\n 'ṓ': 'o',\n 'ṑ': 'o',\n 'ǫ': 'o',\n 'ǭ': 'o',\n 'ø': 'o',\n 'ǿ': 'o',\n 'õ': 'o',\n 'ṍ': 'o',\n 'ṏ': 'o',\n 'ȭ': 'o',\n 'ƣ': 'oi',\n 'ꝏ': 'oo',\n 'ɛ': 'e',\n 'ᶓ': 'e',\n 'ɔ': 'o',\n 'ᶗ': 'o',\n 'ȣ': 'ou',\n 'ṕ': 'p',\n 'ṗ': 'p',\n 'ꝓ': 'p',\n 'ƥ': 'p',\n 'ᵱ': 'p',\n 'ᶈ': 'p',\n 'ꝕ': 'p',\n 'ᵽ': 'p',\n 'ꝑ': 'p',\n 'ꝙ': 'q',\n 'ʠ': 'q',\n 'ɋ': 'q',\n 'ꝗ': 'q',\n 'ŕ': 'r',\n 'ř': 'r',\n 'ŗ': 'r',\n 'ṙ': 'r',\n 'ṛ': 'r',\n 'ṝ': 'r',\n 'ȑ': 'r',\n 'ɾ': 'r',\n 'ᵳ': 'r',\n 'ȓ': 'r',\n 'ṟ': 'r',\n 'ɼ': 'r',\n 'ᵲ': 'r',\n 'ᶉ': 'r',\n 'ɍ': 'r',\n 'ɽ': 'r',\n 'ↄ': 'c',\n 'ꜿ': 'c',\n 'ɘ': 'e',\n 'ɿ': 'r',\n 'ś': 's',\n 'ṥ': 's',\n 'š': 's',\n 'ṧ': 's',\n 'ş': 's',\n 'ŝ': 's',\n 'ș': 's',\n 'ṡ': 's',\n 'ṣ': 's',\n 'ṩ': 's',\n 'ʂ': 's',\n 'ᵴ': 's',\n 'ᶊ': 's',\n 'ȿ': 's',\n 'ɡ': 'g',\n 'ᴑ': 'o',\n 'ᴓ': 'o',\n 'ᴝ': 'u',\n 'ť': 't',\n 'ţ': 't',\n 'ṱ': 't',\n 'ț': 't',\n 'ȶ': 't',\n 'ẗ': 't',\n 'ⱦ': 't',\n 'ṫ': 't',\n 'ṭ': 't',\n 'ƭ': 't',\n 'ṯ': 't',\n 'ᵵ': 't',\n 'ƫ': 't',\n 'ʈ': 't',\n 'ŧ': 't',\n 'ᵺ': 'th',\n 'ɐ': 'a',\n 'ᴂ': 'ae',\n 'ǝ': 'e',\n 'ᵷ': 'g',\n 'ɥ': 'h',\n 'ʮ': 'h',\n 'ʯ': 'h',\n 'ᴉ': 'i',\n 'ʞ': 'k',\n 'ꞁ': 'l',\n 'ɯ': 'm',\n 'ɰ': 'm',\n 'ᴔ': 'oe',\n 'ɹ': 'r',\n 'ɻ': 'r',\n 'ɺ': 'r',\n 'ⱹ': 'r',\n 'ʇ': 't',\n 'ʌ': 'v',\n 'ʍ': 'w',\n 'ʎ': 'y',\n 'ꜩ': 'tz',\n 'ú': 'u',\n 'ŭ': 'u',\n 'ǔ': 'u',\n 'û': 'u',\n 'ṷ': 'u',\n 'ü': 'u',\n 'ǘ': 'u',\n 'ǚ': 'u',\n 'ǜ': 'u',\n 'ǖ': 'u',\n 'ṳ': 'u',\n 'ụ': 'u',\n 'ű': 'u',\n 'ȕ': 'u',\n 'ù': 'u',\n 'ủ': 'u',\n 'ư': 'u',\n 'ứ': 'u',\n 'ự': 'u',\n 'ừ': 'u',\n 'ử': 'u',\n 'ữ': 'u',\n 'ȗ': 'u',\n 'ū': 'u',\n 'ṻ': 'u',\n 'ų': 'u',\n 'ᶙ': 'u',\n 'ů': 'u',\n 'ũ': 'u',\n 'ṹ': 'u',\n 'ṵ': 'u',\n 'ᵫ': 'ue',\n 'ꝸ': 'um',\n 'ⱴ': 'v',\n 'ꝟ': 'v',\n 'ṿ': 'v',\n 'ʋ': 'v',\n 'ᶌ': 'v',\n 'ⱱ': 'v',\n 'ṽ': 'v',\n 'ꝡ': 'vy',\n 'ẃ': 'w',\n 'ŵ': 'w',\n 'ẅ': 'w',\n 'ẇ': 'w',\n 'ẉ': 'w',\n 'ẁ': 'w',\n 'ⱳ': 'w',\n 'ẘ': 'w',\n 'ẍ': 'x',\n 'ẋ': 'x',\n 'ᶍ': 'x',\n 'ý': 'y',\n 'ŷ': 'y',\n 'ÿ': 'y',\n 'ẏ': 'y',\n 'ỵ': 'y',\n 'ỳ': 'y',\n 'ƴ': 'y',\n 'ỷ': 'y',\n 'ỿ': 'y',\n 'ȳ': 'y',\n 'ẙ': 'y',\n 'ɏ': 'y',\n 'ỹ': 'y',\n 'ź': 'z',\n 'ž': 'z',\n 'ẑ': 'z',\n 'ʑ': 'z',\n 'ⱬ': 'z',\n 'ż': 'z',\n 'ẓ': 'z',\n 'ȥ': 'z',\n 'ẕ': 'z',\n 'ᵶ': 'z',\n 'ᶎ': 'z',\n 'ʐ': 'z',\n 'ƶ': 'z',\n 'ɀ': 'z',\n 'ff': 'ff',\n 'ffi': 'ffi',\n 'ffl': 'ffl',\n 'fi': 'fi',\n 'fl': 'fl',\n 'ij': 'ij',\n 'œ': 'oe',\n 'st': 'st',\n 'ₐ': 'a',\n 'ₑ': 'e',\n 'ᵢ': 'i',\n 'ⱼ': 'j',\n 'ₒ': 'o',\n 'ᵣ': 'r',\n 'ᵤ': 'u',\n 'ᵥ': 'v',\n 'ₓ': 'x'\n};\n//# sourceMappingURL=latin-map.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/typeahead/latin-map.js\n// module id = 729\n// module chunks = 1","var TypeaheadMatch = (function () {\n function TypeaheadMatch(item, value, header) {\n if (value === void 0) { value = item; }\n if (header === void 0) { header = false; }\n this.item = item;\n this.value = value;\n this.header = header;\n }\n TypeaheadMatch.prototype.isHeader = function () {\n return this.header;\n };\n TypeaheadMatch.prototype.toString = function () {\n return this.value;\n };\n return TypeaheadMatch;\n}());\nexport { TypeaheadMatch };\n//# sourceMappingURL=typeahead-match.class.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/typeahead/typeahead-match.class.js\n// module id = 730\n// module chunks = 1","/* tslint:disable:max-file-line-count */\nimport { ChangeDetectorRef, Directive, ElementRef, EventEmitter, HostListener, Input, Output, Renderer2, ViewContainerRef } from '@angular/core';\nimport { NgControl } from '@angular/forms';\nimport 'rxjs/add/observable/from';\nimport 'rxjs/add/operator/debounceTime';\nimport 'rxjs/add/operator/filter';\nimport 'rxjs/add/operator/map';\nimport 'rxjs/add/operator/switchMap';\nimport 'rxjs/add/operator/mergeMap';\nimport 'rxjs/add/operator/toArray';\nimport { Observable } from 'rxjs/Observable';\nimport { ComponentLoaderFactory } from '../component-loader/index';\nimport { TypeaheadContainerComponent } from './typeahead-container.component';\nimport { TypeaheadMatch } from './typeahead-match.class';\nimport { getValueFromObject, latinize, tokenize } from './typeahead-utils';\nvar TypeaheadDirective = (function () {\n function TypeaheadDirective(ngControl, element, viewContainerRef, renderer, cis, changeDetection) {\n this.ngControl = ngControl;\n this.element = element;\n this.renderer = renderer;\n this.changeDetection = changeDetection;\n /** minimal no of characters that needs to be entered before\n * typeahead kicks-in. When set to 0, typeahead shows on focus with full\n * list of options (limited as normal by typeaheadOptionsLimit)\n */\n this.typeaheadMinLength = void 0;\n /** should be used only in case of typeahead attribute is array.\n * If true - loading of options will be async, otherwise - sync.\n * true make sense if options array is large.\n */\n this.typeaheadAsync = void 0;\n /** match latin symbols.\n * If true the word súper would match super and vice versa.\n */\n this.typeaheadLatinize = true;\n /** Can be use to search words by inserting a single white space between each characters\n * for example 'C a l i f o r n i a' will match 'California'.\n */\n this.typeaheadSingleWords = true;\n /** should be used only in case typeaheadSingleWords attribute is true.\n * Sets the word delimiter to break words. Defaults to space.\n */\n this.typeaheadWordDelimiters = ' ';\n /** should be used only in case typeaheadSingleWords attribute is true.\n * Sets the word delimiter to match exact phrase.\n * Defaults to simple and double quotes.\n */\n this.typeaheadPhraseDelimiters = '\\'\"';\n /** specifies if typeahead is scrollable */\n this.typeaheadScrollable = false;\n /** specifies number of options to show in scroll view */\n this.typeaheadOptionsInScrollableView = 5;\n /** fired when 'busy' state of this component was changed,\n * fired on async mode only, returns boolean\n */\n this.typeaheadLoading = new EventEmitter();\n /** fired on every key event and returns true\n * in case of matches are not detected\n */\n this.typeaheadNoResults = new EventEmitter();\n /** fired when option was selected, return object with data of this option */\n this.typeaheadOnSelect = new EventEmitter();\n /** fired when blur event occurres. returns the active item */\n this.typeaheadOnBlur = new EventEmitter();\n /** This attribute indicates that the dropdown should be opened upwards */\n this.dropup = false;\n this.isTypeaheadOptionsListActive = false;\n this.keyUpEventEmitter = new EventEmitter();\n this.placement = 'bottom-left';\n this._subscriptions = [];\n this._typeahead = cis.createLoader(element, viewContainerRef, renderer);\n }\n TypeaheadDirective.prototype.ngOnInit = function () {\n this.typeaheadOptionsLimit = this.typeaheadOptionsLimit || 20;\n this.typeaheadMinLength =\n this.typeaheadMinLength === void 0 ? 1 : this.typeaheadMinLength;\n this.typeaheadWaitMs = this.typeaheadWaitMs || 0;\n // async should be false in case of array\n if (this.typeaheadAsync === undefined &&\n !(this.typeahead instanceof Observable)) {\n this.typeaheadAsync = false;\n }\n if (this.typeahead instanceof Observable) {\n this.typeaheadAsync = true;\n }\n if (this.typeaheadAsync) {\n this.asyncActions();\n }\n else {\n this.syncActions();\n }\n };\n TypeaheadDirective.prototype.onInput = function (e) {\n // For ``s, use the `value` property. For others that don't have a\n // `value` (such as ``), use either\n // `textContent` or `innerText` (depending on which one is supported, i.e.\n // Firefox or IE).\n var value = e.target.value !== undefined\n ? e.target.value\n : e.target.textContent !== undefined\n ? e.target.textContent\n : e.target.innerText;\n if (value != null && value.trim().length >= this.typeaheadMinLength) {\n this.typeaheadLoading.emit(true);\n this.keyUpEventEmitter.emit(e.target.value);\n }\n else {\n this.typeaheadLoading.emit(false);\n this.typeaheadNoResults.emit(false);\n this.hide();\n }\n };\n TypeaheadDirective.prototype.onChange = function (e) {\n if (this._container) {\n // esc\n if (e.keyCode === 27) {\n this.hide();\n return;\n }\n // up\n if (e.keyCode === 38) {\n this._container.prevActiveMatch();\n return;\n }\n // down\n if (e.keyCode === 40) {\n this._container.nextActiveMatch();\n return;\n }\n // enter, tab\n if (e.keyCode === 13) {\n this._container.selectActiveMatch();\n return;\n }\n }\n };\n TypeaheadDirective.prototype.onFocus = function () {\n if (this.typeaheadMinLength === 0) {\n this.typeaheadLoading.emit(true);\n this.keyUpEventEmitter.emit(this.element.nativeElement.value || '');\n }\n };\n TypeaheadDirective.prototype.onBlur = function () {\n if (this._container && !this._container.isFocused) {\n this.typeaheadOnBlur.emit(this._container.active);\n }\n };\n TypeaheadDirective.prototype.onKeydown = function (e) {\n // no container - no problems\n if (!this._container) {\n return;\n }\n // if an item is visible - prevent form submission\n if (e.keyCode === 13) {\n e.preventDefault();\n return;\n }\n // if an item is visible - don't change focus\n if (e.keyCode === 9) {\n e.preventDefault();\n this._container.selectActiveMatch();\n return;\n }\n };\n TypeaheadDirective.prototype.changeModel = function (match) {\n var valueStr = match.value;\n this.ngControl.viewToModelUpdate(valueStr);\n (this.ngControl.control).setValue(valueStr);\n this.changeDetection.markForCheck();\n this.hide();\n };\n Object.defineProperty(TypeaheadDirective.prototype, \"matches\", {\n get: function () {\n return this._matches;\n },\n enumerable: true,\n configurable: true\n });\n TypeaheadDirective.prototype.show = function () {\n var _this = this;\n this._typeahead\n .attach(TypeaheadContainerComponent)\n .to(this.container)\n .position({ attachment: (this.dropup ? 'top' : 'bottom') + \" left\" })\n .show({\n typeaheadRef: this,\n placement: this.placement,\n animation: false,\n dropup: this.dropup\n });\n this._outsideClickListener = this.renderer.listen('document', 'click', function (e) {\n if (_this.typeaheadMinLength === 0 && _this.element.nativeElement.contains(e.target)) {\n return;\n }\n _this.onOutsideClick();\n });\n this._container = this._typeahead.instance;\n this._container.parent = this;\n // This improves the speed as it won't have to be done for each list item\n var normalizedQuery = (this.typeaheadLatinize\n ? latinize(this.ngControl.control.value)\n : this.ngControl.control.value)\n .toString()\n .toLowerCase();\n this._container.query = this.typeaheadSingleWords\n ? tokenize(normalizedQuery, this.typeaheadWordDelimiters, this.typeaheadPhraseDelimiters)\n : normalizedQuery;\n this._container.matches = this._matches;\n this.element.nativeElement.focus();\n };\n TypeaheadDirective.prototype.hide = function () {\n if (this._typeahead.isShown) {\n this._typeahead.hide();\n this._outsideClickListener();\n this._container = null;\n }\n };\n TypeaheadDirective.prototype.onOutsideClick = function () {\n if (this._container && !this._container.isFocused) {\n this.hide();\n }\n };\n TypeaheadDirective.prototype.ngOnDestroy = function () {\n // clean up subscriptions\n for (var _i = 0, _a = this._subscriptions; _i < _a.length; _i++) {\n var sub = _a[_i];\n sub.unsubscribe();\n }\n this._typeahead.dispose();\n };\n TypeaheadDirective.prototype.asyncActions = function () {\n var _this = this;\n this._subscriptions.push(this.keyUpEventEmitter\n .debounceTime(this.typeaheadWaitMs)\n .switchMap(function () { return _this.typeahead; })\n .subscribe(function (matches) {\n _this.finalizeAsyncCall(matches);\n }));\n };\n TypeaheadDirective.prototype.syncActions = function () {\n var _this = this;\n this._subscriptions.push(this.keyUpEventEmitter\n .debounceTime(this.typeaheadWaitMs)\n .mergeMap(function (value) {\n var normalizedQuery = _this.normalizeQuery(value);\n return Observable.from(_this.typeahead)\n .filter(function (option) {\n return (option &&\n _this.testMatch(_this.normalizeOption(option), normalizedQuery));\n })\n .toArray();\n })\n .subscribe(function (matches) {\n _this.finalizeAsyncCall(matches);\n }));\n };\n TypeaheadDirective.prototype.normalizeOption = function (option) {\n var optionValue = getValueFromObject(option, this.typeaheadOptionField);\n var normalizedOption = this.typeaheadLatinize\n ? latinize(optionValue)\n : optionValue;\n return normalizedOption.toLowerCase();\n };\n TypeaheadDirective.prototype.normalizeQuery = function (value) {\n // If singleWords, break model here to not be doing extra work on each\n // iteration\n var normalizedQuery = (this.typeaheadLatinize\n ? latinize(value)\n : value)\n .toString()\n .toLowerCase();\n normalizedQuery = this.typeaheadSingleWords\n ? tokenize(normalizedQuery, this.typeaheadWordDelimiters, this.typeaheadPhraseDelimiters)\n : normalizedQuery;\n return normalizedQuery;\n };\n TypeaheadDirective.prototype.testMatch = function (match, test) {\n var spaceLength;\n if (typeof test === 'object') {\n spaceLength = test.length;\n for (var i = 0; i < spaceLength; i += 1) {\n if (test[i].length > 0 && match.indexOf(test[i]) < 0) {\n return false;\n }\n }\n return true;\n }\n return match.indexOf(test) >= 0;\n };\n TypeaheadDirective.prototype.finalizeAsyncCall = function (matches) {\n this.prepareMatches(matches);\n this.typeaheadLoading.emit(false);\n this.typeaheadNoResults.emit(!this.hasMatches());\n if (!this.hasMatches()) {\n this.hide();\n return;\n }\n if (this._container) {\n // This improves the speed as it won't have to be done for each list item\n var normalizedQuery = (this.typeaheadLatinize\n ? latinize(this.ngControl.control.value)\n : this.ngControl.control.value)\n .toString()\n .toLowerCase();\n this._container.query = this.typeaheadSingleWords\n ? tokenize(normalizedQuery, this.typeaheadWordDelimiters, this.typeaheadPhraseDelimiters)\n : normalizedQuery;\n this._container.matches = this._matches;\n }\n else {\n this.show();\n }\n };\n TypeaheadDirective.prototype.prepareMatches = function (options) {\n var _this = this;\n var limited = options.slice(0, this.typeaheadOptionsLimit);\n if (this.typeaheadGroupField) {\n var matches_1 = [];\n // extract all group names\n var groups = limited\n .map(function (option) {\n return getValueFromObject(option, _this.typeaheadGroupField);\n })\n .filter(function (v, i, a) { return a.indexOf(v) === i; });\n groups.forEach(function (group) {\n // add group header to array of matches\n matches_1.push(new TypeaheadMatch(group, group, true));\n // add each item of group to array of matches\n matches_1 = matches_1.concat(limited\n .filter(function (option) {\n return getValueFromObject(option, _this.typeaheadGroupField) === group;\n })\n .map(function (option) {\n return new TypeaheadMatch(option, getValueFromObject(option, _this.typeaheadOptionField));\n }));\n });\n this._matches = matches_1;\n }\n else {\n this._matches = limited.map(function (option) {\n return new TypeaheadMatch(option, getValueFromObject(option, _this.typeaheadOptionField));\n });\n }\n };\n TypeaheadDirective.prototype.hasMatches = function () {\n return this._matches.length > 0;\n };\n TypeaheadDirective.decorators = [\n { type: Directive, args: [{ selector: '[typeahead]', exportAs: 'bs-typeahead' },] },\n ];\n /** @nocollapse */\n TypeaheadDirective.ctorParameters = function () { return [\n { type: NgControl, },\n { type: ElementRef, },\n { type: ViewContainerRef, },\n { type: Renderer2, },\n { type: ComponentLoaderFactory, },\n { type: ChangeDetectorRef, },\n ]; };\n TypeaheadDirective.propDecorators = {\n 'typeahead': [{ type: Input },],\n 'typeaheadMinLength': [{ type: Input },],\n 'typeaheadWaitMs': [{ type: Input },],\n 'typeaheadOptionsLimit': [{ type: Input },],\n 'typeaheadOptionField': [{ type: Input },],\n 'typeaheadGroupField': [{ type: Input },],\n 'typeaheadAsync': [{ type: Input },],\n 'typeaheadLatinize': [{ type: Input },],\n 'typeaheadSingleWords': [{ type: Input },],\n 'typeaheadWordDelimiters': [{ type: Input },],\n 'typeaheadPhraseDelimiters': [{ type: Input },],\n 'typeaheadItemTemplate': [{ type: Input },],\n 'optionsListTemplate': [{ type: Input },],\n 'typeaheadScrollable': [{ type: Input },],\n 'typeaheadOptionsInScrollableView': [{ type: Input },],\n 'typeaheadLoading': [{ type: Output },],\n 'typeaheadNoResults': [{ type: Output },],\n 'typeaheadOnSelect': [{ type: Output },],\n 'typeaheadOnBlur': [{ type: Output },],\n 'container': [{ type: Input },],\n 'dropup': [{ type: Input },],\n 'onInput': [{ type: HostListener, args: ['input', ['$event'],] },],\n 'onChange': [{ type: HostListener, args: ['keyup', ['$event'],] },],\n 'onFocus': [{ type: HostListener, args: ['click',] }, { type: HostListener, args: ['focus',] },],\n 'onBlur': [{ type: HostListener, args: ['blur',] },],\n 'onKeydown': [{ type: HostListener, args: ['keydown', ['$event'],] },],\n };\n return TypeaheadDirective;\n}());\nexport { TypeaheadDirective };\n//# sourceMappingURL=typeahead.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/typeahead/typeahead.directive.js\n// module id = 731\n// module chunks = 1","import { Directive, ElementRef, Input, Output, Renderer2, ViewContainerRef } from '@angular/core';\nimport { PopoverConfig } from './popover.config';\nimport { ComponentLoaderFactory } from '../component-loader/index';\nimport { PopoverContainerComponent } from './popover-container.component';\n/**\n * A lightweight, extensible directive for fancy popover creation.\n */\nvar PopoverDirective = (function () {\n function PopoverDirective(_elementRef, _renderer, _viewContainerRef, _config, cis) {\n /**\n * Close popover on outside click\n */\n this.outsideClick = false;\n /**\n * Css class for popover container\n */\n this.containerClass = '';\n this._isInited = false;\n this._popover = cis\n .createLoader(_elementRef, _viewContainerRef, _renderer)\n .provide({ provide: PopoverConfig, useValue: _config });\n Object.assign(this, _config);\n this.onShown = this._popover.onShown;\n this.onHidden = this._popover.onHidden;\n // fix: no focus on button on Mac OS #1795\n if (typeof window !== 'undefined') {\n _elementRef.nativeElement.addEventListener('click', function () {\n try {\n _elementRef.nativeElement.focus();\n }\n catch (err) {\n return;\n }\n });\n }\n }\n Object.defineProperty(PopoverDirective.prototype, \"isOpen\", {\n /**\n * Returns whether or not the popover is currently being shown\n */\n get: function () {\n return this._popover.isShown;\n },\n set: function (value) {\n if (value) {\n this.show();\n }\n else {\n this.hide();\n }\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Opens an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n PopoverDirective.prototype.show = function () {\n if (this._popover.isShown || !this.popover) {\n return;\n }\n this._popover\n .attach(PopoverContainerComponent)\n .to(this.container)\n .position({ attachment: this.placement })\n .show({\n content: this.popover,\n context: this.popoverContext,\n placement: this.placement,\n title: this.popoverTitle,\n containerClass: this.containerClass\n });\n this.isOpen = true;\n };\n /**\n * Closes an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n PopoverDirective.prototype.hide = function () {\n if (this.isOpen) {\n this._popover.hide();\n this.isOpen = false;\n }\n };\n /**\n * Toggles an element’s popover. This is considered a “manual” triggering of\n * the popover.\n */\n PopoverDirective.prototype.toggle = function () {\n if (this.isOpen) {\n return this.hide();\n }\n this.show();\n };\n PopoverDirective.prototype.ngOnInit = function () {\n var _this = this;\n // fix: seems there are an issue with `routerLinkActive`\n // which result in duplicated call ngOnInit without call to ngOnDestroy\n // read more: https://github.com/valor-software/ngx-bootstrap/issues/1885\n if (this._isInited) {\n return;\n }\n this._isInited = true;\n this._popover.listen({\n triggers: this.triggers,\n outsideClick: this.outsideClick,\n show: function () { return _this.show(); }\n });\n };\n PopoverDirective.prototype.ngOnDestroy = function () {\n this._popover.dispose();\n };\n PopoverDirective.decorators = [\n { type: Directive, args: [{ selector: '[popover]', exportAs: 'bs-popover' },] },\n ];\n /** @nocollapse */\n PopoverDirective.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Renderer2, },\n { type: ViewContainerRef, },\n { type: PopoverConfig, },\n { type: ComponentLoaderFactory, },\n ]; };\n PopoverDirective.propDecorators = {\n 'popover': [{ type: Input },],\n 'popoverContext': [{ type: Input },],\n 'popoverTitle': [{ type: Input },],\n 'placement': [{ type: Input },],\n 'outsideClick': [{ type: Input },],\n 'triggers': [{ type: Input },],\n 'container': [{ type: Input },],\n 'containerClass': [{ type: Input },],\n 'isOpen': [{ type: Input },],\n 'onShown': [{ type: Output },],\n 'onHidden': [{ type: Output },],\n };\n return PopoverDirective;\n}());\nexport { PopoverDirective };\n//# sourceMappingURL=popover.directive.js.map\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/ngx-bootstrap/popover/popover.directive.js\n// module id = 732\n// module chunks = 1","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, Directive, ElementRef, EventEmitter, Inject, Injectable, InjectionToken, Injector, Input, NgModule, Optional, SkipSelf, TemplateRef, ViewChild, ViewEncapsulation } from '@angular/core';\nimport { CommonModule, DOCUMENT, Location } from '@angular/common';\nimport { Overlay, OverlayConfig, OverlayContainer, OverlayModule } from '@angular/cdk/overlay';\nimport { BasePortalOutlet, CdkPortalOutlet, ComponentPortal, PortalInjector, PortalModule, TemplatePortal } from '@angular/cdk/portal';\nimport { A11yModule, FocusTrapFactory } from '@angular/cdk/a11y';\nimport { MatCommonModule } from '@angular/material/core';\nimport { __assign, __extends } from 'tslib';\nimport * as tslib_1 from 'tslib';\nimport { Directionality } from '@angular/cdk/bidi';\nimport { defer } from 'rxjs/observable/defer';\nimport { of } from 'rxjs/observable/of';\nimport { startWith } from 'rxjs/operators/startWith';\nimport { Subject } from 'rxjs/Subject';\nimport { animate, state, style, transition, trigger } from '@angular/animations';\nimport { ESCAPE } from '@angular/cdk/keycodes';\nimport { filter } from 'rxjs/operators/filter';\nimport { take } from 'rxjs/operators/take';\nimport { Subscription } from 'rxjs/Subscription';\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Possible overrides for a dialog's position.\n * @record\n */\n\n/**\n * Configuration for opening a modal dialog with the MatDialog service.\n * @template D\n */\nvar MatDialogConfig = /** @class */ (function () {\n function MatDialogConfig() {\n /**\n * The ARIA role of the dialog element.\n */\n this.role = 'dialog';\n /**\n * Custom class for the overlay pane.\n */\n this.panelClass = '';\n /**\n * Whether the dialog has a backdrop.\n */\n this.hasBackdrop = true;\n /**\n * Custom class for the backdrop,\n */\n this.backdropClass = '';\n /**\n * Whether the user can use escape or clicking outside to close a modal.\n */\n this.disableClose = false;\n /**\n * Width of the dialog.\n */\n this.width = '';\n /**\n * Height of the dialog.\n */\n this.height = '';\n /**\n * Max-width of the dialog. If a number is provided, pixel units are assumed. Defaults to 80vw\n */\n this.maxWidth = '80vw';\n /**\n * Data being injected into the child component.\n */\n this.data = null;\n /**\n * Layout direction for the dialog's content.\n */\n this.direction = 'ltr';\n /**\n * ID of the element that describes the dialog.\n */\n this.ariaDescribedBy = null;\n /**\n * Aria label to assign to the dialog element\n */\n this.ariaLabel = null;\n /**\n * Whether the dialog should focus the first focusable element on open.\n */\n this.autoFocus = true;\n /**\n * Whether the dialog should close when the user goes backwards/forwards in history.\n */\n this.closeOnNavigation = true;\n }\n return MatDialogConfig;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Animations used by MatDialog.\n */\nvar matDialogAnimations = {\n /** Animation that slides the dialog in and out of view and fades the opacity. */\n slideDialog: trigger('slideDialog', [\n // Note: The `enter` animation doesn't transition to something like `translate3d(0, 0, 0)\n // scale(1)`, because for some reason specifying the transform explicitly, causes IE both\n // to blur the dialog content and decimate the animation performance. Leaving it as `none`\n // solves both issues.\n state('enter', style({ transform: 'none', opacity: 1 })),\n state('void', style({ transform: 'translate3d(0, 25%, 0) scale(0.9)', opacity: 0 })),\n state('exit', style({ transform: 'translate3d(0, 25%, 0)', opacity: 0 })),\n transition('* => *', animate('400ms cubic-bezier(0.25, 0.8, 0.25, 1)')),\n ])\n};\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Throws an exception for the case when a ComponentPortal is\n * attached to a DomPortalOutlet without an origin.\n * \\@docs-private\n * @return {?}\n */\nfunction throwMatDialogContentAlreadyAttachedError() {\n throw Error('Attempting to attach dialog content after content is already attached');\n}\n/**\n * Internal component that wraps user-provided dialog content.\n * Animation is based on https://material.io/guidelines/motion/choreography.html.\n * \\@docs-private\n */\nvar MatDialogContainer = /** @class */ (function (_super) {\n __extends(MatDialogContainer, _super);\n function MatDialogContainer(_elementRef, _focusTrapFactory, _changeDetectorRef, _document) {\n var _this = _super.call(this) || this;\n _this._elementRef = _elementRef;\n _this._focusTrapFactory = _focusTrapFactory;\n _this._changeDetectorRef = _changeDetectorRef;\n _this._document = _document;\n /**\n * Element that was focused before the dialog was opened. Save this to restore upon close.\n */\n _this._elementFocusedBeforeDialogWasOpened = null;\n /**\n * State of the dialog animation.\n */\n _this._state = 'enter';\n /**\n * Emits when an animation state changes.\n */\n _this._animationStateChanged = new EventEmitter();\n /**\n * ID of the element that should be considered as the dialog's label.\n */\n _this._ariaLabelledBy = null;\n return _this;\n }\n /**\n * Attach a ComponentPortal as content to this dialog container.\n * @param portal Portal to be attached as the dialog content.\n */\n /**\n * Attach a ComponentPortal as content to this dialog container.\n * @template T\n * @param {?} portal Portal to be attached as the dialog content.\n * @return {?}\n */\n MatDialogContainer.prototype.attachComponentPortal = /**\n * Attach a ComponentPortal as content to this dialog container.\n * @template T\n * @param {?} portal Portal to be attached as the dialog content.\n * @return {?}\n */\n function (portal) {\n if (this._portalOutlet.hasAttached()) {\n throwMatDialogContentAlreadyAttachedError();\n }\n this._savePreviouslyFocusedElement();\n return this._portalOutlet.attachComponentPortal(portal);\n };\n /**\n * Attach a TemplatePortal as content to this dialog container.\n * @param portal Portal to be attached as the dialog content.\n */\n /**\n * Attach a TemplatePortal as content to this dialog container.\n * @template C\n * @param {?} portal Portal to be attached as the dialog content.\n * @return {?}\n */\n MatDialogContainer.prototype.attachTemplatePortal = /**\n * Attach a TemplatePortal as content to this dialog container.\n * @template C\n * @param {?} portal Portal to be attached as the dialog content.\n * @return {?}\n */\n function (portal) {\n if (this._portalOutlet.hasAttached()) {\n throwMatDialogContentAlreadyAttachedError();\n }\n this._savePreviouslyFocusedElement();\n return this._portalOutlet.attachTemplatePortal(portal);\n };\n /**\n * Moves the focus inside the focus trap.\n * @return {?}\n */\n MatDialogContainer.prototype._trapFocus = /**\n * Moves the focus inside the focus trap.\n * @return {?}\n */\n function () {\n if (!this._focusTrap) {\n this._focusTrap = this._focusTrapFactory.create(this._elementRef.nativeElement);\n }\n // If were to attempt to focus immediately, then the content of the dialog would not yet be\n // ready in instances where change detection has to run first. To deal with this, we simply\n // wait for the microtask queue to be empty.\n if (this._config.autoFocus) {\n this._focusTrap.focusInitialElementWhenReady();\n }\n };\n /**\n * Restores focus to the element that was focused before the dialog opened.\n * @return {?}\n */\n MatDialogContainer.prototype._restoreFocus = /**\n * Restores focus to the element that was focused before the dialog opened.\n * @return {?}\n */\n function () {\n var /** @type {?} */ toFocus = this._elementFocusedBeforeDialogWasOpened;\n // We need the extra check, because IE can set the `activeElement` to null in some cases.\n if (toFocus && typeof toFocus.focus === 'function') {\n toFocus.focus();\n }\n if (this._focusTrap) {\n this._focusTrap.destroy();\n }\n };\n /**\n * Saves a reference to the element that was focused before the dialog was opened.\n * @return {?}\n */\n MatDialogContainer.prototype._savePreviouslyFocusedElement = /**\n * Saves a reference to the element that was focused before the dialog was opened.\n * @return {?}\n */\n function () {\n var _this = this;\n if (this._document) {\n this._elementFocusedBeforeDialogWasOpened = /** @type {?} */ (this._document.activeElement);\n // Note that there is no focus method when rendering on the server.\n if (this._elementRef.nativeElement.focus) {\n // Move focus onto the dialog immediately in order to prevent the user from accidentally\n // opening multiple dialogs at the same time. Needs to be async, because the element\n // may not be focusable immediately.\n Promise.resolve().then(function () { return _this._elementRef.nativeElement.focus(); });\n }\n }\n };\n /** Callback, invoked whenever an animation on the host completes. */\n /**\n * Callback, invoked whenever an animation on the host completes.\n * @param {?} event\n * @return {?}\n */\n MatDialogContainer.prototype._onAnimationDone = /**\n * Callback, invoked whenever an animation on the host completes.\n * @param {?} event\n * @return {?}\n */\n function (event) {\n if (event.toState === 'enter') {\n this._trapFocus();\n }\n else if (event.toState === 'exit') {\n this._restoreFocus();\n }\n this._animationStateChanged.emit(event);\n };\n /** Callback, invoked when an animation on the host starts. */\n /**\n * Callback, invoked when an animation on the host starts.\n * @param {?} event\n * @return {?}\n */\n MatDialogContainer.prototype._onAnimationStart = /**\n * Callback, invoked when an animation on the host starts.\n * @param {?} event\n * @return {?}\n */\n function (event) {\n this._animationStateChanged.emit(event);\n };\n /** Starts the dialog exit animation. */\n /**\n * Starts the dialog exit animation.\n * @return {?}\n */\n MatDialogContainer.prototype._startExitAnimation = /**\n * Starts the dialog exit animation.\n * @return {?}\n */\n function () {\n this._state = 'exit';\n // Mark the container for check so it can react if the\n // view container is using OnPush change detection.\n this._changeDetectorRef.markForCheck();\n };\n MatDialogContainer.decorators = [\n { type: Component, args: [{selector: 'mat-dialog-container',\n template: \"\",\n styles: [\".mat-dialog-container{box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);display:block;padding:24px;border-radius:2px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%}@media screen and (-ms-high-contrast:active){.mat-dialog-container{outline:solid 1px}}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:12px 0;display:flex;flex-wrap:wrap;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button+.mat-button,.mat-dialog-actions .mat-button+.mat-raised-button,.mat-dialog-actions .mat-raised-button+.mat-button,.mat-dialog-actions .mat-raised-button+.mat-raised-button{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button+.mat-button,[dir=rtl] .mat-dialog-actions .mat-button+.mat-raised-button,[dir=rtl] .mat-dialog-actions .mat-raised-button+.mat-button,[dir=rtl] .mat-dialog-actions .mat-raised-button+.mat-raised-button{margin-left:0;margin-right:8px}\"],\n encapsulation: ViewEncapsulation.None,\n preserveWhitespaces: false,\n // Using OnPush for dialogs caused some G3 sync issues. Disabled until we can track them down.\n // tslint:disable-next-line:validate-decorators\n changeDetection: ChangeDetectionStrategy.Default,\n animations: [matDialogAnimations.slideDialog],\n host: {\n 'class': 'mat-dialog-container',\n 'tabindex': '-1',\n '[attr.id]': '_id',\n '[attr.role]': '_config?.role',\n '[attr.aria-labelledby]': '_config?.ariaLabel ? null : _ariaLabelledBy',\n '[attr.aria-label]': '_config?.ariaLabel',\n '[attr.aria-describedby]': '_config?.ariaDescribedBy || null',\n '[@slideDialog]': '_state',\n '(@slideDialog.start)': '_onAnimationStart($event)',\n '(@slideDialog.done)': '_onAnimationDone($event)',\n },\n },] },\n ];\n /** @nocollapse */\n MatDialogContainer.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: FocusTrapFactory, },\n { type: ChangeDetectorRef, },\n { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [DOCUMENT,] },] },\n ]; };\n MatDialogContainer.propDecorators = {\n \"_portalOutlet\": [{ type: ViewChild, args: [CdkPortalOutlet,] },],\n };\n return MatDialogContainer;\n}(BasePortalOutlet));\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n// TODO(jelbourn): resizing\n// Counter for unique dialog ids.\nvar uniqueId = 0;\n/**\n * Reference to a dialog opened via the MatDialog service.\n * @template T, R\n */\nvar MatDialogRef = /** @class */ (function () {\n function MatDialogRef(_overlayRef, _containerInstance, location, id) {\n if (id === void 0) { id = \"mat-dialog-\" + uniqueId++; }\n var _this = this;\n this._overlayRef = _overlayRef;\n this._containerInstance = _containerInstance;\n this.id = id;\n /**\n * Whether the user is allowed to close the dialog.\n */\n this.disableClose = this._containerInstance._config.disableClose;\n /**\n * Subject for notifying the user that the dialog has finished opening.\n */\n this._afterOpen = new Subject();\n /**\n * Subject for notifying the user that the dialog has finished closing.\n */\n this._afterClosed = new Subject();\n /**\n * Subject for notifying the user that the dialog has started closing.\n */\n this._beforeClose = new Subject();\n /**\n * Subscription to changes in the user's location.\n */\n this._locationChanges = Subscription.EMPTY;\n // Pass the id along to the container.\n _containerInstance._id = id;\n // Emit when opening animation completes\n _containerInstance._animationStateChanged.pipe(filter(function (event) { return event.phaseName === 'done' && event.toState === 'enter'; }), take(1))\n .subscribe(function () {\n _this._afterOpen.next();\n _this._afterOpen.complete();\n });\n // Dispose overlay when closing animation is complete\n _containerInstance._animationStateChanged.pipe(filter(function (event) { return event.phaseName === 'done' && event.toState === 'exit'; }), take(1))\n .subscribe(function () {\n _this._overlayRef.dispose();\n _this._locationChanges.unsubscribe();\n _this._afterClosed.next(_this._result);\n _this._afterClosed.complete();\n _this.componentInstance = /** @type {?} */ ((null));\n });\n _overlayRef.keydownEvents()\n .pipe(filter(function (event) { return event.keyCode === ESCAPE && !_this.disableClose; }))\n .subscribe(function () { return _this.close(); });\n if (location) {\n // Close the dialog when the user goes forwards/backwards in history or when the location\n // hash changes. Note that this usually doesn't include clicking on links (unless the user\n // is using the `HashLocationStrategy`).\n this._locationChanges = location.subscribe(function () {\n if (_this._containerInstance._config.closeOnNavigation) {\n _this.close();\n }\n });\n }\n }\n /**\n * Close the dialog.\n * @param dialogResult Optional result to return to the dialog opener.\n */\n /**\n * Close the dialog.\n * @param {?=} dialogResult Optional result to return to the dialog opener.\n * @return {?}\n */\n MatDialogRef.prototype.close = /**\n * Close the dialog.\n * @param {?=} dialogResult Optional result to return to the dialog opener.\n * @return {?}\n */\n function (dialogResult) {\n var _this = this;\n this._result = dialogResult;\n // Transition the backdrop in parallel to the dialog.\n this._containerInstance._animationStateChanged.pipe(filter(function (event) { return event.phaseName === 'start'; }), take(1))\n .subscribe(function () {\n _this._beforeClose.next(dialogResult);\n _this._beforeClose.complete();\n _this._overlayRef.detachBackdrop();\n });\n this._containerInstance._startExitAnimation();\n };\n /**\n * Gets an observable that is notified when the dialog is finished opening.\n */\n /**\n * Gets an observable that is notified when the dialog is finished opening.\n * @return {?}\n */\n MatDialogRef.prototype.afterOpen = /**\n * Gets an observable that is notified when the dialog is finished opening.\n * @return {?}\n */\n function () {\n return this._afterOpen.asObservable();\n };\n /**\n * Gets an observable that is notified when the dialog is finished closing.\n */\n /**\n * Gets an observable that is notified when the dialog is finished closing.\n * @return {?}\n */\n MatDialogRef.prototype.afterClosed = /**\n * Gets an observable that is notified when the dialog is finished closing.\n * @return {?}\n */\n function () {\n return this._afterClosed.asObservable();\n };\n /**\n * Gets an observable that is notified when the dialog has started closing.\n */\n /**\n * Gets an observable that is notified when the dialog has started closing.\n * @return {?}\n */\n MatDialogRef.prototype.beforeClose = /**\n * Gets an observable that is notified when the dialog has started closing.\n * @return {?}\n */\n function () {\n return this._beforeClose.asObservable();\n };\n /**\n * Gets an observable that emits when the overlay's backdrop has been clicked.\n */\n /**\n * Gets an observable that emits when the overlay's backdrop has been clicked.\n * @return {?}\n */\n MatDialogRef.prototype.backdropClick = /**\n * Gets an observable that emits when the overlay's backdrop has been clicked.\n * @return {?}\n */\n function () {\n return this._overlayRef.backdropClick();\n };\n /**\n * Gets an observable that emits when keydown events are targeted on the overlay.\n */\n /**\n * Gets an observable that emits when keydown events are targeted on the overlay.\n * @return {?}\n */\n MatDialogRef.prototype.keydownEvents = /**\n * Gets an observable that emits when keydown events are targeted on the overlay.\n * @return {?}\n */\n function () {\n return this._overlayRef.keydownEvents();\n };\n /**\n * Updates the dialog's position.\n * @param position New dialog position.\n */\n /**\n * Updates the dialog's position.\n * @param {?=} position New dialog position.\n * @return {?}\n */\n MatDialogRef.prototype.updatePosition = /**\n * Updates the dialog's position.\n * @param {?=} position New dialog position.\n * @return {?}\n */\n function (position) {\n var /** @type {?} */ strategy = this._getPositionStrategy();\n if (position && (position.left || position.right)) {\n position.left ? strategy.left(position.left) : strategy.right(position.right);\n }\n else {\n strategy.centerHorizontally();\n }\n if (position && (position.top || position.bottom)) {\n position.top ? strategy.top(position.top) : strategy.bottom(position.bottom);\n }\n else {\n strategy.centerVertically();\n }\n this._overlayRef.updatePosition();\n return this;\n };\n /**\n * Updates the dialog's width and height.\n * @param width New width of the dialog.\n * @param height New height of the dialog.\n */\n /**\n * Updates the dialog's width and height.\n * @param {?=} width New width of the dialog.\n * @param {?=} height New height of the dialog.\n * @return {?}\n */\n MatDialogRef.prototype.updateSize = /**\n * Updates the dialog's width and height.\n * @param {?=} width New width of the dialog.\n * @param {?=} height New height of the dialog.\n * @return {?}\n */\n function (width, height) {\n if (width === void 0) { width = 'auto'; }\n if (height === void 0) { height = 'auto'; }\n this._getPositionStrategy().width(width).height(height);\n this._overlayRef.updatePosition();\n return this;\n };\n /**\n * Fetches the position strategy object from the overlay ref.\n * @return {?}\n */\n MatDialogRef.prototype._getPositionStrategy = /**\n * Fetches the position strategy object from the overlay ref.\n * @return {?}\n */\n function () {\n return /** @type {?} */ (this._overlayRef.getConfig().positionStrategy);\n };\n return MatDialogRef;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Injection token that can be used to access the data that was passed in to a dialog.\n */\nvar MAT_DIALOG_DATA = new InjectionToken('MatDialogData');\n/**\n * Injection token that can be used to specify default dialog options.\n */\nvar MAT_DIALOG_DEFAULT_OPTIONS = new InjectionToken('mat-dialog-default-options');\n/**\n * Injection token that determines the scroll handling while the dialog is open.\n */\nvar MAT_DIALOG_SCROLL_STRATEGY = new InjectionToken('mat-dialog-scroll-strategy');\n/**\n * \\@docs-private\n * @param {?} overlay\n * @return {?}\n */\nfunction MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY(overlay) {\n return function () { return overlay.scrollStrategies.block(); };\n}\n/**\n * \\@docs-private\n */\nvar MAT_DIALOG_SCROLL_STRATEGY_PROVIDER = {\n provide: MAT_DIALOG_SCROLL_STRATEGY,\n deps: [Overlay],\n useFactory: MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY,\n};\n/**\n * Service to open Material Design modal dialogs.\n */\nvar MatDialog = /** @class */ (function () {\n function MatDialog(_overlay, _injector, _location, _defaultOptions, _scrollStrategy, _parentDialog, _overlayContainer) {\n var _this = this;\n this._overlay = _overlay;\n this._injector = _injector;\n this._location = _location;\n this._defaultOptions = _defaultOptions;\n this._scrollStrategy = _scrollStrategy;\n this._parentDialog = _parentDialog;\n this._overlayContainer = _overlayContainer;\n this._openDialogsAtThisLevel = [];\n this._afterAllClosedAtThisLevel = new Subject();\n this._afterOpenAtThisLevel = new Subject();\n this._ariaHiddenElements = new Map();\n /**\n * Stream that emits when all open dialog have finished closing.\n * Will emit on subscribe if there are no open dialogs to begin with.\n */\n this.afterAllClosed = defer(function () {\n return _this.openDialogs.length ?\n _this._afterAllClosed :\n _this._afterAllClosed.pipe(startWith(undefined));\n });\n }\n Object.defineProperty(MatDialog.prototype, \"openDialogs\", {\n /** Keeps track of the currently-open dialogs. */\n get: /**\n * Keeps track of the currently-open dialogs.\n * @return {?}\n */\n function () {\n return this._parentDialog ? this._parentDialog.openDialogs : this._openDialogsAtThisLevel;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatDialog.prototype, \"afterOpen\", {\n /** Stream that emits when a dialog has been opened. */\n get: /**\n * Stream that emits when a dialog has been opened.\n * @return {?}\n */\n function () {\n return this._parentDialog ? this._parentDialog.afterOpen : this._afterOpenAtThisLevel;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatDialog.prototype, \"_afterAllClosed\", {\n get: /**\n * @return {?}\n */\n function () {\n var /** @type {?} */ parent = this._parentDialog;\n return parent ? parent._afterAllClosed : this._afterAllClosedAtThisLevel;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Opens a modal dialog containing the given component.\n * @param componentOrTemplateRef Type of the component to load into the dialog,\n * or a TemplateRef to instantiate as the dialog content.\n * @param config Extra configuration options.\n * @returns Reference to the newly-opened dialog.\n */\n /**\n * Opens a modal dialog containing the given component.\n * @template T, D\n * @param {?} componentOrTemplateRef Type of the component to load into the dialog,\n * or a TemplateRef to instantiate as the dialog content.\n * @param {?=} config Extra configuration options.\n * @return {?} Reference to the newly-opened dialog.\n */\n MatDialog.prototype.open = /**\n * Opens a modal dialog containing the given component.\n * @template T, D\n * @param {?} componentOrTemplateRef Type of the component to load into the dialog,\n * or a TemplateRef to instantiate as the dialog content.\n * @param {?=} config Extra configuration options.\n * @return {?} Reference to the newly-opened dialog.\n */\n function (componentOrTemplateRef, config) {\n var _this = this;\n config = _applyConfigDefaults(config, this._defaultOptions || new MatDialogConfig());\n if (config.id && this.getDialogById(config.id)) {\n throw Error(\"Dialog with id \\\"\" + config.id + \"\\\" exists already. The dialog id must be unique.\");\n }\n var /** @type {?} */ overlayRef = this._createOverlay(config);\n var /** @type {?} */ dialogContainer = this._attachDialogContainer(overlayRef, config);\n var /** @type {?} */ dialogRef = this._attachDialogContent(componentOrTemplateRef, dialogContainer, overlayRef, config);\n // If this is the first dialog that we're opening, hide all the non-overlay content.\n if (!this.openDialogs.length) {\n this._hideNonDialogContentFromAssistiveTechnology();\n }\n this.openDialogs.push(dialogRef);\n dialogRef.afterClosed().subscribe(function () { return _this._removeOpenDialog(dialogRef); });\n this.afterOpen.next(dialogRef);\n return dialogRef;\n };\n /**\n * Closes all of the currently-open dialogs.\n */\n /**\n * Closes all of the currently-open dialogs.\n * @return {?}\n */\n MatDialog.prototype.closeAll = /**\n * Closes all of the currently-open dialogs.\n * @return {?}\n */\n function () {\n var /** @type {?} */ i = this.openDialogs.length;\n while (i--) {\n // The `_openDialogs` property isn't updated after close until the rxjs subscription\n // runs on the next microtask, in addition to modifying the array as we're going\n // through it. We loop through all of them and call close without assuming that\n // they'll be removed from the list instantaneously.\n this.openDialogs[i].close();\n }\n };\n /**\n * Finds an open dialog by its id.\n * @param id ID to use when looking up the dialog.\n */\n /**\n * Finds an open dialog by its id.\n * @param {?} id ID to use when looking up the dialog.\n * @return {?}\n */\n MatDialog.prototype.getDialogById = /**\n * Finds an open dialog by its id.\n * @param {?} id ID to use when looking up the dialog.\n * @return {?}\n */\n function (id) {\n return this.openDialogs.find(function (dialog) { return dialog.id === id; });\n };\n /**\n * Creates the overlay into which the dialog will be loaded.\n * @param {?} config The dialog configuration.\n * @return {?} A promise resolving to the OverlayRef for the created overlay.\n */\n MatDialog.prototype._createOverlay = /**\n * Creates the overlay into which the dialog will be loaded.\n * @param {?} config The dialog configuration.\n * @return {?} A promise resolving to the OverlayRef for the created overlay.\n */\n function (config) {\n var /** @type {?} */ overlayConfig = this._getOverlayConfig(config);\n return this._overlay.create(overlayConfig);\n };\n /**\n * Creates an overlay config from a dialog config.\n * @param {?} dialogConfig The dialog configuration.\n * @return {?} The overlay configuration.\n */\n MatDialog.prototype._getOverlayConfig = /**\n * Creates an overlay config from a dialog config.\n * @param {?} dialogConfig The dialog configuration.\n * @return {?} The overlay configuration.\n */\n function (dialogConfig) {\n var /** @type {?} */ state$$1 = new OverlayConfig({\n positionStrategy: this._overlay.position().global(),\n scrollStrategy: dialogConfig.scrollStrategy || this._scrollStrategy(),\n panelClass: dialogConfig.panelClass,\n hasBackdrop: dialogConfig.hasBackdrop,\n direction: dialogConfig.direction,\n minWidth: dialogConfig.minWidth,\n minHeight: dialogConfig.minHeight,\n maxWidth: dialogConfig.maxWidth,\n maxHeight: dialogConfig.maxHeight\n });\n if (dialogConfig.backdropClass) {\n state$$1.backdropClass = dialogConfig.backdropClass;\n }\n return state$$1;\n };\n /**\n * Attaches an MatDialogContainer to a dialog's already-created overlay.\n * @param {?} overlay Reference to the dialog's underlying overlay.\n * @param {?} config The dialog configuration.\n * @return {?} A promise resolving to a ComponentRef for the attached container.\n */\n MatDialog.prototype._attachDialogContainer = /**\n * Attaches an MatDialogContainer to a dialog's already-created overlay.\n * @param {?} overlay Reference to the dialog's underlying overlay.\n * @param {?} config The dialog configuration.\n * @return {?} A promise resolving to a ComponentRef for the attached container.\n */\n function (overlay, config) {\n var /** @type {?} */ containerPortal = new ComponentPortal(MatDialogContainer, config.viewContainerRef);\n var /** @type {?} */ containerRef = overlay.attach(containerPortal);\n containerRef.instance._config = config;\n return containerRef.instance;\n };\n /**\n * Attaches the user-provided component to the already-created MatDialogContainer.\n * @template T\n * @param {?} componentOrTemplateRef The type of component being loaded into the dialog,\n * or a TemplateRef to instantiate as the content.\n * @param {?} dialogContainer Reference to the wrapping MatDialogContainer.\n * @param {?} overlayRef Reference to the overlay in which the dialog resides.\n * @param {?} config The dialog configuration.\n * @return {?} A promise resolving to the MatDialogRef that should be returned to the user.\n */\n MatDialog.prototype._attachDialogContent = /**\n * Attaches the user-provided component to the already-created MatDialogContainer.\n * @template T\n * @param {?} componentOrTemplateRef The type of component being loaded into the dialog,\n * or a TemplateRef to instantiate as the content.\n * @param {?} dialogContainer Reference to the wrapping MatDialogContainer.\n * @param {?} overlayRef Reference to the overlay in which the dialog resides.\n * @param {?} config The dialog configuration.\n * @return {?} A promise resolving to the MatDialogRef that should be returned to the user.\n */\n function (componentOrTemplateRef, dialogContainer, overlayRef, config) {\n // Create a reference to the dialog we're creating in order to give the user a handle\n // to modify and close it.\n var /** @type {?} */ dialogRef = new MatDialogRef(overlayRef, dialogContainer, this._location, config.id);\n // When the dialog backdrop is clicked, we want to close it.\n if (config.hasBackdrop) {\n overlayRef.backdropClick().subscribe(function () {\n if (!dialogRef.disableClose) {\n dialogRef.close();\n }\n });\n }\n if (componentOrTemplateRef instanceof TemplateRef) {\n dialogContainer.attachTemplatePortal(new TemplatePortal(componentOrTemplateRef, /** @type {?} */ ((null)), /** @type {?} */ ({ $implicit: config.data, dialogRef: dialogRef })));\n }\n else {\n var /** @type {?} */ injector = this._createInjector(config, dialogRef, dialogContainer);\n var /** @type {?} */ contentRef = dialogContainer.attachComponentPortal(new ComponentPortal(componentOrTemplateRef, undefined, injector));\n dialogRef.componentInstance = contentRef.instance;\n }\n dialogRef\n .updateSize(config.width, config.height)\n .updatePosition(config.position);\n return dialogRef;\n };\n /**\n * Creates a custom injector to be used inside the dialog. This allows a component loaded inside\n * of a dialog to close itself and, optionally, to return a value.\n * @template T\n * @param {?} config Config object that is used to construct the dialog.\n * @param {?} dialogRef Reference to the dialog.\n * @param {?} dialogContainer\n * @return {?} The custom injector that can be used inside the dialog.\n */\n MatDialog.prototype._createInjector = /**\n * Creates a custom injector to be used inside the dialog. This allows a component loaded inside\n * of a dialog to close itself and, optionally, to return a value.\n * @template T\n * @param {?} config Config object that is used to construct the dialog.\n * @param {?} dialogRef Reference to the dialog.\n * @param {?} dialogContainer\n * @return {?} The custom injector that can be used inside the dialog.\n */\n function (config, dialogRef, dialogContainer) {\n var /** @type {?} */ userInjector = config && config.viewContainerRef && config.viewContainerRef.injector;\n var /** @type {?} */ injectionTokens = new WeakMap();\n // The MatDialogContainer is injected in the portal as the MatDialogContainer and the dialog's\n // content are created out of the same ViewContainerRef and as such, are siblings for injector\n // purposes. To allow the hierarchy that is expected, the MatDialogContainer is explicitly\n // added to the injection tokens.\n injectionTokens\n .set(MatDialogContainer, dialogContainer)\n .set(MAT_DIALOG_DATA, config.data)\n .set(MatDialogRef, dialogRef);\n if (!userInjector || !userInjector.get(Directionality, null)) {\n injectionTokens.set(Directionality, {\n value: config.direction,\n change: of()\n });\n }\n return new PortalInjector(userInjector || this._injector, injectionTokens);\n };\n /**\n * Removes a dialog from the array of open dialogs.\n * @param {?} dialogRef Dialog to be removed.\n * @return {?}\n */\n MatDialog.prototype._removeOpenDialog = /**\n * Removes a dialog from the array of open dialogs.\n * @param {?} dialogRef Dialog to be removed.\n * @return {?}\n */\n function (dialogRef) {\n var /** @type {?} */ index = this.openDialogs.indexOf(dialogRef);\n if (index > -1) {\n this.openDialogs.splice(index, 1);\n // If all the dialogs were closed, remove/restore the `aria-hidden`\n // to a the siblings and emit to the `afterAllClosed` stream.\n if (!this.openDialogs.length) {\n this._ariaHiddenElements.forEach(function (previousValue, element) {\n if (previousValue) {\n element.setAttribute('aria-hidden', previousValue);\n }\n else {\n element.removeAttribute('aria-hidden');\n }\n });\n this._ariaHiddenElements.clear();\n this._afterAllClosed.next();\n }\n }\n };\n /**\n * Hides all of the content that isn't an overlay from assistive technology.\n * @return {?}\n */\n MatDialog.prototype._hideNonDialogContentFromAssistiveTechnology = /**\n * Hides all of the content that isn't an overlay from assistive technology.\n * @return {?}\n */\n function () {\n var /** @type {?} */ overlayContainer = this._overlayContainer.getContainerElement();\n // Ensure that the overlay container is attached to the DOM.\n if (overlayContainer.parentElement) {\n var /** @type {?} */ siblings = overlayContainer.parentElement.children;\n for (var /** @type {?} */ i = siblings.length - 1; i > -1; i--) {\n var /** @type {?} */ sibling = siblings[i];\n if (sibling !== overlayContainer &&\n sibling.nodeName !== 'SCRIPT' &&\n sibling.nodeName !== 'STYLE' &&\n !sibling.hasAttribute('aria-live')) {\n this._ariaHiddenElements.set(sibling, sibling.getAttribute('aria-hidden'));\n sibling.setAttribute('aria-hidden', 'true');\n }\n }\n }\n };\n MatDialog.decorators = [\n { type: Injectable },\n ];\n /** @nocollapse */\n MatDialog.ctorParameters = function () { return [\n { type: Overlay, },\n { type: Injector, },\n { type: Location, decorators: [{ type: Optional },] },\n { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [MAT_DIALOG_DEFAULT_OPTIONS,] },] },\n { type: undefined, decorators: [{ type: Inject, args: [MAT_DIALOG_SCROLL_STRATEGY,] },] },\n { type: MatDialog, decorators: [{ type: Optional }, { type: SkipSelf },] },\n { type: OverlayContainer, },\n ]; };\n return MatDialog;\n}());\n/**\n * Applies default options to the dialog config.\n * @param {?=} config Config to be modified.\n * @param {?=} defaultOptions Default options provided.\n * @return {?} The new configuration object.\n */\nfunction _applyConfigDefaults(config, defaultOptions) {\n return __assign({}, defaultOptions, config);\n}\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Counter used to generate unique IDs for dialog elements.\n */\nvar dialogElementUid = 0;\n/**\n * Button that will close the current dialog.\n */\nvar MatDialogClose = /** @class */ (function () {\n function MatDialogClose(dialogRef, _elementRef, _dialog) {\n this.dialogRef = dialogRef;\n this._elementRef = _elementRef;\n this._dialog = _dialog;\n /**\n * Screenreader label for the button.\n */\n this.ariaLabel = 'Close dialog';\n }\n /**\n * @return {?}\n */\n MatDialogClose.prototype.ngOnInit = /**\n * @return {?}\n */\n function () {\n if (!this.dialogRef) {\n // When this directive is included in a dialog via TemplateRef (rather than being\n // in a Component), the DialogRef isn't available via injection because embedded\n // views cannot be given a custom injector. Instead, we look up the DialogRef by\n // ID. This must occur in `onInit`, as the ID binding for the dialog container won't\n // be resolved at constructor time.\n this.dialogRef = /** @type {?} */ ((getClosestDialog(this._elementRef, this._dialog.openDialogs)));\n }\n };\n /**\n * @param {?} changes\n * @return {?}\n */\n MatDialogClose.prototype.ngOnChanges = /**\n * @param {?} changes\n * @return {?}\n */\n function (changes) {\n var /** @type {?} */ proxiedChange = changes[\"_matDialogClose\"] || changes[\"_matDialogCloseResult\"];\n if (proxiedChange) {\n this.dialogResult = proxiedChange.currentValue;\n }\n };\n MatDialogClose.decorators = [\n { type: Directive, args: [{\n selector: \"button[mat-dialog-close], button[matDialogClose]\",\n exportAs: 'matDialogClose',\n host: {\n '(click)': 'dialogRef.close(dialogResult)',\n '[attr.aria-label]': 'ariaLabel',\n 'type': 'button',\n }\n },] },\n ];\n /** @nocollapse */\n MatDialogClose.ctorParameters = function () { return [\n { type: MatDialogRef, decorators: [{ type: Optional },] },\n { type: ElementRef, },\n { type: MatDialog, },\n ]; };\n MatDialogClose.propDecorators = {\n \"ariaLabel\": [{ type: Input, args: ['aria-label',] },],\n \"dialogResult\": [{ type: Input, args: ['mat-dialog-close',] },],\n \"_matDialogClose\": [{ type: Input, args: ['matDialogClose',] },],\n };\n return MatDialogClose;\n}());\n/**\n * Title of a dialog element. Stays fixed to the top of the dialog when scrolling.\n */\nvar MatDialogTitle = /** @class */ (function () {\n function MatDialogTitle(_dialogRef, _elementRef, _dialog) {\n this._dialogRef = _dialogRef;\n this._elementRef = _elementRef;\n this._dialog = _dialog;\n this.id = \"mat-dialog-title-\" + dialogElementUid++;\n }\n /**\n * @return {?}\n */\n MatDialogTitle.prototype.ngOnInit = /**\n * @return {?}\n */\n function () {\n var _this = this;\n if (!this._dialogRef) {\n this._dialogRef = /** @type {?} */ ((getClosestDialog(this._elementRef, this._dialog.openDialogs)));\n }\n if (this._dialogRef) {\n Promise.resolve().then(function () {\n var /** @type {?} */ container = _this._dialogRef._containerInstance;\n if (container && !container._ariaLabelledBy) {\n container._ariaLabelledBy = _this.id;\n }\n });\n }\n };\n MatDialogTitle.decorators = [\n { type: Directive, args: [{\n selector: '[mat-dialog-title], [matDialogTitle]',\n exportAs: 'matDialogTitle',\n host: {\n 'class': 'mat-dialog-title',\n '[id]': 'id',\n },\n },] },\n ];\n /** @nocollapse */\n MatDialogTitle.ctorParameters = function () { return [\n { type: MatDialogRef, decorators: [{ type: Optional },] },\n { type: ElementRef, },\n { type: MatDialog, },\n ]; };\n MatDialogTitle.propDecorators = {\n \"id\": [{ type: Input },],\n };\n return MatDialogTitle;\n}());\n/**\n * Scrollable content container of a dialog.\n */\nvar MatDialogContent = /** @class */ (function () {\n function MatDialogContent() {\n }\n MatDialogContent.decorators = [\n { type: Directive, args: [{\n selector: \"[mat-dialog-content], mat-dialog-content, [matDialogContent]\",\n host: { 'class': 'mat-dialog-content' }\n },] },\n ];\n /** @nocollapse */\n MatDialogContent.ctorParameters = function () { return []; };\n return MatDialogContent;\n}());\n/**\n * Container for the bottom action buttons in a dialog.\n * Stays fixed to the bottom when scrolling.\n */\nvar MatDialogActions = /** @class */ (function () {\n function MatDialogActions() {\n }\n MatDialogActions.decorators = [\n { type: Directive, args: [{\n selector: \"[mat-dialog-actions], mat-dialog-actions, [matDialogActions]\",\n host: { 'class': 'mat-dialog-actions' }\n },] },\n ];\n /** @nocollapse */\n MatDialogActions.ctorParameters = function () { return []; };\n return MatDialogActions;\n}());\n/**\n * Finds the closest MatDialogRef to an element by looking at the DOM.\n * @param {?} element Element relative to which to look for a dialog.\n * @param {?} openDialogs References to the currently-open dialogs.\n * @return {?}\n */\nfunction getClosestDialog(element, openDialogs) {\n var /** @type {?} */ parent = element.nativeElement.parentElement;\n while (parent && !parent.classList.contains('mat-dialog-container')) {\n parent = parent.parentElement;\n }\n return parent ? openDialogs.find(function (dialog) { return dialog.id === /** @type {?} */ ((parent)).id; }) : null;\n}\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\nvar MatDialogModule = /** @class */ (function () {\n function MatDialogModule() {\n }\n MatDialogModule.decorators = [\n { type: NgModule, args: [{\n imports: [\n CommonModule,\n OverlayModule,\n PortalModule,\n A11yModule,\n MatCommonModule,\n ],\n exports: [\n MatDialogContainer,\n MatDialogClose,\n MatDialogTitle,\n MatDialogContent,\n MatDialogActions,\n MatCommonModule,\n ],\n declarations: [\n MatDialogContainer,\n MatDialogClose,\n MatDialogTitle,\n MatDialogActions,\n MatDialogContent,\n ],\n providers: [\n MatDialog,\n MAT_DIALOG_SCROLL_STRATEGY_PROVIDER,\n ],\n entryComponents: [MatDialogContainer],\n },] },\n ];\n /** @nocollapse */\n MatDialogModule.ctorParameters = function () { return []; };\n return MatDialogModule;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { MatDialogModule, MAT_DIALOG_DATA, MAT_DIALOG_DEFAULT_OPTIONS, MAT_DIALOG_SCROLL_STRATEGY, MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY, MAT_DIALOG_SCROLL_STRATEGY_PROVIDER, MatDialog, throwMatDialogContentAlreadyAttachedError, MatDialogContainer, MatDialogClose, MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogConfig, MatDialogRef, matDialogAnimations };\n//# sourceMappingURL=dialog.es5.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/@angular/material/esm5/dialog.es5.js\n// module id = 733\n// module chunks = 1","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { Platform, PlatformModule, getSupportedInputTypes } from '@angular/cdk/platform';\nimport { CommonModule } from '@angular/common';\nimport { Directive, ElementRef, Inject, InjectionToken, Input, NgModule, NgZone, Optional, Self } from '@angular/core';\nimport { MatFormFieldControl, MatFormFieldModule } from '@angular/material/form-field';\nimport { fromEvent } from 'rxjs/observable/fromEvent';\nimport { auditTime } from 'rxjs/operators/auditTime';\nimport { takeUntil } from 'rxjs/operators/takeUntil';\nimport { Subject } from 'rxjs/Subject';\nimport { __extends } from 'tslib';\nimport * as tslib_1 from 'tslib';\nimport { coerceBooleanProperty } from '@angular/cdk/coercion';\nimport { FormGroupDirective, NgControl, NgForm } from '@angular/forms';\nimport { ErrorStateMatcher, mixinErrorState } from '@angular/material/core';\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Directive to automatically resize a textarea to fit its content.\n */\nvar MatTextareaAutosize = /** @class */ (function () {\n function MatTextareaAutosize(_elementRef, _platform, _ngZone) {\n this._elementRef = _elementRef;\n this._platform = _platform;\n this._ngZone = _ngZone;\n this._destroyed = new Subject();\n }\n Object.defineProperty(MatTextareaAutosize.prototype, \"minRows\", {\n get: /**\n * @return {?}\n */\n function () { return this._minRows; },\n set: /**\n * Minimum amount of rows in the textarea.\n * @param {?} value\n * @return {?}\n */\n function (value) {\n this._minRows = value;\n this._setMinHeight();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatTextareaAutosize.prototype, \"maxRows\", {\n get: /**\n * Maximum amount of rows in the textarea.\n * @return {?}\n */\n function () { return this._maxRows; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) {\n this._maxRows = value;\n this._setMaxHeight();\n },\n enumerable: true,\n configurable: true\n });\n // TODO(crisbeto): make the `_ngZone` a required param in the next major version.\n /** Sets the minimum height of the textarea as determined by minRows. */\n /**\n * Sets the minimum height of the textarea as determined by minRows.\n * @return {?}\n */\n MatTextareaAutosize.prototype._setMinHeight = /**\n * Sets the minimum height of the textarea as determined by minRows.\n * @return {?}\n */\n function () {\n var /** @type {?} */ minHeight = this.minRows && this._cachedLineHeight ?\n this.minRows * this._cachedLineHeight + \"px\" : null;\n if (minHeight) {\n this._setTextareaStyle('minHeight', minHeight);\n }\n };\n /** Sets the maximum height of the textarea as determined by maxRows. */\n /**\n * Sets the maximum height of the textarea as determined by maxRows.\n * @return {?}\n */\n MatTextareaAutosize.prototype._setMaxHeight = /**\n * Sets the maximum height of the textarea as determined by maxRows.\n * @return {?}\n */\n function () {\n var /** @type {?} */ maxHeight = this.maxRows && this._cachedLineHeight ?\n this.maxRows * this._cachedLineHeight + \"px\" : null;\n if (maxHeight) {\n this._setTextareaStyle('maxHeight', maxHeight);\n }\n };\n /**\n * @return {?}\n */\n MatTextareaAutosize.prototype.ngAfterViewInit = /**\n * @return {?}\n */\n function () {\n var _this = this;\n if (this._platform.isBrowser) {\n this.resizeToFitContent();\n if (this._ngZone) {\n this._ngZone.runOutsideAngular(function () {\n fromEvent(window, 'resize')\n .pipe(auditTime(16), takeUntil(_this._destroyed))\n .subscribe(function () { return _this.resizeToFitContent(true); });\n });\n }\n }\n };\n /**\n * @return {?}\n */\n MatTextareaAutosize.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n this._destroyed.next();\n this._destroyed.complete();\n };\n /**\n * Sets a style property on the textarea element.\n * @param {?} property\n * @param {?} value\n * @return {?}\n */\n MatTextareaAutosize.prototype._setTextareaStyle = /**\n * Sets a style property on the textarea element.\n * @param {?} property\n * @param {?} value\n * @return {?}\n */\n function (property, value) {\n var /** @type {?} */ textarea = /** @type {?} */ (this._elementRef.nativeElement);\n textarea.style[property] = value;\n };\n /**\n * Cache the height of a single-row textarea if it has not already been cached.\n *\n * We need to know how large a single \"row\" of a textarea is in order to apply minRows and\n * maxRows. For the initial version, we will assume that the height of a single line in the\n * textarea does not ever change.\n * @return {?}\n */\n MatTextareaAutosize.prototype._cacheTextareaLineHeight = /**\n * Cache the height of a single-row textarea if it has not already been cached.\n *\n * We need to know how large a single \"row\" of a textarea is in order to apply minRows and\n * maxRows. For the initial version, we will assume that the height of a single line in the\n * textarea does not ever change.\n * @return {?}\n */\n function () {\n if (this._cachedLineHeight) {\n return;\n }\n var /** @type {?} */ textarea = /** @type {?} */ (this._elementRef.nativeElement);\n // Use a clone element because we have to override some styles.\n var /** @type {?} */ textareaClone = /** @type {?} */ (textarea.cloneNode(false));\n textareaClone.rows = 1;\n // Use `position: absolute` so that this doesn't cause a browser layout and use\n // `visibility: hidden` so that nothing is rendered. Clear any other styles that\n // would affect the height.\n textareaClone.style.position = 'absolute';\n textareaClone.style.visibility = 'hidden';\n textareaClone.style.border = 'none';\n textareaClone.style.padding = '0';\n textareaClone.style.height = '';\n textareaClone.style.minHeight = '';\n textareaClone.style.maxHeight = '';\n // In Firefox it happens that textarea elements are always bigger than the specified amount\n // of rows. This is because Firefox tries to add extra space for the horizontal scrollbar.\n // As a workaround that removes the extra space for the scrollbar, we can just set overflow\n // to hidden. This ensures that there is no invalid calculation of the line height.\n // See Firefox bug report: https://bugzilla.mozilla.org/show_bug.cgi?id=33654\n textareaClone.style.overflow = 'hidden'; /** @type {?} */\n ((textarea.parentNode)).appendChild(textareaClone);\n this._cachedLineHeight = textareaClone.clientHeight; /** @type {?} */\n ((textarea.parentNode)).removeChild(textareaClone);\n // Min and max heights have to be re-calculated if the cached line height changes\n this._setMinHeight();\n this._setMaxHeight();\n };\n /**\n * @return {?}\n */\n MatTextareaAutosize.prototype.ngDoCheck = /**\n * @return {?}\n */\n function () {\n if (this._platform.isBrowser) {\n this.resizeToFitContent();\n }\n };\n /**\n * Resize the textarea to fit its content.\n * @param force Whether to force a height recalculation. By default the height will be\n * recalculated only if the value changed since the last call.\n */\n /**\n * Resize the textarea to fit its content.\n * @param {?=} force Whether to force a height recalculation. By default the height will be\n * recalculated only if the value changed since the last call.\n * @return {?}\n */\n MatTextareaAutosize.prototype.resizeToFitContent = /**\n * Resize the textarea to fit its content.\n * @param {?=} force Whether to force a height recalculation. By default the height will be\n * recalculated only if the value changed since the last call.\n * @return {?}\n */\n function (force) {\n if (force === void 0) { force = false; }\n this._cacheTextareaLineHeight();\n // If we haven't determined the line-height yet, we know we're still hidden and there's no point\n // in checking the height of the textarea.\n if (!this._cachedLineHeight) {\n return;\n }\n var /** @type {?} */ textarea = /** @type {?} */ (this._elementRef.nativeElement);\n var /** @type {?} */ value = textarea.value;\n // Only resize of the value changed since these calculations can be expensive.\n if (value === this._previousValue && !force) {\n return;\n }\n var /** @type {?} */ placeholderText = textarea.placeholder;\n // Reset the textarea height to auto in order to shrink back to its default size.\n // Also temporarily force overflow:hidden, so scroll bars do not interfere with calculations.\n // Long placeholders that are wider than the textarea width may lead to a bigger scrollHeight\n // value. To ensure that the scrollHeight is not bigger than the content, the placeholders\n // need to be removed temporarily.\n textarea.style.height = 'auto';\n textarea.style.overflow = 'hidden';\n textarea.placeholder = '';\n // Use the scrollHeight to know how large the textarea *would* be if fit its entire value.\n textarea.style.height = textarea.scrollHeight + \"px\";\n textarea.style.overflow = '';\n textarea.placeholder = placeholderText;\n this._previousValue = value;\n };\n MatTextareaAutosize.decorators = [\n { type: Directive, args: [{\n selector: \"textarea[mat-autosize], textarea[matTextareaAutosize]\",\n exportAs: 'matTextareaAutosize',\n host: {\n 'class': 'mat-autosize',\n // Textarea elements that have the directive applied should have a single row by default.\n // Browsers normally show two rows by default and therefore this limits the minRows binding.\n 'rows': '1',\n },\n },] },\n ];\n /** @nocollapse */\n MatTextareaAutosize.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Platform, },\n { type: NgZone, },\n ]; };\n MatTextareaAutosize.propDecorators = {\n \"minRows\": [{ type: Input, args: ['matAutosizeMinRows',] },],\n \"maxRows\": [{ type: Input, args: ['matAutosizeMaxRows',] },],\n };\n return MatTextareaAutosize;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * \\@docs-private\n * @param {?} type\n * @return {?}\n */\nfunction getMatInputUnsupportedTypeError(type) {\n return Error(\"Input type \\\"\" + type + \"\\\" isn't supported by matInput.\");\n}\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * This token is used to inject the object whose value should be set into `MatInput`. If none is\n * provided, the native `HTMLInputElement` is used. Directives like `MatDatepickerInput` can provide\n * themselves for this token, in order to make `MatInput` delegate the getting and setting of the\n * value to them.\n */\nvar MAT_INPUT_VALUE_ACCESSOR = new InjectionToken('MAT_INPUT_VALUE_ACCESSOR');\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n// Invalid input type. Using one of these will throw an MatInputUnsupportedTypeError.\nvar MAT_INPUT_INVALID_TYPES = [\n 'button',\n 'checkbox',\n 'file',\n 'hidden',\n 'image',\n 'radio',\n 'range',\n 'reset',\n 'submit'\n];\nvar nextUniqueId = 0;\n/**\n * \\@docs-private\n */\nvar MatInputBase = /** @class */ (function () {\n function MatInputBase(_defaultErrorStateMatcher, _parentForm, _parentFormGroup, ngControl) {\n this._defaultErrorStateMatcher = _defaultErrorStateMatcher;\n this._parentForm = _parentForm;\n this._parentFormGroup = _parentFormGroup;\n this.ngControl = ngControl;\n }\n return MatInputBase;\n}());\nvar _MatInputMixinBase = mixinErrorState(MatInputBase);\n/**\n * Directive that allows a native input to work inside a `MatFormField`.\n */\nvar MatInput = /** @class */ (function (_super) {\n __extends(MatInput, _super);\n function MatInput(_elementRef, _platform, /** @docs-private */\n ngControl, _parentForm, _parentFormGroup, _defaultErrorStateMatcher, inputValueAccessor) {\n var _this = _super.call(this, _defaultErrorStateMatcher, _parentForm, _parentFormGroup, ngControl) || this;\n _this._elementRef = _elementRef;\n _this._platform = _platform;\n _this.ngControl = ngControl;\n _this._uid = \"mat-input-\" + nextUniqueId++;\n /**\n * Whether the component is being rendered on the server.\n */\n _this._isServer = false;\n /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n */\n _this.focused = false;\n /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n */\n _this.stateChanges = new Subject();\n /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n */\n _this.controlType = 'mat-input';\n _this._disabled = false;\n /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n */\n _this.placeholder = '';\n _this._required = false;\n _this._type = 'text';\n _this._readonly = false;\n _this._neverEmptyInputTypes = [\n 'date',\n 'datetime',\n 'datetime-local',\n 'month',\n 'time',\n 'week'\n ].filter(function (t) { return getSupportedInputTypes().has(t); });\n // If no input value accessor was explicitly specified, use the element as the input value\n // accessor.\n // If no input value accessor was explicitly specified, use the element as the input value\n // accessor.\n _this._inputValueAccessor = inputValueAccessor || _this._elementRef.nativeElement;\n _this._previousNativeValue = _this.value;\n // Force setter to be called in case id was not specified.\n // Force setter to be called in case id was not specified.\n _this.id = _this.id;\n // On some versions of iOS the caret gets stuck in the wrong place when holding down the delete\n // key. In order to get around this we need to \"jiggle\" the caret loose. Since this bug only\n // exists on iOS, we only bother to install the listener on iOS.\n if (_platform.IOS) {\n _elementRef.nativeElement.addEventListener('keyup', function (event) {\n var /** @type {?} */ el = /** @type {?} */ (event.target);\n if (!el.value && !el.selectionStart && !el.selectionEnd) {\n // Note: Just setting `0, 0` doesn't fix the issue. Setting `1, 1` fixes it for the first\n // time that you type text and then hold delete. Toggling to `1, 1` and then back to\n // `0, 0` seems to completely fix it.\n el.setSelectionRange(1, 1);\n el.setSelectionRange(0, 0);\n }\n });\n }\n _this._isServer = !_this._platform.isBrowser;\n return _this;\n }\n Object.defineProperty(MatInput.prototype, \"disabled\", {\n get: /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n * @return {?}\n */\n function () {\n if (this.ngControl && this.ngControl.disabled !== null) {\n return this.ngControl.disabled;\n }\n return this._disabled;\n },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) {\n this._disabled = coerceBooleanProperty(value);\n // Browsers may not fire the blur event if the input is disabled too quickly.\n // Reset from here to ensure that the element doesn't become stuck.\n if (this.focused) {\n this.focused = false;\n this.stateChanges.next();\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatInput.prototype, \"id\", {\n get: /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n * @return {?}\n */\n function () { return this._id; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) { this._id = value || this._uid; },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatInput.prototype, \"required\", {\n get: /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n * @return {?}\n */\n function () { return this._required; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) { this._required = coerceBooleanProperty(value); },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatInput.prototype, \"type\", {\n get: /**\n * Input type of the element.\n * @return {?}\n */\n function () { return this._type; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) {\n this._type = value || 'text';\n this._validateType();\n // When using Angular inputs, developers are no longer able to set the properties on the native\n // input element. To ensure that bindings for `type` work, we need to sync the setter\n // with the native property. Textarea elements don't support the type property or attribute.\n if (!this._isTextarea() && getSupportedInputTypes().has(this._type)) {\n this._elementRef.nativeElement.type = this._type;\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatInput.prototype, \"value\", {\n get: /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n * @return {?}\n */\n function () { return this._inputValueAccessor.value; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) {\n if (value !== this.value) {\n this._inputValueAccessor.value = value;\n this.stateChanges.next();\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatInput.prototype, \"readonly\", {\n get: /**\n * Whether the element is readonly.\n * @return {?}\n */\n function () { return this._readonly; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) { this._readonly = coerceBooleanProperty(value); },\n enumerable: true,\n configurable: true\n });\n /**\n * @return {?}\n */\n MatInput.prototype.ngOnChanges = /**\n * @return {?}\n */\n function () {\n this.stateChanges.next();\n };\n /**\n * @return {?}\n */\n MatInput.prototype.ngOnDestroy = /**\n * @return {?}\n */\n function () {\n this.stateChanges.complete();\n };\n /**\n * @return {?}\n */\n MatInput.prototype.ngDoCheck = /**\n * @return {?}\n */\n function () {\n if (this.ngControl) {\n // We need to re-evaluate this on every change detection cycle, because there are some\n // error triggers that we can't subscribe to (e.g. parent form submissions). This means\n // that whatever logic is in here has to be super lean or we risk destroying the performance.\n this.updateErrorState();\n }\n // We need to dirty-check the native element's value, because there are some cases where\n // we won't be notified when it changes (e.g. the consumer isn't using forms or they're\n // updating the value using `emitEvent: false`).\n this._dirtyCheckNativeValue();\n };\n /** Focuses the input. */\n /**\n * Focuses the input.\n * @return {?}\n */\n MatInput.prototype.focus = /**\n * Focuses the input.\n * @return {?}\n */\n function () { this._elementRef.nativeElement.focus(); };\n /** Callback for the cases where the focused state of the input changes. */\n /**\n * Callback for the cases where the focused state of the input changes.\n * @param {?} isFocused\n * @return {?}\n */\n MatInput.prototype._focusChanged = /**\n * Callback for the cases where the focused state of the input changes.\n * @param {?} isFocused\n * @return {?}\n */\n function (isFocused) {\n if (isFocused !== this.focused && !this.readonly) {\n this.focused = isFocused;\n this.stateChanges.next();\n }\n };\n /**\n * @return {?}\n */\n MatInput.prototype._onInput = /**\n * @return {?}\n */\n function () {\n // This is a noop function and is used to let Angular know whenever the value changes.\n // Angular will run a new change detection each time the `input` event has been dispatched.\n // It's necessary that Angular recognizes the value change, because when floatingLabel\n // is set to false and Angular forms aren't used, the placeholder won't recognize the\n // value changes and will not disappear.\n // Listening to the input event wouldn't be necessary when the input is using the\n // FormsModule or ReactiveFormsModule, because Angular forms also listens to input events.\n };\n /** Does some manual dirty checking on the native input `value` property. */\n /**\n * Does some manual dirty checking on the native input `value` property.\n * @return {?}\n */\n MatInput.prototype._dirtyCheckNativeValue = /**\n * Does some manual dirty checking on the native input `value` property.\n * @return {?}\n */\n function () {\n var /** @type {?} */ newValue = this.value;\n if (this._previousNativeValue !== newValue) {\n this._previousNativeValue = newValue;\n this.stateChanges.next();\n }\n };\n /** Make sure the input is a supported type. */\n /**\n * Make sure the input is a supported type.\n * @return {?}\n */\n MatInput.prototype._validateType = /**\n * Make sure the input is a supported type.\n * @return {?}\n */\n function () {\n if (MAT_INPUT_INVALID_TYPES.indexOf(this._type) > -1) {\n throw getMatInputUnsupportedTypeError(this._type);\n }\n };\n /** Checks whether the input type is one of the types that are never empty. */\n /**\n * Checks whether the input type is one of the types that are never empty.\n * @return {?}\n */\n MatInput.prototype._isNeverEmpty = /**\n * Checks whether the input type is one of the types that are never empty.\n * @return {?}\n */\n function () {\n return this._neverEmptyInputTypes.indexOf(this._type) > -1;\n };\n /** Checks whether the input is invalid based on the native validation. */\n /**\n * Checks whether the input is invalid based on the native validation.\n * @return {?}\n */\n MatInput.prototype._isBadInput = /**\n * Checks whether the input is invalid based on the native validation.\n * @return {?}\n */\n function () {\n // The `validity` property won't be present on platform-server.\n var /** @type {?} */ validity = (/** @type {?} */ (this._elementRef.nativeElement)).validity;\n return validity && validity.badInput;\n };\n /** Determines if the component host is a textarea. If not recognizable it returns false. */\n /**\n * Determines if the component host is a textarea. If not recognizable it returns false.\n * @return {?}\n */\n MatInput.prototype._isTextarea = /**\n * Determines if the component host is a textarea. If not recognizable it returns false.\n * @return {?}\n */\n function () {\n var /** @type {?} */ nativeElement = this._elementRef.nativeElement;\n // In Universal, we don't have access to `nodeName`, but the same can be achieved with `name`.\n // Note that this shouldn't be necessary once Angular switches to an API that resembles the\n // DOM closer.\n var /** @type {?} */ nodeName = this._platform.isBrowser ? nativeElement.nodeName : nativeElement.name;\n return nodeName ? nodeName.toLowerCase() === 'textarea' : false;\n };\n Object.defineProperty(MatInput.prototype, \"empty\", {\n /**\n * Implemented as part of MatFormFieldControl.\n * @docs-private\n */\n get: /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n * @return {?}\n */\n function () {\n return !this._isNeverEmpty() && !this._elementRef.nativeElement.value && !this._isBadInput();\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatInput.prototype, \"shouldLabelFloat\", {\n /**\n * Implemented as part of MatFormFieldControl.\n * @docs-private\n */\n get: /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n * @return {?}\n */\n function () { return this.focused || !this.empty; },\n enumerable: true,\n configurable: true\n });\n /**\n * Implemented as part of MatFormFieldControl.\n * @docs-private\n */\n /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n * @param {?} ids\n * @return {?}\n */\n MatInput.prototype.setDescribedByIds = /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n * @param {?} ids\n * @return {?}\n */\n function (ids) { this._ariaDescribedby = ids.join(' '); };\n /**\n * Implemented as part of MatFormFieldControl.\n * @docs-private\n */\n /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n * @return {?}\n */\n MatInput.prototype.onContainerClick = /**\n * Implemented as part of MatFormFieldControl.\n * \\@docs-private\n * @return {?}\n */\n function () { this.focus(); };\n MatInput.decorators = [\n { type: Directive, args: [{\n selector: \"input[matInput], textarea[matInput]\",\n exportAs: 'matInput',\n host: {\n 'class': 'mat-input-element mat-form-field-autofill-control',\n '[class.mat-input-server]': '_isServer',\n // Native input properties that are overwritten by Angular inputs need to be synced with\n // the native input element. Otherwise property bindings for those don't work.\n '[attr.id]': 'id',\n '[placeholder]': 'placeholder',\n '[disabled]': 'disabled',\n '[required]': 'required',\n '[readonly]': 'readonly',\n '[attr.aria-describedby]': '_ariaDescribedby || null',\n '[attr.aria-invalid]': 'errorState',\n '[attr.aria-required]': 'required.toString()',\n '(blur)': '_focusChanged(false)',\n '(focus)': '_focusChanged(true)',\n '(input)': '_onInput()',\n },\n providers: [{ provide: MatFormFieldControl, useExisting: MatInput }],\n },] },\n ];\n /** @nocollapse */\n MatInput.ctorParameters = function () { return [\n { type: ElementRef, },\n { type: Platform, },\n { type: NgControl, decorators: [{ type: Optional }, { type: Self },] },\n { type: NgForm, decorators: [{ type: Optional },] },\n { type: FormGroupDirective, decorators: [{ type: Optional },] },\n { type: ErrorStateMatcher, },\n { type: undefined, decorators: [{ type: Optional }, { type: Self }, { type: Inject, args: [MAT_INPUT_VALUE_ACCESSOR,] },] },\n ]; };\n MatInput.propDecorators = {\n \"disabled\": [{ type: Input },],\n \"id\": [{ type: Input },],\n \"placeholder\": [{ type: Input },],\n \"required\": [{ type: Input },],\n \"type\": [{ type: Input },],\n \"errorStateMatcher\": [{ type: Input },],\n \"value\": [{ type: Input },],\n \"readonly\": [{ type: Input },],\n };\n return MatInput;\n}(_MatInputMixinBase));\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\nvar MatInputModule = /** @class */ (function () {\n function MatInputModule() {\n }\n MatInputModule.decorators = [\n { type: NgModule, args: [{\n declarations: [\n MatInput,\n MatTextareaAutosize,\n ],\n imports: [\n CommonModule,\n MatFormFieldModule,\n PlatformModule,\n ],\n exports: [\n MatFormFieldModule,\n MatInput,\n MatTextareaAutosize,\n ],\n providers: [ErrorStateMatcher],\n },] },\n ];\n /** @nocollapse */\n MatInputModule.ctorParameters = function () { return []; };\n return MatInputModule;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { MatInputModule, MatTextareaAutosize, MatInputBase, _MatInputMixinBase, MatInput, getMatInputUnsupportedTypeError, MAT_INPUT_VALUE_ACCESSOR };\n//# sourceMappingURL=input.es5.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/@angular/material/esm5/input.es5.js\n// module id = 734\n// module chunks = 1","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { ChangeDetectionStrategy, Component, Input, NgModule, ViewEncapsulation } from '@angular/core';\nimport { coerceBooleanProperty } from '@angular/cdk/coercion';\nimport { CommonModule } from '@angular/common';\nimport { MatCommonModule } from '@angular/material/core';\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\nvar MatDivider = /** @class */ (function () {\n function MatDivider() {\n this._vertical = false;\n this._inset = false;\n }\n Object.defineProperty(MatDivider.prototype, \"vertical\", {\n get: /**\n * Whether the divider is vertically aligned.\n * @return {?}\n */\n function () { return this._vertical; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) { this._vertical = coerceBooleanProperty(value); },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(MatDivider.prototype, \"inset\", {\n get: /**\n * Whether the divider is an inset divider.\n * @return {?}\n */\n function () { return this._inset; },\n set: /**\n * @param {?} value\n * @return {?}\n */\n function (value) { this._inset = coerceBooleanProperty(value); },\n enumerable: true,\n configurable: true\n });\n MatDivider.decorators = [\n { type: Component, args: [{selector: 'mat-divider',\n host: {\n 'role': 'separator',\n '[attr.aria-orientation]': 'vertical ? \"vertical\" : \"horizontal\"',\n '[class.mat-divider-vertical]': 'vertical',\n '[class.mat-divider-inset]': 'inset',\n 'class': 'mat-divider'\n },\n template: '',\n styles: [\".mat-divider{display:block;margin:0;border-top-width:1px;border-top-style:solid}.mat-divider.mat-divider-vertical{border-top:0;border-right-width:1px;border-right-style:solid}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}\"],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n preserveWhitespaces: false,\n },] },\n ];\n /** @nocollapse */\n MatDivider.ctorParameters = function () { return []; };\n MatDivider.propDecorators = {\n \"vertical\": [{ type: Input },],\n \"inset\": [{ type: Input },],\n };\n return MatDivider;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\nvar MatDividerModule = /** @class */ (function () {\n function MatDividerModule() {\n }\n MatDividerModule.decorators = [\n { type: NgModule, args: [{\n imports: [MatCommonModule, CommonModule],\n exports: [\n MatDivider,\n MatCommonModule,\n ],\n declarations: [\n MatDivider,\n ],\n },] },\n ];\n /** @nocollapse */\n MatDividerModule.ctorParameters = function () { return []; };\n return MatDividerModule;\n}());\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { MatDivider, MatDividerModule };\n//# sourceMappingURL=divider.es5.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/@angular/material/esm5/divider.es5.js\n// module id = 735\n// module chunks = 1","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { Attribute, ChangeDetectionStrategy, Component, ElementRef, Inject, Injectable, Input, NgModule, Optional, SecurityContext, SkipSelf, ViewEncapsulation } from '@angular/core';\nimport { MatCommonModule, mixinColor } from '@angular/material/core';\nimport { __extends } from 'tslib';\nimport * as tslib_1 from 'tslib';\nimport { take } from 'rxjs/operators/take';\nimport { catchError } from 'rxjs/operators/catchError';\nimport { tap } from 'rxjs/operators/tap';\nimport { finalize } from 'rxjs/operators/finalize';\nimport { map } from 'rxjs/operators/map';\nimport { share } from 'rxjs/operators/share';\nimport { HttpClient } from '@angular/common/http';\nimport { DomSanitizer } from '@angular/platform-browser';\nimport { forkJoin } from 'rxjs/observable/forkJoin';\nimport { of } from 'rxjs/observable/of';\nimport { _throw } from 'rxjs/observable/throw';\nimport { DOCUMENT } from '@angular/common';\n\n/**\n * @fileoverview added by tsickle\n * @suppress {checkTypes} checked by tsc\n */\n\n/**\n * Returns an exception to be thrown in the case when attempting to\n * load an icon with a name that cannot be found.\n * \\@docs-private\n * @param {?} iconName\n * @return {?}\n */\nfunction getMatIconNameNotFoundError(iconName) {\n return Error(\"Unable to find icon with the name \\\"\" + iconName + \"\\\"\");\n}\n/**\n * Returns an exception to be thrown when the consumer attempts to use\n * `` without including \\@angular/http.\n * \\@docs-private\n * @return {?}\n */\nfunction getMatIconNoHttpProviderError() {\n return Error('Could not find HttpClient provider for use with Angular Material icons. ' +\n 'Please include the HttpClientModule from @angular/common/http in your ' +\n 'app imports.');\n}\n/**\n * Returns an exception to be thrown when a URL couldn't be sanitized.\n * \\@docs-private\n * @param {?} url URL that was attempted to be sanitized.\n * @return {?}\n */\nfunction getMatIconFailedToSanitizeError(url) {\n return Error(\"The URL provided to MatIconRegistry was not trusted as a resource URL \" +\n (\"via Angular's DomSanitizer. Attempted URL was \\\"\" + url + \"\\\".\"));\n}\n/**\n * Configuration for an icon, including the URL and possibly the cached SVG element.\n * \\@docs-private\n */\nvar SvgIconConfig = /** @class */ (function () {\n function SvgIconConfig(url) {\n this.url = url;\n this.svgElement = null;\n }\n return SvgIconConfig;\n}());\n/**\n * Service to register and display icons used by the `` component.\n * - Registers icon URLs by namespace and name.\n * - Registers icon set URLs by namespace.\n * - Registers aliases for CSS classes, for use with icon fonts.\n * - Loads icons from URLs and extracts individual icons from icon sets.\n */\nvar MatIconRegistry = /** @class */ (function () {\n function MatIconRegistry(_httpClient, _sanitizer, document) {\n this._httpClient = _httpClient;\n this._sanitizer = _sanitizer;\n /**\n * URLs and cached SVG elements for individual icons. Keys are of the format \"[namespace]:[icon]\".\n */\n this._svgIconConfigs = new Map();\n /**\n * SvgIconConfig objects and cached SVG elements for icon sets, keyed by namespace.\n * Multiple icon sets can be registered under the same namespace.\n */\n this._iconSetConfigs = new Map();\n /**\n * Cache for icons loaded by direct URLs.\n */\n this._cachedIconsByUrl = new Map();\n /**\n * In-progress icon fetches. Used to coalesce multiple requests to the same URL.\n */\n this._inProgressUrlFetches = new Map();\n /**\n * Map from font identifiers to their CSS class names. Used for icon fonts.\n */\n this._fontCssClassesByAlias = new Map();\n /**\n * The CSS class to apply when an `` component has no icon name, url, or font specified.\n * The default 'material-icons' value assumes that the material icon font has been loaded as\n * described at http://google.github.io/material-design-icons/#icon-font-for-the-web\n */\n this._defaultFontSetClass = 'material-icons';\n // TODO(crisbeto): make _document required next major release.\n this._document = document;\n }\n /**\n * Registers an icon by URL in the default namespace.\n * @param iconName Name under which the icon should be registered.\n * @param url\n */\n /**\n * Registers an icon by URL in the default namespace.\n * @param {?} iconName Name under which the icon should be registered.\n * @param {?} url\n * @return {?}\n */\n MatIconRegistry.prototype.addSvgIcon = /**\n * Registers an icon by URL in the default namespace.\n * @param {?} iconName Name under which the icon should be registered.\n * @param {?} url\n * @return {?}\n */\n function (iconName, url) {\n return this.addSvgIconInNamespace('', iconName, url);\n };\n /**\n * Registers an icon by URL in the specified namespace.\n * @param namespace Namespace in which the icon should be registered.\n * @param iconName Name under which the icon should be registered.\n * @param url\n */\n /**\n * Registers an icon by URL in the specified namespace.\n * @param {?} namespace Namespace in which the icon should be registered.\n * @param {?} iconName Name under which the icon should be registered.\n * @param {?} url\n * @return {?}\n */\n MatIconRegistry.prototype.addSvgIconInNamespace = /**\n * Registers an icon by URL in the specified namespace.\n * @param {?} namespace Namespace in which the icon should be registered.\n * @param {?} iconName Name under which the icon should be registered.\n * @param {?} url\n * @return {?}\n */\n function (namespace, iconName, url) {\n var /** @type {?} */ key = iconKey(namespace, iconName);\n this._svgIconConfigs.set(key, new SvgIconConfig(url));\n return this;\n };\n /**\n * Registers an icon set by URL in the default namespace.\n * @param url\n */\n /**\n * Registers an icon set by URL in the default namespace.\n * @param {?} url\n * @return {?}\n */\n MatIconRegistry.prototype.addSvgIconSet = /**\n * Registers an icon set by URL in the default namespace.\n * @param {?} url\n * @return {?}\n */\n function (url) {\n return this.addSvgIconSetInNamespace('', url);\n };\n /**\n * Registers an icon set by URL in the specified namespace.\n * @param namespace Namespace in which to register the icon set.\n * @param url\n */\n /**\n * Registers an icon set by URL in the specified namespace.\n * @param {?} namespace Namespace in which to register the icon set.\n * @param {?} url\n * @return {?}\n */\n MatIconRegistry.prototype.addSvgIconSetInNamespace = /**\n * Registers an icon set by URL in the specified namespace.\n * @param {?} namespace Namespace in which to register the icon set.\n * @param {?} url\n * @return {?}\n */\n function (namespace, url) {\n var /** @type {?} */ config = new SvgIconConfig(url);\n var /** @type {?} */ configNamespace = this._iconSetConfigs.get(namespace);\n if (configNamespace) {\n configNamespace.push(config);\n }\n else {\n this._iconSetConfigs.set(namespace, [config]);\n }\n return this;\n };\n /**\n * Defines an alias for a CSS class name to be used for icon fonts. Creating an matIcon\n * component with the alias as the fontSet input will cause the class name to be applied\n * to the `` element.\n *\n * @param alias Alias for the font.\n * @param className Class name override to be used instead of the alias.\n */\n /**\n * Defines an alias for a CSS class name to be used for icon fonts. Creating an matIcon\n * component with the alias as the fontSet input will cause the class name to be applied\n * to the `` element.\n *\n * @param {?} alias Alias for the font.\n * @param {?=} className Class name override to be used instead of the alias.\n * @return {?}\n */\n MatIconRegistry.prototype.registerFontClassAlias = /**\n * Defines an alias for a CSS class name to be used for icon fonts. Creating an matIcon\n * component with the alias as the fontSet input will cause the class name to be applied\n * to the `` element.\n *\n * @param {?} alias Alias for the font.\n * @param {?=} className Class name override to be used instead of the alias.\n * @return {?}\n */\n function (alias, className) {\n if (className === void 0) { className = alias; }\n this._fontCssClassesByAlias.set(alias, className);\n return this;\n };\n /**\n * Returns the CSS class name associated with the alias by a previous call to\n * registerFontClassAlias. If no CSS class has been associated, returns the alias unmodified.\n */\n /**\n * Returns the CSS class name associated with the alias by a previous call to\n * registerFontClassAlias. If no CSS class has been associated, returns the alias unmodified.\n * @param {?} alias\n * @return {?}\n */\n MatIconRegistry.prototype.classNameForFontAlias = /**\n * Returns the CSS class name associated with the alias by a previous call to\n * registerFontClassAlias. If no CSS class has been associated, returns the alias unmodified.\n * @param {?} alias\n * @return {?}\n */\n function (alias) {\n return this._fontCssClassesByAlias.get(alias) || alias;\n };\n /**\n * Sets the CSS class name to be used for icon fonts when an `` component does not\n * have a fontSet input value, and is not loading an icon by name or URL.\n *\n * @param className\n */\n /**\n * Sets the CSS class name to be used for icon fonts when an `` component does not\n * have a fontSet input value, and is not loading an icon by name or URL.\n *\n * @param {?} className\n * @return {?}\n */\n MatIconRegistry.prototype.setDefaultFontSetClass = /**\n * Sets the CSS class name to be used for icon fonts when an `` component does not\n * have a fontSet input value, and is not loading an icon by name or URL.\n *\n * @param {?} className\n * @return {?}\n */\n function (className) {\n this._defaultFontSetClass = className;\n return this;\n };\n /**\n * Returns the CSS class name to be used for icon fonts when an `` component does not\n * have a fontSet input value, and is not loading an icon by name or URL.\n */\n /**\n * Returns the CSS class name to be used for icon fonts when an `` component does not\n * have a fontSet input value, and is not loading an icon by name or URL.\n * @return {?}\n */\n MatIconRegistry.prototype.getDefaultFontSetClass = /**\n * Returns the CSS class name to be used for icon fonts when an `` component does not\n * have a fontSet input value, and is not loading an icon by name or URL.\n * @return {?}\n */\n function () {\n return this._defaultFontSetClass;\n };\n /**\n * Returns an Observable that produces the icon (as an `