{"version":3,"names":[],"mappings":"","sources":["script.min.js"],"sourcesContent":["!function(t){var o={};function r(n){if(o[n])return o[n].exports;var e=o[n]={i:n,l:!1,exports:{}};return t[n].call(e.exports,e,e.exports,r),e.l=!0,e.exports}r.m=t,r.c=o,r.d=function(n,e,t){r.o(n,e)||Object.defineProperty(n,e,{enumerable:!0,get:t})},r.r=function(n){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(n,\"__esModule\",{value:!0})},r.t=function(e,n){if(1&n&&(e=r(e)),8&n)return e;if(4&n&&\"object\"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(r.r(t),Object.defineProperty(t,\"default\",{enumerable:!0,value:e}),2&n&&\"string\"!=typeof e)for(var o in e)r.d(t,o,function(n){return e[n]}.bind(null,o));return t},r.n=function(e){var n=e&&e.__esModule?function n(){return e.default}:function n(){return e};return r.d(n,\"a\",n),n},r.o=function(n,e){return Object.prototype.hasOwnProperty.call(n,e)},r.p=\"\",r(r.s=\"./assets/scripts/script.js\")}({\"./assets/scripts/app/Accordion.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var _HeadingHeight__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./HeadingHeight */ \\\"./assets/scripts/app/HeadingHeight.js\\\");\\n\\n\\nfunction Accordion() {\\n var $dropdown = $('.dropdown__trigger');\\n var animating = false;\\n $dropdown.on('click', function (e) {\\n e.preventDefault();\\n var $this = $(e.currentTarget);\\n\\n if (!animating) {\\n animating = true;\\n\\n if (!$this.parent().hasClass('active')) {\\n $this.parent().find('.dropdown__copy--accordion').attr('style', 'opacity: 0;');\\n var $singleActiveAccordion = $this.closest('.accordion-single-active .accordion__list');\\n\\n if ($singleActiveAccordion) {\\n resetActiveSections($singleActiveAccordion.children());\\n }\\n\\n $this.parent().addClass('active');\\n $this.find('.dropdown__heading--default').text('Close');\\n $this.parent().find('.dropdown__content').slideDown(200, function () {\\n animating = false;\\n Object(_HeadingHeight__WEBPACK_IMPORTED_MODULE_0__[\\\"default\\\"])();\\n $this.parent().find('.dropdown__copy--accordion').attr('style', 'opacity: 1;');\\n });\\n } else {\\n $this.parent().removeClass('active');\\n $this.find('.dropdown__heading--default').text('Read more');\\n $this.parent().find('.dropdown__content').slideUp(200, function () {\\n animating = false;\\n });\\n }\\n }\\n });\\n\\n var resetActiveSections = function resetActiveSections($accordionSections) {\\n for (var i = 0; i < $accordionSections.length; i++) {\\n if ($($accordionSections[i]).children().hasClass('active')) {\\n $($accordionSections[i]).children().removeClass('active');\\n $($accordionSections[i]).find('.dropdown__content').slideUp();\\n }\\n }\\n };\\n}\\n\\n/* harmony default export */ __webpack_exports__[\\\"default\\\"] = (Accordion);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/Accordion.js?\")},\"./assets/scripts/app/BenefitModal.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\nfunction BenefitModal() {\\n var benefitLinks = document.querySelectorAll(\".benefit-card__link\");\\n var closeModal = document.querySelector(\".o-modal__close\");\\n\\n var setupBenefitModalLinks = function setupBenefitModalLinks() {\\n var _loop = function _loop(i) {\\n var benefitLink = benefitLinks[i];\\n var benefitId = benefitLink.dataset.id;\\n benefitLink.addEventListener(\"click\", function (event) {\\n event.preventDefault();\\n var toggleModalEvent = new CustomEvent(\"toggleModal\", {\\n detail: {\\n type: \"open\",\\n benefitId: benefitId\\n }\\n });\\n document.dispatchEvent(toggleModalEvent);\\n });\\n closeModal.addEventListener(\"click\", function (event) {\\n event.preventDefault();\\n var toggleModalEvent = new CustomEvent(\"toggleModal\", {\\n detail: {\\n type: \"close\",\\n benefitId: benefitId\\n }\\n });\\n document.dispatchEvent(toggleModalEvent);\\n });\\n };\\n\\n for (var i = 0; i < benefitLinks.length; i++) {\\n _loop(i);\\n }\\n };\\n\\n var toggleAccordionItem = function toggleAccordionItem(benefitId, type) {\\n var activeBenefitContent = document.querySelector(\"#benefit-\" + benefitId);\\n var selectedLinkElement = document.querySelector(\".benefit-accordion__item-link[data-benefit-id=\\'\".concat(benefitId, \"\\']\"));\\n\\n if (type === \"open\") {\\n var visibleBenefitContent = document.querySelector(\".o-modal__row:not(.hidden)\");\\n var activeLinkElement = document.querySelector(\".benefit-accordion__item-link--active\");\\n if (activeLinkElement) activeLinkElement.classList.remove(\"benefit-accordion__item-link--active\");\\n if (visibleBenefitContent) visibleBenefitContent.classList.add(\"hidden\");\\n activeBenefitContent.classList.remove(\"hidden\");\\n selectedLinkElement.classList.add(\"benefit-accordion__item-link--active\");\\n } else {\\n activeBenefitContent.classList.add(\"hidden\");\\n selectedLinkElement.classList.remove(\"benefit-accordion__item-link--active\");\\n }\\n };\\n\\n var setupBenefitAccordionLinks = function setupBenefitAccordionLinks() {\\n var benefitAccordionLinkElements = document.querySelectorAll(\".benefit-accordion__item-link\");\\n\\n var handleClick = function handleClick(event) {\\n event.preventDefault();\\n var benefitId = event.target.dataset.benefitId;\\n toggleAccordionItem(benefitId, \"open\");\\n };\\n\\n for (var i = 0; i < benefitAccordionLinkElements.length; i++) {\\n var selectedLinkElement = benefitAccordionLinkElements[i];\\n selectedLinkElement.addEventListener(\"click\", handleClick);\\n }\\n };\\n\\n document.addEventListener(\"toggleModal\", function (event) {\\n var _event$detail = event.detail,\\n benefitId = _event$detail.benefitId,\\n type = _event$detail.type;\\n var delayTime = type === \"close\" ? 510 : 0;\\n setTimeout(function () {\\n if (benefitId) {\\n toggleAccordionItem(benefitId, type);\\n }\\n }, delayTime);\\n });\\n\\n if (benefitLinks.length > 0) {\\n setupBenefitModalLinks();\\n }\\n\\n if (document.querySelectorAll(\".benefit-accordion__item\").length > 0) {\\n setupBenefitAccordionLinks();\\n }\\n}\\n\\n/* harmony default export */ __webpack_exports__[\"default\"] = (BenefitModal);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/BenefitModal.js?')},\"./assets/scripts/app/CountdownTimer.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var _bower_components_moment_moment__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../bower_components/moment/moment */ \\\"./bower_components/moment/moment.js\\\");\\n/* harmony import */ var _bower_components_moment_moment__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_bower_components_moment_moment__WEBPACK_IMPORTED_MODULE_0__);\\n\\n\\nfunction CountdownTimer() {\\n var timers = document.querySelectorAll('.countdown-timer');\\n\\n if (timers.length > 0) {\\n Array.prototype.forEach.call(timers, function (timer) {\\n startCountdown(timer);\\n });\\n }\\n\\n ;\\n\\n function startCountdown(timer) {\\n var timerElement = timer;\\n\\n if (timerElement && getDuration()._milliseconds > 0) {\\n timerElement.classList.remove('expired');\\n countdown();\\n }\\n\\n function getDuration() {\\n var deadline = timerElement.dataset.deadline;\\n var diffTime = _bower_components_moment_moment__WEBPACK_IMPORTED_MODULE_0___default()(deadline, 'YYYY-MM-DD HH:mm:ss').diff(_bower_components_moment_moment__WEBPACK_IMPORTED_MODULE_0___default()());\\n var duration = _bower_components_moment_moment__WEBPACK_IMPORTED_MODULE_0___default.a.duration(diffTime);\\n return duration;\\n }\\n\\n function countdown() {\\n var timer = setInterval(calcTime, 1000);\\n\\n function calcTime() {\\n var duration = getDuration();\\n var daysLeft = Math.floor(duration.asDays());\\n var timeLeft = {\\n days: ('0' + daysLeft).slice(-2).split(''),\\n hours: ('0' + duration.hours()).slice(-2).split(''),\\n minutes: ('0' + duration.minutes()).slice(-2).split(''),\\n seconds: ('0' + duration.seconds()).slice(-2).split('')\\n };\\n timerElement.querySelector('.days-one').innerText = timeLeft.days[0];\\n timerElement.querySelector('.days-two').innerText = timeLeft.days[1];\\n timerElement.querySelector('.hours-one').innerText = timeLeft.hours[0];\\n timerElement.querySelector('.hours-two').innerText = timeLeft.hours[1];\\n timerElement.querySelector('.minutes-one').innerText = timeLeft.minutes[0];\\n timerElement.querySelector('.minutes-two').innerText = timeLeft.minutes[1];\\n timerElement.querySelector('.seconds-one').innerText = timeLeft.seconds[0];\\n timerElement.querySelector('.seconds-two').innerText = timeLeft.seconds[1];\\n\\n if (duration._milliseconds <= 0) {\\n clearInterval(timer);\\n timerElement.classList.add('expired');\\n }\\n }\\n }\\n }\\n}\\n\\n;\\n/* harmony default export */ __webpack_exports__[\\\"default\\\"] = (CountdownTimer);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/CountdownTimer.js?\")},\"./assets/scripts/app/Form.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval(\"__webpack_require__.r(__webpack_exports__);\\nfunction Form() {\\n $(document).on('gform_post_render', function (event, form_id, current_page) {\\n var $validationError = $('.validation_error');\\n\\n if ($validationError.length) {\\n $validationError.insertAfter($validationError.parent().find('.gform_body'));\\n $validationError.prepend('');\\n }\\n });\\n}\\n\\n/* harmony default export */ __webpack_exports__[\\\"default\\\"] = (Form);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/Form.js?\")},\"./assets/scripts/app/FullWidth.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var _utilities_scrollbarWidth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utilities/scrollbarWidth */ \"./assets/scripts/utilities/scrollbarWidth.js\");\\n\\n\\nfunction FullWidth() {\\n var fullWidth = document.querySelectorAll(\".full-width\");\\n\\n if (!fullWidth) {\\n return;\\n }\\n\\n var siteMain = document.querySelector(\".site-wrapper\");\\n fullWidth.forEach(function (el) {\\n el.style.width = window.innerWidth - Object(_utilities_scrollbarWidth__WEBPACK_IMPORTED_MODULE_0__[\"default\"])() + \"px\";\\n\\n if (siteMain.getBoundingClientRect().left > 0) {\\n el.style.marginLeft = -siteMain.getBoundingClientRect().left + \"px\";\\n }\\n\\n $(el).addClass(\"width-calculated\");\\n });\\n}\\n\\n/* harmony default export */ __webpack_exports__[\"default\"] = (FullWidth);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/FullWidth.js?')},\"./assets/scripts/app/General.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! jquery */ \\\"./node_modules/jquery/dist/jquery.js\\\");\\n/* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(jquery__WEBPACK_IMPORTED_MODULE_0__);\\n/* harmony import */ var jquery_match_height_jquery_matchHeight__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! jquery-match-height/jquery.matchHeight */ \\\"./node_modules/jquery-match-height/jquery.matchHeight.js\\\");\\n/* harmony import */ var jquery_match_height_jquery_matchHeight__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(jquery_match_height_jquery_matchHeight__WEBPACK_IMPORTED_MODULE_1__);\\n/* harmony import */ var sticky_js_dist_sticky_min__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! sticky-js/dist/sticky.min */ \\\"./node_modules/sticky-js/dist/sticky.min.js\\\");\\n/* harmony import */ var sticky_js_dist_sticky_min__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(sticky_js_dist_sticky_min__WEBPACK_IMPORTED_MODULE_2__);\\n/* harmony import */ var _utilities_scrollbarWidth__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utilities/scrollbarWidth */ \\\"./assets/scripts/utilities/scrollbarWidth.js\\\");\\n\\n\\n\\n\\n\\nfunction General() {\\n // $('.mh').matchHeight();\\n //\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.key-info').each(function (index, el) {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()(el).find('.key-info__icon').matchHeight({\\n byRow: false\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()(el).find('.key-info__heading').matchHeight({\\n byRow: false\\n });\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()(\\\".c-card__sub-title--smaller\\\").matchHeight({\\n byRow: false\\n }); //$(function() {\\n //$('.logo-banner__slide-content').matchHeight({\\n // byRow: false\\n //});\\n //});\\n\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.contact-info__icon').matchHeight({\\n byRow: false\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.cell--highlight').matchHeight({\\n byRow: false\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.expand-tab').matchHeight({\\n byRow: false\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.file-box__row').matchHeight({\\n byRow: false\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()(\\\".styled-table\\\").each(function (index, el) {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()(el).find(\\\"td\\\").matchHeight({\\n byRow: false\\n });\\n });\\n var sticky = new sticky_js_dist_sticky_min__WEBPACK_IMPORTED_MODULE_2___default.a('.sticky'); // $(document).on('click', () => {\\n // $('.modal').fadeOut();\\n // });\\n\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.card-team').on('click', function (e) {\\n e.stopPropagation();\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()(e.currentTarget).next().fadeIn();\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.modal__close').on('click', function (e) {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()(e.currentTarget).closest('.modal').fadeOut();\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.modal__inner').on('click', function (e) {\\n e.stopPropagation();\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.team-modal').find('.link').on('click', function (e) {\\n var $this = jquery__WEBPACK_IMPORTED_MODULE_0___default()(e.currentTarget);\\n\\n if ($this.attr('href') !== '#') {\\n $this.closest('.modal').fadeOut();\\n }\\n });\\n\\n function updateExpandTabRowLines() {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.company-structure__tabs--desktop').find('.expand-tab').each(function (index, el) {\\n var $this = jquery__WEBPACK_IMPORTED_MODULE_0___default()(el);\\n\\n if ($this.hasClass('expand-tab--connect-previous-row')) {\\n var $previousRow = $this.closest('.company-structure__tab-row').prev();\\n var $rowLine = $this.find('.expand-tab__row-line');\\n $rowLine.height($previousRow.outerHeight() + 25);\\n }\\n\\n if (jquery__WEBPACK_IMPORTED_MODULE_0___default()('.company-structure__tabs--desktop').find('.expand-tab').hasClass('active')) {\\n var contentHeight = $this.next().outerHeight();\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.expand-tab.active').parent().parent().find('.expand-tab__arrow--bottom').height(contentHeight + 50);\\n } else {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.expand-tab').find('.expand-tab__arrow--bottom').height('25px');\\n }\\n });\\n }\\n\\n function updateExpandTabColLines() {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.company-structure__tabs--desktop').find('.expand-tab').each(function (index, el) {\\n var $this = jquery__WEBPACK_IMPORTED_MODULE_0___default()(el);\\n\\n if ($this.hasClass('expand-tab--link-to-tab')) {\\n var tabOffset = $this.offset().left + $this.width() / 2;\\n var $connectTo = jquery__WEBPACK_IMPORTED_MODULE_0___default()('#' + $this.attr('data-tab-connection'));\\n var connectToOffset = $connectTo.offset().left + $connectTo.width() / 2;\\n var $colLine = $this.find('.expand-tab__col-line');\\n\\n if (tabOffset - connectToOffset > 0) {\\n $colLine.css('right', '50%');\\n } else {\\n $colLine.css('left', '50%');\\n }\\n\\n $colLine.width(Math.abs(tabOffset - connectToOffset));\\n }\\n });\\n }\\n\\n updateExpandTabRowLines();\\n updateExpandTabColLines();\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.expand-tab').on('click', function (e) {\\n e.stopPropagation();\\n expandTab(jquery__WEBPACK_IMPORTED_MODULE_0___default()(e.currentTarget));\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.expand-content__close').on('click', function (e) {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.expand-tab').removeClass('active');\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.company-structure__tab-col').height('auto');\\n updateExpandTabRowLines();\\n updateExpandTabColLines();\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.company-structure__links').find('a').on('click', function (e) {\\n e.preventDefault();\\n\\n if (jquery__WEBPACK_IMPORTED_MODULE_0___default()(e.currentTarget).attr('href').startsWith('#') && jquery__WEBPACK_IMPORTED_MODULE_0___default()(e.currentTarget).attr('href') !== '#') {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('html, body').animate({\\n scrollTop: jquery__WEBPACK_IMPORTED_MODULE_0___default()(jquery__WEBPACK_IMPORTED_MODULE_0___default()(e.currentTarget).attr('href')).offset().top - jquery__WEBPACK_IMPORTED_MODULE_0___default()('.masthead').outerHeight()\\n }, 600);\\n expandTab(jquery__WEBPACK_IMPORTED_MODULE_0___default()(jquery__WEBPACK_IMPORTED_MODULE_0___default()(e.currentTarget).attr('href')));\\n }\\n });\\n\\n function expandTab($el) {\\n var $this = $el;\\n var thisHeight = $this.outerHeight();\\n var contentHeight = $this.next().outerHeight();\\n\\n if (!$this.hasClass('active')) {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.expand-tab').removeClass('active');\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.company-structure__tab-col').height('auto');\\n $this.addClass('active');\\n $this.parent().height(contentHeight + thisHeight + parseInt($this.next().css('margin-top'), 10));\\n } else {\\n $this.removeClass('active');\\n $this.parent().height('auto');\\n }\\n\\n updateExpandTabRowLines();\\n updateExpandTabColLines();\\n }\\n\\n function moveSubNav($nextEl) {\\n if (jquery__WEBPACK_IMPORTED_MODULE_0___default()('.sub-navigation').length) {\\n if (jquery__WEBPACK_IMPORTED_MODULE_0___default()(window).width() + Object(_utilities_scrollbarWidth__WEBPACK_IMPORTED_MODULE_3__[\\\"default\\\"])() < 768) {\\n if (jquery__WEBPACK_IMPORTED_MODULE_0___default()('.site-wrapper').children('section').last().hasClass('cta')) {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.sub-navigation').insertBefore(jquery__WEBPACK_IMPORTED_MODULE_0___default()('.site-wrapper').children('section').last());\\n } else {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.sub-navigation').appendTo(jquery__WEBPACK_IMPORTED_MODULE_0___default()('.site-wrapper'));\\n }\\n } else {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.sub-navigation').insertBefore($nextEl);\\n }\\n }\\n }\\n\\n var $nextEl = '';\\n\\n if (jquery__WEBPACK_IMPORTED_MODULE_0___default()('.sub-navigation').length) {\\n $nextEl = jquery__WEBPACK_IMPORTED_MODULE_0___default()('.sub-navigation').next();\\n $nextEl.addClass('after-sub');\\n moveSubNav($nextEl);\\n }\\n\\n var t;\\n\\n var updateDimensions = function updateDimensions(e) {\\n if (updateDimensions._tick) {\\n cancelAnimationFrame(updateDimensions._tick);\\n }\\n\\n clearTimeout(t);\\n updateDimensions._tick = requestAnimationFrame(function () {\\n updateDimensions._tick = null;\\n updateExpandTabRowLines();\\n updateExpandTabColLines();\\n moveSubNav($nextEl);\\n expandTab(jquery__WEBPACK_IMPORTED_MODULE_0___default()('.expand-tab.active'));\\n t = setTimeout(function () {\\n sticky.update();\\n }, 5);\\n });\\n };\\n\\n window.addEventListener('resize', updateDimensions);\\n}\\n\\n/* harmony default export */ __webpack_exports__[\\\"default\\\"] = (General);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/General.js?\")},\"./assets/scripts/app/HeadingHeight.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\nfunction headingHeight() {\\n var listItems = document.querySelectorAll(\".c-content-list__item\");\\n\\n if (listItems.length > 0) {\\n for (var i = 0; listItems.length > i; i++) {\\n var selectedItem = listItems[i];\\n var heading = selectedItem.querySelector(\".c-content-list__heading\");\\n var content = selectedItem.querySelector(\".c-content-list__content\");\\n var _headingHeight = heading.offsetHeight;\\n content.setAttribute(\"style\", \"--offset: \" + _headingHeight + \"px;\");\\n }\\n }\\n}\\n\\n/* harmony default export */ __webpack_exports__[\"default\"] = (headingHeight);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/HeadingHeight.js?')},\"./assets/scripts/app/Hero.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\nfunction Hero() {\\n var _navigator = navigator,\\n userAgent = _navigator.userAgent;\\n var isEdge = userAgent.includes(\"Edge/\");\\n\\n function getEdgeVersion() {\\n var edgeVersion = isEdge && parseInt(userAgent.split(\"Edge/\")[1]);\\n\\n if (isEdge && edgeVersion) {\\n return edgeVersion;\\n }\\n\\n return false;\\n }\\n\\n if (isEdge) {\\n var edgeVersion = getEdgeVersion();\\n\\n if (edgeVersion <= 18) {\\n $(\".hero__image\").removeClass(\"hidden\");\\n }\\n }\\n}\\n\\n/* harmony default export */ __webpack_exports__[\"default\"] = (Hero);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/Hero.js?')},\"./assets/scripts/app/LiveSearch.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var dompurify__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! dompurify */ \\\"./node_modules/dompurify/dist/purify.js\\\");\\n/* harmony import */ var dompurify__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(dompurify__WEBPACK_IMPORTED_MODULE_0__);\\n/* harmony import */ var _utilities_wrapMatch__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utilities/wrapMatch */ \\\"./assets/scripts/utilities/wrapMatch.js\\\");\\n\\n\\n\\nfunction LiveSearch() {\\n var $liveSearchWrapper = $('.search-results-wrapper');\\n var $liveSearch = $('.live-search');\\n var $searchResults = $('.live-search-results');\\n var $notFound = $('.live-search-results__not-found');\\n var t,\\n isSearching = false;\\n $('body').on('click', function () {\\n $liveSearchWrapper.removeClass('active');\\n $notFound.removeClass('active');\\n });\\n $('.live-search-wrapper').on('click', function (e) {\\n e.stopPropagation();\\n\\n if ($searchResults.children().length) {\\n $liveSearchWrapper.addClass('active');\\n }\\n });\\n $liveSearch.on('keyup', function (e) {\\n e.preventDefault();\\n var $this = $(e.currentTarget);\\n var term = $this.val();\\n $('.view-all-results').attr('href', theme_params.home + '/?s=' + term);\\n\\n if (!term) {\\n $searchResults.empty();\\n $liveSearchWrapper.removeClass('active');\\n $notFound.removeClass('active');\\n }\\n\\n clearTimeout(t);\\n t = setTimeout(function () {\\n isSearching = true;\\n var data = {\\n action: \\\"live_search\\\",\\n _nonce: $('#live-search-submitted').val(),\\n _s: term\\n };\\n $.ajax({\\n url: theme_params.ajaxurl,\\n // AJAX handler\\n data: data,\\n method: \\\"GET\\\"\\n }).done(function (result) {\\n $searchResults.empty();\\n\\n if (!result) {\\n if (term) {\\n $notFound.addClass('active');\\n $liveSearchWrapper.removeClass('active');\\n }\\n\\n return;\\n }\\n\\n var response = $.parseJSON(result);\\n\\n if (response) {\\n term = $this.val();\\n\\n if (!term) {\\n $searchResults.empty();\\n $notFound.removeClass('active');\\n $liveSearchWrapper.removeClass('active');\\n return;\\n }\\n\\n if (response.posts) {\\n $searchResults.append(dompurify__WEBPACK_IMPORTED_MODULE_0___default.a.sanitize(response.posts));\\n $notFound.removeClass('active');\\n $liveSearchWrapper.addClass('active');\\n $searchResults.find('a').each(function (index, elem) {\\n Object(_utilities_wrapMatch__WEBPACK_IMPORTED_MODULE_1__[\\\"default\\\"])(elem, term);\\n });\\n } else {\\n $searchResults.empty();\\n $liveSearchWrapper.removeClass('active');\\n\\n if (term) {\\n $notFound.addClass('active');\\n }\\n }\\n }\\n\\n isSearching = false;\\n }).fail(function (err) {\\n console.log(err);\\n $liveSearchWrapper.removeClass('active');\\n isSearching = false;\\n });\\n }, 250);\\n });\\n}\\n\\n/* harmony default export */ __webpack_exports__[\\\"default\\\"] = (LiveSearch);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/LiveSearch.js?\")},\"./assets/scripts/app/Menu.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var _FullWidth__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./FullWidth */ \\\"./assets/scripts/app/FullWidth.js\\\");\\n\\n\\nfunction Menu() {\\n var $masthead = $(\\\".masthead\\\"),\\n $burger = $(\\\".burger\\\"),\\n $navigation = $('.masthead__navigation'),\\n $mobileNav = $(\\\".mobile-navigation\\\"),\\n $closeModal = $('.close-modal'),\\n $searchTrigger = $('.search-trigger'),\\n $stickyHeader = $('.sticky-header'),\\n $mastfoot = $('.mastfoot');\\n var animating = false;\\n $('a[href=\\\"#\\\"]').on('click', function (e) {\\n e.preventDefault();\\n });\\n $burger.on(\\\"click\\\", function (e) {\\n var $this = $(e.currentTarget);\\n $burger.toggleClass(\\\"active\\\");\\n\\n if ($burger.hasClass(\\\"active\\\")) {\\n $('body').addClass('overflow-hidden');\\n Object(_FullWidth__WEBPACK_IMPORTED_MODULE_0__[\\\"default\\\"])();\\n $mobileNav.addClass(\\\"active\\\");\\n } else {\\n $('body').removeClass('overflow-hidden');\\n Object(_FullWidth__WEBPACK_IMPORTED_MODULE_0__[\\\"default\\\"])();\\n $mobileNav.removeClass('active'); // $mobileNav.removeClass('sub-open');\\n // $masthead.removeClass(\\\"active\\\");\\n\\n $mobileNav.find('ul').removeClass('current active');\\n }\\n });\\n $mobileNav.find('.menu-item-has-children').on('click', function (e) {\\n e.stopPropagation(); // $mobileNav.addClass('sub-open');\\n // $mobileNav.scrollTop(0);\\n // $mobileNav.find('ul').scrollTop(0);\\n // $mobileNav.find('ul').removeClass('current');\\n\\n if (!$(e.currentTarget).children('ul').hasClass('active')) {\\n $(e.currentTarget).addClass('clicked');\\n $(e.currentTarget).children('ul').addClass('active');\\n } else {\\n $(e.currentTarget).removeClass('clicked');\\n $(e.currentTarget).children('ul').removeClass('active');\\n }\\n });\\n $mobileNav.find('.menu-item-has-children').children('a').on('click', function (e) {\\n e.stopPropagation();\\n }); //$mobileNav.find('.menu-item-has-children > ul').prepend('
  • Back
  • ');\\n\\n $mobileNav.find('.menu-back').on('click', function (e) {\\n e.stopPropagation();\\n var $this = $(e.currentTarget);\\n\\n if ($this.parent().parent().parent().hasClass('menu')) {\\n $mobileNav.removeClass('sub-open');\\n $mobileNav.find('ul').removeClass('current');\\n $this.parent().removeClass('active');\\n } else {\\n $this.parent().parent().parent().addClass('current');\\n $this.parent().removeClass('active current');\\n }\\n });\\n $mobileNav.find('li').on('click', function (e) {\\n e.stopPropagation();\\n });\\n $closeModal.on('click', function (e) {\\n e.preventDefault(); //Elements to Close\\n });\\n $searchTrigger.on('click', function (e) {\\n e.preventDefault(); //Search Modal\\n });\\n\\n function menuItemStates($this, type) {\\n if (type === 'leave') {\\n $this.removeClass('active');\\n $this.find('li').removeClass('active');\\n } else {\\n if (!$this.closest('li').hasClass('active')) {\\n //$this.closest('li').addClass('active');\\n $('.menu-item-has-children').removeClass('active');\\n $this.parents('li').addClass('active');\\n $this.addClass('active');\\n } else {\\n if (type === 'click') {\\n $this.removeClass('active');\\n $this.find('li').removeClass('active');\\n }\\n }\\n }\\n\\n if ($('.masthead .menu-item-has-children.active').length) {\\n $masthead.addClass('active-hovered');\\n } else {\\n $masthead.removeClass('active-hovered');\\n }\\n }\\n\\n $('.nav-item-toggle').on('click touchend', function (e) {\\n e.preventDefault();\\n e.stopPropagation();\\n menuItemStates($(e.currentTarget).closest('li'), 'click');\\n });\\n $masthead.find('.menu-item-has-children').on('mouseenter', function (e) {\\n //const $this = $(e.currentTarget)\\n menuItemStates($(e.currentTarget), 'enter');\\n });\\n $masthead.find('.menu-item-has-children').on('mouseleave', function (e) {\\n menuItemStates($(e.currentTarget), 'leave');\\n });\\n $('.featured-menu-item').each(function (index, el) {\\n $(el).next().find('.sub-menu-inner').append($(el));\\n });\\n $mastfoot.find('.menu-item-has-children').on('click', function (e) {\\n $(e.currentTarget).toggleClass('clicked');\\n });\\n $('.sub-menu-inner').each(function (index, el) {\\n var $parent = $(el).parent().closest('li').children('a');\\n var $items = $(el).find('.nav-subtitle');\\n\\n if ($items.length > 0) {\\n $items.each(function (index, item) {\\n var link = item.querySelector('.link');\\n\\n if (link) {\\n link.classList.add('label', 'nav-unstyled-link');\\n link.classList.remove('link');\\n }\\n });\\n } else {\\n $(el).find('.sub-menu-main-links').prepend('' + $parent.text() + '');\\n }\\n });\\n\\n var updateScroll = function updateScroll() {\\n if (updateScroll._tick) {\\n cancelAnimationFrame(updateScroll._tick);\\n }\\n\\n updateScroll._tick = requestAnimationFrame(function () {\\n updateScroll._tick = null;\\n\\n if ($stickyHeader.length) {\\n if ($(window).scrollTop() >= 350) {\\n $stickyHeader.addClass('active');\\n } else {\\n $stickyHeader.removeClass('active');\\n }\\n }\\n });\\n };\\n\\n window.addEventListener('scroll', updateScroll, {\\n passive: true\\n });\\n updateScroll();\\n}\\n\\n/* harmony default export */ __webpack_exports__[\\\"default\\\"] = (Menu);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/Menu.js?\")},\"./assets/scripts/app/Posts.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var _utilities_triggerResizeEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utilities/triggerResizeEvent */ \"./assets/scripts/utilities/triggerResizeEvent.js\");\\n/* harmony import */ var infinite_scroll__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! infinite-scroll */ \"./node_modules/infinite-scroll/js/index.js\");\\n/* harmony import */ var infinite_scroll__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(infinite_scroll__WEBPACK_IMPORTED_MODULE_1__);\\n/* harmony import */ var imagesloaded__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! imagesloaded */ \"./node_modules/imagesloaded/imagesloaded.js\");\\n/* harmony import */ var imagesloaded__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(imagesloaded__WEBPACK_IMPORTED_MODULE_2__);\\n\\n\\n\\n\\nvar Posts = function Posts() {\\n var elem = document.querySelector(\\'.inf-grid\\');\\n\\n if ($(elem).length && $(\\'.next-posts-link a \\').length) {\\n var infScroll = new infinite_scroll__WEBPACK_IMPORTED_MODULE_1___default.a(elem, {\\n // options\\n path: \\'.next-posts-link a\\',\\n append: \\'.inf-post\\',\\n history: false,\\n button: \\'.pagination-infinite__button\\',\\n scrollThreshold: false,\\n status: \".page-load-status\"\\n });\\n infScroll.imagesLoaded = imagesloaded__WEBPACK_IMPORTED_MODULE_2___default.a;\\n infScroll.on(\"append\", function (event, response, path, items) {\\n $(items).addClass(\"appended-item\");\\n window.dispatchEvent(_utilities_triggerResizeEvent__WEBPACK_IMPORTED_MODULE_0__[\"default\"]);\\n infScroll.imagesLoaded(function () {\\n $(items).find(\"img\").each(function (index, img) {\\n img.outerHTML = img.outerHTML;\\n });\\n });\\n });\\n }\\n};\\n\\n/* harmony default export */ __webpack_exports__[\"default\"] = (Posts);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/Posts.js?')},\"./assets/scripts/app/ProductSelect.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\nfunction ProductSelect() {\\n //disable button by default\\n $(\"#product_details--active #\".concat($(\"input[name=product-type]\").val(), \"_btn_continue\")).addClass(\"disabled\");\\n $(\"input[name=product-type]\").on(\"change\", function () {\\n if ($(this).prop(\"checked\")) {\\n //Clear error message\\n $(\"#err-msg\").css(\"display\", \"none\"); //Remove all highlights\\n\\n $(\".choose-product\").each(function () {\\n $(this).removeClass(\"highlight\");\\n }); //readd highlight to selected\\n\\n $(this).parent().addClass(\"highlight\"); //Selected value\\n\\n var id = $(this).val(); //enable selected button\\n\\n $(\"#\".concat(id, \"_btn_continue\")).removeClass(\"disabled\"); //show/hide product details sections\\n\\n var productDetails = $(\"#product_details--active\");\\n\\n for (var i = 0; i < productDetails.children().length; i++) {\\n var element = productDetails.children()[i];\\n\\n if (element.id == \"\".concat(id, \"_product_details\")) {\\n element.classList.remove(\"hidden\");\\n } else {\\n element.classList.add(\"hidden\");\\n }\\n }\\n\\n $(\"html, body\").animate({\\n scrollTop: productDetails.offset().top - $(\".masthead\").outerHeight()\\n }, 600);\\n }\\n }); //manually trigger change to check if radio buttons have been checked on init\\n\\n $(\"input[name=product-type]\").trigger(\"change\");\\n}\\n\\n/* harmony default export */ __webpack_exports__[\"default\"] = (ProductSelect);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/ProductSelect.js?')},\"./assets/scripts/app/ScrollTo.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval(\"__webpack_require__.r(__webpack_exports__);\\nfunction scrollTo() {\\n // #/ signifies an angular app route not a html element\\n if (window.location.hash && !window.location.hash.startsWith(\\\"#/\\\")) {\\n var $scrollToEl = $(window.location.hash);\\n\\n if ($scrollToEl.length) {\\n $('html, body').animate({\\n scrollTop: $scrollToEl.offset().top - $('.masthead').outerHeight()\\n }, 500);\\n }\\n }\\n\\n $(\\\".scroll-anchor\\\").on('click', function (e) {\\n var $this = $(e.currentTarget);\\n\\n if ($this.attr('href') !== '#') {\\n $('html, body').animate({\\n scrollTop: $($this.attr('href')).offset().top - $('.masthead').outerHeight()\\n }, 600);\\n }\\n });\\n}\\n\\n/* harmony default export */ __webpack_exports__[\\\"default\\\"] = (scrollTo);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/ScrollTo.js?\")},\"./assets/scripts/app/Sliders.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \\\"initialiseSliders\\\", function() { return initialiseSliders; });\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \\\"destroySliders\\\", function() { return destroySliders; });\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \\\"initSlick\\\", function() { return initSlick; });\\n/* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! jquery */ \\\"./node_modules/jquery/dist/jquery.js\\\");\\n/* harmony import */ var jquery__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(jquery__WEBPACK_IMPORTED_MODULE_0__);\\n/* harmony import */ var slick_carousel__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! slick-carousel */ \\\"./node_modules/slick-carousel/slick/slick.js\\\");\\n/* harmony import */ var slick_carousel__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(slick_carousel__WEBPACK_IMPORTED_MODULE_1__);\\n/* harmony import */ var _utilities_triggerResizeEvent__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utilities/triggerResizeEvent */ \\\"./assets/scripts/utilities/triggerResizeEvent.js\\\");\\nfunction _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\\n\\nfunction _nonIterableSpread() { throw new TypeError(\\\"Invalid attempt to spread non-iterable instance.\\\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\\\"); }\\n\\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \\\"string\\\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \\\"Object\\\" && o.constructor) n = o.constructor.name; if (n === \\\"Map\\\" || n === \\\"Set\\\") return Array.from(o); if (n === \\\"Arguments\\\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\\n\\nfunction _iterableToArray(iter) { if (typeof Symbol !== \\\"undefined\\\" && Symbol.iterator in Object(iter)) return Array.from(iter); }\\n\\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\\n\\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\\n\\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\\n\\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\\n\\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\\n\\n\\n\\n // default number of slides needed to initialise the slider/carousel\\n\\nvar minimumSlidesCount = 4; // default properties to pass to the slider init function, to be amended/extended (by spread operator) \\n// when initialising the individual sliders\\n\\nvar slideOptions = {\\n slidesToShow: 5,\\n slidesToScroll: 1,\\n dots: false,\\n arrows: true,\\n infinite: true,\\n centerMode: true,\\n centerPadding: 0,\\n matchHeight: true,\\n variableWidth: true,\\n responsive: [{\\n breakpoint: 992,\\n settings: {\\n slidesToShow: 3\\n }\\n }, {\\n breakpoint: 576,\\n settings: {\\n slidesToShow: 1\\n }\\n }]\\n}; // The list of current sliders needing to be initialised on load\\n\\nvar currentSliders = [{\\n rootEl: jquery__WEBPACK_IMPORTED_MODULE_0___default()('.logo-banner__slider'),\\n options: {\\n appendArrows: jquery__WEBPACK_IMPORTED_MODULE_0___default()('.logo-banner__arrows')\\n }\\n}, {\\n rootEl: jquery__WEBPACK_IMPORTED_MODULE_0___default()('.row--slider'),\\n options: {\\n slidesToShow: 3,\\n dots: true,\\n infinite: false,\\n responsive: [{\\n breakpoint: 768,\\n settings: {\\n slidesToShow: 1\\n }\\n }]\\n }\\n}];\\nvar initialiseSliders = function initialiseSliders(slideElement) {\\n if (slideElement !== undefined) {\\n // init a specific slider\\n var options = _objectSpread(_objectSpread({}, slideOptions), slideElement.options);\\n\\n initSlick(slideElement.rootEl, options, slideElement.slideModifier);\\n } else {\\n // map all current sliders\\n currentSliders.map(function (slideElement) {\\n // Call initSlick passing the options\\n var options = _objectSpread(_objectSpread({}, slideOptions), slideElement.options);\\n\\n initSlick(slideElement.rootEl, options, slideElement.slideModifier);\\n });\\n }\\n};\\nvar destroySliders = function destroySliders(selector, sliderElement) {\\n if (sliderElement !== undefined) {\\n // operate on the specific element passed in\\n if (sliderElement.hasClass('slick-initialized')) {\\n var $el = jquery__WEBPACK_IMPORTED_MODULE_0___default()(sliderElement);\\n $el.slick('unslick');\\n }\\n } else {\\n // look for any matching the selector\\n var slidersList = document.querySelectorAll(selector);\\n\\n _toConsumableArray(slidersList).map(function (slider) {\\n // Call initSlick passing the options\\n if (slider.classList.contains('slick-initialized')) {\\n var $elem = jquery__WEBPACK_IMPORTED_MODULE_0___default()(slider);\\n $elem.slick('unslick');\\n }\\n });\\n }\\n};\\nvar initSlick = function initSlick($selector, options, classModifier) {\\n $selector.each(function (index, el) {\\n var $elem = jquery__WEBPACK_IMPORTED_MODULE_0___default()(el);\\n\\n if (!$elem.length || $elem.children('div[class*=__slide]').length < minimumSlidesCount) {\\n return;\\n }\\n\\n if (!options) {\\n options = {\\n infinite: true,\\n slidesToShow: 3,\\n slidesToScroll: 3\\n };\\n }\\n\\n if (options.dataSlidesToShow) {\\n options.slidesToShow = parseInt($elem.attr('data-slides'));\\n }\\n\\n if (options.appendElDots) {\\n options.appendDots = $elem.closest('section').find(options.appendElDots);\\n }\\n\\n if (options.appendSlideDots) {\\n options.appendDots = $elem.find(options.appendSlideDots);\\n }\\n\\n $elem.on('init', function (event, slick, direction) {\\n if (options.matchHeight) {\\n $elem.find('.slide').matchHeight({\\n byRow: false\\n });\\n }\\n\\n if (options.onWheel) {\\n $elem.on('wheel', function (e) {\\n e.preventDefault();\\n\\n if (e.originalEvent.deltaY > 0) {\\n $elem.slick('slickNext');\\n } else {\\n $elem.slick('slickPrev');\\n }\\n });\\n }\\n\\n $elem.find('.slick-slide.slick-active').first().addClass('first');\\n $elem.find('.slick-slide.slick-active').last().addClass('last'); // add custom class modifiers if passed\\n\\n if (classModifier !== undefined) {\\n $elem.find('.slick-slide').addClass('slick-slide' + classModifier);\\n $elem.find('.slick-track').addClass('slick-track' + classModifier);\\n }\\n\\n if (options.appendArrows !== undefined) {\\n options.appendArrows.find('.slick-arrow').addClass('slick-arrow' + classModifier);\\n }\\n\\n $elem.on('beforeChange', function (event, slick, currentSlide, nextSlide) {\\n $elem.find('.slick-slide.slick-slide').removeClass('first last');\\n\\n if (options.appendSlideDots) {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default.a.each(slick.$dots, function (i, ul) {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()(ul).find('li').removeClass('active');\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()(ul).find('li').eq(nextSlide).addClass('active');\\n });\\n }\\n\\n var direction,\\n slideCountZeroBased = slick.slideCount - 1;\\n\\n if (nextSlide === currentSlide) {\\n direction = \\\"same\\\";\\n } else if (Math.abs(nextSlide - currentSlide) === 1) {\\n direction = nextSlide - currentSlide > 0 ? \\\"right\\\" : \\\"left\\\";\\n } else {\\n direction = nextSlide - currentSlide > 0 ? \\\"left\\\" : \\\"right\\\";\\n } // Add a temp CSS class for the slide animation (.slick-current-clone-animate)\\n\\n\\n if (direction === 'right') {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.slick-cloned[data-slick-index=\\\"' + (nextSlide + slideCountZeroBased + 1) + '\\\"]', $elem).addClass('slick-current-clone-animate');\\n }\\n\\n if (direction === 'left') {\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.slick-cloned[data-slick-index=\\\"' + (nextSlide - slideCountZeroBased - 1) + '\\\"]', $elem).addClass('slick-current-clone-animate');\\n }\\n });\\n $elem.on('afterChange', function (event, slick, currentSlide, nextSlide) {\\n $elem.find('.slick-slide.slick-active').first().addClass('first');\\n $elem.find('.slick-slide.slick-active').last().addClass('last');\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.slick-current-clone-animate', $elem).removeClass('slick-current-clone-animate');\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.slick-current-clone-animate', $elem).removeClass('slick-current-clone-animate');\\n });\\n jquery__WEBPACK_IMPORTED_MODULE_0___default()('.slick-dots').on('click', function (e) {\\n e.stopPropagation();\\n e.preventDefault();\\n });\\n window.dispatchEvent(_utilities_triggerResizeEvent__WEBPACK_IMPORTED_MODULE_2__[\\\"default\\\"]);\\n }); // one time \\\"on and off\\\" setting the height\\n\\n $elem.slick(options).one('setPosition', function (event, slick) {\\n slick.$slides.css('height', slick.$slideTrack.height() + 'px');\\n });\\n });\\n};\\n\\n//# sourceURL=webpack:///./assets/scripts/app/Sliders.js?\")},\"./assets/scripts/app/TabMenu.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval(\"__webpack_require__.r(__webpack_exports__);\\n/*function that will open and close a menu that will scroll\\r\\n to sections in the page. Currently only available on mobile, this functionality may be\\r\\n included in desktop in the future*/\\nfunction TabMenu() {\\n var tabs = document.querySelector('.tabs');\\n var mobileTabLinks = document.querySelectorAll('.tab-link.mobile');\\n var firstTab = document.querySelector('.first-tab.mobile');\\n var toggleMenu = document.querySelector('.toggle-menu');\\n var open = false;\\n\\n if (toggleMenu && tabs) {\\n /* open and close the menu on click, will make all the links visible and \\r\\n add a class to show the correct icon */\\n toggleMenu.addEventListener('click', function (e) {\\n if (!open) {\\n mobileTabLinks.forEach(function (tab) {\\n return tab.classList.add('visible');\\n });\\n firstTab.classList.add('clicked');\\n open = true;\\n } else {\\n closeMenu();\\n }\\n }); // close the menu when the user clicks on one of the links\\n\\n tabs.addEventListener('click', function (e) {\\n var clicked = e.target.closest('.tab-link');\\n if (!clicked) return;\\n closeMenu();\\n });\\n }\\n /* function to close the menu, removing the class to make the links visible\\r\\n and removing the class to show the correct icon */\\n\\n\\n function closeMenu() {\\n if (open) {\\n mobileTabLinks.forEach(function (tab, i) {\\n if (i > 0) {\\n tab.classList.remove('visible');\\n }\\n });\\n firstTab.classList.remove('clicked');\\n open = false;\\n }\\n }\\n /**\\r\\n * Desktop active tab functionality\\r\\n */\\n\\n\\n var desktopTabLinks = document.querySelectorAll('.tab-link.desktop');\\n desktopTabLinks.forEach(function (singleTab) {\\n singleTab.addEventListener('click', function (event) {\\n var target = event.target;\\n\\n if (!target.classList.contains('tab-link--active')) {\\n var activeTab = target.parentNode.querySelector('.tab-link.desktop.tab-link--active');\\n target.classList.add('tab-link--active');\\n activeTab && activeTab.classList.remove('tab-link--active');\\n }\\n });\\n });\\n}\\n\\n/* harmony default export */ __webpack_exports__[\\\"default\\\"] = (TabMenu);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/TabMenu.js?\")},\"./assets/scripts/app/TabbedContent.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\nfunction TabbedContent() {\\n //Set default\\n $(\\'.tab-list-item:first-child\\').addClass(\\'active\\');\\n $(\\'.tabcontent\\').hide();\\n $(\\'.tabcontent:first\\').show();\\n var accordionToggles = document.querySelectorAll(\".c-tabbed-element__toggle\");\\n accordionToggles.forEach(function (toggle) {\\n toggle.addEventListener(\"click\", function () {\\n document.querySelectorAll(\".c-tabbed-element__toggle.active\").forEach(function (activeToggle) {\\n activeToggle.classList.remove(\"active\");\\n var activePanel = document.querySelector(\"#\" + activeToggle.getAttribute(\"for\") + \"-panel\");\\n activePanel.classList.remove(\"active\");\\n });\\n this.classList.add(\"active\");\\n var panel = document.querySelector(\"#\" + this.getAttribute(\"for\") + \"-panel\");\\n panel.classList.add(\"active\");\\n });\\n });\\n $(function openTab() {\\n $(\\'.tab li a\\').on(\"click\", function (e) {\\n // emit event that can be acted upon in other (child) elements \\n // (needed to ensure that the tab is \"visible\" before any DOM-related follow up\\n // actions can be performed\\n var tabEvent = new CustomEvent(\"tabEvent\", {\\n detail: {\\n \\'tab\\': $(this)\\n },\\n bubbles: true,\\n cancelable: true,\\n composed: false\\n });\\n var currentTab = $(this).attr(\\'href\\');\\n e.preventDefault(); // Check for active\\n\\n $(\\'.tab li\\').removeClass(\\'active\\');\\n $(this).parent().addClass(\\'active\\'); // Display active tab\\n\\n $(\\'.tabcontent\\').hide();\\n $(currentTab).show();\\n e.currentTarget.dispatchEvent(tabEvent);\\n return false;\\n });\\n });\\n}\\n\\n/* harmony default export */ __webpack_exports__[\"default\"] = (TabbedContent);\\n\\n//# sourceURL=webpack:///./assets/scripts/app/TabbedContent.js?')},\"./assets/scripts/app/blocks/ProductCardCarouselCollection.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return ProductCardCarouselCollection; });\\n/* harmony import */ var _Sliders__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Sliders */ \"./assets/scripts/app/Sliders.js\");\\n/* harmony import */ var _utilities_matchElementHeight__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../utilities/matchElementHeight */ \"./assets/scripts/utilities/matchElementHeight.js\");\\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\\n\\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\\n\\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\\n\\n\\n\\nvar sliderElement = {\\n slideModifier: \"--product-card-carousel\",\\n options: {\\n slidesToShow: 3,\\n centerMode: false,\\n infinite: false,\\n responsive: [{\\n breakpoint: 1110,\\n settings: {\\n slidesToShow: 3\\n }\\n }, {\\n breakpoint: 992,\\n settings: {\\n slidesToShow: 2\\n }\\n }, {\\n breakpoint: 576,\\n settings: {\\n slidesToShow: 2\\n }\\n }]\\n }\\n};\\nvar listenersAdded = 0;\\nfunction ProductCardCarouselCollection() {\\n var sliderContainers = document.querySelectorAll(\\'.product-card-carousel__tabs-container\\');\\n\\n if (sliderContainers.length > 0) {\\n sliderContainers.forEach(function (sliderContainer) {\\n var slider = sliderContainer.querySelectorAll(\\'.product-card-carousel__slider--large\\')[0];\\n\\n if (window.screen.width < 992) {\\n Object(_Sliders__WEBPACK_IMPORTED_MODULE_0__[\"destroySliders\"])(\".product-card-carousel__slider--large\");\\n } else {\\n var sliderArrows = sliderContainer.querySelectorAll(\\'.product-card-carousel__arrows\\')[0];\\n\\n if (slider !== undefined && sliderArrows !== undefined) {\\n sliderElement.rootEl = $(slider);\\n sliderElement.options.appendArrows = $(sliderArrows);\\n Object(_Sliders__WEBPACK_IMPORTED_MODULE_0__[\"initialiseSliders\"])(sliderElement); // set up the tabbed version (tablet +) - init sliders on click of each tab\\n\\n var tabLinks = sliderContainer.querySelectorAll(\".tab-link\");\\n\\n for (var i = 0; i < tabLinks.length; i++) {\\n if (listenersAdded < tabLinks.length - 1) {\\n // remove tab event listeners furst to save them building up on repeated clicks, then re-add\\n tabLinks[i].removeEventListener(\"tabEvent\", initSlidersOnTabEvent, true);\\n tabLinks[i].addEventListener(\"tabEvent\", initSlidersOnTabEvent, true);\\n listenersAdded++;\\n }\\n }\\n }\\n }\\n });\\n }\\n\\n function initSlidersOnTabEvent(event) {\\n // get the current index\\n var tabIndex = event.target.getAttribute(\"data-index\"); // get the root element of this tab\\n\\n var tabRoot = document.querySelector(\"#tab-slider-\" + tabIndex);\\n Object(_utilities_matchElementHeight__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(tabRoot, \".product-card-carousel__slide\"); // specific id for the root element and arrow container (jquery format as slider is jquery only)\\n\\n var tabSliderToInit = _objectSpread(_objectSpread({}, sliderElement), {}, {\\n \\'rootEl\\': $(\"#tab-slider-\" + tabIndex)\\n });\\n\\n tabSliderToInit.options.appendArrows = $(\"#tab-arrows-\" + tabIndex);\\n Object(_Sliders__WEBPACK_IMPORTED_MODULE_0__[\"initialiseSliders\"])(tabSliderToInit); // set a flag to prevent other sliders over-riding this\\n\\n localStorage.setItem(\"activeTabSlider\", tabIndex);\\n }\\n}\\n\\n//# sourceURL=webpack:///./assets/scripts/app/blocks/ProductCardCarouselCollection.js?')},\"./assets/scripts/app/blocks/RecommendedArticles.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return RecommendedArticles; });\\n/* harmony import */ var _Sliders__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Sliders */ \"./assets/scripts/app/Sliders.js\");\\n\\nvar sliderElement = {\\n slideModifier: \"--article-carousel\",\\n options: {\\n slidesToShow: 3,\\n centerMode: true,\\n centerPadding: \\'0\\',\\n responsive: [{\\n breakpoint: 992,\\n settings: {\\n slidesToShow: 2\\n }\\n }, {\\n breakpoint: 576,\\n settings: {\\n slidesToShow: 2\\n }\\n }]\\n }\\n};\\nfunction RecommendedArticles() {\\n var articleSliderContainers = document.querySelectorAll(\\'.recommended-articles__container\\');\\n\\n if (articleSliderContainers.length > 0) {\\n articleSliderContainers.forEach(function (articleContainer) {\\n var slider = articleContainer.querySelectorAll(\\'.recommended-articles__articles\\')[0];\\n\\n if (window.innerWidth < 992) {\\n Object(_Sliders__WEBPACK_IMPORTED_MODULE_0__[\"destroySliders\"])(\".recommended-articles__articles\");\\n } else {\\n var sliderArrows = articleContainer.querySelectorAll(\\'.slider__arrows\\')[0];\\n\\n if (slider !== undefined && sliderArrows !== undefined) {\\n sliderElement.rootEl = $(slider);\\n sliderElement.options.appendArrows = $(sliderArrows);\\n Object(_Sliders__WEBPACK_IMPORTED_MODULE_0__[\"initialiseSliders\"])(sliderElement);\\n }\\n }\\n });\\n }\\n}\\n\\n//# sourceURL=webpack:///./assets/scripts/app/blocks/RecommendedArticles.js?')},\"./assets/scripts/app/blocks/Signposts.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return SignpostsCarousel; });\\n/* harmony import */ var _Sliders__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Sliders */ \"./assets/scripts/app/Sliders.js\");\\n/* harmony import */ var _utilities_matchElementHeight__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../utilities/matchElementHeight */ \"./assets/scripts/utilities/matchElementHeight.js\");\\n\\n\\nvar sliderElement = {\\n slideModifier: \"--product-card-carousel\",\\n options: {\\n slidesToShow: 3,\\n centerMode: false,\\n infinite: false,\\n matchHeight: true,\\n responsive: [{\\n breakpoint: 992,\\n settings: {\\n slidesToShow: 2\\n }\\n }, {\\n breakpoint: 576,\\n settings: {\\n slidesToShow: 2\\n }\\n }]\\n }\\n};\\nfunction SignpostsCarousel() {\\n // loop through any sliders on the signpost block and initialise.\\n var signpostSliderContainers = document.querySelectorAll(\\'.signposts__card-container\\');\\n\\n if (signpostSliderContainers.length > 0) {\\n signpostSliderContainers.forEach(function (sliderContainer) {\\n var slider = sliderContainer.querySelectorAll(\\'.signposts__card-carousel\\')[0];\\n\\n if (window.screen.width < 992) {\\n Object(_Sliders__WEBPACK_IMPORTED_MODULE_0__[\"destroySliders\"])(null, $(slider));\\n } else {\\n var sliderArrows = sliderContainer.querySelectorAll(\\'.slider__arrows\\')[0];\\n\\n if (slider !== undefined && sliderArrows !== undefined) {\\n Object(_utilities_matchElementHeight__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(slider, \".product-card-carousel__slide\");\\n sliderElement.rootEl = $(slider);\\n sliderElement.options.appendArrows = $(sliderArrows);\\n Object(_Sliders__WEBPACK_IMPORTED_MODULE_0__[\"initialiseSliders\"])(sliderElement);\\n }\\n }\\n });\\n }\\n}\\n\\n//# sourceURL=webpack:///./assets/scripts/app/blocks/Signposts.js?')},\"./assets/scripts/script.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var core_js_stable_promise__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/stable/promise */ \"./node_modules/core-js/stable/promise/index.js\");\\n/* harmony import */ var core_js_stable_promise__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_stable_promise__WEBPACK_IMPORTED_MODULE_0__);\\n/* harmony import */ var core_js_stable_number__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/stable/number */ \"./node_modules/core-js/stable/number/index.js\");\\n/* harmony import */ var core_js_stable_number__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_stable_number__WEBPACK_IMPORTED_MODULE_1__);\\n/* harmony import */ var regenerator_runtime_runtime__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! regenerator-runtime/runtime */ \"./node_modules/regenerator-runtime/runtime.js\");\\n/* harmony import */ var regenerator_runtime_runtime__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(regenerator_runtime_runtime__WEBPACK_IMPORTED_MODULE_2__);\\n/* harmony import */ var _utilities_forEachPolyfill__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utilities/forEachPolyfill */ \"./assets/scripts/utilities/forEachPolyfill.js\");\\n/* harmony import */ var _utilities_forEachPolyfill__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_utilities_forEachPolyfill__WEBPACK_IMPORTED_MODULE_3__);\\n/* harmony import */ var _fancyapps_fancybox_dist_jquery_fancybox__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @fancyapps/fancybox/dist/jquery.fancybox */ \"./node_modules/@fancyapps/fancybox/dist/jquery.fancybox.js\");\\n/* harmony import */ var _fancyapps_fancybox_dist_jquery_fancybox__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_fancyapps_fancybox_dist_jquery_fancybox__WEBPACK_IMPORTED_MODULE_4__);\\n/* harmony import */ var _shepherdsfriendlysociety_theme_dist_src_js_components_gallery__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @shepherdsfriendlysociety/theme/dist/src/js/components/gallery */ \"./node_modules/@shepherdsfriendlysociety/theme/dist/src/js/components/gallery.js\");\\n/* harmony import */ var _shepherdsfriendlysociety_theme_dist_src_js_components_modal__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @shepherdsfriendlysociety/theme/dist/src/js/components/modal */ \"./node_modules/@shepherdsfriendlysociety/theme/dist/src/js/components/modal.js\");\\n/* harmony import */ var _shepherdsfriendlysociety_theme_dist_src_js_components_advice_bubble__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @shepherdsfriendlysociety/theme/dist/src/js/components/advice-bubble */ \"./node_modules/@shepherdsfriendlysociety/theme/dist/src/js/components/advice-bubble.js\");\\n/* harmony import */ var _app_Accordion__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./app/Accordion */ \"./assets/scripts/app/Accordion.js\");\\n/* harmony import */ var _app_Menu__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./app/Menu */ \"./assets/scripts/app/Menu.js\");\\n/* harmony import */ var _app_Posts__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./app/Posts */ \"./assets/scripts/app/Posts.js\");\\n/* harmony import */ var _app_ScrollTo__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./app/ScrollTo */ \"./assets/scripts/app/ScrollTo.js\");\\n/* harmony import */ var _app_Sliders__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./app/Sliders */ \"./assets/scripts/app/Sliders.js\");\\n/* harmony import */ var _app_General__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./app/General */ \"./assets/scripts/app/General.js\");\\n/* harmony import */ var _app_FullWidth__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./app/FullWidth */ \"./assets/scripts/app/FullWidth.js\");\\n/* harmony import */ var _app_Form__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./app/Form */ \"./assets/scripts/app/Form.js\");\\n/* harmony import */ var _app_LiveSearch__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./app/LiveSearch */ \"./assets/scripts/app/LiveSearch.js\");\\n/* harmony import */ var _app_CountdownTimer__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./app/CountdownTimer */ \"./assets/scripts/app/CountdownTimer.js\");\\n/* harmony import */ var _utilities_scrollbarWidth__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./utilities/scrollbarWidth */ \"./assets/scripts/utilities/scrollbarWidth.js\");\\n/* harmony import */ var _app_TabMenu__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./app/TabMenu */ \"./assets/scripts/app/TabMenu.js\");\\n/* harmony import */ var _app_TabbedContent__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./app/TabbedContent */ \"./assets/scripts/app/TabbedContent.js\");\\n/* harmony import */ var _app_ProductSelect__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./app/ProductSelect */ \"./assets/scripts/app/ProductSelect.js\");\\n/* harmony import */ var _app_Hero__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./app/Hero */ \"./assets/scripts/app/Hero.js\");\\n/* harmony import */ var _app_HeadingHeight__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./app/HeadingHeight */ \"./assets/scripts/app/HeadingHeight.js\");\\n/* harmony import */ var _app_BenefitModal__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./app/BenefitModal */ \"./assets/scripts/app/BenefitModal.js\");\\n/* harmony import */ var _app_blocks_ProductCardCarouselCollection__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./app/blocks/ProductCardCarouselCollection */ \"./assets/scripts/app/blocks/ProductCardCarouselCollection.js\");\\n/* harmony import */ var _app_blocks_Signposts__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./app/blocks/Signposts */ \"./assets/scripts/app/blocks/Signposts.js\");\\n/* harmony import */ var _app_blocks_RecommendedArticles__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./app/blocks/RecommendedArticles */ \"./assets/scripts/app/blocks/RecommendedArticles.js\");\\nfunction asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }\\n\\nfunction _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"next\", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"throw\", err); } _next(undefined); }); }; }\\n\\n// Polyfills\\n\\n\\n // Utilities\\n\\n // Load Vendor\\n\\n //Import Modules from Theme\\n\\n\\n\\n // Load App\\n\\n //import Map from \\'./app/Map\\';\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n$( /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {\\n var loadedEvent, windowHashChecked, hT, updateDimensions;\\n return regeneratorRuntime.wrap(function _callee$(_context) {\\n while (1) {\\n switch (_context.prev = _context.next) {\\n case 0:\\n windowHashChecked = function _windowHashChecked() {\\n return new Promise(function (resolve) {\\n setTimeout(function () {\\n if (window.location.hash) {\\n window.scrollTo(0, 0);\\n }\\n\\n resolve(\"resolved\");\\n }, 1);\\n });\\n };\\n\\n $(\"html\").addClass(\"loaded\");\\n $(\".site-outer\").addClass(\"loaded\"); // const pageLoader = $(\".page-loading-animation\");\\n // pageLoader.addClass(\"page-loading-animation--fadeout\");\\n // setTimeout(() => {\\n // pageLoader.hide();\\n // }, 900);\\n\\n loadedEvent = new Event(\"hasLoaded\");\\n document.dispatchEvent(loadedEvent);\\n _context.next = 7;\\n return windowHashChecked();\\n\\n case 7:\\n updateDimensions = function updateDimensions(e) {\\n if (updateDimensions._tick) {\\n cancelAnimationFrame(updateDimensions._tick);\\n }\\n\\n clearTimeout(hT);\\n updateDimensions._tick = requestAnimationFrame(function () {\\n updateDimensions._tick = null;\\n\\n if ($(\"body\").hasClass(\"overflow-hidden\")) {\\n if ($(window).width() + Object(_utilities_scrollbarWidth__WEBPACK_IMPORTED_MODULE_18__[\"default\"])() > 991) {\\n $(\"body\").removeClass(\"overflow-hidden\");\\n $(\".mobile-navigation\").removeClass(\"active\");\\n $(\".mobile-navigation\").find(\"ul\").removeClass(\"current active\");\\n }\\n }\\n\\n Object(_app_FullWidth__WEBPACK_IMPORTED_MODULE_14__[\"default\"])(); // hT = setTimeout(() => {\\n // $(\\'body\\').css(\\'padding-top\\', $(\\'.masthead\\').outerHeight());\\n // }, 400);\\n });\\n\\n if (e === \"start\") {\\n return new Promise(function (resolve) {\\n function checkWidths() {\\n if ($(\".full-width.width-calculated\").length === $(\".full-width\").length) {\\n resolve(\"resolved\");\\n } else {\\n clearTimeout(t2\\n /* instead of carousel */\\n );\\n t2 = setTimeout(checkWidths, 10);\\n }\\n }\\n\\n var t2 = setTimeout(checkWidths, 10);\\n });\\n }\\n };\\n\\n $(\".masthead\").addClass(\"loaded\"); // $(\\'body\\').css(\\'padding-top\\', $(\\'.masthead\\').outerHeight());\\n\\n window.addEventListener(\"resize\", updateDimensions);\\n _context.next = 12;\\n return updateDimensions(\"start\");\\n\\n case 12:\\n Object(_app_Sliders__WEBPACK_IMPORTED_MODULE_12__[\"initialiseSliders\"])();\\n\\n case 13:\\n case \"end\":\\n return _context.stop();\\n }\\n }\\n }, _callee);\\n})));\\nObject(_app_Form__WEBPACK_IMPORTED_MODULE_15__[\"default\"])();\\n$(window).on(\"load\", function () {\\n //Load Theme Imports\\n Object(_shepherdsfriendlysociety_theme_dist_src_js_components_gallery__WEBPACK_IMPORTED_MODULE_5__[\"default\"])();\\n Object(_shepherdsfriendlysociety_theme_dist_src_js_components_modal__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(); // Load Imports\\n\\n Object(_app_Accordion__WEBPACK_IMPORTED_MODULE_8__[\"default\"])();\\n Object(_app_BenefitModal__WEBPACK_IMPORTED_MODULE_24__[\"default\"])();\\n Object(_app_General__WEBPACK_IMPORTED_MODULE_13__[\"default\"])();\\n Object(_app_Menu__WEBPACK_IMPORTED_MODULE_9__[\"default\"])(); //Map();\\n\\n Object(_app_Posts__WEBPACK_IMPORTED_MODULE_10__[\"default\"])();\\n Object(_app_ScrollTo__WEBPACK_IMPORTED_MODULE_11__[\"default\"])();\\n Object(_app_LiveSearch__WEBPACK_IMPORTED_MODULE_16__[\"default\"])();\\n Object(_app_TabMenu__WEBPACK_IMPORTED_MODULE_19__[\"default\"])();\\n Object(_app_CountdownTimer__WEBPACK_IMPORTED_MODULE_17__[\"default\"])();\\n Object(_app_TabbedContent__WEBPACK_IMPORTED_MODULE_20__[\"default\"])();\\n Object(_app_ProductSelect__WEBPACK_IMPORTED_MODULE_21__[\"default\"])();\\n Object(_app_Hero__WEBPACK_IMPORTED_MODULE_22__[\"default\"])();\\n Object(_app_HeadingHeight__WEBPACK_IMPORTED_MODULE_23__[\"default\"])();\\n Object(_app_blocks_ProductCardCarouselCollection__WEBPACK_IMPORTED_MODULE_25__[\"default\"])();\\n setTimeout(function () {\\n Object(_shepherdsfriendlysociety_theme_dist_src_js_components_advice_bubble__WEBPACK_IMPORTED_MODULE_7__[\"default\"])();\\n }, 500);\\n Object(_app_blocks_Signposts__WEBPACK_IMPORTED_MODULE_26__[\"default\"])();\\n Object(_app_blocks_RecommendedArticles__WEBPACK_IMPORTED_MODULE_27__[\"default\"])();\\n $(\".mh\").matchHeight({\\n byRow: true\\n }); // Re run the slider components in case resize necessitates disabling of sliders\\n\\n function resizedWindow() {\\n Object(_app_blocks_ProductCardCarouselCollection__WEBPACK_IMPORTED_MODULE_25__[\"default\"])();\\n Object(_app_blocks_RecommendedArticles__WEBPACK_IMPORTED_MODULE_27__[\"default\"])();\\n Object(_app_blocks_Signposts__WEBPACK_IMPORTED_MODULE_26__[\"default\"])();\\n }\\n\\n var triggerResize;\\n\\n window.onresize = function () {\\n clearTimeout(triggerResize);\\n triggerResize = setTimeout(resizedWindow, 750);\\n };\\n});\\n\\n//# sourceURL=webpack:///./assets/scripts/script.js?')},\"./assets/scripts/utilities/forEachPolyfill.js\":function(module,exports){eval(\"if (window.NodeList && !NodeList.prototype.forEach) {\\n NodeList.prototype.forEach = Array.prototype.forEach;\\n}\\n\\n//# sourceURL=webpack:///./assets/scripts/utilities/forEachPolyfill.js?\")},\"./assets/scripts/utilities/matchElementHeight.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval(\"__webpack_require__.r(__webpack_exports__);\\n// set the height of a collection of elements to the tallest one\\nfunction matchElementHeight(parent, selector) {\\n // find all the matching children\\n var childElements = parent.querySelectorAll(selector); // find the tallest\\n\\n var tallestValue = 0;\\n Array.from(childElements).map(function (child) {\\n tallestValue = child.offsetHeight > tallestValue ? child.offsetHeight : tallestValue;\\n }); // set all to the tallest\\n\\n Array.from(childElements).map(function (child) {\\n child.style.height = tallestValue + 'px';\\n });\\n}\\n\\n/* harmony default export */ __webpack_exports__[\\\"default\\\"] = (matchElementHeight);\\n\\n//# sourceURL=webpack:///./assets/scripts/utilities/matchElementHeight.js?\")},\"./assets/scripts/utilities/scrollbarWidth.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\nfunction scrollbarWidth() {\\n return window.innerWidth - document.documentElement.clientWidth;\\n}\\n\\n/* harmony default export */ __webpack_exports__[\"default\"] = (scrollbarWidth);\\n\\n//# sourceURL=webpack:///./assets/scripts/utilities/scrollbarWidth.js?')},\"./assets/scripts/utilities/triggerResizeEvent.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval(\"__webpack_require__.r(__webpack_exports__);\\nvar resizeEvent = window.document.createEvent('UIEvents');\\nresizeEvent.initUIEvent('resize', true, false, window, 0);\\n/* harmony default export */ __webpack_exports__[\\\"default\\\"] = (resizeEvent);\\n\\n//# sourceURL=webpack:///./assets/scripts/utilities/triggerResizeEvent.js?\")},\"./assets/scripts/utilities/wrapMatch.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\nfunction wrapMatch(elem, term) {\\n var filter = new RegExp(term, \"\\\\sig\");\\n $(elem).html($(elem).html().replace(filter, function (match) {\\n return \"\" + match + \"\";\\n }));\\n}\\n\\n/* harmony default export */ __webpack_exports__[\"default\"] = (wrapMatch);\\n\\n//# sourceURL=webpack:///./assets/scripts/utilities/wrapMatch.js?')},\"./bower_components/moment/locale sync recursive ^\\\\.\\\\/.*$\":function(module,exports,__webpack_require__){eval('var map = {\\n\\t\"./af\": \"./bower_components/moment/locale/af.js\",\\n\\t\"./af.js\": \"./bower_components/moment/locale/af.js\",\\n\\t\"./ar\": \"./bower_components/moment/locale/ar.js\",\\n\\t\"./ar-dz\": \"./bower_components/moment/locale/ar-dz.js\",\\n\\t\"./ar-dz.js\": \"./bower_components/moment/locale/ar-dz.js\",\\n\\t\"./ar-kw\": \"./bower_components/moment/locale/ar-kw.js\",\\n\\t\"./ar-kw.js\": \"./bower_components/moment/locale/ar-kw.js\",\\n\\t\"./ar-ly\": \"./bower_components/moment/locale/ar-ly.js\",\\n\\t\"./ar-ly.js\": \"./bower_components/moment/locale/ar-ly.js\",\\n\\t\"./ar-ma\": \"./bower_components/moment/locale/ar-ma.js\",\\n\\t\"./ar-ma.js\": \"./bower_components/moment/locale/ar-ma.js\",\\n\\t\"./ar-sa\": \"./bower_components/moment/locale/ar-sa.js\",\\n\\t\"./ar-sa.js\": \"./bower_components/moment/locale/ar-sa.js\",\\n\\t\"./ar-tn\": \"./bower_components/moment/locale/ar-tn.js\",\\n\\t\"./ar-tn.js\": \"./bower_components/moment/locale/ar-tn.js\",\\n\\t\"./ar.js\": \"./bower_components/moment/locale/ar.js\",\\n\\t\"./az\": \"./bower_components/moment/locale/az.js\",\\n\\t\"./az.js\": \"./bower_components/moment/locale/az.js\",\\n\\t\"./be\": \"./bower_components/moment/locale/be.js\",\\n\\t\"./be.js\": \"./bower_components/moment/locale/be.js\",\\n\\t\"./bg\": \"./bower_components/moment/locale/bg.js\",\\n\\t\"./bg.js\": \"./bower_components/moment/locale/bg.js\",\\n\\t\"./bm\": \"./bower_components/moment/locale/bm.js\",\\n\\t\"./bm.js\": \"./bower_components/moment/locale/bm.js\",\\n\\t\"./bn\": \"./bower_components/moment/locale/bn.js\",\\n\\t\"./bn.js\": \"./bower_components/moment/locale/bn.js\",\\n\\t\"./bo\": \"./bower_components/moment/locale/bo.js\",\\n\\t\"./bo.js\": \"./bower_components/moment/locale/bo.js\",\\n\\t\"./br\": \"./bower_components/moment/locale/br.js\",\\n\\t\"./br.js\": \"./bower_components/moment/locale/br.js\",\\n\\t\"./bs\": \"./bower_components/moment/locale/bs.js\",\\n\\t\"./bs.js\": \"./bower_components/moment/locale/bs.js\",\\n\\t\"./ca\": \"./bower_components/moment/locale/ca.js\",\\n\\t\"./ca.js\": \"./bower_components/moment/locale/ca.js\",\\n\\t\"./cs\": \"./bower_components/moment/locale/cs.js\",\\n\\t\"./cs.js\": \"./bower_components/moment/locale/cs.js\",\\n\\t\"./cv\": \"./bower_components/moment/locale/cv.js\",\\n\\t\"./cv.js\": \"./bower_components/moment/locale/cv.js\",\\n\\t\"./cy\": \"./bower_components/moment/locale/cy.js\",\\n\\t\"./cy.js\": \"./bower_components/moment/locale/cy.js\",\\n\\t\"./da\": \"./bower_components/moment/locale/da.js\",\\n\\t\"./da.js\": \"./bower_components/moment/locale/da.js\",\\n\\t\"./de\": \"./bower_components/moment/locale/de.js\",\\n\\t\"./de-at\": \"./bower_components/moment/locale/de-at.js\",\\n\\t\"./de-at.js\": \"./bower_components/moment/locale/de-at.js\",\\n\\t\"./de-ch\": \"./bower_components/moment/locale/de-ch.js\",\\n\\t\"./de-ch.js\": \"./bower_components/moment/locale/de-ch.js\",\\n\\t\"./de.js\": \"./bower_components/moment/locale/de.js\",\\n\\t\"./dv\": \"./bower_components/moment/locale/dv.js\",\\n\\t\"./dv.js\": \"./bower_components/moment/locale/dv.js\",\\n\\t\"./el\": \"./bower_components/moment/locale/el.js\",\\n\\t\"./el.js\": \"./bower_components/moment/locale/el.js\",\\n\\t\"./en-au\": \"./bower_components/moment/locale/en-au.js\",\\n\\t\"./en-au.js\": \"./bower_components/moment/locale/en-au.js\",\\n\\t\"./en-ca\": \"./bower_components/moment/locale/en-ca.js\",\\n\\t\"./en-ca.js\": \"./bower_components/moment/locale/en-ca.js\",\\n\\t\"./en-gb\": \"./bower_components/moment/locale/en-gb.js\",\\n\\t\"./en-gb.js\": \"./bower_components/moment/locale/en-gb.js\",\\n\\t\"./en-ie\": \"./bower_components/moment/locale/en-ie.js\",\\n\\t\"./en-ie.js\": \"./bower_components/moment/locale/en-ie.js\",\\n\\t\"./en-il\": \"./bower_components/moment/locale/en-il.js\",\\n\\t\"./en-il.js\": \"./bower_components/moment/locale/en-il.js\",\\n\\t\"./en-nz\": \"./bower_components/moment/locale/en-nz.js\",\\n\\t\"./en-nz.js\": \"./bower_components/moment/locale/en-nz.js\",\\n\\t\"./eo\": \"./bower_components/moment/locale/eo.js\",\\n\\t\"./eo.js\": \"./bower_components/moment/locale/eo.js\",\\n\\t\"./es\": \"./bower_components/moment/locale/es.js\",\\n\\t\"./es-do\": \"./bower_components/moment/locale/es-do.js\",\\n\\t\"./es-do.js\": \"./bower_components/moment/locale/es-do.js\",\\n\\t\"./es-us\": \"./bower_components/moment/locale/es-us.js\",\\n\\t\"./es-us.js\": \"./bower_components/moment/locale/es-us.js\",\\n\\t\"./es.js\": \"./bower_components/moment/locale/es.js\",\\n\\t\"./et\": \"./bower_components/moment/locale/et.js\",\\n\\t\"./et.js\": \"./bower_components/moment/locale/et.js\",\\n\\t\"./eu\": \"./bower_components/moment/locale/eu.js\",\\n\\t\"./eu.js\": \"./bower_components/moment/locale/eu.js\",\\n\\t\"./fa\": \"./bower_components/moment/locale/fa.js\",\\n\\t\"./fa.js\": \"./bower_components/moment/locale/fa.js\",\\n\\t\"./fi\": \"./bower_components/moment/locale/fi.js\",\\n\\t\"./fi.js\": \"./bower_components/moment/locale/fi.js\",\\n\\t\"./fo\": \"./bower_components/moment/locale/fo.js\",\\n\\t\"./fo.js\": \"./bower_components/moment/locale/fo.js\",\\n\\t\"./fr\": \"./bower_components/moment/locale/fr.js\",\\n\\t\"./fr-ca\": \"./bower_components/moment/locale/fr-ca.js\",\\n\\t\"./fr-ca.js\": \"./bower_components/moment/locale/fr-ca.js\",\\n\\t\"./fr-ch\": \"./bower_components/moment/locale/fr-ch.js\",\\n\\t\"./fr-ch.js\": \"./bower_components/moment/locale/fr-ch.js\",\\n\\t\"./fr.js\": \"./bower_components/moment/locale/fr.js\",\\n\\t\"./fy\": \"./bower_components/moment/locale/fy.js\",\\n\\t\"./fy.js\": \"./bower_components/moment/locale/fy.js\",\\n\\t\"./gd\": \"./bower_components/moment/locale/gd.js\",\\n\\t\"./gd.js\": \"./bower_components/moment/locale/gd.js\",\\n\\t\"./gl\": \"./bower_components/moment/locale/gl.js\",\\n\\t\"./gl.js\": \"./bower_components/moment/locale/gl.js\",\\n\\t\"./gom-latn\": \"./bower_components/moment/locale/gom-latn.js\",\\n\\t\"./gom-latn.js\": \"./bower_components/moment/locale/gom-latn.js\",\\n\\t\"./gu\": \"./bower_components/moment/locale/gu.js\",\\n\\t\"./gu.js\": \"./bower_components/moment/locale/gu.js\",\\n\\t\"./he\": \"./bower_components/moment/locale/he.js\",\\n\\t\"./he.js\": \"./bower_components/moment/locale/he.js\",\\n\\t\"./hi\": \"./bower_components/moment/locale/hi.js\",\\n\\t\"./hi.js\": \"./bower_components/moment/locale/hi.js\",\\n\\t\"./hr\": \"./bower_components/moment/locale/hr.js\",\\n\\t\"./hr.js\": \"./bower_components/moment/locale/hr.js\",\\n\\t\"./hu\": \"./bower_components/moment/locale/hu.js\",\\n\\t\"./hu.js\": \"./bower_components/moment/locale/hu.js\",\\n\\t\"./hy-am\": \"./bower_components/moment/locale/hy-am.js\",\\n\\t\"./hy-am.js\": \"./bower_components/moment/locale/hy-am.js\",\\n\\t\"./id\": \"./bower_components/moment/locale/id.js\",\\n\\t\"./id.js\": \"./bower_components/moment/locale/id.js\",\\n\\t\"./is\": \"./bower_components/moment/locale/is.js\",\\n\\t\"./is.js\": \"./bower_components/moment/locale/is.js\",\\n\\t\"./it\": \"./bower_components/moment/locale/it.js\",\\n\\t\"./it.js\": \"./bower_components/moment/locale/it.js\",\\n\\t\"./ja\": \"./bower_components/moment/locale/ja.js\",\\n\\t\"./ja.js\": \"./bower_components/moment/locale/ja.js\",\\n\\t\"./jv\": \"./bower_components/moment/locale/jv.js\",\\n\\t\"./jv.js\": \"./bower_components/moment/locale/jv.js\",\\n\\t\"./ka\": \"./bower_components/moment/locale/ka.js\",\\n\\t\"./ka.js\": \"./bower_components/moment/locale/ka.js\",\\n\\t\"./kk\": \"./bower_components/moment/locale/kk.js\",\\n\\t\"./kk.js\": \"./bower_components/moment/locale/kk.js\",\\n\\t\"./km\": \"./bower_components/moment/locale/km.js\",\\n\\t\"./km.js\": \"./bower_components/moment/locale/km.js\",\\n\\t\"./kn\": \"./bower_components/moment/locale/kn.js\",\\n\\t\"./kn.js\": \"./bower_components/moment/locale/kn.js\",\\n\\t\"./ko\": \"./bower_components/moment/locale/ko.js\",\\n\\t\"./ko.js\": \"./bower_components/moment/locale/ko.js\",\\n\\t\"./ky\": \"./bower_components/moment/locale/ky.js\",\\n\\t\"./ky.js\": \"./bower_components/moment/locale/ky.js\",\\n\\t\"./lb\": \"./bower_components/moment/locale/lb.js\",\\n\\t\"./lb.js\": \"./bower_components/moment/locale/lb.js\",\\n\\t\"./lo\": \"./bower_components/moment/locale/lo.js\",\\n\\t\"./lo.js\": \"./bower_components/moment/locale/lo.js\",\\n\\t\"./lt\": \"./bower_components/moment/locale/lt.js\",\\n\\t\"./lt.js\": \"./bower_components/moment/locale/lt.js\",\\n\\t\"./lv\": \"./bower_components/moment/locale/lv.js\",\\n\\t\"./lv.js\": \"./bower_components/moment/locale/lv.js\",\\n\\t\"./me\": \"./bower_components/moment/locale/me.js\",\\n\\t\"./me.js\": \"./bower_components/moment/locale/me.js\",\\n\\t\"./mi\": \"./bower_components/moment/locale/mi.js\",\\n\\t\"./mi.js\": \"./bower_components/moment/locale/mi.js\",\\n\\t\"./mk\": \"./bower_components/moment/locale/mk.js\",\\n\\t\"./mk.js\": \"./bower_components/moment/locale/mk.js\",\\n\\t\"./ml\": \"./bower_components/moment/locale/ml.js\",\\n\\t\"./ml.js\": \"./bower_components/moment/locale/ml.js\",\\n\\t\"./mr\": \"./bower_components/moment/locale/mr.js\",\\n\\t\"./mr.js\": \"./bower_components/moment/locale/mr.js\",\\n\\t\"./ms\": \"./bower_components/moment/locale/ms.js\",\\n\\t\"./ms-my\": \"./bower_components/moment/locale/ms-my.js\",\\n\\t\"./ms-my.js\": \"./bower_components/moment/locale/ms-my.js\",\\n\\t\"./ms.js\": \"./bower_components/moment/locale/ms.js\",\\n\\t\"./mt\": \"./bower_components/moment/locale/mt.js\",\\n\\t\"./mt.js\": \"./bower_components/moment/locale/mt.js\",\\n\\t\"./my\": \"./bower_components/moment/locale/my.js\",\\n\\t\"./my.js\": \"./bower_components/moment/locale/my.js\",\\n\\t\"./nb\": \"./bower_components/moment/locale/nb.js\",\\n\\t\"./nb.js\": \"./bower_components/moment/locale/nb.js\",\\n\\t\"./ne\": \"./bower_components/moment/locale/ne.js\",\\n\\t\"./ne.js\": \"./bower_components/moment/locale/ne.js\",\\n\\t\"./nl\": \"./bower_components/moment/locale/nl.js\",\\n\\t\"./nl-be\": \"./bower_components/moment/locale/nl-be.js\",\\n\\t\"./nl-be.js\": \"./bower_components/moment/locale/nl-be.js\",\\n\\t\"./nl.js\": \"./bower_components/moment/locale/nl.js\",\\n\\t\"./nn\": \"./bower_components/moment/locale/nn.js\",\\n\\t\"./nn.js\": \"./bower_components/moment/locale/nn.js\",\\n\\t\"./pa-in\": \"./bower_components/moment/locale/pa-in.js\",\\n\\t\"./pa-in.js\": \"./bower_components/moment/locale/pa-in.js\",\\n\\t\"./pl\": \"./bower_components/moment/locale/pl.js\",\\n\\t\"./pl.js\": \"./bower_components/moment/locale/pl.js\",\\n\\t\"./pt\": \"./bower_components/moment/locale/pt.js\",\\n\\t\"./pt-br\": \"./bower_components/moment/locale/pt-br.js\",\\n\\t\"./pt-br.js\": \"./bower_components/moment/locale/pt-br.js\",\\n\\t\"./pt.js\": \"./bower_components/moment/locale/pt.js\",\\n\\t\"./ro\": \"./bower_components/moment/locale/ro.js\",\\n\\t\"./ro.js\": \"./bower_components/moment/locale/ro.js\",\\n\\t\"./ru\": \"./bower_components/moment/locale/ru.js\",\\n\\t\"./ru.js\": \"./bower_components/moment/locale/ru.js\",\\n\\t\"./sd\": \"./bower_components/moment/locale/sd.js\",\\n\\t\"./sd.js\": \"./bower_components/moment/locale/sd.js\",\\n\\t\"./se\": \"./bower_components/moment/locale/se.js\",\\n\\t\"./se.js\": \"./bower_components/moment/locale/se.js\",\\n\\t\"./si\": \"./bower_components/moment/locale/si.js\",\\n\\t\"./si.js\": \"./bower_components/moment/locale/si.js\",\\n\\t\"./sk\": \"./bower_components/moment/locale/sk.js\",\\n\\t\"./sk.js\": \"./bower_components/moment/locale/sk.js\",\\n\\t\"./sl\": \"./bower_components/moment/locale/sl.js\",\\n\\t\"./sl.js\": \"./bower_components/moment/locale/sl.js\",\\n\\t\"./sq\": \"./bower_components/moment/locale/sq.js\",\\n\\t\"./sq.js\": \"./bower_components/moment/locale/sq.js\",\\n\\t\"./sr\": \"./bower_components/moment/locale/sr.js\",\\n\\t\"./sr-cyrl\": \"./bower_components/moment/locale/sr-cyrl.js\",\\n\\t\"./sr-cyrl.js\": \"./bower_components/moment/locale/sr-cyrl.js\",\\n\\t\"./sr.js\": \"./bower_components/moment/locale/sr.js\",\\n\\t\"./ss\": \"./bower_components/moment/locale/ss.js\",\\n\\t\"./ss.js\": \"./bower_components/moment/locale/ss.js\",\\n\\t\"./sv\": \"./bower_components/moment/locale/sv.js\",\\n\\t\"./sv.js\": \"./bower_components/moment/locale/sv.js\",\\n\\t\"./sw\": \"./bower_components/moment/locale/sw.js\",\\n\\t\"./sw.js\": \"./bower_components/moment/locale/sw.js\",\\n\\t\"./ta\": \"./bower_components/moment/locale/ta.js\",\\n\\t\"./ta.js\": \"./bower_components/moment/locale/ta.js\",\\n\\t\"./te\": \"./bower_components/moment/locale/te.js\",\\n\\t\"./te.js\": \"./bower_components/moment/locale/te.js\",\\n\\t\"./tet\": \"./bower_components/moment/locale/tet.js\",\\n\\t\"./tet.js\": \"./bower_components/moment/locale/tet.js\",\\n\\t\"./tg\": \"./bower_components/moment/locale/tg.js\",\\n\\t\"./tg.js\": \"./bower_components/moment/locale/tg.js\",\\n\\t\"./th\": \"./bower_components/moment/locale/th.js\",\\n\\t\"./th.js\": \"./bower_components/moment/locale/th.js\",\\n\\t\"./tl-ph\": \"./bower_components/moment/locale/tl-ph.js\",\\n\\t\"./tl-ph.js\": \"./bower_components/moment/locale/tl-ph.js\",\\n\\t\"./tlh\": \"./bower_components/moment/locale/tlh.js\",\\n\\t\"./tlh.js\": \"./bower_components/moment/locale/tlh.js\",\\n\\t\"./tr\": \"./bower_components/moment/locale/tr.js\",\\n\\t\"./tr.js\": \"./bower_components/moment/locale/tr.js\",\\n\\t\"./tzl\": \"./bower_components/moment/locale/tzl.js\",\\n\\t\"./tzl.js\": \"./bower_components/moment/locale/tzl.js\",\\n\\t\"./tzm\": \"./bower_components/moment/locale/tzm.js\",\\n\\t\"./tzm-latn\": \"./bower_components/moment/locale/tzm-latn.js\",\\n\\t\"./tzm-latn.js\": \"./bower_components/moment/locale/tzm-latn.js\",\\n\\t\"./tzm.js\": \"./bower_components/moment/locale/tzm.js\",\\n\\t\"./ug-cn\": \"./bower_components/moment/locale/ug-cn.js\",\\n\\t\"./ug-cn.js\": \"./bower_components/moment/locale/ug-cn.js\",\\n\\t\"./uk\": \"./bower_components/moment/locale/uk.js\",\\n\\t\"./uk.js\": \"./bower_components/moment/locale/uk.js\",\\n\\t\"./ur\": \"./bower_components/moment/locale/ur.js\",\\n\\t\"./ur.js\": \"./bower_components/moment/locale/ur.js\",\\n\\t\"./uz\": \"./bower_components/moment/locale/uz.js\",\\n\\t\"./uz-latn\": \"./bower_components/moment/locale/uz-latn.js\",\\n\\t\"./uz-latn.js\": \"./bower_components/moment/locale/uz-latn.js\",\\n\\t\"./uz.js\": \"./bower_components/moment/locale/uz.js\",\\n\\t\"./vi\": \"./bower_components/moment/locale/vi.js\",\\n\\t\"./vi.js\": \"./bower_components/moment/locale/vi.js\",\\n\\t\"./x-pseudo\": \"./bower_components/moment/locale/x-pseudo.js\",\\n\\t\"./x-pseudo.js\": \"./bower_components/moment/locale/x-pseudo.js\",\\n\\t\"./yo\": \"./bower_components/moment/locale/yo.js\",\\n\\t\"./yo.js\": \"./bower_components/moment/locale/yo.js\",\\n\\t\"./zh-cn\": \"./bower_components/moment/locale/zh-cn.js\",\\n\\t\"./zh-cn.js\": \"./bower_components/moment/locale/zh-cn.js\",\\n\\t\"./zh-hk\": \"./bower_components/moment/locale/zh-hk.js\",\\n\\t\"./zh-hk.js\": \"./bower_components/moment/locale/zh-hk.js\",\\n\\t\"./zh-tw\": \"./bower_components/moment/locale/zh-tw.js\",\\n\\t\"./zh-tw.js\": \"./bower_components/moment/locale/zh-tw.js\"\\n};\\n\\n\\nfunction webpackContext(req) {\\n\\tvar id = webpackContextResolve(req);\\n\\treturn __webpack_require__(id);\\n}\\nfunction webpackContextResolve(req) {\\n\\tif(!__webpack_require__.o(map, req)) {\\n\\t\\tvar e = new Error(\"Cannot find module \\'\" + req + \"\\'\");\\n\\t\\te.code = \\'MODULE_NOT_FOUND\\';\\n\\t\\tthrow e;\\n\\t}\\n\\treturn map[req];\\n}\\nwebpackContext.keys = function webpackContextKeys() {\\n\\treturn Object.keys(map);\\n};\\nwebpackContext.resolve = webpackContextResolve;\\nmodule.exports = webpackContext;\\nwebpackContext.id = \"./bower_components/moment/locale sync recursive ^\\\\\\\\.\\\\\\\\/.*$\";\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale_sync_^\\\\.\\\\/.*$?')},\"./bower_components/moment/locale/af.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 isPM(input) {\\n return /^nm$/i.test(input);\\n },\\n meridiem: function meridiem(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 ss: '%d 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 ordinal(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,\\n // 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 });\\n return af;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/af.js?\")},\"./bower_components/moment/locale/ar-dz.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d ثانية',\\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,\\n // 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 });\\n return arDz;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ar-dz.js?\")},\"./bower_components/moment/locale/ar-kw.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d ثانية',\\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,\\n // 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 });\\n return arKw;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ar-kw.js?\")},\"./bower_components/moment/locale/ar-ly.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 },\\n pluralForm = function pluralForm(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 },\\n 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 },\\n pluralize = function pluralize(u) {\\n return function (number, withoutSuffix, string, isFuture) {\\n var f = pluralForm(number),\\n str = plurals[u][pluralForm(number)];\\n\\n if (f === 2) {\\n str = str[withoutSuffix ? 0 : 1];\\n }\\n\\n return str.replace(/%d/i, number);\\n };\\n },\\n months = ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'];\\n\\n var 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 isPM(input) {\\n return 'م' === input;\\n },\\n meridiem: function meridiem(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 ss: 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 preparse(string) {\\n return string.replace(/،/g, ',');\\n },\\n postformat: function postformat(string) {\\n return string.replace(/\\\\d/g, function (match) {\\n return symbolMap[match];\\n }).replace(/,/g, '،');\\n },\\n week: {\\n dow: 6,\\n // 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 });\\n return arLy;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ar-ly.js?\")},\"./bower_components/moment/locale/ar-ma.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d ثانية',\\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,\\n // 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 });\\n return arMa;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ar-ma.js?\")},\"./bower_components/moment/locale/ar-sa.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '١',\\n '2': '٢',\\n '3': '٣',\\n '4': '٤',\\n '5': '٥',\\n '6': '٦',\\n '7': '٧',\\n '8': '٨',\\n '9': '٩',\\n '0': '٠'\\n },\\n numberMap = {\\n '١': '1',\\n '٢': '2',\\n '٣': '3',\\n '٤': '4',\\n '٥': '5',\\n '٦': '6',\\n '٧': '7',\\n '٨': '8',\\n '٩': '9',\\n '٠': '0'\\n };\\n var 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 isPM(input) {\\n return 'م' === input;\\n },\\n meridiem: function meridiem(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 ss: '%d ثانية',\\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 preparse(string) {\\n return string.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {\\n return numberMap[match];\\n }).replace(/،/g, ',');\\n },\\n postformat: function postformat(string) {\\n return string.replace(/\\\\d/g, function (match) {\\n return symbolMap[match];\\n }).replace(/,/g, '،');\\n },\\n week: {\\n dow: 0,\\n // 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 });\\n return arSa;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ar-sa.js?\")},\"./bower_components/moment/locale/ar-tn.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d ثانية',\\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,\\n // 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 });\\n return arTn;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ar-tn.js?\")},\"./bower_components/moment/locale/ar.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '١',\\n '2': '٢',\\n '3': '٣',\\n '4': '٤',\\n '5': '٥',\\n '6': '٦',\\n '7': '٧',\\n '8': '٨',\\n '9': '٩',\\n '0': '٠'\\n },\\n numberMap = {\\n '١': '1',\\n '٢': '2',\\n '٣': '3',\\n '٤': '4',\\n '٥': '5',\\n '٦': '6',\\n '٧': '7',\\n '٨': '8',\\n '٩': '9',\\n '٠': '0'\\n },\\n pluralForm = function pluralForm(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 },\\n 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 },\\n pluralize = function pluralize(u) {\\n return function (number, withoutSuffix, string, isFuture) {\\n var f = pluralForm(number),\\n str = plurals[u][pluralForm(number)];\\n\\n if (f === 2) {\\n str = str[withoutSuffix ? 0 : 1];\\n }\\n\\n return str.replace(/%d/i, number);\\n };\\n },\\n months = ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'];\\n\\n var 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 isPM(input) {\\n return 'م' === input;\\n },\\n meridiem: function meridiem(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 ss: 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 preparse(string) {\\n return string.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {\\n return numberMap[match];\\n }).replace(/،/g, ',');\\n },\\n postformat: function postformat(string) {\\n return string.replace(/\\\\d/g, function (match) {\\n return symbolMap[match];\\n }).replace(/,/g, '،');\\n },\\n week: {\\n dow: 6,\\n // 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 });\\n return ar;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ar.js?\")},\"./bower_components/moment/locale/az.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 var 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 ss: '%d saniyə',\\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 isPM(input) {\\n return /^(gündüz|axşam)$/.test(input);\\n },\\n meridiem: function meridiem(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 ordinal(number) {\\n if (number === 0) {\\n // special case for zero\\n return number + '-ıncı';\\n }\\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,\\n // 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 });\\n return az;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/az.js?\")},\"./bower_components/moment/locale/be.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function 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 }\\n\\n function relativeTimeWithPlural(number, withoutSuffix, key) {\\n var format = {\\n 'ss': withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',\\n 'mm': withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',\\n 'hh': withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',\\n 'dd': 'дзень_дні_дзён',\\n 'MM': 'месяц_месяцы_месяцаў',\\n 'yy': 'год_гады_гадоў'\\n };\\n\\n if (key === 'm') {\\n return withoutSuffix ? 'хвіліна' : 'хвіліну';\\n } else if (key === 'h') {\\n return withoutSuffix ? 'гадзіна' : 'гадзіну';\\n } else {\\n return number + ' ' + plural(format[key], +number);\\n }\\n }\\n\\n var 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 nextWeek() {\\n return '[У] dddd [ў] LT';\\n },\\n lastWeek: function lastWeek() {\\n switch (this.day()) {\\n case 0:\\n case 3:\\n case 5:\\n case 6:\\n return '[У мінулую] dddd [ў] LT';\\n\\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 isPM(input) {\\n return /^(дня|вечара)$/.test(input);\\n },\\n meridiem: function meridiem(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 ordinal(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\\n case 'D':\\n return number + '-га';\\n\\n default:\\n return number;\\n }\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return be;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/be.js?\")},\"./bower_components/moment/locale/bg.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 lastWeek() {\\n switch (this.day()) {\\n case 0:\\n case 3:\\n case 6:\\n return '[В изминалата] dddd [в] LT';\\n\\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 ss: '%d секунди',\\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 ordinal(number) {\\n var lastDigit = number % 10,\\n last2Digits = number % 100;\\n\\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,\\n // 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 });\\n return bg;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/bg.js?\")},\"./bower_components/moment/locale/bm.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var bm = moment.defineLocale('bm', {\\n months: 'Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo'.split('_'),\\n monthsShort: 'Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des'.split('_'),\\n weekdays: 'Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri'.split('_'),\\n weekdaysShort: 'Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib'.split('_'),\\n weekdaysMin: 'Ka_Nt_Ta_Ar_Al_Ju_Si'.split('_'),\\n longDateFormat: {\\n LT: 'HH:mm',\\n LTS: 'HH:mm:ss',\\n L: 'DD/MM/YYYY',\\n LL: 'MMMM [tile] D [san] YYYY',\\n LLL: 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',\\n LLLL: 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm'\\n },\\n calendar: {\\n sameDay: '[Bi lɛrɛ] LT',\\n nextDay: '[Sini lɛrɛ] LT',\\n nextWeek: 'dddd [don lɛrɛ] LT',\\n lastDay: '[Kunu lɛrɛ] LT',\\n lastWeek: 'dddd [tɛmɛnen lɛrɛ] LT',\\n sameElse: 'L'\\n },\\n relativeTime: {\\n future: '%s kɔnɔ',\\n past: 'a bɛ %s bɔ',\\n s: 'sanga dama dama',\\n ss: 'sekondi %d',\\n m: 'miniti kelen',\\n mm: 'miniti %d',\\n h: 'lɛrɛ kelen',\\n hh: 'lɛrɛ %d',\\n d: 'tile kelen',\\n dd: 'tile %d',\\n M: 'kalo kelen',\\n MM: 'kalo %d',\\n y: 'san kelen',\\n yy: 'san %d'\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return bm;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/bm.js?\")},\"./bower_components/moment/locale/bn.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '১',\\n '2': '২',\\n '3': '৩',\\n '4': '৪',\\n '5': '৫',\\n '6': '৬',\\n '7': '৭',\\n '8': '৮',\\n '9': '৯',\\n '0': '০'\\n },\\n numberMap = {\\n '১': '1',\\n '২': '2',\\n '৩': '3',\\n '৪': '4',\\n '৫': '5',\\n '৬': '6',\\n '৭': '7',\\n '৮': '8',\\n '৯': '9',\\n '০': '0'\\n };\\n var 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 ss: '%d সেকেন্ড',\\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 preparse(string) {\\n return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {\\n return numberMap[match];\\n });\\n },\\n postformat: function postformat(string) {\\n return string.replace(/\\\\d/g, function (match) {\\n return symbolMap[match];\\n });\\n },\\n meridiemParse: /রাত|সকাল|দুপুর|বিকাল|রাত/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\n\\n if (meridiem === 'রাত' && hour >= 4 || meridiem === 'দুপুর' && hour < 5 || meridiem === 'বিকাল') {\\n return hour + 12;\\n } else {\\n return hour;\\n }\\n },\\n meridiem: function meridiem(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,\\n // 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 });\\n return bn;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/bn.js?\")},\"./bower_components/moment/locale/bo.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '༡',\\n '2': '༢',\\n '3': '༣',\\n '4': '༤',\\n '5': '༥',\\n '6': '༦',\\n '7': '༧',\\n '8': '༨',\\n '9': '༩',\\n '0': '༠'\\n },\\n numberMap = {\\n '༡': '1',\\n '༢': '2',\\n '༣': '3',\\n '༤': '4',\\n '༥': '5',\\n '༦': '6',\\n '༧': '7',\\n '༨': '8',\\n '༩': '9',\\n '༠': '0'\\n };\\n var 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 ss: '%d སྐར་ཆ།',\\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 preparse(string) {\\n return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) {\\n return numberMap[match];\\n });\\n },\\n postformat: function postformat(string) {\\n return string.replace(/\\\\d/g, function (match) {\\n return symbolMap[match];\\n });\\n },\\n meridiemParse: /མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\n\\n if (meridiem === 'མཚན་མོ' && hour >= 4 || meridiem === 'ཉིན་གུང' && hour < 5 || meridiem === 'དགོང་དག') {\\n return hour + 12;\\n } else {\\n return hour;\\n }\\n },\\n meridiem: function meridiem(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,\\n // 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 });\\n return bo;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/bo.js?\")},\"./bower_components/moment/locale/br.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function 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 }\\n\\n function 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\\n default:\\n return number + ' vloaz';\\n }\\n }\\n\\n function lastNumber(number) {\\n if (number > 9) {\\n return lastNumber(number % 10);\\n }\\n\\n return number;\\n }\\n\\n function mutation(text, number) {\\n if (number === 2) {\\n return softMutation(text);\\n }\\n\\n return text;\\n }\\n\\n function softMutation(text) {\\n var mutationTable = {\\n 'm': 'v',\\n 'b': 'v',\\n 'd': 'z'\\n };\\n\\n if (mutationTable[text.charAt(0)] === undefined) {\\n return text;\\n }\\n\\n return mutationTable[text.charAt(0)] + text.substring(1);\\n }\\n\\n var 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 ss: '%d eilenn',\\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 ordinal(number) {\\n var output = number === 1 ? 'añ' : 'vet';\\n return number + output;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return br;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/br.js?\")},\"./bower_components/moment/locale/bs.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function translate(number, withoutSuffix, key) {\\n var result = number + ' ';\\n\\n switch (key) {\\n case 'ss':\\n if (number === 1) {\\n result += 'sekunda';\\n } else if (number === 2 || number === 3 || number === 4) {\\n result += 'sekunde';\\n } else {\\n result += 'sekundi';\\n }\\n\\n return result;\\n\\n case 'm':\\n return withoutSuffix ? 'jedna minuta' : 'jedne minute';\\n\\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\\n return result;\\n\\n case 'h':\\n return withoutSuffix ? 'jedan sat' : 'jednog sata';\\n\\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\\n return result;\\n\\n case 'dd':\\n if (number === 1) {\\n result += 'dan';\\n } else {\\n result += 'dana';\\n }\\n\\n return result;\\n\\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\\n return result;\\n\\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\\n return result;\\n }\\n }\\n\\n var 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 nextWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[u] [nedjelju] [u] LT';\\n\\n case 3:\\n return '[u] [srijedu] [u] LT';\\n\\n case 6:\\n return '[u] [subotu] [u] LT';\\n\\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 lastWeek() {\\n switch (this.day()) {\\n case 0:\\n case 3:\\n return '[prošlu] dddd [u] LT';\\n\\n case 6:\\n return '[prošle] [subote] [u] LT';\\n\\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 ss: translate,\\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,\\n // 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 });\\n return bs;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/bs.js?\")},\"./bower_components/moment/locale/ca.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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: 'D MMMM [de] YYYY',\\n ll: 'D MMM YYYY',\\n LLL: 'D MMMM [de] YYYY [a les] H:mm',\\n lll: 'D MMM YYYY, H:mm',\\n LLLL: 'dddd D MMMM [de] YYYY [a les] H:mm',\\n llll: 'ddd D MMM YYYY, H:mm'\\n },\\n calendar: {\\n sameDay: function sameDay() {\\n return '[avui a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';\\n },\\n nextDay: function nextDay() {\\n return '[demà a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';\\n },\\n nextWeek: function nextWeek() {\\n return 'dddd [a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';\\n },\\n lastDay: function lastDay() {\\n return '[ahir a ' + (this.hours() !== 1 ? 'les' : 'la') + '] LT';\\n },\\n lastWeek: function lastWeek() {\\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 ss: '%d 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 ordinal(number, period) {\\n var output = number === 1 ? 'r' : number === 2 ? 'n' : number === 3 ? 'r' : number === 4 ? 't' : 'è';\\n\\n if (period === 'w' || period === 'W') {\\n output = 'a';\\n }\\n\\n return number + output;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return ca;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ca.js?\")},\"./bower_components/moment/locale/cs.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var months = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split('_'),\\n monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_');\\n\\n function plural(n) {\\n return n > 1 && n < 5 && ~~(n / 10) !== 1;\\n }\\n\\n function translate(number, withoutSuffix, key, isFuture) {\\n var result = number + ' ';\\n\\n switch (key) {\\n case 's':\\n // a few seconds / in a few seconds / a few seconds ago\\n return withoutSuffix || isFuture ? 'pár sekund' : 'pár sekundami';\\n\\n case 'ss':\\n // 9 seconds / in 9 seconds / 9 seconds ago\\n if (withoutSuffix || isFuture) {\\n return result + (plural(number) ? 'sekundy' : 'sekund');\\n } else {\\n return result + 'sekundami';\\n }\\n\\n break;\\n\\n case 'm':\\n // a minute / in a minute / a minute ago\\n return withoutSuffix ? 'minuta' : isFuture ? 'minutu' : 'minutou';\\n\\n case 'mm':\\n // 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\\n break;\\n\\n case 'h':\\n // an hour / in an hour / an hour ago\\n return withoutSuffix ? 'hodina' : isFuture ? 'hodinu' : 'hodinou';\\n\\n case 'hh':\\n // 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\\n break;\\n\\n case 'd':\\n // a day / in a day / a day ago\\n return withoutSuffix || isFuture ? 'den' : 'dnem';\\n\\n case 'dd':\\n // 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\\n break;\\n\\n case 'M':\\n // a month / in a month / a month ago\\n return withoutSuffix || isFuture ? 'měsíc' : 'měsícem';\\n\\n case 'MM':\\n // 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\\n break;\\n\\n case 'y':\\n // a year / in a year / a year ago\\n return withoutSuffix || isFuture ? 'rok' : 'rokem';\\n\\n case 'yy':\\n // 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\\n break;\\n }\\n }\\n\\n var cs = moment.defineLocale('cs', {\\n months: months,\\n monthsShort: monthsShort,\\n monthsParse: function (months, monthsShort) {\\n var i,\\n _monthsParse = [];\\n\\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\\n return _monthsParse;\\n }(months, monthsShort),\\n shortMonthsParse: function (monthsShort) {\\n var i,\\n _shortMonthsParse = [];\\n\\n for (i = 0; i < 12; i++) {\\n _shortMonthsParse[i] = new RegExp('^' + monthsShort[i] + '$', 'i');\\n }\\n\\n return _shortMonthsParse;\\n }(monthsShort),\\n longMonthsParse: function (months) {\\n var i,\\n _longMonthsParse = [];\\n\\n for (i = 0; i < 12; i++) {\\n _longMonthsParse[i] = new RegExp('^' + months[i] + '$', 'i');\\n }\\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 nextWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[v neděli v] LT';\\n\\n case 1:\\n case 2:\\n return '[v] dddd [v] LT';\\n\\n case 3:\\n return '[ve středu v] LT';\\n\\n case 4:\\n return '[ve čtvrtek v] LT';\\n\\n case 5:\\n return '[v pátek v] LT';\\n\\n case 6:\\n return '[v sobotu v] LT';\\n }\\n },\\n lastDay: '[včera v] LT',\\n lastWeek: function lastWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[minulou neděli v] LT';\\n\\n case 1:\\n case 2:\\n return '[minulé] dddd [v] LT';\\n\\n case 3:\\n return '[minulou středu v] LT';\\n\\n case 4:\\n case 5:\\n return '[minulý] dddd [v] LT';\\n\\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 ss: 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,\\n // 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 });\\n return cs;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/cs.js?\")},\"./bower_components/moment/locale/cv.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 future(output) {\\n var affix = /сехет$/i.exec(output) ? 'рен' : /ҫул$/i.exec(output) ? 'тан' : 'ран';\\n return output + affix;\\n },\\n past: '%s каялла',\\n s: 'пӗр-ик ҫеккунт',\\n ss: '%d ҫеккунт',\\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,\\n // 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 });\\n return cv;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/cv.js?\")},\"./bower_components/moment/locale/cy.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d eiliad',\\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 ordinal(number) {\\n var b = number,\\n output = '',\\n lookup = ['', '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\\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\\n return number + output;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return cy;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/cy.js?\")},\"./bower_components/moment/locale/da.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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,\\n // 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 });\\n return da;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/da.js?\")},\"./bower_components/moment/locale/de-at.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function 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\\n var 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._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._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 ss: '%d 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,\\n // 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 });\\n return deAt;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/de-at.js?\")},\"./bower_components/moment/locale/de-ch.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function 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\\n var deCh = moment.defineLocale('de-ch', {\\n months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),\\n monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._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 ss: '%d 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,\\n // 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 });\\n return deCh;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/de-ch.js?\")},\"./bower_components/moment/locale/de.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function 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\\n var de = moment.defineLocale('de', {\\n months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),\\n monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._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 ss: '%d 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,\\n // 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 });\\n return de;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/de.js?\")},\"./bower_components/moment/locale/dv.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var months = ['ޖެނުއަރީ', 'ފެބްރުއަރީ', 'މާރިޗު', 'އޭޕްރީލު', 'މޭ', 'ޖޫން', 'ޖުލައި', 'އޯގަސްޓު', 'ސެޕްޓެމްބަރު', 'އޮކްޓޯބަރު', 'ނޮވެމްބަރު', 'ޑިސެމްބަރު'],\\n weekdays = ['އާދިއްތަ', 'ހޯމަ', 'އަންގާރަ', 'ބުދަ', 'ބުރާސްފަތި', 'ހުކުރު', 'ހޮނިހިރު'];\\n var dv = moment.defineLocale('dv', {\\n months: months,\\n monthsShort: months,\\n weekdays: weekdays,\\n weekdaysShort: weekdays,\\n weekdaysMin: 'އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި'.split('_'),\\n longDateFormat: {\\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 isPM(input) {\\n return 'މފ' === input;\\n },\\n meridiem: function meridiem(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 ss: 'd% ސިކުންތު',\\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 preparse(string) {\\n return string.replace(/،/g, ',');\\n },\\n postformat: function postformat(string) {\\n return string.replace(/,/g, '،');\\n },\\n week: {\\n dow: 7,\\n // 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 });\\n return dv;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/dv.js?\")},\"./bower_components/moment/locale/el.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function isFunction(input) {\\n return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';\\n }\\n\\n var el = moment.defineLocale('el', {\\n monthsNominativeEl: 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split('_'),\\n monthsGenitiveEl: 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split('_'),\\n months: function months(momentToFormat, format) {\\n if (!momentToFormat) {\\n return this._monthsNominativeEl;\\n } else if (typeof format === 'string' && /D/.test(format.substring(0, format.indexOf('MMMM')))) {\\n // 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 meridiem(hours, minutes, isLower) {\\n if (hours > 11) {\\n return isLower ? 'μμ' : 'ΜΜ';\\n } else {\\n return isLower ? 'πμ' : 'ΠΜ';\\n }\\n },\\n isPM: function isPM(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 lastWeek() {\\n switch (this.day()) {\\n case 6:\\n return '[το προηγούμενο] dddd [{}] LT';\\n\\n default:\\n return '[την προηγούμενη] dddd [{}] LT';\\n }\\n },\\n sameElse: 'L'\\n },\\n calendar: function calendar(key, mom) {\\n var output = this._calendarEl[key],\\n hours = mom && mom.hours();\\n\\n if (isFunction(output)) {\\n output = output.apply(mom);\\n }\\n\\n return output.replace('{}', hours % 12 === 1 ? 'στη' : 'στις');\\n },\\n relativeTime: {\\n future: 'σε %s',\\n past: '%s πριν',\\n s: 'λίγα δευτερόλεπτα',\\n ss: '%d δευτερόλεπτα',\\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,\\n // 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 });\\n return el;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/el.js?\")},\"./bower_components/moment/locale/en-au.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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 ordinal(number) {\\n var b = number % 10,\\n output = ~~(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th';\\n return number + output;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return enAu;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/en-au.js?\")},\"./bower_components/moment/locale/en-ca.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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 ordinal(number) {\\n var b = number % 10,\\n output = ~~(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th';\\n return number + output;\\n }\\n });\\n return enCa;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/en-ca.js?\")},\"./bower_components/moment/locale/en-gb.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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 ordinal(number) {\\n var b = number % 10,\\n output = ~~(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th';\\n return number + output;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return enGb;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/en-gb.js?\")},\"./bower_components/moment/locale/en-ie.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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 ordinal(number) {\\n var b = number % 10,\\n output = ~~(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th';\\n return number + output;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return enIe;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/en-ie.js?\")},\"./bower_components/moment/locale/en-il.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var enIl = moment.defineLocale('en-il', {\\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 ordinal(number) {\\n var b = number % 10,\\n output = ~~(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th';\\n return number + output;\\n }\\n });\\n return enIl;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/en-il.js?\")},\"./bower_components/moment/locale/en-nz.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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 ordinal(number) {\\n var b = number % 10,\\n output = ~~(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th';\\n return number + output;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return enNz;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/en-nz.js?\")},\"./bower_components/moment/locale/eo.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 isPM(input) {\\n return input.charAt(0).toLowerCase() === 'p';\\n },\\n meridiem: function meridiem(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 ss: '%d sekundoj',\\n m: 'minuto',\\n mm: '%d minutoj',\\n h: 'horo',\\n hh: '%d horoj',\\n d: 'tago',\\n //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,\\n // 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 });\\n return eo;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/eo.js?\")},\"./bower_components/moment/locale/es-do.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'),\\n _monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');\\n\\n var monthsParse = [/^ene/i, /^feb/i, /^mar/i, /^abr/i, /^may/i, /^jun/i, /^jul/i, /^ago/i, /^sep/i, /^oct/i, /^nov/i, /^dic/i];\\n var monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\\\.?|feb\\\\.?|mar\\\\.?|abr\\\\.?|may\\\\.?|jun\\\\.?|jul\\\\.?|ago\\\\.?|sep\\\\.?|oct\\\\.?|nov\\\\.?|dic\\\\.?)/i;\\n var esDo = moment.defineLocale('es-do', {\\n months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),\\n monthsShort: function monthsShort(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 monthsRegex: monthsRegex,\\n monthsShortRegex: monthsRegex,\\n monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,\\n monthsShortStrictRegex: /^(ene\\\\.?|feb\\\\.?|mar\\\\.?|abr\\\\.?|may\\\\.?|jun\\\\.?|jul\\\\.?|ago\\\\.?|sep\\\\.?|oct\\\\.?|nov\\\\.?|dic\\\\.?)/i,\\n monthsParse: monthsParse,\\n longMonthsParse: monthsParse,\\n shortMonthsParse: monthsParse,\\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 sameDay() {\\n return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n nextDay: function nextDay() {\\n return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n nextWeek: function nextWeek() {\\n return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n lastDay: function lastDay() {\\n return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n lastWeek: function lastWeek() {\\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 ss: '%d 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,\\n // 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 });\\n return esDo;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/es-do.js?\")},\"./bower_components/moment/locale/es-us.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'),\\n _monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');\\n\\n var esUs = moment.defineLocale('es-us', {\\n months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),\\n monthsShort: function monthsShort(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: 'MM/DD/YYYY',\\n LL: 'MMMM [de] D [de] YYYY',\\n LLL: 'MMMM [de] D [de] YYYY h:mm A',\\n LLLL: 'dddd, MMMM [de] D [de] YYYY h:mm A'\\n },\\n calendar: {\\n sameDay: function sameDay() {\\n return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n nextDay: function nextDay() {\\n return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n nextWeek: function nextWeek() {\\n return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n lastDay: function lastDay() {\\n return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n lastWeek: function lastWeek() {\\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 ss: '%d 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: 0,\\n // 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 });\\n return esUs;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/es-us.js?\")},\"./bower_components/moment/locale/es.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'),\\n _monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');\\n\\n var monthsParse = [/^ene/i, /^feb/i, /^mar/i, /^abr/i, /^may/i, /^jun/i, /^jul/i, /^ago/i, /^sep/i, /^oct/i, /^nov/i, /^dic/i];\\n var monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\\\.?|feb\\\\.?|mar\\\\.?|abr\\\\.?|may\\\\.?|jun\\\\.?|jul\\\\.?|ago\\\\.?|sep\\\\.?|oct\\\\.?|nov\\\\.?|dic\\\\.?)/i;\\n var es = moment.defineLocale('es', {\\n months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),\\n monthsShort: function monthsShort(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 monthsRegex: monthsRegex,\\n monthsShortRegex: monthsRegex,\\n monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,\\n monthsShortStrictRegex: /^(ene\\\\.?|feb\\\\.?|mar\\\\.?|abr\\\\.?|may\\\\.?|jun\\\\.?|jul\\\\.?|ago\\\\.?|sep\\\\.?|oct\\\\.?|nov\\\\.?|dic\\\\.?)/i,\\n monthsParse: monthsParse,\\n longMonthsParse: monthsParse,\\n shortMonthsParse: monthsParse,\\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 sameDay() {\\n return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n nextDay: function nextDay() {\\n return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n nextWeek: function nextWeek() {\\n return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n lastDay: function lastDay() {\\n return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';\\n },\\n lastWeek: function lastWeek() {\\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 ss: '%d 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,\\n // 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 });\\n return es;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/es.js?\")},\"./bower_components/moment/locale/et.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function processRelativeTime(number, withoutSuffix, key, isFuture) {\\n var format = {\\n 's': ['mõne sekundi', 'mõni sekund', 'paar sekundit'],\\n 'ss': [number + 'sekundi', number + '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\\n if (withoutSuffix) {\\n return format[key][2] ? format[key][2] : format[key][1];\\n }\\n\\n return isFuture ? format[key][0] : format[key][1];\\n }\\n\\n var 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 ss: 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,\\n // 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 });\\n return et;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/et.js?\")},\"./bower_components/moment/locale/eu.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d segundo',\\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,\\n // 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 });\\n return eu;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/eu.js?\")},\"./bower_components/moment/locale/fa.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '۱',\\n '2': '۲',\\n '3': '۳',\\n '4': '۴',\\n '5': '۵',\\n '6': '۶',\\n '7': '۷',\\n '8': '۸',\\n '9': '۹',\\n '0': '۰'\\n },\\n numberMap = {\\n '۱': '1',\\n '۲': '2',\\n '۳': '3',\\n '۴': '4',\\n '۵': '5',\\n '۶': '6',\\n '۷': '7',\\n '۸': '8',\\n '۹': '9',\\n '۰': '0'\\n };\\n var fa = moment.defineLocale('fa', {\\n months: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),\\n monthsShort: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),\\n weekdays: \\\"\\\\u06CC\\\\u06A9\\\\u200C\\\\u0634\\\\u0646\\\\u0628\\\\u0647_\\\\u062F\\\\u0648\\\\u0634\\\\u0646\\\\u0628\\\\u0647_\\\\u0633\\\\u0647\\\\u200C\\\\u0634\\\\u0646\\\\u0628\\\\u0647_\\\\u0686\\\\u0647\\\\u0627\\\\u0631\\\\u0634\\\\u0646\\\\u0628\\\\u0647_\\\\u067E\\\\u0646\\\\u062C\\\\u200C\\\\u0634\\\\u0646\\\\u0628\\\\u0647_\\\\u062C\\\\u0645\\\\u0639\\\\u0647_\\\\u0634\\\\u0646\\\\u0628\\\\u0647\\\".split('_'),\\n weekdaysShort: \\\"\\\\u06CC\\\\u06A9\\\\u200C\\\\u0634\\\\u0646\\\\u0628\\\\u0647_\\\\u062F\\\\u0648\\\\u0634\\\\u0646\\\\u0628\\\\u0647_\\\\u0633\\\\u0647\\\\u200C\\\\u0634\\\\u0646\\\\u0628\\\\u0647_\\\\u0686\\\\u0647\\\\u0627\\\\u0631\\\\u0634\\\\u0646\\\\u0628\\\\u0647_\\\\u067E\\\\u0646\\\\u062C\\\\u200C\\\\u0634\\\\u0646\\\\u0628\\\\u0647_\\\\u062C\\\\u0645\\\\u0639\\\\u0647_\\\\u0634\\\\u0646\\\\u0628\\\\u0647\\\".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 isPM(input) {\\n return /بعد از ظهر/.test(input);\\n },\\n meridiem: function meridiem(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 ss: 'ثانیه d%',\\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 preparse(string) {\\n return string.replace(/[۰-۹]/g, function (match) {\\n return numberMap[match];\\n }).replace(/،/g, ',');\\n },\\n postformat: function postformat(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,\\n // 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 });\\n return fa;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/fa.js?\")},\"./bower_components/moment/locale/fi.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(' '),\\n numbersFuture = ['nolla', 'yhden', 'kahden', 'kolmen', 'neljän', 'viiden', 'kuuden', numbersPast[7], numbersPast[8], numbersPast[9]];\\n\\n function translate(number, withoutSuffix, key, isFuture) {\\n var result = '';\\n\\n switch (key) {\\n case 's':\\n return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';\\n\\n case 'ss':\\n return isFuture ? 'sekunnin' : 'sekuntia';\\n\\n case 'm':\\n return isFuture ? 'minuutin' : 'minuutti';\\n\\n case 'mm':\\n result = isFuture ? 'minuutin' : 'minuuttia';\\n break;\\n\\n case 'h':\\n return isFuture ? 'tunnin' : 'tunti';\\n\\n case 'hh':\\n result = isFuture ? 'tunnin' : 'tuntia';\\n break;\\n\\n case 'd':\\n return isFuture ? 'päivän' : 'päivä';\\n\\n case 'dd':\\n result = isFuture ? 'päivän' : 'päivää';\\n break;\\n\\n case 'M':\\n return isFuture ? 'kuukauden' : 'kuukausi';\\n\\n case 'MM':\\n result = isFuture ? 'kuukauden' : 'kuukautta';\\n break;\\n\\n case 'y':\\n return isFuture ? 'vuoden' : 'vuosi';\\n\\n case 'yy':\\n result = isFuture ? 'vuoden' : 'vuotta';\\n break;\\n }\\n\\n result = verbalNumber(number, isFuture) + ' ' + result;\\n return result;\\n }\\n\\n function verbalNumber(number, isFuture) {\\n return number < 10 ? isFuture ? numbersFuture[number] : numbersPast[number] : number;\\n }\\n\\n var 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 ss: 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,\\n // 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 });\\n return fi;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/fi.js?\")},\"./bower_components/moment/locale/fo.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d sekundir',\\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,\\n // 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 });\\n return fo;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/fo.js?\")},\"./bower_components/moment/locale/fr-ca.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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 ordinal(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 // Words with feminine grammatical gender: semaine\\n\\n case 'w':\\n case 'W':\\n return number + (number === 1 ? 're' : 'e');\\n }\\n }\\n });\\n return frCa;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/fr-ca.js?\")},\"./bower_components/moment/locale/fr-ch.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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 ordinal(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 // Words with feminine grammatical gender: semaine\\n\\n case 'w':\\n case 'W':\\n return number + (number === 1 ? 're' : 'e');\\n }\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return frCh;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/fr-ch.js?\")},\"./bower_components/moment/locale/fr.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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 ordinal(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 // Words with masculine grammatical gender: mois, trimestre, jour\\n\\n default:\\n case 'M':\\n case 'Q':\\n case 'DDD':\\n case 'd':\\n return number + (number === 1 ? 'er' : 'e');\\n // Words with feminine grammatical gender: semaine\\n\\n case 'w':\\n case 'W':\\n return number + (number === 1 ? 're' : 'e');\\n }\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return fr;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/fr.js?\")},\"./bower_components/moment/locale/fy.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var monthsShortWithDots = 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split('_'),\\n monthsShortWithoutDots = 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_');\\n var fy = moment.defineLocale('fy', {\\n months: 'jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber'.split('_'),\\n monthsShort: function monthsShort(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 ss: '%d 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 ordinal(number) {\\n return number + (number === 1 || number === 8 || number >= 20 ? 'ste' : 'de');\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return fy;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/fy.js?\")},\"./bower_components/moment/locale/gd.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var months = ['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 var monthsShort = ['Faoi', 'Gear', 'Màrt', 'Gibl', 'Cèit', 'Ògmh', 'Iuch', 'Lùn', 'Sult', 'Dàmh', 'Samh', 'Dùbh'];\\n var weekdays = ['Didòmhnaich', 'Diluain', 'Dimàirt', 'Diciadain', 'Diardaoin', 'Dihaoine', 'Disathairne'];\\n var weekdaysShort = ['Did', 'Dil', 'Dim', 'Dic', 'Dia', 'Dih', 'Dis'];\\n var weekdaysMin = ['Dò', 'Lu', 'Mà', 'Ci', 'Ar', 'Ha', 'Sa'];\\n var 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 ss: '%d 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 ordinal(number) {\\n var output = number === 1 ? 'd' : number % 10 === 2 ? 'na' : 'mh';\\n return number + output;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return gd;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/gd.js?\")},\"./bower_components/moment/locale/gl.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 sameDay() {\\n return '[hoxe ' + (this.hours() !== 1 ? 'ás' : 'á') + '] LT';\\n },\\n nextDay: function nextDay() {\\n return '[mañá ' + (this.hours() !== 1 ? 'ás' : 'á') + '] LT';\\n },\\n nextWeek: function nextWeek() {\\n return 'dddd [' + (this.hours() !== 1 ? 'ás' : 'a') + '] LT';\\n },\\n lastDay: function lastDay() {\\n return '[onte ' + (this.hours() !== 1 ? 'á' : 'a') + '] LT';\\n },\\n lastWeek: function lastWeek() {\\n return '[o] dddd [pasado ' + (this.hours() !== 1 ? 'ás' : 'a') + '] LT';\\n },\\n sameElse: 'L'\\n },\\n relativeTime: {\\n future: function future(str) {\\n if (str.indexOf('un') === 0) {\\n return 'n' + str;\\n }\\n\\n return 'en ' + str;\\n },\\n past: 'hai %s',\\n s: 'uns segundos',\\n ss: '%d 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,\\n // 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 });\\n return gl;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/gl.js?\")},\"./bower_components/moment/locale/gom-latn.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function processRelativeTime(number, withoutSuffix, key, isFuture) {\\n var format = {\\n 's': ['thodde secondanim', 'thodde second'],\\n 'ss': [number + ' secondanim', number + ' 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\\n var 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 ss: 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 ordinal(number, period) {\\n switch (period) {\\n // the ordinal 'er' only applies to day of the month\\n case 'D':\\n return number + 'er';\\n\\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,\\n // 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 meridiemParse: /rati|sokalli|donparam|sanje/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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 return gomLatn;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/gom-latn.js?\")},\"./bower_components/moment/locale/gu.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '૧',\\n '2': '૨',\\n '3': '૩',\\n '4': '૪',\\n '5': '૫',\\n '6': '૬',\\n '7': '૭',\\n '8': '૮',\\n '9': '૯',\\n '0': '૦'\\n },\\n numberMap = {\\n '૧': '1',\\n '૨': '2',\\n '૩': '3',\\n '૪': '4',\\n '૫': '5',\\n '૬': '6',\\n '૭': '7',\\n '૮': '8',\\n '૯': '9',\\n '૦': '0'\\n };\\n var gu = moment.defineLocale('gu', {\\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 ss: '%d સેકંડ',\\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 preparse(string) {\\n return string.replace(/[૧૨૩૪૫૬૭૮૯૦]/g, function (match) {\\n return numberMap[match];\\n });\\n },\\n postformat: function postformat(string) {\\n return string.replace(/\\\\d/g, function (match) {\\n return symbolMap[match];\\n });\\n },\\n // Gujarati 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 Gujarati.\\n meridiemParse: /રાત|બપોર|સવાર|સાંજ/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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,\\n // 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 });\\n return gu;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/gu.js?\")},\"./bower_components/moment/locale/he.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d שניות',\\n m: 'דקה',\\n mm: '%d דקות',\\n h: 'שעה',\\n hh: function hh(number) {\\n if (number === 2) {\\n return 'שעתיים';\\n }\\n\\n return number + ' שעות';\\n },\\n d: 'יום',\\n dd: function dd(number) {\\n if (number === 2) {\\n return 'יומיים';\\n }\\n\\n return number + ' ימים';\\n },\\n M: 'חודש',\\n MM: function MM(number) {\\n if (number === 2) {\\n return 'חודשיים';\\n }\\n\\n return number + ' חודשים';\\n },\\n y: 'שנה',\\n yy: function yy(number) {\\n if (number === 2) {\\n return 'שנתיים';\\n } else if (number % 10 === 0 && number !== 10) {\\n return number + ' שנה';\\n }\\n\\n return number + ' שנים';\\n }\\n },\\n meridiemParse: /אחה\\\"צ|לפנה\\\"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,\\n isPM: function isPM(input) {\\n return /^(אחה\\\"צ|אחרי הצהריים|בערב)$/.test(input);\\n },\\n meridiem: function meridiem(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 return he;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/he.js?\")},\"./bower_components/moment/locale/hi.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '१',\\n '2': '२',\\n '3': '३',\\n '4': '४',\\n '5': '५',\\n '6': '६',\\n '7': '७',\\n '8': '८',\\n '9': '९',\\n '0': '०'\\n },\\n numberMap = {\\n '१': '1',\\n '२': '2',\\n '३': '3',\\n '४': '4',\\n '५': '5',\\n '६': '6',\\n '७': '7',\\n '८': '8',\\n '९': '9',\\n '०': '0'\\n };\\n var 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 ss: '%d सेकंड',\\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 preparse(string) {\\n return string.replace(/[१२३४५६७८९०]/g, function (match) {\\n return numberMap[match];\\n });\\n },\\n postformat: function postformat(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 meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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,\\n // 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 });\\n return hi;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/hi.js?\")},\"./bower_components/moment/locale/hr.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function translate(number, withoutSuffix, key) {\\n var result = number + ' ';\\n\\n switch (key) {\\n case 'ss':\\n if (number === 1) {\\n result += 'sekunda';\\n } else if (number === 2 || number === 3 || number === 4) {\\n result += 'sekunde';\\n } else {\\n result += 'sekundi';\\n }\\n\\n return result;\\n\\n case 'm':\\n return withoutSuffix ? 'jedna minuta' : 'jedne minute';\\n\\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\\n return result;\\n\\n case 'h':\\n return withoutSuffix ? 'jedan sat' : 'jednog sata';\\n\\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\\n return result;\\n\\n case 'dd':\\n if (number === 1) {\\n result += 'dan';\\n } else {\\n result += 'dana';\\n }\\n\\n return result;\\n\\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\\n return result;\\n\\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\\n return result;\\n }\\n }\\n\\n var 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 nextWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[u] [nedjelju] [u] LT';\\n\\n case 3:\\n return '[u] [srijedu] [u] LT';\\n\\n case 6:\\n return '[u] [subotu] [u] LT';\\n\\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 lastWeek() {\\n switch (this.day()) {\\n case 0:\\n case 3:\\n return '[prošlu] dddd [u] LT';\\n\\n case 6:\\n return '[prošle] [subote] [u] LT';\\n\\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 ss: translate,\\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,\\n // 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 });\\n return hr;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/hr.js?\")},\"./bower_components/moment/locale/hu.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' ');\\n\\n function translate(number, withoutSuffix, key, isFuture) {\\n var num = number;\\n\\n switch (key) {\\n case 's':\\n return isFuture || withoutSuffix ? 'néhány másodperc' : 'néhány másodperce';\\n\\n case 'ss':\\n return num + (isFuture || withoutSuffix) ? ' másodperc' : ' másodperce';\\n\\n case 'm':\\n return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');\\n\\n case 'mm':\\n return num + (isFuture || withoutSuffix ? ' perc' : ' perce');\\n\\n case 'h':\\n return 'egy' + (isFuture || withoutSuffix ? ' óra' : ' órája');\\n\\n case 'hh':\\n return num + (isFuture || withoutSuffix ? ' óra' : ' órája');\\n\\n case 'd':\\n return 'egy' + (isFuture || withoutSuffix ? ' nap' : ' napja');\\n\\n case 'dd':\\n return num + (isFuture || withoutSuffix ? ' nap' : ' napja');\\n\\n case 'M':\\n return 'egy' + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');\\n\\n case 'MM':\\n return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');\\n\\n case 'y':\\n return 'egy' + (isFuture || withoutSuffix ? ' év' : ' éve');\\n\\n case 'yy':\\n return num + (isFuture || withoutSuffix ? ' év' : ' éve');\\n }\\n\\n return '';\\n }\\n\\n function week(isFuture) {\\n return (isFuture ? '' : '[múlt] ') + '[' + weekEndings[this.day()] + '] LT[-kor]';\\n }\\n\\n var 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 isPM(input) {\\n return input.charAt(1).toLowerCase() === 'u';\\n },\\n meridiem: function meridiem(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 nextWeek() {\\n return week.call(this, true);\\n },\\n lastDay: '[tegnap] LT[-kor]',\\n lastWeek: function lastWeek() {\\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 ss: 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,\\n // 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 });\\n return hu;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/hu.js?\")},\"./bower_components/moment/locale/hy-am.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 nextWeek() {\\n return 'dddd [օրը ժամը] LT';\\n },\\n lastWeek: function lastWeek() {\\n return '[անցած] dddd [օրը ժամը] LT';\\n },\\n sameElse: 'L'\\n },\\n relativeTime: {\\n future: '%s հետո',\\n past: '%s առաջ',\\n s: 'մի քանի վայրկյան',\\n ss: '%d վայրկյան',\\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 isPM(input) {\\n return /^(ցերեկվա|երեկոյան)$/.test(input);\\n },\\n meridiem: function meridiem(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 ordinal(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\\n return number + '-րդ';\\n\\n default:\\n return number;\\n }\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return hyAm;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/hy-am.js?\")},\"./bower_components/moment/locale/id.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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_Agt_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 meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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 ss: '%d 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,\\n // 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 });\\n return id;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/id.js?\")},\"./bower_components/moment/locale/is.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function plural(n) {\\n if (n % 100 === 11) {\\n return true;\\n } else if (n % 10 === 1) {\\n return false;\\n }\\n\\n return true;\\n }\\n\\n function translate(number, withoutSuffix, key, isFuture) {\\n var result = number + ' ';\\n\\n switch (key) {\\n case 's':\\n return withoutSuffix || isFuture ? 'nokkrar sekúndur' : 'nokkrum sekúndum';\\n\\n case 'ss':\\n if (plural(number)) {\\n return result + (withoutSuffix || isFuture ? 'sekúndur' : 'sekúndum');\\n }\\n\\n return result + 'sekúnda';\\n\\n case 'm':\\n return withoutSuffix ? 'mínúta' : 'mínútu';\\n\\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\\n return result + 'mínútu';\\n\\n case 'hh':\\n if (plural(number)) {\\n return result + (withoutSuffix || isFuture ? 'klukkustundir' : 'klukkustundum');\\n }\\n\\n return result + 'klukkustund';\\n\\n case 'd':\\n if (withoutSuffix) {\\n return 'dagur';\\n }\\n\\n return isFuture ? 'dag' : 'degi';\\n\\n case 'dd':\\n if (plural(number)) {\\n if (withoutSuffix) {\\n return result + 'dagar';\\n }\\n\\n return result + (isFuture ? 'daga' : 'dögum');\\n } else if (withoutSuffix) {\\n return result + 'dagur';\\n }\\n\\n return result + (isFuture ? 'dag' : 'degi');\\n\\n case 'M':\\n if (withoutSuffix) {\\n return 'mánuður';\\n }\\n\\n return isFuture ? 'mánuð' : 'mánuði';\\n\\n case 'MM':\\n if (plural(number)) {\\n if (withoutSuffix) {\\n return result + 'mánuðir';\\n }\\n\\n return result + (isFuture ? 'mánuði' : 'mánuðum');\\n } else if (withoutSuffix) {\\n return result + 'mánuður';\\n }\\n\\n return result + (isFuture ? 'mánuð' : 'mánuði');\\n\\n case 'y':\\n return withoutSuffix || isFuture ? 'ár' : 'ári';\\n\\n case 'yy':\\n if (plural(number)) {\\n return result + (withoutSuffix || isFuture ? 'ár' : 'árum');\\n }\\n\\n return result + (withoutSuffix || isFuture ? 'ár' : 'ári');\\n }\\n }\\n\\n var 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 ss: 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,\\n // 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 });\\n return is;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/is.js?\")},\"./bower_components/moment/locale/it.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 lastWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[la scorsa] dddd [alle] LT';\\n\\n default:\\n return '[lo scorso] dddd [alle] LT';\\n }\\n },\\n sameElse: 'L'\\n },\\n relativeTime: {\\n future: function future(s) {\\n return (/^[0-9].+$/.test(s) ? 'tra' : 'in') + ' ' + s;\\n },\\n past: '%s fa',\\n s: 'alcuni secondi',\\n ss: '%d 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,\\n // 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 });\\n return it;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/it.js?\")},\"./bower_components/moment/locale/ja.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 isPM(input) {\\n return input === '午後';\\n },\\n meridiem: function meridiem(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 ordinal(number, period) {\\n switch (period) {\\n case 'd':\\n case 'D':\\n case 'DDD':\\n return number + '日';\\n\\n default:\\n return number;\\n }\\n },\\n relativeTime: {\\n future: '%s後',\\n past: '%s前',\\n s: '数秒',\\n ss: '%d秒',\\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 return ja;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ja.js?\")},\"./bower_components/moment/locale/jv.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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 ss: '%d 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,\\n // 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 });\\n return jv;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/jv.js?\")},\"./bower_components/moment/locale/ka.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 future(s) {\\n return /(წამი|წუთი|საათი|წელი)/.test(s) ? s.replace(/ი$/, 'ში') : s + 'ში';\\n },\\n past: function past(s) {\\n if (/(წამი|წუთი|საათი|დღე|თვე)/.test(s)) {\\n return s.replace(/(ი|ე)$/, 'ის უკან');\\n }\\n\\n if (/წელი/.test(s)) {\\n return s.replace(/წელი$/, 'წლის უკან');\\n }\\n },\\n s: 'რამდენიმე წამი',\\n ss: '%d წამი',\\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 ordinal(number) {\\n if (number === 0) {\\n return number;\\n }\\n\\n if (number === 1) {\\n return number + '-ლი';\\n }\\n\\n if (number < 20 || number <= 100 && number % 20 === 0 || number % 100 === 0) {\\n return 'მე-' + number;\\n }\\n\\n return number + '-ე';\\n },\\n week: {\\n dow: 1,\\n doy: 7\\n }\\n });\\n return ka;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ka.js?\")},\"./bower_components/moment/locale/kk.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 var 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 ss: '%d секунд',\\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 ordinal(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,\\n // 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 });\\n return kk;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/kk.js?\")},\"./bower_components/moment/locale/km.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d វិនាទី',\\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,\\n // 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 });\\n return km;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/km.js?\")},\"./bower_components/moment/locale/kn.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '೧',\\n '2': '೨',\\n '3': '೩',\\n '4': '೪',\\n '5': '೫',\\n '6': '೬',\\n '7': '೭',\\n '8': '೮',\\n '9': '೯',\\n '0': '೦'\\n },\\n numberMap = {\\n '೧': '1',\\n '೨': '2',\\n '೩': '3',\\n '೪': '4',\\n '೫': '5',\\n '೬': '6',\\n '೭': '7',\\n '೮': '8',\\n '೯': '9',\\n '೦': '0'\\n };\\n var 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 ss: '%d ಸೆಕೆಂಡುಗಳು',\\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 preparse(string) {\\n return string.replace(/[೧೨೩೪೫೬೭೮೯೦]/g, function (match) {\\n return numberMap[match];\\n });\\n },\\n postformat: function postformat(string) {\\n return string.replace(/\\\\d/g, function (match) {\\n return symbolMap[match];\\n });\\n },\\n meridiemParse: /ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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 ordinal(number) {\\n return number + 'ನೇ';\\n },\\n week: {\\n dow: 0,\\n // 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 });\\n return kn;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/kn.js?\")},\"./bower_components/moment/locale/ko.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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: function ordinal(number, period) {\\n switch (period) {\\n case 'd':\\n case 'D':\\n case 'DDD':\\n return number + '일';\\n\\n case 'M':\\n return number + '월';\\n\\n case 'w':\\n case 'W':\\n return number + '주';\\n\\n default:\\n return number;\\n }\\n },\\n meridiemParse: /오전|오후/,\\n isPM: function isPM(token) {\\n return token === '오후';\\n },\\n meridiem: function meridiem(hour, minute, isUpper) {\\n return hour < 12 ? '오전' : '오후';\\n }\\n });\\n return ko;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ko.js?\")},\"./bower_components/moment/locale/ky.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 var 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 ss: '%d секунд',\\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 ordinal(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,\\n // 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 });\\n return ky;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ky.js?\")},\"./bower_components/moment/locale/lb.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function 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 }\\n\\n function processFutureTime(string) {\\n var number = string.substr(0, string.indexOf(' '));\\n\\n if (eifelerRegelAppliesToNumber(number)) {\\n return 'a ' + string;\\n }\\n\\n return 'an ' + string;\\n }\\n\\n function processPastTime(string) {\\n var number = string.substr(0, string.indexOf(' '));\\n\\n if (eifelerRegelAppliesToNumber(number)) {\\n return 'viru ' + string;\\n }\\n\\n return 'virun ' + string;\\n }\\n /**\\r\\n * Returns true if the word before the given number loses the '-n' ending.\\r\\n * e.g. 'an 10 Deeg' but 'a 5 Deeg'\\r\\n *\\r\\n * @param number {integer}\\r\\n * @returns {boolean}\\r\\n */\\n\\n\\n function eifelerRegelAppliesToNumber(number) {\\n number = parseInt(number, 10);\\n\\n if (isNaN(number)) {\\n return false;\\n }\\n\\n if (number < 0) {\\n // Negative Number --\\x3e 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\\n return false;\\n } else if (number < 100) {\\n // 2 digits\\n var lastDigit = number % 10,\\n firstDigit = number / 10;\\n\\n if (lastDigit === 0) {\\n return eifelerRegelAppliesToNumber(firstDigit);\\n }\\n\\n return eifelerRegelAppliesToNumber(lastDigit);\\n } else if (number < 10000) {\\n // 3 or 4 digits --\\x3e recursively check first digit\\n while (number >= 10) {\\n number = number / 10;\\n }\\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\\n var 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 lastWeek() {\\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\\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 ss: '%d 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,\\n // 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 });\\n return lb;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/lb.js?\")},\"./bower_components/moment/locale/lo.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 isPM(input) {\\n return input === 'ຕອນແລງ';\\n },\\n meridiem: function meridiem(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 ss: '%d ວິນາທີ',\\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 ordinal(number) {\\n return 'ທີ່' + number;\\n }\\n });\\n return lo;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/lo.js?\")},\"./bower_components/moment/locale/lt.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var units = {\\n 'ss': 'sekundė_sekundžių_sekundes',\\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 };\\n\\n function 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 }\\n\\n function translateSingular(number, withoutSuffix, key, isFuture) {\\n return withoutSuffix ? forms(key)[0] : isFuture ? forms(key)[1] : forms(key)[2];\\n }\\n\\n function special(number) {\\n return number % 10 === 0 || number > 10 && number < 20;\\n }\\n\\n function forms(key) {\\n return units[key].split('_');\\n }\\n\\n function translate(number, withoutSuffix, key, isFuture) {\\n var result = number + ' ';\\n\\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 }\\n\\n var 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 ss: translate,\\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 ordinal(number) {\\n return number + '-oji';\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return lt;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/lt.js?\")},\"./bower_components/moment/locale/lv.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var units = {\\n 'ss': 'sekundes_sekundēm_sekunde_sekundes'.split('_'),\\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 /**\\r\\n * @param withoutSuffix boolean true = a length of time; false = before/after a period of time.\\r\\n */\\n\\n function 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 }\\n\\n function relativeTimeWithPlural(number, withoutSuffix, key) {\\n return number + ' ' + format(units[key], number, withoutSuffix);\\n }\\n\\n function relativeTimeWithSingular(number, withoutSuffix, key) {\\n return format(units[key], number, withoutSuffix);\\n }\\n\\n function relativeSeconds(number, withoutSuffix) {\\n return withoutSuffix ? 'dažas sekundes' : 'dažām sekundēm';\\n }\\n\\n var 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 ss: relativeTimeWithPlural,\\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,\\n // 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 });\\n return lv;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/lv.js?\")},\"./bower_components/moment/locale/me.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var translator = {\\n words: {\\n //Different grammatical cases\\n ss: ['sekund', 'sekunda', 'sekundi'],\\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 correctGrammaticalCase(number, wordKey) {\\n return number === 1 ? wordKey[0] : number >= 2 && number <= 4 ? wordKey[1] : wordKey[2];\\n },\\n translate: function translate(number, withoutSuffix, key) {\\n var wordKey = translator.words[key];\\n\\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 var 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 nextWeek: function nextWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[u] [nedjelju] [u] LT';\\n\\n case 3:\\n return '[u] [srijedu] [u] LT';\\n\\n case 6:\\n return '[u] [subotu] [u] LT';\\n\\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 lastWeek() {\\n var lastWeekDays = ['[prošle] [nedjelje] [u] LT', '[prošlog] [ponedjeljka] [u] LT', '[prošlog] [utorka] [u] LT', '[prošle] [srijede] [u] LT', '[prošlog] [četvrtka] [u] LT', '[prošlog] [petka] [u] LT', '[prošle] [subote] [u] LT'];\\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 ss: translator.translate,\\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,\\n // 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 });\\n return me;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/me.js?\")},\"./bower_components/moment/locale/mi.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d hēkona',\\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,\\n // 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 });\\n return mi;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/mi.js?\")},\"./bower_components/moment/locale/mk.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 lastWeek() {\\n switch (this.day()) {\\n case 0:\\n case 3:\\n case 6:\\n return '[Изминатата] dddd [во] LT';\\n\\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 ss: '%d секунди',\\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 ordinal(number) {\\n var lastDigit = number % 10,\\n last2Digits = number % 100;\\n\\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,\\n // 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 });\\n return mk;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/mk.js?\")},\"./bower_components/moment/locale/ml.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d സെക്കൻഡ്',\\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 meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\n\\n if (meridiem === 'രാത്രി' && hour >= 4 || meridiem === 'ഉച്ച കഴിഞ്ഞ്' || meridiem === 'വൈകുന്നേരം') {\\n return hour + 12;\\n } else {\\n return hour;\\n }\\n },\\n meridiem: function meridiem(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 return ml;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ml.js?\")},\"./bower_components/moment/locale/mr.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '१',\\n '2': '२',\\n '3': '३',\\n '4': '४',\\n '5': '५',\\n '6': '६',\\n '7': '७',\\n '8': '८',\\n '9': '९',\\n '0': '०'\\n },\\n numberMap = {\\n '१': '1',\\n '२': '2',\\n '३': '3',\\n '४': '4',\\n '५': '5',\\n '६': '6',\\n '७': '7',\\n '८': '8',\\n '९': '9',\\n '०': '0'\\n };\\n\\n function relativeTimeMr(number, withoutSuffix, string, isFuture) {\\n var output = '';\\n\\n if (withoutSuffix) {\\n switch (string) {\\n case 's':\\n output = 'काही सेकंद';\\n break;\\n\\n case 'ss':\\n output = '%d सेकंद';\\n break;\\n\\n case 'm':\\n output = 'एक मिनिट';\\n break;\\n\\n case 'mm':\\n output = '%d मिनिटे';\\n break;\\n\\n case 'h':\\n output = 'एक तास';\\n break;\\n\\n case 'hh':\\n output = '%d तास';\\n break;\\n\\n case 'd':\\n output = 'एक दिवस';\\n break;\\n\\n case 'dd':\\n output = '%d दिवस';\\n break;\\n\\n case 'M':\\n output = 'एक महिना';\\n break;\\n\\n case 'MM':\\n output = '%d महिने';\\n break;\\n\\n case 'y':\\n output = 'एक वर्ष';\\n break;\\n\\n case 'yy':\\n output = '%d वर्षे';\\n break;\\n }\\n } else {\\n switch (string) {\\n case 's':\\n output = 'काही सेकंदां';\\n break;\\n\\n case 'ss':\\n output = '%d सेकंदां';\\n break;\\n\\n case 'm':\\n output = 'एका मिनिटा';\\n break;\\n\\n case 'mm':\\n output = '%d मिनिटां';\\n break;\\n\\n case 'h':\\n output = 'एका तासा';\\n break;\\n\\n case 'hh':\\n output = '%d तासां';\\n break;\\n\\n case 'd':\\n output = 'एका दिवसा';\\n break;\\n\\n case 'dd':\\n output = '%d दिवसां';\\n break;\\n\\n case 'M':\\n output = 'एका महिन्या';\\n break;\\n\\n case 'MM':\\n output = '%d महिन्यां';\\n break;\\n\\n case 'y':\\n output = 'एका वर्षा';\\n break;\\n\\n case 'yy':\\n output = '%d वर्षां';\\n break;\\n }\\n }\\n\\n return output.replace(/%d/i, number);\\n }\\n\\n var 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 ss: 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 preparse(string) {\\n return string.replace(/[१२३४५६७८९०]/g, function (match) {\\n return numberMap[match];\\n });\\n },\\n postformat: function postformat(string) {\\n return string.replace(/\\\\d/g, function (match) {\\n return symbolMap[match];\\n });\\n },\\n meridiemParse: /रात्री|सकाळी|दुपारी|सायंकाळी/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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,\\n // 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 });\\n return mr;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/mr.js?\")},\"./bower_components/moment/locale/ms-my.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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 ss: '%d 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,\\n // 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 });\\n return msMy;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ms-my.js?\")},\"./bower_components/moment/locale/ms.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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 ss: '%d 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,\\n // 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 });\\n return ms;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ms.js?\")},\"./bower_components/moment/locale/mt.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var mt = moment.defineLocale('mt', {\\n months: 'Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru'.split('_'),\\n monthsShort: 'Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ'.split('_'),\\n weekdays: 'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split('_'),\\n weekdaysShort: 'Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib'.split('_'),\\n weekdaysMin: 'Ħa_Tn_Tl_Er_Ħa_Ġi_Si'.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: '[Illum fil-]LT',\\n nextDay: '[Għada fil-]LT',\\n nextWeek: 'dddd [fil-]LT',\\n lastDay: '[Il-bieraħ fil-]LT',\\n lastWeek: 'dddd [li għadda] [fil-]LT',\\n sameElse: 'L'\\n },\\n relativeTime: {\\n future: 'f’ %s',\\n past: '%s ilu',\\n s: 'ftit sekondi',\\n ss: '%d sekondi',\\n m: 'minuta',\\n mm: '%d minuti',\\n h: 'siegħa',\\n hh: '%d siegħat',\\n d: 'ġurnata',\\n dd: '%d ġranet',\\n M: 'xahar',\\n MM: '%d xhur',\\n y: 'sena',\\n yy: '%d sni'\\n },\\n dayOfMonthOrdinalParse: /\\\\d{1,2}º/,\\n ordinal: '%dº',\\n week: {\\n dow: 1,\\n // 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 });\\n return mt;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/mt.js?\")},\"./bower_components/moment/locale/my.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '၁',\\n '2': '၂',\\n '3': '၃',\\n '4': '၄',\\n '5': '၅',\\n '6': '၆',\\n '7': '၇',\\n '8': '၈',\\n '9': '၉',\\n '0': '၀'\\n },\\n numberMap = {\\n '၁': '1',\\n '၂': '2',\\n '၃': '3',\\n '၄': '4',\\n '၅': '5',\\n '၆': '6',\\n '၇': '7',\\n '၈': '8',\\n '၉': '9',\\n '၀': '0'\\n };\\n var my = moment.defineLocale('my', {\\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 ss: '%d စက္ကန့်',\\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 preparse(string) {\\n return string.replace(/[၁၂၃၄၅၆၇၈၉၀]/g, function (match) {\\n return numberMap[match];\\n });\\n },\\n postformat: function postformat(string) {\\n return string.replace(/\\\\d/g, function (match) {\\n return symbolMap[match];\\n });\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return my;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/my.js?\")},\"./bower_components/moment/locale/nb.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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,\\n // 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 });\\n return nb;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/nb.js?\")},\"./bower_components/moment/locale/ne.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '१',\\n '2': '२',\\n '3': '३',\\n '4': '४',\\n '5': '५',\\n '6': '६',\\n '7': '७',\\n '8': '८',\\n '9': '९',\\n '0': '०'\\n },\\n numberMap = {\\n '१': '1',\\n '२': '2',\\n '३': '3',\\n '४': '4',\\n '५': '5',\\n '६': '6',\\n '७': '7',\\n '८': '8',\\n '९': '9',\\n '०': '0'\\n };\\n var 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 preparse(string) {\\n return string.replace(/[१२३४५६७८९०]/g, function (match) {\\n return numberMap[match];\\n });\\n },\\n postformat: function postformat(string) {\\n return string.replace(/\\\\d/g, function (match) {\\n return symbolMap[match];\\n });\\n },\\n meridiemParse: /राति|बिहान|दिउँसो|साँझ/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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 ss: '%d सेकेण्ड',\\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,\\n // 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 });\\n return ne;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ne.js?\")},\"./bower_components/moment/locale/nl-be.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'),\\n monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_');\\n var 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];\\n var 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 var nlBe = moment.defineLocale('nl-be', {\\n months: 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),\\n monthsShort: function monthsShort(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 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 monthsParse: monthsParse,\\n longMonthsParse: monthsParse,\\n shortMonthsParse: monthsParse,\\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 ss: '%d 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 ordinal(number) {\\n return number + (number === 1 || number === 8 || number >= 20 ? 'ste' : 'de');\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return nlBe;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/nl-be.js?\")},\"./bower_components/moment/locale/nl.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'),\\n monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_');\\n var 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];\\n var 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 var nl = moment.defineLocale('nl', {\\n months: 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),\\n monthsShort: function monthsShort(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 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 monthsParse: monthsParse,\\n longMonthsParse: monthsParse,\\n shortMonthsParse: monthsParse,\\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 ss: '%d 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 ordinal(number) {\\n return number + (number === 1 || number === 8 || number >= 20 ? 'ste' : 'de');\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return nl;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/nl.js?\")},\"./bower_components/moment/locale/nn.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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,\\n // 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 });\\n return nn;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/nn.js?\")},\"./bower_components/moment/locale/pa-in.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '੧',\\n '2': '੨',\\n '3': '੩',\\n '4': '੪',\\n '5': '੫',\\n '6': '੬',\\n '7': '੭',\\n '8': '੮',\\n '9': '੯',\\n '0': '੦'\\n },\\n numberMap = {\\n '੧': '1',\\n '੨': '2',\\n '੩': '3',\\n '੪': '4',\\n '੫': '5',\\n '੬': '6',\\n '੭': '7',\\n '੮': '8',\\n '੯': '9',\\n '੦': '0'\\n };\\n var 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 ss: '%d ਸਕਿੰਟ',\\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 preparse(string) {\\n return string.replace(/[੧੨੩੪੫੬੭੮੯੦]/g, function (match) {\\n return numberMap[match];\\n });\\n },\\n postformat: function postformat(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 meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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,\\n // 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 });\\n return paIn;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/pa-in.js?\")},\"./bower_components/moment/locale/pl.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split('_'),\\n monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split('_');\\n\\n function plural(n) {\\n return n % 10 < 5 && n % 10 > 1 && ~~(n / 10) % 10 !== 1;\\n }\\n\\n function translate(number, withoutSuffix, key) {\\n var result = number + ' ';\\n\\n switch (key) {\\n case 'ss':\\n return result + (plural(number) ? 'sekundy' : 'sekund');\\n\\n case 'm':\\n return withoutSuffix ? 'minuta' : 'minutę';\\n\\n case 'mm':\\n return result + (plural(number) ? 'minuty' : 'minut');\\n\\n case 'h':\\n return withoutSuffix ? 'godzina' : 'godzinę';\\n\\n case 'hh':\\n return result + (plural(number) ? 'godziny' : 'godzin');\\n\\n case 'MM':\\n return result + (plural(number) ? 'miesiące' : 'miesięcy');\\n\\n case 'yy':\\n return result + (plural(number) ? 'lata' : 'lat');\\n }\\n }\\n\\n var pl = moment.defineLocale('pl', {\\n months: function months(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: function nextWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[W niedzielę o] LT';\\n\\n case 2:\\n return '[We wtorek o] LT';\\n\\n case 3:\\n return '[W środę o] LT';\\n\\n case 6:\\n return '[W sobotę o] LT';\\n\\n default:\\n return '[W] dddd [o] LT';\\n }\\n },\\n lastDay: '[Wczoraj o] LT',\\n lastWeek: function lastWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[W zeszłą niedzielę o] LT';\\n\\n case 3:\\n return '[W zeszłą środę o] LT';\\n\\n case 6:\\n return '[W zeszłą sobotę o] LT';\\n\\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 ss: translate,\\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,\\n // 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 });\\n return pl;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/pl.js?\")},\"./bower_components/moment/locale/pt-br.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 lastWeek() {\\n return this.day() === 0 || this.day() === 6 ? '[Ú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: 'poucos segundos',\\n ss: '%d 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 return ptBr;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/pt-br.js?\")},\"./bower_components/moment/locale/pt.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 lastWeek() {\\n return this.day() === 0 || this.day() === 6 ? '[Ú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 ss: '%d 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,\\n // 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 });\\n return pt;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/pt.js?\")},\"./bower_components/moment/locale/ro.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function relativeTimeWithPlural(number, withoutSuffix, key) {\\n var format = {\\n 'ss': 'secunde',\\n 'mm': 'minute',\\n 'hh': 'ore',\\n 'dd': 'zile',\\n 'MM': 'luni',\\n 'yy': 'ani'\\n },\\n separator = ' ';\\n\\n if (number % 100 >= 20 || number >= 100 && number % 100 === 0) {\\n separator = ' de ';\\n }\\n\\n return number + separator + format[key];\\n }\\n\\n var 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 ss: relativeTimeWithPlural,\\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,\\n // 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 });\\n return ro;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ro.js?\")},\"./bower_components/moment/locale/ru.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function 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 }\\n\\n function relativeTimeWithPlural(number, withoutSuffix, key) {\\n var format = {\\n 'ss': withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',\\n 'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',\\n 'hh': 'час_часа_часов',\\n 'dd': 'день_дня_дней',\\n 'MM': 'месяц_месяца_месяцев',\\n 'yy': 'год_года_лет'\\n };\\n\\n if (key === 'm') {\\n return withoutSuffix ? 'минута' : 'минуту';\\n } else {\\n return number + ' ' + plural(format[key], +number);\\n }\\n }\\n\\n var monthsParse = [/^янв/i, /^фев/i, /^мар/i, /^апр/i, /^ма[йя]/i, /^июн/i, /^июл/i, /^авг/i, /^сен/i, /^окт/i, /^ноя/i, /^дек/i]; // 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\\n\\n var 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 // полные названия с падежами, по три буквы, для некоторых, по 4 буквы, сокращения с точкой и без точки\\n monthsRegex: /^(январ[ья]|янв\\\\.?|феврал[ья]|февр?\\\\.?|марта?|мар\\\\.?|апрел[ья]|апр\\\\.?|ма[йя]|июн[ья]|июн\\\\.?|июл[ья]|июл\\\\.?|августа?|авг\\\\.?|сентябр[ья]|сент?\\\\.?|октябр[ья]|окт\\\\.?|ноябр[ья]|нояб?\\\\.?|декабр[ья]|дек\\\\.?)/i,\\n // копия предыдущего\\n monthsShortRegex: /^(январ[ья]|янв\\\\.?|феврал[ья]|февр?\\\\.?|марта?|мар\\\\.?|апрел[ья]|апр\\\\.?|ма[йя]|июн[ья]|июн\\\\.?|июл[ья]|июл\\\\.?|августа?|авг\\\\.?|сентябр[ья]|сент?\\\\.?|октябр[ья]|окт\\\\.?|ноябр[ья]|нояб?\\\\.?|декабр[ья]|дек\\\\.?)/i,\\n // полные названия с падежами\\n monthsStrictRegex: /^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,\\n // Выражение, которое соотвествует только сокращённым формам\\n monthsShortStrictRegex: /^(янв\\\\.|февр?\\\\.|мар[т.]|апр\\\\.|ма[яй]|июн[ья.]|июл[ья.]|авг\\\\.|сент?\\\\.|окт\\\\.|нояб?\\\\.|дек\\\\.)/i,\\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 lastDay: '[Вчера в] LT',\\n nextWeek: function nextWeek(now) {\\n if (now.week() !== this.week()) {\\n switch (this.day()) {\\n case 0:\\n return '[В следующее] dddd [в] LT';\\n\\n case 1:\\n case 2:\\n case 4:\\n return '[В следующий] dddd [в] LT';\\n\\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 lastWeek(now) {\\n if (now.week() !== this.week()) {\\n switch (this.day()) {\\n case 0:\\n return '[В прошлое] dddd [в] LT';\\n\\n case 1:\\n case 2:\\n case 4:\\n return '[В прошлый] dddd [в] LT';\\n\\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 ss: relativeTimeWithPlural,\\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 isPM(input) {\\n return /^(дня|вечера)$/.test(input);\\n },\\n meridiem: function meridiem(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 ordinal(number, period) {\\n switch (period) {\\n case 'M':\\n case 'd':\\n case 'DDD':\\n return number + '-й';\\n\\n case 'D':\\n return number + '-го';\\n\\n case 'w':\\n case 'W':\\n return number + '-я';\\n\\n default:\\n return number;\\n }\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return ru;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ru.js?\")},\"./bower_components/moment/locale/sd.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var months = ['جنوري', 'فيبروري', 'مارچ', 'اپريل', 'مئي', 'جون', 'جولاءِ', 'آگسٽ', 'سيپٽمبر', 'آڪٽوبر', 'نومبر', 'ڊسمبر'];\\n var days = ['آچر', 'سومر', 'اڱارو', 'اربع', 'خميس', 'جمع', 'ڇنڇر'];\\n var 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 isPM(input) {\\n return 'شام' === input;\\n },\\n meridiem: function meridiem(hour, minute, isLower) {\\n if (hour < 12) {\\n return 'صبح';\\n }\\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 ss: '%d سيڪنڊ',\\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 preparse(string) {\\n return string.replace(/،/g, ',');\\n },\\n postformat: function postformat(string) {\\n return string.replace(/,/g, '،');\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return sd;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/sd.js?\")},\"./bower_components/moment/locale/se.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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,\\n // 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 });\\n return se;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/se.js?\")},\"./bower_components/moment/locale/si.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n /*jshint -W100*/\\n\\n var 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 ss: 'තත්පර %d',\\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 ordinal(number) {\\n return number + ' වැනි';\\n },\\n meridiemParse: /පෙර වරු|පස් වරු|පෙ.ව|ප.ව./,\\n isPM: function isPM(input) {\\n return input === 'ප.ව.' || input === 'පස් වරු';\\n },\\n meridiem: function meridiem(hours, minutes, isLower) {\\n if (hours > 11) {\\n return isLower ? 'ප.ව.' : 'පස් වරු';\\n } else {\\n return isLower ? 'පෙ.ව.' : 'පෙර වරු';\\n }\\n }\\n });\\n return si;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/si.js?\")},\"./bower_components/moment/locale/sk.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var months = 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split('_'),\\n monthsShort = 'jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec'.split('_');\\n\\n function plural(n) {\\n return n > 1 && n < 5;\\n }\\n\\n function translate(number, withoutSuffix, key, isFuture) {\\n var result = number + ' ';\\n\\n switch (key) {\\n case 's':\\n // a few seconds / in a few seconds / a few seconds ago\\n return withoutSuffix || isFuture ? 'pár sekúnd' : 'pár sekundami';\\n\\n case 'ss':\\n // 9 seconds / in 9 seconds / 9 seconds ago\\n if (withoutSuffix || isFuture) {\\n return result + (plural(number) ? 'sekundy' : 'sekúnd');\\n } else {\\n return result + 'sekundami';\\n }\\n\\n break;\\n\\n case 'm':\\n // a minute / in a minute / a minute ago\\n return withoutSuffix ? 'minúta' : isFuture ? 'minútu' : 'minútou';\\n\\n case 'mm':\\n // 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\\n break;\\n\\n case 'h':\\n // an hour / in an hour / an hour ago\\n return withoutSuffix ? 'hodina' : isFuture ? 'hodinu' : 'hodinou';\\n\\n case 'hh':\\n // 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\\n break;\\n\\n case 'd':\\n // a day / in a day / a day ago\\n return withoutSuffix || isFuture ? 'deň' : 'dňom';\\n\\n case 'dd':\\n // 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\\n break;\\n\\n case 'M':\\n // a month / in a month / a month ago\\n return withoutSuffix || isFuture ? 'mesiac' : 'mesiacom';\\n\\n case 'MM':\\n // 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\\n break;\\n\\n case 'y':\\n // a year / in a year / a year ago\\n return withoutSuffix || isFuture ? 'rok' : 'rokom';\\n\\n case 'yy':\\n // 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\\n break;\\n }\\n }\\n\\n var 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 nextWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[v nedeľu o] LT';\\n\\n case 1:\\n case 2:\\n return '[v] dddd [o] LT';\\n\\n case 3:\\n return '[v stredu o] LT';\\n\\n case 4:\\n return '[vo štvrtok o] LT';\\n\\n case 5:\\n return '[v piatok o] LT';\\n\\n case 6:\\n return '[v sobotu o] LT';\\n }\\n },\\n lastDay: '[včera o] LT',\\n lastWeek: function lastWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[minulú nedeľu o] LT';\\n\\n case 1:\\n case 2:\\n return '[minulý] dddd [o] LT';\\n\\n case 3:\\n return '[minulú stredu o] LT';\\n\\n case 4:\\n case 5:\\n return '[minulý] dddd [o] LT';\\n\\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 ss: 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,\\n // 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 });\\n return sk;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/sk.js?\")},\"./bower_components/moment/locale/sl.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function processRelativeTime(number, withoutSuffix, key, isFuture) {\\n var result = number + ' ';\\n\\n switch (key) {\\n case 's':\\n return withoutSuffix || isFuture ? 'nekaj sekund' : 'nekaj sekundami';\\n\\n case 'ss':\\n if (number === 1) {\\n result += withoutSuffix ? 'sekundo' : 'sekundi';\\n } else if (number === 2) {\\n result += withoutSuffix || isFuture ? 'sekundi' : 'sekundah';\\n } else if (number < 5) {\\n result += withoutSuffix || isFuture ? 'sekunde' : 'sekundah';\\n } else {\\n result += withoutSuffix || isFuture ? 'sekund' : 'sekund';\\n }\\n\\n return result;\\n\\n case 'm':\\n return withoutSuffix ? 'ena minuta' : 'eno minuto';\\n\\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\\n return result;\\n\\n case 'h':\\n return withoutSuffix ? 'ena ura' : 'eno uro';\\n\\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\\n return result;\\n\\n case 'd':\\n return withoutSuffix || isFuture ? 'en dan' : 'enim dnem';\\n\\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\\n return result;\\n\\n case 'M':\\n return withoutSuffix || isFuture ? 'en mesec' : 'enim mesecem';\\n\\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\\n return result;\\n\\n case 'y':\\n return withoutSuffix || isFuture ? 'eno leto' : 'enim letom';\\n\\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\\n return result;\\n }\\n }\\n\\n var 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 nextWeek: function nextWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[v] [nedeljo] [ob] LT';\\n\\n case 3:\\n return '[v] [sredo] [ob] LT';\\n\\n case 6:\\n return '[v] [soboto] [ob] LT';\\n\\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 lastWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[prejšnjo] [nedeljo] [ob] LT';\\n\\n case 3:\\n return '[prejšnjo] [sredo] [ob] LT';\\n\\n case 6:\\n return '[prejšnjo] [soboto] [ob] LT';\\n\\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 ss: 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,\\n // 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 });\\n return sl;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/sl.js?\")},\"./bower_components/moment/locale/sq.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 isPM(input) {\\n return input.charAt(0) === 'M';\\n },\\n meridiem: function meridiem(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 ss: '%d 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,\\n // 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 });\\n return sq;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/sq.js?\")},\"./bower_components/moment/locale/sr-cyrl.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var translator = {\\n words: {\\n //Different grammatical cases\\n ss: ['секунда', 'секунде', 'секунди'],\\n m: ['један минут', 'једне минуте'],\\n mm: ['минут', 'минуте', 'минута'],\\n h: ['један сат', 'једног сата'],\\n hh: ['сат', 'сата', 'сати'],\\n dd: ['дан', 'дана', 'дана'],\\n MM: ['месец', 'месеца', 'месеци'],\\n yy: ['година', 'године', 'година']\\n },\\n correctGrammaticalCase: function correctGrammaticalCase(number, wordKey) {\\n return number === 1 ? wordKey[0] : number >= 2 && number <= 4 ? wordKey[1] : wordKey[2];\\n },\\n translate: function translate(number, withoutSuffix, key) {\\n var wordKey = translator.words[key];\\n\\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 var 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 nextWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[у] [недељу] [у] LT';\\n\\n case 3:\\n return '[у] [среду] [у] LT';\\n\\n case 6:\\n return '[у] [суботу] [у] LT';\\n\\n case 1:\\n case 2:\\n case 4:\\n case 5:\\n return '[у] dddd [у] LT';\\n }\\n },\\n lastDay: '[јуче у] LT',\\n lastWeek: function lastWeek() {\\n var lastWeekDays = ['[прошле] [недеље] [у] LT', '[прошлог] [понедељка] [у] LT', '[прошлог] [уторка] [у] LT', '[прошле] [среде] [у] LT', '[прошлог] [четвртка] [у] LT', '[прошлог] [петка] [у] LT', '[прошле] [суботе] [у] LT'];\\n return lastWeekDays[this.day()];\\n },\\n sameElse: 'L'\\n },\\n relativeTime: {\\n future: 'за %s',\\n past: 'пре %s',\\n s: 'неколико секунди',\\n ss: translator.translate,\\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,\\n // 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 });\\n return srCyrl;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/sr-cyrl.js?\")},\"./bower_components/moment/locale/sr.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var translator = {\\n words: {\\n //Different grammatical cases\\n ss: ['sekunda', 'sekunde', 'sekundi'],\\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 correctGrammaticalCase(number, wordKey) {\\n return number === 1 ? wordKey[0] : number >= 2 && number <= 4 ? wordKey[1] : wordKey[2];\\n },\\n translate: function translate(number, withoutSuffix, key) {\\n var wordKey = translator.words[key];\\n\\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 var 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 nextWeek() {\\n switch (this.day()) {\\n case 0:\\n return '[u] [nedelju] [u] LT';\\n\\n case 3:\\n return '[u] [sredu] [u] LT';\\n\\n case 6:\\n return '[u] [subotu] [u] LT';\\n\\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 lastWeek() {\\n var lastWeekDays = ['[prošle] [nedelje] [u] LT', '[prošlog] [ponedeljka] [u] LT', '[prošlog] [utorka] [u] LT', '[prošle] [srede] [u] LT', '[prošlog] [četvrtka] [u] LT', '[prošlog] [petka] [u] LT', '[prošle] [subote] [u] LT'];\\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 ss: translator.translate,\\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,\\n // 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 });\\n return sr;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/sr.js?\")},\"./bower_components/moment/locale/ss.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d mzuzwana',\\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 meridiem(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 meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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\\n return hour + 12;\\n }\\n },\\n dayOfMonthOrdinalParse: /\\\\d{1,2}/,\\n ordinal: '%d',\\n week: {\\n dow: 1,\\n // 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 });\\n return ss;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ss.js?\")},\"./bower_components/moment/locale/sv.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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 ordinal(number) {\\n var b = number % 10,\\n output = ~~(number % 100 / 10) === 1 ? 'e' : b === 1 ? 'a' : b === 2 ? 'a' : b === 3 ? 'e' : 'e';\\n return number + output;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return sv;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/sv.js?\")},\"./bower_components/moment/locale/sw.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: 'sekunde %d',\\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,\\n // 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 });\\n return sw;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/sw.js?\")},\"./bower_components/moment/locale/ta.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var symbolMap = {\\n '1': '௧',\\n '2': '௨',\\n '3': '௩',\\n '4': '௪',\\n '5': '௫',\\n '6': '௬',\\n '7': '௭',\\n '8': '௮',\\n '9': '௯',\\n '0': '௦'\\n },\\n numberMap = {\\n '௧': '1',\\n '௨': '2',\\n '௩': '3',\\n '௪': '4',\\n '௫': '5',\\n '௬': '6',\\n '௭': '7',\\n '௮': '8',\\n '௯': '9',\\n '௦': '0'\\n };\\n var 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 ss: '%d விநாடிகள்',\\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 ordinal(number) {\\n return number + 'வது';\\n },\\n preparse: function preparse(string) {\\n return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) {\\n return numberMap[match];\\n });\\n },\\n postformat: function postformat(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 meridiem(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 meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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,\\n // 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 });\\n return ta;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ta.js?\")},\"./bower_components/moment/locale/te.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d సెకన్లు',\\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 meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(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,\\n // 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 });\\n return te;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/te.js?\")},\"./bower_components/moment/locale/tet.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var tet = moment.defineLocale('tet', {\\n months: 'Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru'.split('_'),\\n monthsShort: 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),\\n weekdays: 'Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu'.split('_'),\\n weekdaysShort: 'Dom_Seg_Ters_Kua_Kint_Sest_Sab'.split('_'),\\n weekdaysMin: 'Do_Seg_Te_Ku_Ki_Ses_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 ss: 'minutu %d',\\n m: 'minutu ida',\\n mm: 'minutu %d',\\n h: 'oras ida',\\n hh: 'oras %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 ordinal(number) {\\n var b = number % 10,\\n output = ~~(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th';\\n return number + output;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return tet;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/tet.js?\")},\"./bower_components/moment/locale/tg.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var suffixes = {\\n 0: '-ум',\\n 1: '-ум',\\n 2: '-юм',\\n 3: '-юм',\\n 4: '-ум',\\n 5: '-ум',\\n 6: '-ум',\\n 7: '-ум',\\n 8: '-ум',\\n 9: '-ум',\\n 10: '-ум',\\n 12: '-ум',\\n 13: '-ум',\\n 20: '-ум',\\n 30: '-юм',\\n 40: '-ум',\\n 50: '-ум',\\n 60: '-ум',\\n 70: '-ум',\\n 80: '-ум',\\n 90: '-ум',\\n 100: '-ум'\\n };\\n var tg = moment.defineLocale('tg', {\\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 lastDay: '[Дирӯз соати] LT',\\n nextWeek: 'dddd[и] [ҳафтаи оянда соати] 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: /шаб|субҳ|рӯз|бегоҳ/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 >= 11 ? hour : hour + 12;\\n } else if (meridiem === 'бегоҳ') {\\n return hour + 12;\\n }\\n },\\n meridiem: function meridiem(hour, minute, isLower) {\\n if (hour < 4) {\\n return 'шаб';\\n } else if (hour < 11) {\\n return 'субҳ';\\n } else if (hour < 16) {\\n return 'рӯз';\\n } else if (hour < 19) {\\n return 'бегоҳ';\\n } else {\\n return 'шаб';\\n }\\n },\\n dayOfMonthOrdinalParse: /\\\\d{1,2}-(ум|юм)/,\\n ordinal: function ordinal(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,\\n // Monday is the first day of the week.\\n doy: 7 // The week that contains Jan 1th is the first week of the year.\\n\\n }\\n });\\n return tg;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/tg.js?\")},\"./bower_components/moment/locale/th.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var th = moment.defineLocale('th', {\\n months: 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split('_'),\\n monthsShort: 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split('_'),\\n monthsParseExact: true,\\n weekdays: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),\\n weekdaysShort: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'),\\n // 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 isPM(input) {\\n return input === 'หลังเที่ยง';\\n },\\n meridiem: function meridiem(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 ss: '%d วินาที',\\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 return th;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/th.js?\")},\"./bower_components/moment/locale/tl-ph.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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 ordinal(number) {\\n return number;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return tlPh;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/tl-ph.js?\")},\"./bower_components/moment/locale/tlh.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var numbersNouns = 'pagh_wa’_cha’_wej_loS_vagh_jav_Soch_chorgh_Hut'.split('_');\\n\\n function translateFuture(output) {\\n var time = output;\\n time = output.indexOf('jaj') !== -1 ? time.slice(0, -3) + 'leS' : output.indexOf('jar') !== -1 ? time.slice(0, -3) + 'waQ' : output.indexOf('DIS') !== -1 ? time.slice(0, -3) + 'nem' : time + ' pIq';\\n return time;\\n }\\n\\n function translatePast(output) {\\n var time = output;\\n time = output.indexOf('jaj') !== -1 ? time.slice(0, -3) + 'Hu’' : output.indexOf('jar') !== -1 ? time.slice(0, -3) + 'wen' : output.indexOf('DIS') !== -1 ? time.slice(0, -3) + 'ben' : time + ' ret';\\n return time;\\n }\\n\\n function translate(number, withoutSuffix, string, isFuture) {\\n var numberNoun = numberAsNoun(number);\\n\\n switch (string) {\\n case 'ss':\\n return numberNoun + ' lup';\\n\\n case 'mm':\\n return numberNoun + ' tup';\\n\\n case 'hh':\\n return numberNoun + ' rep';\\n\\n case 'dd':\\n return numberNoun + ' jaj';\\n\\n case 'MM':\\n return numberNoun + ' jar';\\n\\n case 'yy':\\n return numberNoun + ' DIS';\\n }\\n }\\n\\n function numberAsNoun(number) {\\n var hundred = Math.floor(number % 1000 / 100),\\n ten = Math.floor(number % 100 / 10),\\n one = number % 10,\\n word = '';\\n\\n if (hundred > 0) {\\n word += numbersNouns[hundred] + 'vatlh';\\n }\\n\\n if (ten > 0) {\\n word += (word !== '' ? ' ' : '') + numbersNouns[ten] + 'maH';\\n }\\n\\n if (one > 0) {\\n word += (word !== '' ? ' ' : '') + numbersNouns[one];\\n }\\n\\n return word === '' ? 'pagh' : word;\\n }\\n\\n var 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 ss: translate,\\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,\\n // 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 });\\n return tlh;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/tlh.js?\")},\"./bower_components/moment/locale/tr.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 var 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: '[gelecek] dddd [saat] LT',\\n lastDay: '[dün] LT',\\n lastWeek: '[geçen] dddd [saat] LT',\\n sameElse: 'L'\\n },\\n relativeTime: {\\n future: '%s sonra',\\n past: '%s önce',\\n s: 'birkaç saniye',\\n ss: '%d 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 ordinal: function ordinal(number, period) {\\n switch (period) {\\n case 'd':\\n case 'D':\\n case 'Do':\\n case 'DD':\\n return number;\\n\\n default:\\n if (number === 0) {\\n // special case for zero\\n return number + '\\\\'ıncı';\\n }\\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 },\\n week: {\\n dow: 1,\\n // 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 });\\n return tr;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/tr.js?\")},\"./bower_components/moment/locale/tzl.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict'; // 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.\\n\\n var 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 isPM(input) {\\n return 'd\\\\'o' === input.toLowerCase();\\n },\\n meridiem: function meridiem(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 ss: 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,\\n // 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 });\\n\\n function processRelativeTime(number, withoutSuffix, key, isFuture) {\\n var format = {\\n 's': ['viensas secunds', '\\\\'iensas secunds'],\\n 'ss': [number + ' secunds', '' + number + ' 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\\n return tzl;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/tzl.js?\")},\"./bower_components/moment/locale/tzm-latn.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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,\\n // 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 });\\n return tzmLatn;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/tzm-latn.js?\")},\"./bower_components/moment/locale/tzm.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d ⵉⵎⵉⴽ',\\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,\\n // 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 });\\n return tzm;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/tzm.js?\")},\"./bower_components/moment/locale/ug-cn.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js language configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var ugCn = moment.defineLocale('ug-cn', {\\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: 'YYYY-MM-DD',\\n LL: 'YYYY-يىلىM-ئاينىڭD-كۈنى',\\n LLL: 'YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm',\\n LLLL: 'dddd، YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm'\\n },\\n meridiemParse: /يېرىم كېچە|سەھەر|چۈشتىن بۇرۇن|چۈش|چۈشتىن كېيىن|كەچ/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\n\\n if (meridiem === 'يېرىم كېچە' || meridiem === 'سەھەر' || meridiem === 'چۈشتىن بۇرۇن') {\\n return hour;\\n } else if (meridiem === 'چۈشتىن كېيىن' || meridiem === 'كەچ') {\\n return hour + 12;\\n } else {\\n return hour >= 11 ? hour : hour + 12;\\n }\\n },\\n meridiem: function meridiem(hour, minute, isLower) {\\n var hm = hour * 100 + minute;\\n\\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: '[كېلەركى] 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: 'بىر مىنۇت',\\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 ordinal(number, period) {\\n switch (period) {\\n case 'd':\\n case 'D':\\n case 'DDD':\\n return number + '-كۈنى';\\n\\n case 'w':\\n case 'W':\\n return number + '-ھەپتە';\\n\\n default:\\n return number;\\n }\\n },\\n preparse: function preparse(string) {\\n return string.replace(/،/g, ',');\\n },\\n postformat: function postformat(string) {\\n return string.replace(/,/g, '،');\\n },\\n week: {\\n // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效\\n dow: 1,\\n // 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 });\\n return ugCn;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ug-cn.js?\")},\"./bower_components/moment/locale/uk.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n function 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 }\\n\\n function relativeTimeWithPlural(number, withoutSuffix, key) {\\n var format = {\\n 'ss': withoutSuffix ? 'секунда_секунди_секунд' : 'секунду_секунди_секунд',\\n 'mm': withoutSuffix ? 'хвилина_хвилини_хвилин' : 'хвилину_хвилини_хвилин',\\n 'hh': withoutSuffix ? 'година_години_годин' : 'годину_години_годин',\\n 'dd': 'день_дні_днів',\\n 'MM': 'місяць_місяці_місяців',\\n 'yy': 'рік_роки_років'\\n };\\n\\n if (key === 'm') {\\n return withoutSuffix ? 'хвилина' : 'хвилину';\\n } else if (key === 'h') {\\n return withoutSuffix ? 'година' : 'годину';\\n } else {\\n return number + ' ' + plural(format[key], +number);\\n }\\n }\\n\\n function 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) ? 'accusative' : /\\\\[?(?:минулої|наступної)? ?\\\\] ?dddd/.test(format) ? 'genitive' : 'nominative';\\n return weekdays[nounCase][m.day()];\\n }\\n\\n function processHoursFunction(str) {\\n return function () {\\n return str + 'о' + (this.hours() === 11 ? 'б' : '') + '] LT';\\n };\\n }\\n\\n var 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 lastWeek() {\\n switch (this.day()) {\\n case 0:\\n case 3:\\n case 5:\\n case 6:\\n return processHoursFunction('[Минулої] dddd [').call(this);\\n\\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 ss: relativeTimeWithPlural,\\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 isPM(input) {\\n return /^(дня|вечора)$/.test(input);\\n },\\n meridiem: function meridiem(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 ordinal(number, period) {\\n switch (period) {\\n case 'M':\\n case 'd':\\n case 'DDD':\\n case 'w':\\n case 'W':\\n return number + '-й';\\n\\n case 'D':\\n return number + '-го';\\n\\n default:\\n return number;\\n }\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return uk;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/uk.js?\")},\"./bower_components/moment/locale/ur.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var months = ['جنوری', 'فروری', 'مارچ', 'اپریل', 'مئی', 'جون', 'جولائی', 'اگست', 'ستمبر', 'اکتوبر', 'نومبر', 'دسمبر'];\\n var days = ['اتوار', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'ہفتہ'];\\n var 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 isPM(input) {\\n return 'شام' === input;\\n },\\n meridiem: function meridiem(hour, minute, isLower) {\\n if (hour < 12) {\\n return 'صبح';\\n }\\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 ss: '%d سیکنڈ',\\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 preparse(string) {\\n return string.replace(/،/g, ',');\\n },\\n postformat: function postformat(string) {\\n return string.replace(/,/g, '،');\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return ur;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/ur.js?\")},\"./bower_components/moment/locale/uz-latn.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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,\\n // 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 });\\n return uzLatn;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/uz-latn.js?\")},\"./bower_components/moment/locale/uz.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d фурсат',\\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,\\n // 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 });\\n return uz;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/uz.js?\")},\"./bower_components/moment/locale/vi.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 isPM(input) {\\n return /^ch$/i.test(input);\\n },\\n meridiem: function meridiem(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 ss: '%d 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 ordinal(number) {\\n return number;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return vi;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/vi.js?\")},\"./bower_components/moment/locale/x-pseudo.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: '%d 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 ordinal(number) {\\n var b = number % 10,\\n output = ~~(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th';\\n return number + output;\\n },\\n week: {\\n dow: 1,\\n // 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 });\\n return xPseudo;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/x-pseudo.js?\")},\"./bower_components/moment/locale/yo.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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 ss: 'aayá %d',\\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,\\n // 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 });\\n return yo;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/yo.js?\")},\"./bower_components/moment/locale/zh-cn.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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/MM/DD',\\n LL: 'YYYY年M月D日',\\n LLL: 'YYYY年M月D日Ah点mm分',\\n LLLL: 'YYYY年M月D日ddddAh点mm分',\\n l: 'YYYY/M/D',\\n ll: 'YYYY年M月D日',\\n lll: 'YYYY年M月D日 HH:mm',\\n llll: 'YYYY年M月D日dddd HH:mm'\\n },\\n meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\n\\n if (meridiem === '凌晨' || meridiem === '早上' || 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 meridiem(hour, minute, isLower) {\\n var hm = hour * 100 + minute;\\n\\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 ordinal(number, period) {\\n switch (period) {\\n case 'd':\\n case 'D':\\n case 'DDD':\\n return number + '日';\\n\\n case 'M':\\n return number + '月';\\n\\n case 'w':\\n case 'W':\\n return number + '周';\\n\\n default:\\n return number;\\n }\\n },\\n relativeTime: {\\n future: '%s内',\\n past: '%s前',\\n s: '几秒',\\n ss: '%d 秒',\\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,\\n // 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 });\\n return zhCn;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/zh-cn.js?\")},\"./bower_components/moment/locale/zh-hk.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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/MM/DD',\\n LL: 'YYYY年M月D日',\\n LLL: 'YYYY年M月D日 HH:mm',\\n LLLL: 'YYYY年M月D日dddd HH:mm',\\n l: 'YYYY/M/D',\\n ll: 'YYYY年M月D日',\\n lll: 'YYYY年M月D日 HH:mm',\\n llll: 'YYYY年M月D日dddd HH:mm'\\n },\\n meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(hour, minute, isLower) {\\n var hm = hour * 100 + minute;\\n\\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 ordinal(number, period) {\\n switch (period) {\\n case 'd':\\n case 'D':\\n case 'DDD':\\n return number + '日';\\n\\n case 'M':\\n return number + '月';\\n\\n case 'w':\\n case 'W':\\n return number + '週';\\n\\n default:\\n return number;\\n }\\n },\\n relativeTime: {\\n future: '%s內',\\n past: '%s前',\\n s: '幾秒',\\n ss: '%d 秒',\\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 return zhHk;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/zh-hk.js?\")},\"./bower_components/moment/locale/zh-tw.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js locale configuration\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' && \\\"function\\\" === 'function' ? factory(__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")) : true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! ../moment */ \\\"./bower_components/moment/moment.js\\\")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function (moment) {\\n 'use strict';\\n\\n var 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/MM/DD',\\n LL: 'YYYY年M月D日',\\n LLL: 'YYYY年M月D日 HH:mm',\\n LLLL: 'YYYY年M月D日dddd HH:mm',\\n l: 'YYYY/M/D',\\n ll: 'YYYY年M月D日',\\n lll: 'YYYY年M月D日 HH:mm',\\n llll: 'YYYY年M月D日dddd HH:mm'\\n },\\n meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,\\n meridiemHour: function meridiemHour(hour, meridiem) {\\n if (hour === 12) {\\n hour = 0;\\n }\\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 meridiem(hour, minute, isLower) {\\n var hm = hour * 100 + minute;\\n\\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 ordinal(number, period) {\\n switch (period) {\\n case 'd':\\n case 'D':\\n case 'DDD':\\n return number + '日';\\n\\n case 'M':\\n return number + '月';\\n\\n case 'w':\\n case 'W':\\n return number + '週';\\n\\n default:\\n return number;\\n }\\n },\\n relativeTime: {\\n future: '%s內',\\n past: '%s前',\\n s: '幾秒',\\n ss: '%d 秒',\\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 return zhTw;\\n});\\n\\n//# sourceURL=webpack:///./bower_components/moment/locale/zh-tw.js?\")},\"./bower_components/moment/moment.js\":function(module,exports,__webpack_require__){eval(\"/* WEBPACK VAR INJECTION */(function(module) {var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;var require;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n//! moment.js\\n;\\n\\n(function (global, factory) {\\n ( false ? undefined : _typeof(exports)) === 'object' && typeof module !== 'undefined' ? module.exports = factory() : true ? !(__WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.call(exports, __webpack_require__, exports, module)) :\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined;\\n})(this, function () {\\n 'use strict';\\n\\n var hookCallback;\\n\\n function hooks() {\\n return hookCallback.apply(null, arguments);\\n } // This is done to register the method called with moment()\\n // without creating circular dependencies.\\n\\n\\n function setHookCallback(callback) {\\n hookCallback = callback;\\n }\\n\\n function isArray(input) {\\n return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';\\n }\\n\\n function isObject(input) {\\n // IE8 will treat undefined and null as object if it wasn't for\\n // input != null\\n return input != null && Object.prototype.toString.call(input) === '[object Object]';\\n }\\n\\n function isObjectEmpty(obj) {\\n if (Object.getOwnPropertyNames) {\\n return Object.getOwnPropertyNames(obj).length === 0;\\n } else {\\n var k;\\n\\n for (k in obj) {\\n if (obj.hasOwnProperty(k)) {\\n return false;\\n }\\n }\\n\\n return true;\\n }\\n }\\n\\n function isUndefined(input) {\\n return input === void 0;\\n }\\n\\n function isNumber(input) {\\n return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';\\n }\\n\\n function isDate(input) {\\n return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]';\\n }\\n\\n function map(arr, fn) {\\n var res = [],\\n i;\\n\\n for (i = 0; i < arr.length; ++i) {\\n res.push(fn(arr[i], i));\\n }\\n\\n return res;\\n }\\n\\n function hasOwnProp(a, b) {\\n return Object.prototype.hasOwnProperty.call(a, b);\\n }\\n\\n function extend(a, b) {\\n for (var i in b) {\\n if (hasOwnProp(b, i)) {\\n a[i] = b[i];\\n }\\n }\\n\\n if (hasOwnProp(b, 'toString')) {\\n a.toString = b.toString;\\n }\\n\\n if (hasOwnProp(b, 'valueOf')) {\\n a.valueOf = b.valueOf;\\n }\\n\\n return a;\\n }\\n\\n function createUTC(input, format, locale, strict) {\\n return createLocalOrUTC(input, format, locale, strict, true).utc();\\n }\\n\\n 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 }\\n\\n function getParsingFlags(m) {\\n if (m._pf == null) {\\n m._pf = defaultParsingFlags();\\n }\\n\\n return m._pf;\\n }\\n\\n var some;\\n\\n if (Array.prototype.some) {\\n some = Array.prototype.some;\\n } else {\\n some = function some(fun) {\\n var t = Object(this);\\n var len = t.length >>> 0;\\n\\n for (var i = 0; i < len; i++) {\\n if (i in t && fun.call(this, t[i], i, t)) {\\n return true;\\n }\\n }\\n\\n return false;\\n };\\n }\\n\\n function isValid(m) {\\n if (m._isValid == null) {\\n var flags = getParsingFlags(m);\\n var parsedParts = some.call(flags.parsedDateParts, function (i) {\\n return i != null;\\n });\\n var isNowValid = !isNaN(m._d.getTime()) && flags.overflow < 0 && !flags.empty && !flags.invalidMonth && !flags.invalidWeekday && !flags.weekdayMismatch && !flags.nullInput && !flags.invalidFormat && !flags.userInvalidated && (!flags.meridiem || flags.meridiem && parsedParts);\\n\\n if (m._strict) {\\n isNowValid = isNowValid && flags.charsLeftOver === 0 && flags.unusedTokens.length === 0 && flags.bigHour === undefined;\\n }\\n\\n if (Object.isFrozen == null || !Object.isFrozen(m)) {\\n m._isValid = isNowValid;\\n } else {\\n return isNowValid;\\n }\\n }\\n\\n return m._isValid;\\n }\\n\\n function createInvalid(flags) {\\n var m = createUTC(NaN);\\n\\n if (flags != null) {\\n extend(getParsingFlags(m), flags);\\n } else {\\n getParsingFlags(m).userInvalidated = true;\\n }\\n\\n return m;\\n } // Plugins that add properties should also add the key here (null value),\\n // so we can properly clone ourselves.\\n\\n\\n var momentProperties = hooks.momentProperties = [];\\n\\n function copyConfig(to, from) {\\n var i, prop, val;\\n\\n if (!isUndefined(from._isAMomentObject)) {\\n to._isAMomentObject = from._isAMomentObject;\\n }\\n\\n if (!isUndefined(from._i)) {\\n to._i = from._i;\\n }\\n\\n if (!isUndefined(from._f)) {\\n to._f = from._f;\\n }\\n\\n if (!isUndefined(from._l)) {\\n to._l = from._l;\\n }\\n\\n if (!isUndefined(from._strict)) {\\n to._strict = from._strict;\\n }\\n\\n if (!isUndefined(from._tzm)) {\\n to._tzm = from._tzm;\\n }\\n\\n if (!isUndefined(from._isUTC)) {\\n to._isUTC = from._isUTC;\\n }\\n\\n if (!isUndefined(from._offset)) {\\n to._offset = from._offset;\\n }\\n\\n if (!isUndefined(from._pf)) {\\n to._pf = getParsingFlags(from);\\n }\\n\\n if (!isUndefined(from._locale)) {\\n to._locale = from._locale;\\n }\\n\\n if (momentProperties.length > 0) {\\n for (i = 0; i < momentProperties.length; i++) {\\n prop = momentProperties[i];\\n val = from[prop];\\n\\n if (!isUndefined(val)) {\\n to[prop] = val;\\n }\\n }\\n }\\n\\n return to;\\n }\\n\\n var updateInProgress = false; // Moment prototype object\\n\\n function Moment(config) {\\n copyConfig(this, config);\\n this._d = new Date(config._d != null ? config._d.getTime() : NaN);\\n\\n if (!this.isValid()) {\\n this._d = new Date(NaN);\\n } // Prevent infinite loop in case updateOffset creates new moment\\n // objects.\\n\\n\\n if (updateInProgress === false) {\\n updateInProgress = true;\\n hooks.updateOffset(this);\\n updateInProgress = false;\\n }\\n }\\n\\n function isMoment(obj) {\\n return obj instanceof Moment || obj != null && obj._isAMomentObject != null;\\n }\\n\\n function absFloor(number) {\\n if (number < 0) {\\n // -0 -> 0\\n return Math.ceil(number) || 0;\\n } else {\\n return Math.floor(number);\\n }\\n }\\n\\n function toInt(argumentForCoercion) {\\n var coercedNumber = +argumentForCoercion,\\n value = 0;\\n\\n if (coercedNumber !== 0 && isFinite(coercedNumber)) {\\n value = absFloor(coercedNumber);\\n }\\n\\n return value;\\n } // compare two arrays, return the number of differences\\n\\n\\n function compareArrays(array1, array2, dontConvert) {\\n var len = Math.min(array1.length, array2.length),\\n lengthDiff = Math.abs(array1.length - array2.length),\\n diffs = 0,\\n i;\\n\\n for (i = 0; i < len; i++) {\\n if (dontConvert && array1[i] !== array2[i] || !dontConvert && toInt(array1[i]) !== toInt(array2[i])) {\\n diffs++;\\n }\\n }\\n\\n return diffs + lengthDiff;\\n }\\n\\n function warn(msg) {\\n if (hooks.suppressDeprecationWarnings === false && typeof console !== 'undefined' && console.warn) {\\n console.warn('Deprecation warning: ' + msg);\\n }\\n }\\n\\n function deprecate(msg, fn) {\\n var firstTime = true;\\n return extend(function () {\\n if (hooks.deprecationHandler != null) {\\n hooks.deprecationHandler(null, msg);\\n }\\n\\n if (firstTime) {\\n var args = [];\\n var arg;\\n\\n for (var i = 0; i < arguments.length; i++) {\\n arg = '';\\n\\n if (_typeof(arguments[i]) === 'object') {\\n arg += '\\\\n[' + i + '] ';\\n\\n for (var key in arguments[0]) {\\n arg += key + ': ' + arguments[0][key] + ', ';\\n }\\n\\n arg = arg.slice(0, -2); // Remove trailing comma and space\\n } else {\\n arg = arguments[i];\\n }\\n\\n args.push(arg);\\n }\\n\\n warn(msg + '\\\\nArguments: ' + Array.prototype.slice.call(args).join('') + '\\\\n' + new Error().stack);\\n firstTime = false;\\n }\\n\\n return fn.apply(this, arguments);\\n }, fn);\\n }\\n\\n var deprecations = {};\\n\\n function deprecateSimple(name, msg) {\\n if (hooks.deprecationHandler != null) {\\n hooks.deprecationHandler(name, msg);\\n }\\n\\n if (!deprecations[name]) {\\n warn(msg);\\n deprecations[name] = true;\\n }\\n }\\n\\n hooks.suppressDeprecationWarnings = false;\\n hooks.deprecationHandler = null;\\n\\n function isFunction(input) {\\n return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';\\n }\\n\\n function set(config) {\\n var prop, i;\\n\\n for (i in config) {\\n prop = config[i];\\n\\n if (isFunction(prop)) {\\n this[i] = prop;\\n } else {\\n this['_' + i] = prop;\\n }\\n }\\n\\n this._config = config; // Lenient ordinal parsing accepts just a number in addition to\\n // number + (possibly) stuff coming from _dayOfMonthOrdinalParse.\\n // TODO: Remove \\\"ordinalParse\\\" fallback in next major release.\\n\\n this._dayOfMonthOrdinalParseLenient = new RegExp((this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) + '|' + /\\\\d{1,2}/.source);\\n }\\n\\n function mergeConfigs(parentConfig, childConfig) {\\n var res = extend({}, parentConfig),\\n prop;\\n\\n for (prop in childConfig) {\\n if (hasOwnProp(childConfig, prop)) {\\n if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) {\\n res[prop] = {};\\n extend(res[prop], parentConfig[prop]);\\n extend(res[prop], childConfig[prop]);\\n } else if (childConfig[prop] != null) {\\n res[prop] = childConfig[prop];\\n } else {\\n delete res[prop];\\n }\\n }\\n }\\n\\n for (prop in parentConfig) {\\n if (hasOwnProp(parentConfig, prop) && !hasOwnProp(childConfig, prop) && isObject(parentConfig[prop])) {\\n // make sure changes to properties don't modify parent config\\n res[prop] = extend({}, res[prop]);\\n }\\n }\\n\\n return res;\\n }\\n\\n function Locale(config) {\\n if (config != null) {\\n this.set(config);\\n }\\n }\\n\\n var keys;\\n\\n if (Object.keys) {\\n keys = Object.keys;\\n } else {\\n keys = function keys(obj) {\\n var i,\\n res = [];\\n\\n for (i in obj) {\\n if (hasOwnProp(obj, i)) {\\n res.push(i);\\n }\\n }\\n\\n return res;\\n };\\n }\\n\\n var defaultCalendar = {\\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\\n function calendar(key, mom, now) {\\n var output = this._calendar[key] || this._calendar['sameElse'];\\n return isFunction(output) ? output.call(mom, now) : output;\\n }\\n\\n 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 };\\n\\n function longDateFormat(key) {\\n var format = this._longDateFormat[key],\\n formatUpper = this._longDateFormat[key.toUpperCase()];\\n\\n if (format || !formatUpper) {\\n return format;\\n }\\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\\n var defaultInvalidDate = 'Invalid date';\\n\\n function invalidDate() {\\n return this._invalidDate;\\n }\\n\\n var defaultOrdinal = '%d';\\n var defaultDayOfMonthOrdinalParse = /\\\\d{1,2}/;\\n\\n function ordinal(number) {\\n return this._ordinal.replace('%d', number);\\n }\\n\\n var defaultRelativeTime = {\\n future: 'in %s',\\n past: '%s ago',\\n s: 'a few seconds',\\n ss: '%d 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\\n function relativeTime(number, withoutSuffix, string, isFuture) {\\n var output = this._relativeTime[string];\\n return isFunction(output) ? output(number, withoutSuffix, string, isFuture) : output.replace(/%d/i, number);\\n }\\n\\n function pastFuture(diff, output) {\\n var format = this._relativeTime[diff > 0 ? 'future' : 'past'];\\n return isFunction(format) ? format(output) : format.replace(/%s/i, output);\\n }\\n\\n var aliases = {};\\n\\n function addUnitAlias(unit, shorthand) {\\n var lowerCase = unit.toLowerCase();\\n aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit;\\n }\\n\\n function normalizeUnits(units) {\\n return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined;\\n }\\n\\n function normalizeObjectUnits(inputObject) {\\n var normalizedInput = {},\\n normalizedProp,\\n prop;\\n\\n for (prop in inputObject) {\\n if (hasOwnProp(inputObject, prop)) {\\n normalizedProp = normalizeUnits(prop);\\n\\n if (normalizedProp) {\\n normalizedInput[normalizedProp] = inputObject[prop];\\n }\\n }\\n }\\n\\n return normalizedInput;\\n }\\n\\n var priorities = {};\\n\\n function addUnitPriority(unit, priority) {\\n priorities[unit] = priority;\\n }\\n\\n function getPrioritizedUnits(unitsObj) {\\n var units = [];\\n\\n for (var u in unitsObj) {\\n units.push({\\n unit: u,\\n priority: priorities[u]\\n });\\n }\\n\\n units.sort(function (a, b) {\\n return a.priority - b.priority;\\n });\\n return units;\\n }\\n\\n function zeroFill(number, targetLength, forceSign) {\\n var absNumber = '' + Math.abs(number),\\n zerosToFill = targetLength - absNumber.length,\\n sign = number >= 0;\\n return (sign ? forceSign ? '+' : '' : '-') + Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber;\\n }\\n\\n var formattingTokens = /(\\\\[[^\\\\[]*\\\\])|(\\\\\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g;\\n var localFormattingTokens = /(\\\\[[^\\\\[]*\\\\])|(\\\\\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g;\\n var formatFunctions = {};\\n var formatTokenFunctions = {}; // token: 'M'\\n // padded: ['MM', 2]\\n // ordinal: 'Mo'\\n // callback: function () { this.month() + 1 }\\n\\n function addFormatToken(token, padded, ordinal, callback) {\\n var func = callback;\\n\\n if (typeof callback === 'string') {\\n func = function func() {\\n return this[callback]();\\n };\\n }\\n\\n if (token) {\\n formatTokenFunctions[token] = func;\\n }\\n\\n if (padded) {\\n formatTokenFunctions[padded[0]] = function () {\\n return zeroFill(func.apply(this, arguments), padded[1], padded[2]);\\n };\\n }\\n\\n if (ordinal) {\\n formatTokenFunctions[ordinal] = function () {\\n return this.localeData().ordinal(func.apply(this, arguments), token);\\n };\\n }\\n }\\n\\n function removeFormattingTokens(input) {\\n if (input.match(/\\\\[[\\\\s\\\\S]/)) {\\n return input.replace(/^\\\\[|\\\\]$/g, '');\\n }\\n\\n return input.replace(/\\\\\\\\/g, '');\\n }\\n\\n function makeFormatFunction(format) {\\n var array = format.match(formattingTokens),\\n i,\\n length;\\n\\n for (i = 0, length = array.length; i < length; i++) {\\n if (formatTokenFunctions[array[i]]) {\\n array[i] = formatTokenFunctions[array[i]];\\n } else {\\n array[i] = removeFormattingTokens(array[i]);\\n }\\n }\\n\\n return function (mom) {\\n var output = '',\\n i;\\n\\n for (i = 0; i < length; i++) {\\n output += isFunction(array[i]) ? array[i].call(mom, format) : array[i];\\n }\\n\\n return output;\\n };\\n } // format date using native date object\\n\\n\\n function formatMoment(m, format) {\\n if (!m.isValid()) {\\n return m.localeData().invalidDate();\\n }\\n\\n format = expandFormat(format, m.localeData());\\n formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format);\\n return formatFunctions[format](m);\\n }\\n\\n function expandFormat(format, locale) {\\n var i = 5;\\n\\n function replaceLongDateFormatTokens(input) {\\n return locale.longDateFormat(input) || input;\\n }\\n\\n localFormattingTokens.lastIndex = 0;\\n\\n while (i >= 0 && localFormattingTokens.test(format)) {\\n format = format.replace(localFormattingTokens, replaceLongDateFormatTokens);\\n localFormattingTokens.lastIndex = 0;\\n i -= 1;\\n }\\n\\n return format;\\n }\\n\\n var match1 = /\\\\d/; // 0 - 9\\n\\n var match2 = /\\\\d\\\\d/; // 00 - 99\\n\\n var match3 = /\\\\d{3}/; // 000 - 999\\n\\n var match4 = /\\\\d{4}/; // 0000 - 9999\\n\\n var match6 = /[+-]?\\\\d{6}/; // -999999 - 999999\\n\\n var match1to2 = /\\\\d\\\\d?/; // 0 - 99\\n\\n var match3to4 = /\\\\d\\\\d\\\\d\\\\d?/; // 999 - 9999\\n\\n var match5to6 = /\\\\d\\\\d\\\\d\\\\d\\\\d\\\\d?/; // 99999 - 999999\\n\\n var match1to3 = /\\\\d{1,3}/; // 0 - 999\\n\\n var match1to4 = /\\\\d{1,4}/; // 0 - 9999\\n\\n var match1to6 = /[+-]?\\\\d{1,6}/; // -999999 - 999999\\n\\n var matchUnsigned = /\\\\d+/; // 0 - inf\\n\\n var matchSigned = /[+-]?\\\\d+/; // -inf - inf\\n\\n var matchOffset = /Z|[+-]\\\\d\\\\d:?\\\\d\\\\d/gi; // +00:00 -00:00 +0000 -0000 or Z\\n\\n var matchShortOffset = /Z|[+-]\\\\d\\\\d(?::?\\\\d\\\\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z\\n\\n var matchTimestamp = /[+-]?\\\\d+(\\\\.\\\\d{1,3})?/; // 123456789 123456789.123\\n // any word (or two) characters or numbers including two/three word month in arabic.\\n // includes scottish gaelic two word and hyphenated months\\n\\n var matchWord = /[0-9]{0,256}['a-z\\\\u00A0-\\\\u05FF\\\\u0700-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFF07\\\\uFF10-\\\\uFFEF]{1,256}|[\\\\u0600-\\\\u06FF\\\\/]{1,256}(\\\\s*?[\\\\u0600-\\\\u06FF]{1,256}){1,2}/i;\\n var regexes = {};\\n\\n function addRegexToken(token, regex, strictRegex) {\\n regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) {\\n return isStrict && strictRegex ? strictRegex : regex;\\n };\\n }\\n\\n function getParseRegexForToken(token, config) {\\n if (!hasOwnProp(regexes, token)) {\\n return new RegExp(unescapeFormat(token));\\n }\\n\\n return regexes[token](config._strict, config._locale);\\n } // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript\\n\\n\\n function unescapeFormat(s) {\\n return regexEscape(s.replace('\\\\\\\\', '').replace(/\\\\\\\\(\\\\[)|\\\\\\\\(\\\\])|\\\\[([^\\\\]\\\\[]*)\\\\]|\\\\\\\\(.)/g, function (matched, p1, p2, p3, p4) {\\n return p1 || p2 || p3 || p4;\\n }));\\n }\\n\\n function regexEscape(s) {\\n return s.replace(/[-\\\\/\\\\\\\\^$*+?.()|[\\\\]{}]/g, '\\\\\\\\$&');\\n }\\n\\n var tokens = {};\\n\\n function addParseToken(token, callback) {\\n var i,\\n func = callback;\\n\\n if (typeof token === 'string') {\\n token = [token];\\n }\\n\\n if (isNumber(callback)) {\\n func = function func(input, array) {\\n array[callback] = toInt(input);\\n };\\n }\\n\\n for (i = 0; i < token.length; i++) {\\n tokens[token[i]] = func;\\n }\\n }\\n\\n function addWeekParseToken(token, callback) {\\n addParseToken(token, function (input, array, config, token) {\\n config._w = config._w || {};\\n callback(input, config._w, config, token);\\n });\\n }\\n\\n function addTimeToArrayFromToken(token, input, config) {\\n if (input != null && hasOwnProp(tokens, token)) {\\n tokens[token](input, config._a, config, token);\\n }\\n }\\n\\n var YEAR = 0;\\n var MONTH = 1;\\n var DATE = 2;\\n var HOUR = 3;\\n var MINUTE = 4;\\n var SECOND = 5;\\n var MILLISECOND = 6;\\n var WEEK = 7;\\n var WEEKDAY = 8; // FORMATTING\\n\\n addFormatToken('Y', 0, 0, function () {\\n var y = this.year();\\n return y <= 9999 ? '' + y : '+' + y;\\n });\\n addFormatToken(0, ['YY', 2], 0, function () {\\n return this.year() % 100;\\n });\\n addFormatToken(0, ['YYYY', 4], 0, 'year');\\n addFormatToken(0, ['YYYYY', 5], 0, 'year');\\n addFormatToken(0, ['YYYYYY', 6, true], 0, 'year'); // ALIASES\\n\\n addUnitAlias('year', 'y'); // PRIORITIES\\n\\n addUnitPriority('year', 1); // PARSING\\n\\n addRegexToken('Y', matchSigned);\\n addRegexToken('YY', match1to2, match2);\\n addRegexToken('YYYY', match1to4, match4);\\n addRegexToken('YYYYY', match1to6, match6);\\n addRegexToken('YYYYYY', match1to6, match6);\\n addParseToken(['YYYYY', 'YYYYYY'], YEAR);\\n addParseToken('YYYY', function (input, array) {\\n array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);\\n });\\n addParseToken('YY', function (input, array) {\\n array[YEAR] = hooks.parseTwoDigitYear(input);\\n });\\n addParseToken('Y', function (input, array) {\\n array[YEAR] = parseInt(input, 10);\\n }); // HELPERS\\n\\n function daysInYear(year) {\\n return isLeapYear(year) ? 366 : 365;\\n }\\n\\n function isLeapYear(year) {\\n return year % 4 === 0 && year % 100 !== 0 || year % 400 === 0;\\n } // HOOKS\\n\\n\\n hooks.parseTwoDigitYear = function (input) {\\n return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);\\n }; // MOMENTS\\n\\n\\n var getSetYear = makeGetSet('FullYear', true);\\n\\n function getIsLeapYear() {\\n return isLeapYear(this.year());\\n }\\n\\n function makeGetSet(unit, keepTime) {\\n return function (value) {\\n if (value != null) {\\n set$1(this, unit, value);\\n hooks.updateOffset(this, keepTime);\\n return this;\\n } else {\\n return get(this, unit);\\n }\\n };\\n }\\n\\n function get(mom, unit) {\\n return mom.isValid() ? mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN;\\n }\\n\\n function set$1(mom, unit, value) {\\n if (mom.isValid() && !isNaN(value)) {\\n if (unit === 'FullYear' && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) {\\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value, mom.month(), daysInMonth(value, mom.month()));\\n } else {\\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value);\\n }\\n }\\n } // MOMENTS\\n\\n\\n function stringGet(units) {\\n units = normalizeUnits(units);\\n\\n if (isFunction(this[units])) {\\n return this[units]();\\n }\\n\\n return this;\\n }\\n\\n function stringSet(units, value) {\\n if (_typeof(units) === 'object') {\\n units = normalizeObjectUnits(units);\\n var prioritized = getPrioritizedUnits(units);\\n\\n for (var i = 0; i < prioritized.length; i++) {\\n this[prioritized[i].unit](units[prioritized[i].unit]);\\n }\\n } else {\\n units = normalizeUnits(units);\\n\\n if (isFunction(this[units])) {\\n return this[units](value);\\n }\\n }\\n\\n return this;\\n }\\n\\n function mod(n, x) {\\n return (n % x + x) % x;\\n }\\n\\n var indexOf;\\n\\n if (Array.prototype.indexOf) {\\n indexOf = Array.prototype.indexOf;\\n } else {\\n indexOf = function indexOf(o) {\\n // I know\\n var i;\\n\\n for (i = 0; i < this.length; ++i) {\\n if (this[i] === o) {\\n return i;\\n }\\n }\\n\\n return -1;\\n };\\n }\\n\\n function daysInMonth(year, month) {\\n if (isNaN(year) || isNaN(month)) {\\n return NaN;\\n }\\n\\n var modMonth = mod(month, 12);\\n year += (month - modMonth) / 12;\\n return modMonth === 1 ? isLeapYear(year) ? 29 : 28 : 31 - modMonth % 7 % 2;\\n } // FORMATTING\\n\\n\\n addFormatToken('M', ['MM', 2], 'Mo', function () {\\n return this.month() + 1;\\n });\\n addFormatToken('MMM', 0, 0, function (format) {\\n return this.localeData().monthsShort(this, format);\\n });\\n addFormatToken('MMMM', 0, 0, function (format) {\\n return this.localeData().months(this, format);\\n }); // ALIASES\\n\\n addUnitAlias('month', 'M'); // PRIORITY\\n\\n addUnitPriority('month', 8); // PARSING\\n\\n addRegexToken('M', match1to2);\\n addRegexToken('MM', match1to2, match2);\\n addRegexToken('MMM', function (isStrict, locale) {\\n return locale.monthsShortRegex(isStrict);\\n });\\n addRegexToken('MMMM', function (isStrict, locale) {\\n return locale.monthsRegex(isStrict);\\n });\\n addParseToken(['M', 'MM'], function (input, array) {\\n array[MONTH] = toInt(input) - 1;\\n });\\n addParseToken(['MMM', 'MMMM'], function (input, array, config, token) {\\n var month = config._locale.monthsParse(input, token, config._strict); // if we didn't find a month name, mark the date as invalid.\\n\\n\\n if (month != null) {\\n array[MONTH] = month;\\n } else {\\n getParsingFlags(config).invalidMonth = input;\\n }\\n }); // LOCALES\\n\\n var MONTHS_IN_FORMAT = /D[oD]?(\\\\[[^\\\\[\\\\]]*\\\\]|\\\\s)+MMMM?/;\\n var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_');\\n\\n function localeMonths(m, format) {\\n if (!m) {\\n return isArray(this._months) ? this._months : this._months['standalone'];\\n }\\n\\n return isArray(this._months) ? this._months[m.month()] : this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()];\\n }\\n\\n var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_');\\n\\n function localeMonthsShort(m, format) {\\n if (!m) {\\n return isArray(this._monthsShort) ? this._monthsShort : this._monthsShort['standalone'];\\n }\\n\\n return isArray(this._monthsShort) ? this._monthsShort[m.month()] : this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()];\\n }\\n\\n function handleStrictParse(monthName, format, strict) {\\n var i,\\n ii,\\n mom,\\n llc = monthName.toLocaleLowerCase();\\n\\n if (!this._monthsParse) {\\n // this is not used\\n this._monthsParse = [];\\n this._longMonthsParse = [];\\n this._shortMonthsParse = [];\\n\\n for (i = 0; i < 12; ++i) {\\n mom = createUTC([2000, i]);\\n this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase();\\n this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase();\\n }\\n }\\n\\n if (strict) {\\n if (format === 'MMM') {\\n ii = indexOf.call(this._shortMonthsParse, llc);\\n return ii !== -1 ? ii : null;\\n } else {\\n ii = indexOf.call(this._longMonthsParse, llc);\\n return ii !== -1 ? ii : null;\\n }\\n } else {\\n if (format === 'MMM') {\\n ii = indexOf.call(this._shortMonthsParse, llc);\\n\\n if (ii !== -1) {\\n return ii;\\n }\\n\\n ii = indexOf.call(this._longMonthsParse, llc);\\n return ii !== -1 ? ii : null;\\n } else {\\n ii = indexOf.call(this._longMonthsParse, llc);\\n\\n if (ii !== -1) {\\n return ii;\\n }\\n\\n ii = indexOf.call(this._shortMonthsParse, llc);\\n return ii !== -1 ? ii : null;\\n }\\n }\\n }\\n\\n function localeMonthsParse(monthName, format, strict) {\\n var i, mom, regex;\\n\\n if (this._monthsParseExact) {\\n return handleStrictParse.call(this, monthName, format, strict);\\n }\\n\\n if (!this._monthsParse) {\\n this._monthsParse = [];\\n this._longMonthsParse = [];\\n this._shortMonthsParse = [];\\n } // TODO: add sorting\\n // Sorting makes sure if one month (or abbr) is a prefix of another\\n // see sorting in computeMonthsParse\\n\\n\\n for (i = 0; i < 12; i++) {\\n // make the regex if we don't have it already\\n mom = createUTC([2000, i]);\\n\\n if (strict && !this._longMonthsParse[i]) {\\n this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i');\\n this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i');\\n }\\n\\n if (!strict && !this._monthsParse[i]) {\\n regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, '');\\n this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i');\\n } // test the regex\\n\\n\\n if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) {\\n return i;\\n } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) {\\n return i;\\n } else if (!strict && this._monthsParse[i].test(monthName)) {\\n return i;\\n }\\n }\\n } // MOMENTS\\n\\n\\n function setMonth(mom, value) {\\n var dayOfMonth;\\n\\n if (!mom.isValid()) {\\n // No op\\n return mom;\\n }\\n\\n if (typeof value === 'string') {\\n if (/^\\\\d+$/.test(value)) {\\n value = toInt(value);\\n } else {\\n value = mom.localeData().monthsParse(value); // TODO: Another silent failure?\\n\\n if (!isNumber(value)) {\\n return mom;\\n }\\n }\\n }\\n\\n dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value));\\n\\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth);\\n\\n return mom;\\n }\\n\\n function getSetMonth(value) {\\n if (value != null) {\\n setMonth(this, value);\\n hooks.updateOffset(this, true);\\n return this;\\n } else {\\n return get(this, 'Month');\\n }\\n }\\n\\n function getDaysInMonth() {\\n return daysInMonth(this.year(), this.month());\\n }\\n\\n var defaultMonthsShortRegex = matchWord;\\n\\n function monthsShortRegex(isStrict) {\\n if (this._monthsParseExact) {\\n if (!hasOwnProp(this, '_monthsRegex')) {\\n computeMonthsParse.call(this);\\n }\\n\\n if (isStrict) {\\n return this._monthsShortStrictRegex;\\n } else {\\n return this._monthsShortRegex;\\n }\\n } else {\\n if (!hasOwnProp(this, '_monthsShortRegex')) {\\n this._monthsShortRegex = defaultMonthsShortRegex;\\n }\\n\\n return this._monthsShortStrictRegex && isStrict ? this._monthsShortStrictRegex : this._monthsShortRegex;\\n }\\n }\\n\\n var defaultMonthsRegex = matchWord;\\n\\n function monthsRegex(isStrict) {\\n if (this._monthsParseExact) {\\n if (!hasOwnProp(this, '_monthsRegex')) {\\n computeMonthsParse.call(this);\\n }\\n\\n if (isStrict) {\\n return this._monthsStrictRegex;\\n } else {\\n return this._monthsRegex;\\n }\\n } else {\\n if (!hasOwnProp(this, '_monthsRegex')) {\\n this._monthsRegex = defaultMonthsRegex;\\n }\\n\\n return this._monthsStrictRegex && isStrict ? this._monthsStrictRegex : this._monthsRegex;\\n }\\n }\\n\\n function computeMonthsParse() {\\n function cmpLenRev(a, b) {\\n return b.length - a.length;\\n }\\n\\n var shortPieces = [],\\n longPieces = [],\\n mixedPieces = [],\\n i,\\n mom;\\n\\n for (i = 0; i < 12; i++) {\\n // make the regex if we don't have it already\\n mom = createUTC([2000, i]);\\n shortPieces.push(this.monthsShort(mom, ''));\\n longPieces.push(this.months(mom, ''));\\n mixedPieces.push(this.months(mom, ''));\\n mixedPieces.push(this.monthsShort(mom, ''));\\n } // Sorting makes sure if one month (or abbr) is a prefix of another it\\n // will match the longer piece.\\n\\n\\n shortPieces.sort(cmpLenRev);\\n longPieces.sort(cmpLenRev);\\n mixedPieces.sort(cmpLenRev);\\n\\n for (i = 0; i < 12; i++) {\\n shortPieces[i] = regexEscape(shortPieces[i]);\\n longPieces[i] = regexEscape(longPieces[i]);\\n }\\n\\n for (i = 0; i < 24; i++) {\\n mixedPieces[i] = regexEscape(mixedPieces[i]);\\n }\\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\\n function createDate(y, m, d, h, M, s, ms) {\\n // can't just apply() to create a date:\\n // https://stackoverflow.com/q/181348\\n var date = new Date(y, m, d, h, M, s, ms); // the date constructor remaps years 0-99 to 1900-1999\\n\\n if (y < 100 && y >= 0 && isFinite(date.getFullYear())) {\\n date.setFullYear(y);\\n }\\n\\n return date;\\n }\\n\\n function createUTCDate(y) {\\n var date = new Date(Date.UTC.apply(null, arguments)); // the Date.UTC function remaps years 0-99 to 1900-1999\\n\\n if (y < 100 && y >= 0 && isFinite(date.getUTCFullYear())) {\\n date.setUTCFullYear(y);\\n }\\n\\n return date;\\n } // start-of-first-week - start-of-year\\n\\n\\n function firstWeekOffset(year, dow, doy) {\\n var // first-week day -- which january is always in the first week (4 for iso, 1 for other)\\n fwd = 7 + dow - doy,\\n // first-week day local weekday -- which local weekday is fwd\\n fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7;\\n return -fwdlw + fwd - 1;\\n } // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday\\n\\n\\n function dayOfYearFromWeeks(year, week, weekday, dow, doy) {\\n var localWeekday = (7 + weekday - dow) % 7,\\n weekOffset = firstWeekOffset(year, dow, doy),\\n dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset,\\n resYear,\\n resDayOfYear;\\n\\n if (dayOfYear <= 0) {\\n resYear = year - 1;\\n resDayOfYear = daysInYear(resYear) + dayOfYear;\\n } else if (dayOfYear > daysInYear(year)) {\\n resYear = year + 1;\\n resDayOfYear = dayOfYear - daysInYear(year);\\n } else {\\n resYear = year;\\n resDayOfYear = dayOfYear;\\n }\\n\\n return {\\n year: resYear,\\n dayOfYear: resDayOfYear\\n };\\n }\\n\\n function weekOfYear(mom, dow, doy) {\\n var weekOffset = firstWeekOffset(mom.year(), dow, doy),\\n week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1,\\n resWeek,\\n resYear;\\n\\n if (week < 1) {\\n resYear = mom.year() - 1;\\n resWeek = week + weeksInYear(resYear, dow, doy);\\n } else if (week > weeksInYear(mom.year(), dow, doy)) {\\n resWeek = week - weeksInYear(mom.year(), dow, doy);\\n resYear = mom.year() + 1;\\n } else {\\n resYear = mom.year();\\n resWeek = week;\\n }\\n\\n return {\\n week: resWeek,\\n year: resYear\\n };\\n }\\n\\n function weeksInYear(year, dow, doy) {\\n var weekOffset = firstWeekOffset(year, dow, doy),\\n weekOffsetNext = firstWeekOffset(year + 1, dow, doy);\\n return (daysInYear(year) - weekOffset + weekOffsetNext) / 7;\\n } // FORMATTING\\n\\n\\n addFormatToken('w', ['ww', 2], 'wo', 'week');\\n addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek'); // ALIASES\\n\\n addUnitAlias('week', 'w');\\n addUnitAlias('isoWeek', 'W'); // PRIORITIES\\n\\n addUnitPriority('week', 5);\\n addUnitPriority('isoWeek', 5); // PARSING\\n\\n addRegexToken('w', match1to2);\\n addRegexToken('ww', match1to2, match2);\\n addRegexToken('W', match1to2);\\n addRegexToken('WW', match1to2, match2);\\n addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) {\\n week[token.substr(0, 1)] = toInt(input);\\n }); // HELPERS\\n // LOCALES\\n\\n function localeWeek(mom) {\\n return weekOfYear(mom, this._week.dow, this._week.doy).week;\\n }\\n\\n var defaultLocaleWeek = {\\n dow: 0,\\n // 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\\n function localeFirstDayOfWeek() {\\n return this._week.dow;\\n }\\n\\n function localeFirstDayOfYear() {\\n return this._week.doy;\\n } // MOMENTS\\n\\n\\n function getSetWeek(input) {\\n var week = this.localeData().week(this);\\n return input == null ? week : this.add((input - week) * 7, 'd');\\n }\\n\\n function getSetISOWeek(input) {\\n var week = weekOfYear(this, 1, 4).week;\\n return input == null ? week : this.add((input - week) * 7, 'd');\\n } // FORMATTING\\n\\n\\n addFormatToken('d', 0, 'do', 'day');\\n addFormatToken('dd', 0, 0, function (format) {\\n return this.localeData().weekdaysMin(this, format);\\n });\\n addFormatToken('ddd', 0, 0, function (format) {\\n return this.localeData().weekdaysShort(this, format);\\n });\\n addFormatToken('dddd', 0, 0, function (format) {\\n return this.localeData().weekdays(this, format);\\n });\\n addFormatToken('e', 0, 0, 'weekday');\\n addFormatToken('E', 0, 0, 'isoWeekday'); // ALIASES\\n\\n addUnitAlias('day', 'd');\\n addUnitAlias('weekday', 'e');\\n addUnitAlias('isoWeekday', 'E'); // PRIORITY\\n\\n addUnitPriority('day', 11);\\n addUnitPriority('weekday', 11);\\n addUnitPriority('isoWeekday', 11); // PARSING\\n\\n addRegexToken('d', match1to2);\\n addRegexToken('e', match1to2);\\n addRegexToken('E', match1to2);\\n addRegexToken('dd', function (isStrict, locale) {\\n return locale.weekdaysMinRegex(isStrict);\\n });\\n addRegexToken('ddd', function (isStrict, locale) {\\n return locale.weekdaysShortRegex(isStrict);\\n });\\n addRegexToken('dddd', function (isStrict, locale) {\\n return locale.weekdaysRegex(isStrict);\\n });\\n addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) {\\n var weekday = config._locale.weekdaysParse(input, token, config._strict); // if we didn't get a weekday name, mark the date as invalid\\n\\n\\n if (weekday != null) {\\n week.d = weekday;\\n } else {\\n getParsingFlags(config).invalidWeekday = input;\\n }\\n });\\n addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) {\\n week[token] = toInt(input);\\n }); // HELPERS\\n\\n function parseWeekday(input, locale) {\\n if (typeof input !== 'string') {\\n return input;\\n }\\n\\n if (!isNaN(input)) {\\n return parseInt(input, 10);\\n }\\n\\n input = locale.weekdaysParse(input);\\n\\n if (typeof input === 'number') {\\n return input;\\n }\\n\\n return null;\\n }\\n\\n function parseIsoWeekday(input, locale) {\\n if (typeof input === 'string') {\\n return locale.weekdaysParse(input) % 7 || 7;\\n }\\n\\n return isNaN(input) ? null : input;\\n } // LOCALES\\n\\n\\n var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_');\\n\\n function localeWeekdays(m, format) {\\n if (!m) {\\n return isArray(this._weekdays) ? this._weekdays : this._weekdays['standalone'];\\n }\\n\\n return isArray(this._weekdays) ? this._weekdays[m.day()] : this._weekdays[this._weekdays.isFormat.test(format) ? 'format' : 'standalone'][m.day()];\\n }\\n\\n var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_');\\n\\n function localeWeekdaysShort(m) {\\n return m ? this._weekdaysShort[m.day()] : this._weekdaysShort;\\n }\\n\\n var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_');\\n\\n function localeWeekdaysMin(m) {\\n return m ? this._weekdaysMin[m.day()] : this._weekdaysMin;\\n }\\n\\n function handleStrictParse$1(weekdayName, format, strict) {\\n var i,\\n ii,\\n mom,\\n llc = weekdayName.toLocaleLowerCase();\\n\\n if (!this._weekdaysParse) {\\n this._weekdaysParse = [];\\n this._shortWeekdaysParse = [];\\n this._minWeekdaysParse = [];\\n\\n for (i = 0; i < 7; ++i) {\\n mom = createUTC([2000, 1]).day(i);\\n this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase();\\n this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase();\\n this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase();\\n }\\n }\\n\\n if (strict) {\\n if (format === 'dddd') {\\n ii = indexOf.call(this._weekdaysParse, llc);\\n return ii !== -1 ? ii : null;\\n } else if (format === 'ddd') {\\n ii = indexOf.call(this._shortWeekdaysParse, llc);\\n return ii !== -1 ? ii : null;\\n } else {\\n ii = indexOf.call(this._minWeekdaysParse, llc);\\n return ii !== -1 ? ii : null;\\n }\\n } else {\\n if (format === 'dddd') {\\n ii = indexOf.call(this._weekdaysParse, llc);\\n\\n if (ii !== -1) {\\n return ii;\\n }\\n\\n ii = indexOf.call(this._shortWeekdaysParse, llc);\\n\\n if (ii !== -1) {\\n return ii;\\n }\\n\\n ii = indexOf.call(this._minWeekdaysParse, llc);\\n return ii !== -1 ? ii : null;\\n } else if (format === 'ddd') {\\n ii = indexOf.call(this._shortWeekdaysParse, llc);\\n\\n if (ii !== -1) {\\n return ii;\\n }\\n\\n ii = indexOf.call(this._weekdaysParse, llc);\\n\\n if (ii !== -1) {\\n return ii;\\n }\\n\\n ii = indexOf.call(this._minWeekdaysParse, llc);\\n return ii !== -1 ? ii : null;\\n } else {\\n ii = indexOf.call(this._minWeekdaysParse, llc);\\n\\n if (ii !== -1) {\\n return ii;\\n }\\n\\n ii = indexOf.call(this._weekdaysParse, llc);\\n\\n if (ii !== -1) {\\n return ii;\\n }\\n\\n ii = indexOf.call(this._shortWeekdaysParse, llc);\\n return ii !== -1 ? ii : null;\\n }\\n }\\n }\\n\\n function localeWeekdaysParse(weekdayName, format, strict) {\\n var i, mom, regex;\\n\\n if (this._weekdaysParseExact) {\\n return handleStrictParse$1.call(this, weekdayName, format, strict);\\n }\\n\\n if (!this._weekdaysParse) {\\n this._weekdaysParse = [];\\n this._minWeekdaysParse = [];\\n this._shortWeekdaysParse = [];\\n this._fullWeekdaysParse = [];\\n }\\n\\n for (i = 0; i < 7; i++) {\\n // make the regex if we don't have it already\\n mom = createUTC([2000, 1]).day(i);\\n\\n if (strict && !this._fullWeekdaysParse[i]) {\\n this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\\\\.?') + '$', 'i');\\n this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\\\\.?') + '$', 'i');\\n this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\\\\.?') + '$', 'i');\\n }\\n\\n if (!this._weekdaysParse[i]) {\\n regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, '');\\n this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i');\\n } // test the regex\\n\\n\\n if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) {\\n return i;\\n } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) {\\n return i;\\n } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) {\\n return i;\\n } else if (!strict && this._weekdaysParse[i].test(weekdayName)) {\\n return i;\\n }\\n }\\n } // MOMENTS\\n\\n\\n function getSetDayOfWeek(input) {\\n if (!this.isValid()) {\\n return input != null ? this : NaN;\\n }\\n\\n var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay();\\n\\n if (input != null) {\\n input = parseWeekday(input, this.localeData());\\n return this.add(input - day, 'd');\\n } else {\\n return day;\\n }\\n }\\n\\n function getSetLocaleDayOfWeek(input) {\\n if (!this.isValid()) {\\n return input != null ? this : NaN;\\n }\\n\\n var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7;\\n return input == null ? weekday : this.add(input - weekday, 'd');\\n }\\n\\n function getSetISODayOfWeek(input) {\\n if (!this.isValid()) {\\n return input != null ? this : NaN;\\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\\n\\n if (input != null) {\\n var weekday = parseIsoWeekday(input, this.localeData());\\n return this.day(this.day() % 7 ? weekday : weekday - 7);\\n } else {\\n return this.day() || 7;\\n }\\n }\\n\\n var defaultWeekdaysRegex = matchWord;\\n\\n function weekdaysRegex(isStrict) {\\n if (this._weekdaysParseExact) {\\n if (!hasOwnProp(this, '_weekdaysRegex')) {\\n computeWeekdaysParse.call(this);\\n }\\n\\n if (isStrict) {\\n return this._weekdaysStrictRegex;\\n } else {\\n return this._weekdaysRegex;\\n }\\n } else {\\n if (!hasOwnProp(this, '_weekdaysRegex')) {\\n this._weekdaysRegex = defaultWeekdaysRegex;\\n }\\n\\n return this._weekdaysStrictRegex && isStrict ? this._weekdaysStrictRegex : this._weekdaysRegex;\\n }\\n }\\n\\n var defaultWeekdaysShortRegex = matchWord;\\n\\n function weekdaysShortRegex(isStrict) {\\n if (this._weekdaysParseExact) {\\n if (!hasOwnProp(this, '_weekdaysRegex')) {\\n computeWeekdaysParse.call(this);\\n }\\n\\n if (isStrict) {\\n return this._weekdaysShortStrictRegex;\\n } else {\\n return this._weekdaysShortRegex;\\n }\\n } else {\\n if (!hasOwnProp(this, '_weekdaysShortRegex')) {\\n this._weekdaysShortRegex = defaultWeekdaysShortRegex;\\n }\\n\\n return this._weekdaysShortStrictRegex && isStrict ? this._weekdaysShortStrictRegex : this._weekdaysShortRegex;\\n }\\n }\\n\\n var defaultWeekdaysMinRegex = matchWord;\\n\\n function weekdaysMinRegex(isStrict) {\\n if (this._weekdaysParseExact) {\\n if (!hasOwnProp(this, '_weekdaysRegex')) {\\n computeWeekdaysParse.call(this);\\n }\\n\\n if (isStrict) {\\n return this._weekdaysMinStrictRegex;\\n } else {\\n return this._weekdaysMinRegex;\\n }\\n } else {\\n if (!hasOwnProp(this, '_weekdaysMinRegex')) {\\n this._weekdaysMinRegex = defaultWeekdaysMinRegex;\\n }\\n\\n return this._weekdaysMinStrictRegex && isStrict ? this._weekdaysMinStrictRegex : this._weekdaysMinRegex;\\n }\\n }\\n\\n function computeWeekdaysParse() {\\n function cmpLenRev(a, b) {\\n return b.length - a.length;\\n }\\n\\n var minPieces = [],\\n shortPieces = [],\\n longPieces = [],\\n mixedPieces = [],\\n i,\\n mom,\\n minp,\\n shortp,\\n longp;\\n\\n for (i = 0; i < 7; i++) {\\n // make the regex if we don't have it already\\n mom = createUTC([2000, 1]).day(i);\\n minp = this.weekdaysMin(mom, '');\\n shortp = this.weekdaysShort(mom, '');\\n longp = this.weekdays(mom, '');\\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 } // Sorting makes sure if one weekday (or abbr) is a prefix of another it\\n // will match the longer piece.\\n\\n\\n minPieces.sort(cmpLenRev);\\n shortPieces.sort(cmpLenRev);\\n longPieces.sort(cmpLenRev);\\n mixedPieces.sort(cmpLenRev);\\n\\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\\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 } // FORMATTING\\n\\n\\n function hFormat() {\\n return this.hours() % 12 || 12;\\n }\\n\\n function kFormat() {\\n return this.hours() || 24;\\n }\\n\\n addFormatToken('H', ['HH', 2], 0, 'hour');\\n addFormatToken('h', ['hh', 2], 0, hFormat);\\n addFormatToken('k', ['kk', 2], 0, kFormat);\\n addFormatToken('hmm', 0, 0, function () {\\n return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2);\\n });\\n addFormatToken('hmmss', 0, 0, function () {\\n return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2);\\n });\\n addFormatToken('Hmm', 0, 0, function () {\\n return '' + this.hours() + zeroFill(this.minutes(), 2);\\n });\\n addFormatToken('Hmmss', 0, 0, function () {\\n return '' + this.hours() + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2);\\n });\\n\\n function meridiem(token, lowercase) {\\n addFormatToken(token, 0, 0, function () {\\n return this.localeData().meridiem(this.hours(), this.minutes(), lowercase);\\n });\\n }\\n\\n meridiem('a', true);\\n meridiem('A', false); // ALIASES\\n\\n addUnitAlias('hour', 'h'); // PRIORITY\\n\\n addUnitPriority('hour', 13); // PARSING\\n\\n function matchMeridiem(isStrict, locale) {\\n return locale._meridiemParse;\\n }\\n\\n addRegexToken('a', matchMeridiem);\\n addRegexToken('A', matchMeridiem);\\n addRegexToken('H', match1to2);\\n addRegexToken('h', match1to2);\\n addRegexToken('k', match1to2);\\n addRegexToken('HH', match1to2, match2);\\n addRegexToken('hh', match1to2, match2);\\n addRegexToken('kk', match1to2, match2);\\n addRegexToken('hmm', match3to4);\\n addRegexToken('hmmss', match5to6);\\n addRegexToken('Hmm', match3to4);\\n addRegexToken('Hmmss', match5to6);\\n addParseToken(['H', 'HH'], HOUR);\\n addParseToken(['k', 'kk'], function (input, array, config) {\\n var kInput = toInt(input);\\n array[HOUR] = kInput === 24 ? 0 : kInput;\\n });\\n addParseToken(['a', 'A'], function (input, array, config) {\\n config._isPm = config._locale.isPM(input);\\n config._meridiem = input;\\n });\\n addParseToken(['h', 'hh'], function (input, array, config) {\\n array[HOUR] = toInt(input);\\n getParsingFlags(config).bigHour = true;\\n });\\n addParseToken('hmm', function (input, array, config) {\\n var pos = input.length - 2;\\n array[HOUR] = toInt(input.substr(0, pos));\\n array[MINUTE] = toInt(input.substr(pos));\\n getParsingFlags(config).bigHour = true;\\n });\\n addParseToken('hmmss', function (input, array, config) {\\n var pos1 = input.length - 4;\\n var pos2 = input.length - 2;\\n array[HOUR] = toInt(input.substr(0, pos1));\\n array[MINUTE] = toInt(input.substr(pos1, 2));\\n array[SECOND] = toInt(input.substr(pos2));\\n getParsingFlags(config).bigHour = true;\\n });\\n addParseToken('Hmm', function (input, array, config) {\\n var pos = input.length - 2;\\n array[HOUR] = toInt(input.substr(0, pos));\\n array[MINUTE] = toInt(input.substr(pos));\\n });\\n addParseToken('Hmmss', function (input, array, config) {\\n var pos1 = input.length - 4;\\n var pos2 = input.length - 2;\\n array[HOUR] = toInt(input.substr(0, pos1));\\n array[MINUTE] = toInt(input.substr(pos1, 2));\\n array[SECOND] = toInt(input.substr(pos2));\\n }); // LOCALES\\n\\n function localeIsPM(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\\n var defaultLocaleMeridiemParse = /[ap]\\\\.?m?\\\\.?/i;\\n\\n function localeMeridiem(hours, minutes, isLower) {\\n if (hours > 11) {\\n return isLower ? 'pm' : 'PM';\\n } else {\\n return isLower ? 'am' : 'AM';\\n }\\n } // MOMENTS\\n // Setting the hour should keep the time, because the user explicitly\\n // specified which hour he wants. So trying to maintain the same hour (in\\n // a new timezone) makes sense. Adding/subtracting hours does not follow\\n // this rule.\\n\\n\\n var getSetHour = makeGetSet('Hours', true);\\n var baseConfig = {\\n calendar: defaultCalendar,\\n longDateFormat: defaultLongDateFormat,\\n invalidDate: defaultInvalidDate,\\n ordinal: defaultOrdinal,\\n dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse,\\n relativeTime: defaultRelativeTime,\\n months: defaultLocaleMonths,\\n monthsShort: defaultLocaleMonthsShort,\\n week: defaultLocaleWeek,\\n weekdays: defaultLocaleWeekdays,\\n weekdaysMin: defaultLocaleWeekdaysMin,\\n weekdaysShort: defaultLocaleWeekdaysShort,\\n meridiemParse: defaultLocaleMeridiemParse\\n }; // internal storage for locale config files\\n\\n var locales = {};\\n var localeFamilies = {};\\n var globalLocale;\\n\\n function normalizeLocale(key) {\\n return key ? key.toLowerCase().replace('_', '-') : key;\\n } // pick the locale from the array\\n // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each\\n // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root\\n\\n\\n function chooseLocale(names) {\\n var i = 0,\\n j,\\n next,\\n locale,\\n split;\\n\\n while (i < names.length) {\\n split = normalizeLocale(names[i]).split('-');\\n j = split.length;\\n next = normalizeLocale(names[i + 1]);\\n next = next ? next.split('-') : null;\\n\\n while (j > 0) {\\n locale = loadLocale(split.slice(0, j).join('-'));\\n\\n if (locale) {\\n return locale;\\n }\\n\\n if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) {\\n //the next array item is better than a shallower substring of this one\\n break;\\n }\\n\\n j--;\\n }\\n\\n i++;\\n }\\n\\n return globalLocale;\\n }\\n\\n function loadLocale(name) {\\n var oldLocale = null; // TODO: Find a better way to register and load all the locales in Node\\n\\n if (!locales[name] && typeof module !== 'undefined' && module && module.exports) {\\n try {\\n oldLocale = globalLocale._abbr;\\n var aliasedRequire = require;\\n __webpack_require__(\\\"./bower_components/moment/locale sync recursive ^\\\\\\\\.\\\\\\\\/.*$\\\")(\\\"./\\\" + name);\\n getSetGlobalLocale(oldLocale);\\n } catch (e) {}\\n }\\n\\n return locales[name];\\n } // This function will load locale and then set the global locale. If\\n // no arguments are passed in, it will simply return the current global\\n // locale key.\\n\\n\\n function getSetGlobalLocale(key, values) {\\n var data;\\n\\n if (key) {\\n if (isUndefined(values)) {\\n data = getLocale(key);\\n } else {\\n data = defineLocale(key, values);\\n }\\n\\n if (data) {\\n // moment.duration._locale = moment._locale = data;\\n globalLocale = data;\\n } else {\\n if (typeof console !== 'undefined' && console.warn) {\\n //warn user if arguments are passed but the locale could not be set\\n console.warn('Locale ' + key + ' not found. Did you forget to load it?');\\n }\\n }\\n }\\n\\n return globalLocale._abbr;\\n }\\n\\n function defineLocale(name, config) {\\n if (config !== null) {\\n var locale,\\n parentConfig = baseConfig;\\n config.abbr = name;\\n\\n if (locales[name] != null) {\\n deprecateSimple('defineLocaleOverride', 'use moment.updateLocale(localeName, config) to change ' + 'an existing locale. moment.defineLocale(localeName, ' + 'config) should only be used for creating a new locale ' + 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.');\\n parentConfig = locales[name]._config;\\n } else if (config.parentLocale != null) {\\n if (locales[config.parentLocale] != null) {\\n parentConfig = locales[config.parentLocale]._config;\\n } else {\\n locale = loadLocale(config.parentLocale);\\n\\n if (locale != null) {\\n parentConfig = locale._config;\\n } else {\\n if (!localeFamilies[config.parentLocale]) {\\n localeFamilies[config.parentLocale] = [];\\n }\\n\\n localeFamilies[config.parentLocale].push({\\n name: name,\\n config: config\\n });\\n return null;\\n }\\n }\\n }\\n\\n locales[name] = new Locale(mergeConfigs(parentConfig, config));\\n\\n if (localeFamilies[name]) {\\n localeFamilies[name].forEach(function (x) {\\n defineLocale(x.name, x.config);\\n });\\n } // backwards compat for now: also set the locale\\n // make sure we set the locale AFTER all child locales have been\\n // created, so we won't end up with the child locale set.\\n\\n\\n getSetGlobalLocale(name);\\n return locales[name];\\n } else {\\n // useful for testing\\n delete locales[name];\\n return null;\\n }\\n }\\n\\n function updateLocale(name, config) {\\n if (config != null) {\\n var locale,\\n tmpLocale,\\n parentConfig = baseConfig; // MERGE\\n\\n tmpLocale = loadLocale(name);\\n\\n if (tmpLocale != null) {\\n parentConfig = tmpLocale._config;\\n }\\n\\n config = mergeConfigs(parentConfig, config);\\n locale = new Locale(config);\\n locale.parentLocale = locales[name];\\n locales[name] = locale; // backwards compat for now: also set the locale\\n\\n getSetGlobalLocale(name);\\n } else {\\n // pass null for config to unupdate, useful for tests\\n if (locales[name] != null) {\\n if (locales[name].parentLocale != null) {\\n locales[name] = locales[name].parentLocale;\\n } else if (locales[name] != null) {\\n delete locales[name];\\n }\\n }\\n }\\n\\n return locales[name];\\n } // returns locale data\\n\\n\\n function getLocale(key) {\\n var locale;\\n\\n if (key && key._locale && key._locale._abbr) {\\n key = key._locale._abbr;\\n }\\n\\n if (!key) {\\n return globalLocale;\\n }\\n\\n if (!isArray(key)) {\\n //short-circuit everything else\\n locale = loadLocale(key);\\n\\n if (locale) {\\n return locale;\\n }\\n\\n key = [key];\\n }\\n\\n return chooseLocale(key);\\n }\\n\\n function listLocales() {\\n return keys(locales);\\n }\\n\\n function checkOverflow(m) {\\n var overflow;\\n var a = m._a;\\n\\n if (a && getParsingFlags(m).overflow === -2) {\\n overflow = a[MONTH] < 0 || a[MONTH] > 11 ? MONTH : a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE : a[HOUR] < 0 || a[HOUR] > 24 || a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0) ? HOUR : a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE : a[SECOND] < 0 || a[SECOND] > 59 ? SECOND : a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND : -1;\\n\\n if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) {\\n overflow = DATE;\\n }\\n\\n if (getParsingFlags(m)._overflowWeeks && overflow === -1) {\\n overflow = WEEK;\\n }\\n\\n if (getParsingFlags(m)._overflowWeekday && overflow === -1) {\\n overflow = WEEKDAY;\\n }\\n\\n getParsingFlags(m).overflow = overflow;\\n }\\n\\n return m;\\n } // Pick the first defined of two or three arguments.\\n\\n\\n function defaults(a, b, c) {\\n if (a != null) {\\n return a;\\n }\\n\\n if (b != null) {\\n return b;\\n }\\n\\n return c;\\n }\\n\\n function currentDateArray(config) {\\n // hooks is actually the exported moment object\\n var nowValue = new Date(hooks.now());\\n\\n if (config._useUTC) {\\n return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()];\\n }\\n\\n return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()];\\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]\\n\\n\\n function configFromArray(config) {\\n var i,\\n date,\\n input = [],\\n currentDate,\\n expectedWeekday,\\n yearToUse;\\n\\n if (config._d) {\\n return;\\n }\\n\\n currentDate = currentDateArray(config); //compute day of the year from weeks and weekdays\\n\\n if (config._w && config._a[DATE] == null && config._a[MONTH] == null) {\\n dayOfYearFromWeekInfo(config);\\n } //if the day of the year is set, figure out what it is\\n\\n\\n if (config._dayOfYear != null) {\\n yearToUse = defaults(config._a[YEAR], currentDate[YEAR]);\\n\\n if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) {\\n getParsingFlags(config)._overflowDayOfYear = true;\\n }\\n\\n date = createUTCDate(yearToUse, 0, config._dayOfYear);\\n config._a[MONTH] = date.getUTCMonth();\\n config._a[DATE] = date.getUTCDate();\\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\\n\\n for (i = 0; i < 3 && config._a[i] == null; ++i) {\\n config._a[i] = input[i] = currentDate[i];\\n } // Zero out whatever was not defaulted, including time\\n\\n\\n for (; i < 7; i++) {\\n config._a[i] = input[i] = config._a[i] == null ? i === 2 ? 1 : 0 : config._a[i];\\n } // Check for 24:00:00.000\\n\\n\\n if (config._a[HOUR] === 24 && config._a[MINUTE] === 0 && config._a[SECOND] === 0 && config._a[MILLISECOND] === 0) {\\n config._nextDay = true;\\n config._a[HOUR] = 0;\\n }\\n\\n config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);\\n expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay(); // Apply timezone offset from input. The actual utcOffset can be changed\\n // with parseZone.\\n\\n if (config._tzm != null) {\\n config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);\\n }\\n\\n if (config._nextDay) {\\n config._a[HOUR] = 24;\\n } // check for mismatching day of week\\n\\n\\n if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) {\\n getParsingFlags(config).weekdayMismatch = true;\\n }\\n }\\n\\n function dayOfYearFromWeekInfo(config) {\\n var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow;\\n w = config._w;\\n\\n if (w.GG != null || w.W != null || w.E != null) {\\n dow = 1;\\n doy = 4; // 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\\n weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(createLocal(), 1, 4).year);\\n week = defaults(w.W, 1);\\n weekday = defaults(w.E, 1);\\n\\n if (weekday < 1 || weekday > 7) {\\n weekdayOverflow = true;\\n }\\n } else {\\n dow = config._locale._week.dow;\\n doy = config._locale._week.doy;\\n var curWeek = weekOfYear(createLocal(), dow, doy);\\n weekYear = defaults(w.gg, config._a[YEAR], curWeek.year); // Default to current week.\\n\\n week = defaults(w.w, curWeek.week);\\n\\n if (w.d != null) {\\n // weekday -- low day numbers are considered next week\\n weekday = w.d;\\n\\n if (weekday < 0 || weekday > 6) {\\n weekdayOverflow = true;\\n }\\n } else if (w.e != null) {\\n // local weekday -- counting starts from begining of week\\n weekday = w.e + dow;\\n\\n if (w.e < 0 || w.e > 6) {\\n weekdayOverflow = true;\\n }\\n } else {\\n // default to begining of week\\n weekday = dow;\\n }\\n }\\n\\n if (week < 1 || week > weeksInYear(weekYear, dow, doy)) {\\n getParsingFlags(config)._overflowWeeks = true;\\n } else if (weekdayOverflow != null) {\\n getParsingFlags(config)._overflowWeekday = true;\\n } else {\\n temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy);\\n config._a[YEAR] = temp.year;\\n config._dayOfYear = temp.dayOfYear;\\n }\\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\\n\\n var 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 var 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)?)?$/;\\n var tzRegex = /Z|[+-]\\\\d\\\\d(?::?\\\\d\\\\d)?/;\\n var isoDates = [['YYYYYY-MM-DD', /[+-]\\\\d{6}-\\\\d\\\\d-\\\\d\\\\d/], ['YYYY-MM-DD', /\\\\d{4}-\\\\d\\\\d-\\\\d\\\\d/], ['GGGG-[W]WW-E', /\\\\d{4}-W\\\\d\\\\d-\\\\d/], ['GGGG-[W]WW', /\\\\d{4}-W\\\\d\\\\d/, false], ['YYYY-DDD', /\\\\d{4}-\\\\d{3}/], ['YYYY-MM', /\\\\d{4}-\\\\d\\\\d/, false], ['YYYYYYMMDD', /[+-]\\\\d{10}/], ['YYYYMMDD', /\\\\d{8}/], // YYYYMM is NOT allowed by the standard\\n ['GGGG[W]WWE', /\\\\d{4}W\\\\d{3}/], ['GGGG[W]WW', /\\\\d{4}W\\\\d{2}/, false], ['YYYYDDD', /\\\\d{7}/]]; // iso time formats and regexes\\n\\n var isoTimes = [['HH:mm:ss.SSSS', /\\\\d\\\\d:\\\\d\\\\d:\\\\d\\\\d\\\\.\\\\d+/], ['HH:mm:ss,SSSS', /\\\\d\\\\d:\\\\d\\\\d:\\\\d\\\\d,\\\\d+/], ['HH:mm:ss', /\\\\d\\\\d:\\\\d\\\\d:\\\\d\\\\d/], ['HH:mm', /\\\\d\\\\d:\\\\d\\\\d/], ['HHmmss.SSSS', /\\\\d\\\\d\\\\d\\\\d\\\\d\\\\d\\\\.\\\\d+/], ['HHmmss,SSSS', /\\\\d\\\\d\\\\d\\\\d\\\\d\\\\d,\\\\d+/], ['HHmmss', /\\\\d\\\\d\\\\d\\\\d\\\\d\\\\d/], ['HHmm', /\\\\d\\\\d\\\\d\\\\d/], ['HH', /\\\\d\\\\d/]];\\n var aspNetJsonRegex = /^\\\\/?Date\\\\((\\\\-?\\\\d+)/i; // date from iso format\\n\\n function configFromISO(config) {\\n var i,\\n l,\\n string = config._i,\\n match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string),\\n allowTime,\\n dateFormat,\\n timeFormat,\\n tzFormat;\\n\\n if (match) {\\n getParsingFlags(config).iso = true;\\n\\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\\n if (dateFormat == null) {\\n config._isValid = false;\\n return;\\n }\\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\\n if (timeFormat == null) {\\n config._isValid = false;\\n return;\\n }\\n }\\n\\n if (!allowTime && timeFormat != null) {\\n config._isValid = false;\\n return;\\n }\\n\\n if (match[4]) {\\n if (tzRegex.exec(match[4])) {\\n tzFormat = 'Z';\\n } else {\\n config._isValid = false;\\n return;\\n }\\n }\\n\\n config._f = dateFormat + (timeFormat || '') + (tzFormat || '');\\n configFromStringAndFormat(config);\\n } else {\\n config._isValid = false;\\n }\\n } // RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3\\n\\n\\n var 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\\n function extractFromRFC2822Strings(yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) {\\n var result = [untruncateYear(yearStr), defaultLocaleMonthsShort.indexOf(monthStr), parseInt(dayStr, 10), parseInt(hourStr, 10), parseInt(minuteStr, 10)];\\n\\n if (secondStr) {\\n result.push(parseInt(secondStr, 10));\\n }\\n\\n return result;\\n }\\n\\n function untruncateYear(yearStr) {\\n var year = parseInt(yearStr, 10);\\n\\n if (year <= 49) {\\n return 2000 + year;\\n } else if (year <= 999) {\\n return 1900 + year;\\n }\\n\\n return year;\\n }\\n\\n function preprocessRFC2822(s) {\\n // Remove comments and folding whitespace and replace multiple-spaces with a single space\\n return s.replace(/\\\\([^)]*\\\\)|[\\\\n\\\\t]/g, ' ').replace(/(\\\\s\\\\s+)/g, ' ').trim();\\n }\\n\\n function 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 weekdayActual = new Date(parsedInput[0], parsedInput[1], parsedInput[2]).getDay();\\n\\n if (weekdayProvided !== weekdayActual) {\\n getParsingFlags(config).weekdayMismatch = true;\\n config._isValid = false;\\n return false;\\n }\\n }\\n\\n return true;\\n }\\n\\n var 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\\n function calculateOffset(obsOffset, militaryOffset, numOffset) {\\n if (obsOffset) {\\n return obsOffsets[obsOffset];\\n } else if (militaryOffset) {\\n // the only allowed military tz is Z\\n return 0;\\n } else {\\n var hm = parseInt(numOffset, 10);\\n var m = hm % 100,\\n h = (hm - m) / 100;\\n return h * 60 + m;\\n }\\n } // date and time from ref 2822 format\\n\\n\\n function configFromRFC2822(config) {\\n var match = rfc2822.exec(preprocessRFC2822(config._i));\\n\\n if (match) {\\n var parsedArray = extractFromRFC2822Strings(match[4], match[3], match[2], match[5], match[6], match[7]);\\n\\n if (!checkWeekday(match[1], parsedArray, config)) {\\n return;\\n }\\n\\n config._a = parsedArray;\\n config._tzm = calculateOffset(match[8], match[9], match[10]);\\n config._d = createUTCDate.apply(null, config._a);\\n\\n config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);\\n\\n getParsingFlags(config).rfc2822 = true;\\n } else {\\n config._isValid = false;\\n }\\n } // date from iso format or fallback\\n\\n\\n function configFromString(config) {\\n var matched = aspNetJsonRegex.exec(config._i);\\n\\n if (matched !== null) {\\n config._d = new Date(+matched[1]);\\n return;\\n }\\n\\n configFromISO(config);\\n\\n if (config._isValid === false) {\\n delete config._isValid;\\n } else {\\n return;\\n }\\n\\n configFromRFC2822(config);\\n\\n if (config._isValid === false) {\\n delete config._isValid;\\n } else {\\n return;\\n } // Final attempt, use Input Fallback\\n\\n\\n hooks.createFromInputFallback(config);\\n }\\n\\n hooks.createFromInputFallback = deprecate('value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' + 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' + 'discouraged and will be removed in an upcoming major release. Please refer to ' + 'http://momentjs.com/guides/#/warnings/js-date/ for more info.', function (config) {\\n config._d = new Date(config._i + (config._useUTC ? ' UTC' : ''));\\n }); // constant that refers to the ISO standard\\n\\n hooks.ISO_8601 = function () {}; // constant that refers to the RFC 2822 form\\n\\n\\n hooks.RFC_2822 = function () {}; // date from string and format string\\n\\n\\n function configFromStringAndFormat(config) {\\n // TODO: Move this to another part of the creation flow to prevent circular deps\\n if (config._f === hooks.ISO_8601) {\\n configFromISO(config);\\n return;\\n }\\n\\n if (config._f === hooks.RFC_2822) {\\n configFromRFC2822(config);\\n return;\\n }\\n\\n config._a = [];\\n getParsingFlags(config).empty = true; // This array is used to make a Date, either with `new Date` or `Date.UTC`\\n\\n var string = '' + config._i,\\n i,\\n parsedInput,\\n tokens,\\n token,\\n skipped,\\n stringLength = string.length,\\n totalParsedInputLength = 0;\\n tokens = expandFormat(config._f, config._locale).match(formattingTokens) || [];\\n\\n for (i = 0; i < tokens.length; i++) {\\n token = tokens[i];\\n parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; // console.log('token', token, 'parsedInput', parsedInput,\\n // 'regex', getParseRegexForToken(token, config));\\n\\n if (parsedInput) {\\n skipped = string.substr(0, string.indexOf(parsedInput));\\n\\n if (skipped.length > 0) {\\n getParsingFlags(config).unusedInput.push(skipped);\\n }\\n\\n string = string.slice(string.indexOf(parsedInput) + parsedInput.length);\\n totalParsedInputLength += parsedInput.length;\\n } // don't parse if it's not a known token\\n\\n\\n if (formatTokenFunctions[token]) {\\n if (parsedInput) {\\n getParsingFlags(config).empty = false;\\n } else {\\n getParsingFlags(config).unusedTokens.push(token);\\n }\\n\\n addTimeToArrayFromToken(token, parsedInput, config);\\n } else if (config._strict && !parsedInput) {\\n getParsingFlags(config).unusedTokens.push(token);\\n }\\n } // add remaining unparsed input length to the string\\n\\n\\n getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength;\\n\\n if (string.length > 0) {\\n getParsingFlags(config).unusedInput.push(string);\\n } // clear _12h flag if hour is <= 12\\n\\n\\n if (config._a[HOUR] <= 12 && getParsingFlags(config).bigHour === true && config._a[HOUR] > 0) {\\n getParsingFlags(config).bigHour = undefined;\\n }\\n\\n getParsingFlags(config).parsedDateParts = config._a.slice(0);\\n getParsingFlags(config).meridiem = config._meridiem; // handle meridiem\\n\\n config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem);\\n configFromArray(config);\\n checkOverflow(config);\\n }\\n\\n function meridiemFixWrap(locale, hour, meridiem) {\\n var isPm;\\n\\n if (meridiem == null) {\\n // nothing to do\\n return hour;\\n }\\n\\n if (locale.meridiemHour != null) {\\n return locale.meridiemHour(hour, meridiem);\\n } else if (locale.isPM != null) {\\n // Fallback\\n isPm = locale.isPM(meridiem);\\n\\n if (isPm && hour < 12) {\\n hour += 12;\\n }\\n\\n if (!isPm && hour === 12) {\\n hour = 0;\\n }\\n\\n return hour;\\n } else {\\n // this is not supposed to happen\\n return hour;\\n }\\n } // date from string and array of format strings\\n\\n\\n function configFromStringAndArray(config) {\\n var tempConfig, bestMoment, scoreToBeat, i, currentScore;\\n\\n if (config._f.length === 0) {\\n getParsingFlags(config).invalidFormat = true;\\n config._d = new Date(NaN);\\n return;\\n }\\n\\n for (i = 0; i < config._f.length; i++) {\\n currentScore = 0;\\n tempConfig = copyConfig({}, config);\\n\\n if (config._useUTC != null) {\\n tempConfig._useUTC = config._useUTC;\\n }\\n\\n tempConfig._f = config._f[i];\\n configFromStringAndFormat(tempConfig);\\n\\n if (!isValid(tempConfig)) {\\n continue;\\n } // if there is any input that was not parsed add a penalty for that format\\n\\n\\n currentScore += getParsingFlags(tempConfig).charsLeftOver; //or tokens\\n\\n currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10;\\n getParsingFlags(tempConfig).score = currentScore;\\n\\n if (scoreToBeat == null || currentScore < scoreToBeat) {\\n scoreToBeat = currentScore;\\n bestMoment = tempConfig;\\n }\\n }\\n\\n extend(config, bestMoment || tempConfig);\\n }\\n\\n function configFromObject(config) {\\n if (config._d) {\\n return;\\n }\\n\\n var i = normalizeObjectUnits(config._i);\\n config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) {\\n return obj && parseInt(obj, 10);\\n });\\n configFromArray(config);\\n }\\n\\n function createFromConfig(config) {\\n var res = new Moment(checkOverflow(prepareConfig(config)));\\n\\n if (res._nextDay) {\\n // Adding is smart enough around DST\\n res.add(1, 'd');\\n res._nextDay = undefined;\\n }\\n\\n return res;\\n }\\n\\n function prepareConfig(config) {\\n var input = config._i,\\n format = config._f;\\n config._locale = config._locale || getLocale(config._l);\\n\\n if (input === null || format === undefined && input === '') {\\n return createInvalid({\\n nullInput: true\\n });\\n }\\n\\n if (typeof input === 'string') {\\n config._i = input = config._locale.preparse(input);\\n }\\n\\n if (isMoment(input)) {\\n return new Moment(checkOverflow(input));\\n } else if (isDate(input)) {\\n config._d = input;\\n } else if (isArray(format)) {\\n configFromStringAndArray(config);\\n } else if (format) {\\n configFromStringAndFormat(config);\\n } else {\\n configFromInput(config);\\n }\\n\\n if (!isValid(config)) {\\n config._d = null;\\n }\\n\\n return config;\\n }\\n\\n function configFromInput(config) {\\n var input = config._i;\\n\\n if (isUndefined(input)) {\\n config._d = new Date(hooks.now());\\n } else if (isDate(input)) {\\n config._d = new Date(input.valueOf());\\n } else if (typeof input === 'string') {\\n configFromString(config);\\n } else if (isArray(input)) {\\n config._a = map(input.slice(0), function (obj) {\\n return parseInt(obj, 10);\\n });\\n configFromArray(config);\\n } else if (isObject(input)) {\\n configFromObject(config);\\n } else if (isNumber(input)) {\\n // from milliseconds\\n config._d = new Date(input);\\n } else {\\n hooks.createFromInputFallback(config);\\n }\\n }\\n\\n function createLocalOrUTC(input, format, locale, strict, isUTC) {\\n var c = {};\\n\\n if (locale === true || locale === false) {\\n strict = locale;\\n locale = undefined;\\n }\\n\\n if (isObject(input) && isObjectEmpty(input) || isArray(input) && input.length === 0) {\\n input = undefined;\\n } // object construction must be done this way.\\n // https://github.com/moment/moment/issues/1423\\n\\n\\n c._isAMomentObject = true;\\n c._useUTC = c._isUTC = isUTC;\\n c._l = locale;\\n c._i = input;\\n c._f = format;\\n c._strict = strict;\\n return createFromConfig(c);\\n }\\n\\n function createLocal(input, format, locale, strict) {\\n return createLocalOrUTC(input, format, locale, strict, false);\\n }\\n\\n var prototypeMin = deprecate('moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/', function () {\\n var other = createLocal.apply(null, arguments);\\n\\n if (this.isValid() && other.isValid()) {\\n return other < this ? this : other;\\n } else {\\n return createInvalid();\\n }\\n });\\n var prototypeMax = deprecate('moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/', function () {\\n var other = createLocal.apply(null, arguments);\\n\\n if (this.isValid() && other.isValid()) {\\n return other > this ? this : other;\\n } else {\\n return createInvalid();\\n }\\n }); // Pick a moment m from moments so that m[fn](other) is true for all\\n // other. This relies on the function fn to be transitive.\\n //\\n // moments should either be an array of moment objects or an array, whose\\n // first element is an array of moment objects.\\n\\n function pickBy(fn, moments) {\\n var res, i;\\n\\n if (moments.length === 1 && isArray(moments[0])) {\\n moments = moments[0];\\n }\\n\\n if (!moments.length) {\\n return createLocal();\\n }\\n\\n res = moments[0];\\n\\n for (i = 1; i < moments.length; ++i) {\\n if (!moments[i].isValid() || moments[i][fn](res)) {\\n res = moments[i];\\n }\\n }\\n\\n return res;\\n } // TODO: Use [].sort instead?\\n\\n\\n function min() {\\n var args = [].slice.call(arguments, 0);\\n return pickBy('isBefore', args);\\n }\\n\\n function max() {\\n var args = [].slice.call(arguments, 0);\\n return pickBy('isAfter', args);\\n }\\n\\n var now = function now() {\\n return Date.now ? Date.now() : +new Date();\\n };\\n\\n var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond'];\\n\\n function isDurationValid(m) {\\n for (var key in m) {\\n if (!(indexOf.call(ordering, key) !== -1 && (m[key] == null || !isNaN(m[key])))) {\\n return false;\\n }\\n }\\n\\n var unitHasDecimal = false;\\n\\n for (var i = 0; i < ordering.length; ++i) {\\n if (m[ordering[i]]) {\\n if (unitHasDecimal) {\\n return false; // only allow non-integers for smallest unit\\n }\\n\\n if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) {\\n unitHasDecimal = true;\\n }\\n }\\n }\\n\\n return true;\\n }\\n\\n function isValid$1() {\\n return this._isValid;\\n }\\n\\n function createInvalid$1() {\\n return createDuration(NaN);\\n }\\n\\n function Duration(duration) {\\n var normalizedInput = normalizeObjectUnits(duration),\\n years = normalizedInput.year || 0,\\n quarters = normalizedInput.quarter || 0,\\n months = normalizedInput.month || 0,\\n weeks = normalizedInput.week || 0,\\n days = normalizedInput.day || 0,\\n hours = normalizedInput.hour || 0,\\n minutes = normalizedInput.minute || 0,\\n seconds = normalizedInput.second || 0,\\n milliseconds = normalizedInput.millisecond || 0;\\n this._isValid = isDurationValid(normalizedInput); // representation for dateAddRemove\\n\\n this._milliseconds = +milliseconds + seconds * 1e3 + // 1000\\n minutes * 6e4 + // 1000 * 60\\n hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978\\n // Because of dateAddRemove treats 24 hours as different from a\\n // day when working around DST, we need to store them separately\\n\\n this._days = +days + weeks * 7; // It is impossible to translate months into days without knowing\\n // which months you are are talking about, so we have to store\\n // it separately.\\n\\n this._months = +months + quarters * 3 + years * 12;\\n this._data = {};\\n this._locale = getLocale();\\n\\n this._bubble();\\n }\\n\\n function isDuration(obj) {\\n return obj instanceof Duration;\\n }\\n\\n function absRound(number) {\\n if (number < 0) {\\n return Math.round(-1 * number) * -1;\\n } else {\\n return Math.round(number);\\n }\\n } // FORMATTING\\n\\n\\n function offset(token, separator) {\\n addFormatToken(token, 0, 0, function () {\\n var offset = this.utcOffset();\\n var sign = '+';\\n\\n if (offset < 0) {\\n offset = -offset;\\n sign = '-';\\n }\\n\\n return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~offset % 60, 2);\\n });\\n }\\n\\n offset('Z', ':');\\n offset('ZZ', ''); // PARSING\\n\\n addRegexToken('Z', matchShortOffset);\\n addRegexToken('ZZ', matchShortOffset);\\n addParseToken(['Z', 'ZZ'], function (input, array, config) {\\n config._useUTC = true;\\n config._tzm = offsetFromString(matchShortOffset, input);\\n }); // HELPERS\\n // timezone chunker\\n // '+10:00' > ['10', '00']\\n // '-1530' > ['-15', '30']\\n\\n var chunkOffset = /([\\\\+\\\\-]|\\\\d\\\\d)/gi;\\n\\n function offsetFromString(matcher, string) {\\n var matches = (string || '').match(matcher);\\n\\n if (matches === null) {\\n return null;\\n }\\n\\n var chunk = matches[matches.length - 1] || [];\\n var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0];\\n var minutes = +(parts[1] * 60) + toInt(parts[2]);\\n return minutes === 0 ? 0 : parts[0] === '+' ? minutes : -minutes;\\n } // Return a moment from input, that is local/utc/zone equivalent to model.\\n\\n\\n function cloneWithOffset(input, model) {\\n var res, diff;\\n\\n if (model._isUTC) {\\n res = model.clone();\\n diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.valueOf(); // Use low-level api, because this fn is low-level api.\\n\\n res._d.setTime(res._d.valueOf() + diff);\\n\\n hooks.updateOffset(res, false);\\n return res;\\n } else {\\n return createLocal(input).local();\\n }\\n }\\n\\n function getDateOffset(m) {\\n // On Firefox.24 Date#getTimezoneOffset returns a floating point.\\n // https://github.com/moment/moment/pull/1871\\n return -Math.round(m._d.getTimezoneOffset() / 15) * 15;\\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\\n\\n hooks.updateOffset = function () {}; // MOMENTS\\n // keepLocalTime = true means only change the timezone, without\\n // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]--\\x3e\\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.\\n\\n\\n function getSetOffset(input, keepLocalTime, keepMinutes) {\\n var offset = this._offset || 0,\\n localAdjust;\\n\\n if (!this.isValid()) {\\n return input != null ? this : NaN;\\n }\\n\\n if (input != null) {\\n if (typeof input === 'string') {\\n input = offsetFromString(matchShortOffset, input);\\n\\n if (input === null) {\\n return this;\\n }\\n } else if (Math.abs(input) < 16 && !keepMinutes) {\\n input = input * 60;\\n }\\n\\n if (!this._isUTC && keepLocalTime) {\\n localAdjust = getDateOffset(this);\\n }\\n\\n this._offset = input;\\n this._isUTC = true;\\n\\n if (localAdjust != null) {\\n this.add(localAdjust, 'm');\\n }\\n\\n if (offset !== input) {\\n if (!keepLocalTime || this._changeInProgress) {\\n addSubtract(this, createDuration(input - offset, 'm'), 1, false);\\n } else if (!this._changeInProgress) {\\n this._changeInProgress = true;\\n hooks.updateOffset(this, true);\\n this._changeInProgress = null;\\n }\\n }\\n\\n return this;\\n } else {\\n return this._isUTC ? offset : getDateOffset(this);\\n }\\n }\\n\\n function getSetZone(input, keepLocalTime) {\\n if (input != null) {\\n if (typeof input !== 'string') {\\n input = -input;\\n }\\n\\n this.utcOffset(input, keepLocalTime);\\n return this;\\n } else {\\n return -this.utcOffset();\\n }\\n }\\n\\n function setOffsetToUTC(keepLocalTime) {\\n return this.utcOffset(0, keepLocalTime);\\n }\\n\\n function setOffsetToLocal(keepLocalTime) {\\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\\n return this;\\n }\\n\\n function setOffsetToParsedOffset() {\\n if (this._tzm != null) {\\n this.utcOffset(this._tzm, false, true);\\n } else if (typeof this._i === 'string') {\\n var tZone = offsetFromString(matchOffset, this._i);\\n\\n if (tZone != null) {\\n this.utcOffset(tZone);\\n } else {\\n this.utcOffset(0, true);\\n }\\n }\\n\\n return this;\\n }\\n\\n function hasAlignedHourOffset(input) {\\n if (!this.isValid()) {\\n return false;\\n }\\n\\n input = input ? createLocal(input).utcOffset() : 0;\\n return (this.utcOffset() - input) % 60 === 0;\\n }\\n\\n function isDaylightSavingTime() {\\n return this.utcOffset() > this.clone().month(0).utcOffset() || this.utcOffset() > this.clone().month(5).utcOffset();\\n }\\n\\n function isDaylightSavingTimeShifted() {\\n if (!isUndefined(this._isDSTShifted)) {\\n return this._isDSTShifted;\\n }\\n\\n var c = {};\\n copyConfig(c, this);\\n c = prepareConfig(c);\\n\\n if (c._a) {\\n var other = c._isUTC ? createUTC(c._a) : createLocal(c._a);\\n this._isDSTShifted = this.isValid() && compareArrays(c._a, other.toArray()) > 0;\\n } else {\\n this._isDSTShifted = false;\\n }\\n\\n return this._isDSTShifted;\\n }\\n\\n function isLocal() {\\n return this.isValid() ? !this._isUTC : false;\\n }\\n\\n function isUtcOffset() {\\n return this.isValid() ? this._isUTC : false;\\n }\\n\\n function isUtc() {\\n return this.isValid() ? this._isUTC && this._offset === 0 : false;\\n } // ASP.NET json date format regex\\n\\n\\n var aspNetRegex = /^(\\\\-|\\\\+)?(?:(\\\\d*)[. ])?(\\\\d+)\\\\:(\\\\d+)(?:\\\\:(\\\\d+)(\\\\.\\\\d*)?)?$/; // 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\\n var isoRegex = /^(-|\\\\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;\\n\\n function createDuration(input, key) {\\n var duration = input,\\n // matching against regexp is expensive, do it on demand\\n match = null,\\n sign,\\n ret,\\n diffRes;\\n\\n if (isDuration(input)) {\\n duration = {\\n ms: input._milliseconds,\\n d: input._days,\\n M: input._months\\n };\\n } else if (isNumber(input)) {\\n duration = {};\\n\\n if (key) {\\n duration[key] = input;\\n } else {\\n duration.milliseconds = input;\\n }\\n } else if (!!(match = aspNetRegex.exec(input))) {\\n sign = match[1] === '-' ? -1 : 1;\\n duration = {\\n y: 0,\\n d: toInt(match[DATE]) * sign,\\n h: toInt(match[HOUR]) * sign,\\n m: toInt(match[MINUTE]) * sign,\\n s: toInt(match[SECOND]) * sign,\\n ms: toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match\\n\\n };\\n } else if (!!(match = isoRegex.exec(input))) {\\n sign = match[1] === '-' ? -1 : match[1] === '+' ? 1 : 1;\\n duration = {\\n y: parseIso(match[2], sign),\\n M: parseIso(match[3], sign),\\n w: parseIso(match[4], sign),\\n d: parseIso(match[5], sign),\\n h: parseIso(match[6], sign),\\n m: parseIso(match[7], sign),\\n s: parseIso(match[8], sign)\\n };\\n } else if (duration == null) {\\n // checks for null or undefined\\n duration = {};\\n } else if (_typeof(duration) === 'object' && ('from' in duration || 'to' in duration)) {\\n diffRes = momentsDifference(createLocal(duration.from), createLocal(duration.to));\\n duration = {};\\n duration.ms = diffRes.milliseconds;\\n duration.M = diffRes.months;\\n }\\n\\n ret = new Duration(duration);\\n\\n if (isDuration(input) && hasOwnProp(input, '_locale')) {\\n ret._locale = input._locale;\\n }\\n\\n return ret;\\n }\\n\\n createDuration.fn = Duration.prototype;\\n createDuration.invalid = createInvalid$1;\\n\\n function 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(',', '.')); // apply sign while we're at it\\n\\n return (isNaN(res) ? 0 : res) * sign;\\n }\\n\\n function positiveMomentsDifference(base, other) {\\n var res = {\\n milliseconds: 0,\\n months: 0\\n };\\n res.months = other.month() - base.month() + (other.year() - base.year()) * 12;\\n\\n if (base.clone().add(res.months, 'M').isAfter(other)) {\\n --res.months;\\n }\\n\\n res.milliseconds = +other - +base.clone().add(res.months, 'M');\\n return res;\\n }\\n\\n function momentsDifference(base, other) {\\n var res;\\n\\n if (!(base.isValid() && other.isValid())) {\\n return {\\n milliseconds: 0,\\n months: 0\\n };\\n }\\n\\n other = cloneWithOffset(other, base);\\n\\n if (base.isBefore(other)) {\\n res = positiveMomentsDifference(base, other);\\n } else {\\n res = positiveMomentsDifference(other, base);\\n res.milliseconds = -res.milliseconds;\\n res.months = -res.months;\\n }\\n\\n return res;\\n } // TODO: remove 'name' arg after deprecation is removed\\n\\n\\n function createAdder(direction, name) {\\n return function (val, period) {\\n var dur, tmp; //invert the arguments, but complain about it\\n\\n if (period !== null && !isNaN(+period)) {\\n deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' + 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.');\\n tmp = val;\\n val = period;\\n period = tmp;\\n }\\n\\n val = typeof val === 'string' ? +val : val;\\n dur = createDuration(val, period);\\n addSubtract(this, dur, direction);\\n return this;\\n };\\n }\\n\\n function addSubtract(mom, duration, isAdding, updateOffset) {\\n var milliseconds = duration._milliseconds,\\n days = absRound(duration._days),\\n months = absRound(duration._months);\\n\\n if (!mom.isValid()) {\\n // No op\\n return;\\n }\\n\\n updateOffset = updateOffset == null ? true : updateOffset;\\n\\n if (months) {\\n setMonth(mom, get(mom, 'Month') + months * isAdding);\\n }\\n\\n if (days) {\\n set$1(mom, 'Date', get(mom, 'Date') + days * isAdding);\\n }\\n\\n if (milliseconds) {\\n mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding);\\n }\\n\\n if (updateOffset) {\\n hooks.updateOffset(mom, days || months);\\n }\\n }\\n\\n var add = createAdder(1, 'add');\\n var subtract = createAdder(-1, 'subtract');\\n\\n function getCalendarFormat(myMoment, now) {\\n var diff = myMoment.diff(now, 'days', true);\\n return diff < -6 ? 'sameElse' : diff < -1 ? 'lastWeek' : diff < 0 ? 'lastDay' : diff < 1 ? 'sameDay' : diff < 2 ? 'nextDay' : diff < 7 ? 'nextWeek' : 'sameElse';\\n }\\n\\n function calendar$1(time, formats) {\\n // We want to compare the start of today, vs this.\\n // Getting start-of-today depends on whether we're local/utc/offset or not.\\n var now = time || createLocal(),\\n sod = cloneWithOffset(now, this).startOf('day'),\\n format = hooks.calendarFormat(this, sod) || 'sameElse';\\n var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]);\\n return this.format(output || this.localeData().calendar(format, this, createLocal(now)));\\n }\\n\\n function clone() {\\n return new Moment(this);\\n }\\n\\n function isAfter(input, units) {\\n var localInput = isMoment(input) ? input : createLocal(input);\\n\\n if (!(this.isValid() && localInput.isValid())) {\\n return false;\\n }\\n\\n units = normalizeUnits(!isUndefined(units) ? units : 'millisecond');\\n\\n if (units === 'millisecond') {\\n return this.valueOf() > localInput.valueOf();\\n } else {\\n return localInput.valueOf() < this.clone().startOf(units).valueOf();\\n }\\n }\\n\\n function isBefore(input, units) {\\n var localInput = isMoment(input) ? input : createLocal(input);\\n\\n if (!(this.isValid() && localInput.isValid())) {\\n return false;\\n }\\n\\n units = normalizeUnits(!isUndefined(units) ? units : 'millisecond');\\n\\n if (units === 'millisecond') {\\n return this.valueOf() < localInput.valueOf();\\n } else {\\n return this.clone().endOf(units).valueOf() < localInput.valueOf();\\n }\\n }\\n\\n function isBetween(from, to, units, inclusivity) {\\n inclusivity = inclusivity || '()';\\n return (inclusivity[0] === '(' ? this.isAfter(from, units) : !this.isBefore(from, units)) && (inclusivity[1] === ')' ? this.isBefore(to, units) : !this.isAfter(to, units));\\n }\\n\\n function isSame(input, units) {\\n var localInput = isMoment(input) ? input : createLocal(input),\\n inputMs;\\n\\n if (!(this.isValid() && localInput.isValid())) {\\n return false;\\n }\\n\\n units = normalizeUnits(units || 'millisecond');\\n\\n if (units === 'millisecond') {\\n return this.valueOf() === localInput.valueOf();\\n } else {\\n inputMs = localInput.valueOf();\\n return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf();\\n }\\n }\\n\\n function isSameOrAfter(input, units) {\\n return this.isSame(input, units) || this.isAfter(input, units);\\n }\\n\\n function isSameOrBefore(input, units) {\\n return this.isSame(input, units) || this.isBefore(input, units);\\n }\\n\\n function diff(input, units, asFloat) {\\n var that, zoneDelta, output;\\n\\n if (!this.isValid()) {\\n return NaN;\\n }\\n\\n that = cloneWithOffset(input, this);\\n\\n if (!that.isValid()) {\\n return NaN;\\n }\\n\\n zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4;\\n units = normalizeUnits(units);\\n\\n switch (units) {\\n case 'year':\\n output = monthDiff(this, that) / 12;\\n break;\\n\\n case 'month':\\n output = monthDiff(this, that);\\n break;\\n\\n case 'quarter':\\n output = monthDiff(this, that) / 3;\\n break;\\n\\n case 'second':\\n output = (this - that) / 1e3;\\n break;\\n // 1000\\n\\n case 'minute':\\n output = (this - that) / 6e4;\\n break;\\n // 1000 * 60\\n\\n case 'hour':\\n output = (this - that) / 36e5;\\n break;\\n // 1000 * 60 * 60\\n\\n case 'day':\\n output = (this - that - zoneDelta) / 864e5;\\n break;\\n // 1000 * 60 * 60 * 24, negate dst\\n\\n case 'week':\\n output = (this - that - zoneDelta) / 6048e5;\\n break;\\n // 1000 * 60 * 60 * 24 * 7, negate dst\\n\\n default:\\n output = this - that;\\n }\\n\\n return asFloat ? output : absFloor(output);\\n }\\n\\n function monthDiff(a, b) {\\n // difference in months\\n var wholeMonthDiff = (b.year() - a.year()) * 12 + (b.month() - a.month()),\\n // b is in (anchor - 1 month, anchor + 1 month)\\n anchor = a.clone().add(wholeMonthDiff, 'months'),\\n anchor2,\\n adjust;\\n\\n if (b - anchor < 0) {\\n anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); // linear across the month\\n\\n adjust = (b - anchor) / (anchor - anchor2);\\n } else {\\n anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); // linear across the month\\n\\n adjust = (b - anchor) / (anchor2 - anchor);\\n } //check for negative zero, return zero if negative zero\\n\\n\\n return -(wholeMonthDiff + adjust) || 0;\\n }\\n\\n hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ';\\n hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]';\\n\\n function toString() {\\n return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');\\n }\\n\\n function toISOString(keepOffset) {\\n if (!this.isValid()) {\\n return null;\\n }\\n\\n var utc = keepOffset !== true;\\n var m = utc ? this.clone().utc() : this;\\n\\n if (m.year() < 0 || m.year() > 9999) {\\n return formatMoment(m, utc ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ');\\n }\\n\\n if (isFunction(Date.prototype.toISOString)) {\\n // native implementation is ~50x faster, use it when we can\\n if (utc) {\\n return this.toDate().toISOString();\\n } else {\\n return new Date(this.valueOf() + this.utcOffset() * 60 * 1000).toISOString().replace('Z', formatMoment(m, 'Z'));\\n }\\n }\\n\\n return formatMoment(m, utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ');\\n }\\n /**\\r\\n * Return a human readable representation of a moment that can\\r\\n * also be evaluated to get a new moment which is the same\\r\\n *\\r\\n * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects\\r\\n */\\n\\n\\n function inspect() {\\n if (!this.isValid()) {\\n return 'moment.invalid(/* ' + this._i + ' */)';\\n }\\n\\n var func = 'moment';\\n var zone = '';\\n\\n if (!this.isLocal()) {\\n func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone';\\n zone = 'Z';\\n }\\n\\n var prefix = '[' + func + '(\\\"]';\\n var year = 0 <= this.year() && this.year() <= 9999 ? 'YYYY' : 'YYYYYY';\\n var datetime = '-MM-DD[T]HH:mm:ss.SSS';\\n var suffix = zone + '[\\\")]';\\n return this.format(prefix + year + datetime + suffix);\\n }\\n\\n function format(inputString) {\\n if (!inputString) {\\n inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat;\\n }\\n\\n var output = formatMoment(this, inputString);\\n return this.localeData().postformat(output);\\n }\\n\\n function from(time, withoutSuffix) {\\n if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) {\\n return createDuration({\\n to: this,\\n from: time\\n }).locale(this.locale()).humanize(!withoutSuffix);\\n } else {\\n return this.localeData().invalidDate();\\n }\\n }\\n\\n function fromNow(withoutSuffix) {\\n return this.from(createLocal(), withoutSuffix);\\n }\\n\\n function to(time, withoutSuffix) {\\n if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) {\\n return createDuration({\\n from: this,\\n to: time\\n }).locale(this.locale()).humanize(!withoutSuffix);\\n } else {\\n return this.localeData().invalidDate();\\n }\\n }\\n\\n function toNow(withoutSuffix) {\\n return this.to(createLocal(), withoutSuffix);\\n } // If passed a locale key, it will set the locale for this\\n // instance. Otherwise, it will return the locale configuration\\n // variables for this instance.\\n\\n\\n function locale(key) {\\n var newLocaleData;\\n\\n if (key === undefined) {\\n return this._locale._abbr;\\n } else {\\n newLocaleData = getLocale(key);\\n\\n if (newLocaleData != null) {\\n this._locale = newLocaleData;\\n }\\n\\n return this;\\n }\\n }\\n\\n var lang = deprecate('moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', function (key) {\\n if (key === undefined) {\\n return this.localeData();\\n } else {\\n return this.locale(key);\\n }\\n });\\n\\n function localeData() {\\n return this._locale;\\n }\\n\\n function startOf(units) {\\n units = normalizeUnits(units); // the following switch intentionally omits break keywords\\n // to utilize falling through the cases.\\n\\n switch (units) {\\n case 'year':\\n this.month(0);\\n\\n /* falls through */\\n\\n case 'quarter':\\n case 'month':\\n this.date(1);\\n\\n /* falls through */\\n\\n case 'week':\\n case 'isoWeek':\\n case 'day':\\n case 'date':\\n this.hours(0);\\n\\n /* falls through */\\n\\n case 'hour':\\n this.minutes(0);\\n\\n /* falls through */\\n\\n case 'minute':\\n this.seconds(0);\\n\\n /* falls through */\\n\\n case 'second':\\n this.milliseconds(0);\\n } // weeks are a special case\\n\\n\\n if (units === 'week') {\\n this.weekday(0);\\n }\\n\\n if (units === 'isoWeek') {\\n this.isoWeekday(1);\\n } // quarters are also special\\n\\n\\n if (units === 'quarter') {\\n this.month(Math.floor(this.month() / 3) * 3);\\n }\\n\\n return this;\\n }\\n\\n function endOf(units) {\\n units = normalizeUnits(units);\\n\\n if (units === undefined || units === 'millisecond') {\\n return this;\\n } // 'date' is an alias for 'day', so it should be considered as such.\\n\\n\\n if (units === 'date') {\\n units = 'day';\\n }\\n\\n return this.startOf(units).add(1, units === 'isoWeek' ? 'week' : units).subtract(1, 'ms');\\n }\\n\\n function valueOf() {\\n return this._d.valueOf() - (this._offset || 0) * 60000;\\n }\\n\\n function unix() {\\n return Math.floor(this.valueOf() / 1000);\\n }\\n\\n function toDate() {\\n return new Date(this.valueOf());\\n }\\n\\n function toArray() {\\n var m = this;\\n return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()];\\n }\\n\\n function toObject() {\\n var m = this;\\n return {\\n years: m.year(),\\n months: m.month(),\\n date: m.date(),\\n hours: m.hours(),\\n minutes: m.minutes(),\\n seconds: m.seconds(),\\n milliseconds: m.milliseconds()\\n };\\n }\\n\\n function toJSON() {\\n // new Date(NaN).toJSON() === null\\n return this.isValid() ? this.toISOString() : null;\\n }\\n\\n function isValid$2() {\\n return isValid(this);\\n }\\n\\n function parsingFlags() {\\n return extend({}, getParsingFlags(this));\\n }\\n\\n function invalidAt() {\\n return getParsingFlags(this).overflow;\\n }\\n\\n function creationData() {\\n return {\\n input: this._i,\\n format: this._f,\\n locale: this._locale,\\n isUTC: this._isUTC,\\n strict: this._strict\\n };\\n } // FORMATTING\\n\\n\\n addFormatToken(0, ['gg', 2], 0, function () {\\n return this.weekYear() % 100;\\n });\\n addFormatToken(0, ['GG', 2], 0, function () {\\n return this.isoWeekYear() % 100;\\n });\\n\\n function addWeekYearFormatToken(token, getter) {\\n addFormatToken(0, [token, token.length], 0, getter);\\n }\\n\\n addWeekYearFormatToken('gggg', 'weekYear');\\n addWeekYearFormatToken('ggggg', 'weekYear');\\n addWeekYearFormatToken('GGGG', 'isoWeekYear');\\n addWeekYearFormatToken('GGGGG', 'isoWeekYear'); // ALIASES\\n\\n addUnitAlias('weekYear', 'gg');\\n addUnitAlias('isoWeekYear', 'GG'); // PRIORITY\\n\\n addUnitPriority('weekYear', 1);\\n addUnitPriority('isoWeekYear', 1); // PARSING\\n\\n addRegexToken('G', matchSigned);\\n addRegexToken('g', matchSigned);\\n addRegexToken('GG', match1to2, match2);\\n addRegexToken('gg', match1to2, match2);\\n addRegexToken('GGGG', match1to4, match4);\\n addRegexToken('gggg', match1to4, match4);\\n addRegexToken('GGGGG', match1to6, match6);\\n addRegexToken('ggggg', match1to6, match6);\\n addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) {\\n week[token.substr(0, 2)] = toInt(input);\\n });\\n addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {\\n week[token] = hooks.parseTwoDigitYear(input);\\n }); // MOMENTS\\n\\n function getSetWeekYear(input) {\\n return getSetWeekYearHelper.call(this, input, this.week(), this.weekday(), this.localeData()._week.dow, this.localeData()._week.doy);\\n }\\n\\n function getSetISOWeekYear(input) {\\n return getSetWeekYearHelper.call(this, input, this.isoWeek(), this.isoWeekday(), 1, 4);\\n }\\n\\n function getISOWeeksInYear() {\\n return weeksInYear(this.year(), 1, 4);\\n }\\n\\n function getWeeksInYear() {\\n var weekInfo = this.localeData()._week;\\n\\n return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy);\\n }\\n\\n function getSetWeekYearHelper(input, week, weekday, dow, doy) {\\n var weeksTarget;\\n\\n if (input == null) {\\n return weekOfYear(this, dow, doy).year;\\n } else {\\n weeksTarget = weeksInYear(input, dow, doy);\\n\\n if (week > weeksTarget) {\\n week = weeksTarget;\\n }\\n\\n return setWeekAll.call(this, input, week, weekday, dow, doy);\\n }\\n }\\n\\n function setWeekAll(weekYear, week, weekday, dow, doy) {\\n var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy),\\n date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear);\\n this.year(date.getUTCFullYear());\\n this.month(date.getUTCMonth());\\n this.date(date.getUTCDate());\\n return this;\\n } // FORMATTING\\n\\n\\n addFormatToken('Q', 0, 'Qo', 'quarter'); // ALIASES\\n\\n addUnitAlias('quarter', 'Q'); // PRIORITY\\n\\n addUnitPriority('quarter', 7); // PARSING\\n\\n addRegexToken('Q', match1);\\n addParseToken('Q', function (input, array) {\\n array[MONTH] = (toInt(input) - 1) * 3;\\n }); // MOMENTS\\n\\n function getSetQuarter(input) {\\n return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3);\\n } // FORMATTING\\n\\n\\n addFormatToken('D', ['DD', 2], 'Do', 'date'); // ALIASES\\n\\n addUnitAlias('date', 'D'); // PRIOROITY\\n\\n addUnitPriority('date', 9); // PARSING\\n\\n addRegexToken('D', match1to2);\\n addRegexToken('DD', match1to2, match2);\\n addRegexToken('Do', function (isStrict, locale) {\\n // TODO: Remove \\\"ordinalParse\\\" fallback in next major release.\\n return isStrict ? locale._dayOfMonthOrdinalParse || locale._ordinalParse : locale._dayOfMonthOrdinalParseLenient;\\n });\\n addParseToken(['D', 'DD'], DATE);\\n addParseToken('Do', function (input, array) {\\n array[DATE] = toInt(input.match(match1to2)[0]);\\n }); // MOMENTS\\n\\n var getSetDayOfMonth = makeGetSet('Date', true); // FORMATTING\\n\\n addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear'); // ALIASES\\n\\n addUnitAlias('dayOfYear', 'DDD'); // PRIORITY\\n\\n addUnitPriority('dayOfYear', 4); // PARSING\\n\\n addRegexToken('DDD', match1to3);\\n addRegexToken('DDDD', match3);\\n addParseToken(['DDD', 'DDDD'], function (input, array, config) {\\n config._dayOfYear = toInt(input);\\n }); // HELPERS\\n // MOMENTS\\n\\n function getSetDayOfYear(input) {\\n var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1;\\n return input == null ? dayOfYear : this.add(input - dayOfYear, 'd');\\n } // FORMATTING\\n\\n\\n addFormatToken('m', ['mm', 2], 0, 'minute'); // ALIASES\\n\\n addUnitAlias('minute', 'm'); // PRIORITY\\n\\n addUnitPriority('minute', 14); // PARSING\\n\\n addRegexToken('m', match1to2);\\n addRegexToken('mm', match1to2, match2);\\n addParseToken(['m', 'mm'], MINUTE); // MOMENTS\\n\\n var getSetMinute = makeGetSet('Minutes', false); // FORMATTING\\n\\n addFormatToken('s', ['ss', 2], 0, 'second'); // ALIASES\\n\\n addUnitAlias('second', 's'); // PRIORITY\\n\\n addUnitPriority('second', 15); // PARSING\\n\\n addRegexToken('s', match1to2);\\n addRegexToken('ss', match1to2, match2);\\n addParseToken(['s', 'ss'], SECOND); // MOMENTS\\n\\n var getSetSecond = makeGetSet('Seconds', false); // FORMATTING\\n\\n addFormatToken('S', 0, 0, function () {\\n return ~~(this.millisecond() / 100);\\n });\\n addFormatToken(0, ['SS', 2], 0, function () {\\n return ~~(this.millisecond() / 10);\\n });\\n addFormatToken(0, ['SSS', 3], 0, 'millisecond');\\n addFormatToken(0, ['SSSS', 4], 0, function () {\\n return this.millisecond() * 10;\\n });\\n addFormatToken(0, ['SSSSS', 5], 0, function () {\\n return this.millisecond() * 100;\\n });\\n addFormatToken(0, ['SSSSSS', 6], 0, function () {\\n return this.millisecond() * 1000;\\n });\\n addFormatToken(0, ['SSSSSSS', 7], 0, function () {\\n return this.millisecond() * 10000;\\n });\\n addFormatToken(0, ['SSSSSSSS', 8], 0, function () {\\n return this.millisecond() * 100000;\\n });\\n addFormatToken(0, ['SSSSSSSSS', 9], 0, function () {\\n return this.millisecond() * 1000000;\\n }); // ALIASES\\n\\n addUnitAlias('millisecond', 'ms'); // PRIORITY\\n\\n addUnitPriority('millisecond', 16); // PARSING\\n\\n addRegexToken('S', match1to3, match1);\\n addRegexToken('SS', match1to3, match2);\\n addRegexToken('SSS', match1to3, match3);\\n var token;\\n\\n for (token = 'SSSS'; token.length <= 9; token += 'S') {\\n addRegexToken(token, matchUnsigned);\\n }\\n\\n function parseMs(input, array) {\\n array[MILLISECOND] = toInt(('0.' + input) * 1000);\\n }\\n\\n for (token = 'S'; token.length <= 9; token += 'S') {\\n addParseToken(token, parseMs);\\n } // MOMENTS\\n\\n\\n var getSetMillisecond = makeGetSet('Milliseconds', false); // FORMATTING\\n\\n addFormatToken('z', 0, 0, 'zoneAbbr');\\n addFormatToken('zz', 0, 0, 'zoneName'); // MOMENTS\\n\\n function getZoneAbbr() {\\n return this._isUTC ? 'UTC' : '';\\n }\\n\\n function getZoneName() {\\n return this._isUTC ? 'Coordinated Universal Time' : '';\\n }\\n\\n var proto = Moment.prototype;\\n proto.add = add;\\n proto.calendar = calendar$1;\\n proto.clone = clone;\\n proto.diff = diff;\\n proto.endOf = endOf;\\n proto.format = format;\\n proto.from = from;\\n proto.fromNow = fromNow;\\n proto.to = to;\\n proto.toNow = toNow;\\n proto.get = stringGet;\\n proto.invalidAt = invalidAt;\\n proto.isAfter = isAfter;\\n proto.isBefore = isBefore;\\n proto.isBetween = isBetween;\\n proto.isSame = isSame;\\n proto.isSameOrAfter = isSameOrAfter;\\n proto.isSameOrBefore = isSameOrBefore;\\n proto.isValid = isValid$2;\\n proto.lang = lang;\\n proto.locale = locale;\\n proto.localeData = localeData;\\n proto.max = prototypeMax;\\n proto.min = prototypeMin;\\n proto.parsingFlags = parsingFlags;\\n proto.set = stringSet;\\n proto.startOf = startOf;\\n proto.subtract = subtract;\\n proto.toArray = toArray;\\n proto.toObject = toObject;\\n proto.toDate = toDate;\\n proto.toISOString = toISOString;\\n proto.inspect = inspect;\\n proto.toJSON = toJSON;\\n proto.toString = toString;\\n proto.unix = unix;\\n proto.valueOf = valueOf;\\n proto.creationData = creationData;\\n proto.year = getSetYear;\\n proto.isLeapYear = getIsLeapYear;\\n proto.weekYear = getSetWeekYear;\\n proto.isoWeekYear = getSetISOWeekYear;\\n proto.quarter = proto.quarters = getSetQuarter;\\n proto.month = getSetMonth;\\n proto.daysInMonth = getDaysInMonth;\\n proto.week = proto.weeks = getSetWeek;\\n proto.isoWeek = proto.isoWeeks = getSetISOWeek;\\n proto.weeksInYear = getWeeksInYear;\\n proto.isoWeeksInYear = getISOWeeksInYear;\\n proto.date = getSetDayOfMonth;\\n proto.day = proto.days = getSetDayOfWeek;\\n proto.weekday = getSetLocaleDayOfWeek;\\n proto.isoWeekday = getSetISODayOfWeek;\\n proto.dayOfYear = getSetDayOfYear;\\n proto.hour = proto.hours = getSetHour;\\n proto.minute = proto.minutes = getSetMinute;\\n proto.second = proto.seconds = getSetSecond;\\n proto.millisecond = proto.milliseconds = getSetMillisecond;\\n proto.utcOffset = getSetOffset;\\n proto.utc = setOffsetToUTC;\\n proto.local = setOffsetToLocal;\\n proto.parseZone = setOffsetToParsedOffset;\\n proto.hasAlignedHourOffset = hasAlignedHourOffset;\\n proto.isDST = isDaylightSavingTime;\\n proto.isLocal = isLocal;\\n proto.isUtcOffset = isUtcOffset;\\n proto.isUtc = isUtc;\\n proto.isUTC = isUtc;\\n proto.zoneAbbr = getZoneAbbr;\\n proto.zoneName = getZoneName;\\n proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth);\\n proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth);\\n proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear);\\n proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone);\\n proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted);\\n\\n function createUnix(input) {\\n return createLocal(input * 1000);\\n }\\n\\n function createInZone() {\\n return createLocal.apply(null, arguments).parseZone();\\n }\\n\\n function preParsePostFormat(string) {\\n return string;\\n }\\n\\n var proto$1 = Locale.prototype;\\n proto$1.calendar = calendar;\\n proto$1.longDateFormat = longDateFormat;\\n proto$1.invalidDate = invalidDate;\\n proto$1.ordinal = ordinal;\\n proto$1.preparse = preParsePostFormat;\\n proto$1.postformat = preParsePostFormat;\\n proto$1.relativeTime = relativeTime;\\n proto$1.pastFuture = pastFuture;\\n proto$1.set = set;\\n proto$1.months = localeMonths;\\n proto$1.monthsShort = localeMonthsShort;\\n proto$1.monthsParse = localeMonthsParse;\\n proto$1.monthsRegex = monthsRegex;\\n proto$1.monthsShortRegex = monthsShortRegex;\\n proto$1.week = localeWeek;\\n proto$1.firstDayOfYear = localeFirstDayOfYear;\\n proto$1.firstDayOfWeek = localeFirstDayOfWeek;\\n proto$1.weekdays = localeWeekdays;\\n proto$1.weekdaysMin = localeWeekdaysMin;\\n proto$1.weekdaysShort = localeWeekdaysShort;\\n proto$1.weekdaysParse = localeWeekdaysParse;\\n proto$1.weekdaysRegex = weekdaysRegex;\\n proto$1.weekdaysShortRegex = weekdaysShortRegex;\\n proto$1.weekdaysMinRegex = weekdaysMinRegex;\\n proto$1.isPM = localeIsPM;\\n proto$1.meridiem = localeMeridiem;\\n\\n function get$1(format, index, field, setter) {\\n var locale = getLocale();\\n var utc = createUTC().set(setter, index);\\n return locale[field](utc, format);\\n }\\n\\n function listMonthsImpl(format, index, field) {\\n if (isNumber(format)) {\\n index = format;\\n format = undefined;\\n }\\n\\n format = format || '';\\n\\n if (index != null) {\\n return get$1(format, index, field, 'month');\\n }\\n\\n var i;\\n var out = [];\\n\\n for (i = 0; i < 12; i++) {\\n out[i] = get$1(format, i, field, 'month');\\n }\\n\\n return out;\\n } // ()\\n // (5)\\n // (fmt, 5)\\n // (fmt)\\n // (true)\\n // (true, 5)\\n // (true, fmt, 5)\\n // (true, fmt)\\n\\n\\n function listWeekdaysImpl(localeSorted, format, index, field) {\\n if (typeof localeSorted === 'boolean') {\\n if (isNumber(format)) {\\n index = format;\\n format = undefined;\\n }\\n\\n format = format || '';\\n } else {\\n format = localeSorted;\\n index = format;\\n localeSorted = false;\\n\\n if (isNumber(format)) {\\n index = format;\\n format = undefined;\\n }\\n\\n format = format || '';\\n }\\n\\n var locale = getLocale(),\\n shift = localeSorted ? locale._week.dow : 0;\\n\\n if (index != null) {\\n return get$1(format, (index + shift) % 7, field, 'day');\\n }\\n\\n var i;\\n var out = [];\\n\\n for (i = 0; i < 7; i++) {\\n out[i] = get$1(format, (i + shift) % 7, field, 'day');\\n }\\n\\n return out;\\n }\\n\\n function listMonths(format, index) {\\n return listMonthsImpl(format, index, 'months');\\n }\\n\\n function listMonthsShort(format, index) {\\n return listMonthsImpl(format, index, 'monthsShort');\\n }\\n\\n function listWeekdays(localeSorted, format, index) {\\n return listWeekdaysImpl(localeSorted, format, index, 'weekdays');\\n }\\n\\n function listWeekdaysShort(localeSorted, format, index) {\\n return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort');\\n }\\n\\n function listWeekdaysMin(localeSorted, format, index) {\\n return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin');\\n }\\n\\n getSetGlobalLocale('en', {\\n dayOfMonthOrdinalParse: /\\\\d{1,2}(th|st|nd|rd)/,\\n ordinal: function ordinal(number) {\\n var b = number % 10,\\n output = toInt(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th';\\n return number + output;\\n }\\n }); // Side effect imports\\n\\n hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale);\\n hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale);\\n var mathAbs = Math.abs;\\n\\n function abs() {\\n var data = this._data;\\n this._milliseconds = mathAbs(this._milliseconds);\\n this._days = mathAbs(this._days);\\n this._months = mathAbs(this._months);\\n data.milliseconds = mathAbs(data.milliseconds);\\n data.seconds = mathAbs(data.seconds);\\n data.minutes = mathAbs(data.minutes);\\n data.hours = mathAbs(data.hours);\\n data.months = mathAbs(data.months);\\n data.years = mathAbs(data.years);\\n return this;\\n }\\n\\n function addSubtract$1(duration, input, value, direction) {\\n var other = createDuration(input, value);\\n duration._milliseconds += direction * other._milliseconds;\\n duration._days += direction * other._days;\\n duration._months += direction * other._months;\\n return duration._bubble();\\n } // supports only 2.0-style add(1, 's') or add(duration)\\n\\n\\n function add$1(input, value) {\\n return addSubtract$1(this, input, value, 1);\\n } // supports only 2.0-style subtract(1, 's') or subtract(duration)\\n\\n\\n function subtract$1(input, value) {\\n return addSubtract$1(this, input, value, -1);\\n }\\n\\n function absCeil(number) {\\n if (number < 0) {\\n return Math.floor(number);\\n } else {\\n return Math.ceil(number);\\n }\\n }\\n\\n function bubble() {\\n var milliseconds = this._milliseconds;\\n var days = this._days;\\n var months = this._months;\\n var data = this._data;\\n var seconds, minutes, hours, years, monthsFromDays; // if we have a mix of positive and negative values, bubble down first\\n // check: https://github.com/moment/moment/issues/2166\\n\\n if (!(milliseconds >= 0 && days >= 0 && months >= 0 || milliseconds <= 0 && days <= 0 && months <= 0)) {\\n milliseconds += absCeil(monthsToDays(months) + days) * 864e5;\\n days = 0;\\n months = 0;\\n } // The following code bubbles up values, see the tests for\\n // examples of what that means.\\n\\n\\n data.milliseconds = milliseconds % 1000;\\n seconds = absFloor(milliseconds / 1000);\\n data.seconds = seconds % 60;\\n minutes = absFloor(seconds / 60);\\n data.minutes = minutes % 60;\\n hours = absFloor(minutes / 60);\\n data.hours = hours % 24;\\n days += absFloor(hours / 24); // convert days to months\\n\\n monthsFromDays = absFloor(daysToMonths(days));\\n months += monthsFromDays;\\n days -= absCeil(monthsToDays(monthsFromDays)); // 12 months -> 1 year\\n\\n years = absFloor(months / 12);\\n months %= 12;\\n data.days = days;\\n data.months = months;\\n data.years = years;\\n return this;\\n }\\n\\n function daysToMonths(days) {\\n // 400 years have 146097 days (taking into account leap year rules)\\n // 400 years have 12 months === 4800\\n return days * 4800 / 146097;\\n }\\n\\n function monthsToDays(months) {\\n // the reverse of daysToMonths\\n return months * 146097 / 4800;\\n }\\n\\n function as(units) {\\n if (!this.isValid()) {\\n return NaN;\\n }\\n\\n var days;\\n var months;\\n var milliseconds = this._milliseconds;\\n units = normalizeUnits(units);\\n\\n if (units === 'month' || units === 'year') {\\n days = this._days + milliseconds / 864e5;\\n months = this._months + daysToMonths(days);\\n return units === 'month' ? months : months / 12;\\n } else {\\n // handle milliseconds separately because of floating point math errors (issue #1867)\\n days = this._days + Math.round(monthsToDays(this._months));\\n\\n switch (units) {\\n case 'week':\\n return days / 7 + milliseconds / 6048e5;\\n\\n case 'day':\\n return days + milliseconds / 864e5;\\n\\n case 'hour':\\n return days * 24 + milliseconds / 36e5;\\n\\n case 'minute':\\n return days * 1440 + milliseconds / 6e4;\\n\\n case 'second':\\n return days * 86400 + milliseconds / 1000;\\n // Math.floor prevents floating point math errors here\\n\\n case 'millisecond':\\n return Math.floor(days * 864e5) + milliseconds;\\n\\n default:\\n throw new Error('Unknown unit ' + units);\\n }\\n }\\n } // TODO: Use this.as('ms')?\\n\\n\\n function valueOf$1() {\\n if (!this.isValid()) {\\n return NaN;\\n }\\n\\n return this._milliseconds + this._days * 864e5 + this._months % 12 * 2592e6 + toInt(this._months / 12) * 31536e6;\\n }\\n\\n function makeAs(alias) {\\n return function () {\\n return this.as(alias);\\n };\\n }\\n\\n var asMilliseconds = makeAs('ms');\\n var asSeconds = makeAs('s');\\n var asMinutes = makeAs('m');\\n var asHours = makeAs('h');\\n var asDays = makeAs('d');\\n var asWeeks = makeAs('w');\\n var asMonths = makeAs('M');\\n var asYears = makeAs('y');\\n\\n function clone$1() {\\n return createDuration(this);\\n }\\n\\n function get$2(units) {\\n units = normalizeUnits(units);\\n return this.isValid() ? this[units + 's']() : NaN;\\n }\\n\\n function makeGetter(name) {\\n return function () {\\n return this.isValid() ? this._data[name] : NaN;\\n };\\n }\\n\\n var milliseconds = makeGetter('milliseconds');\\n var seconds = makeGetter('seconds');\\n var minutes = makeGetter('minutes');\\n var hours = makeGetter('hours');\\n var days = makeGetter('days');\\n var months = makeGetter('months');\\n var years = makeGetter('years');\\n\\n function weeks() {\\n return absFloor(this.days() / 7);\\n }\\n\\n var round = Math.round;\\n var thresholds = {\\n ss: 44,\\n // a few seconds to seconds\\n s: 45,\\n // seconds to minute\\n m: 45,\\n // minutes to hour\\n h: 22,\\n // hours to day\\n d: 26,\\n // days to month\\n M: 11 // months to year\\n\\n }; // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize\\n\\n function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) {\\n return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture);\\n }\\n\\n function relativeTime$1(posNegDuration, withoutSuffix, locale) {\\n var duration = createDuration(posNegDuration).abs();\\n var seconds = round(duration.as('s'));\\n var minutes = round(duration.as('m'));\\n var hours = round(duration.as('h'));\\n var days = round(duration.as('d'));\\n var months = round(duration.as('M'));\\n var years = round(duration.as('y'));\\n var a = seconds <= thresholds.ss && ['s', seconds] || seconds < thresholds.s && ['ss', seconds] || minutes <= 1 && ['m'] || minutes < thresholds.m && ['mm', minutes] || hours <= 1 && ['h'] || hours < thresholds.h && ['hh', hours] || days <= 1 && ['d'] || days < thresholds.d && ['dd', days] || months <= 1 && ['M'] || months < thresholds.M && ['MM', months] || years <= 1 && ['y'] || ['yy', years];\\n a[2] = withoutSuffix;\\n a[3] = +posNegDuration > 0;\\n a[4] = locale;\\n return substituteTimeAgo.apply(null, a);\\n } // This function allows you to set the rounding function for relative time strings\\n\\n\\n function getSetRelativeTimeRounding(roundingFunction) {\\n if (roundingFunction === undefined) {\\n return round;\\n }\\n\\n if (typeof roundingFunction === 'function') {\\n round = roundingFunction;\\n return true;\\n }\\n\\n return false;\\n } // This function allows you to set a threshold for relative time strings\\n\\n\\n function getSetRelativeTimeThreshold(threshold, limit) {\\n if (thresholds[threshold] === undefined) {\\n return false;\\n }\\n\\n if (limit === undefined) {\\n return thresholds[threshold];\\n }\\n\\n thresholds[threshold] = limit;\\n\\n if (threshold === 's') {\\n thresholds.ss = limit - 1;\\n }\\n\\n return true;\\n }\\n\\n function humanize(withSuffix) {\\n if (!this.isValid()) {\\n return this.localeData().invalidDate();\\n }\\n\\n var locale = this.localeData();\\n var output = relativeTime$1(this, !withSuffix, locale);\\n\\n if (withSuffix) {\\n output = locale.pastFuture(+this, output);\\n }\\n\\n return locale.postformat(output);\\n }\\n\\n var abs$1 = Math.abs;\\n\\n function sign(x) {\\n return (x > 0) - (x < 0) || +x;\\n }\\n\\n function toISOString$1() {\\n // for ISO strings we do not use the normal bubbling rules:\\n // * milliseconds bubble up until they become hours\\n // * days do not bubble at all\\n // * months bubble up until they become years\\n // This is because there is no context-free conversion between hours and days\\n // (think of clock changes)\\n // and also not between days and months (28-31 days per month)\\n if (!this.isValid()) {\\n return this.localeData().invalidDate();\\n }\\n\\n var seconds = abs$1(this._milliseconds) / 1000;\\n var days = abs$1(this._days);\\n var months = abs$1(this._months);\\n var minutes, hours, years; // 3600 seconds -> 60 minutes -> 1 hour\\n\\n minutes = absFloor(seconds / 60);\\n hours = absFloor(minutes / 60);\\n seconds %= 60;\\n minutes %= 60; // 12 months -> 1 year\\n\\n years = absFloor(months / 12);\\n months %= 12; // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js\\n\\n var Y = years;\\n var M = months;\\n var D = days;\\n var h = hours;\\n var m = minutes;\\n var s = seconds ? seconds.toFixed(3).replace(/\\\\.?0+$/, '') : '';\\n var total = this.asSeconds();\\n\\n if (!total) {\\n // this is the same as C#'s (Noda) and python (isodate)...\\n // but not other JS (goog.date)\\n return 'P0D';\\n }\\n\\n var totalSign = total < 0 ? '-' : '';\\n var ymSign = sign(this._months) !== sign(total) ? '-' : '';\\n var daysSign = sign(this._days) !== sign(total) ? '-' : '';\\n var hmsSign = sign(this._milliseconds) !== sign(total) ? '-' : '';\\n return totalSign + 'P' + (Y ? ymSign + Y + 'Y' : '') + (M ? ymSign + M + 'M' : '') + (D ? daysSign + D + 'D' : '') + (h || m || s ? 'T' : '') + (h ? hmsSign + h + 'H' : '') + (m ? hmsSign + m + 'M' : '') + (s ? hmsSign + s + 'S' : '');\\n }\\n\\n var proto$2 = Duration.prototype;\\n proto$2.isValid = isValid$1;\\n proto$2.abs = abs;\\n proto$2.add = add$1;\\n proto$2.subtract = subtract$1;\\n proto$2.as = as;\\n proto$2.asMilliseconds = asMilliseconds;\\n proto$2.asSeconds = asSeconds;\\n proto$2.asMinutes = asMinutes;\\n proto$2.asHours = asHours;\\n proto$2.asDays = asDays;\\n proto$2.asWeeks = asWeeks;\\n proto$2.asMonths = asMonths;\\n proto$2.asYears = asYears;\\n proto$2.valueOf = valueOf$1;\\n proto$2._bubble = bubble;\\n proto$2.clone = clone$1;\\n proto$2.get = get$2;\\n proto$2.milliseconds = milliseconds;\\n proto$2.seconds = seconds;\\n proto$2.minutes = minutes;\\n proto$2.hours = hours;\\n proto$2.days = days;\\n proto$2.weeks = weeks;\\n proto$2.months = months;\\n proto$2.years = years;\\n proto$2.humanize = humanize;\\n proto$2.toISOString = toISOString$1;\\n proto$2.toString = toISOString$1;\\n proto$2.toJSON = toISOString$1;\\n proto$2.locale = locale;\\n proto$2.localeData = localeData;\\n proto$2.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', toISOString$1);\\n proto$2.lang = lang; // Side effect imports\\n // FORMATTING\\n\\n addFormatToken('X', 0, 0, 'unix');\\n addFormatToken('x', 0, 0, 'valueOf'); // PARSING\\n\\n addRegexToken('x', matchSigned);\\n addRegexToken('X', matchTimestamp);\\n addParseToken('X', function (input, array, config) {\\n config._d = new Date(parseFloat(input, 10) * 1000);\\n });\\n addParseToken('x', function (input, array, config) {\\n config._d = new Date(toInt(input));\\n }); // Side effect imports\\n\\n hooks.version = '2.21.0';\\n setHookCallback(createLocal);\\n hooks.fn = proto;\\n hooks.min = min;\\n hooks.max = max;\\n hooks.now = now;\\n hooks.utc = createUTC;\\n hooks.unix = createUnix;\\n hooks.months = listMonths;\\n hooks.isDate = isDate;\\n hooks.locale = getSetGlobalLocale;\\n hooks.invalid = createInvalid;\\n hooks.duration = createDuration;\\n hooks.isMoment = isMoment;\\n hooks.weekdays = listWeekdays;\\n hooks.parseZone = createInZone;\\n hooks.localeData = getLocale;\\n hooks.isDuration = isDuration;\\n hooks.monthsShort = listMonthsShort;\\n hooks.weekdaysMin = listWeekdaysMin;\\n hooks.defineLocale = defineLocale;\\n hooks.updateLocale = updateLocale;\\n hooks.locales = listLocales;\\n hooks.weekdaysShort = listWeekdaysShort;\\n hooks.normalizeUnits = normalizeUnits;\\n hooks.relativeTimeRounding = getSetRelativeTimeRounding;\\n hooks.relativeTimeThreshold = getSetRelativeTimeThreshold;\\n hooks.calendarFormat = getCalendarFormat;\\n hooks.prototype = proto; // currently HTML5 input type only supports 24-hour formats\\n\\n hooks.HTML5_FMT = {\\n DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm',\\n // \\n DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss',\\n // \\n DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS',\\n // \\n DATE: 'YYYY-MM-DD',\\n // \\n TIME: 'HH:mm',\\n // \\n TIME_SECONDS: 'HH:mm:ss',\\n // \\n TIME_MS: 'HH:mm:ss.SSS',\\n // \\n WEEK: 'YYYY-[W]WW',\\n // \\n MONTH: 'YYYY-MM' // \\n\\n };\\n return hooks;\\n});\\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../node_modules/webpack/buildin/module.js */ \\\"./node_modules/webpack/buildin/module.js\\\")(module)))\\n\\n//# sourceURL=webpack:///./bower_components/moment/moment.js?\")},\"./node_modules/@fancyapps/fancybox/dist/jquery.fancybox.js\":function(module,exports){eval('// ==================================================\\n// fancyBox v3.5.7\\n//\\n// Licensed GPLv3 for open source use\\n// or fancyBox Commercial License for commercial use\\n//\\n// http://fancyapps.com/fancybox/\\n// Copyright 2019 fancyApps\\n//\\n// ==================================================\\n(function (window, document, $, undefined) {\\n \"use strict\";\\n\\n window.console = window.console || {\\n info: function info(stuff) {}\\n }; // If there\\'s no jQuery, fancyBox can\\'t work\\n // =========================================\\n\\n if (!$) {\\n return;\\n } // Check if fancyBox is already initialized\\n // ========================================\\n\\n\\n if ($.fn.fancybox) {\\n console.info(\"fancyBox already initialized\");\\n return;\\n } // Private default settings\\n // ========================\\n\\n\\n var defaults = {\\n // Close existing modals\\n // Set this to false if you do not need to stack multiple instances\\n closeExisting: false,\\n // Enable infinite gallery navigation\\n loop: false,\\n // Horizontal space between slides\\n gutter: 50,\\n // Enable keyboard navigation\\n keyboard: true,\\n // Should allow caption to overlap the content\\n preventCaptionOverlap: true,\\n // Should display navigation arrows at the screen edges\\n arrows: true,\\n // Should display counter at the top left corner\\n infobar: true,\\n // Should display close button (using `btnTpl.smallBtn` template) over the content\\n // Can be true, false, \"auto\"\\n // If \"auto\" - will be automatically enabled for \"html\", \"inline\" or \"ajax\" items\\n smallBtn: \"auto\",\\n // Should display toolbar (buttons at the top)\\n // Can be true, false, \"auto\"\\n // If \"auto\" - will be automatically hidden if \"smallBtn\" is enabled\\n toolbar: \"auto\",\\n // What buttons should appear in the top right corner.\\n // Buttons will be created using templates from `btnTpl` option\\n // and they will be placed into toolbar (class=\"fancybox-toolbar\"` element)\\n buttons: [\"zoom\", //\"share\",\\n \"slideShow\", //\"fullScreen\",\\n //\"download\",\\n \"thumbs\", \"close\"],\\n // Detect \"idle\" time in seconds\\n idleTime: 3,\\n // Disable right-click and use simple image protection for images\\n protect: false,\\n // Shortcut to make content \"modal\" - disable keyboard navigtion, hide buttons, etc\\n modal: false,\\n image: {\\n // Wait for images to load before displaying\\n // true - wait for image to load and then display;\\n // false - display thumbnail and load the full-sized image over top,\\n // requires predefined image dimensions (`data-width` and `data-height` attributes)\\n preload: false\\n },\\n ajax: {\\n // Object containing settings for ajax request\\n settings: {\\n // This helps to indicate that request comes from the modal\\n // Feel free to change naming\\n data: {\\n fancybox: true\\n }\\n }\\n },\\n iframe: {\\n // Iframe template\\n tpl: \\'\\',\\n // Preload iframe before displaying it\\n // This allows to calculate iframe content width and height\\n // (note: Due to \"Same Origin Policy\", you can\\'t get cross domain data).\\n preload: true,\\n // Custom CSS styling for iframe wrapping element\\n // You can use this to set custom iframe dimensions\\n css: {},\\n // Iframe tag attributes\\n attr: {\\n scrolling: \"auto\"\\n }\\n },\\n // For HTML5 video only\\n video: {\\n tpl: \\'\",\\n format: \"\",\\n // custom video format\\n autoStart: true\\n },\\n // Default content type if cannot be detected automatically\\n defaultType: \"image\",\\n // Open/close animation type\\n // Possible values:\\n // false - disable\\n // \"zoom\" - zoom images from/to thumbnail\\n // \"fade\"\\n // \"zoom-in-out\"\\n //\\n animationEffect: \"zoom\",\\n // Duration in ms for open/close animation\\n animationDuration: 366,\\n // Should image change opacity while zooming\\n // If opacity is \"auto\", then opacity will be changed if image and thumbnail have different aspect ratios\\n zoomOpacity: \"auto\",\\n // Transition effect between slides\\n //\\n // Possible values:\\n // false - disable\\n // \"fade\\'\\n // \"slide\\'\\n // \"circular\\'\\n // \"tube\\'\\n // \"zoom-in-out\\'\\n // \"rotate\\'\\n //\\n transitionEffect: \"fade\",\\n // Duration in ms for transition animation\\n transitionDuration: 366,\\n // Custom CSS class for slide element\\n slideClass: \"\",\\n // Custom CSS class for layout\\n baseClass: \"\",\\n // Base template for layout\\n baseTpl: \\'
    \\' + \\'
    \\' + \\'
    \\' + \\'
     / 
    \\' + \\'
    {{buttons}}
    \\' + \\'
    {{arrows}}
    \\' + \\'
    \\' + \\'
    \\' + \"
    \" + \"
    \",\\n // Loading indicator template\\n spinnerTpl: \\'
    \\',\\n // Error message template\\n errorTpl: \\'

    {{ERROR}}

    \\',\\n btnTpl: {\\n download: \\'\\' + \\'\\' + \"\",\\n zoom: \\'\",\\n close: \\'\",\\n // Arrows\\n arrowLeft: \\'\",\\n arrowRight: \\'\",\\n // This small close button will be appended to your html/inline/ajax content by default,\\n // if \"smallBtn\" option is not set to false\\n smallBtn: \\'\"\\n },\\n // Container is injected into this element\\n parentEl: \"body\",\\n // Hide browser vertical scrollbars; use at your own risk\\n hideScrollbar: true,\\n // Focus handling\\n // ==============\\n // Try to focus on the first focusable element after opening\\n autoFocus: true,\\n // Put focus back to active element after closing\\n backFocus: true,\\n // Do not let user to focus on element outside modal content\\n trapFocus: true,\\n // Module specific options\\n // =======================\\n fullScreen: {\\n autoStart: false\\n },\\n // Set `touch: false` to disable panning/swiping\\n touch: {\\n vertical: true,\\n // Allow to drag content vertically\\n momentum: true // Continue movement after releasing mouse/touch when panning\\n\\n },\\n // Hash value when initializing manually,\\n // set `false` to disable hash change\\n hash: null,\\n // Customize or add new media types\\n // Example:\\n\\n /*\\r\\n media : {\\r\\n youtube : {\\r\\n params : {\\r\\n autoplay : 0\\r\\n }\\r\\n }\\r\\n }\\r\\n */\\n media: {},\\n slideShow: {\\n autoStart: false,\\n speed: 3000\\n },\\n thumbs: {\\n autoStart: false,\\n // Display thumbnails on opening\\n hideOnClose: true,\\n // Hide thumbnail grid when closing animation starts\\n parentEl: \".fancybox-container\",\\n // Container is injected into this element\\n axis: \"y\" // Vertical (y) or horizontal (x) scrolling\\n\\n },\\n // Use mousewheel to navigate gallery\\n // If \\'auto\\' - enabled for images only\\n wheel: \"auto\",\\n // Callbacks\\n //==========\\n // See Documentation/API/Events for more information\\n // Example:\\n\\n /*\\r\\n afterShow: function( instance, current ) {\\r\\n console.info( \\'Clicked element:\\' );\\r\\n console.info( current.opts.$orig );\\r\\n }\\r\\n */\\n onInit: $.noop,\\n // When instance has been initialized\\n beforeLoad: $.noop,\\n // Before the content of a slide is being loaded\\n afterLoad: $.noop,\\n // When the content of a slide is done loading\\n beforeShow: $.noop,\\n // Before open animation starts\\n afterShow: $.noop,\\n // When content is done loading and animating\\n beforeClose: $.noop,\\n // Before the instance attempts to close. Return false to cancel the close.\\n afterClose: $.noop,\\n // After instance has been closed\\n onActivate: $.noop,\\n // When instance is brought to front\\n onDeactivate: $.noop,\\n // When other instance has been activated\\n // Interaction\\n // ===========\\n // Use options below to customize taken action when user clicks or double clicks on the fancyBox area,\\n // each option can be string or method that returns value.\\n //\\n // Possible values:\\n // \"close\" - close instance\\n // \"next\" - move to next gallery item\\n // \"nextOrClose\" - move to next gallery item or close if gallery has only one item\\n // \"toggleControls\" - show/hide controls\\n // \"zoom\" - zoom image (if loaded)\\n // false - do nothing\\n // Clicked on the content\\n clickContent: function clickContent(current, event) {\\n return current.type === \"image\" ? \"zoom\" : false;\\n },\\n // Clicked on the slide\\n clickSlide: \"close\",\\n // Clicked on the background (backdrop) element;\\n // if you have not changed the layout, then most likely you need to use `clickSlide` option\\n clickOutside: \"close\",\\n // Same as previous two, but for double click\\n dblclickContent: false,\\n dblclickSlide: false,\\n dblclickOutside: false,\\n // Custom options when mobile device is detected\\n // =============================================\\n mobile: {\\n preventCaptionOverlap: false,\\n idleTime: false,\\n clickContent: function clickContent(current, event) {\\n return current.type === \"image\" ? \"toggleControls\" : false;\\n },\\n clickSlide: function clickSlide(current, event) {\\n return current.type === \"image\" ? \"toggleControls\" : \"close\";\\n },\\n dblclickContent: function dblclickContent(current, event) {\\n return current.type === \"image\" ? \"zoom\" : false;\\n },\\n dblclickSlide: function dblclickSlide(current, event) {\\n return current.type === \"image\" ? \"zoom\" : false;\\n }\\n },\\n // Internationalization\\n // ====================\\n lang: \"en\",\\n i18n: {\\n en: {\\n CLOSE: \"Close\",\\n NEXT: \"Next\",\\n PREV: \"Previous\",\\n ERROR: \"The requested content cannot be loaded.
    Please try again later.\",\\n PLAY_START: \"Start slideshow\",\\n PLAY_STOP: \"Pause slideshow\",\\n FULL_SCREEN: \"Full screen\",\\n THUMBS: \"Thumbnails\",\\n DOWNLOAD: \"Download\",\\n SHARE: \"Share\",\\n ZOOM: \"Zoom\"\\n },\\n de: {\\n CLOSE: \"Schließen\",\\n NEXT: \"Weiter\",\\n PREV: \"Zurück\",\\n ERROR: \"Die angeforderten Daten konnten nicht geladen werden.
    Bitte versuchen Sie es später nochmal.\",\\n PLAY_START: \"Diaschau starten\",\\n PLAY_STOP: \"Diaschau beenden\",\\n FULL_SCREEN: \"Vollbild\",\\n THUMBS: \"Vorschaubilder\",\\n DOWNLOAD: \"Herunterladen\",\\n SHARE: \"Teilen\",\\n ZOOM: \"Vergrößern\"\\n }\\n }\\n }; // Few useful variables and methods\\n // ================================\\n\\n var $W = $(window);\\n var $D = $(document);\\n var called = 0; // Check if an object is a jQuery object and not a native JavaScript object\\n // ========================================================================\\n\\n var isQuery = function isQuery(obj) {\\n return obj && obj.hasOwnProperty && obj instanceof $;\\n }; // Handle multiple browsers for \"requestAnimationFrame\" and \"cancelAnimationFrame\"\\n // ===============================================================================\\n\\n\\n var requestAFrame = function () {\\n return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || // if all else fails, use setTimeout\\n function (callback) {\\n return window.setTimeout(callback, 1000 / 60);\\n };\\n }();\\n\\n var cancelAFrame = function () {\\n return window.cancelAnimationFrame || window.webkitCancelAnimationFrame || window.mozCancelAnimationFrame || window.oCancelAnimationFrame || function (id) {\\n window.clearTimeout(id);\\n };\\n }(); // Detect the supported transition-end event property name\\n // =======================================================\\n\\n\\n var transitionEnd = function () {\\n var el = document.createElement(\"fakeelement\"),\\n t;\\n var transitions = {\\n transition: \"transitionend\",\\n OTransition: \"oTransitionEnd\",\\n MozTransition: \"transitionend\",\\n WebkitTransition: \"webkitTransitionEnd\"\\n };\\n\\n for (t in transitions) {\\n if (el.style[t] !== undefined) {\\n return transitions[t];\\n }\\n }\\n\\n return \"transitionend\";\\n }(); // Force redraw on an element.\\n // This helps in cases where the browser doesn\\'t redraw an updated element properly\\n // ================================================================================\\n\\n\\n var forceRedraw = function forceRedraw($el) {\\n return $el && $el.length && $el[0].offsetHeight;\\n }; // Exclude array (`buttons`) options from deep merging\\n // ===================================================\\n\\n\\n var mergeOpts = function mergeOpts(opts1, opts2) {\\n var rez = $.extend(true, {}, opts1, opts2);\\n $.each(opts2, function (key, value) {\\n if ($.isArray(value)) {\\n rez[key] = value;\\n }\\n });\\n return rez;\\n }; // How much of an element is visible in viewport\\n // =============================================\\n\\n\\n var inViewport = function inViewport(elem) {\\n var elemCenter, rez;\\n\\n if (!elem || elem.ownerDocument !== document) {\\n return false;\\n }\\n\\n $(\".fancybox-container\").css(\"pointer-events\", \"none\");\\n elemCenter = {\\n x: elem.getBoundingClientRect().left + elem.offsetWidth / 2,\\n y: elem.getBoundingClientRect().top + elem.offsetHeight / 2\\n };\\n rez = document.elementFromPoint(elemCenter.x, elemCenter.y) === elem;\\n $(\".fancybox-container\").css(\"pointer-events\", \"\");\\n return rez;\\n }; // Class definition\\n // ================\\n\\n\\n var FancyBox = function FancyBox(content, opts, index) {\\n var self = this;\\n self.opts = mergeOpts({\\n index: index\\n }, $.fancybox.defaults);\\n\\n if ($.isPlainObject(opts)) {\\n self.opts = mergeOpts(self.opts, opts);\\n }\\n\\n if ($.fancybox.isMobile) {\\n self.opts = mergeOpts(self.opts, self.opts.mobile);\\n }\\n\\n self.id = self.opts.id || ++called;\\n self.currIndex = parseInt(self.opts.index, 10) || 0;\\n self.prevIndex = null;\\n self.prevPos = null;\\n self.currPos = 0;\\n self.firstRun = true; // All group items\\n\\n self.group = []; // Existing slides (for current, next and previous gallery items)\\n\\n self.slides = {}; // Create group elements\\n\\n self.addContent(content);\\n\\n if (!self.group.length) {\\n return;\\n }\\n\\n self.init();\\n };\\n\\n $.extend(FancyBox.prototype, {\\n // Create DOM structure\\n // ====================\\n init: function init() {\\n var self = this,\\n firstItem = self.group[self.currIndex],\\n firstItemOpts = firstItem.opts,\\n $container,\\n buttonStr;\\n\\n if (firstItemOpts.closeExisting) {\\n $.fancybox.close(true);\\n } // Hide scrollbars\\n // ===============\\n\\n\\n $(\"body\").addClass(\"fancybox-active\");\\n\\n if (!$.fancybox.getInstance() && firstItemOpts.hideScrollbar !== false && !$.fancybox.isMobile && document.body.scrollHeight > window.innerHeight) {\\n $(\"head\").append(\\'\");\\n $(\"body\").addClass(\"compensate-for-scrollbar\");\\n } // Build html markup and set references\\n // ====================================\\n // Build html code for buttons and insert into main template\\n\\n\\n buttonStr = \"\";\\n $.each(firstItemOpts.buttons, function (index, value) {\\n buttonStr += firstItemOpts.btnTpl[value] || \"\";\\n }); // Create markup from base template, it will be initially hidden to\\n // avoid unnecessary work like painting while initializing is not complete\\n\\n $container = $(self.translate(self, firstItemOpts.baseTpl.replace(\"{{buttons}}\", buttonStr).replace(\"{{arrows}}\", firstItemOpts.btnTpl.arrowLeft + firstItemOpts.btnTpl.arrowRight))).attr(\"id\", \"fancybox-container-\" + self.id).addClass(firstItemOpts.baseClass).data(\"FancyBox\", self).appendTo(firstItemOpts.parentEl); // Create object holding references to jQuery wrapped nodes\\n\\n self.$refs = {\\n container: $container\\n };\\n [\"bg\", \"inner\", \"infobar\", \"toolbar\", \"stage\", \"caption\", \"navigation\"].forEach(function (item) {\\n self.$refs[item] = $container.find(\".fancybox-\" + item);\\n });\\n self.trigger(\"onInit\"); // Enable events, deactive previous instances\\n\\n self.activate(); // Build slides, load and reveal content\\n\\n self.jumpTo(self.currIndex);\\n },\\n // Simple i18n support - replaces object keys found in template\\n // with corresponding values\\n // ============================================================\\n translate: function translate(obj, str) {\\n var arr = obj.opts.i18n[obj.opts.lang] || obj.opts.i18n.en;\\n return str.replace(/\\\\{\\\\{(\\\\w+)\\\\}\\\\}/g, function (match, n) {\\n return arr[n] === undefined ? match : arr[n];\\n });\\n },\\n // Populate current group with fresh content\\n // Check if each object has valid type and content\\n // ===============================================\\n addContent: function addContent(content) {\\n var self = this,\\n items = $.makeArray(content),\\n thumbs;\\n $.each(items, function (i, item) {\\n var obj = {},\\n opts = {},\\n $item,\\n type,\\n found,\\n src,\\n srcParts; // Step 1 - Make sure we have an object\\n // ====================================\\n\\n if ($.isPlainObject(item)) {\\n // We probably have manual usage here, something like\\n // $.fancybox.open( [ { src : \"image.jpg\", type : \"image\" } ] )\\n obj = item;\\n opts = item.opts || item;\\n } else if ($.type(item) === \"object\" && $(item).length) {\\n // Here we probably have jQuery collection returned by some selector\\n $item = $(item); // Support attributes like `data-options=\\'{\"touch\" : false}\\'` and `data-touch=\\'false\\'`\\n\\n opts = $item.data() || {};\\n opts = $.extend(true, {}, opts, opts.options); // Here we store clicked element\\n\\n opts.$orig = $item;\\n obj.src = self.opts.src || opts.src || $item.attr(\"href\"); // Assume that simple syntax is used, for example:\\n // `$.fancybox.open( $(\"#test\"), {} );`\\n\\n if (!obj.type && !obj.src) {\\n obj.type = \"inline\";\\n obj.src = item;\\n }\\n } else {\\n // Assume we have a simple html code, for example:\\n // $.fancybox.open( \\'

    Hi!

    \\' );\\n obj = {\\n type: \"html\",\\n src: item + \"\"\\n };\\n } // Each gallery object has full collection of options\\n\\n\\n obj.opts = $.extend(true, {}, self.opts, opts); // Do not merge buttons array\\n\\n if ($.isArray(opts.buttons)) {\\n obj.opts.buttons = opts.buttons;\\n }\\n\\n if ($.fancybox.isMobile && obj.opts.mobile) {\\n obj.opts = mergeOpts(obj.opts, obj.opts.mobile);\\n } // Step 2 - Make sure we have content type, if not - try to guess\\n // ==============================================================\\n\\n\\n type = obj.type || obj.opts.type;\\n src = obj.src || \"\";\\n\\n if (!type && src) {\\n if (found = src.match(/\\\\.(mp4|mov|ogv|webm)((\\\\?|#).*)?$/i)) {\\n type = \"video\";\\n\\n if (!obj.opts.video.format) {\\n obj.opts.video.format = \"video/\" + (found[1] === \"ogv\" ? \"ogg\" : found[1]);\\n }\\n } else if (src.match(/(^data:image\\\\/[a-z0-9+\\\\/=]*,)|(\\\\.(jp(e|g|eg)|gif|png|bmp|webp|svg|ico)((\\\\?|#).*)?$)/i)) {\\n type = \"image\";\\n } else if (src.match(/\\\\.(pdf)((\\\\?|#).*)?$/i)) {\\n type = \"iframe\";\\n obj = $.extend(true, obj, {\\n contentType: \"pdf\",\\n opts: {\\n iframe: {\\n preload: false\\n }\\n }\\n });\\n } else if (src.charAt(0) === \"#\") {\\n type = \"inline\";\\n }\\n }\\n\\n if (type) {\\n obj.type = type;\\n } else {\\n self.trigger(\"objectNeedsType\", obj);\\n }\\n\\n if (!obj.contentType) {\\n obj.contentType = $.inArray(obj.type, [\"html\", \"inline\", \"ajax\"]) > -1 ? \"html\" : obj.type;\\n } // Step 3 - Some adjustments\\n // =========================\\n\\n\\n obj.index = self.group.length;\\n\\n if (obj.opts.smallBtn == \"auto\") {\\n obj.opts.smallBtn = $.inArray(obj.type, [\"html\", \"inline\", \"ajax\"]) > -1;\\n }\\n\\n if (obj.opts.toolbar === \"auto\") {\\n obj.opts.toolbar = !obj.opts.smallBtn;\\n } // Find thumbnail image, check if exists and if is in the viewport\\n\\n\\n obj.$thumb = obj.opts.$thumb || null;\\n\\n if (obj.opts.$trigger && obj.index === self.opts.index) {\\n obj.$thumb = obj.opts.$trigger.find(\"img:first\");\\n\\n if (obj.$thumb.length) {\\n obj.opts.$orig = obj.opts.$trigger;\\n }\\n }\\n\\n if (!(obj.$thumb && obj.$thumb.length) && obj.opts.$orig) {\\n obj.$thumb = obj.opts.$orig.find(\"img:first\");\\n }\\n\\n if (obj.$thumb && !obj.$thumb.length) {\\n obj.$thumb = null;\\n }\\n\\n obj.thumb = obj.opts.thumb || (obj.$thumb ? obj.$thumb[0].src : null); // \"caption\" is a \"special\" option, it can be used to customize caption per gallery item\\n\\n if ($.type(obj.opts.caption) === \"function\") {\\n obj.opts.caption = obj.opts.caption.apply(item, [self, obj]);\\n }\\n\\n if ($.type(self.opts.caption) === \"function\") {\\n obj.opts.caption = self.opts.caption.apply(item, [self, obj]);\\n } // Make sure we have caption as a string or jQuery object\\n\\n\\n if (!(obj.opts.caption instanceof $)) {\\n obj.opts.caption = obj.opts.caption === undefined ? \"\" : obj.opts.caption + \"\";\\n } // Check if url contains \"filter\" used to filter the content\\n // Example: \"ajax.html #something\"\\n\\n\\n if (obj.type === \"ajax\") {\\n srcParts = src.split(/\\\\s+/, 2);\\n\\n if (srcParts.length > 1) {\\n obj.src = srcParts.shift();\\n obj.opts.filter = srcParts.shift();\\n }\\n } // Hide all buttons and disable interactivity for modal items\\n\\n\\n if (obj.opts.modal) {\\n obj.opts = $.extend(true, obj.opts, {\\n trapFocus: true,\\n // Remove buttons\\n infobar: 0,\\n toolbar: 0,\\n smallBtn: 0,\\n // Disable keyboard navigation\\n keyboard: 0,\\n // Disable some modules\\n slideShow: 0,\\n fullScreen: 0,\\n thumbs: 0,\\n touch: 0,\\n // Disable click event handlers\\n clickContent: false,\\n clickSlide: false,\\n clickOutside: false,\\n dblclickContent: false,\\n dblclickSlide: false,\\n dblclickOutside: false\\n });\\n } // Step 4 - Add processed object to group\\n // ======================================\\n\\n\\n self.group.push(obj);\\n }); // Update controls if gallery is already opened\\n\\n if (Object.keys(self.slides).length) {\\n self.updateControls(); // Update thumbnails, if needed\\n\\n thumbs = self.Thumbs;\\n\\n if (thumbs && thumbs.isActive) {\\n thumbs.create();\\n thumbs.focus();\\n }\\n }\\n },\\n // Attach an event handler functions for:\\n // - navigation buttons\\n // - browser scrolling, resizing;\\n // - focusing\\n // - keyboard\\n // - detecting inactivity\\n // ======================================\\n addEvents: function addEvents() {\\n var self = this;\\n self.removeEvents(); // Make navigation elements clickable\\n // ==================================\\n\\n self.$refs.container.on(\"click.fb-close\", \"[data-fancybox-close]\", function (e) {\\n e.stopPropagation();\\n e.preventDefault();\\n self.close(e);\\n }).on(\"touchstart.fb-prev click.fb-prev\", \"[data-fancybox-prev]\", function (e) {\\n e.stopPropagation();\\n e.preventDefault();\\n self.previous();\\n }).on(\"touchstart.fb-next click.fb-next\", \"[data-fancybox-next]\", function (e) {\\n e.stopPropagation();\\n e.preventDefault();\\n self.next();\\n }).on(\"click.fb\", \"[data-fancybox-zoom]\", function (e) {\\n // Click handler for zoom button\\n self[self.isScaledDown() ? \"scaleToActual\" : \"scaleToFit\"]();\\n }); // Handle page scrolling and browser resizing\\n // ==========================================\\n\\n $W.on(\"orientationchange.fb resize.fb\", function (e) {\\n if (e && e.originalEvent && e.originalEvent.type === \"resize\") {\\n if (self.requestId) {\\n cancelAFrame(self.requestId);\\n }\\n\\n self.requestId = requestAFrame(function () {\\n self.update(e);\\n });\\n } else {\\n if (self.current && self.current.type === \"iframe\") {\\n self.$refs.stage.hide();\\n }\\n\\n setTimeout(function () {\\n self.$refs.stage.show();\\n self.update(e);\\n }, $.fancybox.isMobile ? 600 : 250);\\n }\\n });\\n $D.on(\"keydown.fb\", function (e) {\\n var instance = $.fancybox ? $.fancybox.getInstance() : null,\\n current = instance.current,\\n keycode = e.keyCode || e.which; // Trap keyboard focus inside of the modal\\n // =======================================\\n\\n if (keycode == 9) {\\n if (current.opts.trapFocus) {\\n self.focus(e);\\n }\\n\\n return;\\n } // Enable keyboard navigation\\n // ==========================\\n\\n\\n if (!current.opts.keyboard || e.ctrlKey || e.altKey || e.shiftKey || $(e.target).is(\"input,textarea,video,audio,select\")) {\\n return;\\n } // Backspace and Esc keys\\n\\n\\n if (keycode === 8 || keycode === 27) {\\n e.preventDefault();\\n self.close(e);\\n return;\\n } // Left arrow and Up arrow\\n\\n\\n if (keycode === 37 || keycode === 38) {\\n e.preventDefault();\\n self.previous();\\n return;\\n } // Righ arrow and Down arrow\\n\\n\\n if (keycode === 39 || keycode === 40) {\\n e.preventDefault();\\n self.next();\\n return;\\n }\\n\\n self.trigger(\"afterKeydown\", e, keycode);\\n }); // Hide controls after some inactivity period\\n\\n if (self.group[self.currIndex].opts.idleTime) {\\n self.idleSecondsCounter = 0;\\n $D.on(\"mousemove.fb-idle mouseleave.fb-idle mousedown.fb-idle touchstart.fb-idle touchmove.fb-idle scroll.fb-idle keydown.fb-idle\", function (e) {\\n self.idleSecondsCounter = 0;\\n\\n if (self.isIdle) {\\n self.showControls();\\n }\\n\\n self.isIdle = false;\\n });\\n self.idleInterval = window.setInterval(function () {\\n self.idleSecondsCounter++;\\n\\n if (self.idleSecondsCounter >= self.group[self.currIndex].opts.idleTime && !self.isDragging) {\\n self.isIdle = true;\\n self.idleSecondsCounter = 0;\\n self.hideControls();\\n }\\n }, 1000);\\n }\\n },\\n // Remove events added by the core\\n // ===============================\\n removeEvents: function removeEvents() {\\n var self = this;\\n $W.off(\"orientationchange.fb resize.fb\");\\n $D.off(\"keydown.fb .fb-idle\");\\n this.$refs.container.off(\".fb-close .fb-prev .fb-next\");\\n\\n if (self.idleInterval) {\\n window.clearInterval(self.idleInterval);\\n self.idleInterval = null;\\n }\\n },\\n // Change to previous gallery item\\n // ===============================\\n previous: function previous(duration) {\\n return this.jumpTo(this.currPos - 1, duration);\\n },\\n // Change to next gallery item\\n // ===========================\\n next: function next(duration) {\\n return this.jumpTo(this.currPos + 1, duration);\\n },\\n // Switch to selected gallery item\\n // ===============================\\n jumpTo: function jumpTo(pos, duration) {\\n var self = this,\\n groupLen = self.group.length,\\n firstRun,\\n isMoved,\\n loop,\\n current,\\n previous,\\n slidePos,\\n stagePos,\\n prop,\\n diff;\\n\\n if (self.isDragging || self.isClosing || self.isAnimating && self.firstRun) {\\n return;\\n } // Should loop?\\n\\n\\n pos = parseInt(pos, 10);\\n loop = self.current ? self.current.opts.loop : self.opts.loop;\\n\\n if (!loop && (pos < 0 || pos >= groupLen)) {\\n return false;\\n } // Check if opening for the first time; this helps to speed things up\\n\\n\\n firstRun = self.firstRun = !Object.keys(self.slides).length; // Create slides\\n\\n previous = self.current;\\n self.prevIndex = self.currIndex;\\n self.prevPos = self.currPos;\\n current = self.createSlide(pos);\\n\\n if (groupLen > 1) {\\n if (loop || current.index < groupLen - 1) {\\n self.createSlide(pos + 1);\\n }\\n\\n if (loop || current.index > 0) {\\n self.createSlide(pos - 1);\\n }\\n }\\n\\n self.current = current;\\n self.currIndex = current.index;\\n self.currPos = current.pos;\\n self.trigger(\"beforeShow\", firstRun);\\n self.updateControls(); // Validate duration length\\n\\n current.forcedDuration = undefined;\\n\\n if ($.isNumeric(duration)) {\\n current.forcedDuration = duration;\\n } else {\\n duration = current.opts[firstRun ? \"animationDuration\" : \"transitionDuration\"];\\n }\\n\\n duration = parseInt(duration, 10); // Check if user has swiped the slides or if still animating\\n\\n isMoved = self.isMoved(current); // Make sure current slide is visible\\n\\n current.$slide.addClass(\"fancybox-slide--current\"); // Fresh start - reveal container, current slide and start loading content\\n\\n if (firstRun) {\\n if (current.opts.animationEffect && duration) {\\n self.$refs.container.css(\"transition-duration\", duration + \"ms\");\\n }\\n\\n self.$refs.container.addClass(\"fancybox-is-open\").trigger(\"focus\"); // Attempt to load content into slide\\n // This will later call `afterLoad` -> `revealContent`\\n\\n self.loadSlide(current);\\n self.preload(\"image\");\\n return;\\n } // Get actual slide/stage positions (before cleaning up)\\n\\n\\n slidePos = $.fancybox.getTranslate(previous.$slide);\\n stagePos = $.fancybox.getTranslate(self.$refs.stage); // Clean up all slides\\n\\n $.each(self.slides, function (index, slide) {\\n $.fancybox.stop(slide.$slide, true);\\n });\\n\\n if (previous.pos !== current.pos) {\\n previous.isComplete = false;\\n }\\n\\n previous.$slide.removeClass(\"fancybox-slide--complete fancybox-slide--current\"); // If slides are out of place, then animate them to correct position\\n\\n if (isMoved) {\\n // Calculate horizontal swipe distance\\n diff = slidePos.left - (previous.pos * slidePos.width + previous.pos * previous.opts.gutter);\\n $.each(self.slides, function (index, slide) {\\n slide.$slide.removeClass(\"fancybox-animated\").removeClass(function (index, className) {\\n return (className.match(/(^|\\\\s)fancybox-fx-\\\\S+/g) || []).join(\" \");\\n }); // Make sure that each slide is in equal distance\\n // This is mostly needed for freshly added slides, because they are not yet positioned\\n\\n var leftPos = slide.pos * slidePos.width + slide.pos * slide.opts.gutter;\\n $.fancybox.setTranslate(slide.$slide, {\\n top: 0,\\n left: leftPos - stagePos.left + diff\\n });\\n\\n if (slide.pos !== current.pos) {\\n slide.$slide.addClass(\"fancybox-slide--\" + (slide.pos > current.pos ? \"next\" : \"previous\"));\\n } // Redraw to make sure that transition will start\\n\\n\\n forceRedraw(slide.$slide); // Animate the slide\\n\\n $.fancybox.animate(slide.$slide, {\\n top: 0,\\n left: (slide.pos - current.pos) * slidePos.width + (slide.pos - current.pos) * slide.opts.gutter\\n }, duration, function () {\\n slide.$slide.css({\\n transform: \"\",\\n opacity: \"\"\\n }).removeClass(\"fancybox-slide--next fancybox-slide--previous\");\\n\\n if (slide.pos === self.currPos) {\\n self.complete();\\n }\\n });\\n });\\n } else if (duration && current.opts.transitionEffect) {\\n // Set transition effect for previously active slide\\n prop = \"fancybox-animated fancybox-fx-\" + current.opts.transitionEffect;\\n previous.$slide.addClass(\"fancybox-slide--\" + (previous.pos > current.pos ? \"next\" : \"previous\"));\\n $.fancybox.animate(previous.$slide, prop, duration, function () {\\n previous.$slide.removeClass(prop).removeClass(\"fancybox-slide--next fancybox-slide--previous\");\\n }, false);\\n }\\n\\n if (current.isLoaded) {\\n self.revealContent(current);\\n } else {\\n self.loadSlide(current);\\n }\\n\\n self.preload(\"image\");\\n },\\n // Create new \"slide\" element\\n // These are gallery items that are actually added to DOM\\n // =======================================================\\n createSlide: function createSlide(pos) {\\n var self = this,\\n $slide,\\n index;\\n index = pos % self.group.length;\\n index = index < 0 ? self.group.length + index : index;\\n\\n if (!self.slides[pos] && self.group[index]) {\\n $slide = $(\\'
    \\').appendTo(self.$refs.stage);\\n self.slides[pos] = $.extend(true, {}, self.group[index], {\\n pos: pos,\\n $slide: $slide,\\n isLoaded: false\\n });\\n self.updateSlide(self.slides[pos]);\\n }\\n\\n return self.slides[pos];\\n },\\n // Scale image to the actual size of the image;\\n // x and y values should be relative to the slide\\n // ==============================================\\n scaleToActual: function scaleToActual(x, y, duration) {\\n var self = this,\\n current = self.current,\\n $content = current.$content,\\n canvasWidth = $.fancybox.getTranslate(current.$slide).width,\\n canvasHeight = $.fancybox.getTranslate(current.$slide).height,\\n newImgWidth = current.width,\\n newImgHeight = current.height,\\n imgPos,\\n posX,\\n posY,\\n scaleX,\\n scaleY;\\n\\n if (self.isAnimating || self.isMoved() || !$content || !(current.type == \"image\" && current.isLoaded && !current.hasError)) {\\n return;\\n }\\n\\n self.isAnimating = true;\\n $.fancybox.stop($content);\\n x = x === undefined ? canvasWidth * 0.5 : x;\\n y = y === undefined ? canvasHeight * 0.5 : y;\\n imgPos = $.fancybox.getTranslate($content);\\n imgPos.top -= $.fancybox.getTranslate(current.$slide).top;\\n imgPos.left -= $.fancybox.getTranslate(current.$slide).left;\\n scaleX = newImgWidth / imgPos.width;\\n scaleY = newImgHeight / imgPos.height; // Get center position for original image\\n\\n posX = canvasWidth * 0.5 - newImgWidth * 0.5;\\n posY = canvasHeight * 0.5 - newImgHeight * 0.5; // Make sure image does not move away from edges\\n\\n if (newImgWidth > canvasWidth) {\\n posX = imgPos.left * scaleX - (x * scaleX - x);\\n\\n if (posX > 0) {\\n posX = 0;\\n }\\n\\n if (posX < canvasWidth - newImgWidth) {\\n posX = canvasWidth - newImgWidth;\\n }\\n }\\n\\n if (newImgHeight > canvasHeight) {\\n posY = imgPos.top * scaleY - (y * scaleY - y);\\n\\n if (posY > 0) {\\n posY = 0;\\n }\\n\\n if (posY < canvasHeight - newImgHeight) {\\n posY = canvasHeight - newImgHeight;\\n }\\n }\\n\\n self.updateCursor(newImgWidth, newImgHeight);\\n $.fancybox.animate($content, {\\n top: posY,\\n left: posX,\\n scaleX: scaleX,\\n scaleY: scaleY\\n }, duration || 366, function () {\\n self.isAnimating = false;\\n }); // Stop slideshow\\n\\n if (self.SlideShow && self.SlideShow.isActive) {\\n self.SlideShow.stop();\\n }\\n },\\n // Scale image to fit inside parent element\\n // ========================================\\n scaleToFit: function scaleToFit(duration) {\\n var self = this,\\n current = self.current,\\n $content = current.$content,\\n end;\\n\\n if (self.isAnimating || self.isMoved() || !$content || !(current.type == \"image\" && current.isLoaded && !current.hasError)) {\\n return;\\n }\\n\\n self.isAnimating = true;\\n $.fancybox.stop($content);\\n end = self.getFitPos(current);\\n self.updateCursor(end.width, end.height);\\n $.fancybox.animate($content, {\\n top: end.top,\\n left: end.left,\\n scaleX: end.width / $content.width(),\\n scaleY: end.height / $content.height()\\n }, duration || 366, function () {\\n self.isAnimating = false;\\n });\\n },\\n // Calculate image size to fit inside viewport\\n // ===========================================\\n getFitPos: function getFitPos(slide) {\\n var self = this,\\n $content = slide.$content,\\n $slide = slide.$slide,\\n width = slide.width || slide.opts.width,\\n height = slide.height || slide.opts.height,\\n maxWidth,\\n maxHeight,\\n minRatio,\\n aspectRatio,\\n rez = {};\\n\\n if (!slide.isLoaded || !$content || !$content.length) {\\n return false;\\n }\\n\\n maxWidth = $.fancybox.getTranslate(self.$refs.stage).width;\\n maxHeight = $.fancybox.getTranslate(self.$refs.stage).height;\\n maxWidth -= parseFloat($slide.css(\"paddingLeft\")) + parseFloat($slide.css(\"paddingRight\")) + parseFloat($content.css(\"marginLeft\")) + parseFloat($content.css(\"marginRight\"));\\n maxHeight -= parseFloat($slide.css(\"paddingTop\")) + parseFloat($slide.css(\"paddingBottom\")) + parseFloat($content.css(\"marginTop\")) + parseFloat($content.css(\"marginBottom\"));\\n\\n if (!width || !height) {\\n width = maxWidth;\\n height = maxHeight;\\n }\\n\\n minRatio = Math.min(1, maxWidth / width, maxHeight / height);\\n width = minRatio * width;\\n height = minRatio * height; // Adjust width/height to precisely fit into container\\n\\n if (width > maxWidth - 0.5) {\\n width = maxWidth;\\n }\\n\\n if (height > maxHeight - 0.5) {\\n height = maxHeight;\\n }\\n\\n if (slide.type === \"image\") {\\n rez.top = Math.floor((maxHeight - height) * 0.5) + parseFloat($slide.css(\"paddingTop\"));\\n rez.left = Math.floor((maxWidth - width) * 0.5) + parseFloat($slide.css(\"paddingLeft\"));\\n } else if (slide.contentType === \"video\") {\\n // Force aspect ratio for the video\\n // \"I say the whole world must learn of our peaceful ways… by force!\"\\n aspectRatio = slide.opts.width && slide.opts.height ? width / height : slide.opts.ratio || 16 / 9;\\n\\n if (height > width / aspectRatio) {\\n height = width / aspectRatio;\\n } else if (width > height * aspectRatio) {\\n width = height * aspectRatio;\\n }\\n }\\n\\n rez.width = width;\\n rez.height = height;\\n return rez;\\n },\\n // Update content size and position for all slides\\n // ==============================================\\n update: function update(e) {\\n var self = this;\\n $.each(self.slides, function (key, slide) {\\n self.updateSlide(slide, e);\\n });\\n },\\n // Update slide content position and size\\n // ======================================\\n updateSlide: function updateSlide(slide, e) {\\n var self = this,\\n $content = slide && slide.$content,\\n width = slide.width || slide.opts.width,\\n height = slide.height || slide.opts.height,\\n $slide = slide.$slide; // First, prevent caption overlap, if needed\\n\\n self.adjustCaption(slide); // Then resize content to fit inside the slide\\n\\n if ($content && (width || height || slide.contentType === \"video\") && !slide.hasError) {\\n $.fancybox.stop($content);\\n $.fancybox.setTranslate($content, self.getFitPos(slide));\\n\\n if (slide.pos === self.currPos) {\\n self.isAnimating = false;\\n self.updateCursor();\\n }\\n } // Then some adjustments\\n\\n\\n self.adjustLayout(slide);\\n\\n if ($slide.length) {\\n $slide.trigger(\"refresh\");\\n\\n if (slide.pos === self.currPos) {\\n self.$refs.toolbar.add(self.$refs.navigation.find(\".fancybox-button--arrow_right\")).toggleClass(\"compensate-for-scrollbar\", $slide.get(0).scrollHeight > $slide.get(0).clientHeight);\\n }\\n }\\n\\n self.trigger(\"onUpdate\", slide, e);\\n },\\n // Horizontally center slide\\n // =========================\\n centerSlide: function centerSlide(duration) {\\n var self = this,\\n current = self.current,\\n $slide = current.$slide;\\n\\n if (self.isClosing || !current) {\\n return;\\n }\\n\\n $slide.siblings().css({\\n transform: \"\",\\n opacity: \"\"\\n });\\n $slide.parent().children().removeClass(\"fancybox-slide--previous fancybox-slide--next\");\\n $.fancybox.animate($slide, {\\n top: 0,\\n left: 0,\\n opacity: 1\\n }, duration === undefined ? 0 : duration, function () {\\n // Clean up\\n $slide.css({\\n transform: \"\",\\n opacity: \"\"\\n });\\n\\n if (!current.isComplete) {\\n self.complete();\\n }\\n }, false);\\n },\\n // Check if current slide is moved (swiped)\\n // ========================================\\n isMoved: function isMoved(slide) {\\n var current = slide || this.current,\\n slidePos,\\n stagePos;\\n\\n if (!current) {\\n return false;\\n }\\n\\n stagePos = $.fancybox.getTranslate(this.$refs.stage);\\n slidePos = $.fancybox.getTranslate(current.$slide);\\n return !current.$slide.hasClass(\"fancybox-animated\") && (Math.abs(slidePos.top - stagePos.top) > 0.5 || Math.abs(slidePos.left - stagePos.left) > 0.5);\\n },\\n // Update cursor style depending if content can be zoomed\\n // ======================================================\\n updateCursor: function updateCursor(nextWidth, nextHeight) {\\n var self = this,\\n current = self.current,\\n $container = self.$refs.container,\\n canPan,\\n isZoomable;\\n\\n if (!current || self.isClosing || !self.Guestures) {\\n return;\\n }\\n\\n $container.removeClass(\"fancybox-is-zoomable fancybox-can-zoomIn fancybox-can-zoomOut fancybox-can-swipe fancybox-can-pan\");\\n canPan = self.canPan(nextWidth, nextHeight);\\n isZoomable = canPan ? true : self.isZoomable();\\n $container.toggleClass(\"fancybox-is-zoomable\", isZoomable);\\n $(\"[data-fancybox-zoom]\").prop(\"disabled\", !isZoomable);\\n\\n if (canPan) {\\n $container.addClass(\"fancybox-can-pan\");\\n } else if (isZoomable && (current.opts.clickContent === \"zoom\" || $.isFunction(current.opts.clickContent) && current.opts.clickContent(current) == \"zoom\")) {\\n $container.addClass(\"fancybox-can-zoomIn\");\\n } else if (current.opts.touch && (current.opts.touch.vertical || self.group.length > 1) && current.contentType !== \"video\") {\\n $container.addClass(\"fancybox-can-swipe\");\\n }\\n },\\n // Check if current slide is zoomable\\n // ==================================\\n isZoomable: function isZoomable() {\\n var self = this,\\n current = self.current,\\n fitPos; // Assume that slide is zoomable if:\\n // - image is still loading\\n // - actual size of the image is smaller than available area\\n\\n if (current && !self.isClosing && current.type === \"image\" && !current.hasError) {\\n if (!current.isLoaded) {\\n return true;\\n }\\n\\n fitPos = self.getFitPos(current);\\n\\n if (fitPos && (current.width > fitPos.width || current.height > fitPos.height)) {\\n return true;\\n }\\n }\\n\\n return false;\\n },\\n // Check if current image dimensions are smaller than actual\\n // =========================================================\\n isScaledDown: function isScaledDown(nextWidth, nextHeight) {\\n var self = this,\\n rez = false,\\n current = self.current,\\n $content = current.$content;\\n\\n if (nextWidth !== undefined && nextHeight !== undefined) {\\n rez = nextWidth < current.width && nextHeight < current.height;\\n } else if ($content) {\\n rez = $.fancybox.getTranslate($content);\\n rez = rez.width < current.width && rez.height < current.height;\\n }\\n\\n return rez;\\n },\\n // Check if image dimensions exceed parent element\\n // ===============================================\\n canPan: function canPan(nextWidth, nextHeight) {\\n var self = this,\\n current = self.current,\\n pos = null,\\n rez = false;\\n\\n if (current.type === \"image\" && (current.isComplete || nextWidth && nextHeight) && !current.hasError) {\\n rez = self.getFitPos(current);\\n\\n if (nextWidth !== undefined && nextHeight !== undefined) {\\n pos = {\\n width: nextWidth,\\n height: nextHeight\\n };\\n } else if (current.isComplete) {\\n pos = $.fancybox.getTranslate(current.$content);\\n }\\n\\n if (pos && rez) {\\n rez = Math.abs(pos.width - rez.width) > 1.5 || Math.abs(pos.height - rez.height) > 1.5;\\n }\\n }\\n\\n return rez;\\n },\\n // Load content into the slide\\n // ===========================\\n loadSlide: function loadSlide(slide) {\\n var self = this,\\n type,\\n $slide,\\n ajaxLoad;\\n\\n if (slide.isLoading || slide.isLoaded) {\\n return;\\n }\\n\\n slide.isLoading = true;\\n\\n if (self.trigger(\"beforeLoad\", slide) === false) {\\n slide.isLoading = false;\\n return false;\\n }\\n\\n type = slide.type;\\n $slide = slide.$slide;\\n $slide.off(\"refresh\").trigger(\"onReset\").addClass(slide.opts.slideClass); // Create content depending on the type\\n\\n switch (type) {\\n case \"image\":\\n self.setImage(slide);\\n break;\\n\\n case \"iframe\":\\n self.setIframe(slide);\\n break;\\n\\n case \"html\":\\n self.setContent(slide, slide.src || slide.content);\\n break;\\n\\n case \"video\":\\n self.setContent(slide, slide.opts.video.tpl.replace(/\\\\{\\\\{src\\\\}\\\\}/gi, slide.src).replace(\"{{format}}\", slide.opts.videoFormat || slide.opts.video.format || \"\").replace(\"{{poster}}\", slide.thumb || \"\"));\\n break;\\n\\n case \"inline\":\\n if ($(slide.src).length) {\\n self.setContent(slide, $(slide.src));\\n } else {\\n self.setError(slide);\\n }\\n\\n break;\\n\\n case \"ajax\":\\n self.showLoading(slide);\\n ajaxLoad = $.ajax($.extend({}, slide.opts.ajax.settings, {\\n url: slide.src,\\n success: function success(data, textStatus) {\\n if (textStatus === \"success\") {\\n self.setContent(slide, data);\\n }\\n },\\n error: function error(jqXHR, textStatus) {\\n if (jqXHR && textStatus !== \"abort\") {\\n self.setError(slide);\\n }\\n }\\n }));\\n $slide.one(\"onReset\", function () {\\n ajaxLoad.abort();\\n });\\n break;\\n\\n default:\\n self.setError(slide);\\n break;\\n }\\n\\n return true;\\n },\\n // Use thumbnail image, if possible\\n // ================================\\n setImage: function setImage(slide) {\\n var self = this,\\n ghost; // Check if need to show loading icon\\n\\n setTimeout(function () {\\n var $img = slide.$image;\\n\\n if (!self.isClosing && slide.isLoading && (!$img || !$img.length || !$img[0].complete) && !slide.hasError) {\\n self.showLoading(slide);\\n }\\n }, 50); //Check if image has srcset\\n\\n self.checkSrcset(slide); // This will be wrapper containing both ghost and actual image\\n\\n slide.$content = $(\\'
    \\').addClass(\"fancybox-is-hidden\").appendTo(slide.$slide.addClass(\"fancybox-slide--image\")); // If we have a thumbnail, we can display it while actual image is loading\\n // Users will not stare at black screen and actual image will appear gradually\\n\\n if (slide.opts.preload !== false && slide.opts.width && slide.opts.height && slide.thumb) {\\n slide.width = slide.opts.width;\\n slide.height = slide.opts.height;\\n ghost = document.createElement(\"img\");\\n\\n ghost.onerror = function () {\\n $(this).remove();\\n slide.$ghost = null;\\n };\\n\\n ghost.onload = function () {\\n self.afterLoad(slide);\\n };\\n\\n slide.$ghost = $(ghost).addClass(\"fancybox-image\").appendTo(slide.$content).attr(\"src\", slide.thumb);\\n } // Start loading actual image\\n\\n\\n self.setBigImage(slide);\\n },\\n // Check if image has srcset and get the source\\n // ============================================\\n checkSrcset: function checkSrcset(slide) {\\n var srcset = slide.opts.srcset || slide.opts.image.srcset,\\n found,\\n temp,\\n pxRatio,\\n windowWidth; // If we have \"srcset\", then we need to find first matching \"src\" value.\\n // This is necessary, because when you set an src attribute, the browser will preload the image\\n // before any javascript or even CSS is applied.\\n\\n if (srcset) {\\n pxRatio = window.devicePixelRatio || 1;\\n windowWidth = window.innerWidth * pxRatio;\\n temp = srcset.split(\",\").map(function (el) {\\n var ret = {};\\n el.trim().split(/\\\\s+/).forEach(function (el, i) {\\n var value = parseInt(el.substring(0, el.length - 1), 10);\\n\\n if (i === 0) {\\n return ret.url = el;\\n }\\n\\n if (value) {\\n ret.value = value;\\n ret.postfix = el[el.length - 1];\\n }\\n });\\n return ret;\\n }); // Sort by value\\n\\n temp.sort(function (a, b) {\\n return a.value - b.value;\\n }); // Ok, now we have an array of all srcset values\\n\\n for (var j = 0; j < temp.length; j++) {\\n var el = temp[j];\\n\\n if (el.postfix === \"w\" && el.value >= windowWidth || el.postfix === \"x\" && el.value >= pxRatio) {\\n found = el;\\n break;\\n }\\n } // If not found, take the last one\\n\\n\\n if (!found && temp.length) {\\n found = temp[temp.length - 1];\\n }\\n\\n if (found) {\\n slide.src = found.url; // If we have default width/height values, we can calculate height for matching source\\n\\n if (slide.width && slide.height && found.postfix == \"w\") {\\n slide.height = slide.width / slide.height * found.value;\\n slide.width = found.value;\\n }\\n\\n slide.opts.srcset = srcset;\\n }\\n }\\n },\\n // Create full-size image\\n // ======================\\n setBigImage: function setBigImage(slide) {\\n var self = this,\\n img = document.createElement(\"img\"),\\n $img = $(img);\\n slide.$image = $img.one(\"error\", function () {\\n self.setError(slide);\\n }).one(\"load\", function () {\\n var sizes;\\n\\n if (!slide.$ghost) {\\n self.resolveImageSlideSize(slide, this.naturalWidth, this.naturalHeight);\\n self.afterLoad(slide);\\n }\\n\\n if (self.isClosing) {\\n return;\\n }\\n\\n if (slide.opts.srcset) {\\n sizes = slide.opts.sizes;\\n\\n if (!sizes || sizes === \"auto\") {\\n sizes = (slide.width / slide.height > 1 && $W.width() / $W.height() > 1 ? \"100\" : Math.round(slide.width / slide.height * 100)) + \"vw\";\\n }\\n\\n $img.attr(\"sizes\", sizes).attr(\"srcset\", slide.opts.srcset);\\n } // Hide temporary image after some delay\\n\\n\\n if (slide.$ghost) {\\n setTimeout(function () {\\n if (slide.$ghost && !self.isClosing) {\\n slide.$ghost.hide();\\n }\\n }, Math.min(300, Math.max(1000, slide.height / 1600)));\\n }\\n\\n self.hideLoading(slide);\\n }).addClass(\"fancybox-image\").attr(\"src\", slide.src).appendTo(slide.$content);\\n\\n if ((img.complete || img.readyState == \"complete\") && $img.naturalWidth && $img.naturalHeight) {\\n $img.trigger(\"load\");\\n } else if (img.error) {\\n $img.trigger(\"error\");\\n }\\n },\\n // Computes the slide size from image size and maxWidth/maxHeight\\n // ==============================================================\\n resolveImageSlideSize: function resolveImageSlideSize(slide, imgWidth, imgHeight) {\\n var maxWidth = parseInt(slide.opts.width, 10),\\n maxHeight = parseInt(slide.opts.height, 10); // Sets the default values from the image\\n\\n slide.width = imgWidth;\\n slide.height = imgHeight;\\n\\n if (maxWidth > 0) {\\n slide.width = maxWidth;\\n slide.height = Math.floor(maxWidth * imgHeight / imgWidth);\\n }\\n\\n if (maxHeight > 0) {\\n slide.width = Math.floor(maxHeight * imgWidth / imgHeight);\\n slide.height = maxHeight;\\n }\\n },\\n // Create iframe wrapper, iframe and bindings\\n // ==========================================\\n setIframe: function setIframe(slide) {\\n var self = this,\\n opts = slide.opts.iframe,\\n $slide = slide.$slide,\\n $iframe;\\n slide.$content = $(\\'
    \\').css(opts.css).appendTo($slide);\\n $slide.addClass(\"fancybox-slide--\" + slide.contentType);\\n slide.$iframe = $iframe = $(opts.tpl.replace(/\\\\{rnd\\\\}/g, new Date().getTime())).attr(opts.attr).appendTo(slide.$content);\\n\\n if (opts.preload) {\\n self.showLoading(slide); // Unfortunately, it is not always possible to determine if iframe is successfully loaded\\n // (due to browser security policy)\\n\\n $iframe.on(\"load.fb error.fb\", function (e) {\\n this.isReady = 1;\\n slide.$slide.trigger(\"refresh\");\\n self.afterLoad(slide);\\n }); // Recalculate iframe content size\\n // ===============================\\n\\n $slide.on(\"refresh.fb\", function () {\\n var $content = slide.$content,\\n frameWidth = opts.css.width,\\n frameHeight = opts.css.height,\\n $contents,\\n $body;\\n\\n if ($iframe[0].isReady !== 1) {\\n return;\\n }\\n\\n try {\\n $contents = $iframe.contents();\\n $body = $contents.find(\"body\");\\n } catch (ignore) {} // Calculate content dimensions, if it is accessible\\n\\n\\n if ($body && $body.length && $body.children().length) {\\n // Avoid scrolling to top (if multiple instances)\\n $slide.css(\"overflow\", \"visible\");\\n $content.css({\\n width: \"100%\",\\n \"max-width\": \"100%\",\\n height: \"9999px\"\\n });\\n\\n if (frameWidth === undefined) {\\n frameWidth = Math.ceil(Math.max($body[0].clientWidth, $body.outerWidth(true)));\\n }\\n\\n $content.css(\"width\", frameWidth ? frameWidth : \"\").css(\"max-width\", \"\");\\n\\n if (frameHeight === undefined) {\\n frameHeight = Math.ceil(Math.max($body[0].clientHeight, $body.outerHeight(true)));\\n }\\n\\n $content.css(\"height\", frameHeight ? frameHeight : \"\");\\n $slide.css(\"overflow\", \"auto\");\\n }\\n\\n $content.removeClass(\"fancybox-is-hidden\");\\n });\\n } else {\\n self.afterLoad(slide);\\n }\\n\\n $iframe.attr(\"src\", slide.src); // Remove iframe if closing or changing gallery item\\n\\n $slide.one(\"onReset\", function () {\\n // This helps IE not to throw errors when closing\\n try {\\n $(this).find(\"iframe\").hide().unbind().attr(\"src\", \"//about:blank\");\\n } catch (ignore) {}\\n\\n $(this).off(\"refresh.fb\").empty();\\n slide.isLoaded = false;\\n slide.isRevealed = false;\\n });\\n },\\n // Wrap and append content to the slide\\n // ======================================\\n setContent: function setContent(slide, content) {\\n var self = this;\\n\\n if (self.isClosing) {\\n return;\\n }\\n\\n self.hideLoading(slide);\\n\\n if (slide.$content) {\\n $.fancybox.stop(slide.$content);\\n }\\n\\n slide.$slide.empty(); // If content is a jQuery object, then it will be moved to the slide.\\n // The placeholder is created so we will know where to put it back.\\n\\n if (isQuery(content) && content.parent().length) {\\n // Make sure content is not already moved to fancyBox\\n if (content.hasClass(\"fancybox-content\") || content.parent().hasClass(\"fancybox-content\")) {\\n content.parents(\".fancybox-slide\").trigger(\"onReset\");\\n } // Create temporary element marking original place of the content\\n\\n\\n slide.$placeholder = $(\"
    \").hide().insertAfter(content); // Make sure content is visible\\n\\n content.css(\"display\", \"inline-block\");\\n } else if (!slide.hasError) {\\n // If content is just a plain text, try to convert it to html\\n if ($.type(content) === \"string\") {\\n content = $(\"
    \").append($.trim(content)).contents();\\n } // If \"filter\" option is provided, then filter content\\n\\n\\n if (slide.opts.filter) {\\n content = $(\"
    \").html(content).find(slide.opts.filter);\\n }\\n }\\n\\n slide.$slide.one(\"onReset\", function () {\\n // Pause all html5 video/audio\\n $(this).find(\"video,audio\").trigger(\"pause\"); // Put content back\\n\\n if (slide.$placeholder) {\\n slide.$placeholder.after(content.removeClass(\"fancybox-content\").hide()).remove();\\n slide.$placeholder = null;\\n } // Remove custom close button\\n\\n\\n if (slide.$smallBtn) {\\n slide.$smallBtn.remove();\\n slide.$smallBtn = null;\\n } // Remove content and mark slide as not loaded\\n\\n\\n if (!slide.hasError) {\\n $(this).empty();\\n slide.isLoaded = false;\\n slide.isRevealed = false;\\n }\\n });\\n $(content).appendTo(slide.$slide);\\n\\n if ($(content).is(\"video,audio\")) {\\n $(content).addClass(\"fancybox-video\");\\n $(content).wrap(\"
    \");\\n slide.contentType = \"video\";\\n slide.opts.width = slide.opts.width || $(content).attr(\"width\");\\n slide.opts.height = slide.opts.height || $(content).attr(\"height\");\\n }\\n\\n slide.$content = slide.$slide.children().filter(\"div,form,main,video,audio,article,.fancybox-content\").first();\\n slide.$content.siblings().hide(); // Re-check if there is a valid content\\n // (in some cases, ajax response can contain various elements or plain text)\\n\\n if (!slide.$content.length) {\\n slide.$content = slide.$slide.wrapInner(\"
    \").children().first();\\n }\\n\\n slide.$content.addClass(\"fancybox-content\");\\n slide.$slide.addClass(\"fancybox-slide--\" + slide.contentType);\\n self.afterLoad(slide);\\n },\\n // Display error message\\n // =====================\\n setError: function setError(slide) {\\n slide.hasError = true;\\n slide.$slide.trigger(\"onReset\").removeClass(\"fancybox-slide--\" + slide.contentType).addClass(\"fancybox-slide--error\");\\n slide.contentType = \"html\";\\n this.setContent(slide, this.translate(slide, slide.opts.errorTpl));\\n\\n if (slide.pos === this.currPos) {\\n this.isAnimating = false;\\n }\\n },\\n // Show loading icon inside the slide\\n // ==================================\\n showLoading: function showLoading(slide) {\\n var self = this;\\n slide = slide || self.current;\\n\\n if (slide && !slide.$spinner) {\\n slide.$spinner = $(self.translate(self, self.opts.spinnerTpl)).appendTo(slide.$slide).hide().fadeIn(\"fast\");\\n }\\n },\\n // Remove loading icon from the slide\\n // ==================================\\n hideLoading: function hideLoading(slide) {\\n var self = this;\\n slide = slide || self.current;\\n\\n if (slide && slide.$spinner) {\\n slide.$spinner.stop().remove();\\n delete slide.$spinner;\\n }\\n },\\n // Adjustments after slide content has been loaded\\n // ===============================================\\n afterLoad: function afterLoad(slide) {\\n var self = this;\\n\\n if (self.isClosing) {\\n return;\\n }\\n\\n slide.isLoading = false;\\n slide.isLoaded = true;\\n self.trigger(\"afterLoad\", slide);\\n self.hideLoading(slide); // Add small close button\\n\\n if (slide.opts.smallBtn && (!slide.$smallBtn || !slide.$smallBtn.length)) {\\n slide.$smallBtn = $(self.translate(slide, slide.opts.btnTpl.smallBtn)).appendTo(slide.$content);\\n } // Disable right click\\n\\n\\n if (slide.opts.protect && slide.$content && !slide.hasError) {\\n slide.$content.on(\"contextmenu.fb\", function (e) {\\n if (e.button == 2) {\\n e.preventDefault();\\n }\\n\\n return true;\\n }); // Add fake element on top of the image\\n // This makes a bit harder for user to select image\\n\\n if (slide.type === \"image\") {\\n $(\\'
    \\').appendTo(slide.$content);\\n }\\n }\\n\\n self.adjustCaption(slide);\\n self.adjustLayout(slide);\\n\\n if (slide.pos === self.currPos) {\\n self.updateCursor();\\n }\\n\\n self.revealContent(slide);\\n },\\n // Prevent caption overlap,\\n // fix css inconsistency across browsers\\n // =====================================\\n adjustCaption: function adjustCaption(slide) {\\n var self = this,\\n current = slide || self.current,\\n caption = current.opts.caption,\\n preventOverlap = current.opts.preventCaptionOverlap,\\n $caption = self.$refs.caption,\\n $clone,\\n captionH = false;\\n $caption.toggleClass(\"fancybox-caption--separate\", preventOverlap);\\n\\n if (preventOverlap && caption && caption.length) {\\n if (current.pos !== self.currPos) {\\n $clone = $caption.clone().appendTo($caption.parent());\\n $clone.children().eq(0).empty().html(caption);\\n captionH = $clone.outerHeight(true);\\n $clone.empty().remove();\\n } else if (self.$caption) {\\n captionH = self.$caption.outerHeight(true);\\n }\\n\\n current.$slide.css(\"padding-bottom\", captionH || \"\");\\n }\\n },\\n // Simple hack to fix inconsistency across browsers, described here (affects Edge, too):\\n // https://bugzilla.mozilla.org/show_bug.cgi?id=748518\\n // ====================================================================================\\n adjustLayout: function adjustLayout(slide) {\\n var self = this,\\n current = slide || self.current,\\n scrollHeight,\\n marginBottom,\\n inlinePadding,\\n actualPadding;\\n\\n if (current.isLoaded && current.opts.disableLayoutFix !== true) {\\n current.$content.css(\"margin-bottom\", \"\"); // If we would always set margin-bottom for the content,\\n // then it would potentially break vertical align\\n\\n if (current.$content.outerHeight() > current.$slide.height() + 0.5) {\\n inlinePadding = current.$slide[0].style[\"padding-bottom\"];\\n actualPadding = current.$slide.css(\"padding-bottom\");\\n\\n if (parseFloat(actualPadding) > 0) {\\n scrollHeight = current.$slide[0].scrollHeight;\\n current.$slide.css(\"padding-bottom\", 0);\\n\\n if (Math.abs(scrollHeight - current.$slide[0].scrollHeight) < 1) {\\n marginBottom = actualPadding;\\n }\\n\\n current.$slide.css(\"padding-bottom\", inlinePadding);\\n }\\n }\\n\\n current.$content.css(\"margin-bottom\", marginBottom);\\n }\\n },\\n // Make content visible\\n // This method is called right after content has been loaded or\\n // user navigates gallery and transition should start\\n // ============================================================\\n revealContent: function revealContent(slide) {\\n var self = this,\\n $slide = slide.$slide,\\n end = false,\\n start = false,\\n isMoved = self.isMoved(slide),\\n isRevealed = slide.isRevealed,\\n effect,\\n effectClassName,\\n duration,\\n opacity;\\n slide.isRevealed = true;\\n effect = slide.opts[self.firstRun ? \"animationEffect\" : \"transitionEffect\"];\\n duration = slide.opts[self.firstRun ? \"animationDuration\" : \"transitionDuration\"];\\n duration = parseInt(slide.forcedDuration === undefined ? duration : slide.forcedDuration, 10);\\n\\n if (isMoved || slide.pos !== self.currPos || !duration) {\\n effect = false;\\n } // Check if can zoom\\n\\n\\n if (effect === \"zoom\") {\\n if (slide.pos === self.currPos && duration && slide.type === \"image\" && !slide.hasError && (start = self.getThumbPos(slide))) {\\n end = self.getFitPos(slide);\\n } else {\\n effect = \"fade\";\\n }\\n } // Zoom animation\\n // ==============\\n\\n\\n if (effect === \"zoom\") {\\n self.isAnimating = true;\\n end.scaleX = end.width / start.width;\\n end.scaleY = end.height / start.height; // Check if we need to animate opacity\\n\\n opacity = slide.opts.zoomOpacity;\\n\\n if (opacity == \"auto\") {\\n opacity = Math.abs(slide.width / slide.height - start.width / start.height) > 0.1;\\n }\\n\\n if (opacity) {\\n start.opacity = 0.1;\\n end.opacity = 1;\\n } // Draw image at start position\\n\\n\\n $.fancybox.setTranslate(slide.$content.removeClass(\"fancybox-is-hidden\"), start);\\n forceRedraw(slide.$content); // Start animation\\n\\n $.fancybox.animate(slide.$content, end, duration, function () {\\n self.isAnimating = false;\\n self.complete();\\n });\\n return;\\n }\\n\\n self.updateSlide(slide); // Simply show content if no effect\\n // ================================\\n\\n if (!effect) {\\n slide.$content.removeClass(\"fancybox-is-hidden\");\\n\\n if (!isRevealed && isMoved && slide.type === \"image\" && !slide.hasError) {\\n slide.$content.hide().fadeIn(\"fast\");\\n }\\n\\n if (slide.pos === self.currPos) {\\n self.complete();\\n }\\n\\n return;\\n } // Prepare for CSS transiton\\n // =========================\\n\\n\\n $.fancybox.stop($slide); //effectClassName = \"fancybox-animated fancybox-slide--\" + (slide.pos >= self.prevPos ? \"next\" : \"previous\") + \" fancybox-fx-\" + effect;\\n\\n effectClassName = \"fancybox-slide--\" + (slide.pos >= self.prevPos ? \"next\" : \"previous\") + \" fancybox-animated fancybox-fx-\" + effect;\\n $slide.addClass(effectClassName).removeClass(\"fancybox-slide--current\"); //.addClass(effectClassName);\\n\\n slide.$content.removeClass(\"fancybox-is-hidden\"); // Force reflow\\n\\n forceRedraw($slide);\\n\\n if (slide.type !== \"image\") {\\n slide.$content.hide().show(0);\\n }\\n\\n $.fancybox.animate($slide, \"fancybox-slide--current\", duration, function () {\\n $slide.removeClass(effectClassName).css({\\n transform: \"\",\\n opacity: \"\"\\n });\\n\\n if (slide.pos === self.currPos) {\\n self.complete();\\n }\\n }, true);\\n },\\n // Check if we can and have to zoom from thumbnail\\n //================================================\\n getThumbPos: function getThumbPos(slide) {\\n var rez = false,\\n $thumb = slide.$thumb,\\n thumbPos,\\n btw,\\n brw,\\n bbw,\\n blw;\\n\\n if (!$thumb || !inViewport($thumb[0])) {\\n return false;\\n }\\n\\n thumbPos = $.fancybox.getTranslate($thumb);\\n btw = parseFloat($thumb.css(\"border-top-width\") || 0);\\n brw = parseFloat($thumb.css(\"border-right-width\") || 0);\\n bbw = parseFloat($thumb.css(\"border-bottom-width\") || 0);\\n blw = parseFloat($thumb.css(\"border-left-width\") || 0);\\n rez = {\\n top: thumbPos.top + btw,\\n left: thumbPos.left + blw,\\n width: thumbPos.width - brw - blw,\\n height: thumbPos.height - btw - bbw,\\n scaleX: 1,\\n scaleY: 1\\n };\\n return thumbPos.width > 0 && thumbPos.height > 0 ? rez : false;\\n },\\n // Final adjustments after current gallery item is moved to position\\n // and it`s content is loaded\\n // ==================================================================\\n complete: function complete() {\\n var self = this,\\n current = self.current,\\n slides = {},\\n $el;\\n\\n if (self.isMoved() || !current.isLoaded) {\\n return;\\n }\\n\\n if (!current.isComplete) {\\n current.isComplete = true;\\n current.$slide.siblings().trigger(\"onReset\");\\n self.preload(\"inline\"); // Trigger any CSS transiton inside the slide\\n\\n forceRedraw(current.$slide);\\n current.$slide.addClass(\"fancybox-slide--complete\"); // Remove unnecessary slides\\n\\n $.each(self.slides, function (key, slide) {\\n if (slide.pos >= self.currPos - 1 && slide.pos <= self.currPos + 1) {\\n slides[slide.pos] = slide;\\n } else if (slide) {\\n $.fancybox.stop(slide.$slide);\\n slide.$slide.off().remove();\\n }\\n });\\n self.slides = slides;\\n }\\n\\n self.isAnimating = false;\\n self.updateCursor();\\n self.trigger(\"afterShow\"); // Autoplay first html5 video/audio\\n\\n if (!!current.opts.video.autoStart) {\\n current.$slide.find(\"video,audio\").filter(\":visible:first\").trigger(\"play\").one(\"ended\", function () {\\n if (Document.exitFullscreen) {\\n Document.exitFullscreen();\\n } else if (this.webkitExitFullscreen) {\\n this.webkitExitFullscreen();\\n }\\n\\n self.next();\\n });\\n } // Try to focus on the first focusable element\\n\\n\\n if (current.opts.autoFocus && current.contentType === \"html\") {\\n // Look for the first input with autofocus attribute\\n $el = current.$content.find(\"input[autofocus]:enabled:visible:first\");\\n\\n if ($el.length) {\\n $el.trigger(\"focus\");\\n } else {\\n self.focus(null, true);\\n }\\n } // Avoid jumping\\n\\n\\n current.$slide.scrollTop(0).scrollLeft(0);\\n },\\n // Preload next and previous slides\\n // ================================\\n preload: function preload(type) {\\n var self = this,\\n prev,\\n next;\\n\\n if (self.group.length < 2) {\\n return;\\n }\\n\\n next = self.slides[self.currPos + 1];\\n prev = self.slides[self.currPos - 1];\\n\\n if (prev && prev.type === type) {\\n self.loadSlide(prev);\\n }\\n\\n if (next && next.type === type) {\\n self.loadSlide(next);\\n }\\n },\\n // Try to find and focus on the first focusable element\\n // ====================================================\\n focus: function focus(e, firstRun) {\\n var self = this,\\n focusableStr = [\"a[href]\", \"area[href]\", \\'input:not([disabled]):not([type=\"hidden\"]):not([aria-hidden])\\', \"select:not([disabled]):not([aria-hidden])\", \"textarea:not([disabled]):not([aria-hidden])\", \"button:not([disabled]):not([aria-hidden])\", \"iframe\", \"object\", \"embed\", \"video\", \"audio\", \"[contenteditable]\", \\'[tabindex]:not([tabindex^=\"-\"])\\'].join(\",\"),\\n focusableItems,\\n focusedItemIndex;\\n\\n if (self.isClosing) {\\n return;\\n }\\n\\n if (e || !self.current || !self.current.isComplete) {\\n // Focus on any element inside fancybox\\n focusableItems = self.$refs.container.find(\"*:visible\");\\n } else {\\n // Focus inside current slide\\n focusableItems = self.current.$slide.find(\"*:visible\" + (firstRun ? \":not(.fancybox-close-small)\" : \"\"));\\n }\\n\\n focusableItems = focusableItems.filter(focusableStr).filter(function () {\\n return $(this).css(\"visibility\") !== \"hidden\" && !$(this).hasClass(\"disabled\");\\n });\\n\\n if (focusableItems.length) {\\n focusedItemIndex = focusableItems.index(document.activeElement);\\n\\n if (e && e.shiftKey) {\\n // Back tab\\n if (focusedItemIndex < 0 || focusedItemIndex == 0) {\\n e.preventDefault();\\n focusableItems.eq(focusableItems.length - 1).trigger(\"focus\");\\n }\\n } else {\\n // Outside or Forward tab\\n if (focusedItemIndex < 0 || focusedItemIndex == focusableItems.length - 1) {\\n if (e) {\\n e.preventDefault();\\n }\\n\\n focusableItems.eq(0).trigger(\"focus\");\\n }\\n }\\n } else {\\n self.$refs.container.trigger(\"focus\");\\n }\\n },\\n // Activates current instance - brings container to the front and enables keyboard,\\n // notifies other instances about deactivating\\n // =================================================================================\\n activate: function activate() {\\n var self = this; // Deactivate all instances\\n\\n $(\".fancybox-container\").each(function () {\\n var instance = $(this).data(\"FancyBox\"); // Skip self and closing instances\\n\\n if (instance && instance.id !== self.id && !instance.isClosing) {\\n instance.trigger(\"onDeactivate\");\\n instance.removeEvents();\\n instance.isVisible = false;\\n }\\n });\\n self.isVisible = true;\\n\\n if (self.current || self.isIdle) {\\n self.update();\\n self.updateControls();\\n }\\n\\n self.trigger(\"onActivate\");\\n self.addEvents();\\n },\\n // Start closing procedure\\n // This will start \"zoom-out\" animation if needed and clean everything up afterwards\\n // =================================================================================\\n close: function close(e, d) {\\n var self = this,\\n current = self.current,\\n effect,\\n duration,\\n $content,\\n domRect,\\n opacity,\\n start,\\n end;\\n\\n var done = function done() {\\n self.cleanUp(e);\\n };\\n\\n if (self.isClosing) {\\n return false;\\n }\\n\\n self.isClosing = true; // If beforeClose callback prevents closing, make sure content is centered\\n\\n if (self.trigger(\"beforeClose\", e) === false) {\\n self.isClosing = false;\\n requestAFrame(function () {\\n self.update();\\n });\\n return false;\\n } // Remove all events\\n // If there are multiple instances, they will be set again by \"activate\" method\\n\\n\\n self.removeEvents();\\n $content = current.$content;\\n effect = current.opts.animationEffect;\\n duration = $.isNumeric(d) ? d : effect ? current.opts.animationDuration : 0;\\n current.$slide.removeClass(\"fancybox-slide--complete fancybox-slide--next fancybox-slide--previous fancybox-animated\");\\n\\n if (e !== true) {\\n $.fancybox.stop(current.$slide);\\n } else {\\n effect = false;\\n } // Remove other slides\\n\\n\\n current.$slide.siblings().trigger(\"onReset\").remove(); // Trigger animations\\n\\n if (duration) {\\n self.$refs.container.removeClass(\"fancybox-is-open\").addClass(\"fancybox-is-closing\").css(\"transition-duration\", duration + \"ms\");\\n } // Clean up\\n\\n\\n self.hideLoading(current);\\n self.hideControls(true);\\n self.updateCursor(); // Check if possible to zoom-out\\n\\n if (effect === \"zoom\" && !($content && duration && current.type === \"image\" && !self.isMoved() && !current.hasError && (end = self.getThumbPos(current)))) {\\n effect = \"fade\";\\n }\\n\\n if (effect === \"zoom\") {\\n $.fancybox.stop($content);\\n domRect = $.fancybox.getTranslate($content);\\n start = {\\n top: domRect.top,\\n left: domRect.left,\\n scaleX: domRect.width / end.width,\\n scaleY: domRect.height / end.height,\\n width: end.width,\\n height: end.height\\n }; // Check if we need to animate opacity\\n\\n opacity = current.opts.zoomOpacity;\\n\\n if (opacity == \"auto\") {\\n opacity = Math.abs(current.width / current.height - end.width / end.height) > 0.1;\\n }\\n\\n if (opacity) {\\n end.opacity = 0;\\n }\\n\\n $.fancybox.setTranslate($content, start);\\n forceRedraw($content);\\n $.fancybox.animate($content, end, duration, done);\\n return true;\\n }\\n\\n if (effect && duration) {\\n $.fancybox.animate(current.$slide.addClass(\"fancybox-slide--previous\").removeClass(\"fancybox-slide--current\"), \"fancybox-animated fancybox-fx-\" + effect, duration, done);\\n } else {\\n // If skip animation\\n if (e === true) {\\n setTimeout(done, duration);\\n } else {\\n done();\\n }\\n }\\n\\n return true;\\n },\\n // Final adjustments after removing the instance\\n // =============================================\\n cleanUp: function cleanUp(e) {\\n var self = this,\\n instance,\\n $focus = self.current.opts.$orig,\\n x,\\n y;\\n self.current.$slide.trigger(\"onReset\");\\n self.$refs.container.empty().remove();\\n self.trigger(\"afterClose\", e); // Place back focus\\n\\n if (!!self.current.opts.backFocus) {\\n if (!$focus || !$focus.length || !$focus.is(\":visible\")) {\\n $focus = self.$trigger;\\n }\\n\\n if ($focus && $focus.length) {\\n x = window.scrollX;\\n y = window.scrollY;\\n $focus.trigger(\"focus\");\\n $(\"html, body\").scrollTop(y).scrollLeft(x);\\n }\\n }\\n\\n self.current = null; // Check if there are other instances\\n\\n instance = $.fancybox.getInstance();\\n\\n if (instance) {\\n instance.activate();\\n } else {\\n $(\"body\").removeClass(\"fancybox-active compensate-for-scrollbar\");\\n $(\"#fancybox-style-noscroll\").remove();\\n }\\n },\\n // Call callback and trigger an event\\n // ==================================\\n trigger: function trigger(name, slide) {\\n var args = Array.prototype.slice.call(arguments, 1),\\n self = this,\\n obj = slide && slide.opts ? slide : self.current,\\n rez;\\n\\n if (obj) {\\n args.unshift(obj);\\n } else {\\n obj = self;\\n }\\n\\n args.unshift(self);\\n\\n if ($.isFunction(obj.opts[name])) {\\n rez = obj.opts[name].apply(obj, args);\\n }\\n\\n if (rez === false) {\\n return rez;\\n }\\n\\n if (name === \"afterClose\" || !self.$refs) {\\n $D.trigger(name + \".fb\", args);\\n } else {\\n self.$refs.container.trigger(name + \".fb\", args);\\n }\\n },\\n // Update infobar values, navigation button states and reveal caption\\n // ==================================================================\\n updateControls: function updateControls() {\\n var self = this,\\n current = self.current,\\n index = current.index,\\n $container = self.$refs.container,\\n $caption = self.$refs.caption,\\n caption = current.opts.caption; // Recalculate content dimensions\\n\\n current.$slide.trigger(\"refresh\"); // Set caption\\n\\n if (caption && caption.length) {\\n self.$caption = $caption;\\n $caption.children().eq(0).html(caption);\\n } else {\\n self.$caption = null;\\n }\\n\\n if (!self.hasHiddenControls && !self.isIdle) {\\n self.showControls();\\n } // Update info and navigation elements\\n\\n\\n $container.find(\"[data-fancybox-count]\").html(self.group.length);\\n $container.find(\"[data-fancybox-index]\").html(index + 1);\\n $container.find(\"[data-fancybox-prev]\").prop(\"disabled\", !current.opts.loop && index <= 0);\\n $container.find(\"[data-fancybox-next]\").prop(\"disabled\", !current.opts.loop && index >= self.group.length - 1);\\n\\n if (current.type === \"image\") {\\n // Re-enable buttons; update download button source\\n $container.find(\"[data-fancybox-zoom]\").show().end().find(\"[data-fancybox-download]\").attr(\"href\", current.opts.image.src || current.src).show();\\n } else if (current.opts.toolbar) {\\n $container.find(\"[data-fancybox-download],[data-fancybox-zoom]\").hide();\\n } // Make sure focus is not on disabled button/element\\n\\n\\n if ($(document.activeElement).is(\":hidden,[disabled]\")) {\\n self.$refs.container.trigger(\"focus\");\\n }\\n },\\n // Hide toolbar and caption\\n // ========================\\n hideControls: function hideControls(andCaption) {\\n var self = this,\\n arr = [\"infobar\", \"toolbar\", \"nav\"];\\n\\n if (andCaption || !self.current.opts.preventCaptionOverlap) {\\n arr.push(\"caption\");\\n }\\n\\n this.$refs.container.removeClass(arr.map(function (i) {\\n return \"fancybox-show-\" + i;\\n }).join(\" \"));\\n this.hasHiddenControls = true;\\n },\\n showControls: function showControls() {\\n var self = this,\\n opts = self.current ? self.current.opts : self.opts,\\n $container = self.$refs.container;\\n self.hasHiddenControls = false;\\n self.idleSecondsCounter = 0;\\n $container.toggleClass(\"fancybox-show-toolbar\", !!(opts.toolbar && opts.buttons)).toggleClass(\"fancybox-show-infobar\", !!(opts.infobar && self.group.length > 1)).toggleClass(\"fancybox-show-caption\", !!self.$caption).toggleClass(\"fancybox-show-nav\", !!(opts.arrows && self.group.length > 1)).toggleClass(\"fancybox-is-modal\", !!opts.modal);\\n },\\n // Toggle toolbar and caption\\n // ==========================\\n toggleControls: function toggleControls() {\\n if (this.hasHiddenControls) {\\n this.showControls();\\n } else {\\n this.hideControls();\\n }\\n }\\n });\\n $.fancybox = {\\n version: \"3.5.7\",\\n defaults: defaults,\\n // Get current instance and execute a command.\\n //\\n // Examples of usage:\\n //\\n // $instance = $.fancybox.getInstance();\\n // $.fancybox.getInstance().jumpTo( 1 );\\n // $.fancybox.getInstance( \\'jumpTo\\', 1 );\\n // $.fancybox.getInstance( function() {\\n // console.info( this.currIndex );\\n // });\\n // ======================================================\\n getInstance: function getInstance(command) {\\n var instance = $(\\'.fancybox-container:not(\".fancybox-is-closing\"):last\\').data(\"FancyBox\"),\\n args = Array.prototype.slice.call(arguments, 1);\\n\\n if (instance instanceof FancyBox) {\\n if ($.type(command) === \"string\") {\\n instance[command].apply(instance, args);\\n } else if ($.type(command) === \"function\") {\\n command.apply(instance, args);\\n }\\n\\n return instance;\\n }\\n\\n return false;\\n },\\n // Create new instance\\n // ===================\\n open: function open(items, opts, index) {\\n return new FancyBox(items, opts, index);\\n },\\n // Close current or all instances\\n // ==============================\\n close: function close(all) {\\n var instance = this.getInstance();\\n\\n if (instance) {\\n instance.close(); // Try to find and close next instance\\n\\n if (all === true) {\\n this.close(all);\\n }\\n }\\n },\\n // Close all instances and unbind all events\\n // =========================================\\n destroy: function destroy() {\\n this.close(true);\\n $D.add(\"body\").off(\"click.fb-start\", \"**\");\\n },\\n // Try to detect mobile devices\\n // ============================\\n isMobile: /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),\\n // Detect if \\'translate3d\\' support is available\\n // ============================================\\n use3d: function () {\\n var div = document.createElement(\"div\");\\n return window.getComputedStyle && window.getComputedStyle(div) && window.getComputedStyle(div).getPropertyValue(\"transform\") && !(document.documentMode && document.documentMode < 11);\\n }(),\\n // Helper function to get current visual state of an element\\n // returns array[ top, left, horizontal-scale, vertical-scale, opacity ]\\n // =====================================================================\\n getTranslate: function getTranslate($el) {\\n var domRect;\\n\\n if (!$el || !$el.length) {\\n return false;\\n }\\n\\n domRect = $el[0].getBoundingClientRect();\\n return {\\n top: domRect.top || 0,\\n left: domRect.left || 0,\\n width: domRect.width,\\n height: domRect.height,\\n opacity: parseFloat($el.css(\"opacity\"))\\n };\\n },\\n // Shortcut for setting \"translate3d\" properties for element\\n // Can set be used to set opacity, too\\n // ========================================================\\n setTranslate: function setTranslate($el, props) {\\n var str = \"\",\\n css = {};\\n\\n if (!$el || !props) {\\n return;\\n }\\n\\n if (props.left !== undefined || props.top !== undefined) {\\n str = (props.left === undefined ? $el.position().left : props.left) + \"px, \" + (props.top === undefined ? $el.position().top : props.top) + \"px\";\\n\\n if (this.use3d) {\\n str = \"translate3d(\" + str + \", 0px)\";\\n } else {\\n str = \"translate(\" + str + \")\";\\n }\\n }\\n\\n if (props.scaleX !== undefined && props.scaleY !== undefined) {\\n str += \" scale(\" + props.scaleX + \", \" + props.scaleY + \")\";\\n } else if (props.scaleX !== undefined) {\\n str += \" scaleX(\" + props.scaleX + \")\";\\n }\\n\\n if (str.length) {\\n css.transform = str;\\n }\\n\\n if (props.opacity !== undefined) {\\n css.opacity = props.opacity;\\n }\\n\\n if (props.width !== undefined) {\\n css.width = props.width;\\n }\\n\\n if (props.height !== undefined) {\\n css.height = props.height;\\n }\\n\\n return $el.css(css);\\n },\\n // Simple CSS transition handler\\n // =============================\\n animate: function animate($el, to, duration, callback, leaveAnimationName) {\\n var self = this,\\n from;\\n\\n if ($.isFunction(duration)) {\\n callback = duration;\\n duration = null;\\n }\\n\\n self.stop($el);\\n from = self.getTranslate($el);\\n $el.on(transitionEnd, function (e) {\\n // Skip events from child elements and z-index change\\n if (e && e.originalEvent && (!$el.is(e.originalEvent.target) || e.originalEvent.propertyName == \"z-index\")) {\\n return;\\n }\\n\\n self.stop($el);\\n\\n if ($.isNumeric(duration)) {\\n $el.css(\"transition-duration\", \"\");\\n }\\n\\n if ($.isPlainObject(to)) {\\n if (to.scaleX !== undefined && to.scaleY !== undefined) {\\n self.setTranslate($el, {\\n top: to.top,\\n left: to.left,\\n width: from.width * to.scaleX,\\n height: from.height * to.scaleY,\\n scaleX: 1,\\n scaleY: 1\\n });\\n }\\n } else if (leaveAnimationName !== true) {\\n $el.removeClass(to);\\n }\\n\\n if ($.isFunction(callback)) {\\n callback(e);\\n }\\n });\\n\\n if ($.isNumeric(duration)) {\\n $el.css(\"transition-duration\", duration + \"ms\");\\n } // Start animation by changing CSS properties or class name\\n\\n\\n if ($.isPlainObject(to)) {\\n if (to.scaleX !== undefined && to.scaleY !== undefined) {\\n delete to.width;\\n delete to.height;\\n\\n if ($el.parent().hasClass(\"fancybox-slide--image\")) {\\n $el.parent().addClass(\"fancybox-is-scaling\");\\n }\\n }\\n\\n $.fancybox.setTranslate($el, to);\\n } else {\\n $el.addClass(to);\\n } // Make sure that `transitionend` callback gets fired\\n\\n\\n $el.data(\"timer\", setTimeout(function () {\\n $el.trigger(transitionEnd);\\n }, duration + 33));\\n },\\n stop: function stop($el, callCallback) {\\n if ($el && $el.length) {\\n clearTimeout($el.data(\"timer\"));\\n\\n if (callCallback) {\\n $el.trigger(transitionEnd);\\n }\\n\\n $el.off(transitionEnd).css(\"transition-duration\", \"\");\\n $el.parent().removeClass(\"fancybox-is-scaling\");\\n }\\n }\\n }; // Default click handler for \"fancyboxed\" links\\n // ============================================\\n\\n function _run(e, opts) {\\n var items = [],\\n index = 0,\\n $target,\\n value,\\n instance; // Avoid opening multiple times\\n\\n if (e && e.isDefaultPrevented()) {\\n return;\\n }\\n\\n e.preventDefault();\\n opts = opts || {};\\n\\n if (e && e.data) {\\n opts = mergeOpts(e.data.options, opts);\\n }\\n\\n $target = opts.$target || $(e.currentTarget).trigger(\"blur\");\\n instance = $.fancybox.getInstance();\\n\\n if (instance && instance.$trigger && instance.$trigger.is($target)) {\\n return;\\n }\\n\\n if (opts.selector) {\\n items = $(opts.selector);\\n } else {\\n // Get all related items and find index for clicked one\\n value = $target.attr(\"data-fancybox\") || \"\";\\n\\n if (value) {\\n items = e.data ? e.data.items : [];\\n items = items.length ? items.filter(\\'[data-fancybox=\"\\' + value + \\'\"]\\') : $(\\'[data-fancybox=\"\\' + value + \\'\"]\\');\\n } else {\\n items = [$target];\\n }\\n }\\n\\n index = $(items).index($target); // Sometimes current item can not be found\\n\\n if (index < 0) {\\n index = 0;\\n }\\n\\n instance = $.fancybox.open(items, opts, index); // Save last active element\\n\\n instance.$trigger = $target;\\n } // Create a jQuery plugin\\n // ======================\\n\\n\\n $.fn.fancybox = function (options) {\\n var selector;\\n options = options || {};\\n selector = options.selector || false;\\n\\n if (selector) {\\n // Use body element instead of document so it executes first\\n $(\"body\").off(\"click.fb-start\", selector).on(\"click.fb-start\", selector, {\\n options: options\\n }, _run);\\n } else {\\n this.off(\"click.fb-start\").on(\"click.fb-start\", {\\n items: this,\\n options: options\\n }, _run);\\n }\\n\\n return this;\\n }; // Self initializing plugin for all elements having `data-fancybox` attribute\\n // ==========================================================================\\n\\n\\n $D.on(\"click.fb-start\", \"[data-fancybox]\", _run); // Enable \"trigger elements\"\\n // =========================\\n\\n $D.on(\"click.fb-start\", \"[data-fancybox-trigger]\", function (e) {\\n $(\\'[data-fancybox=\"\\' + $(this).attr(\"data-fancybox-trigger\") + \\'\"]\\').eq($(this).attr(\"data-fancybox-index\") || 0).trigger(\"click.fb-start\", {\\n $trigger: $(this)\\n });\\n }); // Track focus event for better accessibility styling\\n // ==================================================\\n\\n (function () {\\n var buttonStr = \".fancybox-button\",\\n focusStr = \"fancybox-focus\",\\n $pressed = null;\\n $D.on(\"mousedown mouseup focus blur\", buttonStr, function (e) {\\n switch (e.type) {\\n case \"mousedown\":\\n $pressed = $(this);\\n break;\\n\\n case \"mouseup\":\\n $pressed = null;\\n break;\\n\\n case \"focusin\":\\n $(buttonStr).removeClass(focusStr);\\n\\n if (!$(this).is($pressed) && !$(this).is(\"[disabled]\")) {\\n $(this).addClass(focusStr);\\n }\\n\\n break;\\n\\n case \"focusout\":\\n $(buttonStr).removeClass(focusStr);\\n break;\\n }\\n });\\n })();\\n})(window, document, jQuery); // ==========================================================================\\n//\\n// Media\\n// Adds additional media type support\\n//\\n// ==========================================================================\\n\\n\\n(function ($) {\\n \"use strict\"; // Object containing properties for each media type\\n\\n var defaults = {\\n youtube: {\\n matcher: /(youtube\\\\.com|youtu\\\\.be|youtube\\\\-nocookie\\\\.com)\\\\/(watch\\\\?(.*&)?v=|v\\\\/|u\\\\/|embed\\\\/?)?(videoseries\\\\?list=(.*)|[\\\\w-]{11}|\\\\?listType=(.*)&list=(.*))(.*)/i,\\n params: {\\n autoplay: 1,\\n autohide: 1,\\n fs: 1,\\n rel: 0,\\n hd: 1,\\n wmode: \"transparent\",\\n enablejsapi: 1,\\n html5: 1\\n },\\n paramPlace: 8,\\n type: \"iframe\",\\n url: \"https://www.youtube-nocookie.com/embed/$4\",\\n thumb: \"https://img.youtube.com/vi/$4/hqdefault.jpg\"\\n },\\n vimeo: {\\n matcher: /^.+vimeo.com\\\\/(.*\\\\/)?([\\\\d]+)(.*)?/,\\n params: {\\n autoplay: 1,\\n hd: 1,\\n show_title: 1,\\n show_byline: 1,\\n show_portrait: 0,\\n fullscreen: 1\\n },\\n paramPlace: 3,\\n type: \"iframe\",\\n url: \"//player.vimeo.com/video/$2\"\\n },\\n instagram: {\\n matcher: /(instagr\\\\.am|instagram\\\\.com)\\\\/p\\\\/([a-zA-Z0-9_\\\\-]+)\\\\/?/i,\\n type: \"image\",\\n url: \"//$1/p/$2/media/?size=l\"\\n },\\n // Examples:\\n // http://maps.google.com/?ll=48.857995,2.294297&spn=0.007666,0.021136&t=m&z=16\\n // https://www.google.com/maps/@37.7852006,-122.4146355,14.65z\\n // https://www.google.com/maps/@52.2111123,2.9237542,6.61z?hl=en\\n // https://www.google.com/maps/place/Googleplex/@37.4220041,-122.0833494,17z/data=!4m5!3m4!1s0x0:0x6c296c66619367e0!8m2!3d37.4219998!4d-122.0840572\\n gmap_place: {\\n matcher: /(maps\\\\.)?google\\\\.([a-z]{2,3}(\\\\.[a-z]{2})?)\\\\/(((maps\\\\/(place\\\\/(.*)\\\\/)?\\\\@(.*),(\\\\d+.?\\\\d+?)z))|(\\\\?ll=))(.*)?/i,\\n type: \"iframe\",\\n url: function url(rez) {\\n return \"//maps.google.\" + rez[2] + \"/?ll=\" + (rez[9] ? rez[9] + \"&z=\" + Math.floor(rez[10]) + (rez[12] ? rez[12].replace(/^\\\\//, \"&\") : \"\") : rez[12] + \"\").replace(/\\\\?/, \"&\") + \"&output=\" + (rez[12] && rez[12].indexOf(\"layer=c\") > 0 ? \"svembed\" : \"embed\");\\n }\\n },\\n // Examples:\\n // https://www.google.com/maps/search/Empire+State+Building/\\n // https://www.google.com/maps/search/?api=1&query=centurylink+field\\n // https://www.google.com/maps/search/?api=1&query=47.5951518,-122.3316393\\n gmap_search: {\\n matcher: /(maps\\\\.)?google\\\\.([a-z]{2,3}(\\\\.[a-z]{2})?)\\\\/(maps\\\\/search\\\\/)(.*)/i,\\n type: \"iframe\",\\n url: function url(rez) {\\n return \"//maps.google.\" + rez[2] + \"/maps?q=\" + rez[5].replace(\"query=\", \"q=\").replace(\"api=1\", \"\") + \"&output=embed\";\\n }\\n }\\n }; // Formats matching url to final form\\n\\n var format = function format(url, rez, params) {\\n if (!url) {\\n return;\\n }\\n\\n params = params || \"\";\\n\\n if ($.type(params) === \"object\") {\\n params = $.param(params, true);\\n }\\n\\n $.each(rez, function (key, value) {\\n url = url.replace(\"$\" + key, value || \"\");\\n });\\n\\n if (params.length) {\\n url += (url.indexOf(\"?\") > 0 ? \"&\" : \"?\") + params;\\n }\\n\\n return url;\\n };\\n\\n $(document).on(\"objectNeedsType.fb\", function (e, instance, item) {\\n var url = item.src || \"\",\\n type = false,\\n media,\\n thumb,\\n rez,\\n params,\\n urlParams,\\n paramObj,\\n provider;\\n media = $.extend(true, {}, defaults, item.opts.media); // Look for any matching media type\\n\\n $.each(media, function (providerName, providerOpts) {\\n rez = url.match(providerOpts.matcher);\\n\\n if (!rez) {\\n return;\\n }\\n\\n type = providerOpts.type;\\n provider = providerName;\\n paramObj = {};\\n\\n if (providerOpts.paramPlace && rez[providerOpts.paramPlace]) {\\n urlParams = rez[providerOpts.paramPlace];\\n\\n if (urlParams[0] == \"?\") {\\n urlParams = urlParams.substring(1);\\n }\\n\\n urlParams = urlParams.split(\"&\");\\n\\n for (var m = 0; m < urlParams.length; ++m) {\\n var p = urlParams[m].split(\"=\", 2);\\n\\n if (p.length == 2) {\\n paramObj[p[0]] = decodeURIComponent(p[1].replace(/\\\\+/g, \" \"));\\n }\\n }\\n }\\n\\n params = $.extend(true, {}, providerOpts.params, item.opts[providerName], paramObj);\\n url = $.type(providerOpts.url) === \"function\" ? providerOpts.url.call(this, rez, params, item) : format(providerOpts.url, rez, params);\\n thumb = $.type(providerOpts.thumb) === \"function\" ? providerOpts.thumb.call(this, rez, params, item) : format(providerOpts.thumb, rez);\\n\\n if (providerName === \"youtube\") {\\n url = url.replace(/&t=((\\\\d+)m)?(\\\\d+)s/, function (match, p1, m, s) {\\n return \"&start=\" + ((m ? parseInt(m, 10) * 60 : 0) + parseInt(s, 10));\\n });\\n } else if (providerName === \"vimeo\") {\\n url = url.replace(\"&%23\", \"#\");\\n }\\n\\n return false;\\n }); // If it is found, then change content type and update the url\\n\\n if (type) {\\n if (!item.opts.thumb && !(item.opts.$thumb && item.opts.$thumb.length)) {\\n item.opts.thumb = thumb;\\n }\\n\\n if (type === \"iframe\") {\\n item.opts = $.extend(true, item.opts, {\\n iframe: {\\n preload: false,\\n attr: {\\n scrolling: \"no\"\\n }\\n }\\n });\\n }\\n\\n $.extend(item, {\\n type: type,\\n src: url,\\n origSrc: item.src,\\n contentSource: provider,\\n contentType: type === \"image\" ? \"image\" : provider == \"gmap_place\" || provider == \"gmap_search\" ? \"map\" : \"video\"\\n });\\n } else if (url) {\\n item.type = item.opts.defaultType;\\n }\\n }); // Load YouTube/Video API on request to detect when video finished playing\\n\\n var VideoAPILoader = {\\n youtube: {\\n src: \"https://www.youtube.com/iframe_api\",\\n \"class\": \"YT\",\\n loading: false,\\n loaded: false\\n },\\n vimeo: {\\n src: \"https://player.vimeo.com/api/player.js\",\\n \"class\": \"Vimeo\",\\n loading: false,\\n loaded: false\\n },\\n load: function load(vendor) {\\n var _this = this,\\n script;\\n\\n if (this[vendor].loaded) {\\n setTimeout(function () {\\n _this.done(vendor);\\n });\\n return;\\n }\\n\\n if (this[vendor].loading) {\\n return;\\n }\\n\\n this[vendor].loading = true;\\n script = document.createElement(\"script\");\\n script.type = \"text/javascript\";\\n script.src = this[vendor].src;\\n\\n if (vendor === \"youtube\") {\\n window.onYouTubeIframeAPIReady = function () {\\n _this[vendor].loaded = true;\\n\\n _this.done(vendor);\\n };\\n } else {\\n script.onload = function () {\\n _this[vendor].loaded = true;\\n\\n _this.done(vendor);\\n };\\n }\\n\\n document.body.appendChild(script);\\n },\\n done: function done(vendor) {\\n var instance, $el, player;\\n\\n if (vendor === \"youtube\") {\\n delete window.onYouTubeIframeAPIReady;\\n }\\n\\n instance = $.fancybox.getInstance();\\n\\n if (instance) {\\n $el = instance.current.$content.find(\"iframe\");\\n\\n if (vendor === \"youtube\" && YT !== undefined && YT) {\\n player = new YT.Player($el.attr(\"id\"), {\\n events: {\\n onStateChange: function onStateChange(e) {\\n if (e.data == 0) {\\n instance.next();\\n }\\n }\\n }\\n });\\n } else if (vendor === \"vimeo\" && Vimeo !== undefined && Vimeo) {\\n player = new Vimeo.Player($el);\\n player.on(\"ended\", function () {\\n instance.next();\\n });\\n }\\n }\\n }\\n };\\n $(document).on({\\n \"afterShow.fb\": function afterShowFb(e, instance, current) {\\n if (instance.group.length > 1 && (current.contentSource === \"youtube\" || current.contentSource === \"vimeo\")) {\\n VideoAPILoader.load(current.contentSource);\\n }\\n }\\n });\\n})(jQuery); // ==========================================================================\\n//\\n// Guestures\\n// Adds touch guestures, handles click and tap events\\n//\\n// ==========================================================================\\n\\n\\n(function (window, document, $) {\\n \"use strict\";\\n\\n var requestAFrame = function () {\\n return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || // if all else fails, use setTimeout\\n function (callback) {\\n return window.setTimeout(callback, 1000 / 60);\\n };\\n }();\\n\\n var cancelAFrame = function () {\\n return window.cancelAnimationFrame || window.webkitCancelAnimationFrame || window.mozCancelAnimationFrame || window.oCancelAnimationFrame || function (id) {\\n window.clearTimeout(id);\\n };\\n }();\\n\\n var getPointerXY = function getPointerXY(e) {\\n var result = [];\\n e = e.originalEvent || e || window.e;\\n e = e.touches && e.touches.length ? e.touches : e.changedTouches && e.changedTouches.length ? e.changedTouches : [e];\\n\\n for (var key in e) {\\n if (e[key].pageX) {\\n result.push({\\n x: e[key].pageX,\\n y: e[key].pageY\\n });\\n } else if (e[key].clientX) {\\n result.push({\\n x: e[key].clientX,\\n y: e[key].clientY\\n });\\n }\\n }\\n\\n return result;\\n };\\n\\n var distance = function distance(point2, point1, what) {\\n if (!point1 || !point2) {\\n return 0;\\n }\\n\\n if (what === \"x\") {\\n return point2.x - point1.x;\\n } else if (what === \"y\") {\\n return point2.y - point1.y;\\n }\\n\\n return Math.sqrt(Math.pow(point2.x - point1.x, 2) + Math.pow(point2.y - point1.y, 2));\\n };\\n\\n var isClickable = function isClickable($el) {\\n if ($el.is(\\'a,area,button,[role=\"button\"],input,label,select,summary,textarea,video,audio,iframe\\') || $.isFunction($el.get(0).onclick) || $el.data(\"selectable\")) {\\n return true;\\n } // Check for attributes like data-fancybox-next or data-fancybox-close\\n\\n\\n for (var i = 0, atts = $el[0].attributes, n = atts.length; i < n; i++) {\\n if (atts[i].nodeName.substr(0, 14) === \"data-fancybox-\") {\\n return true;\\n }\\n }\\n\\n return false;\\n };\\n\\n var hasScrollbars = function hasScrollbars(el) {\\n var overflowY = window.getComputedStyle(el)[\"overflow-y\"],\\n overflowX = window.getComputedStyle(el)[\"overflow-x\"],\\n vertical = (overflowY === \"scroll\" || overflowY === \"auto\") && el.scrollHeight > el.clientHeight,\\n horizontal = (overflowX === \"scroll\" || overflowX === \"auto\") && el.scrollWidth > el.clientWidth;\\n return vertical || horizontal;\\n };\\n\\n var isScrollable = function isScrollable($el) {\\n var rez = false;\\n\\n while (true) {\\n rez = hasScrollbars($el.get(0));\\n\\n if (rez) {\\n break;\\n }\\n\\n $el = $el.parent();\\n\\n if (!$el.length || $el.hasClass(\"fancybox-stage\") || $el.is(\"body\")) {\\n break;\\n }\\n }\\n\\n return rez;\\n };\\n\\n var Guestures = function Guestures(instance) {\\n var self = this;\\n self.instance = instance;\\n self.$bg = instance.$refs.bg;\\n self.$stage = instance.$refs.stage;\\n self.$container = instance.$refs.container;\\n self.destroy();\\n self.$container.on(\"touchstart.fb.touch mousedown.fb.touch\", $.proxy(self, \"ontouchstart\"));\\n };\\n\\n Guestures.prototype.destroy = function () {\\n var self = this;\\n self.$container.off(\".fb.touch\");\\n $(document).off(\".fb.touch\");\\n\\n if (self.requestId) {\\n cancelAFrame(self.requestId);\\n self.requestId = null;\\n }\\n\\n if (self.tapped) {\\n clearTimeout(self.tapped);\\n self.tapped = null;\\n }\\n };\\n\\n Guestures.prototype.ontouchstart = function (e) {\\n var self = this,\\n $target = $(e.target),\\n instance = self.instance,\\n current = instance.current,\\n $slide = current.$slide,\\n $content = current.$content,\\n isTouchDevice = e.type == \"touchstart\"; // Do not respond to both (touch and mouse) events\\n\\n if (isTouchDevice) {\\n self.$container.off(\"mousedown.fb.touch\");\\n } // Ignore right click\\n\\n\\n if (e.originalEvent && e.originalEvent.button == 2) {\\n return;\\n } // Ignore taping on links, buttons, input elements\\n\\n\\n if (!$slide.length || !$target.length || isClickable($target) || isClickable($target.parent())) {\\n return;\\n } // Ignore clicks on the scrollbar\\n\\n\\n if (!$target.is(\"img\") && e.originalEvent.clientX > $target[0].clientWidth + $target.offset().left) {\\n return;\\n } // Ignore clicks while zooming or closing\\n\\n\\n if (!current || instance.isAnimating || current.$slide.hasClass(\"fancybox-animated\")) {\\n e.stopPropagation();\\n e.preventDefault();\\n return;\\n }\\n\\n self.realPoints = self.startPoints = getPointerXY(e);\\n\\n if (!self.startPoints.length) {\\n return;\\n } // Allow other scripts to catch touch event if \"touch\" is set to false\\n\\n\\n if (current.touch) {\\n e.stopPropagation();\\n }\\n\\n self.startEvent = e;\\n self.canTap = true;\\n self.$target = $target;\\n self.$content = $content;\\n self.opts = current.opts.touch;\\n self.isPanning = false;\\n self.isSwiping = false;\\n self.isZooming = false;\\n self.isScrolling = false;\\n self.canPan = instance.canPan();\\n self.startTime = new Date().getTime();\\n self.distanceX = self.distanceY = self.distance = 0;\\n self.canvasWidth = Math.round($slide[0].clientWidth);\\n self.canvasHeight = Math.round($slide[0].clientHeight);\\n self.contentLastPos = null;\\n self.contentStartPos = $.fancybox.getTranslate(self.$content) || {\\n top: 0,\\n left: 0\\n };\\n self.sliderStartPos = $.fancybox.getTranslate($slide); // Since position will be absolute, but we need to make it relative to the stage\\n\\n self.stagePos = $.fancybox.getTranslate(instance.$refs.stage);\\n self.sliderStartPos.top -= self.stagePos.top;\\n self.sliderStartPos.left -= self.stagePos.left;\\n self.contentStartPos.top -= self.stagePos.top;\\n self.contentStartPos.left -= self.stagePos.left;\\n $(document).off(\".fb.touch\").on(isTouchDevice ? \"touchend.fb.touch touchcancel.fb.touch\" : \"mouseup.fb.touch mouseleave.fb.touch\", $.proxy(self, \"ontouchend\")).on(isTouchDevice ? \"touchmove.fb.touch\" : \"mousemove.fb.touch\", $.proxy(self, \"ontouchmove\"));\\n\\n if ($.fancybox.isMobile) {\\n document.addEventListener(\"scroll\", self.onscroll, true);\\n } // Skip if clicked outside the sliding area\\n\\n\\n if (!(self.opts || self.canPan) || !($target.is(self.$stage) || self.$stage.find($target).length)) {\\n if ($target.is(\".fancybox-image\")) {\\n e.preventDefault();\\n }\\n\\n if (!($.fancybox.isMobile && $target.parents(\".fancybox-caption\").length)) {\\n return;\\n }\\n }\\n\\n self.isScrollable = isScrollable($target) || isScrollable($target.parent()); // Check if element is scrollable and try to prevent default behavior (scrolling)\\n\\n if (!($.fancybox.isMobile && self.isScrollable)) {\\n e.preventDefault();\\n } // One finger or mouse click - swipe or pan an image\\n\\n\\n if (self.startPoints.length === 1 || current.hasError) {\\n if (self.canPan) {\\n $.fancybox.stop(self.$content);\\n self.isPanning = true;\\n } else {\\n self.isSwiping = true;\\n }\\n\\n self.$container.addClass(\"fancybox-is-grabbing\");\\n } // Two fingers - zoom image\\n\\n\\n if (self.startPoints.length === 2 && current.type === \"image\" && (current.isLoaded || current.$ghost)) {\\n self.canTap = false;\\n self.isSwiping = false;\\n self.isPanning = false;\\n self.isZooming = true;\\n $.fancybox.stop(self.$content);\\n self.centerPointStartX = (self.startPoints[0].x + self.startPoints[1].x) * 0.5 - $(window).scrollLeft();\\n self.centerPointStartY = (self.startPoints[0].y + self.startPoints[1].y) * 0.5 - $(window).scrollTop();\\n self.percentageOfImageAtPinchPointX = (self.centerPointStartX - self.contentStartPos.left) / self.contentStartPos.width;\\n self.percentageOfImageAtPinchPointY = (self.centerPointStartY - self.contentStartPos.top) / self.contentStartPos.height;\\n self.startDistanceBetweenFingers = distance(self.startPoints[0], self.startPoints[1]);\\n }\\n };\\n\\n Guestures.prototype.onscroll = function (e) {\\n var self = this;\\n self.isScrolling = true;\\n document.removeEventListener(\"scroll\", self.onscroll, true);\\n };\\n\\n Guestures.prototype.ontouchmove = function (e) {\\n var self = this; // Make sure user has not released over iframe or disabled element\\n\\n if (e.originalEvent.buttons !== undefined && e.originalEvent.buttons === 0) {\\n self.ontouchend(e);\\n return;\\n }\\n\\n if (self.isScrolling) {\\n self.canTap = false;\\n return;\\n }\\n\\n self.newPoints = getPointerXY(e);\\n\\n if (!(self.opts || self.canPan) || !self.newPoints.length || !self.newPoints.length) {\\n return;\\n }\\n\\n if (!(self.isSwiping && self.isSwiping === true)) {\\n e.preventDefault();\\n }\\n\\n self.distanceX = distance(self.newPoints[0], self.startPoints[0], \"x\");\\n self.distanceY = distance(self.newPoints[0], self.startPoints[0], \"y\");\\n self.distance = distance(self.newPoints[0], self.startPoints[0]); // Skip false ontouchmove events (Chrome)\\n\\n if (self.distance > 0) {\\n if (self.isSwiping) {\\n self.onSwipe(e);\\n } else if (self.isPanning) {\\n self.onPan();\\n } else if (self.isZooming) {\\n self.onZoom();\\n }\\n }\\n };\\n\\n Guestures.prototype.onSwipe = function (e) {\\n var self = this,\\n instance = self.instance,\\n swiping = self.isSwiping,\\n left = self.sliderStartPos.left || 0,\\n angle; // If direction is not yet determined\\n\\n if (swiping === true) {\\n // We need at least 10px distance to correctly calculate an angle\\n if (Math.abs(self.distance) > 10) {\\n self.canTap = false;\\n\\n if (instance.group.length < 2 && self.opts.vertical) {\\n self.isSwiping = \"y\";\\n } else if (instance.isDragging || self.opts.vertical === false || self.opts.vertical === \"auto\" && $(window).width() > 800) {\\n self.isSwiping = \"x\";\\n } else {\\n angle = Math.abs(Math.atan2(self.distanceY, self.distanceX) * 180 / Math.PI);\\n self.isSwiping = angle > 45 && angle < 135 ? \"y\" : \"x\";\\n }\\n\\n if (self.isSwiping === \"y\" && $.fancybox.isMobile && self.isScrollable) {\\n self.isScrolling = true;\\n return;\\n }\\n\\n instance.isDragging = self.isSwiping; // Reset points to avoid jumping, because we dropped first swipes to calculate the angle\\n\\n self.startPoints = self.newPoints;\\n $.each(instance.slides, function (index, slide) {\\n var slidePos, stagePos;\\n $.fancybox.stop(slide.$slide);\\n slidePos = $.fancybox.getTranslate(slide.$slide);\\n stagePos = $.fancybox.getTranslate(instance.$refs.stage);\\n slide.$slide.css({\\n transform: \"\",\\n opacity: \"\",\\n \"transition-duration\": \"\"\\n }).removeClass(\"fancybox-animated\").removeClass(function (index, className) {\\n return (className.match(/(^|\\\\s)fancybox-fx-\\\\S+/g) || []).join(\" \");\\n });\\n\\n if (slide.pos === instance.current.pos) {\\n self.sliderStartPos.top = slidePos.top - stagePos.top;\\n self.sliderStartPos.left = slidePos.left - stagePos.left;\\n }\\n\\n $.fancybox.setTranslate(slide.$slide, {\\n top: slidePos.top - stagePos.top,\\n left: slidePos.left - stagePos.left\\n });\\n }); // Stop slideshow\\n\\n if (instance.SlideShow && instance.SlideShow.isActive) {\\n instance.SlideShow.stop();\\n }\\n }\\n\\n return;\\n } // Sticky edges\\n\\n\\n if (swiping == \"x\") {\\n if (self.distanceX > 0 && (self.instance.group.length < 2 || self.instance.current.index === 0 && !self.instance.current.opts.loop)) {\\n left = left + Math.pow(self.distanceX, 0.8);\\n } else if (self.distanceX < 0 && (self.instance.group.length < 2 || self.instance.current.index === self.instance.group.length - 1 && !self.instance.current.opts.loop)) {\\n left = left - Math.pow(-self.distanceX, 0.8);\\n } else {\\n left = left + self.distanceX;\\n }\\n }\\n\\n self.sliderLastPos = {\\n top: swiping == \"x\" ? 0 : self.sliderStartPos.top + self.distanceY,\\n left: left\\n };\\n\\n if (self.requestId) {\\n cancelAFrame(self.requestId);\\n self.requestId = null;\\n }\\n\\n self.requestId = requestAFrame(function () {\\n if (self.sliderLastPos) {\\n $.each(self.instance.slides, function (index, slide) {\\n var pos = slide.pos - self.instance.currPos;\\n $.fancybox.setTranslate(slide.$slide, {\\n top: self.sliderLastPos.top,\\n left: self.sliderLastPos.left + pos * self.canvasWidth + pos * slide.opts.gutter\\n });\\n });\\n self.$container.addClass(\"fancybox-is-sliding\");\\n }\\n });\\n };\\n\\n Guestures.prototype.onPan = function () {\\n var self = this; // Prevent accidental movement (sometimes, when tapping casually, finger can move a bit)\\n\\n if (distance(self.newPoints[0], self.realPoints[0]) < ($.fancybox.isMobile ? 10 : 5)) {\\n self.startPoints = self.newPoints;\\n return;\\n }\\n\\n self.canTap = false;\\n self.contentLastPos = self.limitMovement();\\n\\n if (self.requestId) {\\n cancelAFrame(self.requestId);\\n }\\n\\n self.requestId = requestAFrame(function () {\\n $.fancybox.setTranslate(self.$content, self.contentLastPos);\\n });\\n }; // Make panning sticky to the edges\\n\\n\\n Guestures.prototype.limitMovement = function () {\\n var self = this;\\n var canvasWidth = self.canvasWidth;\\n var canvasHeight = self.canvasHeight;\\n var distanceX = self.distanceX;\\n var distanceY = self.distanceY;\\n var contentStartPos = self.contentStartPos;\\n var currentOffsetX = contentStartPos.left;\\n var currentOffsetY = contentStartPos.top;\\n var currentWidth = contentStartPos.width;\\n var currentHeight = contentStartPos.height;\\n var minTranslateX, minTranslateY, maxTranslateX, maxTranslateY, newOffsetX, newOffsetY;\\n\\n if (currentWidth > canvasWidth) {\\n newOffsetX = currentOffsetX + distanceX;\\n } else {\\n newOffsetX = currentOffsetX;\\n }\\n\\n newOffsetY = currentOffsetY + distanceY; // Slow down proportionally to traveled distance\\n\\n minTranslateX = Math.max(0, canvasWidth * 0.5 - currentWidth * 0.5);\\n minTranslateY = Math.max(0, canvasHeight * 0.5 - currentHeight * 0.5);\\n maxTranslateX = Math.min(canvasWidth - currentWidth, canvasWidth * 0.5 - currentWidth * 0.5);\\n maxTranslateY = Math.min(canvasHeight - currentHeight, canvasHeight * 0.5 - currentHeight * 0.5); // ->\\n\\n if (distanceX > 0 && newOffsetX > minTranslateX) {\\n newOffsetX = minTranslateX - 1 + Math.pow(-minTranslateX + currentOffsetX + distanceX, 0.8) || 0;\\n } // <-\\n\\n\\n if (distanceX < 0 && newOffsetX < maxTranslateX) {\\n newOffsetX = maxTranslateX + 1 - Math.pow(maxTranslateX - currentOffsetX - distanceX, 0.8) || 0;\\n } // \\\\/\\n\\n\\n if (distanceY > 0 && newOffsetY > minTranslateY) {\\n newOffsetY = minTranslateY - 1 + Math.pow(-minTranslateY + currentOffsetY + distanceY, 0.8) || 0;\\n } // /\\\\\\n\\n\\n if (distanceY < 0 && newOffsetY < maxTranslateY) {\\n newOffsetY = maxTranslateY + 1 - Math.pow(maxTranslateY - currentOffsetY - distanceY, 0.8) || 0;\\n }\\n\\n return {\\n top: newOffsetY,\\n left: newOffsetX\\n };\\n };\\n\\n Guestures.prototype.limitPosition = function (newOffsetX, newOffsetY, newWidth, newHeight) {\\n var self = this;\\n var canvasWidth = self.canvasWidth;\\n var canvasHeight = self.canvasHeight;\\n\\n if (newWidth > canvasWidth) {\\n newOffsetX = newOffsetX > 0 ? 0 : newOffsetX;\\n newOffsetX = newOffsetX < canvasWidth - newWidth ? canvasWidth - newWidth : newOffsetX;\\n } else {\\n // Center horizontally\\n newOffsetX = Math.max(0, canvasWidth / 2 - newWidth / 2);\\n }\\n\\n if (newHeight > canvasHeight) {\\n newOffsetY = newOffsetY > 0 ? 0 : newOffsetY;\\n newOffsetY = newOffsetY < canvasHeight - newHeight ? canvasHeight - newHeight : newOffsetY;\\n } else {\\n // Center vertically\\n newOffsetY = Math.max(0, canvasHeight / 2 - newHeight / 2);\\n }\\n\\n return {\\n top: newOffsetY,\\n left: newOffsetX\\n };\\n };\\n\\n Guestures.prototype.onZoom = function () {\\n var self = this; // Calculate current distance between points to get pinch ratio and new width and height\\n\\n var contentStartPos = self.contentStartPos;\\n var currentWidth = contentStartPos.width;\\n var currentHeight = contentStartPos.height;\\n var currentOffsetX = contentStartPos.left;\\n var currentOffsetY = contentStartPos.top;\\n var endDistanceBetweenFingers = distance(self.newPoints[0], self.newPoints[1]);\\n var pinchRatio = endDistanceBetweenFingers / self.startDistanceBetweenFingers;\\n var newWidth = Math.floor(currentWidth * pinchRatio);\\n var newHeight = Math.floor(currentHeight * pinchRatio); // This is the translation due to pinch-zooming\\n\\n var translateFromZoomingX = (currentWidth - newWidth) * self.percentageOfImageAtPinchPointX;\\n var translateFromZoomingY = (currentHeight - newHeight) * self.percentageOfImageAtPinchPointY; // Point between the two touches\\n\\n var centerPointEndX = (self.newPoints[0].x + self.newPoints[1].x) / 2 - $(window).scrollLeft();\\n var centerPointEndY = (self.newPoints[0].y + self.newPoints[1].y) / 2 - $(window).scrollTop(); // And this is the translation due to translation of the centerpoint\\n // between the two fingers\\n\\n var translateFromTranslatingX = centerPointEndX - self.centerPointStartX;\\n var translateFromTranslatingY = centerPointEndY - self.centerPointStartY; // The new offset is the old/current one plus the total translation\\n\\n var newOffsetX = currentOffsetX + (translateFromZoomingX + translateFromTranslatingX);\\n var newOffsetY = currentOffsetY + (translateFromZoomingY + translateFromTranslatingY);\\n var newPos = {\\n top: newOffsetY,\\n left: newOffsetX,\\n scaleX: pinchRatio,\\n scaleY: pinchRatio\\n };\\n self.canTap = false;\\n self.newWidth = newWidth;\\n self.newHeight = newHeight;\\n self.contentLastPos = newPos;\\n\\n if (self.requestId) {\\n cancelAFrame(self.requestId);\\n }\\n\\n self.requestId = requestAFrame(function () {\\n $.fancybox.setTranslate(self.$content, self.contentLastPos);\\n });\\n };\\n\\n Guestures.prototype.ontouchend = function (e) {\\n var self = this;\\n var swiping = self.isSwiping;\\n var panning = self.isPanning;\\n var zooming = self.isZooming;\\n var scrolling = self.isScrolling;\\n self.endPoints = getPointerXY(e);\\n self.dMs = Math.max(new Date().getTime() - self.startTime, 1);\\n self.$container.removeClass(\"fancybox-is-grabbing\");\\n $(document).off(\".fb.touch\");\\n document.removeEventListener(\"scroll\", self.onscroll, true);\\n\\n if (self.requestId) {\\n cancelAFrame(self.requestId);\\n self.requestId = null;\\n }\\n\\n self.isSwiping = false;\\n self.isPanning = false;\\n self.isZooming = false;\\n self.isScrolling = false;\\n self.instance.isDragging = false;\\n\\n if (self.canTap) {\\n return self.onTap(e);\\n }\\n\\n self.speed = 100; // Speed in px/ms\\n\\n self.velocityX = self.distanceX / self.dMs * 0.5;\\n self.velocityY = self.distanceY / self.dMs * 0.5;\\n\\n if (panning) {\\n self.endPanning();\\n } else if (zooming) {\\n self.endZooming();\\n } else {\\n self.endSwiping(swiping, scrolling);\\n }\\n\\n return;\\n };\\n\\n Guestures.prototype.endSwiping = function (swiping, scrolling) {\\n var self = this,\\n ret = false,\\n len = self.instance.group.length,\\n distanceX = Math.abs(self.distanceX),\\n canAdvance = swiping == \"x\" && len > 1 && (self.dMs > 130 && distanceX > 10 || distanceX > 50),\\n speedX = 300;\\n self.sliderLastPos = null; // Close if swiped vertically / navigate if horizontally\\n\\n if (swiping == \"y\" && !scrolling && Math.abs(self.distanceY) > 50) {\\n // Continue vertical movement\\n $.fancybox.animate(self.instance.current.$slide, {\\n top: self.sliderStartPos.top + self.distanceY + self.velocityY * 150,\\n opacity: 0\\n }, 200);\\n ret = self.instance.close(true, 250);\\n } else if (canAdvance && self.distanceX > 0) {\\n ret = self.instance.previous(speedX);\\n } else if (canAdvance && self.distanceX < 0) {\\n ret = self.instance.next(speedX);\\n }\\n\\n if (ret === false && (swiping == \"x\" || swiping == \"y\")) {\\n self.instance.centerSlide(200);\\n }\\n\\n self.$container.removeClass(\"fancybox-is-sliding\");\\n }; // Limit panning from edges\\n // ========================\\n\\n\\n Guestures.prototype.endPanning = function () {\\n var self = this,\\n newOffsetX,\\n newOffsetY,\\n newPos;\\n\\n if (!self.contentLastPos) {\\n return;\\n }\\n\\n if (self.opts.momentum === false || self.dMs > 350) {\\n newOffsetX = self.contentLastPos.left;\\n newOffsetY = self.contentLastPos.top;\\n } else {\\n // Continue movement\\n newOffsetX = self.contentLastPos.left + self.velocityX * 500;\\n newOffsetY = self.contentLastPos.top + self.velocityY * 500;\\n }\\n\\n newPos = self.limitPosition(newOffsetX, newOffsetY, self.contentStartPos.width, self.contentStartPos.height);\\n newPos.width = self.contentStartPos.width;\\n newPos.height = self.contentStartPos.height;\\n $.fancybox.animate(self.$content, newPos, 366);\\n };\\n\\n Guestures.prototype.endZooming = function () {\\n var self = this;\\n var current = self.instance.current;\\n var newOffsetX, newOffsetY, newPos, reset;\\n var newWidth = self.newWidth;\\n var newHeight = self.newHeight;\\n\\n if (!self.contentLastPos) {\\n return;\\n }\\n\\n newOffsetX = self.contentLastPos.left;\\n newOffsetY = self.contentLastPos.top;\\n reset = {\\n top: newOffsetY,\\n left: newOffsetX,\\n width: newWidth,\\n height: newHeight,\\n scaleX: 1,\\n scaleY: 1\\n }; // Reset scalex/scaleY values; this helps for perfomance and does not break animation\\n\\n $.fancybox.setTranslate(self.$content, reset);\\n\\n if (newWidth < self.canvasWidth && newHeight < self.canvasHeight) {\\n self.instance.scaleToFit(150);\\n } else if (newWidth > current.width || newHeight > current.height) {\\n self.instance.scaleToActual(self.centerPointStartX, self.centerPointStartY, 150);\\n } else {\\n newPos = self.limitPosition(newOffsetX, newOffsetY, newWidth, newHeight);\\n $.fancybox.animate(self.$content, newPos, 150);\\n }\\n };\\n\\n Guestures.prototype.onTap = function (e) {\\n var self = this;\\n var $target = $(e.target);\\n var instance = self.instance;\\n var current = instance.current;\\n var endPoints = e && getPointerXY(e) || self.startPoints;\\n var tapX = endPoints[0] ? endPoints[0].x - $(window).scrollLeft() - self.stagePos.left : 0;\\n var tapY = endPoints[0] ? endPoints[0].y - $(window).scrollTop() - self.stagePos.top : 0;\\n var where;\\n\\n var process = function process(prefix) {\\n var action = current.opts[prefix];\\n\\n if ($.isFunction(action)) {\\n action = action.apply(instance, [current, e]);\\n }\\n\\n if (!action) {\\n return;\\n }\\n\\n switch (action) {\\n case \"close\":\\n instance.close(self.startEvent);\\n break;\\n\\n case \"toggleControls\":\\n instance.toggleControls();\\n break;\\n\\n case \"next\":\\n instance.next();\\n break;\\n\\n case \"nextOrClose\":\\n if (instance.group.length > 1) {\\n instance.next();\\n } else {\\n instance.close(self.startEvent);\\n }\\n\\n break;\\n\\n case \"zoom\":\\n if (current.type == \"image\" && (current.isLoaded || current.$ghost)) {\\n if (instance.canPan()) {\\n instance.scaleToFit();\\n } else if (instance.isScaledDown()) {\\n instance.scaleToActual(tapX, tapY);\\n } else if (instance.group.length < 2) {\\n instance.close(self.startEvent);\\n }\\n }\\n\\n break;\\n }\\n }; // Ignore right click\\n\\n\\n if (e.originalEvent && e.originalEvent.button == 2) {\\n return;\\n } // Skip if clicked on the scrollbar\\n\\n\\n if (!$target.is(\"img\") && tapX > $target[0].clientWidth + $target.offset().left) {\\n return;\\n } // Check where is clicked\\n\\n\\n if ($target.is(\".fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-container\")) {\\n where = \"Outside\";\\n } else if ($target.is(\".fancybox-slide\")) {\\n where = \"Slide\";\\n } else if (instance.current.$content && instance.current.$content.find($target).addBack().filter($target).length) {\\n where = \"Content\";\\n } else {\\n return;\\n } // Check if this is a double tap\\n\\n\\n if (self.tapped) {\\n // Stop previously created single tap\\n clearTimeout(self.tapped);\\n self.tapped = null; // Skip if distance between taps is too big\\n\\n if (Math.abs(tapX - self.tapX) > 50 || Math.abs(tapY - self.tapY) > 50) {\\n return this;\\n } // OK, now we assume that this is a double-tap\\n\\n\\n process(\"dblclick\" + where);\\n } else {\\n // Single tap will be processed if user has not clicked second time within 300ms\\n // or there is no need to wait for double-tap\\n self.tapX = tapX;\\n self.tapY = tapY;\\n\\n if (current.opts[\"dblclick\" + where] && current.opts[\"dblclick\" + where] !== current.opts[\"click\" + where]) {\\n self.tapped = setTimeout(function () {\\n self.tapped = null;\\n\\n if (!instance.isAnimating) {\\n process(\"click\" + where);\\n }\\n }, 500);\\n } else {\\n process(\"click\" + where);\\n }\\n }\\n\\n return this;\\n };\\n\\n $(document).on(\"onActivate.fb\", function (e, instance) {\\n if (instance && !instance.Guestures) {\\n instance.Guestures = new Guestures(instance);\\n }\\n }).on(\"beforeClose.fb\", function (e, instance) {\\n if (instance && instance.Guestures) {\\n instance.Guestures.destroy();\\n }\\n });\\n})(window, document, jQuery); // ==========================================================================\\n//\\n// SlideShow\\n// Enables slideshow functionality\\n//\\n// Example of usage:\\n// $.fancybox.getInstance().SlideShow.start()\\n//\\n// ==========================================================================\\n\\n\\n(function (document, $) {\\n \"use strict\";\\n\\n $.extend(true, $.fancybox.defaults, {\\n btnTpl: {\\n slideShow: \\'\"\\n },\\n slideShow: {\\n autoStart: false,\\n speed: 3000,\\n progress: true\\n }\\n });\\n\\n var SlideShow = function SlideShow(instance) {\\n this.instance = instance;\\n this.init();\\n };\\n\\n $.extend(SlideShow.prototype, {\\n timer: null,\\n isActive: false,\\n $button: null,\\n init: function init() {\\n var self = this,\\n instance = self.instance,\\n opts = instance.group[instance.currIndex].opts.slideShow;\\n self.$button = instance.$refs.toolbar.find(\"[data-fancybox-play]\").on(\"click\", function () {\\n self.toggle();\\n });\\n\\n if (instance.group.length < 2 || !opts) {\\n self.$button.hide();\\n } else if (opts.progress) {\\n self.$progress = $(\\'
    \\').appendTo(instance.$refs.inner);\\n }\\n },\\n set: function set(force) {\\n var self = this,\\n instance = self.instance,\\n current = instance.current; // Check if reached last element\\n\\n if (current && (force === true || current.opts.loop || instance.currIndex < instance.group.length - 1)) {\\n if (self.isActive && current.contentType !== \"video\") {\\n if (self.$progress) {\\n $.fancybox.animate(self.$progress.show(), {\\n scaleX: 1\\n }, current.opts.slideShow.speed);\\n }\\n\\n self.timer = setTimeout(function () {\\n if (!instance.current.opts.loop && instance.current.index == instance.group.length - 1) {\\n instance.jumpTo(0);\\n } else {\\n instance.next();\\n }\\n }, current.opts.slideShow.speed);\\n }\\n } else {\\n self.stop();\\n instance.idleSecondsCounter = 0;\\n instance.showControls();\\n }\\n },\\n clear: function clear() {\\n var self = this;\\n clearTimeout(self.timer);\\n self.timer = null;\\n\\n if (self.$progress) {\\n self.$progress.removeAttr(\"style\").hide();\\n }\\n },\\n start: function start() {\\n var self = this,\\n current = self.instance.current;\\n\\n if (current) {\\n self.$button.attr(\"title\", (current.opts.i18n[current.opts.lang] || current.opts.i18n.en).PLAY_STOP).removeClass(\"fancybox-button--play\").addClass(\"fancybox-button--pause\");\\n self.isActive = true;\\n\\n if (current.isComplete) {\\n self.set(true);\\n }\\n\\n self.instance.trigger(\"onSlideShowChange\", true);\\n }\\n },\\n stop: function stop() {\\n var self = this,\\n current = self.instance.current;\\n self.clear();\\n self.$button.attr(\"title\", (current.opts.i18n[current.opts.lang] || current.opts.i18n.en).PLAY_START).removeClass(\"fancybox-button--pause\").addClass(\"fancybox-button--play\");\\n self.isActive = false;\\n self.instance.trigger(\"onSlideShowChange\", false);\\n\\n if (self.$progress) {\\n self.$progress.removeAttr(\"style\").hide();\\n }\\n },\\n toggle: function toggle() {\\n var self = this;\\n\\n if (self.isActive) {\\n self.stop();\\n } else {\\n self.start();\\n }\\n }\\n });\\n $(document).on({\\n \"onInit.fb\": function onInitFb(e, instance) {\\n if (instance && !instance.SlideShow) {\\n instance.SlideShow = new SlideShow(instance);\\n }\\n },\\n \"beforeShow.fb\": function beforeShowFb(e, instance, current, firstRun) {\\n var SlideShow = instance && instance.SlideShow;\\n\\n if (firstRun) {\\n if (SlideShow && current.opts.slideShow.autoStart) {\\n SlideShow.start();\\n }\\n } else if (SlideShow && SlideShow.isActive) {\\n SlideShow.clear();\\n }\\n },\\n \"afterShow.fb\": function afterShowFb(e, instance, current) {\\n var SlideShow = instance && instance.SlideShow;\\n\\n if (SlideShow && SlideShow.isActive) {\\n SlideShow.set();\\n }\\n },\\n \"afterKeydown.fb\": function afterKeydownFb(e, instance, current, keypress, keycode) {\\n var SlideShow = instance && instance.SlideShow; // \"P\" or Spacebar\\n\\n if (SlideShow && current.opts.slideShow && (keycode === 80 || keycode === 32) && !$(document.activeElement).is(\"button,a,input\")) {\\n keypress.preventDefault();\\n SlideShow.toggle();\\n }\\n },\\n \"beforeClose.fb onDeactivate.fb\": function beforeCloseFbOnDeactivateFb(e, instance) {\\n var SlideShow = instance && instance.SlideShow;\\n\\n if (SlideShow) {\\n SlideShow.stop();\\n }\\n }\\n }); // Page Visibility API to pause slideshow when window is not active\\n\\n $(document).on(\"visibilitychange\", function () {\\n var instance = $.fancybox.getInstance(),\\n SlideShow = instance && instance.SlideShow;\\n\\n if (SlideShow && SlideShow.isActive) {\\n if (document.hidden) {\\n SlideShow.clear();\\n } else {\\n SlideShow.set();\\n }\\n }\\n });\\n})(document, jQuery); // ==========================================================================\\n//\\n// FullScreen\\n// Adds fullscreen functionality\\n//\\n// ==========================================================================\\n\\n\\n(function (document, $) {\\n \"use strict\"; // Collection of methods supported by user browser\\n\\n var fn = function () {\\n var fnMap = [[\"requestFullscreen\", \"exitFullscreen\", \"fullscreenElement\", \"fullscreenEnabled\", \"fullscreenchange\", \"fullscreenerror\"], // new WebKit\\n [\"webkitRequestFullscreen\", \"webkitExitFullscreen\", \"webkitFullscreenElement\", \"webkitFullscreenEnabled\", \"webkitfullscreenchange\", \"webkitfullscreenerror\"], // old WebKit (Safari 5.1)\\n [\"webkitRequestFullScreen\", \"webkitCancelFullScreen\", \"webkitCurrentFullScreenElement\", \"webkitCancelFullScreen\", \"webkitfullscreenchange\", \"webkitfullscreenerror\"], [\"mozRequestFullScreen\", \"mozCancelFullScreen\", \"mozFullScreenElement\", \"mozFullScreenEnabled\", \"mozfullscreenchange\", \"mozfullscreenerror\"], [\"msRequestFullscreen\", \"msExitFullscreen\", \"msFullscreenElement\", \"msFullscreenEnabled\", \"MSFullscreenChange\", \"MSFullscreenError\"]];\\n var ret = {};\\n\\n for (var i = 0; i < fnMap.length; i++) {\\n var val = fnMap[i];\\n\\n if (val && val[1] in document) {\\n for (var j = 0; j < val.length; j++) {\\n ret[fnMap[0][j]] = val[j];\\n }\\n\\n return ret;\\n }\\n }\\n\\n return false;\\n }();\\n\\n if (fn) {\\n var FullScreen = {\\n request: function request(elem) {\\n elem = elem || document.documentElement;\\n elem[fn.requestFullscreen](elem.ALLOW_KEYBOARD_INPUT);\\n },\\n exit: function exit() {\\n document[fn.exitFullscreen]();\\n },\\n toggle: function toggle(elem) {\\n elem = elem || document.documentElement;\\n\\n if (this.isFullscreen()) {\\n this.exit();\\n } else {\\n this.request(elem);\\n }\\n },\\n isFullscreen: function isFullscreen() {\\n return Boolean(document[fn.fullscreenElement]);\\n },\\n enabled: function enabled() {\\n return Boolean(document[fn.fullscreenEnabled]);\\n }\\n };\\n $.extend(true, $.fancybox.defaults, {\\n btnTpl: {\\n fullScreen: \\'\"\\n },\\n fullScreen: {\\n autoStart: false\\n }\\n });\\n $(document).on(fn.fullscreenchange, function () {\\n var isFullscreen = FullScreen.isFullscreen(),\\n instance = $.fancybox.getInstance();\\n\\n if (instance) {\\n // If image is zooming, then force to stop and reposition properly\\n if (instance.current && instance.current.type === \"image\" && instance.isAnimating) {\\n instance.isAnimating = false;\\n instance.update(true, true, 0);\\n\\n if (!instance.isComplete) {\\n instance.complete();\\n }\\n }\\n\\n instance.trigger(\"onFullscreenChange\", isFullscreen);\\n instance.$refs.container.toggleClass(\"fancybox-is-fullscreen\", isFullscreen);\\n instance.$refs.toolbar.find(\"[data-fancybox-fullscreen]\").toggleClass(\"fancybox-button--fsenter\", !isFullscreen).toggleClass(\"fancybox-button--fsexit\", isFullscreen);\\n }\\n });\\n }\\n\\n $(document).on({\\n \"onInit.fb\": function onInitFb(e, instance) {\\n var $container;\\n\\n if (!fn) {\\n instance.$refs.toolbar.find(\"[data-fancybox-fullscreen]\").remove();\\n return;\\n }\\n\\n if (instance && instance.group[instance.currIndex].opts.fullScreen) {\\n $container = instance.$refs.container;\\n $container.on(\"click.fb-fullscreen\", \"[data-fancybox-fullscreen]\", function (e) {\\n e.stopPropagation();\\n e.preventDefault();\\n FullScreen.toggle();\\n });\\n\\n if (instance.opts.fullScreen && instance.opts.fullScreen.autoStart === true) {\\n FullScreen.request();\\n } // Expose API\\n\\n\\n instance.FullScreen = FullScreen;\\n } else if (instance) {\\n instance.$refs.toolbar.find(\"[data-fancybox-fullscreen]\").hide();\\n }\\n },\\n \"afterKeydown.fb\": function afterKeydownFb(e, instance, current, keypress, keycode) {\\n // \"F\"\\n if (instance && instance.FullScreen && keycode === 70) {\\n keypress.preventDefault();\\n instance.FullScreen.toggle();\\n }\\n },\\n \"beforeClose.fb\": function beforeCloseFb(e, instance) {\\n if (instance && instance.FullScreen && instance.$refs.container.hasClass(\"fancybox-is-fullscreen\")) {\\n FullScreen.exit();\\n }\\n }\\n });\\n})(document, jQuery); // ==========================================================================\\n//\\n// Thumbs\\n// Displays thumbnails in a grid\\n//\\n// ==========================================================================\\n\\n\\n(function (document, $) {\\n \"use strict\";\\n\\n var CLASS = \"fancybox-thumbs\",\\n CLASS_ACTIVE = CLASS + \"-active\"; // Make sure there are default values\\n\\n $.fancybox.defaults = $.extend(true, {\\n btnTpl: {\\n thumbs: \\'\"\\n },\\n thumbs: {\\n autoStart: false,\\n // Display thumbnails on opening\\n hideOnClose: true,\\n // Hide thumbnail grid when closing animation starts\\n parentEl: \".fancybox-container\",\\n // Container is injected into this element\\n axis: \"y\" // Vertical (y) or horizontal (x) scrolling\\n\\n }\\n }, $.fancybox.defaults);\\n\\n var FancyThumbs = function FancyThumbs(instance) {\\n this.init(instance);\\n };\\n\\n $.extend(FancyThumbs.prototype, {\\n $button: null,\\n $grid: null,\\n $list: null,\\n isVisible: false,\\n isActive: false,\\n init: function init(instance) {\\n var self = this,\\n group = instance.group,\\n enabled = 0;\\n self.instance = instance;\\n self.opts = group[instance.currIndex].opts.thumbs;\\n instance.Thumbs = self;\\n self.$button = instance.$refs.toolbar.find(\"[data-fancybox-thumbs]\"); // Enable thumbs if at least two group items have thumbnails\\n\\n for (var i = 0, len = group.length; i < len; i++) {\\n if (group[i].thumb) {\\n enabled++;\\n }\\n\\n if (enabled > 1) {\\n break;\\n }\\n }\\n\\n if (enabled > 1 && !!self.opts) {\\n self.$button.removeAttr(\"style\").on(\"click\", function () {\\n self.toggle();\\n });\\n self.isActive = true;\\n } else {\\n self.$button.hide();\\n }\\n },\\n create: function create() {\\n var self = this,\\n instance = self.instance,\\n parentEl = self.opts.parentEl,\\n list = [],\\n src;\\n\\n if (!self.$grid) {\\n // Create main element\\n self.$grid = $(\\'
    \\').appendTo(instance.$refs.container.find(parentEl).addBack().filter(parentEl)); // Add \"click\" event that performs gallery navigation\\n\\n self.$grid.on(\"click\", \"a\", function () {\\n instance.jumpTo($(this).attr(\"data-index\"));\\n });\\n } // Build the list\\n\\n\\n if (!self.$list) {\\n self.$list = $(\\'
    \\').appendTo(self.$grid);\\n }\\n\\n $.each(instance.group, function (i, item) {\\n src = item.thumb;\\n\\n if (!src && item.type === \"image\") {\\n src = item.src;\\n }\\n\\n list.push(\\'\");\\n });\\n self.$list[0].innerHTML = list.join(\"\");\\n\\n if (self.opts.axis === \"x\") {\\n // Set fixed width for list element to enable horizontal scrolling\\n self.$list.width(parseInt(self.$grid.css(\"padding-right\"), 10) + instance.group.length * self.$list.children().eq(0).outerWidth(true));\\n }\\n },\\n focus: function focus(duration) {\\n var self = this,\\n $list = self.$list,\\n $grid = self.$grid,\\n thumb,\\n thumbPos;\\n\\n if (!self.instance.current) {\\n return;\\n }\\n\\n thumb = $list.children().removeClass(CLASS_ACTIVE).filter(\\'[data-index=\"\\' + self.instance.current.index + \\'\"]\\').addClass(CLASS_ACTIVE);\\n thumbPos = thumb.position(); // Check if need to scroll to make current thumb visible\\n\\n if (self.opts.axis === \"y\" && (thumbPos.top < 0 || thumbPos.top > $list.height() - thumb.outerHeight())) {\\n $list.stop().animate({\\n scrollTop: $list.scrollTop() + thumbPos.top\\n }, duration);\\n } else if (self.opts.axis === \"x\" && (thumbPos.left < $grid.scrollLeft() || thumbPos.left > $grid.scrollLeft() + ($grid.width() - thumb.outerWidth()))) {\\n $list.parent().stop().animate({\\n scrollLeft: thumbPos.left\\n }, duration);\\n }\\n },\\n update: function update() {\\n var that = this;\\n that.instance.$refs.container.toggleClass(\"fancybox-show-thumbs\", this.isVisible);\\n\\n if (that.isVisible) {\\n if (!that.$grid) {\\n that.create();\\n }\\n\\n that.instance.trigger(\"onThumbsShow\");\\n that.focus(0);\\n } else if (that.$grid) {\\n that.instance.trigger(\"onThumbsHide\");\\n } // Update content position\\n\\n\\n that.instance.update();\\n },\\n hide: function hide() {\\n this.isVisible = false;\\n this.update();\\n },\\n show: function show() {\\n this.isVisible = true;\\n this.update();\\n },\\n toggle: function toggle() {\\n this.isVisible = !this.isVisible;\\n this.update();\\n }\\n });\\n $(document).on({\\n \"onInit.fb\": function onInitFb(e, instance) {\\n var Thumbs;\\n\\n if (instance && !instance.Thumbs) {\\n Thumbs = new FancyThumbs(instance);\\n\\n if (Thumbs.isActive && Thumbs.opts.autoStart === true) {\\n Thumbs.show();\\n }\\n }\\n },\\n \"beforeShow.fb\": function beforeShowFb(e, instance, item, firstRun) {\\n var Thumbs = instance && instance.Thumbs;\\n\\n if (Thumbs && Thumbs.isVisible) {\\n Thumbs.focus(firstRun ? 0 : 250);\\n }\\n },\\n \"afterKeydown.fb\": function afterKeydownFb(e, instance, current, keypress, keycode) {\\n var Thumbs = instance && instance.Thumbs; // \"G\"\\n\\n if (Thumbs && Thumbs.isActive && keycode === 71) {\\n keypress.preventDefault();\\n Thumbs.toggle();\\n }\\n },\\n \"beforeClose.fb\": function beforeCloseFb(e, instance) {\\n var Thumbs = instance && instance.Thumbs;\\n\\n if (Thumbs && Thumbs.isVisible && Thumbs.opts.hideOnClose !== false) {\\n Thumbs.$grid.hide();\\n }\\n }\\n });\\n})(document, jQuery); //// ==========================================================================\\n//\\n// Share\\n// Displays simple form for sharing current url\\n//\\n// ==========================================================================\\n\\n\\n(function (document, $) {\\n \"use strict\";\\n\\n $.extend(true, $.fancybox.defaults, {\\n btnTpl: {\\n share: \\'\"\\n },\\n share: {\\n url: function url(instance, item) {\\n return (!instance.currentHash && !(item.type === \"inline\" || item.type === \"html\") ? item.origSrc || item.src : false) || window.location;\\n },\\n tpl: \\'
    \\' + \"

    {{SHARE}}

    \" + \"

    \" + \\'\\' + \\'\\' + \"Facebook\" + \"\" + \\'\\' + \\'\\' + \"Twitter\" + \"\" + \\'\\' + \\'\\' + \"Pinterest\" + \"\" + \"

    \" + \\'

    \\' + \"
    \"\\n }\\n });\\n\\n function escapeHtml(string) {\\n var entityMap = {\\n \"&\": \"&\",\\n \"<\": \"<\",\\n \">\": \">\",\\n \\'\"\\': \""\",\\n \"\\'\": \"'\",\\n \"/\": \"/\",\\n \"`\": \"`\",\\n \"=\": \"=\"\\n };\\n return String(string).replace(/[&<>\"\\'`=\\\\/]/g, function (s) {\\n return entityMap[s];\\n });\\n }\\n\\n $(document).on(\"click\", \"[data-fancybox-share]\", function () {\\n var instance = $.fancybox.getInstance(),\\n current = instance.current || null,\\n url,\\n tpl;\\n\\n if (!current) {\\n return;\\n }\\n\\n if ($.type(current.opts.share.url) === \"function\") {\\n url = current.opts.share.url.apply(current, [instance, current]);\\n }\\n\\n tpl = current.opts.share.tpl.replace(/\\\\{\\\\{media\\\\}\\\\}/g, current.type === \"image\" ? encodeURIComponent(current.src) : \"\").replace(/\\\\{\\\\{url\\\\}\\\\}/g, encodeURIComponent(url)).replace(/\\\\{\\\\{url_raw\\\\}\\\\}/g, escapeHtml(url)).replace(/\\\\{\\\\{descr\\\\}\\\\}/g, instance.$caption ? encodeURIComponent(instance.$caption.text()) : \"\");\\n $.fancybox.open({\\n src: instance.translate(instance, tpl),\\n type: \"html\",\\n opts: {\\n touch: false,\\n animationEffect: false,\\n afterLoad: function afterLoad(shareInstance, shareCurrent) {\\n // Close self if parent instance is closing\\n instance.$refs.container.one(\"beforeClose.fb\", function () {\\n shareInstance.close(null, 0);\\n }); // Opening links in a popup window\\n\\n shareCurrent.$content.find(\".fancybox-share__button\").click(function () {\\n window.open(this.href, \"Share\", \"width=550, height=450\");\\n return false;\\n });\\n },\\n mobile: {\\n autoFocus: false\\n }\\n }\\n });\\n });\\n})(document, jQuery); // ==========================================================================\\n//\\n// Hash\\n// Enables linking to each modal\\n//\\n// ==========================================================================\\n\\n\\n(function (window, document, $) {\\n \"use strict\"; // Simple $.escapeSelector polyfill (for jQuery prior v3)\\n\\n if (!$.escapeSelector) {\\n $.escapeSelector = function (sel) {\\n var rcssescape = /([\\\\0-\\\\x1f\\\\x7f]|^-?\\\\d)|^-$|[^\\\\x80-\\\\uFFFF\\\\w-]/g;\\n\\n var fcssescape = function fcssescape(ch, asCodePoint) {\\n if (asCodePoint) {\\n // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\\n if (ch === \"\\\\0\") {\\n return \"\\\\uFFFD\";\\n } // Control characters and (dependent upon position) numbers get escaped as code points\\n\\n\\n return ch.slice(0, -1) + \"\\\\\\\\\" + ch.charCodeAt(ch.length - 1).toString(16) + \" \";\\n } // Other potentially-special ASCII characters get backslash-escaped\\n\\n\\n return \"\\\\\\\\\" + ch;\\n };\\n\\n return (sel + \"\").replace(rcssescape, fcssescape);\\n };\\n } // Get info about gallery name and current index from url\\n\\n\\n function parseUrl() {\\n var hash = window.location.hash.substr(1),\\n rez = hash.split(\"-\"),\\n index = rez.length > 1 && /^\\\\+?\\\\d+$/.test(rez[rez.length - 1]) ? parseInt(rez.pop(-1), 10) || 1 : 1,\\n gallery = rez.join(\"-\");\\n return {\\n hash: hash,\\n\\n /* Index is starting from 1 */\\n index: index < 1 ? 1 : index,\\n gallery: gallery\\n };\\n } // Trigger click evnt on links to open new fancyBox instance\\n\\n\\n function triggerFromUrl(url) {\\n if (url.gallery !== \"\") {\\n // If we can find element matching \\'data-fancybox\\' atribute,\\n // then triggering click event should start fancyBox\\n $(\"[data-fancybox=\\'\" + $.escapeSelector(url.gallery) + \"\\']\").eq(url.index - 1).focus().trigger(\"click.fb-start\");\\n }\\n } // Get gallery name from current instance\\n\\n\\n function getGalleryID(instance) {\\n var opts, ret;\\n\\n if (!instance) {\\n return false;\\n }\\n\\n opts = instance.current ? instance.current.opts : instance.opts;\\n ret = opts.hash || (opts.$orig ? opts.$orig.data(\"fancybox\") || opts.$orig.data(\"fancybox-trigger\") : \"\");\\n return ret === \"\" ? false : ret;\\n } // Start when DOM becomes ready\\n\\n\\n $(function () {\\n // Check if user has disabled this module\\n if ($.fancybox.defaults.hash === false) {\\n return;\\n } // Update hash when opening/closing fancyBox\\n\\n\\n $(document).on({\\n \"onInit.fb\": function onInitFb(e, instance) {\\n var url, gallery;\\n\\n if (instance.group[instance.currIndex].opts.hash === false) {\\n return;\\n }\\n\\n url = parseUrl();\\n gallery = getGalleryID(instance); // Make sure gallery start index matches index from hash\\n\\n if (gallery && url.gallery && gallery == url.gallery) {\\n instance.currIndex = url.index - 1;\\n }\\n },\\n \"beforeShow.fb\": function beforeShowFb(e, instance, current, firstRun) {\\n var gallery;\\n\\n if (!current || current.opts.hash === false) {\\n return;\\n } // Check if need to update window hash\\n\\n\\n gallery = getGalleryID(instance);\\n\\n if (!gallery) {\\n return;\\n } // Variable containing last hash value set by fancyBox\\n // It will be used to determine if fancyBox needs to close after hash change is detected\\n\\n\\n instance.currentHash = gallery + (instance.group.length > 1 ? \"-\" + (current.index + 1) : \"\"); // If current hash is the same (this instance most likely is opened by hashchange), then do nothing\\n\\n if (window.location.hash === \"#\" + instance.currentHash) {\\n return;\\n }\\n\\n if (firstRun && !instance.origHash) {\\n instance.origHash = window.location.hash;\\n }\\n\\n if (instance.hashTimer) {\\n clearTimeout(instance.hashTimer);\\n } // Update hash\\n\\n\\n instance.hashTimer = setTimeout(function () {\\n if (\"replaceState\" in window.history) {\\n window.history[firstRun ? \"pushState\" : \"replaceState\"]({}, document.title, window.location.pathname + window.location.search + \"#\" + instance.currentHash);\\n\\n if (firstRun) {\\n instance.hasCreatedHistory = true;\\n }\\n } else {\\n window.location.hash = instance.currentHash;\\n }\\n\\n instance.hashTimer = null;\\n }, 300);\\n },\\n \"beforeClose.fb\": function beforeCloseFb(e, instance, current) {\\n if (!current || current.opts.hash === false) {\\n return;\\n }\\n\\n clearTimeout(instance.hashTimer); // Goto previous history entry\\n\\n if (instance.currentHash && instance.hasCreatedHistory) {\\n window.history.back();\\n } else if (instance.currentHash) {\\n if (\"replaceState\" in window.history) {\\n window.history.replaceState({}, document.title, window.location.pathname + window.location.search + (instance.origHash || \"\"));\\n } else {\\n window.location.hash = instance.origHash;\\n }\\n }\\n\\n instance.currentHash = null;\\n }\\n }); // Check if need to start/close after url has changed\\n\\n $(window).on(\"hashchange.fb\", function () {\\n var url = parseUrl(),\\n fb = null; // Find last fancyBox instance that has \"hash\"\\n\\n $.each($(\".fancybox-container\").get().reverse(), function (index, value) {\\n var tmp = $(value).data(\"FancyBox\");\\n\\n if (tmp && tmp.currentHash) {\\n fb = tmp;\\n return false;\\n }\\n });\\n\\n if (fb) {\\n // Now, compare hash values\\n if (fb.currentHash !== url.gallery + \"-\" + url.index && !(url.index === 1 && fb.currentHash == url.gallery)) {\\n fb.currentHash = null;\\n fb.close();\\n }\\n } else if (url.gallery !== \"\") {\\n triggerFromUrl(url);\\n }\\n }); // Check current hash and trigger click event on matching element to start fancyBox, if needed\\n\\n setTimeout(function () {\\n if (!$.fancybox.getInstance()) {\\n triggerFromUrl(parseUrl());\\n }\\n }, 50);\\n });\\n})(window, document, jQuery); // ==========================================================================\\n//\\n// Wheel\\n// Basic mouse weheel support for gallery navigation\\n//\\n// ==========================================================================\\n\\n\\n(function (document, $) {\\n \"use strict\";\\n\\n var prevTime = new Date().getTime();\\n $(document).on({\\n \"onInit.fb\": function onInitFb(e, instance, current) {\\n instance.$refs.stage.on(\"mousewheel DOMMouseScroll wheel MozMousePixelScroll\", function (e) {\\n var current = instance.current,\\n currTime = new Date().getTime();\\n\\n if (instance.group.length < 2 || current.opts.wheel === false || current.opts.wheel === \"auto\" && current.type !== \"image\") {\\n return;\\n }\\n\\n e.preventDefault();\\n e.stopPropagation();\\n\\n if (current.$slide.hasClass(\"fancybox-animated\")) {\\n return;\\n }\\n\\n e = e.originalEvent || e;\\n\\n if (currTime - prevTime < 250) {\\n return;\\n }\\n\\n prevTime = currTime;\\n instance[(-e.deltaY || -e.deltaX || e.wheelDelta || -e.detail) < 0 ? \"next\" : \"previous\"]();\\n });\\n }\\n });\\n})(document, jQuery);\\n\\n//# sourceURL=webpack:///./node_modules/@fancyapps/fancybox/dist/jquery.fancybox.js?')},\"./node_modules/@shepherdsfriendlysociety/theme/dist/src/js/components/advice-bubble.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"openBubble\", function() { return openBubble; });\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"closeBubble\", function() { return closeBubble; });\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return AdviceBubble; });\\nvar openBubble = function openBubble(e, b) {\\n e.preventDefault(), b.classList.add(\"c-advice-bubble--visible\");\\n};\\nvar closeBubble = function closeBubble(e, b) {\\n b.classList.remove(\"c-advice-bubble--visible\");\\n};\\nfunction AdviceBubble() {\\n var e = document.querySelector(\".c-advice-bubble\");\\n e && document.addEventListener(\"toggleBubble\", function (b) {\\n var l = b.detail.type;\\n \"open\" === l ? openBubble(b, e) : \"close\" === l && closeBubble(0, e);\\n });\\n}\\n\\n//# sourceURL=webpack:///./node_modules/@shepherdsfriendlysociety/theme/dist/src/js/components/advice-bubble.js?')},\"./node_modules/@shepherdsfriendlysociety/theme/dist/src/js/components/gallery.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return Gallery; });\\nfunction Gallery() {\\n var e = document.querySelector(\".c-gallery\"),\\n t = e && e.querySelectorAll(\".c-gallery__image\"),\\n a = e && e.querySelector(\".c-gallery__images-row\"),\\n l = document.createDocumentFragment();\\n var r = 0,\\n c = !1;\\n\\n var i = function i() {\\n clearInterval(c), c = !1;\\n },\\n n = function n(e) {\\n r < t.length - 1 ? e(r + 1) : e(0);\\n },\\n s = function s(l) {\\n c && i();\\n var o = t[l],\\n g = o.offsetLeft,\\n y = a.style.marginLeft.split(\"px\")[0];\\n e.querySelector(\".c-gallery__image--active\").classList.remove(\"c-gallery__image--active\"), o.classList.add(\"c-gallery__image--active\"), Number(y) ? a.style.marginLeft = Number(y) - g + \"px\" : a.style.marginLeft = \"-\".concat(g, \"px\"), e.querySelector(\".c-gallery__navigation-bullet--active\").classList.remove(\"c-gallery__navigation-bullet--active\"), e.querySelector(\".c-gallery__navigation-bullet[data-target=\\\\\"\".concat(l, \"\\\\\"]\")).classList.add(\"c-gallery__navigation-bullet--active\"), r = l, c = setInterval(function () {\\n return n(s);\\n }, 3e3);\\n },\\n o = function o(e) {\\n var t = e.srcElement,\\n a = t.dataset.target;\\n e.preventDefault(), t.classList.contains(\"c-gallery__navigation-bullet--active\") || s(Number(a));\\n },\\n g = function g() {\\n var l = e.parentElement.clientWidth;\\n c && i(), a.style.width = \"\".concat(l, \"px\");\\n\\n for (var _e = 0; _e < t.length; _e++) {\\n t[_e].style.width = \"\".concat(l, \"px\");\\n }\\n\\n c = setInterval(function () {\\n return n(s);\\n }, 3e3);\\n };\\n\\n e && (g(), window.onresize = g, Object.prototype.hasOwnProperty.call(e.dataset, \"hasNavigation\") && function () {\\n for (var _e2 = 0; _e2 < t.length; _e2++) {\\n var _a = t[_e2],\\n _r = document.createElement(\"a\");\\n\\n _r.classList.add(\"c-gallery__navigation-bullet\"), _r.setAttribute(\"data-target\", _e2), _r.setAttribute(\"href\", \"#\".concat(_e2)), _r.innerText = \"show \".concat(_a.querySelector(\"img\").alt), _a.classList.contains(\"c-gallery__image--active\") && _r.classList.add(\"c-gallery__navigation-bullet--active\"), _r.addEventListener(\"click\", o), l.appendChild(_r);\\n }\\n\\n e.querySelector(\".c-gallery__navigation\").appendChild(l);\\n }());\\n}\\n\\n//# sourceURL=webpack:///./node_modules/@shepherdsfriendlysociety/theme/dist/src/js/components/gallery.js?')},\"./node_modules/@shepherdsfriendlysociety/theme/dist/src/js/components/modal.js\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";eval('__webpack_require__.r(__webpack_exports__);\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"openModal\", function() { return openModal; });\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"closeModal\", function() { return closeModal; });\\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return Modal; });\\nvar openModal = function openModal(e, o, t, d) {\\n e.preventDefault(), t.classList.remove(\"o-modal--hidden\"), o.classList.remove(\"o-modal--hidden\");\\n var l = new CustomEvent(\"ModalChanged\", {\\n detail: {\\n type: \"open\",\\n context: d\\n }\\n });\\n document.dispatchEvent(l);\\n};\\nvar closeModal = function closeModal(e, o, t, d) {\\n var l = document.querySelector(\".o-modal__overlay\");\\n var n = t;\\n null === n && (n = l.parentNode.querySelector(\".o-modal\")), n.classList.add(\"o-modal--hidden\"), o.classList.add(\"o-modal--hidden\");\\n var a = new CustomEvent(\"ModalChanged\", {\\n detail: {\\n type: \"closed\",\\n context: d\\n }\\n });\\n document.dispatchEvent(a);\\n};\\nvar modalContext = \"\";\\nfunction Modal() {\\n var e = document.createElement(\"div\"),\\n o = document.querySelector(\".o-modal\"),\\n t = document.querySelector(\".o-modal__trigger\"),\\n d = document.querySelector(\".o-modal__close\"),\\n l = document.querySelector(\".o-modal__button-close\");\\n\\n if (e.classList.add(\"o-modal__overlay\", \"o-modal--hidden\"), o) {\\n var n = document.createDocumentFragment().appendChild(o);\\n document.querySelector(\"body\").appendChild(n), document.querySelector(\"body\").appendChild(e), document.addEventListener(\"toggleModal\", function (t) {\\n var _t$detail = t.detail,\\n d = _t$detail.type,\\n l = _t$detail.context;\\n modalContext = l, \"open\" === d ? openModal(t, e, o, modalContext) : \"close\" === d && closeModal(0, e, o, modalContext);\\n }), t && t.addEventListener(\"click\", function (t) {\\n openModal(t, e, o, modalContext);\\n }, !1), l && l.addEventListener(\"click\", function (t) {\\n closeModal(0, e, o, modalContext);\\n }, !1), d && d.addEventListener(\"click\", function (t) {\\n closeModal(0, e, o, modalContext);\\n }, !1), e.addEventListener(\"click\", function (t) {\\n closeModal(0, e, o, modalContext);\\n }, !1), document.addEventListener(\"keydown\", function (t) {\\n \"Escape\" !== t.key || o.classList.contains(\"o-modal--hidden\") || closeModal(0, e, o, modalContext);\\n });\\n }\\n}\\n\\n//# sourceURL=webpack:///./node_modules/@shepherdsfriendlysociety/theme/dist/src/js/components/modal.js?')},\"./node_modules/core-js/es/number/index.js\":function(module,exports,__webpack_require__){eval('__webpack_require__(/*! ../../modules/es.number.constructor */ \"./node_modules/core-js/modules/es.number.constructor.js\");\\n\\n__webpack_require__(/*! ../../modules/es.number.epsilon */ \"./node_modules/core-js/modules/es.number.epsilon.js\");\\n\\n__webpack_require__(/*! ../../modules/es.number.is-finite */ \"./node_modules/core-js/modules/es.number.is-finite.js\");\\n\\n__webpack_require__(/*! ../../modules/es.number.is-integer */ \"./node_modules/core-js/modules/es.number.is-integer.js\");\\n\\n__webpack_require__(/*! ../../modules/es.number.is-nan */ \"./node_modules/core-js/modules/es.number.is-nan.js\");\\n\\n__webpack_require__(/*! ../../modules/es.number.is-safe-integer */ \"./node_modules/core-js/modules/es.number.is-safe-integer.js\");\\n\\n__webpack_require__(/*! ../../modules/es.number.max-safe-integer */ \"./node_modules/core-js/modules/es.number.max-safe-integer.js\");\\n\\n__webpack_require__(/*! ../../modules/es.number.min-safe-integer */ \"./node_modules/core-js/modules/es.number.min-safe-integer.js\");\\n\\n__webpack_require__(/*! ../../modules/es.number.parse-float */ \"./node_modules/core-js/modules/es.number.parse-float.js\");\\n\\n__webpack_require__(/*! ../../modules/es.number.parse-int */ \"./node_modules/core-js/modules/es.number.parse-int.js\");\\n\\n__webpack_require__(/*! ../../modules/es.number.to-fixed */ \"./node_modules/core-js/modules/es.number.to-fixed.js\");\\n\\n__webpack_require__(/*! ../../modules/es.number.to-precision */ \"./node_modules/core-js/modules/es.number.to-precision.js\");\\n\\nvar path = __webpack_require__(/*! ../../internals/path */ \"./node_modules/core-js/internals/path.js\");\\n\\nmodule.exports = path.Number;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/es/number/index.js?')},\"./node_modules/core-js/es/promise/index.js\":function(module,exports,__webpack_require__){eval('__webpack_require__(/*! ../../modules/es.object.to-string */ \"./node_modules/core-js/modules/es.object.to-string.js\");\\n\\n__webpack_require__(/*! ../../modules/es.string.iterator */ \"./node_modules/core-js/modules/es.string.iterator.js\");\\n\\n__webpack_require__(/*! ../../modules/web.dom-collections.iterator */ \"./node_modules/core-js/modules/web.dom-collections.iterator.js\");\\n\\n__webpack_require__(/*! ../../modules/es.promise */ \"./node_modules/core-js/modules/es.promise.js\");\\n\\n__webpack_require__(/*! ../../modules/es.promise.all-settled */ \"./node_modules/core-js/modules/es.promise.all-settled.js\");\\n\\n__webpack_require__(/*! ../../modules/es.promise.finally */ \"./node_modules/core-js/modules/es.promise.finally.js\");\\n\\nvar path = __webpack_require__(/*! ../../internals/path */ \"./node_modules/core-js/internals/path.js\");\\n\\nmodule.exports = path.Promise;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/es/promise/index.js?')},\"./node_modules/core-js/internals/a-function.js\":function(module,exports){eval(\"module.exports = function (it) {\\n if (typeof it != 'function') {\\n throw TypeError(String(it) + ' is not a function');\\n }\\n\\n return it;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/a-function.js?\")},\"./node_modules/core-js/internals/a-possible-prototype.js\":function(module,exports,__webpack_require__){eval('var isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\\n\\nmodule.exports = function (it) {\\n if (!isObject(it) && it !== null) {\\n throw TypeError(\"Can\\'t set \" + String(it) + \\' as a prototype\\');\\n }\\n\\n return it;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/a-possible-prototype.js?')},\"./node_modules/core-js/internals/add-to-unscopables.js\":function(module,exports,__webpack_require__){eval('var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\\n\\nvar create = __webpack_require__(/*! ../internals/object-create */ \"./node_modules/core-js/internals/object-create.js\");\\n\\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\");\\n\\nvar UNSCOPABLES = wellKnownSymbol(\\'unscopables\\');\\nvar ArrayPrototype = Array.prototype; // Array.prototype[@@unscopables]\\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\\n\\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\\n definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {\\n configurable: true,\\n value: create(null)\\n });\\n} // add a key to Array.prototype[@@unscopables]\\n\\n\\nmodule.exports = function (key) {\\n ArrayPrototype[UNSCOPABLES][key] = true;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/add-to-unscopables.js?')},\"./node_modules/core-js/internals/an-instance.js\":function(module,exports){eval(\"module.exports = function (it, Constructor, name) {\\n if (!(it instanceof Constructor)) {\\n throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');\\n }\\n\\n return it;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/an-instance.js?\")},\"./node_modules/core-js/internals/an-object.js\":function(module,exports,__webpack_require__){eval(\"var isObject = __webpack_require__(/*! ../internals/is-object */ \\\"./node_modules/core-js/internals/is-object.js\\\");\\n\\nmodule.exports = function (it) {\\n if (!isObject(it)) {\\n throw TypeError(String(it) + ' is not an object');\\n }\\n\\n return it;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/an-object.js?\")},\"./node_modules/core-js/internals/array-includes.js\":function(module,exports,__webpack_require__){eval('var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ \"./node_modules/core-js/internals/to-indexed-object.js\");\\n\\nvar toLength = __webpack_require__(/*! ../internals/to-length */ \"./node_modules/core-js/internals/to-length.js\");\\n\\nvar toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ \"./node_modules/core-js/internals/to-absolute-index.js\"); // `Array.prototype.{ indexOf, includes }` methods implementation\\n\\n\\nvar createMethod = function createMethod(IS_INCLUDES) {\\n return function ($this, el, fromIndex) {\\n var O = toIndexedObject($this);\\n var length = toLength(O.length);\\n var index = toAbsoluteIndex(fromIndex, length);\\n var value; // Array#includes uses SameValueZero equality algorithm\\n // eslint-disable-next-line no-self-compare\\n\\n if (IS_INCLUDES && el != el) while (length > index) {\\n value = O[index++]; // eslint-disable-next-line no-self-compare\\n\\n if (value != value) return true; // Array#indexOf ignores holes, Array#includes - not\\n } else for (; length > index; index++) {\\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\\n }\\n return !IS_INCLUDES && -1;\\n };\\n};\\n\\nmodule.exports = {\\n // `Array.prototype.includes` method\\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\\n includes: createMethod(true),\\n // `Array.prototype.indexOf` method\\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\\n indexOf: createMethod(false)\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-includes.js?')},\"./node_modules/core-js/internals/call-with-safe-iteration-closing.js\":function(module,exports,__webpack_require__){eval(\"var anObject = __webpack_require__(/*! ../internals/an-object */ \\\"./node_modules/core-js/internals/an-object.js\\\"); // call something on iterator step with safe closing on error\\n\\n\\nmodule.exports = function (iterator, fn, value, ENTRIES) {\\n try {\\n return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value); // 7.4.6 IteratorClose(iterator, completion)\\n } catch (error) {\\n var returnMethod = iterator['return'];\\n if (returnMethod !== undefined) anObject(returnMethod.call(iterator));\\n throw error;\\n }\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/call-with-safe-iteration-closing.js?\")},\"./node_modules/core-js/internals/check-correctness-of-iteration.js\":function(module,exports,__webpack_require__){eval(\"var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \\\"./node_modules/core-js/internals/well-known-symbol.js\\\");\\n\\nvar ITERATOR = wellKnownSymbol('iterator');\\nvar SAFE_CLOSING = false;\\n\\ntry {\\n var called = 0;\\n var iteratorWithReturn = {\\n next: function next() {\\n return {\\n done: !!called++\\n };\\n },\\n 'return': function _return() {\\n SAFE_CLOSING = true;\\n }\\n };\\n\\n iteratorWithReturn[ITERATOR] = function () {\\n return this;\\n }; // eslint-disable-next-line no-throw-literal\\n\\n\\n Array.from(iteratorWithReturn, function () {\\n throw 2;\\n });\\n} catch (error) {\\n /* empty */\\n}\\n\\nmodule.exports = function (exec, SKIP_CLOSING) {\\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\\n var ITERATION_SUPPORT = false;\\n\\n try {\\n var object = {};\\n\\n object[ITERATOR] = function () {\\n return {\\n next: function next() {\\n return {\\n done: ITERATION_SUPPORT = true\\n };\\n }\\n };\\n };\\n\\n exec(object);\\n } catch (error) {\\n /* empty */\\n }\\n\\n return ITERATION_SUPPORT;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/check-correctness-of-iteration.js?\")},\"./node_modules/core-js/internals/classof-raw.js\":function(module,exports){eval(\"var toString = {}.toString;\\n\\nmodule.exports = function (it) {\\n return toString.call(it).slice(8, -1);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/classof-raw.js?\")},\"./node_modules/core-js/internals/classof.js\":function(module,exports,__webpack_require__){eval(\"var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ \\\"./node_modules/core-js/internals/to-string-tag-support.js\\\");\\n\\nvar classofRaw = __webpack_require__(/*! ../internals/classof-raw */ \\\"./node_modules/core-js/internals/classof-raw.js\\\");\\n\\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \\\"./node_modules/core-js/internals/well-known-symbol.js\\\");\\n\\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag'); // ES3 wrong here\\n\\nvar CORRECT_ARGUMENTS = classofRaw(function () {\\n return arguments;\\n}()) == 'Arguments'; // fallback for IE11 Script Access Denied error\\n\\nvar tryGet = function tryGet(it, key) {\\n try {\\n return it[key];\\n } catch (error) {\\n /* empty */\\n }\\n}; // getting tag from ES6+ `Object.prototype.toString`\\n\\n\\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\\n var O, tag, result;\\n return it === undefined ? 'Undefined' : it === null ? 'Null' // @@toStringTag case\\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag // builtinTag case\\n : CORRECT_ARGUMENTS ? classofRaw(O) // ES3 arguments fallback\\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/classof.js?\")},\"./node_modules/core-js/internals/copy-constructor-properties.js\":function(module,exports,__webpack_require__){eval('var has = __webpack_require__(/*! ../internals/has */ \"./node_modules/core-js/internals/has.js\");\\n\\nvar ownKeys = __webpack_require__(/*! ../internals/own-keys */ \"./node_modules/core-js/internals/own-keys.js\");\\n\\nvar getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ \"./node_modules/core-js/internals/object-get-own-property-descriptor.js\");\\n\\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\");\\n\\nmodule.exports = function (target, source) {\\n var keys = ownKeys(source);\\n var defineProperty = definePropertyModule.f;\\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\\n\\n for (var i = 0; i < keys.length; i++) {\\n var key = keys[i];\\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\\n }\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/copy-constructor-properties.js?')},\"./node_modules/core-js/internals/correct-prototype-getter.js\":function(module,exports,__webpack_require__){eval('var fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\\n\\nmodule.exports = !fails(function () {\\n function F() {\\n /* empty */\\n }\\n\\n F.prototype.constructor = null;\\n return Object.getPrototypeOf(new F()) !== F.prototype;\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/correct-prototype-getter.js?')},\"./node_modules/core-js/internals/create-iterator-constructor.js\":function(module,exports,__webpack_require__){\"use strict\";eval('\\n\\nvar IteratorPrototype = __webpack_require__(/*! ../internals/iterators-core */ \"./node_modules/core-js/internals/iterators-core.js\").IteratorPrototype;\\n\\nvar create = __webpack_require__(/*! ../internals/object-create */ \"./node_modules/core-js/internals/object-create.js\");\\n\\nvar createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ \"./node_modules/core-js/internals/create-property-descriptor.js\");\\n\\nvar setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ \"./node_modules/core-js/internals/set-to-string-tag.js\");\\n\\nvar Iterators = __webpack_require__(/*! ../internals/iterators */ \"./node_modules/core-js/internals/iterators.js\");\\n\\nvar returnThis = function returnThis() {\\n return this;\\n};\\n\\nmodule.exports = function (IteratorConstructor, NAME, next) {\\n var TO_STRING_TAG = NAME + \\' Iterator\\';\\n IteratorConstructor.prototype = create(IteratorPrototype, {\\n next: createPropertyDescriptor(1, next)\\n });\\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\\n Iterators[TO_STRING_TAG] = returnThis;\\n return IteratorConstructor;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/create-iterator-constructor.js?')},\"./node_modules/core-js/internals/create-non-enumerable-property.js\":function(module,exports,__webpack_require__){eval('var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\\n\\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\");\\n\\nvar createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ \"./node_modules/core-js/internals/create-property-descriptor.js\");\\n\\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\\n} : function (object, key, value) {\\n object[key] = value;\\n return object;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/create-non-enumerable-property.js?')},\"./node_modules/core-js/internals/create-property-descriptor.js\":function(module,exports){eval(\"module.exports = function (bitmap, value) {\\n return {\\n enumerable: !(bitmap & 1),\\n configurable: !(bitmap & 2),\\n writable: !(bitmap & 4),\\n value: value\\n };\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/create-property-descriptor.js?\")},\"./node_modules/core-js/internals/define-iterator.js\":function(module,exports,__webpack_require__){\"use strict\";eval('\\n\\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\\n\\nvar createIteratorConstructor = __webpack_require__(/*! ../internals/create-iterator-constructor */ \"./node_modules/core-js/internals/create-iterator-constructor.js\");\\n\\nvar getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ \"./node_modules/core-js/internals/object-get-prototype-of.js\");\\n\\nvar setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ \"./node_modules/core-js/internals/object-set-prototype-of.js\");\\n\\nvar setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ \"./node_modules/core-js/internals/set-to-string-tag.js\");\\n\\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\\n\\nvar redefine = __webpack_require__(/*! ../internals/redefine */ \"./node_modules/core-js/internals/redefine.js\");\\n\\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\\n\\nvar IS_PURE = __webpack_require__(/*! ../internals/is-pure */ \"./node_modules/core-js/internals/is-pure.js\");\\n\\nvar Iterators = __webpack_require__(/*! ../internals/iterators */ \"./node_modules/core-js/internals/iterators.js\");\\n\\nvar IteratorsCore = __webpack_require__(/*! ../internals/iterators-core */ \"./node_modules/core-js/internals/iterators-core.js\");\\n\\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\\nvar ITERATOR = wellKnownSymbol(\\'iterator\\');\\nvar KEYS = \\'keys\\';\\nvar VALUES = \\'values\\';\\nvar ENTRIES = \\'entries\\';\\n\\nvar returnThis = function returnThis() {\\n return this;\\n};\\n\\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\\n createIteratorConstructor(IteratorConstructor, NAME, next);\\n\\n var getIterationMethod = function getIterationMethod(KIND) {\\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\\n\\n switch (KIND) {\\n case KEYS:\\n return function keys() {\\n return new IteratorConstructor(this, KIND);\\n };\\n\\n case VALUES:\\n return function values() {\\n return new IteratorConstructor(this, KIND);\\n };\\n\\n case ENTRIES:\\n return function entries() {\\n return new IteratorConstructor(this, KIND);\\n };\\n }\\n\\n return function () {\\n return new IteratorConstructor(this);\\n };\\n };\\n\\n var TO_STRING_TAG = NAME + \\' Iterator\\';\\n var INCORRECT_VALUES_NAME = false;\\n var IterablePrototype = Iterable.prototype;\\n var nativeIterator = IterablePrototype[ITERATOR] || IterablePrototype[\\'@@iterator\\'] || DEFAULT && IterablePrototype[DEFAULT];\\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\\n var anyNativeIterator = NAME == \\'Array\\' ? IterablePrototype.entries || nativeIterator : nativeIterator;\\n var CurrentIteratorPrototype, methods, KEY; // fix native\\n\\n if (anyNativeIterator) {\\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\\n\\n if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\\n if (setPrototypeOf) {\\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\\n } else if (typeof CurrentIteratorPrototype[ITERATOR] != \\'function\\') {\\n createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);\\n }\\n } // Set @@toStringTag to native iterators\\n\\n\\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\\n }\\n } // fix Array#{values, @@iterator}.name in V8 / FF\\n\\n\\n if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\\n INCORRECT_VALUES_NAME = true;\\n\\n defaultIterator = function values() {\\n return nativeIterator.call(this);\\n };\\n } // define iterator\\n\\n\\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\\n createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);\\n }\\n\\n Iterators[NAME] = defaultIterator; // export additional methods\\n\\n if (DEFAULT) {\\n methods = {\\n values: getIterationMethod(VALUES),\\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\\n entries: getIterationMethod(ENTRIES)\\n };\\n if (FORCED) for (KEY in methods) {\\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\\n redefine(IterablePrototype, KEY, methods[KEY]);\\n }\\n } else $({\\n target: NAME,\\n proto: true,\\n forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME\\n }, methods);\\n }\\n\\n return methods;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/define-iterator.js?')},\"./node_modules/core-js/internals/descriptors.js\":function(module,exports,__webpack_require__){eval('var fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\"); // Thank\\'s IE8 for his funny defineProperty\\n\\n\\nmodule.exports = !fails(function () {\\n return Object.defineProperty({}, 1, {\\n get: function get() {\\n return 7;\\n }\\n })[1] != 7;\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/descriptors.js?')},\"./node_modules/core-js/internals/document-create-element.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\\n\\nvar document = global.document; // typeof document.createElement is \\'object\\' in old IE\\n\\nvar EXISTS = isObject(document) && isObject(document.createElement);\\n\\nmodule.exports = function (it) {\\n return EXISTS ? document.createElement(it) : {};\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/document-create-element.js?')},\"./node_modules/core-js/internals/dom-iterables.js\":function(module,exports){eval(\"// iterable DOM collections\\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\\nmodule.exports = {\\n CSSRuleList: 0,\\n CSSStyleDeclaration: 0,\\n CSSValueList: 0,\\n ClientRectList: 0,\\n DOMRectList: 0,\\n DOMStringList: 0,\\n DOMTokenList: 1,\\n DataTransferItemList: 0,\\n FileList: 0,\\n HTMLAllCollection: 0,\\n HTMLCollection: 0,\\n HTMLFormElement: 0,\\n HTMLSelectElement: 0,\\n MediaList: 0,\\n MimeTypeArray: 0,\\n NamedNodeMap: 0,\\n NodeList: 1,\\n PaintRequestList: 0,\\n Plugin: 0,\\n PluginArray: 0,\\n SVGLengthList: 0,\\n SVGNumberList: 0,\\n SVGPathSegList: 0,\\n SVGPointList: 0,\\n SVGStringList: 0,\\n SVGTransformList: 0,\\n SourceBufferList: 0,\\n StyleSheetList: 0,\\n TextTrackCueList: 0,\\n TextTrackList: 0,\\n TouchList: 0\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/dom-iterables.js?\")},\"./node_modules/core-js/internals/engine-is-ios.js\":function(module,exports,__webpack_require__){eval('var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ \"./node_modules/core-js/internals/engine-user-agent.js\");\\n\\nmodule.exports = /(iphone|ipod|ipad).*applewebkit/i.test(userAgent);\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/engine-is-ios.js?')},\"./node_modules/core-js/internals/engine-user-agent.js\":function(module,exports,__webpack_require__){eval(\"var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ \\\"./node_modules/core-js/internals/get-built-in.js\\\");\\n\\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/engine-user-agent.js?\")},\"./node_modules/core-js/internals/engine-v8-version.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ \"./node_modules/core-js/internals/engine-user-agent.js\");\\n\\nvar process = global.process;\\nvar versions = process && process.versions;\\nvar v8 = versions && versions.v8;\\nvar match, version;\\n\\nif (v8) {\\n match = v8.split(\\'.\\');\\n version = match[0] + match[1];\\n} else if (userAgent) {\\n match = userAgent.match(/Edge\\\\/(\\\\d+)/);\\n\\n if (!match || match[1] >= 74) {\\n match = userAgent.match(/Chrome\\\\/(\\\\d+)/);\\n if (match) version = match[1];\\n }\\n}\\n\\nmodule.exports = version && +version;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/engine-v8-version.js?')},\"./node_modules/core-js/internals/enum-bug-keys.js\":function(module,exports){eval(\"// IE8- don't enum bug keys\\nmodule.exports = ['constructor', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'toLocaleString', 'toString', 'valueOf'];\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/enum-bug-keys.js?\")},\"./node_modules/core-js/internals/export.js\":function(module,exports,__webpack_require__){eval('function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\\n\\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ \"./node_modules/core-js/internals/object-get-own-property-descriptor.js\").f;\\n\\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\\n\\nvar redefine = __webpack_require__(/*! ../internals/redefine */ \"./node_modules/core-js/internals/redefine.js\");\\n\\nvar setGlobal = __webpack_require__(/*! ../internals/set-global */ \"./node_modules/core-js/internals/set-global.js\");\\n\\nvar copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ \"./node_modules/core-js/internals/copy-constructor-properties.js\");\\n\\nvar isForced = __webpack_require__(/*! ../internals/is-forced */ \"./node_modules/core-js/internals/is-forced.js\");\\n/*\\n options.target - name of the target object\\n options.global - target is the global object\\n options.stat - export as static methods of target\\n options.proto - export as prototype methods of target\\n options.real - real prototype method for the `pure` version\\n options.forced - export even if the native feature is available\\n options.bind - bind methods to the target, required for the `pure` version\\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\\n options.sham - add a flag to not completely full polyfills\\n options.enumerable - export as enumerable property\\n options.noTargetGet - prevent calling a getter on target\\n*/\\n\\n\\nmodule.exports = function (options, source) {\\n var TARGET = options.target;\\n var GLOBAL = options.global;\\n var STATIC = options.stat;\\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\\n\\n if (GLOBAL) {\\n target = global;\\n } else if (STATIC) {\\n target = global[TARGET] || setGlobal(TARGET, {});\\n } else {\\n target = (global[TARGET] || {}).prototype;\\n }\\n\\n if (target) for (key in source) {\\n sourceProperty = source[key];\\n\\n if (options.noTargetGet) {\\n descriptor = getOwnPropertyDescriptor(target, key);\\n targetProperty = descriptor && descriptor.value;\\n } else targetProperty = target[key];\\n\\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? \\'.\\' : \\'#\\') + key, options.forced); // contained in target\\n\\n if (!FORCED && targetProperty !== undefined) {\\n if (_typeof(sourceProperty) === _typeof(targetProperty)) continue;\\n copyConstructorProperties(sourceProperty, targetProperty);\\n } // add a flag to not completely full polyfills\\n\\n\\n if (options.sham || targetProperty && targetProperty.sham) {\\n createNonEnumerableProperty(sourceProperty, \\'sham\\', true);\\n } // extend global\\n\\n\\n redefine(target, key, sourceProperty, options);\\n }\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/export.js?')},\"./node_modules/core-js/internals/fails.js\":function(module,exports){eval(\"module.exports = function (exec) {\\n try {\\n return !!exec();\\n } catch (error) {\\n return true;\\n }\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/fails.js?\")},\"./node_modules/core-js/internals/function-bind-context.js\":function(module,exports,__webpack_require__){eval('var aFunction = __webpack_require__(/*! ../internals/a-function */ \"./node_modules/core-js/internals/a-function.js\"); // optional / simple context binding\\n\\n\\nmodule.exports = function (fn, that, length) {\\n aFunction(fn);\\n if (that === undefined) return fn;\\n\\n switch (length) {\\n case 0:\\n return function () {\\n return fn.call(that);\\n };\\n\\n case 1:\\n return function (a) {\\n return fn.call(that, a);\\n };\\n\\n case 2:\\n return function (a, b) {\\n return fn.call(that, a, b);\\n };\\n\\n case 3:\\n return function (a, b, c) {\\n return fn.call(that, a, b, c);\\n };\\n }\\n\\n return function ()\\n /* ...args */\\n {\\n return fn.apply(that, arguments);\\n };\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/function-bind-context.js?')},\"./node_modules/core-js/internals/get-built-in.js\":function(module,exports,__webpack_require__){eval('var path = __webpack_require__(/*! ../internals/path */ \"./node_modules/core-js/internals/path.js\");\\n\\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar aFunction = function aFunction(variable) {\\n return typeof variable == \\'function\\' ? variable : undefined;\\n};\\n\\nmodule.exports = function (namespace, method) {\\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace]) : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/get-built-in.js?')},\"./node_modules/core-js/internals/get-iterator-method.js\":function(module,exports,__webpack_require__){eval('var classof = __webpack_require__(/*! ../internals/classof */ \"./node_modules/core-js/internals/classof.js\");\\n\\nvar Iterators = __webpack_require__(/*! ../internals/iterators */ \"./node_modules/core-js/internals/iterators.js\");\\n\\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\\n\\nvar ITERATOR = wellKnownSymbol(\\'iterator\\');\\n\\nmodule.exports = function (it) {\\n if (it != undefined) return it[ITERATOR] || it[\\'@@iterator\\'] || Iterators[classof(it)];\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/get-iterator-method.js?')},\"./node_modules/core-js/internals/global.js\":function(module,exports,__webpack_require__){eval('/* WEBPACK VAR INJECTION */(function(global) {function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\\n\\nvar check = function check(it) {\\n return it && it.Math == Math && it;\\n}; // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\\n\\n\\nmodule.exports = // eslint-disable-next-line no-undef\\ncheck((typeof globalThis === \"undefined\" ? \"undefined\" : _typeof(globalThis)) == \\'object\\' && globalThis) || check((typeof window === \"undefined\" ? \"undefined\" : _typeof(window)) == \\'object\\' && window) || check((typeof self === \"undefined\" ? \"undefined\" : _typeof(self)) == \\'object\\' && self) || check((typeof global === \"undefined\" ? \"undefined\" : _typeof(global)) == \\'object\\' && global) || // eslint-disable-next-line no-new-func\\nFunction(\\'return this\\')();\\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/global.js?')},\"./node_modules/core-js/internals/has.js\":function(module,exports){eval(\"var hasOwnProperty = {}.hasOwnProperty;\\n\\nmodule.exports = function (it, key) {\\n return hasOwnProperty.call(it, key);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/has.js?\")},\"./node_modules/core-js/internals/hidden-keys.js\":function(module,exports){eval(\"module.exports = {};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/hidden-keys.js?\")},\"./node_modules/core-js/internals/host-report-errors.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nmodule.exports = function (a, b) {\\n var console = global.console;\\n\\n if (console && console.error) {\\n arguments.length === 1 ? console.error(a) : console.error(a, b);\\n }\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/host-report-errors.js?')},\"./node_modules/core-js/internals/html.js\":function(module,exports,__webpack_require__){eval(\"var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ \\\"./node_modules/core-js/internals/get-built-in.js\\\");\\n\\nmodule.exports = getBuiltIn('document', 'documentElement');\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/html.js?\")},\"./node_modules/core-js/internals/ie8-dom-define.js\":function(module,exports,__webpack_require__){eval('var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\\n\\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\\n\\nvar createElement = __webpack_require__(/*! ../internals/document-create-element */ \"./node_modules/core-js/internals/document-create-element.js\"); // Thank\\'s IE8 for his funny defineProperty\\n\\n\\nmodule.exports = !DESCRIPTORS && !fails(function () {\\n return Object.defineProperty(createElement(\\'div\\'), \\'a\\', {\\n get: function get() {\\n return 7;\\n }\\n }).a != 7;\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/ie8-dom-define.js?')},\"./node_modules/core-js/internals/indexed-object.js\":function(module,exports,__webpack_require__){eval(\"var fails = __webpack_require__(/*! ../internals/fails */ \\\"./node_modules/core-js/internals/fails.js\\\");\\n\\nvar classof = __webpack_require__(/*! ../internals/classof-raw */ \\\"./node_modules/core-js/internals/classof-raw.js\\\");\\n\\nvar split = ''.split; // fallback for non-array-like ES3 and non-enumerable old V8 strings\\n\\nmodule.exports = fails(function () {\\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\\n // eslint-disable-next-line no-prototype-builtins\\n return !Object('z').propertyIsEnumerable(0);\\n}) ? function (it) {\\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\\n} : Object;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/indexed-object.js?\")},\"./node_modules/core-js/internals/inherit-if-required.js\":function(module,exports,__webpack_require__){eval('var isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\\n\\nvar setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ \"./node_modules/core-js/internals/object-set-prototype-of.js\"); // makes subclassing work correct for wrapped built-ins\\n\\n\\nmodule.exports = function ($this, dummy, Wrapper) {\\n var NewTarget, NewTargetPrototype;\\n if ( // it can work only with native `setPrototypeOf`\\n setPrototypeOf && // we haven\\'t completely correct pre-ES6 way for getting `new.target`, so use this\\n typeof (NewTarget = dummy.constructor) == \\'function\\' && NewTarget !== Wrapper && isObject(NewTargetPrototype = NewTarget.prototype) && NewTargetPrototype !== Wrapper.prototype) setPrototypeOf($this, NewTargetPrototype);\\n return $this;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/inherit-if-required.js?')},\"./node_modules/core-js/internals/inspect-source.js\":function(module,exports,__webpack_require__){eval(\"var store = __webpack_require__(/*! ../internals/shared-store */ \\\"./node_modules/core-js/internals/shared-store.js\\\");\\n\\nvar functionToString = Function.toString; // this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\\n\\nif (typeof store.inspectSource != 'function') {\\n store.inspectSource = function (it) {\\n return functionToString.call(it);\\n };\\n}\\n\\nmodule.exports = store.inspectSource;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/inspect-source.js?\")},\"./node_modules/core-js/internals/internal-state.js\":function(module,exports,__webpack_require__){eval('var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/native-weak-map */ \"./node_modules/core-js/internals/native-weak-map.js\");\\n\\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\\n\\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\\n\\nvar objectHas = __webpack_require__(/*! ../internals/has */ \"./node_modules/core-js/internals/has.js\");\\n\\nvar sharedKey = __webpack_require__(/*! ../internals/shared-key */ \"./node_modules/core-js/internals/shared-key.js\");\\n\\nvar hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ \"./node_modules/core-js/internals/hidden-keys.js\");\\n\\nvar WeakMap = global.WeakMap;\\nvar set, get, has;\\n\\nvar enforce = function enforce(it) {\\n return has(it) ? get(it) : set(it, {});\\n};\\n\\nvar getterFor = function getterFor(TYPE) {\\n return function (it) {\\n var state;\\n\\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\\n throw TypeError(\\'Incompatible receiver, \\' + TYPE + \\' required\\');\\n }\\n\\n return state;\\n };\\n};\\n\\nif (NATIVE_WEAK_MAP) {\\n var store = new WeakMap();\\n var wmget = store.get;\\n var wmhas = store.has;\\n var wmset = store.set;\\n\\n set = function set(it, metadata) {\\n wmset.call(store, it, metadata);\\n return metadata;\\n };\\n\\n get = function get(it) {\\n return wmget.call(store, it) || {};\\n };\\n\\n has = function has(it) {\\n return wmhas.call(store, it);\\n };\\n} else {\\n var STATE = sharedKey(\\'state\\');\\n hiddenKeys[STATE] = true;\\n\\n set = function set(it, metadata) {\\n createNonEnumerableProperty(it, STATE, metadata);\\n return metadata;\\n };\\n\\n get = function get(it) {\\n return objectHas(it, STATE) ? it[STATE] : {};\\n };\\n\\n has = function has(it) {\\n return objectHas(it, STATE);\\n };\\n}\\n\\nmodule.exports = {\\n set: set,\\n get: get,\\n has: has,\\n enforce: enforce,\\n getterFor: getterFor\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/internal-state.js?')},\"./node_modules/core-js/internals/is-array-iterator-method.js\":function(module,exports,__webpack_require__){eval('var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\\n\\nvar Iterators = __webpack_require__(/*! ../internals/iterators */ \"./node_modules/core-js/internals/iterators.js\");\\n\\nvar ITERATOR = wellKnownSymbol(\\'iterator\\');\\nvar ArrayPrototype = Array.prototype; // check on default Array iterator\\n\\nmodule.exports = function (it) {\\n return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-array-iterator-method.js?')},\"./node_modules/core-js/internals/is-forced.js\":function(module,exports,__webpack_require__){eval(\"var fails = __webpack_require__(/*! ../internals/fails */ \\\"./node_modules/core-js/internals/fails.js\\\");\\n\\nvar replacement = /#|\\\\.prototype\\\\./;\\n\\nvar isForced = function isForced(feature, detection) {\\n var value = data[normalize(feature)];\\n return value == POLYFILL ? true : value == NATIVE ? false : typeof detection == 'function' ? fails(detection) : !!detection;\\n};\\n\\nvar normalize = isForced.normalize = function (string) {\\n return String(string).replace(replacement, '.').toLowerCase();\\n};\\n\\nvar data = isForced.data = {};\\nvar NATIVE = isForced.NATIVE = 'N';\\nvar POLYFILL = isForced.POLYFILL = 'P';\\nmodule.exports = isForced;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-forced.js?\")},\"./node_modules/core-js/internals/is-integer.js\":function(module,exports,__webpack_require__){eval('var isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\\n\\nvar floor = Math.floor; // `Number.isInteger` method implementation\\n// https://tc39.github.io/ecma262/#sec-number.isinteger\\n\\nmodule.exports = function isInteger(it) {\\n return !isObject(it) && isFinite(it) && floor(it) === it;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-integer.js?')},\"./node_modules/core-js/internals/is-object.js\":function(module,exports){eval('function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\\n\\nmodule.exports = function (it) {\\n return _typeof(it) === \\'object\\' ? it !== null : typeof it === \\'function\\';\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-object.js?')},\"./node_modules/core-js/internals/is-pure.js\":function(module,exports){eval(\"module.exports = false;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-pure.js?\")},\"./node_modules/core-js/internals/iterate.js\":function(module,exports,__webpack_require__){eval('function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\\n\\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\\n\\nvar isArrayIteratorMethod = __webpack_require__(/*! ../internals/is-array-iterator-method */ \"./node_modules/core-js/internals/is-array-iterator-method.js\");\\n\\nvar toLength = __webpack_require__(/*! ../internals/to-length */ \"./node_modules/core-js/internals/to-length.js\");\\n\\nvar bind = __webpack_require__(/*! ../internals/function-bind-context */ \"./node_modules/core-js/internals/function-bind-context.js\");\\n\\nvar getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ \"./node_modules/core-js/internals/get-iterator-method.js\");\\n\\nvar callWithSafeIterationClosing = __webpack_require__(/*! ../internals/call-with-safe-iteration-closing */ \"./node_modules/core-js/internals/call-with-safe-iteration-closing.js\");\\n\\nvar Result = function Result(stopped, result) {\\n this.stopped = stopped;\\n this.result = result;\\n};\\n\\nvar iterate = module.exports = function (iterable, fn, that, AS_ENTRIES, IS_ITERATOR) {\\n var boundFunction = bind(fn, that, AS_ENTRIES ? 2 : 1);\\n var iterator, iterFn, index, length, result, next, step;\\n\\n if (IS_ITERATOR) {\\n iterator = iterable;\\n } else {\\n iterFn = getIteratorMethod(iterable);\\n if (typeof iterFn != \\'function\\') throw TypeError(\\'Target is not iterable\\'); // optimisation for array iterators\\n\\n if (isArrayIteratorMethod(iterFn)) {\\n for (index = 0, length = toLength(iterable.length); length > index; index++) {\\n result = AS_ENTRIES ? boundFunction(anObject(step = iterable[index])[0], step[1]) : boundFunction(iterable[index]);\\n if (result && result instanceof Result) return result;\\n }\\n\\n return new Result(false);\\n }\\n\\n iterator = iterFn.call(iterable);\\n }\\n\\n next = iterator.next;\\n\\n while (!(step = next.call(iterator)).done) {\\n result = callWithSafeIterationClosing(iterator, boundFunction, step.value, AS_ENTRIES);\\n if (_typeof(result) == \\'object\\' && result && result instanceof Result) return result;\\n }\\n\\n return new Result(false);\\n};\\n\\niterate.stop = function (result) {\\n return new Result(true, result);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/iterate.js?')},\"./node_modules/core-js/internals/iterators-core.js\":function(module,exports,__webpack_require__){\"use strict\";eval('\\n\\nvar getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ \"./node_modules/core-js/internals/object-get-prototype-of.js\");\\n\\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\\n\\nvar has = __webpack_require__(/*! ../internals/has */ \"./node_modules/core-js/internals/has.js\");\\n\\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\\n\\nvar IS_PURE = __webpack_require__(/*! ../internals/is-pure */ \"./node_modules/core-js/internals/is-pure.js\");\\n\\nvar ITERATOR = wellKnownSymbol(\\'iterator\\');\\nvar BUGGY_SAFARI_ITERATORS = false;\\n\\nvar returnThis = function returnThis() {\\n return this;\\n}; // `%IteratorPrototype%` object\\n// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object\\n\\n\\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\\n\\nif ([].keys) {\\n arrayIterator = [].keys(); // Safari 8 has buggy iterators w/o `next`\\n\\n if (!(\\'next\\' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;else {\\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\\n }\\n}\\n\\nif (IteratorPrototype == undefined) IteratorPrototype = {}; // 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\\n\\nif (!IS_PURE && !has(IteratorPrototype, ITERATOR)) {\\n createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);\\n}\\n\\nmodule.exports = {\\n IteratorPrototype: IteratorPrototype,\\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/iterators-core.js?')},\"./node_modules/core-js/internals/iterators.js\":function(module,exports){eval(\"module.exports = {};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/iterators.js?\")},\"./node_modules/core-js/internals/microtask.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ \"./node_modules/core-js/internals/object-get-own-property-descriptor.js\").f;\\n\\nvar classof = __webpack_require__(/*! ../internals/classof-raw */ \"./node_modules/core-js/internals/classof-raw.js\");\\n\\nvar macrotask = __webpack_require__(/*! ../internals/task */ \"./node_modules/core-js/internals/task.js\").set;\\n\\nvar IS_IOS = __webpack_require__(/*! ../internals/engine-is-ios */ \"./node_modules/core-js/internals/engine-is-ios.js\");\\n\\nvar MutationObserver = global.MutationObserver || global.WebKitMutationObserver;\\nvar process = global.process;\\nvar Promise = global.Promise;\\nvar IS_NODE = classof(process) == \\'process\\'; // Node.js 11 shows ExperimentalWarning on getting `queueMicrotask`\\n\\nvar queueMicrotaskDescriptor = getOwnPropertyDescriptor(global, \\'queueMicrotask\\');\\nvar queueMicrotask = queueMicrotaskDescriptor && queueMicrotaskDescriptor.value;\\nvar flush, head, last, notify, toggle, node, promise, then; // modern engines have queueMicrotask method\\n\\nif (!queueMicrotask) {\\n flush = function flush() {\\n var parent, fn;\\n if (IS_NODE && (parent = process.domain)) parent.exit();\\n\\n while (head) {\\n fn = head.fn;\\n head = head.next;\\n\\n try {\\n fn();\\n } catch (error) {\\n if (head) notify();else last = undefined;\\n throw error;\\n }\\n }\\n\\n last = undefined;\\n if (parent) parent.enter();\\n }; // Node.js\\n\\n\\n if (IS_NODE) {\\n notify = function notify() {\\n process.nextTick(flush);\\n }; // browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339\\n\\n } else if (MutationObserver && !IS_IOS) {\\n toggle = true;\\n node = document.createTextNode(\\'\\');\\n new MutationObserver(flush).observe(node, {\\n characterData: true\\n });\\n\\n notify = function notify() {\\n node.data = toggle = !toggle;\\n }; // environments with maybe non-completely correct, but existent Promise\\n\\n } else if (Promise && Promise.resolve) {\\n // Promise.resolve without an argument throws an error in LG WebOS 2\\n promise = Promise.resolve(undefined);\\n then = promise.then;\\n\\n notify = function notify() {\\n then.call(promise, flush);\\n }; // for other environments - macrotask based on:\\n // - setImmediate\\n // - MessageChannel\\n // - window.postMessag\\n // - onreadystatechange\\n // - setTimeout\\n\\n } else {\\n notify = function notify() {\\n // strange IE + webpack dev server bug - use .call(global)\\n macrotask.call(global, flush);\\n };\\n }\\n}\\n\\nmodule.exports = queueMicrotask || function (fn) {\\n var task = {\\n fn: fn,\\n next: undefined\\n };\\n if (last) last.next = task;\\n\\n if (!head) {\\n head = task;\\n notify();\\n }\\n\\n last = task;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/microtask.js?')},\"./node_modules/core-js/internals/native-promise-constructor.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nmodule.exports = global.Promise;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/native-promise-constructor.js?')},\"./node_modules/core-js/internals/native-symbol.js\":function(module,exports,__webpack_require__){eval('var fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\\n\\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\\n // Chrome 38 Symbol has incorrect toString conversion\\n // eslint-disable-next-line no-undef\\n return !String(Symbol());\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/native-symbol.js?')},\"./node_modules/core-js/internals/native-weak-map.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar inspectSource = __webpack_require__(/*! ../internals/inspect-source */ \"./node_modules/core-js/internals/inspect-source.js\");\\n\\nvar WeakMap = global.WeakMap;\\nmodule.exports = typeof WeakMap === \\'function\\' && /native code/.test(inspectSource(WeakMap));\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/native-weak-map.js?')},\"./node_modules/core-js/internals/new-promise-capability.js\":function(module,exports,__webpack_require__){\"use strict\";eval(\"\\n\\nvar aFunction = __webpack_require__(/*! ../internals/a-function */ \\\"./node_modules/core-js/internals/a-function.js\\\");\\n\\nvar PromiseCapability = function PromiseCapability(C) {\\n var resolve, reject;\\n this.promise = new C(function ($$resolve, $$reject) {\\n if (resolve !== undefined || reject !== undefined) throw TypeError('Bad Promise constructor');\\n resolve = $$resolve;\\n reject = $$reject;\\n });\\n this.resolve = aFunction(resolve);\\n this.reject = aFunction(reject);\\n}; // 25.4.1.5 NewPromiseCapability(C)\\n\\n\\nmodule.exports.f = function (C) {\\n return new PromiseCapability(C);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/new-promise-capability.js?\")},\"./node_modules/core-js/internals/number-is-finite.js\":function(module,exports,__webpack_require__){eval(\"var global = __webpack_require__(/*! ../internals/global */ \\\"./node_modules/core-js/internals/global.js\\\");\\n\\nvar globalIsFinite = global.isFinite; // `Number.isFinite` method\\n// https://tc39.github.io/ecma262/#sec-number.isfinite\\n\\nmodule.exports = Number.isFinite || function isFinite(it) {\\n return typeof it == 'number' && globalIsFinite(it);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/number-is-finite.js?\")},\"./node_modules/core-js/internals/number-parse-float.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar trim = __webpack_require__(/*! ../internals/string-trim */ \"./node_modules/core-js/internals/string-trim.js\").trim;\\n\\nvar whitespaces = __webpack_require__(/*! ../internals/whitespaces */ \"./node_modules/core-js/internals/whitespaces.js\");\\n\\nvar $parseFloat = global.parseFloat;\\nvar FORCED = 1 / $parseFloat(whitespaces + \\'-0\\') !== -Infinity; // `parseFloat` method\\n// https://tc39.github.io/ecma262/#sec-parsefloat-string\\n\\nmodule.exports = FORCED ? function parseFloat(string) {\\n var trimmedString = trim(String(string));\\n var result = $parseFloat(trimmedString);\\n return result === 0 && trimmedString.charAt(0) == \\'-\\' ? -0 : result;\\n} : $parseFloat;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/number-parse-float.js?')},\"./node_modules/core-js/internals/number-parse-int.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar trim = __webpack_require__(/*! ../internals/string-trim */ \"./node_modules/core-js/internals/string-trim.js\").trim;\\n\\nvar whitespaces = __webpack_require__(/*! ../internals/whitespaces */ \"./node_modules/core-js/internals/whitespaces.js\");\\n\\nvar $parseInt = global.parseInt;\\nvar hex = /^[+-]?0[Xx]/;\\nvar FORCED = $parseInt(whitespaces + \\'08\\') !== 8 || $parseInt(whitespaces + \\'0x16\\') !== 22; // `parseInt` method\\n// https://tc39.github.io/ecma262/#sec-parseint-string-radix\\n\\nmodule.exports = FORCED ? function parseInt(string, radix) {\\n var S = trim(String(string));\\n return $parseInt(S, radix >>> 0 || (hex.test(S) ? 16 : 10));\\n} : $parseInt;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/number-parse-int.js?')},\"./node_modules/core-js/internals/object-create.js\":function(module,exports,__webpack_require__){eval(\"var anObject = __webpack_require__(/*! ../internals/an-object */ \\\"./node_modules/core-js/internals/an-object.js\\\");\\n\\nvar defineProperties = __webpack_require__(/*! ../internals/object-define-properties */ \\\"./node_modules/core-js/internals/object-define-properties.js\\\");\\n\\nvar enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ \\\"./node_modules/core-js/internals/enum-bug-keys.js\\\");\\n\\nvar hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ \\\"./node_modules/core-js/internals/hidden-keys.js\\\");\\n\\nvar html = __webpack_require__(/*! ../internals/html */ \\\"./node_modules/core-js/internals/html.js\\\");\\n\\nvar documentCreateElement = __webpack_require__(/*! ../internals/document-create-element */ \\\"./node_modules/core-js/internals/document-create-element.js\\\");\\n\\nvar sharedKey = __webpack_require__(/*! ../internals/shared-key */ \\\"./node_modules/core-js/internals/shared-key.js\\\");\\n\\nvar GT = '>';\\nvar LT = '<';\\nvar PROTOTYPE = 'prototype';\\nvar SCRIPT = 'script';\\nvar IE_PROTO = sharedKey('IE_PROTO');\\n\\nvar EmptyConstructor = function EmptyConstructor() {\\n /* empty */\\n};\\n\\nvar scriptTag = function scriptTag(content) {\\n return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\\n}; // Create object with fake `null` prototype: use ActiveX Object with cleared prototype\\n\\n\\nvar NullProtoObjectViaActiveX = function NullProtoObjectViaActiveX(activeXDocument) {\\n activeXDocument.write(scriptTag(''));\\n activeXDocument.close();\\n var temp = activeXDocument.parentWindow.Object;\\n activeXDocument = null; // avoid memory leak\\n\\n return temp;\\n}; // Create object with fake `null` prototype: use iframe Object with cleared prototype\\n\\n\\nvar NullProtoObjectViaIFrame = function NullProtoObjectViaIFrame() {\\n // Thrash, waste and sodomy: IE GC bug\\n var iframe = documentCreateElement('iframe');\\n var JS = 'java' + SCRIPT + ':';\\n var iframeDocument;\\n iframe.style.display = 'none';\\n html.appendChild(iframe); // https://github.com/zloirock/core-js/issues/475\\n\\n iframe.src = String(JS);\\n iframeDocument = iframe.contentWindow.document;\\n iframeDocument.open();\\n iframeDocument.write(scriptTag('document.F=Object'));\\n iframeDocument.close();\\n return iframeDocument.F;\\n}; // Check for document.domain and active x support\\n// No need to use active x approach when document.domain is not set\\n// see https://github.com/es-shims/es5-shim/issues/150\\n// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\\n// avoid IE GC bug\\n\\n\\nvar activeXDocument;\\n\\nvar _NullProtoObject = function NullProtoObject() {\\n try {\\n /* global ActiveXObject */\\n activeXDocument = document.domain && new ActiveXObject('htmlfile');\\n } catch (error) {\\n /* ignore */\\n }\\n\\n _NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();\\n var length = enumBugKeys.length;\\n\\n while (length--) {\\n delete _NullProtoObject[PROTOTYPE][enumBugKeys[length]];\\n }\\n\\n return _NullProtoObject();\\n};\\n\\nhiddenKeys[IE_PROTO] = true; // `Object.create` method\\n// https://tc39.github.io/ecma262/#sec-object.create\\n\\nmodule.exports = Object.create || function create(O, Properties) {\\n var result;\\n\\n if (O !== null) {\\n EmptyConstructor[PROTOTYPE] = anObject(O);\\n result = new EmptyConstructor();\\n EmptyConstructor[PROTOTYPE] = null; // add \\\"__proto__\\\" for Object.getPrototypeOf polyfill\\n\\n result[IE_PROTO] = O;\\n } else result = _NullProtoObject();\\n\\n return Properties === undefined ? result : defineProperties(result, Properties);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-create.js?\")},\"./node_modules/core-js/internals/object-define-properties.js\":function(module,exports,__webpack_require__){eval('var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\\n\\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\");\\n\\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\\n\\nvar objectKeys = __webpack_require__(/*! ../internals/object-keys */ \"./node_modules/core-js/internals/object-keys.js\"); // `Object.defineProperties` method\\n// https://tc39.github.io/ecma262/#sec-object.defineproperties\\n\\n\\nmodule.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {\\n anObject(O);\\n var keys = objectKeys(Properties);\\n var length = keys.length;\\n var index = 0;\\n var key;\\n\\n while (length > index) {\\n definePropertyModule.f(O, key = keys[index++], Properties[key]);\\n }\\n\\n return O;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-define-properties.js?')},\"./node_modules/core-js/internals/object-define-property.js\":function(module,exports,__webpack_require__){eval(\"var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \\\"./node_modules/core-js/internals/descriptors.js\\\");\\n\\nvar IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ \\\"./node_modules/core-js/internals/ie8-dom-define.js\\\");\\n\\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \\\"./node_modules/core-js/internals/an-object.js\\\");\\n\\nvar toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ \\\"./node_modules/core-js/internals/to-primitive.js\\\");\\n\\nvar nativeDefineProperty = Object.defineProperty; // `Object.defineProperty` method\\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\\n\\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\\n anObject(O);\\n P = toPrimitive(P, true);\\n anObject(Attributes);\\n if (IE8_DOM_DEFINE) try {\\n return nativeDefineProperty(O, P, Attributes);\\n } catch (error) {\\n /* empty */\\n }\\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\\n if ('value' in Attributes) O[P] = Attributes.value;\\n return O;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-define-property.js?\")},\"./node_modules/core-js/internals/object-get-own-property-descriptor.js\":function(module,exports,__webpack_require__){eval('var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\\n\\nvar propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ \"./node_modules/core-js/internals/object-property-is-enumerable.js\");\\n\\nvar createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ \"./node_modules/core-js/internals/create-property-descriptor.js\");\\n\\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ \"./node_modules/core-js/internals/to-indexed-object.js\");\\n\\nvar toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ \"./node_modules/core-js/internals/to-primitive.js\");\\n\\nvar has = __webpack_require__(/*! ../internals/has */ \"./node_modules/core-js/internals/has.js\");\\n\\nvar IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ \"./node_modules/core-js/internals/ie8-dom-define.js\");\\n\\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; // `Object.getOwnPropertyDescriptor` method\\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\\n\\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\\n O = toIndexedObject(O);\\n P = toPrimitive(P, true);\\n if (IE8_DOM_DEFINE) try {\\n return nativeGetOwnPropertyDescriptor(O, P);\\n } catch (error) {\\n /* empty */\\n }\\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-own-property-descriptor.js?')},\"./node_modules/core-js/internals/object-get-own-property-names.js\":function(module,exports,__webpack_require__){eval(\"var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ \\\"./node_modules/core-js/internals/object-keys-internal.js\\\");\\n\\nvar enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ \\\"./node_modules/core-js/internals/enum-bug-keys.js\\\");\\n\\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype'); // `Object.getOwnPropertyNames` method\\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\\n\\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\\n return internalObjectKeys(O, hiddenKeys);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-own-property-names.js?\")},\"./node_modules/core-js/internals/object-get-own-property-symbols.js\":function(module,exports){eval(\"exports.f = Object.getOwnPropertySymbols;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-own-property-symbols.js?\")},\"./node_modules/core-js/internals/object-get-prototype-of.js\":function(module,exports,__webpack_require__){eval('var has = __webpack_require__(/*! ../internals/has */ \"./node_modules/core-js/internals/has.js\");\\n\\nvar toObject = __webpack_require__(/*! ../internals/to-object */ \"./node_modules/core-js/internals/to-object.js\");\\n\\nvar sharedKey = __webpack_require__(/*! ../internals/shared-key */ \"./node_modules/core-js/internals/shared-key.js\");\\n\\nvar CORRECT_PROTOTYPE_GETTER = __webpack_require__(/*! ../internals/correct-prototype-getter */ \"./node_modules/core-js/internals/correct-prototype-getter.js\");\\n\\nvar IE_PROTO = sharedKey(\\'IE_PROTO\\');\\nvar ObjectPrototype = Object.prototype; // `Object.getPrototypeOf` method\\n// https://tc39.github.io/ecma262/#sec-object.getprototypeof\\n\\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\\n O = toObject(O);\\n if (has(O, IE_PROTO)) return O[IE_PROTO];\\n\\n if (typeof O.constructor == \\'function\\' && O instanceof O.constructor) {\\n return O.constructor.prototype;\\n }\\n\\n return O instanceof Object ? ObjectPrototype : null;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-prototype-of.js?')},\"./node_modules/core-js/internals/object-keys-internal.js\":function(module,exports,__webpack_require__){eval('var has = __webpack_require__(/*! ../internals/has */ \"./node_modules/core-js/internals/has.js\");\\n\\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ \"./node_modules/core-js/internals/to-indexed-object.js\");\\n\\nvar indexOf = __webpack_require__(/*! ../internals/array-includes */ \"./node_modules/core-js/internals/array-includes.js\").indexOf;\\n\\nvar hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ \"./node_modules/core-js/internals/hidden-keys.js\");\\n\\nmodule.exports = function (object, names) {\\n var O = toIndexedObject(object);\\n var i = 0;\\n var result = [];\\n var key;\\n\\n for (key in O) {\\n !has(hiddenKeys, key) && has(O, key) && result.push(key);\\n } // Don\\'t enum bug & hidden keys\\n\\n\\n while (names.length > i) {\\n if (has(O, key = names[i++])) {\\n ~indexOf(result, key) || result.push(key);\\n }\\n }\\n\\n return result;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-keys-internal.js?')},\"./node_modules/core-js/internals/object-keys.js\":function(module,exports,__webpack_require__){eval('var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ \"./node_modules/core-js/internals/object-keys-internal.js\");\\n\\nvar enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ \"./node_modules/core-js/internals/enum-bug-keys.js\"); // `Object.keys` method\\n// https://tc39.github.io/ecma262/#sec-object.keys\\n\\n\\nmodule.exports = Object.keys || function keys(O) {\\n return internalObjectKeys(O, enumBugKeys);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-keys.js?')},\"./node_modules/core-js/internals/object-property-is-enumerable.js\":function(module,exports,__webpack_require__){\"use strict\";eval(\"\\n\\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; // Nashorn ~ JDK8 bug\\n\\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({\\n 1: 2\\n}, 1); // `Object.prototype.propertyIsEnumerable` method implementation\\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\\n\\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\\n var descriptor = getOwnPropertyDescriptor(this, V);\\n return !!descriptor && descriptor.enumerable;\\n} : nativePropertyIsEnumerable;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-property-is-enumerable.js?\")},\"./node_modules/core-js/internals/object-set-prototype-of.js\":function(module,exports,__webpack_require__){eval(\"var anObject = __webpack_require__(/*! ../internals/an-object */ \\\"./node_modules/core-js/internals/an-object.js\\\");\\n\\nvar aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ \\\"./node_modules/core-js/internals/a-possible-prototype.js\\\"); // `Object.setPrototypeOf` method\\n// https://tc39.github.io/ecma262/#sec-object.setprototypeof\\n// Works with __proto__ only. Old v8 can't work with null proto objects.\\n\\n/* eslint-disable no-proto */\\n\\n\\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\\n var CORRECT_SETTER = false;\\n var test = {};\\n var setter;\\n\\n try {\\n setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;\\n setter.call(test, []);\\n CORRECT_SETTER = test instanceof Array;\\n } catch (error) {\\n /* empty */\\n }\\n\\n return function setPrototypeOf(O, proto) {\\n anObject(O);\\n aPossiblePrototype(proto);\\n if (CORRECT_SETTER) setter.call(O, proto);else O.__proto__ = proto;\\n return O;\\n };\\n}() : undefined);\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-set-prototype-of.js?\")},\"./node_modules/core-js/internals/object-to-string.js\":function(module,exports,__webpack_require__){\"use strict\";eval(\"\\n\\nvar TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ \\\"./node_modules/core-js/internals/to-string-tag-support.js\\\");\\n\\nvar classof = __webpack_require__(/*! ../internals/classof */ \\\"./node_modules/core-js/internals/classof.js\\\"); // `Object.prototype.toString` method implementation\\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\\n\\n\\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\\n return '[object ' + classof(this) + ']';\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-to-string.js?\")},\"./node_modules/core-js/internals/own-keys.js\":function(module,exports,__webpack_require__){eval('var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ \"./node_modules/core-js/internals/get-built-in.js\");\\n\\nvar getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ \"./node_modules/core-js/internals/object-get-own-property-names.js\");\\n\\nvar getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ \"./node_modules/core-js/internals/object-get-own-property-symbols.js\");\\n\\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\"); // all object keys, includes non-enumerable and symbols\\n\\n\\nmodule.exports = getBuiltIn(\\'Reflect\\', \\'ownKeys\\') || function ownKeys(it) {\\n var keys = getOwnPropertyNamesModule.f(anObject(it));\\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/own-keys.js?')},\"./node_modules/core-js/internals/path.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nmodule.exports = global;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/path.js?')},\"./node_modules/core-js/internals/perform.js\":function(module,exports){eval(\"module.exports = function (exec) {\\n try {\\n return {\\n error: false,\\n value: exec()\\n };\\n } catch (error) {\\n return {\\n error: true,\\n value: error\\n };\\n }\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/perform.js?\")},\"./node_modules/core-js/internals/promise-resolve.js\":function(module,exports,__webpack_require__){eval('var anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\\n\\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\\n\\nvar newPromiseCapability = __webpack_require__(/*! ../internals/new-promise-capability */ \"./node_modules/core-js/internals/new-promise-capability.js\");\\n\\nmodule.exports = function (C, x) {\\n anObject(C);\\n if (isObject(x) && x.constructor === C) return x;\\n var promiseCapability = newPromiseCapability.f(C);\\n var resolve = promiseCapability.resolve;\\n resolve(x);\\n return promiseCapability.promise;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/promise-resolve.js?')},\"./node_modules/core-js/internals/redefine-all.js\":function(module,exports,__webpack_require__){eval('var redefine = __webpack_require__(/*! ../internals/redefine */ \"./node_modules/core-js/internals/redefine.js\");\\n\\nmodule.exports = function (target, src, options) {\\n for (var key in src) {\\n redefine(target, key, src[key], options);\\n }\\n\\n return target;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/redefine-all.js?')},\"./node_modules/core-js/internals/redefine.js\":function(module,exports,__webpack_require__){eval(\"var global = __webpack_require__(/*! ../internals/global */ \\\"./node_modules/core-js/internals/global.js\\\");\\n\\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \\\"./node_modules/core-js/internals/create-non-enumerable-property.js\\\");\\n\\nvar has = __webpack_require__(/*! ../internals/has */ \\\"./node_modules/core-js/internals/has.js\\\");\\n\\nvar setGlobal = __webpack_require__(/*! ../internals/set-global */ \\\"./node_modules/core-js/internals/set-global.js\\\");\\n\\nvar inspectSource = __webpack_require__(/*! ../internals/inspect-source */ \\\"./node_modules/core-js/internals/inspect-source.js\\\");\\n\\nvar InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ \\\"./node_modules/core-js/internals/internal-state.js\\\");\\n\\nvar getInternalState = InternalStateModule.get;\\nvar enforceInternalState = InternalStateModule.enforce;\\nvar TEMPLATE = String(String).split('String');\\n(module.exports = function (O, key, value, options) {\\n var unsafe = options ? !!options.unsafe : false;\\n var simple = options ? !!options.enumerable : false;\\n var noTargetGet = options ? !!options.noTargetGet : false;\\n\\n if (typeof value == 'function') {\\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\\n }\\n\\n if (O === global) {\\n if (simple) O[key] = value;else setGlobal(key, value);\\n return;\\n } else if (!unsafe) {\\n delete O[key];\\n } else if (!noTargetGet && O[key]) {\\n simple = true;\\n }\\n\\n if (simple) O[key] = value;else createNonEnumerableProperty(O, key, value); // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\\n})(Function.prototype, 'toString', function toString() {\\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/redefine.js?\")},\"./node_modules/core-js/internals/require-object-coercible.js\":function(module,exports){eval('// `RequireObjectCoercible` abstract operation\\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\\nmodule.exports = function (it) {\\n if (it == undefined) throw TypeError(\"Can\\'t call method on \" + it);\\n return it;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/require-object-coercible.js?')},\"./node_modules/core-js/internals/set-global.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\\n\\nmodule.exports = function (key, value) {\\n try {\\n createNonEnumerableProperty(global, key, value);\\n } catch (error) {\\n global[key] = value;\\n }\\n\\n return value;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/set-global.js?')},\"./node_modules/core-js/internals/set-species.js\":function(module,exports,__webpack_require__){\"use strict\";eval('\\n\\nvar getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ \"./node_modules/core-js/internals/get-built-in.js\");\\n\\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\");\\n\\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\\n\\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\\n\\nvar SPECIES = wellKnownSymbol(\\'species\\');\\n\\nmodule.exports = function (CONSTRUCTOR_NAME) {\\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\\n var defineProperty = definePropertyModule.f;\\n\\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\\n defineProperty(Constructor, SPECIES, {\\n configurable: true,\\n get: function get() {\\n return this;\\n }\\n });\\n }\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/set-species.js?')},\"./node_modules/core-js/internals/set-to-string-tag.js\":function(module,exports,__webpack_require__){eval('var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\").f;\\n\\nvar has = __webpack_require__(/*! ../internals/has */ \"./node_modules/core-js/internals/has.js\");\\n\\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\\n\\nvar TO_STRING_TAG = wellKnownSymbol(\\'toStringTag\\');\\n\\nmodule.exports = function (it, TAG, STATIC) {\\n if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {\\n defineProperty(it, TO_STRING_TAG, {\\n configurable: true,\\n value: TAG\\n });\\n }\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/set-to-string-tag.js?')},\"./node_modules/core-js/internals/shared-key.js\":function(module,exports,__webpack_require__){eval('var shared = __webpack_require__(/*! ../internals/shared */ \"./node_modules/core-js/internals/shared.js\");\\n\\nvar uid = __webpack_require__(/*! ../internals/uid */ \"./node_modules/core-js/internals/uid.js\");\\n\\nvar keys = shared(\\'keys\\');\\n\\nmodule.exports = function (key) {\\n return keys[key] || (keys[key] = uid(key));\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/shared-key.js?')},\"./node_modules/core-js/internals/shared-store.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar setGlobal = __webpack_require__(/*! ../internals/set-global */ \"./node_modules/core-js/internals/set-global.js\");\\n\\nvar SHARED = \\'__core-js_shared__\\';\\nvar store = global[SHARED] || setGlobal(SHARED, {});\\nmodule.exports = store;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/shared-store.js?')},\"./node_modules/core-js/internals/shared.js\":function(module,exports,__webpack_require__){eval(\"var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ \\\"./node_modules/core-js/internals/is-pure.js\\\");\\n\\nvar store = __webpack_require__(/*! ../internals/shared-store */ \\\"./node_modules/core-js/internals/shared-store.js\\\");\\n\\n(module.exports = function (key, value) {\\n return store[key] || (store[key] = value !== undefined ? value : {});\\n})('versions', []).push({\\n version: '3.6.5',\\n mode: IS_PURE ? 'pure' : 'global',\\n copyright: '© 2020 Denis Pushkarev (zloirock.ru)'\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/shared.js?\")},\"./node_modules/core-js/internals/species-constructor.js\":function(module,exports,__webpack_require__){eval('var anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\\n\\nvar aFunction = __webpack_require__(/*! ../internals/a-function */ \"./node_modules/core-js/internals/a-function.js\");\\n\\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\\n\\nvar SPECIES = wellKnownSymbol(\\'species\\'); // `SpeciesConstructor` abstract operation\\n// https://tc39.github.io/ecma262/#sec-speciesconstructor\\n\\nmodule.exports = function (O, defaultConstructor) {\\n var C = anObject(O).constructor;\\n var S;\\n return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aFunction(S);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/species-constructor.js?')},\"./node_modules/core-js/internals/string-multibyte.js\":function(module,exports,__webpack_require__){eval('var toInteger = __webpack_require__(/*! ../internals/to-integer */ \"./node_modules/core-js/internals/to-integer.js\");\\n\\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ \"./node_modules/core-js/internals/require-object-coercible.js\"); // `String.prototype.{ codePointAt, at }` methods implementation\\n\\n\\nvar createMethod = function createMethod(CONVERT_TO_STRING) {\\n return function ($this, pos) {\\n var S = String(requireObjectCoercible($this));\\n var position = toInteger(pos);\\n var size = S.length;\\n var first, second;\\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? \\'\\' : undefined;\\n first = S.charCodeAt(position);\\n return first < 0xD800 || first > 0xDBFF || position + 1 === size || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF ? CONVERT_TO_STRING ? S.charAt(position) : first : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\\n };\\n};\\n\\nmodule.exports = {\\n // `String.prototype.codePointAt` method\\n // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat\\n codeAt: createMethod(false),\\n // `String.prototype.at` method\\n // https://github.com/mathiasbynens/String.prototype.at\\n charAt: createMethod(true)\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/string-multibyte.js?')},\"./node_modules/core-js/internals/string-repeat.js\":function(module,exports,__webpack_require__){\"use strict\";eval(\"\\n\\nvar toInteger = __webpack_require__(/*! ../internals/to-integer */ \\\"./node_modules/core-js/internals/to-integer.js\\\");\\n\\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ \\\"./node_modules/core-js/internals/require-object-coercible.js\\\"); // `String.prototype.repeat` method implementation\\n// https://tc39.github.io/ecma262/#sec-string.prototype.repeat\\n\\n\\nmodule.exports = ''.repeat || function repeat(count) {\\n var str = String(requireObjectCoercible(this));\\n var result = '';\\n var n = toInteger(count);\\n if (n < 0 || n == Infinity) throw RangeError('Wrong number of repetitions');\\n\\n for (; n > 0; (n >>>= 1) && (str += str)) {\\n if (n & 1) result += str;\\n }\\n\\n return result;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/string-repeat.js?\")},\"./node_modules/core-js/internals/string-trim.js\":function(module,exports,__webpack_require__){eval(\"var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ \\\"./node_modules/core-js/internals/require-object-coercible.js\\\");\\n\\nvar whitespaces = __webpack_require__(/*! ../internals/whitespaces */ \\\"./node_modules/core-js/internals/whitespaces.js\\\");\\n\\nvar whitespace = '[' + whitespaces + ']';\\nvar ltrim = RegExp('^' + whitespace + whitespace + '*');\\nvar rtrim = RegExp(whitespace + whitespace + '*$'); // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation\\n\\nvar createMethod = function createMethod(TYPE) {\\n return function ($this) {\\n var string = String(requireObjectCoercible($this));\\n if (TYPE & 1) string = string.replace(ltrim, '');\\n if (TYPE & 2) string = string.replace(rtrim, '');\\n return string;\\n };\\n};\\n\\nmodule.exports = {\\n // `String.prototype.{ trimLeft, trimStart }` methods\\n // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart\\n start: createMethod(1),\\n // `String.prototype.{ trimRight, trimEnd }` methods\\n // https://tc39.github.io/ecma262/#sec-string.prototype.trimend\\n end: createMethod(2),\\n // `String.prototype.trim` method\\n // https://tc39.github.io/ecma262/#sec-string.prototype.trim\\n trim: createMethod(3)\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/string-trim.js?\")},\"./node_modules/core-js/internals/task.js\":function(module,exports,__webpack_require__){eval(\"var global = __webpack_require__(/*! ../internals/global */ \\\"./node_modules/core-js/internals/global.js\\\");\\n\\nvar fails = __webpack_require__(/*! ../internals/fails */ \\\"./node_modules/core-js/internals/fails.js\\\");\\n\\nvar classof = __webpack_require__(/*! ../internals/classof-raw */ \\\"./node_modules/core-js/internals/classof-raw.js\\\");\\n\\nvar bind = __webpack_require__(/*! ../internals/function-bind-context */ \\\"./node_modules/core-js/internals/function-bind-context.js\\\");\\n\\nvar html = __webpack_require__(/*! ../internals/html */ \\\"./node_modules/core-js/internals/html.js\\\");\\n\\nvar createElement = __webpack_require__(/*! ../internals/document-create-element */ \\\"./node_modules/core-js/internals/document-create-element.js\\\");\\n\\nvar IS_IOS = __webpack_require__(/*! ../internals/engine-is-ios */ \\\"./node_modules/core-js/internals/engine-is-ios.js\\\");\\n\\nvar location = global.location;\\nvar set = global.setImmediate;\\nvar clear = global.clearImmediate;\\nvar process = global.process;\\nvar MessageChannel = global.MessageChannel;\\nvar Dispatch = global.Dispatch;\\nvar counter = 0;\\nvar queue = {};\\nvar ONREADYSTATECHANGE = 'onreadystatechange';\\nvar defer, channel, port;\\n\\nvar run = function run(id) {\\n // eslint-disable-next-line no-prototype-builtins\\n if (queue.hasOwnProperty(id)) {\\n var fn = queue[id];\\n delete queue[id];\\n fn();\\n }\\n};\\n\\nvar runner = function runner(id) {\\n return function () {\\n run(id);\\n };\\n};\\n\\nvar listener = function listener(event) {\\n run(event.data);\\n};\\n\\nvar post = function post(id) {\\n // old engines have not location.origin\\n global.postMessage(id + '', location.protocol + '//' + location.host);\\n}; // Node.js 0.9+ & IE10+ has setImmediate, otherwise:\\n\\n\\nif (!set || !clear) {\\n set = function setImmediate(fn) {\\n var args = [];\\n var i = 1;\\n\\n while (arguments.length > i) {\\n args.push(arguments[i++]);\\n }\\n\\n queue[++counter] = function () {\\n // eslint-disable-next-line no-new-func\\n (typeof fn == 'function' ? fn : Function(fn)).apply(undefined, args);\\n };\\n\\n defer(counter);\\n return counter;\\n };\\n\\n clear = function clearImmediate(id) {\\n delete queue[id];\\n }; // Node.js 0.8-\\n\\n\\n if (classof(process) == 'process') {\\n defer = function defer(id) {\\n process.nextTick(runner(id));\\n }; // Sphere (JS game engine) Dispatch API\\n\\n } else if (Dispatch && Dispatch.now) {\\n defer = function defer(id) {\\n Dispatch.now(runner(id));\\n }; // Browsers with MessageChannel, includes WebWorkers\\n // except iOS - https://github.com/zloirock/core-js/issues/624\\n\\n } else if (MessageChannel && !IS_IOS) {\\n channel = new MessageChannel();\\n port = channel.port2;\\n channel.port1.onmessage = listener;\\n defer = bind(port.postMessage, port, 1); // Browsers with postMessage, skip WebWorkers\\n // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'\\n } else if (global.addEventListener && typeof postMessage == 'function' && !global.importScripts && !fails(post) && location.protocol !== 'file:') {\\n defer = post;\\n global.addEventListener('message', listener, false); // IE8-\\n } else if (ONREADYSTATECHANGE in createElement('script')) {\\n defer = function defer(id) {\\n html.appendChild(createElement('script'))[ONREADYSTATECHANGE] = function () {\\n html.removeChild(this);\\n run(id);\\n };\\n }; // Rest old browsers\\n\\n } else {\\n defer = function defer(id) {\\n setTimeout(runner(id), 0);\\n };\\n }\\n}\\n\\nmodule.exports = {\\n set: set,\\n clear: clear\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/task.js?\")},\"./node_modules/core-js/internals/this-number-value.js\":function(module,exports,__webpack_require__){eval(\"var classof = __webpack_require__(/*! ../internals/classof-raw */ \\\"./node_modules/core-js/internals/classof-raw.js\\\"); // `thisNumberValue` abstract operation\\n// https://tc39.github.io/ecma262/#sec-thisnumbervalue\\n\\n\\nmodule.exports = function (value) {\\n if (typeof value != 'number' && classof(value) != 'Number') {\\n throw TypeError('Incorrect invocation');\\n }\\n\\n return +value;\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/this-number-value.js?\")},\"./node_modules/core-js/internals/to-absolute-index.js\":function(module,exports,__webpack_require__){eval('var toInteger = __webpack_require__(/*! ../internals/to-integer */ \"./node_modules/core-js/internals/to-integer.js\");\\n\\nvar max = Math.max;\\nvar min = Math.min; // Helper for a popular repeating case of the spec:\\n// Let integer be ? ToInteger(index).\\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\\n\\nmodule.exports = function (index, length) {\\n var integer = toInteger(index);\\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-absolute-index.js?')},\"./node_modules/core-js/internals/to-indexed-object.js\":function(module,exports,__webpack_require__){eval('// toObject with fallback for non-array-like ES3 strings\\nvar IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ \"./node_modules/core-js/internals/indexed-object.js\");\\n\\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ \"./node_modules/core-js/internals/require-object-coercible.js\");\\n\\nmodule.exports = function (it) {\\n return IndexedObject(requireObjectCoercible(it));\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-indexed-object.js?')},\"./node_modules/core-js/internals/to-integer.js\":function(module,exports){eval(\"var ceil = Math.ceil;\\nvar floor = Math.floor; // `ToInteger` abstract operation\\n// https://tc39.github.io/ecma262/#sec-tointeger\\n\\nmodule.exports = function (argument) {\\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-integer.js?\")},\"./node_modules/core-js/internals/to-length.js\":function(module,exports,__webpack_require__){eval('var toInteger = __webpack_require__(/*! ../internals/to-integer */ \"./node_modules/core-js/internals/to-integer.js\");\\n\\nvar min = Math.min; // `ToLength` abstract operation\\n// https://tc39.github.io/ecma262/#sec-tolength\\n\\nmodule.exports = function (argument) {\\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-length.js?')},\"./node_modules/core-js/internals/to-object.js\":function(module,exports,__webpack_require__){eval('var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ \"./node_modules/core-js/internals/require-object-coercible.js\"); // `ToObject` abstract operation\\n// https://tc39.github.io/ecma262/#sec-toobject\\n\\n\\nmodule.exports = function (argument) {\\n return Object(requireObjectCoercible(argument));\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-object.js?')},\"./node_modules/core-js/internals/to-primitive.js\":function(module,exports,__webpack_require__){eval(\"var isObject = __webpack_require__(/*! ../internals/is-object */ \\\"./node_modules/core-js/internals/is-object.js\\\"); // `ToPrimitive` abstract operation\\n// https://tc39.github.io/ecma262/#sec-toprimitive\\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\\n// and the second argument - flag - preferred type is a string\\n\\n\\nmodule.exports = function (input, PREFERRED_STRING) {\\n if (!isObject(input)) return input;\\n var fn, val;\\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\\n throw TypeError(\\\"Can't convert object to primitive value\\\");\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-primitive.js?\")},\"./node_modules/core-js/internals/to-string-tag-support.js\":function(module,exports,__webpack_require__){eval(\"var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \\\"./node_modules/core-js/internals/well-known-symbol.js\\\");\\n\\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\\nvar test = {};\\ntest[TO_STRING_TAG] = 'z';\\nmodule.exports = String(test) === '[object z]';\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-string-tag-support.js?\")},\"./node_modules/core-js/internals/uid.js\":function(module,exports){eval(\"var id = 0;\\nvar postfix = Math.random();\\n\\nmodule.exports = function (key) {\\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/uid.js?\")},\"./node_modules/core-js/internals/use-symbol-as-uid.js\":function(module,exports,__webpack_require__){eval('function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\\n\\nvar NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ \"./node_modules/core-js/internals/native-symbol.js\");\\n\\nmodule.exports = NATIVE_SYMBOL // eslint-disable-next-line no-undef\\n&& !Symbol.sham // eslint-disable-next-line no-undef\\n&& _typeof(Symbol.iterator) == \\'symbol\\';\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/use-symbol-as-uid.js?')},\"./node_modules/core-js/internals/well-known-symbol.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar shared = __webpack_require__(/*! ../internals/shared */ \"./node_modules/core-js/internals/shared.js\");\\n\\nvar has = __webpack_require__(/*! ../internals/has */ \"./node_modules/core-js/internals/has.js\");\\n\\nvar uid = __webpack_require__(/*! ../internals/uid */ \"./node_modules/core-js/internals/uid.js\");\\n\\nvar NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ \"./node_modules/core-js/internals/native-symbol.js\");\\n\\nvar USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ \"./node_modules/core-js/internals/use-symbol-as-uid.js\");\\n\\nvar WellKnownSymbolsStore = shared(\\'wks\\');\\nvar _Symbol = global.Symbol;\\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? _Symbol : _Symbol && _Symbol.withoutSetter || uid;\\n\\nmodule.exports = function (name) {\\n if (!has(WellKnownSymbolsStore, name)) {\\n if (NATIVE_SYMBOL && has(_Symbol, name)) WellKnownSymbolsStore[name] = _Symbol[name];else WellKnownSymbolsStore[name] = createWellKnownSymbol(\\'Symbol.\\' + name);\\n }\\n\\n return WellKnownSymbolsStore[name];\\n};\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/well-known-symbol.js?')},\"./node_modules/core-js/internals/whitespaces.js\":function(module,exports){eval('// a string of all valid unicode whitespaces\\n// eslint-disable-next-line max-len\\nmodule.exports = \"\\\\t\\\\n\\\\x0B\\\\f\\\\r \\\\xA0\\\\u1680\\\\u2000\\\\u2001\\\\u2002\\\\u2003\\\\u2004\\\\u2005\\\\u2006\\\\u2007\\\\u2008\\\\u2009\\\\u200A\\\\u202F\\\\u205F\\\\u3000\\\\u2028\\\\u2029\\\\uFEFF\";\\n\\n//# sourceURL=webpack:///./node_modules/core-js/internals/whitespaces.js?')},\"./node_modules/core-js/modules/es.array.iterator.js\":function(module,exports,__webpack_require__){\"use strict\";eval(\"\\n\\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ \\\"./node_modules/core-js/internals/to-indexed-object.js\\\");\\n\\nvar addToUnscopables = __webpack_require__(/*! ../internals/add-to-unscopables */ \\\"./node_modules/core-js/internals/add-to-unscopables.js\\\");\\n\\nvar Iterators = __webpack_require__(/*! ../internals/iterators */ \\\"./node_modules/core-js/internals/iterators.js\\\");\\n\\nvar InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ \\\"./node_modules/core-js/internals/internal-state.js\\\");\\n\\nvar defineIterator = __webpack_require__(/*! ../internals/define-iterator */ \\\"./node_modules/core-js/internals/define-iterator.js\\\");\\n\\nvar ARRAY_ITERATOR = 'Array Iterator';\\nvar setInternalState = InternalStateModule.set;\\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR); // `Array.prototype.entries` method\\n// https://tc39.github.io/ecma262/#sec-array.prototype.entries\\n// `Array.prototype.keys` method\\n// https://tc39.github.io/ecma262/#sec-array.prototype.keys\\n// `Array.prototype.values` method\\n// https://tc39.github.io/ecma262/#sec-array.prototype.values\\n// `Array.prototype[@@iterator]` method\\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator\\n// `CreateArrayIterator` internal method\\n// https://tc39.github.io/ecma262/#sec-createarrayiterator\\n\\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\\n setInternalState(this, {\\n type: ARRAY_ITERATOR,\\n target: toIndexedObject(iterated),\\n // target\\n index: 0,\\n // next index\\n kind: kind // kind\\n\\n }); // `%ArrayIteratorPrototype%.next` method\\n // https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next\\n}, function () {\\n var state = getInternalState(this);\\n var target = state.target;\\n var kind = state.kind;\\n var index = state.index++;\\n\\n if (!target || index >= target.length) {\\n state.target = undefined;\\n return {\\n value: undefined,\\n done: true\\n };\\n }\\n\\n if (kind == 'keys') return {\\n value: index,\\n done: false\\n };\\n if (kind == 'values') return {\\n value: target[index],\\n done: false\\n };\\n return {\\n value: [index, target[index]],\\n done: false\\n };\\n}, 'values'); // argumentsList[@@iterator] is %ArrayProto_values%\\n// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject\\n// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject\\n\\nIterators.Arguments = Iterators.Array; // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\\n\\naddToUnscopables('keys');\\naddToUnscopables('values');\\naddToUnscopables('entries');\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.iterator.js?\")},\"./node_modules/core-js/modules/es.number.constructor.js\":function(module,exports,__webpack_require__){\"use strict\";eval('\\n\\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\\n\\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar isForced = __webpack_require__(/*! ../internals/is-forced */ \"./node_modules/core-js/internals/is-forced.js\");\\n\\nvar redefine = __webpack_require__(/*! ../internals/redefine */ \"./node_modules/core-js/internals/redefine.js\");\\n\\nvar has = __webpack_require__(/*! ../internals/has */ \"./node_modules/core-js/internals/has.js\");\\n\\nvar classof = __webpack_require__(/*! ../internals/classof-raw */ \"./node_modules/core-js/internals/classof-raw.js\");\\n\\nvar inheritIfRequired = __webpack_require__(/*! ../internals/inherit-if-required */ \"./node_modules/core-js/internals/inherit-if-required.js\");\\n\\nvar toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ \"./node_modules/core-js/internals/to-primitive.js\");\\n\\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\\n\\nvar create = __webpack_require__(/*! ../internals/object-create */ \"./node_modules/core-js/internals/object-create.js\");\\n\\nvar getOwnPropertyNames = __webpack_require__(/*! ../internals/object-get-own-property-names */ \"./node_modules/core-js/internals/object-get-own-property-names.js\").f;\\n\\nvar getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ \"./node_modules/core-js/internals/object-get-own-property-descriptor.js\").f;\\n\\nvar defineProperty = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\").f;\\n\\nvar trim = __webpack_require__(/*! ../internals/string-trim */ \"./node_modules/core-js/internals/string-trim.js\").trim;\\n\\nvar NUMBER = \\'Number\\';\\nvar NativeNumber = global[NUMBER];\\nvar NumberPrototype = NativeNumber.prototype; // Opera ~12 has broken Object#toString\\n\\nvar BROKEN_CLASSOF = classof(create(NumberPrototype)) == NUMBER; // `ToNumber` abstract operation\\n// https://tc39.github.io/ecma262/#sec-tonumber\\n\\nvar toNumber = function toNumber(argument) {\\n var it = toPrimitive(argument, false);\\n var first, third, radix, maxCode, digits, length, index, code;\\n\\n if (typeof it == \\'string\\' && it.length > 2) {\\n it = trim(it);\\n first = it.charCodeAt(0);\\n\\n if (first === 43 || first === 45) {\\n third = it.charCodeAt(2);\\n if (third === 88 || third === 120) return NaN; // Number(\\'+0x1\\') should be NaN, old V8 fix\\n } else if (first === 48) {\\n switch (it.charCodeAt(1)) {\\n case 66:\\n case 98:\\n radix = 2;\\n maxCode = 49;\\n break;\\n // fast equal of /^0b[01]+$/i\\n\\n case 79:\\n case 111:\\n radix = 8;\\n maxCode = 55;\\n break;\\n // fast equal of /^0o[0-7]+$/i\\n\\n default:\\n return +it;\\n }\\n\\n digits = it.slice(2);\\n length = digits.length;\\n\\n for (index = 0; index < length; index++) {\\n code = digits.charCodeAt(index); // parseInt parses a string to a first unavailable symbol\\n // but ToNumber should return NaN if a string contains unavailable symbols\\n\\n if (code < 48 || code > maxCode) return NaN;\\n }\\n\\n return parseInt(digits, radix);\\n }\\n }\\n\\n return +it;\\n}; // `Number` constructor\\n// https://tc39.github.io/ecma262/#sec-number-constructor\\n\\n\\nif (isForced(NUMBER, !NativeNumber(\\' 0o1\\') || !NativeNumber(\\'0b1\\') || NativeNumber(\\'+0x1\\'))) {\\n var NumberWrapper = function Number(value) {\\n var it = arguments.length < 1 ? 0 : value;\\n var dummy = this;\\n return dummy instanceof NumberWrapper // check on 1..constructor(foo) case\\n && (BROKEN_CLASSOF ? fails(function () {\\n NumberPrototype.valueOf.call(dummy);\\n }) : classof(dummy) != NUMBER) ? inheritIfRequired(new NativeNumber(toNumber(it)), dummy, NumberWrapper) : toNumber(it);\\n };\\n\\n for (var keys = DESCRIPTORS ? getOwnPropertyNames(NativeNumber) : ( // ES3:\\n \\'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,\\' + // ES2015 (in case, if modules with ES2015 Number statics required before):\\n \\'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,\\' + \\'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger\\').split(\\',\\'), j = 0, key; keys.length > j; j++) {\\n if (has(NativeNumber, key = keys[j]) && !has(NumberWrapper, key)) {\\n defineProperty(NumberWrapper, key, getOwnPropertyDescriptor(NativeNumber, key));\\n }\\n }\\n\\n NumberWrapper.prototype = NumberPrototype;\\n NumberPrototype.constructor = NumberWrapper;\\n redefine(global, NUMBER, NumberWrapper);\\n}\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.constructor.js?')},\"./node_modules/core-js/modules/es.number.epsilon.js\":function(module,exports,__webpack_require__){eval(\"var $ = __webpack_require__(/*! ../internals/export */ \\\"./node_modules/core-js/internals/export.js\\\"); // `Number.EPSILON` constant\\n// https://tc39.github.io/ecma262/#sec-number.epsilon\\n\\n\\n$({\\n target: 'Number',\\n stat: true\\n}, {\\n EPSILON: Math.pow(2, -52)\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.epsilon.js?\")},\"./node_modules/core-js/modules/es.number.is-finite.js\":function(module,exports,__webpack_require__){eval('var $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\\n\\nvar numberIsFinite = __webpack_require__(/*! ../internals/number-is-finite */ \"./node_modules/core-js/internals/number-is-finite.js\"); // `Number.isFinite` method\\n// https://tc39.github.io/ecma262/#sec-number.isfinite\\n\\n\\n$({\\n target: \\'Number\\',\\n stat: true\\n}, {\\n isFinite: numberIsFinite\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.is-finite.js?')},\"./node_modules/core-js/modules/es.number.is-integer.js\":function(module,exports,__webpack_require__){eval('var $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\\n\\nvar isInteger = __webpack_require__(/*! ../internals/is-integer */ \"./node_modules/core-js/internals/is-integer.js\"); // `Number.isInteger` method\\n// https://tc39.github.io/ecma262/#sec-number.isinteger\\n\\n\\n$({\\n target: \\'Number\\',\\n stat: true\\n}, {\\n isInteger: isInteger\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.is-integer.js?')},\"./node_modules/core-js/modules/es.number.is-nan.js\":function(module,exports,__webpack_require__){eval(\"var $ = __webpack_require__(/*! ../internals/export */ \\\"./node_modules/core-js/internals/export.js\\\"); // `Number.isNaN` method\\n// https://tc39.github.io/ecma262/#sec-number.isnan\\n\\n\\n$({\\n target: 'Number',\\n stat: true\\n}, {\\n isNaN: function isNaN(number) {\\n // eslint-disable-next-line no-self-compare\\n return number != number;\\n }\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.is-nan.js?\")},\"./node_modules/core-js/modules/es.number.is-safe-integer.js\":function(module,exports,__webpack_require__){eval('var $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\\n\\nvar isInteger = __webpack_require__(/*! ../internals/is-integer */ \"./node_modules/core-js/internals/is-integer.js\");\\n\\nvar abs = Math.abs; // `Number.isSafeInteger` method\\n// https://tc39.github.io/ecma262/#sec-number.issafeinteger\\n\\n$({\\n target: \\'Number\\',\\n stat: true\\n}, {\\n isSafeInteger: function isSafeInteger(number) {\\n return isInteger(number) && abs(number) <= 0x1FFFFFFFFFFFFF;\\n }\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.is-safe-integer.js?')},\"./node_modules/core-js/modules/es.number.max-safe-integer.js\":function(module,exports,__webpack_require__){eval(\"var $ = __webpack_require__(/*! ../internals/export */ \\\"./node_modules/core-js/internals/export.js\\\"); // `Number.MAX_SAFE_INTEGER` constant\\n// https://tc39.github.io/ecma262/#sec-number.max_safe_integer\\n\\n\\n$({\\n target: 'Number',\\n stat: true\\n}, {\\n MAX_SAFE_INTEGER: 0x1FFFFFFFFFFFFF\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.max-safe-integer.js?\")},\"./node_modules/core-js/modules/es.number.min-safe-integer.js\":function(module,exports,__webpack_require__){eval(\"var $ = __webpack_require__(/*! ../internals/export */ \\\"./node_modules/core-js/internals/export.js\\\"); // `Number.MIN_SAFE_INTEGER` constant\\n// https://tc39.github.io/ecma262/#sec-number.min_safe_integer\\n\\n\\n$({\\n target: 'Number',\\n stat: true\\n}, {\\n MIN_SAFE_INTEGER: -0x1FFFFFFFFFFFFF\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.min-safe-integer.js?\")},\"./node_modules/core-js/modules/es.number.parse-float.js\":function(module,exports,__webpack_require__){eval('var $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\\n\\nvar parseFloat = __webpack_require__(/*! ../internals/number-parse-float */ \"./node_modules/core-js/internals/number-parse-float.js\"); // `Number.parseFloat` method\\n// https://tc39.github.io/ecma262/#sec-number.parseFloat\\n\\n\\n$({\\n target: \\'Number\\',\\n stat: true,\\n forced: Number.parseFloat != parseFloat\\n}, {\\n parseFloat: parseFloat\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.parse-float.js?')},\"./node_modules/core-js/modules/es.number.parse-int.js\":function(module,exports,__webpack_require__){eval('var $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\\n\\nvar parseInt = __webpack_require__(/*! ../internals/number-parse-int */ \"./node_modules/core-js/internals/number-parse-int.js\"); // `Number.parseInt` method\\n// https://tc39.github.io/ecma262/#sec-number.parseint\\n\\n\\n$({\\n target: \\'Number\\',\\n stat: true,\\n forced: Number.parseInt != parseInt\\n}, {\\n parseInt: parseInt\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.parse-int.js?')},\"./node_modules/core-js/modules/es.number.to-fixed.js\":function(module,exports,__webpack_require__){\"use strict\";eval(\"\\n\\nvar $ = __webpack_require__(/*! ../internals/export */ \\\"./node_modules/core-js/internals/export.js\\\");\\n\\nvar toInteger = __webpack_require__(/*! ../internals/to-integer */ \\\"./node_modules/core-js/internals/to-integer.js\\\");\\n\\nvar thisNumberValue = __webpack_require__(/*! ../internals/this-number-value */ \\\"./node_modules/core-js/internals/this-number-value.js\\\");\\n\\nvar repeat = __webpack_require__(/*! ../internals/string-repeat */ \\\"./node_modules/core-js/internals/string-repeat.js\\\");\\n\\nvar fails = __webpack_require__(/*! ../internals/fails */ \\\"./node_modules/core-js/internals/fails.js\\\");\\n\\nvar nativeToFixed = 1.0.toFixed;\\nvar floor = Math.floor;\\n\\nvar pow = function pow(x, n, acc) {\\n return n === 0 ? acc : n % 2 === 1 ? pow(x, n - 1, acc * x) : pow(x * x, n / 2, acc);\\n};\\n\\nvar log = function log(x) {\\n var n = 0;\\n var x2 = x;\\n\\n while (x2 >= 4096) {\\n n += 12;\\n x2 /= 4096;\\n }\\n\\n while (x2 >= 2) {\\n n += 1;\\n x2 /= 2;\\n }\\n\\n return n;\\n};\\n\\nvar FORCED = nativeToFixed && (0.00008.toFixed(3) !== '0.000' || 0.9.toFixed(0) !== '1' || 1.255.toFixed(2) !== '1.25' || 1000000000000000128.0.toFixed(0) !== '1000000000000000128') || !fails(function () {\\n // V8 ~ Android 4.3-\\n nativeToFixed.call({});\\n}); // `Number.prototype.toFixed` method\\n// https://tc39.github.io/ecma262/#sec-number.prototype.tofixed\\n\\n$({\\n target: 'Number',\\n proto: true,\\n forced: FORCED\\n}, {\\n // eslint-disable-next-line max-statements\\n toFixed: function toFixed(fractionDigits) {\\n var number = thisNumberValue(this);\\n var fractDigits = toInteger(fractionDigits);\\n var data = [0, 0, 0, 0, 0, 0];\\n var sign = '';\\n var result = '0';\\n var e, z, j, k;\\n\\n var multiply = function multiply(n, c) {\\n var index = -1;\\n var c2 = c;\\n\\n while (++index < 6) {\\n c2 += n * data[index];\\n data[index] = c2 % 1e7;\\n c2 = floor(c2 / 1e7);\\n }\\n };\\n\\n var divide = function divide(n) {\\n var index = 6;\\n var c = 0;\\n\\n while (--index >= 0) {\\n c += data[index];\\n data[index] = floor(c / n);\\n c = c % n * 1e7;\\n }\\n };\\n\\n var dataToString = function dataToString() {\\n var index = 6;\\n var s = '';\\n\\n while (--index >= 0) {\\n if (s !== '' || index === 0 || data[index] !== 0) {\\n var t = String(data[index]);\\n s = s === '' ? t : s + repeat.call('0', 7 - t.length) + t;\\n }\\n }\\n\\n return s;\\n };\\n\\n if (fractDigits < 0 || fractDigits > 20) throw RangeError('Incorrect fraction digits'); // eslint-disable-next-line no-self-compare\\n\\n if (number != number) return 'NaN';\\n if (number <= -1e21 || number >= 1e21) return String(number);\\n\\n if (number < 0) {\\n sign = '-';\\n number = -number;\\n }\\n\\n if (number > 1e-21) {\\n e = log(number * pow(2, 69, 1)) - 69;\\n z = e < 0 ? number * pow(2, -e, 1) : number / pow(2, e, 1);\\n z *= 0x10000000000000;\\n e = 52 - e;\\n\\n if (e > 0) {\\n multiply(0, z);\\n j = fractDigits;\\n\\n while (j >= 7) {\\n multiply(1e7, 0);\\n j -= 7;\\n }\\n\\n multiply(pow(10, j, 1), 0);\\n j = e - 1;\\n\\n while (j >= 23) {\\n divide(1 << 23);\\n j -= 23;\\n }\\n\\n divide(1 << j);\\n multiply(1, 1);\\n divide(2);\\n result = dataToString();\\n } else {\\n multiply(0, z);\\n multiply(1 << -e, 0);\\n result = dataToString() + repeat.call('0', fractDigits);\\n }\\n }\\n\\n if (fractDigits > 0) {\\n k = result.length;\\n result = sign + (k <= fractDigits ? '0.' + repeat.call('0', fractDigits - k) + result : result.slice(0, k - fractDigits) + '.' + result.slice(k - fractDigits));\\n } else {\\n result = sign + result;\\n }\\n\\n return result;\\n }\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.to-fixed.js?\")},\"./node_modules/core-js/modules/es.number.to-precision.js\":function(module,exports,__webpack_require__){\"use strict\";eval('\\n\\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\\n\\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\\n\\nvar thisNumberValue = __webpack_require__(/*! ../internals/this-number-value */ \"./node_modules/core-js/internals/this-number-value.js\");\\n\\nvar nativeToPrecision = 1.0.toPrecision;\\nvar FORCED = fails(function () {\\n // IE7-\\n return nativeToPrecision.call(1, undefined) !== \\'1\\';\\n}) || !fails(function () {\\n // V8 ~ Android 4.3-\\n nativeToPrecision.call({});\\n}); // `Number.prototype.toPrecision` method\\n// https://tc39.github.io/ecma262/#sec-number.prototype.toprecision\\n\\n$({\\n target: \\'Number\\',\\n proto: true,\\n forced: FORCED\\n}, {\\n toPrecision: function toPrecision(precision) {\\n return precision === undefined ? nativeToPrecision.call(thisNumberValue(this)) : nativeToPrecision.call(thisNumberValue(this), precision);\\n }\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.to-precision.js?')},\"./node_modules/core-js/modules/es.object.to-string.js\":function(module,exports,__webpack_require__){eval('var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ \"./node_modules/core-js/internals/to-string-tag-support.js\");\\n\\nvar redefine = __webpack_require__(/*! ../internals/redefine */ \"./node_modules/core-js/internals/redefine.js\");\\n\\nvar toString = __webpack_require__(/*! ../internals/object-to-string */ \"./node_modules/core-js/internals/object-to-string.js\"); // `Object.prototype.toString` method\\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\\n\\n\\nif (!TO_STRING_TAG_SUPPORT) {\\n redefine(Object.prototype, \\'toString\\', toString, {\\n unsafe: true\\n });\\n}\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.object.to-string.js?')},\"./node_modules/core-js/modules/es.promise.all-settled.js\":function(module,exports,__webpack_require__){\"use strict\";eval('\\n\\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\\n\\nvar aFunction = __webpack_require__(/*! ../internals/a-function */ \"./node_modules/core-js/internals/a-function.js\");\\n\\nvar newPromiseCapabilityModule = __webpack_require__(/*! ../internals/new-promise-capability */ \"./node_modules/core-js/internals/new-promise-capability.js\");\\n\\nvar perform = __webpack_require__(/*! ../internals/perform */ \"./node_modules/core-js/internals/perform.js\");\\n\\nvar iterate = __webpack_require__(/*! ../internals/iterate */ \"./node_modules/core-js/internals/iterate.js\"); // `Promise.allSettled` method\\n// https://github.com/tc39/proposal-promise-allSettled\\n\\n\\n$({\\n target: \\'Promise\\',\\n stat: true\\n}, {\\n allSettled: function allSettled(iterable) {\\n var C = this;\\n var capability = newPromiseCapabilityModule.f(C);\\n var resolve = capability.resolve;\\n var reject = capability.reject;\\n var result = perform(function () {\\n var promiseResolve = aFunction(C.resolve);\\n var values = [];\\n var counter = 0;\\n var remaining = 1;\\n iterate(iterable, function (promise) {\\n var index = counter++;\\n var alreadyCalled = false;\\n values.push(undefined);\\n remaining++;\\n promiseResolve.call(C, promise).then(function (value) {\\n if (alreadyCalled) return;\\n alreadyCalled = true;\\n values[index] = {\\n status: \\'fulfilled\\',\\n value: value\\n };\\n --remaining || resolve(values);\\n }, function (e) {\\n if (alreadyCalled) return;\\n alreadyCalled = true;\\n values[index] = {\\n status: \\'rejected\\',\\n reason: e\\n };\\n --remaining || resolve(values);\\n });\\n });\\n --remaining || resolve(values);\\n });\\n if (result.error) reject(result.value);\\n return capability.promise;\\n }\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.promise.all-settled.js?')},\"./node_modules/core-js/modules/es.promise.finally.js\":function(module,exports,__webpack_require__){\"use strict\";eval(\"\\n\\nvar $ = __webpack_require__(/*! ../internals/export */ \\\"./node_modules/core-js/internals/export.js\\\");\\n\\nvar IS_PURE = __webpack_require__(/*! ../internals/is-pure */ \\\"./node_modules/core-js/internals/is-pure.js\\\");\\n\\nvar NativePromise = __webpack_require__(/*! ../internals/native-promise-constructor */ \\\"./node_modules/core-js/internals/native-promise-constructor.js\\\");\\n\\nvar fails = __webpack_require__(/*! ../internals/fails */ \\\"./node_modules/core-js/internals/fails.js\\\");\\n\\nvar getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ \\\"./node_modules/core-js/internals/get-built-in.js\\\");\\n\\nvar speciesConstructor = __webpack_require__(/*! ../internals/species-constructor */ \\\"./node_modules/core-js/internals/species-constructor.js\\\");\\n\\nvar promiseResolve = __webpack_require__(/*! ../internals/promise-resolve */ \\\"./node_modules/core-js/internals/promise-resolve.js\\\");\\n\\nvar redefine = __webpack_require__(/*! ../internals/redefine */ \\\"./node_modules/core-js/internals/redefine.js\\\"); // Safari bug https://bugs.webkit.org/show_bug.cgi?id=200829\\n\\n\\nvar NON_GENERIC = !!NativePromise && fails(function () {\\n NativePromise.prototype['finally'].call({\\n then: function then() {\\n /* empty */\\n }\\n }, function () {\\n /* empty */\\n });\\n}); // `Promise.prototype.finally` method\\n// https://tc39.github.io/ecma262/#sec-promise.prototype.finally\\n\\n$({\\n target: 'Promise',\\n proto: true,\\n real: true,\\n forced: NON_GENERIC\\n}, {\\n 'finally': function _finally(onFinally) {\\n var C = speciesConstructor(this, getBuiltIn('Promise'));\\n var isFunction = typeof onFinally == 'function';\\n return this.then(isFunction ? function (x) {\\n return promiseResolve(C, onFinally()).then(function () {\\n return x;\\n });\\n } : onFinally, isFunction ? function (e) {\\n return promiseResolve(C, onFinally()).then(function () {\\n throw e;\\n });\\n } : onFinally);\\n }\\n}); // patch native Promise.prototype for native async functions\\n\\nif (!IS_PURE && typeof NativePromise == 'function' && !NativePromise.prototype['finally']) {\\n redefine(NativePromise.prototype, 'finally', getBuiltIn('Promise').prototype['finally']);\\n}\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.promise.finally.js?\")},\"./node_modules/core-js/modules/es.promise.js\":function(module,exports,__webpack_require__){\"use strict\";eval('\\n\\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\\n\\nvar IS_PURE = __webpack_require__(/*! ../internals/is-pure */ \"./node_modules/core-js/internals/is-pure.js\");\\n\\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ \"./node_modules/core-js/internals/get-built-in.js\");\\n\\nvar NativePromise = __webpack_require__(/*! ../internals/native-promise-constructor */ \"./node_modules/core-js/internals/native-promise-constructor.js\");\\n\\nvar redefine = __webpack_require__(/*! ../internals/redefine */ \"./node_modules/core-js/internals/redefine.js\");\\n\\nvar redefineAll = __webpack_require__(/*! ../internals/redefine-all */ \"./node_modules/core-js/internals/redefine-all.js\");\\n\\nvar setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ \"./node_modules/core-js/internals/set-to-string-tag.js\");\\n\\nvar setSpecies = __webpack_require__(/*! ../internals/set-species */ \"./node_modules/core-js/internals/set-species.js\");\\n\\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\\n\\nvar aFunction = __webpack_require__(/*! ../internals/a-function */ \"./node_modules/core-js/internals/a-function.js\");\\n\\nvar anInstance = __webpack_require__(/*! ../internals/an-instance */ \"./node_modules/core-js/internals/an-instance.js\");\\n\\nvar classof = __webpack_require__(/*! ../internals/classof-raw */ \"./node_modules/core-js/internals/classof-raw.js\");\\n\\nvar inspectSource = __webpack_require__(/*! ../internals/inspect-source */ \"./node_modules/core-js/internals/inspect-source.js\");\\n\\nvar iterate = __webpack_require__(/*! ../internals/iterate */ \"./node_modules/core-js/internals/iterate.js\");\\n\\nvar checkCorrectnessOfIteration = __webpack_require__(/*! ../internals/check-correctness-of-iteration */ \"./node_modules/core-js/internals/check-correctness-of-iteration.js\");\\n\\nvar speciesConstructor = __webpack_require__(/*! ../internals/species-constructor */ \"./node_modules/core-js/internals/species-constructor.js\");\\n\\nvar task = __webpack_require__(/*! ../internals/task */ \"./node_modules/core-js/internals/task.js\").set;\\n\\nvar microtask = __webpack_require__(/*! ../internals/microtask */ \"./node_modules/core-js/internals/microtask.js\");\\n\\nvar promiseResolve = __webpack_require__(/*! ../internals/promise-resolve */ \"./node_modules/core-js/internals/promise-resolve.js\");\\n\\nvar hostReportErrors = __webpack_require__(/*! ../internals/host-report-errors */ \"./node_modules/core-js/internals/host-report-errors.js\");\\n\\nvar newPromiseCapabilityModule = __webpack_require__(/*! ../internals/new-promise-capability */ \"./node_modules/core-js/internals/new-promise-capability.js\");\\n\\nvar perform = __webpack_require__(/*! ../internals/perform */ \"./node_modules/core-js/internals/perform.js\");\\n\\nvar InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ \"./node_modules/core-js/internals/internal-state.js\");\\n\\nvar isForced = __webpack_require__(/*! ../internals/is-forced */ \"./node_modules/core-js/internals/is-forced.js\");\\n\\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\\n\\nvar V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ \"./node_modules/core-js/internals/engine-v8-version.js\");\\n\\nvar SPECIES = wellKnownSymbol(\\'species\\');\\nvar PROMISE = \\'Promise\\';\\nvar getInternalState = InternalStateModule.get;\\nvar setInternalState = InternalStateModule.set;\\nvar getInternalPromiseState = InternalStateModule.getterFor(PROMISE);\\nvar PromiseConstructor = NativePromise;\\nvar TypeError = global.TypeError;\\nvar document = global.document;\\nvar process = global.process;\\nvar $fetch = getBuiltIn(\\'fetch\\');\\nvar newPromiseCapability = newPromiseCapabilityModule.f;\\nvar newGenericPromiseCapability = newPromiseCapability;\\nvar IS_NODE = classof(process) == \\'process\\';\\nvar DISPATCH_EVENT = !!(document && document.createEvent && global.dispatchEvent);\\nvar UNHANDLED_REJECTION = \\'unhandledrejection\\';\\nvar REJECTION_HANDLED = \\'rejectionhandled\\';\\nvar PENDING = 0;\\nvar FULFILLED = 1;\\nvar REJECTED = 2;\\nvar HANDLED = 1;\\nvar UNHANDLED = 2;\\nvar Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;\\nvar FORCED = isForced(PROMISE, function () {\\n var GLOBAL_CORE_JS_PROMISE = inspectSource(PromiseConstructor) !== String(PromiseConstructor);\\n\\n if (!GLOBAL_CORE_JS_PROMISE) {\\n // V8 6.6 (Node 10 and Chrome 66) have a bug with resolving custom thenables\\n // https://bugs.chromium.org/p/chromium/issues/detail?id=830565\\n // We can\\'t detect it synchronously, so just check versions\\n if (V8_VERSION === 66) return true; // Unhandled rejections tracking support, NodeJS Promise without it fails @@species test\\n\\n if (!IS_NODE && typeof PromiseRejectionEvent != \\'function\\') return true;\\n } // We need Promise#finally in the pure version for preventing prototype pollution\\n\\n\\n if (IS_PURE && !PromiseConstructor.prototype[\\'finally\\']) return true; // We can\\'t use @@species feature detection in V8 since it causes\\n // deoptimization and performance degradation\\n // https://github.com/zloirock/core-js/issues/679\\n\\n if (V8_VERSION >= 51 && /native code/.test(PromiseConstructor)) return false; // Detect correctness of subclassing with @@species support\\n\\n var promise = PromiseConstructor.resolve(1);\\n\\n var FakePromise = function FakePromise(exec) {\\n exec(function () {\\n /* empty */\\n }, function () {\\n /* empty */\\n });\\n };\\n\\n var constructor = promise.constructor = {};\\n constructor[SPECIES] = FakePromise;\\n return !(promise.then(function () {\\n /* empty */\\n }) instanceof FakePromise);\\n});\\nvar INCORRECT_ITERATION = FORCED || !checkCorrectnessOfIteration(function (iterable) {\\n PromiseConstructor.all(iterable)[\\'catch\\'](function () {\\n /* empty */\\n });\\n}); // helpers\\n\\nvar isThenable = function isThenable(it) {\\n var then;\\n return isObject(it) && typeof (then = it.then) == \\'function\\' ? then : false;\\n};\\n\\nvar notify = function notify(promise, state, isReject) {\\n if (state.notified) return;\\n state.notified = true;\\n var chain = state.reactions;\\n microtask(function () {\\n var value = state.value;\\n var ok = state.state == FULFILLED;\\n var index = 0; // variable length - can\\'t use forEach\\n\\n while (chain.length > index) {\\n var reaction = chain[index++];\\n var handler = ok ? reaction.ok : reaction.fail;\\n var resolve = reaction.resolve;\\n var reject = reaction.reject;\\n var domain = reaction.domain;\\n var result, then, exited;\\n\\n try {\\n if (handler) {\\n if (!ok) {\\n if (state.rejection === UNHANDLED) onHandleUnhandled(promise, state);\\n state.rejection = HANDLED;\\n }\\n\\n if (handler === true) result = value;else {\\n if (domain) domain.enter();\\n result = handler(value); // can throw\\n\\n if (domain) {\\n domain.exit();\\n exited = true;\\n }\\n }\\n\\n if (result === reaction.promise) {\\n reject(TypeError(\\'Promise-chain cycle\\'));\\n } else if (then = isThenable(result)) {\\n then.call(result, resolve, reject);\\n } else resolve(result);\\n } else reject(value);\\n } catch (error) {\\n if (domain && !exited) domain.exit();\\n reject(error);\\n }\\n }\\n\\n state.reactions = [];\\n state.notified = false;\\n if (isReject && !state.rejection) onUnhandled(promise, state);\\n });\\n};\\n\\nvar dispatchEvent = function dispatchEvent(name, promise, reason) {\\n var event, handler;\\n\\n if (DISPATCH_EVENT) {\\n event = document.createEvent(\\'Event\\');\\n event.promise = promise;\\n event.reason = reason;\\n event.initEvent(name, false, true);\\n global.dispatchEvent(event);\\n } else event = {\\n promise: promise,\\n reason: reason\\n };\\n\\n if (handler = global[\\'on\\' + name]) handler(event);else if (name === UNHANDLED_REJECTION) hostReportErrors(\\'Unhandled promise rejection\\', reason);\\n};\\n\\nvar onUnhandled = function onUnhandled(promise, state) {\\n task.call(global, function () {\\n var value = state.value;\\n var IS_UNHANDLED = isUnhandled(state);\\n var result;\\n\\n if (IS_UNHANDLED) {\\n result = perform(function () {\\n if (IS_NODE) {\\n process.emit(\\'unhandledRejection\\', value, promise);\\n } else dispatchEvent(UNHANDLED_REJECTION, promise, value);\\n }); // Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should\\n\\n state.rejection = IS_NODE || isUnhandled(state) ? UNHANDLED : HANDLED;\\n if (result.error) throw result.value;\\n }\\n });\\n};\\n\\nvar isUnhandled = function isUnhandled(state) {\\n return state.rejection !== HANDLED && !state.parent;\\n};\\n\\nvar onHandleUnhandled = function onHandleUnhandled(promise, state) {\\n task.call(global, function () {\\n if (IS_NODE) {\\n process.emit(\\'rejectionHandled\\', promise);\\n } else dispatchEvent(REJECTION_HANDLED, promise, state.value);\\n });\\n};\\n\\nvar bind = function bind(fn, promise, state, unwrap) {\\n return function (value) {\\n fn(promise, state, value, unwrap);\\n };\\n};\\n\\nvar internalReject = function internalReject(promise, state, value, unwrap) {\\n if (state.done) return;\\n state.done = true;\\n if (unwrap) state = unwrap;\\n state.value = value;\\n state.state = REJECTED;\\n notify(promise, state, true);\\n};\\n\\nvar internalResolve = function internalResolve(promise, state, value, unwrap) {\\n if (state.done) return;\\n state.done = true;\\n if (unwrap) state = unwrap;\\n\\n try {\\n if (promise === value) throw TypeError(\"Promise can\\'t be resolved itself\");\\n var then = isThenable(value);\\n\\n if (then) {\\n microtask(function () {\\n var wrapper = {\\n done: false\\n };\\n\\n try {\\n then.call(value, bind(internalResolve, promise, wrapper, state), bind(internalReject, promise, wrapper, state));\\n } catch (error) {\\n internalReject(promise, wrapper, error, state);\\n }\\n });\\n } else {\\n state.value = value;\\n state.state = FULFILLED;\\n notify(promise, state, false);\\n }\\n } catch (error) {\\n internalReject(promise, {\\n done: false\\n }, error, state);\\n }\\n}; // constructor polyfill\\n\\n\\nif (FORCED) {\\n // 25.4.3.1 Promise(executor)\\n PromiseConstructor = function Promise(executor) {\\n anInstance(this, PromiseConstructor, PROMISE);\\n aFunction(executor);\\n Internal.call(this);\\n var state = getInternalState(this);\\n\\n try {\\n executor(bind(internalResolve, this, state), bind(internalReject, this, state));\\n } catch (error) {\\n internalReject(this, state, error);\\n }\\n }; // eslint-disable-next-line no-unused-vars\\n\\n\\n Internal = function Promise(executor) {\\n setInternalState(this, {\\n type: PROMISE,\\n done: false,\\n notified: false,\\n parent: false,\\n reactions: [],\\n rejection: false,\\n state: PENDING,\\n value: undefined\\n });\\n };\\n\\n Internal.prototype = redefineAll(PromiseConstructor.prototype, {\\n // `Promise.prototype.then` method\\n // https://tc39.github.io/ecma262/#sec-promise.prototype.then\\n then: function then(onFulfilled, onRejected) {\\n var state = getInternalPromiseState(this);\\n var reaction = newPromiseCapability(speciesConstructor(this, PromiseConstructor));\\n reaction.ok = typeof onFulfilled == \\'function\\' ? onFulfilled : true;\\n reaction.fail = typeof onRejected == \\'function\\' && onRejected;\\n reaction.domain = IS_NODE ? process.domain : undefined;\\n state.parent = true;\\n state.reactions.push(reaction);\\n if (state.state != PENDING) notify(this, state, false);\\n return reaction.promise;\\n },\\n // `Promise.prototype.catch` method\\n // https://tc39.github.io/ecma262/#sec-promise.prototype.catch\\n \\'catch\\': function _catch(onRejected) {\\n return this.then(undefined, onRejected);\\n }\\n });\\n\\n OwnPromiseCapability = function OwnPromiseCapability() {\\n var promise = new Internal();\\n var state = getInternalState(promise);\\n this.promise = promise;\\n this.resolve = bind(internalResolve, promise, state);\\n this.reject = bind(internalReject, promise, state);\\n };\\n\\n newPromiseCapabilityModule.f = newPromiseCapability = function newPromiseCapability(C) {\\n return C === PromiseConstructor || C === PromiseWrapper ? new OwnPromiseCapability(C) : newGenericPromiseCapability(C);\\n };\\n\\n if (!IS_PURE && typeof NativePromise == \\'function\\') {\\n nativeThen = NativePromise.prototype.then; // wrap native Promise#then for native async functions\\n\\n redefine(NativePromise.prototype, \\'then\\', function then(onFulfilled, onRejected) {\\n var that = this;\\n return new PromiseConstructor(function (resolve, reject) {\\n nativeThen.call(that, resolve, reject);\\n }).then(onFulfilled, onRejected); // https://github.com/zloirock/core-js/issues/640\\n }, {\\n unsafe: true\\n }); // wrap fetch result\\n\\n if (typeof $fetch == \\'function\\') $({\\n global: true,\\n enumerable: true,\\n forced: true\\n }, {\\n // eslint-disable-next-line no-unused-vars\\n fetch: function fetch(input\\n /* , init */\\n ) {\\n return promiseResolve(PromiseConstructor, $fetch.apply(global, arguments));\\n }\\n });\\n }\\n}\\n\\n$({\\n global: true,\\n wrap: true,\\n forced: FORCED\\n}, {\\n Promise: PromiseConstructor\\n});\\nsetToStringTag(PromiseConstructor, PROMISE, false, true);\\nsetSpecies(PROMISE);\\nPromiseWrapper = getBuiltIn(PROMISE); // statics\\n\\n$({\\n target: PROMISE,\\n stat: true,\\n forced: FORCED\\n}, {\\n // `Promise.reject` method\\n // https://tc39.github.io/ecma262/#sec-promise.reject\\n reject: function reject(r) {\\n var capability = newPromiseCapability(this);\\n capability.reject.call(undefined, r);\\n return capability.promise;\\n }\\n});\\n$({\\n target: PROMISE,\\n stat: true,\\n forced: IS_PURE || FORCED\\n}, {\\n // `Promise.resolve` method\\n // https://tc39.github.io/ecma262/#sec-promise.resolve\\n resolve: function resolve(x) {\\n return promiseResolve(IS_PURE && this === PromiseWrapper ? PromiseConstructor : this, x);\\n }\\n});\\n$({\\n target: PROMISE,\\n stat: true,\\n forced: INCORRECT_ITERATION\\n}, {\\n // `Promise.all` method\\n // https://tc39.github.io/ecma262/#sec-promise.all\\n all: function all(iterable) {\\n var C = this;\\n var capability = newPromiseCapability(C);\\n var resolve = capability.resolve;\\n var reject = capability.reject;\\n var result = perform(function () {\\n var $promiseResolve = aFunction(C.resolve);\\n var values = [];\\n var counter = 0;\\n var remaining = 1;\\n iterate(iterable, function (promise) {\\n var index = counter++;\\n var alreadyCalled = false;\\n values.push(undefined);\\n remaining++;\\n $promiseResolve.call(C, promise).then(function (value) {\\n if (alreadyCalled) return;\\n alreadyCalled = true;\\n values[index] = value;\\n --remaining || resolve(values);\\n }, reject);\\n });\\n --remaining || resolve(values);\\n });\\n if (result.error) reject(result.value);\\n return capability.promise;\\n },\\n // `Promise.race` method\\n // https://tc39.github.io/ecma262/#sec-promise.race\\n race: function race(iterable) {\\n var C = this;\\n var capability = newPromiseCapability(C);\\n var reject = capability.reject;\\n var result = perform(function () {\\n var $promiseResolve = aFunction(C.resolve);\\n iterate(iterable, function (promise) {\\n $promiseResolve.call(C, promise).then(capability.resolve, reject);\\n });\\n });\\n if (result.error) reject(result.value);\\n return capability.promise;\\n }\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.promise.js?')},\"./node_modules/core-js/modules/es.string.iterator.js\":function(module,exports,__webpack_require__){\"use strict\";eval('\\n\\nvar charAt = __webpack_require__(/*! ../internals/string-multibyte */ \"./node_modules/core-js/internals/string-multibyte.js\").charAt;\\n\\nvar InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ \"./node_modules/core-js/internals/internal-state.js\");\\n\\nvar defineIterator = __webpack_require__(/*! ../internals/define-iterator */ \"./node_modules/core-js/internals/define-iterator.js\");\\n\\nvar STRING_ITERATOR = \\'String Iterator\\';\\nvar setInternalState = InternalStateModule.set;\\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR); // `String.prototype[@@iterator]` method\\n// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator\\n\\ndefineIterator(String, \\'String\\', function (iterated) {\\n setInternalState(this, {\\n type: STRING_ITERATOR,\\n string: String(iterated),\\n index: 0\\n }); // `%StringIteratorPrototype%.next` method\\n // https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next\\n}, function next() {\\n var state = getInternalState(this);\\n var string = state.string;\\n var index = state.index;\\n var point;\\n if (index >= string.length) return {\\n value: undefined,\\n done: true\\n };\\n point = charAt(string, index);\\n state.index += point.length;\\n return {\\n value: point,\\n done: false\\n };\\n});\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.string.iterator.js?')},\"./node_modules/core-js/modules/web.dom-collections.iterator.js\":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\\n\\nvar DOMIterables = __webpack_require__(/*! ../internals/dom-iterables */ \"./node_modules/core-js/internals/dom-iterables.js\");\\n\\nvar ArrayIteratorMethods = __webpack_require__(/*! ../modules/es.array.iterator */ \"./node_modules/core-js/modules/es.array.iterator.js\");\\n\\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\\n\\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\\n\\nvar ITERATOR = wellKnownSymbol(\\'iterator\\');\\nvar TO_STRING_TAG = wellKnownSymbol(\\'toStringTag\\');\\nvar ArrayValues = ArrayIteratorMethods.values;\\n\\nfor (var COLLECTION_NAME in DOMIterables) {\\n var Collection = global[COLLECTION_NAME];\\n var CollectionPrototype = Collection && Collection.prototype;\\n\\n if (CollectionPrototype) {\\n // some Chrome versions have non-configurable methods on DOMTokenList\\n if (CollectionPrototype[ITERATOR] !== ArrayValues) try {\\n createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);\\n } catch (error) {\\n CollectionPrototype[ITERATOR] = ArrayValues;\\n }\\n\\n if (!CollectionPrototype[TO_STRING_TAG]) {\\n createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\\n }\\n\\n if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {\\n // some Chrome versions have non-configurable methods on DOMTokenList\\n if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {\\n createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);\\n } catch (error) {\\n CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];\\n }\\n }\\n }\\n}\\n\\n//# sourceURL=webpack:///./node_modules/core-js/modules/web.dom-collections.iterator.js?')},\"./node_modules/core-js/stable/number/index.js\":function(module,exports,__webpack_require__){eval('var parent = __webpack_require__(/*! ../../es/number */ \"./node_modules/core-js/es/number/index.js\");\\n\\nmodule.exports = parent;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/stable/number/index.js?')},\"./node_modules/core-js/stable/promise/index.js\":function(module,exports,__webpack_require__){eval('var parent = __webpack_require__(/*! ../../es/promise */ \"./node_modules/core-js/es/promise/index.js\");\\n\\nmodule.exports = parent;\\n\\n//# sourceURL=webpack:///./node_modules/core-js/stable/promise/index.js?')},\"./node_modules/desandro-matches-selector/matches-selector.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof(obj); }\\n\\n/**\\n * matchesSelector v2.0.2\\n * matchesSelector( element, '.selector' )\\n * MIT license\\n */\\n\\n/*jshint browser: true, strict: true, undef: true, unused: true */\\n(function (window, factory) {\\n /*global define: false, module: false */\\n 'use strict'; // universal module definition\\n\\n if (true) {\\n // AMD\\n !(__WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.call(exports, __webpack_require__, exports, module)) :\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\\n } else {}\\n})(window, function factory() {\\n 'use strict';\\n\\n var matchesMethod = function () {\\n var ElemProto = window.Element.prototype; // check for the standard method name first\\n\\n if (ElemProto.matches) {\\n return 'matches';\\n } // check un-prefixed\\n\\n\\n if (ElemProto.matchesSelector) {\\n return 'matchesSelector';\\n } // check vendor prefixes\\n\\n\\n var prefixes = ['webkit', 'moz', 'ms', 'o'];\\n\\n for (var i = 0; i < prefixes.length; i++) {\\n var prefix = prefixes[i];\\n var method = prefix + 'MatchesSelector';\\n\\n if (ElemProto[method]) {\\n return method;\\n }\\n }\\n }();\\n\\n return function matchesSelector(elem, selector) {\\n return elem[matchesMethod](selector);\\n };\\n});\\n\\n//# sourceURL=webpack:///./node_modules/desandro-matches-selector/matches-selector.js?\")},\"./node_modules/dompurify/dist/purify.js\":function(module,exports,__webpack_require__){eval(\"var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;function _typeof2(obj) { \\\"@babel/helpers - typeof\\\"; if (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\") { _typeof2 = function _typeof2(obj) { return typeof obj; }; } else { _typeof2 = function _typeof2(obj) { return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj; }; } return _typeof2(obj); }\\n\\n/*! @license DOMPurify 2.5.4 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.5.4/LICENSE */\\n(function (global, factory) {\\n ( false ? undefined : _typeof2(exports)) === 'object' && typeof module !== 'undefined' ? module.exports = factory() : true ? !(__WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?\\n\\t\\t\\t\\t(__WEBPACK_AMD_DEFINE_FACTORY__.call(exports, __webpack_require__, exports, module)) :\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_FACTORY__),\\n\\t\\t\\t\\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : (undefined);\\n})(this, function () {\\n 'use strict';\\n\\n function _typeof(obj) {\\n \\\"@babel/helpers - typeof\\\";\\n\\n return _typeof = \\\"function\\\" == typeof Symbol && \\\"symbol\\\" == typeof Symbol.iterator ? function (obj) {\\n return typeof obj;\\n } : function (obj) {\\n return obj && \\\"function\\\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \\\"symbol\\\" : typeof obj;\\n }, _typeof(obj);\\n }\\n\\n function _setPrototypeOf(o, p) {\\n _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {\\n o.__proto__ = p;\\n return o;\\n };\\n\\n return _setPrototypeOf(o, p);\\n }\\n\\n function _isNativeReflectConstruct() {\\n if (typeof Reflect === \\\"undefined\\\" || !Reflect.construct) return false;\\n if (Reflect.construct.sham) return false;\\n if (typeof Proxy === \\\"function\\\") return true;\\n\\n try {\\n Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));\\n return true;\\n } catch (e) {\\n return false;\\n }\\n }\\n\\n function _construct(Parent, args, Class) {\\n if (_isNativeReflectConstruct()) {\\n _construct = Reflect.construct;\\n } else {\\n _construct = function _construct(Parent, args, Class) {\\n var a = [null];\\n a.push.apply(a, args);\\n var Constructor = Function.bind.apply(Parent, a);\\n var instance = new Constructor();\\n if (Class) _setPrototypeOf(instance, Class.prototype);\\n return instance;\\n };\\n }\\n\\n return _construct.apply(null, arguments);\\n }\\n\\n function _toConsumableArray(arr) {\\n return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();\\n }\\n\\n function _arrayWithoutHoles(arr) {\\n if (Array.isArray(arr)) return _arrayLikeToArray(arr);\\n }\\n\\n function _iterableToArray(iter) {\\n if (typeof Symbol !== \\\"undefined\\\" && iter[Symbol.iterator] != null || iter[\\\"@@iterator\\\"] != null) return Array.from(iter);\\n }\\n\\n function _unsupportedIterableToArray(o, minLen) {\\n if (!o) return;\\n if (typeof o === \\\"string\\\") return _arrayLikeToArray(o, minLen);\\n var n = Object.prototype.toString.call(o).slice(8, -1);\\n if (n === \\\"Object\\\" && o.constructor) n = o.constructor.name;\\n if (n === \\\"Map\\\" || n === \\\"Set\\\") return Array.from(o);\\n if (n === \\\"Arguments\\\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);\\n }\\n\\n function _arrayLikeToArray(arr, len) {\\n if (len == null || len > arr.length) len = arr.length;\\n\\n for (var i = 0, arr2 = new Array(len); i < len; i++) {\\n arr2[i] = arr[i];\\n }\\n\\n return arr2;\\n }\\n\\n function _nonIterableSpread() {\\n throw new TypeError(\\\"Invalid attempt to spread non-iterable instance.\\\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\\\");\\n }\\n\\n var hasOwnProperty = Object.hasOwnProperty,\\n setPrototypeOf = Object.setPrototypeOf,\\n isFrozen = Object.isFrozen,\\n getPrototypeOf = Object.getPrototypeOf,\\n getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\\n var freeze = Object.freeze,\\n seal = Object.seal,\\n create = Object.create; // eslint-disable-line import/no-mutable-exports\\n\\n var _ref = typeof Reflect !== 'undefined' && Reflect,\\n apply = _ref.apply,\\n construct = _ref.construct;\\n\\n if (!apply) {\\n apply = function apply(fun, thisValue, args) {\\n return fun.apply(thisValue, args);\\n };\\n }\\n\\n if (!freeze) {\\n freeze = function freeze(x) {\\n return x;\\n };\\n }\\n\\n if (!seal) {\\n seal = function seal(x) {\\n return x;\\n };\\n }\\n\\n if (!construct) {\\n construct = function construct(Func, args) {\\n return _construct(Func, _toConsumableArray(args));\\n };\\n }\\n\\n var arrayForEach = unapply(Array.prototype.forEach);\\n var arrayPop = unapply(Array.prototype.pop);\\n var arrayPush = unapply(Array.prototype.push);\\n var stringToLowerCase = unapply(String.prototype.toLowerCase);\\n var stringToString = unapply(String.prototype.toString);\\n var stringMatch = unapply(String.prototype.match);\\n var stringReplace = unapply(String.prototype.replace);\\n var stringIndexOf = unapply(String.prototype.indexOf);\\n var stringTrim = unapply(String.prototype.trim);\\n var regExpTest = unapply(RegExp.prototype.test);\\n var typeErrorCreate = unconstruct(TypeError);\\n\\n function numberIsNaN(x) {\\n // eslint-disable-next-line unicorn/prefer-number-properties\\n return typeof x === 'number' && isNaN(x);\\n }\\n\\n function unapply(func) {\\n return function (thisArg) {\\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\\n args[_key - 1] = arguments[_key];\\n }\\n\\n return apply(func, thisArg, args);\\n };\\n }\\n\\n function unconstruct(func) {\\n return function () {\\n for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\\n args[_key2] = arguments[_key2];\\n }\\n\\n return construct(func, args);\\n };\\n }\\n /* Add properties to a lookup table */\\n\\n\\n function addToSet(set, array, transformCaseFunc) {\\n var _transformCaseFunc;\\n\\n transformCaseFunc = (_transformCaseFunc = transformCaseFunc) !== null && _transformCaseFunc !== void 0 ? _transformCaseFunc : stringToLowerCase;\\n\\n if (setPrototypeOf) {\\n // Make 'in' and truthy checks like Boolean(set.constructor)\\n // independent of any properties defined on Object.prototype.\\n // Prevent prototype setters from intercepting set as a this value.\\n setPrototypeOf(set, null);\\n }\\n\\n var l = array.length;\\n\\n while (l--) {\\n var element = array[l];\\n\\n if (typeof element === 'string') {\\n var lcElement = transformCaseFunc(element);\\n\\n if (lcElement !== element) {\\n // Config presets (e.g. tags.js, attrs.js) are immutable.\\n if (!isFrozen(array)) {\\n array[l] = lcElement;\\n }\\n\\n element = lcElement;\\n }\\n }\\n\\n set[element] = true;\\n }\\n\\n return set;\\n }\\n /* Shallow clone an object */\\n\\n\\n function clone(object) {\\n var newObject = create(null);\\n var property;\\n\\n for (property in object) {\\n if (apply(hasOwnProperty, object, [property]) === true) {\\n newObject[property] = object[property];\\n }\\n }\\n\\n return newObject;\\n }\\n /* IE10 doesn't support __lookupGetter__ so lets'\\n * simulate it. It also automatically checks\\n * if the prop is function or getter and behaves\\n * accordingly. */\\n\\n\\n function lookupGetter(object, prop) {\\n while (object !== null) {\\n var desc = getOwnPropertyDescriptor(object, prop);\\n\\n if (desc) {\\n if (desc.get) {\\n return unapply(desc.get);\\n }\\n\\n if (typeof desc.value === 'function') {\\n return unapply(desc.value);\\n }\\n }\\n\\n object = getPrototypeOf(object);\\n }\\n\\n function fallbackValue(element) {\\n console.warn('fallback value for', element);\\n return null;\\n }\\n\\n return fallbackValue;\\n }\\n\\n var html$1 = freeze(['a', 'abbr', 'acronym', 'address', 'area', 'article', 'aside', 'audio', 'b', 'bdi', 'bdo', 'big', 'blink', 'blockquote', 'body', 'br', 'button', 'canvas', 'caption', 'center', 'cite', 'code', 'col', 'colgroup', 'content', 'data', 'datalist', 'dd', 'decorator', 'del', 'details', 'dfn', 'dialog', 'dir', 'div', 'dl', 'dt', 'element', 'em', 'fieldset', 'figcaption', 'figure', 'font', 'footer', 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'header', 'hgroup', 'hr', 'html', 'i', 'img', 'input', 'ins', 'kbd', 'label', 'legend', 'li', 'main', 'map', 'mark', 'marquee', 'menu', 'menuitem', 'meter', 'nav', 'nobr', 'ol', 'optgroup', 'option', 'output', 'p', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'section', 'select', 'shadow', 'small', 'source', 'spacer', 'span', 'strike', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'template', 'textarea', 'tfoot', 'th', 'thead', 'time', 'tr', 'track', 'tt', 'u', 'ul', 'var', 'video', 'wbr']); // SVG\\n\\n var svg$1 = freeze(['svg', 'a', 'altglyph', 'altglyphdef', 'altglyphitem', 'animatecolor', 'animatemotion', 'animatetransform', 'circle', 'clippath', 'defs', 'desc', 'ellipse', 'filter', 'font', 'g', 'glyph', 'glyphref', 'hkern', 'image', 'line', 'lineargradient', 'marker', 'mask', 'metadata', 'mpath', 'path', 'pattern', 'polygon', 'polyline', 'radialgradient', 'rect', 'stop', 'style', 'switch', 'symbol', 'text', 'textpath', 'title', 'tref', 'tspan', 'view', 'vkern']);\\n var svgFilters = freeze(['feBlend', 'feColorMatrix', 'feComponentTransfer', 'feComposite', 'feConvolveMatrix', 'feDiffuseLighting', 'feDisplacementMap', 'feDistantLight', 'feFlood', 'feFuncA', 'feFuncB', 'feFuncG', 'feFuncR', 'feGaussianBlur', 'feImage', 'feMerge', 'feMergeNode', 'feMorphology', 'feOffset', 'fePointLight', 'feSpecularLighting', 'feSpotLight', 'feTile', 'feTurbulence']); // List of SVG elements that are disallowed by default.\\n // We still need to know them so that we can do namespace\\n // checks properly in case one wants to add them to\\n // allow-list.\\n\\n var svgDisallowed = freeze(['animate', 'color-profile', 'cursor', 'discard', 'fedropshadow', 'font-face', 'font-face-format', 'font-face-name', 'font-face-src', 'font-face-uri', 'foreignobject', 'hatch', 'hatchpath', 'mesh', 'meshgradient', 'meshpatch', 'meshrow', 'missing-glyph', 'script', 'set', 'solidcolor', 'unknown', 'use']);\\n var mathMl$1 = freeze(['math', 'menclose', 'merror', 'mfenced', 'mfrac', 'mglyph', 'mi', 'mlabeledtr', 'mmultiscripts', 'mn', 'mo', 'mover', 'mpadded', 'mphantom', 'mroot', 'mrow', 'ms', 'mspace', 'msqrt', 'mstyle', 'msub', 'msup', 'msubsup', 'mtable', 'mtd', 'mtext', 'mtr', 'munder', 'munderover']); // Similarly to SVG, we want to know all MathML elements,\\n // even those that we disallow by default.\\n\\n var mathMlDisallowed = freeze(['maction', 'maligngroup', 'malignmark', 'mlongdiv', 'mscarries', 'mscarry', 'msgroup', 'mstack', 'msline', 'msrow', 'semantics', 'annotation', 'annotation-xml', 'mprescripts', 'none']);\\n var text = freeze(['#text']);\\n var html = freeze(['accept', 'action', 'align', 'alt', 'autocapitalize', 'autocomplete', 'autopictureinpicture', 'autoplay', 'background', 'bgcolor', 'border', 'capture', 'cellpadding', 'cellspacing', 'checked', 'cite', 'class', 'clear', 'color', 'cols', 'colspan', 'controls', 'controlslist', 'coords', 'crossorigin', 'datetime', 'decoding', 'default', 'dir', 'disabled', 'disablepictureinpicture', 'disableremoteplayback', 'download', 'draggable', 'enctype', 'enterkeyhint', 'face', 'for', 'headers', 'height', 'hidden', 'high', 'href', 'hreflang', 'id', 'inputmode', 'integrity', 'ismap', 'kind', 'label', 'lang', 'list', 'loading', 'loop', 'low', 'max', 'maxlength', 'media', 'method', 'min', 'minlength', 'multiple', 'muted', 'name', 'nonce', 'noshade', 'novalidate', 'nowrap', 'open', 'optimum', 'pattern', 'placeholder', 'playsinline', 'poster', 'preload', 'pubdate', 'radiogroup', 'readonly', 'rel', 'required', 'rev', 'reversed', 'role', 'rows', 'rowspan', 'spellcheck', 'scope', 'selected', 'shape', 'size', 'sizes', 'span', 'srclang', 'start', 'src', 'srcset', 'step', 'style', 'summary', 'tabindex', 'title', 'translate', 'type', 'usemap', 'valign', 'value', 'width', 'xmlns', 'slot']);\\n var svg = freeze(['accent-height', 'accumulate', 'additive', 'alignment-baseline', 'ascent', 'attributename', 'attributetype', 'azimuth', 'basefrequency', 'baseline-shift', 'begin', 'bias', 'by', 'class', 'clip', 'clippathunits', 'clip-path', 'clip-rule', 'color', 'color-interpolation', 'color-interpolation-filters', 'color-profile', 'color-rendering', 'cx', 'cy', 'd', 'dx', 'dy', 'diffuseconstant', 'direction', 'display', 'divisor', 'dur', 'edgemode', 'elevation', 'end', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'filterunits', 'flood-color', 'flood-opacity', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', 'font-weight', 'fx', 'fy', 'g1', 'g2', 'glyph-name', 'glyphref', 'gradientunits', 'gradienttransform', 'height', 'href', 'id', 'image-rendering', 'in', 'in2', 'k', 'k1', 'k2', 'k3', 'k4', 'kerning', 'keypoints', 'keysplines', 'keytimes', 'lang', 'lengthadjust', 'letter-spacing', 'kernelmatrix', 'kernelunitlength', 'lighting-color', 'local', 'marker-end', 'marker-mid', 'marker-start', 'markerheight', 'markerunits', 'markerwidth', 'maskcontentunits', 'maskunits', 'max', 'mask', 'media', 'method', 'mode', 'min', 'name', 'numoctaves', 'offset', 'operator', 'opacity', 'order', 'orient', 'orientation', 'origin', 'overflow', 'paint-order', 'path', 'pathlength', 'patterncontentunits', 'patterntransform', 'patternunits', 'points', 'preservealpha', 'preserveaspectratio', 'primitiveunits', 'r', 'rx', 'ry', 'radius', 'refx', 'refy', 'repeatcount', 'repeatdur', 'restart', 'result', 'rotate', 'scale', 'seed', 'shape-rendering', 'specularconstant', 'specularexponent', 'spreadmethod', 'startoffset', 'stddeviation', 'stitchtiles', 'stop-color', 'stop-opacity', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke', 'stroke-width', 'style', 'surfacescale', 'systemlanguage', 'tabindex', 'targetx', 'targety', 'transform', 'transform-origin', 'text-anchor', 'text-decoration', 'text-rendering', 'textlength', 'type', 'u1', 'u2', 'unicode', 'values', 'viewbox', 'visibility', 'version', 'vert-adv-y', 'vert-origin-x', 'vert-origin-y', 'width', 'word-spacing', 'wrap', 'writing-mode', 'xchannelselector', 'ychannelselector', 'x', 'x1', 'x2', 'xmlns', 'y', 'y1', 'y2', 'z', 'zoomandpan']);\\n var mathMl = freeze(['accent', 'accentunder', 'align', 'bevelled', 'close', 'columnsalign', 'columnlines', 'columnspan', 'denomalign', 'depth', 'dir', 'display', 'displaystyle', 'encoding', 'fence', 'frame', 'height', 'href', 'id', 'largeop', 'length', 'linethickness', 'lspace', 'lquote', 'mathbackground', 'mathcolor', 'mathsize', 'mathvariant', 'maxsize', 'minsize', 'movablelimits', 'notation', 'numalign', 'open', 'rowalign', 'rowlines', 'rowspacing', 'rowspan', 'rspace', 'rquote', 'scriptlevel', 'scriptminsize', 'scriptsizemultiplier', 'selection', 'separator', 'separators', 'stretchy', 'subscriptshift', 'supscriptshift', 'symmetric', 'voffset', 'width', 'xmlns']);\\n var xml = freeze(['xlink:href', 'xml:id', 'xlink:title', 'xml:space', 'xmlns:xlink']); // eslint-disable-next-line unicorn/better-regex\\n\\n var MUSTACHE_EXPR = seal(/\\\\{\\\\{[\\\\w\\\\W]*|[\\\\w\\\\W]*\\\\}\\\\}/gm); // Specify template detection regex for SAFE_FOR_TEMPLATES mode\\n\\n var ERB_EXPR = seal(/<%[\\\\w\\\\W]*|[\\\\w\\\\W]*%>/gm);\\n var TMPLIT_EXPR = seal(/\\\\${[\\\\w\\\\W]*}/gm);\\n var DATA_ATTR = seal(/^data-[\\\\-\\\\w.\\\\u00B7-\\\\uFFFF]/); // eslint-disable-line no-useless-escape\\n\\n var ARIA_ATTR = seal(/^aria-[\\\\-\\\\w]+$/); // eslint-disable-line no-useless-escape\\n\\n var IS_ALLOWED_URI = seal(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\\\\-]+(?:[^a-z+.\\\\-:]|$))/i // eslint-disable-line no-useless-escape\\n );\\n var IS_SCRIPT_OR_DATA = seal(/^(?:\\\\w+script|data):/i);\\n var ATTR_WHITESPACE = seal(/[\\\\u0000-\\\\u0020\\\\u00A0\\\\u1680\\\\u180E\\\\u2000-\\\\u2029\\\\u205F\\\\u3000]/g // eslint-disable-line no-control-regex\\n );\\n var DOCTYPE_NAME = seal(/^html$/i);\\n var CUSTOM_ELEMENT = seal(/^[a-z][.\\\\w]*(-[.\\\\w]+)+$/i);\\n\\n var getGlobal = function getGlobal() {\\n return typeof window === 'undefined' ? null : window;\\n };\\n /**\\n * Creates a no-op policy for internal use only.\\n * Don't export this function outside this module!\\n * @param {?TrustedTypePolicyFactory} trustedTypes The policy factory.\\n * @param {Document} document The document object (to determine policy name suffix)\\n * @return {?TrustedTypePolicy} The policy created (or null, if Trusted Types\\n * are not supported).\\n */\\n\\n\\n var _createTrustedTypesPolicy = function _createTrustedTypesPolicy(trustedTypes, document) {\\n if (_typeof(trustedTypes) !== 'object' || typeof trustedTypes.createPolicy !== 'function') {\\n return null;\\n } // Allow the callers to control the unique policy name\\n // by adding a data-tt-policy-suffix to the script element with the DOMPurify.\\n // Policy creation with duplicate names throws in Trusted Types.\\n\\n\\n var suffix = null;\\n var ATTR_NAME = 'data-tt-policy-suffix';\\n\\n if (document.currentScript && document.currentScript.hasAttribute(ATTR_NAME)) {\\n suffix = document.currentScript.getAttribute(ATTR_NAME);\\n }\\n\\n var policyName = 'dompurify' + (suffix ? '#' + suffix : '');\\n\\n try {\\n return trustedTypes.createPolicy(policyName, {\\n createHTML: function createHTML(html) {\\n return html;\\n },\\n createScriptURL: function createScriptURL(scriptUrl) {\\n return scriptUrl;\\n }\\n });\\n } catch (_) {\\n // Policy creation failed (most likely another DOMPurify script has\\n // already run). Skip creating the policy, as this will only cause errors\\n // if TT are enforced.\\n console.warn('TrustedTypes policy ' + policyName + ' could not be created.');\\n return null;\\n }\\n };\\n\\n function createDOMPurify() {\\n var window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getGlobal();\\n\\n var DOMPurify = function DOMPurify(root) {\\n return createDOMPurify(root);\\n };\\n /**\\n * Version label, exposed for easier checks\\n * if DOMPurify is up to date or not\\n */\\n\\n\\n DOMPurify.version = '2.5.4';\\n /**\\n * Array of elements that DOMPurify removed during sanitation.\\n * Empty if nothing was removed.\\n */\\n\\n DOMPurify.removed = [];\\n\\n if (!window || !window.document || window.document.nodeType !== 9) {\\n // Not running in a browser, provide a factory function\\n // so that you can pass your own Window\\n DOMPurify.isSupported = false;\\n return DOMPurify;\\n }\\n\\n var originalDocument = window.document;\\n var document = window.document;\\n var DocumentFragment = window.DocumentFragment,\\n HTMLTemplateElement = window.HTMLTemplateElement,\\n Node = window.Node,\\n Element = window.Element,\\n NodeFilter = window.NodeFilter,\\n _window$NamedNodeMap = window.NamedNodeMap,\\n NamedNodeMap = _window$NamedNodeMap === void 0 ? window.NamedNodeMap || window.MozNamedAttrMap : _window$NamedNodeMap,\\n HTMLFormElement = window.HTMLFormElement,\\n DOMParser = window.DOMParser,\\n trustedTypes = window.trustedTypes;\\n var ElementPrototype = Element.prototype;\\n var cloneNode = lookupGetter(ElementPrototype, 'cloneNode');\\n var getNextSibling = lookupGetter(ElementPrototype, 'nextSibling');\\n var getChildNodes = lookupGetter(ElementPrototype, 'childNodes');\\n var getParentNode = lookupGetter(ElementPrototype, 'parentNode'); // As per issue #47, the web-components registry is inherited by a\\n // new document created via createHTMLDocument. As per the spec\\n // (http://w3c.github.io/webcomponents/spec/custom/#creating-and-passing-registries)\\n // a new empty registry is used when creating a template contents owner\\n // document, so we use that as our parent document to ensure nothing\\n // is inherited.\\n\\n if (typeof HTMLTemplateElement === 'function') {\\n var template = document.createElement('template');\\n\\n if (template.content && template.content.ownerDocument) {\\n document = template.content.ownerDocument;\\n }\\n }\\n\\n var trustedTypesPolicy = _createTrustedTypesPolicy(trustedTypes, originalDocument);\\n\\n var emptyHTML = trustedTypesPolicy ? trustedTypesPolicy.createHTML('') : '';\\n var _document = document,\\n implementation = _document.implementation,\\n createNodeIterator = _document.createNodeIterator,\\n createDocumentFragment = _document.createDocumentFragment,\\n getElementsByTagName = _document.getElementsByTagName;\\n var importNode = originalDocument.importNode;\\n var documentMode = {};\\n\\n try {\\n documentMode = clone(document).documentMode ? document.documentMode : {};\\n } catch (_) {}\\n\\n var hooks = {};\\n /**\\n * Expose whether this browser supports running the full DOMPurify.\\n */\\n\\n DOMPurify.isSupported = typeof getParentNode === 'function' && implementation && implementation.createHTMLDocument !== undefined && documentMode !== 9;\\n var MUSTACHE_EXPR$1 = MUSTACHE_EXPR,\\n ERB_EXPR$1 = ERB_EXPR,\\n TMPLIT_EXPR$1 = TMPLIT_EXPR,\\n DATA_ATTR$1 = DATA_ATTR,\\n ARIA_ATTR$1 = ARIA_ATTR,\\n IS_SCRIPT_OR_DATA$1 = IS_SCRIPT_OR_DATA,\\n ATTR_WHITESPACE$1 = ATTR_WHITESPACE,\\n CUSTOM_ELEMENT$1 = CUSTOM_ELEMENT;\\n var IS_ALLOWED_URI$1 = IS_ALLOWED_URI;\\n /**\\n * We consider the elements and attributes below to be safe. Ideally\\n * don't add any new ones but feel free to remove unwanted ones.\\n */\\n\\n /* allowed element names */\\n\\n var ALLOWED_TAGS = null;\\n var DEFAULT_ALLOWED_TAGS = addToSet({}, [].concat(_toConsumableArray(html$1), _toConsumableArray(svg$1), _toConsumableArray(svgFilters), _toConsumableArray(mathMl$1), _toConsumableArray(text)));\\n /* Allowed attribute names */\\n\\n var ALLOWED_ATTR = null;\\n var DEFAULT_ALLOWED_ATTR = addToSet({}, [].concat(_toConsumableArray(html), _toConsumableArray(svg), _toConsumableArray(mathMl), _toConsumableArray(xml)));\\n /*\\n * Configure how DOMPUrify should handle custom elements and their attributes as well as customized built-in elements.\\n * @property {RegExp|Function|null} tagNameCheck one of [null, regexPattern, predicate]. Default: `null` (disallow any custom elements)\\n * @property {RegExp|Function|null} attributeNameCheck one of [null, regexPattern, predicate]. Default: `null` (disallow any attributes not on the allow list)\\n * @property {boolean} allowCustomizedBuiltInElements allow custom elements derived from built-ins if they pass CUSTOM_ELEMENT_HANDLING.tagNameCheck. Default: `false`.\\n */\\n\\n var CUSTOM_ELEMENT_HANDLING = Object.seal(Object.create(null, {\\n tagNameCheck: {\\n writable: true,\\n configurable: false,\\n enumerable: true,\\n value: null\\n },\\n attributeNameCheck: {\\n writable: true,\\n configurable: false,\\n enumerable: true,\\n value: null\\n },\\n allowCustomizedBuiltInElements: {\\n writable: true,\\n configurable: false,\\n enumerable: true,\\n value: false\\n }\\n }));\\n /* Explicitly forbidden tags (overrides ALLOWED_TAGS/ADD_TAGS) */\\n\\n var FORBID_TAGS = null;\\n /* Explicitly forbidden attributes (overrides ALLOWED_ATTR/ADD_ATTR) */\\n\\n var FORBID_ATTR = null;\\n /* Decide if ARIA attributes are okay */\\n\\n var ALLOW_ARIA_ATTR = true;\\n /* Decide if custom data attributes are okay */\\n\\n var ALLOW_DATA_ATTR = true;\\n /* Decide if unknown protocols are okay */\\n\\n var ALLOW_UNKNOWN_PROTOCOLS = false;\\n /* Decide if self-closing tags in attributes are allowed.\\n * Usually removed due to a mXSS issue in jQuery 3.0 */\\n\\n var ALLOW_SELF_CLOSE_IN_ATTR = true;\\n /* Output should be safe for common template engines.\\n * This means, DOMPurify removes data attributes, mustaches and ERB\\n */\\n\\n var SAFE_FOR_TEMPLATES = false;\\n /* Output should be safe even for XML used within HTML and alike.\\n * This means, DOMPurify removes comments when containing risky content.\\n */\\n\\n var SAFE_FOR_XML = true;\\n /* Decide if document with ... should be returned */\\n\\n var WHOLE_DOCUMENT = false;\\n /* Track whether config is already set on this instance of DOMPurify. */\\n\\n var SET_CONFIG = false;\\n /* Decide if all elements (e.g. style, script) must be children of\\n * document.body. By default, browsers might move them to document.head */\\n\\n var FORCE_BODY = false;\\n /* Decide if a DOM `HTMLBodyElement` should be returned, instead of a html\\n * string (or a TrustedHTML object if Trusted Types are supported).\\n * If `WHOLE_DOCUMENT` is enabled a `HTMLHtmlElement` will be returned instead\\n */\\n\\n var RETURN_DOM = false;\\n /* Decide if a DOM `DocumentFragment` should be returned, instead of a html\\n * string (or a TrustedHTML object if Trusted Types are supported) */\\n\\n var RETURN_DOM_FRAGMENT = false;\\n /* Try to return a Trusted Type object instead of a string, return a string in\\n * case Trusted Types are not supported */\\n\\n var RETURN_TRUSTED_TYPE = false;\\n /* Output should be free from DOM clobbering attacks?\\n * This sanitizes markups named with colliding, clobberable built-in DOM APIs.\\n */\\n\\n var SANITIZE_DOM = true;\\n /* Achieve full DOM Clobbering protection by isolating the namespace of named\\n * properties and JS variables, mitigating attacks that abuse the HTML/DOM spec rules.\\n *\\n * HTML/DOM spec rules that enable DOM Clobbering:\\n * - Named Access on Window (§7.3.3)\\n * - DOM Tree Accessors (§3.1.5)\\n * - Form Element Parent-Child Relations (§4.10.3)\\n * - Iframe srcdoc / Nested WindowProxies (§4.8.5)\\n * - HTMLCollection (§4.2.10.2)\\n *\\n * Namespace isolation is implemented by prefixing `id` and `name` attributes\\n * with a constant string, i.e., `user-content-`\\n */\\n\\n var SANITIZE_NAMED_PROPS = false;\\n var SANITIZE_NAMED_PROPS_PREFIX = 'user-content-';\\n /* Keep element content when removing element? */\\n\\n var KEEP_CONTENT = true;\\n /* If a `Node` is passed to sanitize(), then performs sanitization in-place instead\\n * of importing it into a new Document and returning a sanitized copy */\\n\\n var IN_PLACE = false;\\n /* Allow usage of profiles like html, svg and mathMl */\\n\\n var USE_PROFILES = {};\\n /* Tags to ignore content of when KEEP_CONTENT is true */\\n\\n var FORBID_CONTENTS = null;\\n var DEFAULT_FORBID_CONTENTS = addToSet({}, ['annotation-xml', 'audio', 'colgroup', 'desc', 'foreignobject', 'head', 'iframe', 'math', 'mi', 'mn', 'mo', 'ms', 'mtext', 'noembed', 'noframes', 'noscript', 'plaintext', 'script', 'style', 'svg', 'template', 'thead', 'title', 'video', 'xmp']);\\n /* Tags that are safe for data: URIs */\\n\\n var DATA_URI_TAGS = null;\\n var DEFAULT_DATA_URI_TAGS = addToSet({}, ['audio', 'video', 'img', 'source', 'image', 'track']);\\n /* Attributes safe for values like \\\"javascript:\\\" */\\n\\n var URI_SAFE_ATTRIBUTES = null;\\n var DEFAULT_URI_SAFE_ATTRIBUTES = addToSet({}, ['alt', 'class', 'for', 'id', 'label', 'name', 'pattern', 'placeholder', 'role', 'summary', 'title', 'value', 'style', 'xmlns']);\\n var MATHML_NAMESPACE = 'http://www.w3.org/1998/Math/MathML';\\n var SVG_NAMESPACE = 'http://www.w3.org/2000/svg';\\n var HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml';\\n /* Document namespace */\\n\\n var NAMESPACE = HTML_NAMESPACE;\\n var IS_EMPTY_INPUT = false;\\n /* Allowed XHTML+XML namespaces */\\n\\n var ALLOWED_NAMESPACES = null;\\n var DEFAULT_ALLOWED_NAMESPACES = addToSet({}, [MATHML_NAMESPACE, SVG_NAMESPACE, HTML_NAMESPACE], stringToString);\\n /* Parsing of strict XHTML documents */\\n\\n var PARSER_MEDIA_TYPE;\\n var SUPPORTED_PARSER_MEDIA_TYPES = ['application/xhtml+xml', 'text/html'];\\n var DEFAULT_PARSER_MEDIA_TYPE = 'text/html';\\n var transformCaseFunc;\\n /* Keep a reference to config to pass to hooks */\\n\\n var CONFIG = null;\\n /* Specify the maximum element nesting depth to prevent mXSS */\\n\\n var MAX_NESTING_DEPTH = 255;\\n /* Ideally, do not touch anything below this line */\\n\\n /* ______________________________________________ */\\n\\n var formElement = document.createElement('form');\\n\\n var isRegexOrFunction = function isRegexOrFunction(testValue) {\\n return testValue instanceof RegExp || testValue instanceof Function;\\n };\\n /**\\n * _parseConfig\\n *\\n * @param {Object} cfg optional config literal\\n */\\n // eslint-disable-next-line complexity\\n\\n\\n var _parseConfig = function _parseConfig(cfg) {\\n if (CONFIG && CONFIG === cfg) {\\n return;\\n }\\n /* Shield configuration object from tampering */\\n\\n\\n if (!cfg || _typeof(cfg) !== 'object') {\\n cfg = {};\\n }\\n /* Shield configuration object from prototype pollution */\\n\\n\\n cfg = clone(cfg);\\n PARSER_MEDIA_TYPE = // eslint-disable-next-line unicorn/prefer-includes\\n SUPPORTED_PARSER_MEDIA_TYPES.indexOf(cfg.PARSER_MEDIA_TYPE) === -1 ? PARSER_MEDIA_TYPE = DEFAULT_PARSER_MEDIA_TYPE : PARSER_MEDIA_TYPE = cfg.PARSER_MEDIA_TYPE; // HTML tags and attributes are not case-sensitive, converting to lowercase. Keeping XHTML as is.\\n\\n transformCaseFunc = PARSER_MEDIA_TYPE === 'application/xhtml+xml' ? stringToString : stringToLowerCase;\\n /* Set configuration parameters */\\n\\n ALLOWED_TAGS = 'ALLOWED_TAGS' in cfg ? addToSet({}, cfg.ALLOWED_TAGS, transformCaseFunc) : DEFAULT_ALLOWED_TAGS;\\n ALLOWED_ATTR = 'ALLOWED_ATTR' in cfg ? addToSet({}, cfg.ALLOWED_ATTR, transformCaseFunc) : DEFAULT_ALLOWED_ATTR;\\n ALLOWED_NAMESPACES = 'ALLOWED_NAMESPACES' in cfg ? addToSet({}, cfg.ALLOWED_NAMESPACES, stringToString) : DEFAULT_ALLOWED_NAMESPACES;\\n URI_SAFE_ATTRIBUTES = 'ADD_URI_SAFE_ATTR' in cfg ? addToSet(clone(DEFAULT_URI_SAFE_ATTRIBUTES), // eslint-disable-line indent\\n cfg.ADD_URI_SAFE_ATTR, // eslint-disable-line indent\\n transformCaseFunc // eslint-disable-line indent\\n ) // eslint-disable-line indent\\n : DEFAULT_URI_SAFE_ATTRIBUTES;\\n DATA_URI_TAGS = 'ADD_DATA_URI_TAGS' in cfg ? addToSet(clone(DEFAULT_DATA_URI_TAGS), // eslint-disable-line indent\\n cfg.ADD_DATA_URI_TAGS, // eslint-disable-line indent\\n transformCaseFunc // eslint-disable-line indent\\n ) // eslint-disable-line indent\\n : DEFAULT_DATA_URI_TAGS;\\n FORBID_CONTENTS = 'FORBID_CONTENTS' in cfg ? addToSet({}, cfg.FORBID_CONTENTS, transformCaseFunc) : DEFAULT_FORBID_CONTENTS;\\n FORBID_TAGS = 'FORBID_TAGS' in cfg ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) : {};\\n FORBID_ATTR = 'FORBID_ATTR' in cfg ? addToSet({}, cfg.FORBID_ATTR, transformCaseFunc) : {};\\n USE_PROFILES = 'USE_PROFILES' in cfg ? cfg.USE_PROFILES : false;\\n ALLOW_ARIA_ATTR = cfg.ALLOW_ARIA_ATTR !== false; // Default true\\n\\n ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR !== false; // Default true\\n\\n ALLOW_UNKNOWN_PROTOCOLS = cfg.ALLOW_UNKNOWN_PROTOCOLS || false; // Default false\\n\\n ALLOW_SELF_CLOSE_IN_ATTR = cfg.ALLOW_SELF_CLOSE_IN_ATTR !== false; // Default true\\n\\n SAFE_FOR_TEMPLATES = cfg.SAFE_FOR_TEMPLATES || false; // Default false\\n\\n SAFE_FOR_XML = cfg.SAFE_FOR_XML !== false; // Default true\\n\\n WHOLE_DOCUMENT = cfg.WHOLE_DOCUMENT || false; // Default false\\n\\n RETURN_DOM = cfg.RETURN_DOM || false; // Default false\\n\\n RETURN_DOM_FRAGMENT = cfg.RETURN_DOM_FRAGMENT || false; // Default false\\n\\n RETURN_TRUSTED_TYPE = cfg.RETURN_TRUSTED_TYPE || false; // Default false\\n\\n FORCE_BODY = cfg.FORCE_BODY || false; // Default false\\n\\n SANITIZE_DOM = cfg.SANITIZE_DOM !== false; // Default true\\n\\n SANITIZE_NAMED_PROPS = cfg.SANITIZE_NAMED_PROPS || false; // Default false\\n\\n KEEP_CONTENT = cfg.KEEP_CONTENT !== false; // Default true\\n\\n IN_PLACE = cfg.IN_PLACE || false; // Default false\\n\\n IS_ALLOWED_URI$1 = cfg.ALLOWED_URI_REGEXP || IS_ALLOWED_URI$1;\\n NAMESPACE = cfg.NAMESPACE || HTML_NAMESPACE;\\n CUSTOM_ELEMENT_HANDLING = cfg.CUSTOM_ELEMENT_HANDLING || {};\\n\\n if (cfg.CUSTOM_ELEMENT_HANDLING && isRegexOrFunction(cfg.CUSTOM_ELEMENT_HANDLING.tagNameCheck)) {\\n CUSTOM_ELEMENT_HANDLING.tagNameCheck = cfg.CUSTOM_ELEMENT_HANDLING.tagNameCheck;\\n }\\n\\n if (cfg.CUSTOM_ELEMENT_HANDLING && isRegexOrFunction(cfg.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)) {\\n CUSTOM_ELEMENT_HANDLING.attributeNameCheck = cfg.CUSTOM_ELEMENT_HANDLING.attributeNameCheck;\\n }\\n\\n if (cfg.CUSTOM_ELEMENT_HANDLING && typeof cfg.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements === 'boolean') {\\n CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements = cfg.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements;\\n }\\n\\n if (SAFE_FOR_TEMPLATES) {\\n ALLOW_DATA_ATTR = false;\\n }\\n\\n if (RETURN_DOM_FRAGMENT) {\\n RETURN_DOM = true;\\n }\\n /* Parse profile info */\\n\\n\\n if (USE_PROFILES) {\\n ALLOWED_TAGS = addToSet({}, _toConsumableArray(text));\\n ALLOWED_ATTR = [];\\n\\n if (USE_PROFILES.html === true) {\\n addToSet(ALLOWED_TAGS, html$1);\\n addToSet(ALLOWED_ATTR, html);\\n }\\n\\n if (USE_PROFILES.svg === true) {\\n addToSet(ALLOWED_TAGS, svg$1);\\n addToSet(ALLOWED_ATTR, svg);\\n addToSet(ALLOWED_ATTR, xml);\\n }\\n\\n if (USE_PROFILES.svgFilters === true) {\\n addToSet(ALLOWED_TAGS, svgFilters);\\n addToSet(ALLOWED_ATTR, svg);\\n addToSet(ALLOWED_ATTR, xml);\\n }\\n\\n if (USE_PROFILES.mathMl === true) {\\n addToSet(ALLOWED_TAGS, mathMl$1);\\n addToSet(ALLOWED_ATTR, mathMl);\\n addToSet(ALLOWED_ATTR, xml);\\n }\\n }\\n /* Merge configuration parameters */\\n\\n\\n if (cfg.ADD_TAGS) {\\n if (ALLOWED_TAGS === DEFAULT_ALLOWED_TAGS) {\\n ALLOWED_TAGS = clone(ALLOWED_TAGS);\\n }\\n\\n addToSet(ALLOWED_TAGS, cfg.ADD_TAGS, transformCaseFunc);\\n }\\n\\n if (cfg.ADD_ATTR) {\\n if (ALLOWED_ATTR === DEFAULT_ALLOWED_ATTR) {\\n ALLOWED_ATTR = clone(ALLOWED_ATTR);\\n }\\n\\n addToSet(ALLOWED_ATTR, cfg.ADD_ATTR, transformCaseFunc);\\n }\\n\\n if (cfg.ADD_URI_SAFE_ATTR) {\\n addToSet(URI_SAFE_ATTRIBUTES, cfg.ADD_URI_SAFE_ATTR, transformCaseFunc);\\n }\\n\\n if (cfg.FORBID_CONTENTS) {\\n if (FORBID_CONTENTS === DEFAULT_FORBID_CONTENTS) {\\n FORBID_CONTENTS = clone(FORBID_CONTENTS);\\n }\\n\\n addToSet(FORBID_CONTENTS, cfg.FORBID_CONTENTS, transformCaseFunc);\\n }\\n /* Add #text in case KEEP_CONTENT is set to true */\\n\\n\\n if (KEEP_CONTENT) {\\n ALLOWED_TAGS['#text'] = true;\\n }\\n /* Add html, head and body to ALLOWED_TAGS in case WHOLE_DOCUMENT is true */\\n\\n\\n if (WHOLE_DOCUMENT) {\\n addToSet(ALLOWED_TAGS, ['html', 'head', 'body']);\\n }\\n /* Add tbody to ALLOWED_TAGS in case tables are permitted, see #286, #365 */\\n\\n\\n if (ALLOWED_TAGS.table) {\\n addToSet(ALLOWED_TAGS, ['tbody']);\\n delete FORBID_TAGS.tbody;\\n } // Prevent further manipulation of configuration.\\n // Not available in IE8, Safari 5, etc.\\n\\n\\n if (freeze) {\\n freeze(cfg);\\n }\\n\\n CONFIG = cfg;\\n };\\n\\n var MATHML_TEXT_INTEGRATION_POINTS = addToSet({}, ['mi', 'mo', 'mn', 'ms', 'mtext']);\\n var HTML_INTEGRATION_POINTS = addToSet({}, ['foreignobject', 'annotation-xml']); // Certain elements are allowed in both SVG and HTML\\n // namespace. We need to specify them explicitly\\n // so that they don't get erroneously deleted from\\n // HTML namespace.\\n\\n var COMMON_SVG_AND_HTML_ELEMENTS = addToSet({}, ['title', 'style', 'font', 'a', 'script']);\\n /* Keep track of all possible SVG and MathML tags\\n * so that we can perform the namespace checks\\n * correctly. */\\n\\n var ALL_SVG_TAGS = addToSet({}, svg$1);\\n addToSet(ALL_SVG_TAGS, svgFilters);\\n addToSet(ALL_SVG_TAGS, svgDisallowed);\\n var ALL_MATHML_TAGS = addToSet({}, mathMl$1);\\n addToSet(ALL_MATHML_TAGS, mathMlDisallowed);\\n /**\\n *\\n *\\n * @param {Element} element a DOM element whose namespace is being checked\\n * @returns {boolean} Return false if the element has a\\n * namespace that a spec-compliant parser would never\\n * return. Return true otherwise.\\n */\\n\\n var _checkValidNamespace = function _checkValidNamespace(element) {\\n var parent = getParentNode(element); // In JSDOM, if we're inside shadow DOM, then parentNode\\n // can be null. We just simulate parent in this case.\\n\\n if (!parent || !parent.tagName) {\\n parent = {\\n namespaceURI: NAMESPACE,\\n tagName: 'template'\\n };\\n }\\n\\n var tagName = stringToLowerCase(element.tagName);\\n var parentTagName = stringToLowerCase(parent.tagName);\\n\\n if (!ALLOWED_NAMESPACES[element.namespaceURI]) {\\n return false;\\n }\\n\\n if (element.namespaceURI === SVG_NAMESPACE) {\\n // The only way to switch from HTML namespace to SVG\\n // is via . If it happens via any other tag, then\\n // it should be killed.\\n if (parent.namespaceURI === HTML_NAMESPACE) {\\n return tagName === 'svg';\\n } // The only way to switch from MathML to SVG is via`\\n // svg if parent is either or MathML\\n // text integration points.\\n\\n\\n if (parent.namespaceURI === MATHML_NAMESPACE) {\\n return tagName === 'svg' && (parentTagName === 'annotation-xml' || MATHML_TEXT_INTEGRATION_POINTS[parentTagName]);\\n } // We only allow elements that are defined in SVG\\n // spec. All others are disallowed in SVG namespace.\\n\\n\\n return Boolean(ALL_SVG_TAGS[tagName]);\\n }\\n\\n if (element.namespaceURI === MATHML_NAMESPACE) {\\n // The only way to switch from HTML namespace to MathML\\n // is via . If it happens via any other tag, then\\n // it should be killed.\\n if (parent.namespaceURI === HTML_NAMESPACE) {\\n return tagName === 'math';\\n } // The only way to switch from SVG to MathML is via\\n // and HTML integration points\\n\\n\\n if (parent.namespaceURI === SVG_NAMESPACE) {\\n return tagName === 'math' && HTML_INTEGRATION_POINTS[parentTagName];\\n } // We only allow elements that are defined in MathML\\n // spec. All others are disallowed in MathML namespace.\\n\\n\\n return Boolean(ALL_MATHML_TAGS[tagName]);\\n }\\n\\n if (element.namespaceURI === HTML_NAMESPACE) {\\n // The only way to switch from SVG to HTML is via\\n // HTML integration points, and from MathML to HTML\\n // is via MathML text integration points\\n if (parent.namespaceURI === SVG_NAMESPACE && !HTML_INTEGRATION_POINTS[parentTagName]) {\\n return false;\\n }\\n\\n if (parent.namespaceURI === MATHML_NAMESPACE && !MATHML_TEXT_INTEGRATION_POINTS[parentTagName]) {\\n return false;\\n } // We disallow tags that are specific for MathML\\n // or SVG and should never appear in HTML namespace\\n\\n\\n return !ALL_MATHML_TAGS[tagName] && (COMMON_SVG_AND_HTML_ELEMENTS[tagName] || !ALL_SVG_TAGS[tagName]);\\n } // For XHTML and XML documents that support custom namespaces\\n\\n\\n if (PARSER_MEDIA_TYPE === 'application/xhtml+xml' && ALLOWED_NAMESPACES[element.namespaceURI]) {\\n return true;\\n } // The code should never reach this place (this means\\n // that the element somehow got namespace that is not\\n // HTML, SVG, MathML or allowed via ALLOWED_NAMESPACES).\\n // Return false just in case.\\n\\n\\n return false;\\n };\\n /**\\n * _forceRemove\\n *\\n * @param {Node} node a DOM node\\n */\\n\\n\\n var _forceRemove = function _forceRemove(node) {\\n arrayPush(DOMPurify.removed, {\\n element: node\\n });\\n\\n try {\\n // eslint-disable-next-line unicorn/prefer-dom-node-remove\\n node.parentNode.removeChild(node);\\n } catch (_) {\\n try {\\n node.outerHTML = emptyHTML;\\n } catch (_) {\\n node.remove();\\n }\\n }\\n };\\n /**\\n * _removeAttribute\\n *\\n * @param {String} name an Attribute name\\n * @param {Node} node a DOM node\\n */\\n\\n\\n var _removeAttribute = function _removeAttribute(name, node) {\\n try {\\n arrayPush(DOMPurify.removed, {\\n attribute: node.getAttributeNode(name),\\n from: node\\n });\\n } catch (_) {\\n arrayPush(DOMPurify.removed, {\\n attribute: null,\\n from: node\\n });\\n }\\n\\n node.removeAttribute(name); // We void attribute values for unremovable \\\"is\\\"\\\" attributes\\n\\n if (name === 'is' && !ALLOWED_ATTR[name]) {\\n if (RETURN_DOM || RETURN_DOM_FRAGMENT) {\\n try {\\n _forceRemove(node);\\n } catch (_) {}\\n } else {\\n try {\\n node.setAttribute(name, '');\\n } catch (_) {}\\n }\\n }\\n };\\n /**\\n * _initDocument\\n *\\n * @param {String} dirty a string of dirty markup\\n * @return {Document} a DOM, filled with the dirty markup\\n */\\n\\n\\n var _initDocument = function _initDocument(dirty) {\\n /* Create a HTML document */\\n var doc;\\n var leadingWhitespace;\\n\\n if (FORCE_BODY) {\\n dirty = '' + dirty;\\n } else {\\n /* If FORCE_BODY isn't used, leading whitespace needs to be preserved manually */\\n var matches = stringMatch(dirty, /^[\\\\r\\\\n\\\\t ]+/);\\n leadingWhitespace = matches && matches[0];\\n }\\n\\n if (PARSER_MEDIA_TYPE === 'application/xhtml+xml' && NAMESPACE === HTML_NAMESPACE) {\\n // Root of XHTML doc must contain xmlns declaration (see https://www.w3.org/TR/xhtml1/normative.html#strict)\\n dirty = '' + dirty + '';\\n }\\n\\n var dirtyPayload = trustedTypesPolicy ? trustedTypesPolicy.createHTML(dirty) : dirty;\\n /*\\n * Use the DOMParser API by default, fallback later if needs be\\n * DOMParser not work for svg when has multiple root element.\\n */\\n\\n if (NAMESPACE === HTML_NAMESPACE) {\\n try {\\n doc = new DOMParser().parseFromString(dirtyPayload, PARSER_MEDIA_TYPE);\\n } catch (_) {}\\n }\\n /* Use createHTMLDocument in case DOMParser is not available */\\n\\n\\n if (!doc || !doc.documentElement) {\\n doc = implementation.createDocument(NAMESPACE, 'template', null);\\n\\n try {\\n doc.documentElement.innerHTML = IS_EMPTY_INPUT ? emptyHTML : dirtyPayload;\\n } catch (_) {// Syntax error if dirtyPayload is invalid xml\\n }\\n }\\n\\n var body = doc.body || doc.documentElement;\\n\\n if (dirty && leadingWhitespace) {\\n body.insertBefore(document.createTextNode(leadingWhitespace), body.childNodes[0] || null);\\n }\\n /* Work on whole document or just its body */\\n\\n\\n if (NAMESPACE === HTML_NAMESPACE) {\\n return getElementsByTagName.call(doc, WHOLE_DOCUMENT ? 'html' : 'body')[0];\\n }\\n\\n return WHOLE_DOCUMENT ? doc.documentElement : body;\\n };\\n /**\\n * _createIterator\\n *\\n * @param {Document} root document/fragment to create iterator for\\n * @return {Iterator} iterator instance\\n */\\n\\n\\n var _createIterator = function _createIterator(root) {\\n return createNodeIterator.call(root.ownerDocument || root, root, // eslint-disable-next-line no-bitwise\\n NodeFilter.SHOW_ELEMENT | NodeFilter.SHOW_COMMENT | NodeFilter.SHOW_TEXT | NodeFilter.SHOW_PROCESSING_INSTRUCTION | NodeFilter.SHOW_CDATA_SECTION, null, false);\\n };\\n /**\\n * _isClobbered\\n *\\n * @param {Node} elm element to check for clobbering attacks\\n * @return {Boolean} true if clobbered, false if safe\\n */\\n\\n\\n var _isClobbered = function _isClobbered(elm) {\\n return elm instanceof HTMLFormElement && (typeof elm.__depth !== 'undefined' && typeof elm.__depth !== 'number' || typeof elm.__removalCount !== 'undefined' && typeof elm.__removalCount !== 'number' || typeof elm.nodeName !== 'string' || typeof elm.textContent !== 'string' || typeof elm.removeChild !== 'function' || !(elm.attributes instanceof NamedNodeMap) || typeof elm.removeAttribute !== 'function' || typeof elm.setAttribute !== 'function' || typeof elm.namespaceURI !== 'string' || typeof elm.insertBefore !== 'function' || typeof elm.hasChildNodes !== 'function');\\n };\\n /**\\n * _isNode\\n *\\n * @param {Node} obj object to check whether it's a DOM node\\n * @return {Boolean} true is object is a DOM node\\n */\\n\\n\\n var _isNode = function _isNode(object) {\\n return _typeof(Node) === 'object' ? object instanceof Node : object && _typeof(object) === 'object' && typeof object.nodeType === 'number' && typeof object.nodeName === 'string';\\n };\\n /**\\n * _executeHook\\n * Execute user configurable hooks\\n *\\n * @param {String} entryPoint Name of the hook's entry point\\n * @param {Node} currentNode node to work on with the hook\\n * @param {Object} data additional hook parameters\\n */\\n\\n\\n var _executeHook = function _executeHook(entryPoint, currentNode, data) {\\n if (!hooks[entryPoint]) {\\n return;\\n }\\n\\n arrayForEach(hooks[entryPoint], function (hook) {\\n hook.call(DOMPurify, currentNode, data, CONFIG);\\n });\\n };\\n /**\\n * _sanitizeElements\\n *\\n * @protect nodeName\\n * @protect textContent\\n * @protect removeChild\\n *\\n * @param {Node} currentNode to check for permission to exist\\n * @return {Boolean} true if node was killed, false if left alive\\n */\\n\\n\\n var _sanitizeElements = function _sanitizeElements(currentNode) {\\n var content;\\n /* Execute a hook if present */\\n\\n _executeHook('beforeSanitizeElements', currentNode, null);\\n /* Check if element is clobbered or can clobber */\\n\\n\\n if (_isClobbered(currentNode)) {\\n _forceRemove(currentNode);\\n\\n return true;\\n }\\n /* Check if tagname contains Unicode */\\n\\n\\n if (regExpTest(/[\\\\u0080-\\\\uFFFF]/, currentNode.nodeName)) {\\n _forceRemove(currentNode);\\n\\n return true;\\n }\\n /* Now let's check the element's type and name */\\n\\n\\n var tagName = transformCaseFunc(currentNode.nodeName);\\n /* Execute a hook if present */\\n\\n _executeHook('uponSanitizeElement', currentNode, {\\n tagName: tagName,\\n allowedTags: ALLOWED_TAGS\\n });\\n /* Detect mXSS attempts abusing namespace confusion */\\n\\n\\n if (currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && (!_isNode(currentNode.content) || !_isNode(currentNode.content.firstElementChild)) && regExpTest(/<[/\\\\w]/g, currentNode.innerHTML) && regExpTest(/<[/\\\\w]/g, currentNode.textContent)) {\\n _forceRemove(currentNode);\\n\\n return true;\\n }\\n /* Mitigate a problem with templates inside select */\\n\\n\\n if (tagName === 'select' && regExpTest(/