diff --git a/gulpfile.js b/gulpfile.js index 961507a..4286868 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -9,6 +9,8 @@ const uglify = require('gulp-uglify-es').default; gulp.task('js', function () { return gulp.src([ 'node_modules/moment/moment.js', + 'src/js/WxData.js', + 'src/js/main.js', 'src/js/**/*.js' ]) .pipe(concat('weatherscan.js')) diff --git a/src/js/WxData.js b/src/js/WxData.js new file mode 100644 index 0000000..049999e --- /dev/null +++ b/src/js/WxData.js @@ -0,0 +1,114 @@ +let WxData = { + + // Taken from https://digital.wsi.com/products/v3.1/developer_widgets.php?auth=public&country=US&language=en + API_BASE: "https://api.weather.com/v1", + API_KEY: "089ed4e892fb0dfdf34eb81e6f2521aa", + + /** + * Data is saved in the form of data[location][record] + */ + _data: {}, + + /** + * + * @param location + * @returns {Promise} + */ + observations: function (location) { + + if (this._data[location] && this._data[location]['observations']) { + return new Promise(resolve => resolve(this._data[location]['observations'])); + } + + return this._loadCurrentConditions(location); + + }, + + _apiRequest: function (endpoint, callback) { + let self = this; + return new Promise(function (resolve, reject) { + let xhr = new XMLHttpRequest(); + xhr.onload = function () { + if (this.status >= 200 && this.status < 300) { + resolve(xhr.response); + } else { + reject({ + status: this.status, + statusText: xhr.statusText + }); + } + }; + xhr.onerror = function () { + reject({ + status: this.status, + statusText: xhr.statusText + }); + }; + xhr.open('GET', self.API_BASE + endpoint + '?apiKey=' + self.API_KEY + '&language=en-US&units=e'); + xhr.send(); + }); + }, + + /** + * + * @returns {Promise} + * @private + */ + _loadCurrentConditions: function (location) { + let self = this; + return this._apiRequest('/location/' + location + '/observations.json').then(result => { + try { + let response = JSON.parse(result); + return self.saveRecord(location, 'observations', response.observation); + } catch (e) { + console.error('Error parsing current conditions'); + return null; + } + }); + + }, + + saveRecord: function (location, type, data) { + + if (typeof this._data !== 'object') { + this._data = {}; + } + + if (!this._data[location]) { + this._data[location] = {}; + } + + this._data[location][type] = data; + console.log('Saved ' + type + ' for ' + location); + this.saveCache(); + + return data; + }, + + init: function () { + this.loadCache(); + }, + + /** + * Load data from localStorage + */ + loadCache: function () { + try { + if (localStorage['wx_data']) { + this._data = JSON.parse(localStorage['wx_data']); + console.log('Data retrieved from cache'); + } + } catch (e) { + console.error('Error parsing data from localStorage'); + } + }, + + /** + * Save data to localStorage + */ + saveCache: function () { + localStorage['wx_data'] = JSON.stringify(this._data); + console.log('Data saved in cache'); + }, + +}; \ No newline at end of file diff --git a/src/js/main.js b/src/js/main.js index e69de29..5aed73e 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -0,0 +1,8 @@ +WxData.init(); + +WxData.observations('USNY0483:1:US').then(data => { + document.getElementById('city').innerText = data.obs_name; + document.getElementById('current-temp').innerText = data.temp; + document.getElementById('current-info').innerText = data.wx_phrase; + document.getElementById('conditions-icon').src = '/images/watt-icons/icon' + data.wx_icon + '.png'; +}); \ No newline at end of file diff --git a/src/scss/_clock.scss b/src/scss/_clock.scss deleted file mode 100644 index b57bf42..0000000 --- a/src/scss/_clock.scss +++ /dev/null @@ -1,10 +0,0 @@ -#clock { - font-family: 'Interstate Condensed'; - font-size: 32px; - text-align: right; - position: absolute; - width: 455px; - top: 107px; - line-height: 38px; - letter-spacing: 1px; -} \ No newline at end of file diff --git a/src/scss/_misc.scss b/src/scss/_misc.scss index 08509ee..b66e74e 100644 --- a/src/scss/_misc.scss +++ b/src/scss/_misc.scss @@ -256,88 +256,6 @@ body { filter: drop-shadow(0px 2px 2px #000000); } -#date-time, -#city, -#current-conditions *, -#date-time * { - font-family: 'Interstate'; - font-weight: bold; - text-shadow: none; - text-align: right; - color: #1B1B1B; -} - -#date-time { - position: absolute; - top: 98px; - width: 457px; -} - -#date-time * { - font-family: 'Interstate'; - font-size: 25px; - line-height: 33px; -} - -#time { - text-transform: lowercase; -} - -#city { - font-size: 37px; - padding-top: 26px; - position: absolute; - text-align: left; - margin-left: 140px; - width: 311px; - height: 91px; - top: 284px; - left: 0; - line-height: 100%; - white-space: nowrap; - overflow: hidden; -} - -#current-conditions { - font-family: 'Interstate'; - position: absolute; - top: 376px; - left: 0; - width: 452px; - text-align: left; -} - -#conditions-icon { - position: absolute; - left: 300px; - background-size: 100% 100%; - width: 144px; - height: 145px; - background-repeat: no-repeat; - top: 394px; - z-index: 0; -} - -#now { - font-size: 49px; - margin: 1.6% 0 0 31%; - text-align: left; -} - -#current-temp { - font-size: 70px; - margin: 4.4% 0 0 0; - text-align: center; - width: 100%; -} - -#current-info { - font-size: 27px; - margin: 4.2% 0 0 31%; - text-align: left; - width: 66%; -} - #minimap-title { font-family: 'Interstate'; font-weight: bold; @@ -564,22 +482,6 @@ body { width: 66% } -#logo-area { - position: absolute; - width: 31.528%; - height: 9.398%; - left: 0; - top: 83.4%; -} - -#logo-area img { - display: block; - position: absolute; - width: 65%; - top: 19%; - right: 5%; -} - #arrow-img { display: block; position: absolute; diff --git a/src/scss/_sidebar.scss b/src/scss/_sidebar.scss new file mode 100644 index 0000000..729337f --- /dev/null +++ b/src/scss/_sidebar.scss @@ -0,0 +1,90 @@ +#date-time, +#city, +#current-conditions * { + font-family: 'Interstate'; + font-weight: bold; + text-shadow: none; + text-align: right; + color: #1B1B1B; +} + +#city { + font-size: 37px; + padding-top: 26px; + position: absolute; + text-align: left; + margin-left: 140px; + width: 311px; + height: 91px; + top: 284px; + left: 0; + line-height: 100%; + white-space: nowrap; + overflow: hidden; +} + +#current-conditions { + font-family: 'Interstate'; + position: absolute; + top: 376px; + left: 0; + width: 452px; + text-align: left; +} + +#conditions-icon { + position: absolute; + left: 300px; + background-size: 100% 100%; + width: 144px; + height: 145px; + background-repeat: no-repeat; + top: 394px; + z-index: 0; +} + +#now { + font-size: 49px; + margin: 1.6% 0 0 31%; + text-align: left; +} + +#current-temp { + font-size: 70px; + margin: 4.4% 0 0 0; + text-align: center; + width: 100%; +} + +#current-info { + font-size: 27px; + margin: 4.2% 0 0 31%; + text-align: left; + width: 66%; +} + +#clock { + font-family: 'Interstate Condensed'; + font-size: 32px; + text-align: right; + position: absolute; + width: 455px; + top: 107px; + line-height: 38px; + letter-spacing: 1px; +} + +#logo-area { + position: absolute; + width: 450px; + height: 105px; + left: 0; + top: 900px; + display: flex; + align-items: center; + justify-content: center; +} + +#logo-area img { + width: 70%; +} \ No newline at end of file diff --git a/src/scss/weatherscan.scss b/src/scss/weatherscan.scss index fe6b69a..9086b0d 100644 --- a/src/scss/weatherscan.scss +++ b/src/scss/weatherscan.scss @@ -1,4 +1,4 @@ @import "fonts"; @import "slides"; -@import "misc"; -@import "clock"; \ No newline at end of file +@import "sidebar"; +@import "misc"; \ No newline at end of file diff --git a/webroot/css/weatherscan.css b/webroot/css/weatherscan.css index 20125cc..e03944c 100644 --- a/webroot/css/weatherscan.css +++ b/webroot/css/weatherscan.css @@ -1,2 +1,2 @@ -@font-face{font-family:Interstate;src:url(/fonts/Interstate-Bold.woff2) format("woff2"),url(/fonts/Interstate-Bold.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:'Interstate Mono';src:url(/fonts/InterstateMono.woff2) format("woff2"),url(/fonts/InterstateMono.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Interstate;src:url(/fonts/Interstate-Regular.woff2) format("woff2"),url(/fonts/Interstate-Regular.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:'Zemestro Std';src:url(/fonts/ZemestroStd.woff2) format("woff2"),url(/fonts/ZemestroStd.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:'Interstate Condensed';src:url(/fonts/Interstate-RegularCondensed.woff2) format("woff2"),url(/fonts/Interstate-RegularCondensed.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:'Interstate Condensed';src:url(/fonts/Interstate-BoldCondensed.woff2) format("woff2"),url(/fonts/Interstate-BoldCondensed.woff) format("woff");font-weight:700;font-style:normal}.city-info,.info-slide-content{display:flex;flex-direction:row;width:100%;top:10%;font-size:110%}.frost-pane{color:#fff;font-family:"Zemestro Std";font-size:32px;text-shadow:#000 2px 2px 4px;min-height:100%;background:rgba(18,75,238,.7);z-index:388686;flex:1}.city-info .frost-pane:first-of-type{width:55%;margin-right:.8%}.city-info .frost-pane.left *{position:absolute;padding-top:15px;line-height:220%}.frost-pane .labels{color:#d8c422;left:9%}.city-info .frost-pane .data{left:35%;text-align:right}.city-info .frost-pane.right{display:flex;flex-direction:column;align-items:center;padding-top:30px}.city-info .frost-pane .icon{background-repeat:no-repeat;background-size:contain;background-position:center center;width:70%;height:40%}.city-info .frost-pane .temp{font-size:76px;margin-top:20%}.forecast .frost-pane{padding:2% 2% 1% 9%}.frost-pane .title{color:#d8c422;font-size:40px}.frost-pane .content{font-size:50px}.info-slide-content.forecast .frost-pane{max-height:500px}.info-slide-content.forecast .content{height:400px;max-height:400px}a,body,div,h1,html,p{margin:0;padding:0;font-family:'Zemestro Std';font-weight:400;font-style:normal}html *{box-sizing:border-box;font-size:100%}body,html{height:100%;background-color:#000;font-size:100%;margin:0}body{display:flex;align-items:center;justify-content:center;overflow:hidden}#main{width:1440px;height:1080px;background:url(/images/template-4k.jpg);background-size:100%;background-repeat:no-repeat;flex-shrink:0}.leaflet-bottom,.leaflet-top{display:none}#info-slides-container{display:flex;flex-direction:column;position:absolute;right:0;top:92px;width:963px;height:572px;z-index:1;padding:6px 0 6px 6px;box-shadow:0 3px 10px 0 rgba(0,0,0,.35);background-color:#001668;background:linear-gradient(135deg,#001668 0,#000d28 100%)}#info-slides-header,.info-slide .info-subheader{position:relative;color:#fff;width:100%;padding:0 7px}#info-slides-header{flex:1;background-color:#2267b7;height:34px;max-height:34px;font-size:22px;overflow:hidden;white-space:nowrap}#info-slides-header .hscroller{position:relative;display:inline-block;transform-origin:left center;top:50%;transform:scale(1.1,1) translateY(-50%)}#info-slides-header .divider-arrow{font-size:22px;display:inline-block;transform:scale(.7,1);transform-origin:left center;font-weight:700;padding:0 7px}#info-slides-header span.city{letter-spacing:1px;text-transform:uppercase}#info-slides-header span.city,#info-slides-header span.divider-arrow{opacity:.5}#info-slides-header span.city.current{opacity:1}#info-slide-container{flex:1}#radar-container{display:flex;flex-direction:column;box-shadow:0 3px 10px 0 rgba(0,0,0,.35);background-color:#001668;background:linear-gradient(135deg,#001668 0,#000d28 100%)}#radar-1{flex:1;box-shadow:0 3px 10px 0 rgba(0,0,0,.35);background-color:#001668;background:linear-gradient(135deg,#001668 0,#000d28 100%)}.info-slide{width:100%;min-height:100%;overflow:hidden;display:flex;flex-flow:column}.info-slide .info-subheader{display:flex;flex-flow:row nowrap;justify-content:space-between;background-color:#0018cc;font-size:32px;height:55px;box-shadow:0 2px 5px 0 rgba(0,0,0,.75);z-index:4;text-shadow:2px 2px 4px #000}.info-slide .info-subheader span{position:absolute;top:50%;transform:translateY(-50%)}.info-slide-content br{position:relative!important}.radar-slide{z-index:5}.city-info-slide{position:relative;background:transparent url(/images/bluebuildings.jpg) no-repeat bottom;background-size:cover}.city-info-slide .info-subheader{padding-right:10%}.city-info-slide #subhead-city{font-size:28px;padding-top:3px;right:98px}.info-slide-content{height:100%;min-height:100%;width:100%;flex:1;z-index:0}.city-info-slide .curve{position:absolute;background-position:0 0;background-repeat:no-repeat;background-size:200% 200%}.city-info-slide .yellow{background-image:url(/images/yellow-curve.svg);-webkit-filter:drop-shadow(4px 0 4px rgba(0, 0, 0, .75));filter:drop-shadow(4px 0 4px rgba(0, 0, 0, .75))}.city-info-slide .yellow.left{top:5%;left:-10.6%;z-index:3;width:20%;height:100%}.city-info-slide .yellow.right{background-position:100% 0;top:-15%;right:-19%;width:50%;height:100%;z-index:5}.city-info-slide .blue{background-image:url(/images/blue-curve.svg);background-size:200% 100%;width:22%;height:120%;top:1%;left:-6%;opacity:.7;z-index:2}.city-info-slide .white{background-image:url(/images/white-curve.svg);background-size:200% 100%;background-position:100% 0;width:22%;height:120%;top:2.3%;right:-6.7%;opacity:.2;z-index:2}.radar-color-legend{font-size:18px;position:absolute;text-align:right;right:5%;top:1.2%}.radar-color-legend>img{width:45%;height:13px;box-shadow:0 2px 5px 0 rgba(0,0,0,.75)}.leaflet-overlay-pane canvas{-webkit-filter:drop-shadow(0 2px 2px #000);filter:drop-shadow(0 2px 2px #000)}#city,#current-conditions *,#date-time,#date-time *{font-family:Interstate;font-weight:700;text-shadow:none;text-align:right;color:#1b1b1b}#date-time{position:absolute;top:98px;width:457px}#date-time *{font-family:Interstate;font-size:25px;line-height:33px}#time{text-transform:lowercase}#city{font-size:37px;padding-top:26px;position:absolute;text-align:left;margin-left:140px;width:311px;height:91px;top:284px;left:0;line-height:100%;white-space:nowrap;overflow:hidden}#current-conditions{font-family:Interstate;position:absolute;top:376px;left:0;width:452px;text-align:left}#conditions-icon{position:absolute;left:300px;background-size:100% 100%;width:144px;height:145px;background-repeat:no-repeat;top:394px;z-index:0}#now{font-size:49px;margin:1.6% 0 0 31%;text-align:left}#current-temp{font-size:70px;margin:4.4% 0 0 0;text-align:center;width:100%}#current-info{font-size:27px;margin:4.2% 0 0 31%;text-align:left;width:66%}#minimap-title{font-family:Interstate;font-weight:700;position:absolute;width:31.4%;top:638px;text-align:right;color:#fff;font-size:25px;padding:7px 15px 0 0;text-shadow:2px 2px 4px #000}#minimap{position:absolute;width:31.35%;height:20.5%;left:0;top:677px;background:#333;z-index:1;box-shadow:0 8px 15px 0 rgba(0,0,0,.35)}#forecast-shadow{position:absolute;height:18.85%;width:66.87%;right:0;top:63%;overflow:hidden;background:#8cadd1;box-shadow:0 3px 10px 0 rgba(0,0,0,.35)}#forecast-header{width:100%;min-height:20.5%;font-size:28px;padding-left:1%;background:#eed76b}#forecast-header *{font-family:Interstate;font-weight:700;text-transform:uppercase;display:inline-block;line-height:150%}#forecast-city{padding-right:2%}#forecast-title{color:#001668}#forecast-text,#forecast-text *{font-family:Interstate;font-size:40px}#forecast-text{position:absolute;padding:.1% 1%;min-height:75%;max-height:75%;height:75%;width:100%;margin-top:.4%;overflow:hidden}#forecast-tiles{font-weight:700;position:absolute;width:100%;height:79.6%}.forecast-tile{position:relative;background:#5681be;background:linear-gradient(to right,#5783cc 0,#c4d9ff 100%)}.forecast-tile:last-child{flex-grow:100;border-right:none!important}.forecast-tile .width-sizer{width:100%;height:100%;position:relative}.forecast-tile .footer,.forecast-tile .header{font-size:24px;color:#fff;height:25%;padding:5px 11px;text-transform:uppercase}.forecast-tile.daily{width:18%}.forecast-tile.daily .header{background:linear-gradient(to right,#001668 0,#4564c4 100%);background-color:#001668}.forecast-tile.daily.weekend .header{color:#001668;background:linear-gradient(to right,#8caaea 0,#c4d9ff 100%);background-color:#8caaea}.forecast-tile.daily .icon{display:block;position:absolute;height:65%;bottom:0;left:0;margin-left:3%}.forecast-tile.daily:last-child .icon{margin-left:1%}.forecast-tile .high,.forecast-tile .low{font-family:Interstate;text-align:right;position:absolute;right:5%;font-weight:700;top:10%}.forecast-tile:last-child .high,.forecast-tile:last-child .low{padding-right:30%}.forecast-tile .high{top:30%;font-size:48px}.forecast-tile.daily .low{color:rgba(0,0,0,.5);top:63%;font-size:32px}.forecast-tile.hourly{width:22.3%;border-right:solid 4px #fff}.forecast-tile.hourly .icon{display:block;position:absolute;height:50%;top:12%;left:10%}.forecast-tile.hourly .hourly-high{position:absolute;right:5.5%;bottom:0;width:28%;height:0;padding-top:1%;display:flex;flex-flow:column;z-index:1}.forecast-tile.hourly .high{top:0;position:relative;padding-bottom:15%;opacity:0;text-align:center}.forecast-tile.hourly .temp-bar{width:100%;flex:1;position:relative;bottom:7%;background:linear-gradient(to right,#656565 0,#fcfcfc 50%,#656565 100%);background-color:#656565}.forecast-tile.hourly .footer{font-size:23px;text-transform:lowercase;padding-top:1.9%;position:absolute;width:100%;bottom:0;z-index:0;color:#fff;background:linear-gradient(to right,#4b411e 0,#ae9b57 100%);background-color:#4b411e}.forecast-tile.hourly:last-child .footer{padding-top:1%}.forecast-tile.hourly:last-child .width-sizer{width:66%}#logo-area{position:absolute;width:31.528%;height:9.398%;left:0;top:83.4%}#logo-area img{display:block;position:absolute;width:65%;top:19%;right:5%}#arrow-img{display:block;position:absolute;height:3.7%;left:31.35%;top:897px;z-index:2}#marquee1{position:absolute;color:#fff;left:32%;top:898px;width:68.507%;height:43px;margin-top:2px;font-size:30px;text-shadow:2px 2px 4px #000}#marquee>div{display:inline-block;white-space:nowrap;width:auto}#marquee1 span{padding-right:3vw}#marquee2{position:absolute;left:31.35%;top:87.2%;width:68.507%;height:5.602%;font-size:43px;font-weight:400}.marquee{overflow:hidden}#example-overlay{display:none;background-image:url(/images/examples/RadSat.png);background-size:100%;width:100%;height:100%;z-index:99}#clock{font-family:'Interstate Condensed';font-size:32px;text-align:right;position:absolute;width:455px;top:107px;line-height:38px;letter-spacing:1px} +@font-face{font-family:Interstate;src:url(/fonts/Interstate-Bold.woff2) format("woff2"),url(/fonts/Interstate-Bold.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:'Interstate Mono';src:url(/fonts/InterstateMono.woff2) format("woff2"),url(/fonts/InterstateMono.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Interstate;src:url(/fonts/Interstate-Regular.woff2) format("woff2"),url(/fonts/Interstate-Regular.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:'Zemestro Std';src:url(/fonts/ZemestroStd.woff2) format("woff2"),url(/fonts/ZemestroStd.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:'Interstate Condensed';src:url(/fonts/Interstate-RegularCondensed.woff2) format("woff2"),url(/fonts/Interstate-RegularCondensed.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:'Interstate Condensed';src:url(/fonts/Interstate-BoldCondensed.woff2) format("woff2"),url(/fonts/Interstate-BoldCondensed.woff) format("woff");font-weight:700;font-style:normal}.city-info,.info-slide-content{display:flex;flex-direction:row;width:100%;top:10%;font-size:110%}.frost-pane{color:#fff;font-family:"Zemestro Std";font-size:32px;text-shadow:#000 2px 2px 4px;min-height:100%;background:rgba(18,75,238,.7);z-index:388686;flex:1}.city-info .frost-pane:first-of-type{width:55%;margin-right:.8%}.city-info .frost-pane.left *{position:absolute;padding-top:15px;line-height:220%}.frost-pane .labels{color:#d8c422;left:9%}.city-info .frost-pane .data{left:35%;text-align:right}.city-info .frost-pane.right{display:flex;flex-direction:column;align-items:center;padding-top:30px}.city-info .frost-pane .icon{background-repeat:no-repeat;background-size:contain;background-position:center center;width:70%;height:40%}.city-info .frost-pane .temp{font-size:76px;margin-top:20%}.forecast .frost-pane{padding:2% 2% 1% 9%}.frost-pane .title{color:#d8c422;font-size:40px}.frost-pane .content{font-size:50px}.info-slide-content.forecast .frost-pane{max-height:500px}.info-slide-content.forecast .content{height:400px;max-height:400px}#city,#current-conditions *,#date-time{font-family:Interstate;font-weight:700;text-shadow:none;text-align:right;color:#1b1b1b}#city{font-size:37px;padding-top:26px;position:absolute;text-align:left;margin-left:140px;width:311px;height:91px;top:284px;left:0;line-height:100%;white-space:nowrap;overflow:hidden}#current-conditions{font-family:Interstate;position:absolute;top:376px;left:0;width:452px;text-align:left}#conditions-icon{position:absolute;left:300px;background-size:100% 100%;width:144px;height:145px;background-repeat:no-repeat;top:394px;z-index:0}#now{font-size:49px;margin:1.6% 0 0 31%;text-align:left}#current-temp{font-size:70px;margin:4.4% 0 0 0;text-align:center;width:100%}#current-info{font-size:27px;margin:4.2% 0 0 31%;text-align:left;width:66%}#clock{font-family:'Interstate Condensed';font-size:32px;text-align:right;position:absolute;width:455px;top:107px;line-height:38px;letter-spacing:1px}#logo-area{position:absolute;width:450px;height:105px;left:0;top:900px;display:flex;align-items:center;justify-content:center}#logo-area img{width:70%}a,body,div,h1,html,p{margin:0;padding:0;font-family:'Zemestro Std';font-weight:400;font-style:normal}html *{box-sizing:border-box;font-size:100%}body,html{height:100%;background-color:#000;font-size:100%;margin:0}body{display:flex;align-items:center;justify-content:center;overflow:hidden}#main{width:1440px;height:1080px;background:url(/images/template-4k.jpg);background-size:100%;background-repeat:no-repeat;flex-shrink:0}.leaflet-bottom,.leaflet-top{display:none}#info-slides-container{display:flex;flex-direction:column;position:absolute;right:0;top:92px;width:963px;height:572px;z-index:1;padding:6px 0 6px 6px;box-shadow:0 3px 10px 0 rgba(0,0,0,.35);background-color:#001668;background:linear-gradient(135deg,#001668 0,#000d28 100%)}#info-slides-header,.info-slide .info-subheader{position:relative;color:#fff;width:100%;padding:0 7px}#info-slides-header{flex:1;background-color:#2267b7;height:34px;max-height:34px;font-size:22px;overflow:hidden;white-space:nowrap}#info-slides-header .hscroller{position:relative;display:inline-block;transform-origin:left center;top:50%;transform:scale(1.1,1) translateY(-50%)}#info-slides-header .divider-arrow{font-size:22px;display:inline-block;transform:scale(.7,1);transform-origin:left center;font-weight:700;padding:0 7px}#info-slides-header span.city{letter-spacing:1px;text-transform:uppercase}#info-slides-header span.city,#info-slides-header span.divider-arrow{opacity:.5}#info-slides-header span.city.current{opacity:1}#info-slide-container{flex:1}#radar-container{display:flex;flex-direction:column;box-shadow:0 3px 10px 0 rgba(0,0,0,.35);background-color:#001668;background:linear-gradient(135deg,#001668 0,#000d28 100%)}#radar-1{flex:1;box-shadow:0 3px 10px 0 rgba(0,0,0,.35);background-color:#001668;background:linear-gradient(135deg,#001668 0,#000d28 100%)}.info-slide{width:100%;min-height:100%;overflow:hidden;display:flex;flex-flow:column}.info-slide .info-subheader{display:flex;flex-flow:row nowrap;justify-content:space-between;background-color:#0018cc;font-size:32px;height:55px;box-shadow:0 2px 5px 0 rgba(0,0,0,.75);z-index:4;text-shadow:2px 2px 4px #000}.info-slide .info-subheader span{position:absolute;top:50%;transform:translateY(-50%)}.info-slide-content br{position:relative!important}.radar-slide{z-index:5}.city-info-slide{position:relative;background:transparent url(/images/bluebuildings.jpg) no-repeat bottom;background-size:cover}.city-info-slide .info-subheader{padding-right:10%}.city-info-slide #subhead-city{font-size:28px;padding-top:3px;right:98px}.info-slide-content{height:100%;min-height:100%;width:100%;flex:1;z-index:0}.city-info-slide .curve{position:absolute;background-position:0 0;background-repeat:no-repeat;background-size:200% 200%}.city-info-slide .yellow{background-image:url(/images/yellow-curve.svg);-webkit-filter:drop-shadow(4px 0 4px rgba(0, 0, 0, .75));filter:drop-shadow(4px 0 4px rgba(0, 0, 0, .75))}.city-info-slide .yellow.left{top:5%;left:-10.6%;z-index:3;width:20%;height:100%}.city-info-slide .yellow.right{background-position:100% 0;top:-15%;right:-19%;width:50%;height:100%;z-index:5}.city-info-slide .blue{background-image:url(/images/blue-curve.svg);background-size:200% 100%;width:22%;height:120%;top:1%;left:-6%;opacity:.7;z-index:2}.city-info-slide .white{background-image:url(/images/white-curve.svg);background-size:200% 100%;background-position:100% 0;width:22%;height:120%;top:2.3%;right:-6.7%;opacity:.2;z-index:2}.radar-color-legend{font-size:18px;position:absolute;text-align:right;right:5%;top:1.2%}.radar-color-legend>img{width:45%;height:13px;box-shadow:0 2px 5px 0 rgba(0,0,0,.75)}.leaflet-overlay-pane canvas{-webkit-filter:drop-shadow(0 2px 2px #000);filter:drop-shadow(0 2px 2px #000)}#minimap-title{font-family:Interstate;font-weight:700;position:absolute;width:31.4%;top:638px;text-align:right;color:#fff;font-size:25px;padding:7px 15px 0 0;text-shadow:2px 2px 4px #000}#minimap{position:absolute;width:31.35%;height:20.5%;left:0;top:677px;background:#333;z-index:1;box-shadow:0 8px 15px 0 rgba(0,0,0,.35)}#forecast-shadow{position:absolute;height:18.85%;width:66.87%;right:0;top:63%;overflow:hidden;background:#8cadd1;box-shadow:0 3px 10px 0 rgba(0,0,0,.35)}#forecast-header{width:100%;min-height:20.5%;font-size:28px;padding-left:1%;background:#eed76b}#forecast-header *{font-family:Interstate;font-weight:700;text-transform:uppercase;display:inline-block;line-height:150%}#forecast-city{padding-right:2%}#forecast-title{color:#001668}#forecast-text,#forecast-text *{font-family:Interstate;font-size:40px}#forecast-text{position:absolute;padding:.1% 1%;min-height:75%;max-height:75%;height:75%;width:100%;margin-top:.4%;overflow:hidden}#forecast-tiles{font-weight:700;position:absolute;width:100%;height:79.6%}.forecast-tile{position:relative;background:#5681be;background:linear-gradient(to right,#5783cc 0,#c4d9ff 100%)}.forecast-tile:last-child{flex-grow:100;border-right:none!important}.forecast-tile .width-sizer{width:100%;height:100%;position:relative}.forecast-tile .footer,.forecast-tile .header{font-size:24px;color:#fff;height:25%;padding:5px 11px;text-transform:uppercase}.forecast-tile.daily{width:18%}.forecast-tile.daily .header{background:linear-gradient(to right,#001668 0,#4564c4 100%);background-color:#001668}.forecast-tile.daily.weekend .header{color:#001668;background:linear-gradient(to right,#8caaea 0,#c4d9ff 100%);background-color:#8caaea}.forecast-tile.daily .icon{display:block;position:absolute;height:65%;bottom:0;left:0;margin-left:3%}.forecast-tile.daily:last-child .icon{margin-left:1%}.forecast-tile .high,.forecast-tile .low{font-family:Interstate;text-align:right;position:absolute;right:5%;font-weight:700;top:10%}.forecast-tile:last-child .high,.forecast-tile:last-child .low{padding-right:30%}.forecast-tile .high{top:30%;font-size:48px}.forecast-tile.daily .low{color:rgba(0,0,0,.5);top:63%;font-size:32px}.forecast-tile.hourly{width:22.3%;border-right:solid 4px #fff}.forecast-tile.hourly .icon{display:block;position:absolute;height:50%;top:12%;left:10%}.forecast-tile.hourly .hourly-high{position:absolute;right:5.5%;bottom:0;width:28%;height:0;padding-top:1%;display:flex;flex-flow:column;z-index:1}.forecast-tile.hourly .high{top:0;position:relative;padding-bottom:15%;opacity:0;text-align:center}.forecast-tile.hourly .temp-bar{width:100%;flex:1;position:relative;bottom:7%;background:linear-gradient(to right,#656565 0,#fcfcfc 50%,#656565 100%);background-color:#656565}.forecast-tile.hourly .footer{font-size:23px;text-transform:lowercase;padding-top:1.9%;position:absolute;width:100%;bottom:0;z-index:0;color:#fff;background:linear-gradient(to right,#4b411e 0,#ae9b57 100%);background-color:#4b411e}.forecast-tile.hourly:last-child .footer{padding-top:1%}.forecast-tile.hourly:last-child .width-sizer{width:66%}#arrow-img{display:block;position:absolute;height:3.7%;left:31.35%;top:897px;z-index:2}#marquee1{position:absolute;color:#fff;left:32%;top:898px;width:68.507%;height:43px;margin-top:2px;font-size:30px;text-shadow:2px 2px 4px #000}#marquee>div{display:inline-block;white-space:nowrap;width:auto}#marquee1 span{padding-right:3vw}#marquee2{position:absolute;left:31.35%;top:87.2%;width:68.507%;height:5.602%;font-size:43px;font-weight:400}.marquee{overflow:hidden}#example-overlay{display:none;background-image:url(/images/examples/RadSat.png);background-size:100%;width:100%;height:100%;z-index:99} /*# sourceMappingURL=weatherscan.css.map */ diff --git a/webroot/css/weatherscan.css.map b/webroot/css/weatherscan.css.map index d1a27b1..8c3601f 100644 --- a/webroot/css/weatherscan.css.map +++ b/webroot/css/weatherscan.css.map @@ -1 +1 @@ -{"version":3,"sources":["_fonts.scss","_slides.scss","weatherscan.css","_misc.scss","_clock.scss"],"names":[],"mappings":"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","file":"weatherscan.css","sourcesContent":["@font-face {\r\n font-family: 'Interstate';\r\n src: url('/fonts/Interstate-Bold.woff2') format('woff2'),\r\n url('/fonts/Interstate-Bold.woff') format('woff');\r\n font-weight: bold;\r\n font-style: normal;\r\n}\r\n\r\n@font-face {\r\n font-family: 'Interstate Mono';\r\n src: url('/fonts/InterstateMono.woff2') format('woff2'),\r\n url('/fonts/InterstateMono.woff') format('woff');\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n\r\n@font-face {\r\n font-family: 'Interstate';\r\n src: url('/fonts/Interstate-Regular.woff2') format('woff2'),\r\n url('/fonts/Interstate-Regular.woff') format('woff');\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n\r\n@font-face {\r\n font-family: 'Zemestro Std';\r\n src: url('/fonts/ZemestroStd.woff2') format('woff2'),\r\n url('/fonts/ZemestroStd.woff') format('woff');\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n\r\n@font-face {\r\n font-family: 'Interstate Condensed';\r\n src: url('/fonts/Interstate-RegularCondensed.woff2') format('woff2'),\r\n url('/fonts/Interstate-RegularCondensed.woff') format('woff');\r\n font-weight: 500;\r\n font-style: normal;\r\n}\r\n\r\n@font-face {\r\n font-family: 'Interstate Condensed';\r\n src: url('/fonts/Interstate-BoldCondensed.woff2') format('woff2'),\r\n url('/fonts/Interstate-BoldCondensed.woff') format('woff');\r\n font-weight: bold;\r\n font-style: normal;\r\n}\r\n","/* Slide 1*/\r\n\r\n.city-info,\r\n.info-slide-content {\r\n display: flex;\r\n flex-direction: row;\r\n width: 100%;\r\n top: 10%;\r\n font-size: 110%;\r\n}\r\n\r\n.frost-pane {\r\n color: #FFFFFF;\r\n font-family: \"Zemestro Std\";\r\n font-size: 32px;\r\n text-shadow: #000000 2px 2px 4px;\r\n min-height: 100%;\r\n background: rgba(18, 75, 238, 0.7);\r\n z-index: 388686;\r\n flex: 1;\r\n}\r\n\r\n.city-info .frost-pane:first-of-type {\r\n width: 55%;\r\n margin-right: 0.8%;\r\n}\r\n\r\n.city-info .frost-pane.left * {\r\n position: absolute;\r\n padding-top: 15px;\r\n line-height: 220%;\r\n}\r\n\r\n.frost-pane .labels {\r\n color: #D8C422;\r\n left: 9%;\r\n}\r\n\r\n.city-info .frost-pane .data {\r\n left: 35%;\r\n text-align: right;\r\n}\r\n\r\n.city-info .frost-pane.right {\r\n display: flex;\r\n flex-direction: column;\r\n align-items: center;\r\n padding-top: 30px;\r\n}\r\n\r\n.city-info .frost-pane .icon {\r\n background-repeat: no-repeat;\r\n background-size: contain;\r\n background-position: center center;\r\n width: 70%;\r\n height: 40%;\r\n}\r\n\r\n.city-info .frost-pane .temp {\r\n font-size: 76px;\r\n margin-top: 20%;\r\n}\r\n\r\n.forecast .frost-pane {\r\n padding: 2% 2% 1% 9%;\r\n}\r\n\r\n.frost-pane .title {\r\n color: #D8C422;\r\n font-size: 40px;\r\n}\r\n\r\n.frost-pane .content {\r\n font-size: 50px;\r\n}\r\n\r\n.info-slide-content.forecast .frost-pane {\r\n max-height: 500px;\r\n}\r\n\r\n.info-slide-content.forecast .content {\r\n height: 400px;\r\n max-height: 400px;\r\n}",null,"html,\r\nbody,\r\ndiv,\r\nh1,\r\np,\r\na {\r\n margin: 0;\r\n padding: 0;\r\n font-family: 'Zemestro Std';\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n\r\nhtml * {\r\n box-sizing: border-box;\r\n font-size: 100%\r\n}\r\n\r\nhtml,\r\nbody {\r\n height: 100%;\r\n background-color: #000000;\r\n font-size: 100%;\r\n margin: 0;\r\n}\r\n\r\nbody {\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n overflow: hidden;\r\n}\r\n\r\n#main {\r\n width: 1440px;\r\n height: 1080px;\r\n background: url('/images/template-4k.jpg');\r\n background-size: 100%;\r\n background-repeat: no-repeat;\r\n flex-shrink: 0;\r\n}\r\n\r\n.leaflet-top,\r\n.leaflet-bottom {\r\n display: none;\r\n}\r\n\r\n#info-slides-container {\r\n display: flex;\r\n flex-direction: column;\r\n position: absolute;\r\n right: 0;\r\n top: 92px;\r\n width: 963px;\r\n height: 572px;\r\n z-index: 1;\r\n padding: 6px 0 6px 6px;\r\n box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.35);\r\n background-color: #001668;\r\n background: linear-gradient(135deg, rgba(0, 22, 104, 1) 0%, rgba(0, 13, 40, 1) 100%);\r\n}\r\n\r\n#info-slides-header,\r\n.info-slide .info-subheader {\r\n position: relative;\r\n color: white;\r\n width: 100%;\r\n padding: 0 7px;\r\n}\r\n\r\n#info-slides-header {\r\n flex: 1;\r\n background-color: #2267B7;\r\n height: 34px;\r\n max-height: 34px;\r\n font-size: 22px;\r\n overflow: hidden;\r\n white-space: nowrap;\r\n}\r\n\r\n#info-slides-header .hscroller {\r\n position: relative;\r\n display: inline-block;\r\n transform-origin: left center;\r\n top: 50%;\r\n transform: scale(1.1, 1) translateY(-50%);\r\n}\r\n\r\n#info-slides-header .divider-arrow {\r\n font-size: 22px;\r\n display: inline-block;\r\n transform: scale(.7, 1);\r\n transform-origin: left center;\r\n font-weight: bold;\r\n padding: 0 7px;\r\n}\r\n\r\n#info-slides-header span.city {\r\n letter-spacing: 1px;\r\n text-transform: uppercase;\r\n}\r\n\r\n#info-slides-header span.city,\r\n#info-slides-header span.divider-arrow {\r\n opacity: 0.5;\r\n}\r\n\r\n#info-slides-header span.city.current {\r\n opacity: 1;\r\n}\r\n\r\n#info-slide-container {\r\n flex: 1;\r\n}\r\n\r\n#radar-container {\r\n display: flex;\r\n flex-direction: column;\r\n box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.35);\r\n background-color: #001668;\r\n background: linear-gradient(135deg, rgba(0, 22, 104, 1) 0%, rgba(0, 13, 40, 1) 100%);\r\n}\r\n\r\n#radar-1 {\r\n flex: 1;\r\n box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.35);\r\n background-color: #001668;\r\n background: linear-gradient(135deg, rgba(0, 22, 104, 1) 0%, rgba(0, 13, 40, 1) 100%);\r\n}\r\n\r\n.info-slide {\r\n width: 100%;\r\n min-height: 100%;\r\n overflow: hidden;\r\n display: flex;\r\n flex-flow: column;\r\n}\r\n\r\n.info-slide .info-subheader {\r\n display: flex;\r\n flex-flow: row nowrap;\r\n justify-content: space-between;\r\n background-color: #0018CC;\r\n font-size: 32px;\r\n height: 55px;\r\n box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);\r\n z-index: 4;\r\n text-shadow: 2px 2px 4px #000000;\r\n}\r\n\r\n.info-slide .info-subheader span {\r\n position: absolute;\r\n top: 50%;\r\n transform: translateY(-50%);\r\n}\r\n\r\n.info-slide-content br {\r\n position: relative !important;\r\n}\r\n\r\n.radar-slide {\r\n z-index: 5;\r\n}\r\n\r\n.city-info-slide {\r\n position: relative;\r\n background: transparent url(\"/images/bluebuildings.jpg\") no-repeat bottom;\r\n background-size: cover;\r\n}\r\n\r\n.city-info-slide .info-subheader {\r\n padding-right: 10%;\r\n}\r\n\r\n.city-info-slide #subhead-city {\r\n font-size: 28px;\r\n padding-top: 3px;\r\n right: 98px;\r\n}\r\n\r\n.info-slide-content {\r\n height: 100%;\r\n min-height: 100%;\r\n width: 100%;\r\n flex: 1;\r\n z-index: 0;\r\n}\r\n\r\n.city-info-slide .curve {\r\n position: absolute;\r\n background-position: 0 0;\r\n background-repeat: no-repeat;\r\n background-size: 200% 200%;\r\n}\r\n\r\n.city-info-slide .yellow {\r\n background-image: url(\"/images/yellow-curve.svg\");\r\n filter: drop-shadow(4px 0px 4px rgba(0, 0, 0, 0.75));\r\n}\r\n\r\n.city-info-slide .yellow.left {\r\n top: 5%;\r\n left: -10.6%;\r\n z-index: 3;\r\n width: 20%;\r\n height: 100%;\r\n}\r\n\r\n.city-info-slide .yellow.right {\r\n background-position: 100% 0;\r\n top: -15%;\r\n right: -19%;\r\n width: 50%;\r\n height: 100%;\r\n z-index: 5;\r\n}\r\n\r\n.city-info-slide .blue {\r\n background-image: url(\"/images/blue-curve.svg\");\r\n background-size: 200% 100%;\r\n width: 22%;\r\n height: 120%;\r\n top: 1%;\r\n left: -6%;\r\n opacity: 0.7;\r\n z-index: 2;\r\n}\r\n\r\n.city-info-slide .white {\r\n background-image: url(\"/images/white-curve.svg\");\r\n background-size: 200% 100%;\r\n background-position: 100% 0;\r\n width: 22%;\r\n height: 120%;\r\n top: 2.3%;\r\n right: -6.7%;\r\n opacity: 0.2;\r\n z-index: 2;\r\n}\r\n\r\n.radar-color-legend {\r\n font-size: 18px;\r\n position: absolute;\r\n text-align: right;\r\n right: 5%;\r\n top: 1.2%;\r\n}\r\n\r\n.radar-color-legend > img {\r\n width: 45%;\r\n height: 13px;\r\n box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);\r\n}\r\n\r\n.leaflet-overlay-pane canvas {\r\n filter: drop-shadow(0px 2px 2px #000000);\r\n}\r\n\r\n#date-time,\r\n#city,\r\n#current-conditions *,\r\n#date-time * {\r\n font-family: 'Interstate';\r\n font-weight: bold;\r\n text-shadow: none;\r\n text-align: right;\r\n color: #1B1B1B;\r\n}\r\n\r\n#date-time {\r\n position: absolute;\r\n top: 98px;\r\n width: 457px;\r\n}\r\n\r\n#date-time * {\r\n font-family: 'Interstate';\r\n font-size: 25px;\r\n line-height: 33px;\r\n}\r\n\r\n#time {\r\n text-transform: lowercase;\r\n}\r\n\r\n#city {\r\n font-size: 37px;\r\n padding-top: 26px;\r\n position: absolute;\r\n text-align: left;\r\n margin-left: 140px;\r\n width: 311px;\r\n height: 91px;\r\n top: 284px;\r\n left: 0;\r\n line-height: 100%;\r\n white-space: nowrap;\r\n overflow: hidden;\r\n}\r\n\r\n#current-conditions {\r\n font-family: 'Interstate';\r\n position: absolute;\r\n top: 376px;\r\n left: 0;\r\n width: 452px;\r\n text-align: left;\r\n}\r\n\r\n#conditions-icon {\r\n position: absolute;\r\n left: 300px;\r\n background-size: 100% 100%;\r\n width: 144px;\r\n height: 145px;\r\n background-repeat: no-repeat;\r\n top: 394px;\r\n z-index: 0;\r\n}\r\n\r\n#now {\r\n font-size: 49px;\r\n margin: 1.6% 0 0 31%;\r\n text-align: left;\r\n}\r\n\r\n#current-temp {\r\n font-size: 70px;\r\n margin: 4.4% 0 0 0;\r\n text-align: center;\r\n width: 100%;\r\n}\r\n\r\n#current-info {\r\n font-size: 27px;\r\n margin: 4.2% 0 0 31%;\r\n text-align: left;\r\n width: 66%;\r\n}\r\n\r\n#minimap-title {\r\n font-family: 'Interstate';\r\n font-weight: bold;\r\n position: absolute;\r\n width: 31.4%;\r\n top: 638px;\r\n text-align: right;\r\n color: #FFFFFF;\r\n font-size: 25px;\r\n padding: 7px 15px 0 0;\r\n text-shadow: 2px 2px 4px #000000;\r\n}\r\n\r\n#minimap {\r\n position: absolute;\r\n width: 31.35%;\r\n height: 20.5%;\r\n left: 0;\r\n top: 677px;\r\n background: #333333;\r\n z-index: 1;\r\n box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.35);\r\n}\r\n\r\n#forecast-shadow {\r\n position: absolute;\r\n height: 18.85%;\r\n width: 66.87%;\r\n right: 0;\r\n top: 63%;\r\n overflow: hidden;\r\n background: #8CADD1;\r\n box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.35);\r\n}\r\n\r\n#forecast-header {\r\n width: 100%;\r\n min-height: 20.5%;\r\n font-size: 28px;\r\n padding-left: 1%;\r\n background: #EED76B;\r\n}\r\n\r\n#forecast-header * {\r\n font-family: 'Interstate';\r\n font-weight: bold;\r\n text-transform: uppercase;\r\n display: inline-block;\r\n line-height: 150%;\r\n}\r\n\r\n#forecast-city {\r\n padding-right: 2%;\r\n}\r\n\r\n#forecast-title {\r\n color: #001668;\r\n}\r\n\r\n#forecast-text,\r\n#forecast-text * {\r\n font-family: 'Interstate';\r\n font-size: 40px;\r\n}\r\n\r\n#forecast-text {\r\n position: absolute;\r\n padding: 0.1% 1%;\r\n min-height: 75%;\r\n max-height: 75%;\r\n height: 75%;\r\n width: 100%;\r\n margin-top: 0.4%;\r\n overflow: hidden;\r\n}\r\n\r\n#forecast-tiles {\r\n font-weight: bold;\r\n position: absolute;\r\n width: 100%;\r\n height: 79.6%;\r\n}\r\n\r\n.forecast-tile {\r\n position: relative;\r\n background: #5681BE;\r\n background: linear-gradient(to right, #5783CC 0%, #C4D9FF 100%);\r\n}\r\n\r\n.forecast-tile:last-child {\r\n flex-grow: 100;\r\n border-right: none !important;\r\n}\r\n\r\n.forecast-tile .width-sizer {\r\n width: 100%;\r\n height: 100%;\r\n position: relative;\r\n}\r\n\r\n.forecast-tile .header,\r\n.forecast-tile .footer {\r\n font-size: 24px;\r\n color: white;\r\n height: 25%;\r\n padding: 5px 11px;\r\n text-transform: uppercase;\r\n}\r\n\r\n.forecast-tile.daily {\r\n width: 18%;\r\n}\r\n\r\n.forecast-tile.daily .header {\r\n background: linear-gradient(to right, #001668 0%, #4564C4 100%);\r\n background-color: #001668;\r\n}\r\n\r\n.forecast-tile.daily.weekend .header {\r\n color: #001668;\r\n background: linear-gradient(to right, #8CAAEA 0%, #C4D9FF 100%);\r\n background-color: #8CAAEA;\r\n}\r\n\r\n.forecast-tile.daily .icon {\r\n display: block;\r\n position: absolute;\r\n height: 65%;\r\n bottom: 0;\r\n left: 0;\r\n margin-left: 3%;\r\n}\r\n\r\n.forecast-tile.daily:last-child .icon {\r\n margin-left: 1%;\r\n}\r\n\r\n.forecast-tile .high,\r\n.forecast-tile .low {\r\n font-family: 'Interstate';\r\n text-align: right;\r\n position: absolute;\r\n right: 5%;\r\n font-weight: bold;\r\n top: 10%;\r\n}\r\n\r\n.forecast-tile:last-child .high,\r\n.forecast-tile:last-child .low {\r\n padding-right: 30%;\r\n}\r\n\r\n.forecast-tile .high {\r\n top: 30%;\r\n font-size: 48px;\r\n}\r\n\r\n.forecast-tile.daily .low {\r\n color: rgba(0, 0, 0, 0.5);\r\n top: 63%;\r\n font-size: 32px;\r\n}\r\n\r\n.forecast-tile.hourly {\r\n width: 22.3%;\r\n border-right: solid 4px #FFFFFF;\r\n}\r\n\r\n.forecast-tile.hourly .icon {\r\n display: block;\r\n position: absolute;\r\n height: 50%;\r\n top: 12%;\r\n left: 10%;\r\n}\r\n\r\n.forecast-tile.hourly .hourly-high {\r\n position: absolute;\r\n right: 5.5%;\r\n bottom: 0;\r\n width: 28%;\r\n height: 0;\r\n padding-top: 1%;\r\n display: flex;\r\n flex-flow: column;\r\n z-index: 1;\r\n}\r\n\r\n.forecast-tile.hourly .high {\r\n top: 0;\r\n position: relative;\r\n padding-bottom: 15%;\r\n opacity: 0;\r\n text-align: center;\r\n}\r\n\r\n.forecast-tile.hourly .temp-bar {\r\n width: 100%;\r\n flex: 1;\r\n position: relative;\r\n bottom: 7%;\r\n background: linear-gradient(to right, #656565 0%, #FCFCFC 50%, #656565 100%);\r\n background-color: #656565;\r\n}\r\n\r\n.forecast-tile.hourly .footer {\r\n font-size: 23px;\r\n text-transform: lowercase;\r\n padding-top: 1.9%;\r\n position: absolute;\r\n width: 100%;\r\n bottom: 0;\r\n z-index: 0;\r\n color: white;\r\n background: linear-gradient(to right, #4B411E 0%, #AE9B57 100%);\r\n background-color: #4B411E;\r\n}\r\n\r\n.forecast-tile.hourly:last-child .footer {\r\n padding-top: 1%;\r\n}\r\n\r\n.forecast-tile.hourly:last-child .width-sizer {\r\n width: 66%\r\n}\r\n\r\n#logo-area {\r\n position: absolute;\r\n width: 31.528%;\r\n height: 9.398%;\r\n left: 0;\r\n top: 83.4%;\r\n}\r\n\r\n#logo-area img {\r\n display: block;\r\n position: absolute;\r\n width: 65%;\r\n top: 19%;\r\n right: 5%;\r\n}\r\n\r\n#arrow-img {\r\n display: block;\r\n position: absolute;\r\n height: 3.7%;\r\n left: 31.35%;\r\n top: 897px;\r\n z-index: 2;\r\n}\r\n\r\n#marquee1 {\r\n position: absolute;\r\n color: #FFFFFF;\r\n left: 32%;\r\n top: 898px;\r\n width: 68.507%;\r\n height: 43px;\r\n margin-top: 2px;\r\n font-size: 30px;\r\n text-shadow: 2px 2px 4px #000000;\r\n}\r\n\r\n#marquee > div {\r\n display: inline-block;\r\n white-space: nowrap;\r\n width: auto;\r\n}\r\n\r\n#marquee1 span {\r\n padding-right: 3vw;\r\n}\r\n\r\n#marquee2 {\r\n position: absolute;\r\n left: 31.35%;\r\n top: 87.2%;\r\n width: 68.507%;\r\n height: 5.602%;\r\n font-size: 43px;\r\n font-weight: normal;\r\n}\r\n\r\n.marquee {\r\n overflow: hidden;\r\n}\r\n\r\n#example-overlay {\r\n display: none;\r\n background-image: url(\"/images/examples/RadSat.png\");\r\n background-size: 100%;\r\n width: 100%;\r\n height: 100%;\r\n z-index: 99;\r\n}","#clock {\r\n font-family: 'Interstate Condensed';\r\n font-size: 32px;\r\n text-align: right;\r\n position: absolute;\r\n width: 455px;\r\n top: 107px;\r\n line-height: 38px;\r\n letter-spacing: 1px;\r\n}"]} \ No newline at end of file +{"version":3,"sources":["_fonts.scss","_slides.scss","weatherscan.css","_sidebar.scss","_misc.scss"],"names":[],"mappings":"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","file":"weatherscan.css","sourcesContent":["@font-face {\r\n font-family: 'Interstate';\r\n src: url('/fonts/Interstate-Bold.woff2') format('woff2'),\r\n url('/fonts/Interstate-Bold.woff') format('woff');\r\n font-weight: bold;\r\n font-style: normal;\r\n}\r\n\r\n@font-face {\r\n font-family: 'Interstate Mono';\r\n src: url('/fonts/InterstateMono.woff2') format('woff2'),\r\n url('/fonts/InterstateMono.woff') format('woff');\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n\r\n@font-face {\r\n font-family: 'Interstate';\r\n src: url('/fonts/Interstate-Regular.woff2') format('woff2'),\r\n url('/fonts/Interstate-Regular.woff') format('woff');\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n\r\n@font-face {\r\n font-family: 'Zemestro Std';\r\n src: url('/fonts/ZemestroStd.woff2') format('woff2'),\r\n url('/fonts/ZemestroStd.woff') format('woff');\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n\r\n@font-face {\r\n font-family: 'Interstate Condensed';\r\n src: url('/fonts/Interstate-RegularCondensed.woff2') format('woff2'),\r\n url('/fonts/Interstate-RegularCondensed.woff') format('woff');\r\n font-weight: 500;\r\n font-style: normal;\r\n}\r\n\r\n@font-face {\r\n font-family: 'Interstate Condensed';\r\n src: url('/fonts/Interstate-BoldCondensed.woff2') format('woff2'),\r\n url('/fonts/Interstate-BoldCondensed.woff') format('woff');\r\n font-weight: bold;\r\n font-style: normal;\r\n}\r\n","/* Slide 1*/\r\n\r\n.city-info,\r\n.info-slide-content {\r\n display: flex;\r\n flex-direction: row;\r\n width: 100%;\r\n top: 10%;\r\n font-size: 110%;\r\n}\r\n\r\n.frost-pane {\r\n color: #FFFFFF;\r\n font-family: \"Zemestro Std\";\r\n font-size: 32px;\r\n text-shadow: #000000 2px 2px 4px;\r\n min-height: 100%;\r\n background: rgba(18, 75, 238, 0.7);\r\n z-index: 388686;\r\n flex: 1;\r\n}\r\n\r\n.city-info .frost-pane:first-of-type {\r\n width: 55%;\r\n margin-right: 0.8%;\r\n}\r\n\r\n.city-info .frost-pane.left * {\r\n position: absolute;\r\n padding-top: 15px;\r\n line-height: 220%;\r\n}\r\n\r\n.frost-pane .labels {\r\n color: #D8C422;\r\n left: 9%;\r\n}\r\n\r\n.city-info .frost-pane .data {\r\n left: 35%;\r\n text-align: right;\r\n}\r\n\r\n.city-info .frost-pane.right {\r\n display: flex;\r\n flex-direction: column;\r\n align-items: center;\r\n padding-top: 30px;\r\n}\r\n\r\n.city-info .frost-pane .icon {\r\n background-repeat: no-repeat;\r\n background-size: contain;\r\n background-position: center center;\r\n width: 70%;\r\n height: 40%;\r\n}\r\n\r\n.city-info .frost-pane .temp {\r\n font-size: 76px;\r\n margin-top: 20%;\r\n}\r\n\r\n.forecast .frost-pane {\r\n padding: 2% 2% 1% 9%;\r\n}\r\n\r\n.frost-pane .title {\r\n color: #D8C422;\r\n font-size: 40px;\r\n}\r\n\r\n.frost-pane .content {\r\n font-size: 50px;\r\n}\r\n\r\n.info-slide-content.forecast .frost-pane {\r\n max-height: 500px;\r\n}\r\n\r\n.info-slide-content.forecast .content {\r\n height: 400px;\r\n max-height: 400px;\r\n}",null,"#date-time,\n#city,\n#current-conditions * {\n font-family: 'Interstate';\n font-weight: bold;\n text-shadow: none;\n text-align: right;\n color: #1B1B1B;\n}\n\n#city {\n font-size: 37px;\n padding-top: 26px;\n position: absolute;\n text-align: left;\n margin-left: 140px;\n width: 311px;\n height: 91px;\n top: 284px;\n left: 0;\n line-height: 100%;\n white-space: nowrap;\n overflow: hidden;\n}\n\n#current-conditions {\n font-family: 'Interstate';\n position: absolute;\n top: 376px;\n left: 0;\n width: 452px;\n text-align: left;\n}\n\n#conditions-icon {\n position: absolute;\n left: 300px;\n background-size: 100% 100%;\n width: 144px;\n height: 145px;\n background-repeat: no-repeat;\n top: 394px;\n z-index: 0;\n}\n\n#now {\n font-size: 49px;\n margin: 1.6% 0 0 31%;\n text-align: left;\n}\n\n#current-temp {\n font-size: 70px;\n margin: 4.4% 0 0 0;\n text-align: center;\n width: 100%;\n}\n\n#current-info {\n font-size: 27px;\n margin: 4.2% 0 0 31%;\n text-align: left;\n width: 66%;\n}\n\n#clock {\n font-family: 'Interstate Condensed';\n font-size: 32px;\n text-align: right;\n position: absolute;\n width: 455px;\n top: 107px;\n line-height: 38px;\n letter-spacing: 1px;\n}\n\n#logo-area {\n position: absolute;\n width: 450px;\n height: 105px;\n left: 0;\n top: 900px;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n#logo-area img {\n width: 70%;\n}","html,\r\nbody,\r\ndiv,\r\nh1,\r\np,\r\na {\r\n margin: 0;\r\n padding: 0;\r\n font-family: 'Zemestro Std';\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n\r\nhtml * {\r\n box-sizing: border-box;\r\n font-size: 100%\r\n}\r\n\r\nhtml,\r\nbody {\r\n height: 100%;\r\n background-color: #000000;\r\n font-size: 100%;\r\n margin: 0;\r\n}\r\n\r\nbody {\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n overflow: hidden;\r\n}\r\n\r\n#main {\r\n width: 1440px;\r\n height: 1080px;\r\n background: url('/images/template-4k.jpg');\r\n background-size: 100%;\r\n background-repeat: no-repeat;\r\n flex-shrink: 0;\r\n}\r\n\r\n.leaflet-top,\r\n.leaflet-bottom {\r\n display: none;\r\n}\r\n\r\n#info-slides-container {\r\n display: flex;\r\n flex-direction: column;\r\n position: absolute;\r\n right: 0;\r\n top: 92px;\r\n width: 963px;\r\n height: 572px;\r\n z-index: 1;\r\n padding: 6px 0 6px 6px;\r\n box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.35);\r\n background-color: #001668;\r\n background: linear-gradient(135deg, rgba(0, 22, 104, 1) 0%, rgba(0, 13, 40, 1) 100%);\r\n}\r\n\r\n#info-slides-header,\r\n.info-slide .info-subheader {\r\n position: relative;\r\n color: white;\r\n width: 100%;\r\n padding: 0 7px;\r\n}\r\n\r\n#info-slides-header {\r\n flex: 1;\r\n background-color: #2267B7;\r\n height: 34px;\r\n max-height: 34px;\r\n font-size: 22px;\r\n overflow: hidden;\r\n white-space: nowrap;\r\n}\r\n\r\n#info-slides-header .hscroller {\r\n position: relative;\r\n display: inline-block;\r\n transform-origin: left center;\r\n top: 50%;\r\n transform: scale(1.1, 1) translateY(-50%);\r\n}\r\n\r\n#info-slides-header .divider-arrow {\r\n font-size: 22px;\r\n display: inline-block;\r\n transform: scale(.7, 1);\r\n transform-origin: left center;\r\n font-weight: bold;\r\n padding: 0 7px;\r\n}\r\n\r\n#info-slides-header span.city {\r\n letter-spacing: 1px;\r\n text-transform: uppercase;\r\n}\r\n\r\n#info-slides-header span.city,\r\n#info-slides-header span.divider-arrow {\r\n opacity: 0.5;\r\n}\r\n\r\n#info-slides-header span.city.current {\r\n opacity: 1;\r\n}\r\n\r\n#info-slide-container {\r\n flex: 1;\r\n}\r\n\r\n#radar-container {\r\n display: flex;\r\n flex-direction: column;\r\n box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.35);\r\n background-color: #001668;\r\n background: linear-gradient(135deg, rgba(0, 22, 104, 1) 0%, rgba(0, 13, 40, 1) 100%);\r\n}\r\n\r\n#radar-1 {\r\n flex: 1;\r\n box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.35);\r\n background-color: #001668;\r\n background: linear-gradient(135deg, rgba(0, 22, 104, 1) 0%, rgba(0, 13, 40, 1) 100%);\r\n}\r\n\r\n.info-slide {\r\n width: 100%;\r\n min-height: 100%;\r\n overflow: hidden;\r\n display: flex;\r\n flex-flow: column;\r\n}\r\n\r\n.info-slide .info-subheader {\r\n display: flex;\r\n flex-flow: row nowrap;\r\n justify-content: space-between;\r\n background-color: #0018CC;\r\n font-size: 32px;\r\n height: 55px;\r\n box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);\r\n z-index: 4;\r\n text-shadow: 2px 2px 4px #000000;\r\n}\r\n\r\n.info-slide .info-subheader span {\r\n position: absolute;\r\n top: 50%;\r\n transform: translateY(-50%);\r\n}\r\n\r\n.info-slide-content br {\r\n position: relative !important;\r\n}\r\n\r\n.radar-slide {\r\n z-index: 5;\r\n}\r\n\r\n.city-info-slide {\r\n position: relative;\r\n background: transparent url(\"/images/bluebuildings.jpg\") no-repeat bottom;\r\n background-size: cover;\r\n}\r\n\r\n.city-info-slide .info-subheader {\r\n padding-right: 10%;\r\n}\r\n\r\n.city-info-slide #subhead-city {\r\n font-size: 28px;\r\n padding-top: 3px;\r\n right: 98px;\r\n}\r\n\r\n.info-slide-content {\r\n height: 100%;\r\n min-height: 100%;\r\n width: 100%;\r\n flex: 1;\r\n z-index: 0;\r\n}\r\n\r\n.city-info-slide .curve {\r\n position: absolute;\r\n background-position: 0 0;\r\n background-repeat: no-repeat;\r\n background-size: 200% 200%;\r\n}\r\n\r\n.city-info-slide .yellow {\r\n background-image: url(\"/images/yellow-curve.svg\");\r\n filter: drop-shadow(4px 0px 4px rgba(0, 0, 0, 0.75));\r\n}\r\n\r\n.city-info-slide .yellow.left {\r\n top: 5%;\r\n left: -10.6%;\r\n z-index: 3;\r\n width: 20%;\r\n height: 100%;\r\n}\r\n\r\n.city-info-slide .yellow.right {\r\n background-position: 100% 0;\r\n top: -15%;\r\n right: -19%;\r\n width: 50%;\r\n height: 100%;\r\n z-index: 5;\r\n}\r\n\r\n.city-info-slide .blue {\r\n background-image: url(\"/images/blue-curve.svg\");\r\n background-size: 200% 100%;\r\n width: 22%;\r\n height: 120%;\r\n top: 1%;\r\n left: -6%;\r\n opacity: 0.7;\r\n z-index: 2;\r\n}\r\n\r\n.city-info-slide .white {\r\n background-image: url(\"/images/white-curve.svg\");\r\n background-size: 200% 100%;\r\n background-position: 100% 0;\r\n width: 22%;\r\n height: 120%;\r\n top: 2.3%;\r\n right: -6.7%;\r\n opacity: 0.2;\r\n z-index: 2;\r\n}\r\n\r\n.radar-color-legend {\r\n font-size: 18px;\r\n position: absolute;\r\n text-align: right;\r\n right: 5%;\r\n top: 1.2%;\r\n}\r\n\r\n.radar-color-legend > img {\r\n width: 45%;\r\n height: 13px;\r\n box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);\r\n}\r\n\r\n.leaflet-overlay-pane canvas {\r\n filter: drop-shadow(0px 2px 2px #000000);\r\n}\r\n\r\n#minimap-title {\r\n font-family: 'Interstate';\r\n font-weight: bold;\r\n position: absolute;\r\n width: 31.4%;\r\n top: 638px;\r\n text-align: right;\r\n color: #FFFFFF;\r\n font-size: 25px;\r\n padding: 7px 15px 0 0;\r\n text-shadow: 2px 2px 4px #000000;\r\n}\r\n\r\n#minimap {\r\n position: absolute;\r\n width: 31.35%;\r\n height: 20.5%;\r\n left: 0;\r\n top: 677px;\r\n background: #333333;\r\n z-index: 1;\r\n box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.35);\r\n}\r\n\r\n#forecast-shadow {\r\n position: absolute;\r\n height: 18.85%;\r\n width: 66.87%;\r\n right: 0;\r\n top: 63%;\r\n overflow: hidden;\r\n background: #8CADD1;\r\n box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.35);\r\n}\r\n\r\n#forecast-header {\r\n width: 100%;\r\n min-height: 20.5%;\r\n font-size: 28px;\r\n padding-left: 1%;\r\n background: #EED76B;\r\n}\r\n\r\n#forecast-header * {\r\n font-family: 'Interstate';\r\n font-weight: bold;\r\n text-transform: uppercase;\r\n display: inline-block;\r\n line-height: 150%;\r\n}\r\n\r\n#forecast-city {\r\n padding-right: 2%;\r\n}\r\n\r\n#forecast-title {\r\n color: #001668;\r\n}\r\n\r\n#forecast-text,\r\n#forecast-text * {\r\n font-family: 'Interstate';\r\n font-size: 40px;\r\n}\r\n\r\n#forecast-text {\r\n position: absolute;\r\n padding: 0.1% 1%;\r\n min-height: 75%;\r\n max-height: 75%;\r\n height: 75%;\r\n width: 100%;\r\n margin-top: 0.4%;\r\n overflow: hidden;\r\n}\r\n\r\n#forecast-tiles {\r\n font-weight: bold;\r\n position: absolute;\r\n width: 100%;\r\n height: 79.6%;\r\n}\r\n\r\n.forecast-tile {\r\n position: relative;\r\n background: #5681BE;\r\n background: linear-gradient(to right, #5783CC 0%, #C4D9FF 100%);\r\n}\r\n\r\n.forecast-tile:last-child {\r\n flex-grow: 100;\r\n border-right: none !important;\r\n}\r\n\r\n.forecast-tile .width-sizer {\r\n width: 100%;\r\n height: 100%;\r\n position: relative;\r\n}\r\n\r\n.forecast-tile .header,\r\n.forecast-tile .footer {\r\n font-size: 24px;\r\n color: white;\r\n height: 25%;\r\n padding: 5px 11px;\r\n text-transform: uppercase;\r\n}\r\n\r\n.forecast-tile.daily {\r\n width: 18%;\r\n}\r\n\r\n.forecast-tile.daily .header {\r\n background: linear-gradient(to right, #001668 0%, #4564C4 100%);\r\n background-color: #001668;\r\n}\r\n\r\n.forecast-tile.daily.weekend .header {\r\n color: #001668;\r\n background: linear-gradient(to right, #8CAAEA 0%, #C4D9FF 100%);\r\n background-color: #8CAAEA;\r\n}\r\n\r\n.forecast-tile.daily .icon {\r\n display: block;\r\n position: absolute;\r\n height: 65%;\r\n bottom: 0;\r\n left: 0;\r\n margin-left: 3%;\r\n}\r\n\r\n.forecast-tile.daily:last-child .icon {\r\n margin-left: 1%;\r\n}\r\n\r\n.forecast-tile .high,\r\n.forecast-tile .low {\r\n font-family: 'Interstate';\r\n text-align: right;\r\n position: absolute;\r\n right: 5%;\r\n font-weight: bold;\r\n top: 10%;\r\n}\r\n\r\n.forecast-tile:last-child .high,\r\n.forecast-tile:last-child .low {\r\n padding-right: 30%;\r\n}\r\n\r\n.forecast-tile .high {\r\n top: 30%;\r\n font-size: 48px;\r\n}\r\n\r\n.forecast-tile.daily .low {\r\n color: rgba(0, 0, 0, 0.5);\r\n top: 63%;\r\n font-size: 32px;\r\n}\r\n\r\n.forecast-tile.hourly {\r\n width: 22.3%;\r\n border-right: solid 4px #FFFFFF;\r\n}\r\n\r\n.forecast-tile.hourly .icon {\r\n display: block;\r\n position: absolute;\r\n height: 50%;\r\n top: 12%;\r\n left: 10%;\r\n}\r\n\r\n.forecast-tile.hourly .hourly-high {\r\n position: absolute;\r\n right: 5.5%;\r\n bottom: 0;\r\n width: 28%;\r\n height: 0;\r\n padding-top: 1%;\r\n display: flex;\r\n flex-flow: column;\r\n z-index: 1;\r\n}\r\n\r\n.forecast-tile.hourly .high {\r\n top: 0;\r\n position: relative;\r\n padding-bottom: 15%;\r\n opacity: 0;\r\n text-align: center;\r\n}\r\n\r\n.forecast-tile.hourly .temp-bar {\r\n width: 100%;\r\n flex: 1;\r\n position: relative;\r\n bottom: 7%;\r\n background: linear-gradient(to right, #656565 0%, #FCFCFC 50%, #656565 100%);\r\n background-color: #656565;\r\n}\r\n\r\n.forecast-tile.hourly .footer {\r\n font-size: 23px;\r\n text-transform: lowercase;\r\n padding-top: 1.9%;\r\n position: absolute;\r\n width: 100%;\r\n bottom: 0;\r\n z-index: 0;\r\n color: white;\r\n background: linear-gradient(to right, #4B411E 0%, #AE9B57 100%);\r\n background-color: #4B411E;\r\n}\r\n\r\n.forecast-tile.hourly:last-child .footer {\r\n padding-top: 1%;\r\n}\r\n\r\n.forecast-tile.hourly:last-child .width-sizer {\r\n width: 66%\r\n}\r\n\r\n#arrow-img {\r\n display: block;\r\n position: absolute;\r\n height: 3.7%;\r\n left: 31.35%;\r\n top: 897px;\r\n z-index: 2;\r\n}\r\n\r\n#marquee1 {\r\n position: absolute;\r\n color: #FFFFFF;\r\n left: 32%;\r\n top: 898px;\r\n width: 68.507%;\r\n height: 43px;\r\n margin-top: 2px;\r\n font-size: 30px;\r\n text-shadow: 2px 2px 4px #000000;\r\n}\r\n\r\n#marquee > div {\r\n display: inline-block;\r\n white-space: nowrap;\r\n width: auto;\r\n}\r\n\r\n#marquee1 span {\r\n padding-right: 3vw;\r\n}\r\n\r\n#marquee2 {\r\n position: absolute;\r\n left: 31.35%;\r\n top: 87.2%;\r\n width: 68.507%;\r\n height: 5.602%;\r\n font-size: 43px;\r\n font-weight: normal;\r\n}\r\n\r\n.marquee {\r\n overflow: hidden;\r\n}\r\n\r\n#example-overlay {\r\n display: none;\r\n background-image: url(\"/images/examples/RadSat.png\");\r\n background-size: 100%;\r\n width: 100%;\r\n height: 100%;\r\n z-index: 99;\r\n}"]} \ No newline at end of file diff --git a/webroot/images/watt-icons/icon0.png b/webroot/images/watt-icons/icon0.png new file mode 100644 index 0000000..0402fc1 Binary files /dev/null and b/webroot/images/watt-icons/icon0.png differ diff --git a/webroot/images/watt-icons/icon1.png b/webroot/images/watt-icons/icon1.png new file mode 100644 index 0000000..fd6c833 Binary files /dev/null and b/webroot/images/watt-icons/icon1.png differ diff --git a/webroot/images/watt-icons/icon10.png b/webroot/images/watt-icons/icon10.png new file mode 100644 index 0000000..64d740e Binary files /dev/null and b/webroot/images/watt-icons/icon10.png differ diff --git a/webroot/images/watt-icons/icon11.png b/webroot/images/watt-icons/icon11.png new file mode 100644 index 0000000..887e29e Binary files /dev/null and b/webroot/images/watt-icons/icon11.png differ diff --git a/webroot/images/watt-icons/icon12.png b/webroot/images/watt-icons/icon12.png new file mode 100644 index 0000000..d53f5b8 Binary files /dev/null and b/webroot/images/watt-icons/icon12.png differ diff --git a/webroot/images/watt-icons/icon13.png b/webroot/images/watt-icons/icon13.png new file mode 100644 index 0000000..c3b63ce Binary files /dev/null and b/webroot/images/watt-icons/icon13.png differ diff --git a/webroot/images/watt-icons/icon14.png b/webroot/images/watt-icons/icon14.png new file mode 100644 index 0000000..525e3d0 Binary files /dev/null and b/webroot/images/watt-icons/icon14.png differ diff --git a/webroot/images/watt-icons/icon15.png b/webroot/images/watt-icons/icon15.png new file mode 100644 index 0000000..0e4721c Binary files /dev/null and b/webroot/images/watt-icons/icon15.png differ diff --git a/webroot/images/watt-icons/icon16.png b/webroot/images/watt-icons/icon16.png new file mode 100644 index 0000000..525e3d0 Binary files /dev/null and b/webroot/images/watt-icons/icon16.png differ diff --git a/webroot/images/watt-icons/icon17.png b/webroot/images/watt-icons/icon17.png new file mode 100644 index 0000000..df11533 Binary files /dev/null and b/webroot/images/watt-icons/icon17.png differ diff --git a/webroot/images/watt-icons/icon18.png b/webroot/images/watt-icons/icon18.png new file mode 100644 index 0000000..df11533 Binary files /dev/null and b/webroot/images/watt-icons/icon18.png differ diff --git a/webroot/images/watt-icons/icon19.png b/webroot/images/watt-icons/icon19.png new file mode 100644 index 0000000..b95e6bb Binary files /dev/null and b/webroot/images/watt-icons/icon19.png differ diff --git a/webroot/images/watt-icons/icon2.png b/webroot/images/watt-icons/icon2.png new file mode 100644 index 0000000..fd6c833 Binary files /dev/null and b/webroot/images/watt-icons/icon2.png differ diff --git a/webroot/images/watt-icons/icon20.png b/webroot/images/watt-icons/icon20.png new file mode 100644 index 0000000..b95e6bb Binary files /dev/null and b/webroot/images/watt-icons/icon20.png differ diff --git a/webroot/images/watt-icons/icon21.png b/webroot/images/watt-icons/icon21.png new file mode 100644 index 0000000..b95e6bb Binary files /dev/null and b/webroot/images/watt-icons/icon21.png differ diff --git a/webroot/images/watt-icons/icon22.png b/webroot/images/watt-icons/icon22.png new file mode 100644 index 0000000..b95e6bb Binary files /dev/null and b/webroot/images/watt-icons/icon22.png differ diff --git a/webroot/images/watt-icons/icon23.png b/webroot/images/watt-icons/icon23.png new file mode 100644 index 0000000..90585ec Binary files /dev/null and b/webroot/images/watt-icons/icon23.png differ diff --git a/webroot/images/watt-icons/icon24.png b/webroot/images/watt-icons/icon24.png new file mode 100644 index 0000000..90585ec Binary files /dev/null and b/webroot/images/watt-icons/icon24.png differ diff --git a/webroot/images/watt-icons/icon25.png b/webroot/images/watt-icons/icon25.png new file mode 100644 index 0000000..0e4721c Binary files /dev/null and b/webroot/images/watt-icons/icon25.png differ diff --git a/webroot/images/watt-icons/icon26.png b/webroot/images/watt-icons/icon26.png new file mode 100644 index 0000000..d7a623d Binary files /dev/null and b/webroot/images/watt-icons/icon26.png differ diff --git a/webroot/images/watt-icons/icon27.png b/webroot/images/watt-icons/icon27.png new file mode 100644 index 0000000..6a9d0ab Binary files /dev/null and b/webroot/images/watt-icons/icon27.png differ diff --git a/webroot/images/watt-icons/icon28.png b/webroot/images/watt-icons/icon28.png new file mode 100644 index 0000000..030fb0f Binary files /dev/null and b/webroot/images/watt-icons/icon28.png differ diff --git a/webroot/images/watt-icons/icon29.png b/webroot/images/watt-icons/icon29.png new file mode 100644 index 0000000..836872b Binary files /dev/null and b/webroot/images/watt-icons/icon29.png differ diff --git a/webroot/images/watt-icons/icon3.png b/webroot/images/watt-icons/icon3.png new file mode 100644 index 0000000..15072be Binary files /dev/null and b/webroot/images/watt-icons/icon3.png differ diff --git a/webroot/images/watt-icons/icon30.png b/webroot/images/watt-icons/icon30.png new file mode 100644 index 0000000..0ccb009 Binary files /dev/null and b/webroot/images/watt-icons/icon30.png differ diff --git a/webroot/images/watt-icons/icon31.png b/webroot/images/watt-icons/icon31.png new file mode 100644 index 0000000..f96921e Binary files /dev/null and b/webroot/images/watt-icons/icon31.png differ diff --git a/webroot/images/watt-icons/icon32.png b/webroot/images/watt-icons/icon32.png new file mode 100644 index 0000000..4f803fb Binary files /dev/null and b/webroot/images/watt-icons/icon32.png differ diff --git a/webroot/images/watt-icons/icon33.png b/webroot/images/watt-icons/icon33.png new file mode 100644 index 0000000..557a5ed Binary files /dev/null and b/webroot/images/watt-icons/icon33.png differ diff --git a/webroot/images/watt-icons/icon34.png b/webroot/images/watt-icons/icon34.png new file mode 100644 index 0000000..29f6778 Binary files /dev/null and b/webroot/images/watt-icons/icon34.png differ diff --git a/webroot/images/watt-icons/icon35.png b/webroot/images/watt-icons/icon35.png new file mode 100644 index 0000000..64d740e Binary files /dev/null and b/webroot/images/watt-icons/icon35.png differ diff --git a/webroot/images/watt-icons/icon36.png b/webroot/images/watt-icons/icon36.png new file mode 100644 index 0000000..4f803fb Binary files /dev/null and b/webroot/images/watt-icons/icon36.png differ diff --git a/webroot/images/watt-icons/icon37.png b/webroot/images/watt-icons/icon37.png new file mode 100644 index 0000000..20247e3 Binary files /dev/null and b/webroot/images/watt-icons/icon37.png differ diff --git a/webroot/images/watt-icons/icon38.png b/webroot/images/watt-icons/icon38.png new file mode 100644 index 0000000..26a9157 Binary files /dev/null and b/webroot/images/watt-icons/icon38.png differ diff --git a/webroot/images/watt-icons/icon39.png b/webroot/images/watt-icons/icon39.png new file mode 100644 index 0000000..887e29e Binary files /dev/null and b/webroot/images/watt-icons/icon39.png differ diff --git a/webroot/images/watt-icons/icon4.png b/webroot/images/watt-icons/icon4.png new file mode 100644 index 0000000..e60e3d7 Binary files /dev/null and b/webroot/images/watt-icons/icon4.png differ diff --git a/webroot/images/watt-icons/icon40.png b/webroot/images/watt-icons/icon40.png new file mode 100644 index 0000000..6c0ee50 Binary files /dev/null and b/webroot/images/watt-icons/icon40.png differ diff --git a/webroot/images/watt-icons/icon41.png b/webroot/images/watt-icons/icon41.png new file mode 100644 index 0000000..2afa56d Binary files /dev/null and b/webroot/images/watt-icons/icon41.png differ diff --git a/webroot/images/watt-icons/icon42.png b/webroot/images/watt-icons/icon42.png new file mode 100644 index 0000000..4c12eab Binary files /dev/null and b/webroot/images/watt-icons/icon42.png differ diff --git a/webroot/images/watt-icons/icon43.png b/webroot/images/watt-icons/icon43.png new file mode 100644 index 0000000..4c12eab Binary files /dev/null and b/webroot/images/watt-icons/icon43.png differ diff --git a/webroot/images/watt-icons/icon44.png b/webroot/images/watt-icons/icon44.png new file mode 100644 index 0000000..6f6b8db Binary files /dev/null and b/webroot/images/watt-icons/icon44.png differ diff --git a/webroot/images/watt-icons/icon45.png b/webroot/images/watt-icons/icon45.png new file mode 100644 index 0000000..aeb10a8 Binary files /dev/null and b/webroot/images/watt-icons/icon45.png differ diff --git a/webroot/images/watt-icons/icon46.png b/webroot/images/watt-icons/icon46.png new file mode 100644 index 0000000..33a6030 Binary files /dev/null and b/webroot/images/watt-icons/icon46.png differ diff --git a/webroot/images/watt-icons/icon47.png b/webroot/images/watt-icons/icon47.png new file mode 100644 index 0000000..cc953c6 Binary files /dev/null and b/webroot/images/watt-icons/icon47.png differ diff --git a/webroot/images/watt-icons/icon5.png b/webroot/images/watt-icons/icon5.png new file mode 100644 index 0000000..0ce1cd2 Binary files /dev/null and b/webroot/images/watt-icons/icon5.png differ diff --git a/webroot/images/watt-icons/icon6.png b/webroot/images/watt-icons/icon6.png new file mode 100644 index 0000000..64d740e Binary files /dev/null and b/webroot/images/watt-icons/icon6.png differ diff --git a/webroot/images/watt-icons/icon7.png b/webroot/images/watt-icons/icon7.png new file mode 100644 index 0000000..0ce1cd2 Binary files /dev/null and b/webroot/images/watt-icons/icon7.png differ diff --git a/webroot/images/watt-icons/icon8.png b/webroot/images/watt-icons/icon8.png new file mode 100644 index 0000000..f2e318e Binary files /dev/null and b/webroot/images/watt-icons/icon8.png differ diff --git a/webroot/images/watt-icons/icon9.png b/webroot/images/watt-icons/icon9.png new file mode 100644 index 0000000..887e29e Binary files /dev/null and b/webroot/images/watt-icons/icon9.png differ diff --git a/webroot/index.html b/webroot/index.html index 4681299..b3b1956 100644 --- a/webroot/index.html +++ b/webroot/index.html @@ -82,7 +82,7 @@
-
+
now
diff --git a/webroot/js/weatherscan.js b/webroot/js/weatherscan.js index d8a9747..d772442 100644 --- a/webroot/js/weatherscan.js +++ b/webroot/js/weatherscan.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.moment=t()}(this,function(){"use strict";var e,t;function n(){return e.apply(null,arguments)}function s(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function i(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function r(e){return void 0===e}function a(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function o(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function u(e,t){var n,s=[];for(n=0;n>>0,s=0;s0)for(n=0;n<_.length;n++)r(i=t[s=_[n]])||(e[s]=i);return e}var g=!1;function v(e){y(this,e),this._d=new Date(null!=e._d?e._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),!1===g&&(g=!0,n.updateOffset(this),g=!1)}function p(e){return e instanceof v||null!=e&&null!=e._isAMomentObject}function w(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function M(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=w(t)),n}function k(e,t,n){var s,i=Math.min(e.length,t.length),r=Math.abs(e.length-t.length),a=0;for(s=0;s=0?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+s}var N=/(\[[^\[]*\])|(\\)?([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,G=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},E={};function I(e,t,n,s){var i=s;"string"==typeof s&&(i=function(){return this[s]()}),e&&(E[e]=i),t&&(E[t[0]]=function(){return F(i.apply(this,arguments),t[1],t[2])}),n&&(E[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function A(e,t){return e.isValid()?(t=j(t,e.localeData()),V[t]=V[t]||function(e){var t,n,s,i=e.match(N);for(t=0,n=i.length;t=0&&G.test(e);)e=e.replace(G,s),G.lastIndex=0,n-=1;return e}var z=/\d/,Z=/\d\d/,$=/\d{3}/,q=/\d{4}/,J=/[+-]?\d{6}/,B=/\d\d?/,Q=/\d\d\d\d?/,X=/\d\d\d\d\d\d?/,K=/\d{1,3}/,ee=/\d{1,4}/,te=/[+-]?\d{1,6}/,ne=/\d+/,se=/[+-]?\d+/,ie=/Z|[+-]\d\d:?\d\d/gi,re=/Z|[+-]\d\d(?::?\d\d)?/gi,ae=/[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,oe={};function ue(e,t,n){oe[e]=b(t)?t:function(e,s){return e&&n?n:t}}function le(e,t){return l(oe,e)?oe[e](t._strict,t._locale):new RegExp(de(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,n,s,i){return t||n||s||i})))}function de(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var he={};function ce(e,t){var n,s=t;for("string"==typeof e&&(e=[e]),a(t)&&(s=function(e,n){n[t]=M(e)}),n=0;n68?1900:2e3)};var Oe,Te=be("FullYear",!0);function be(e,t){return function(s){return null!=s?(Pe(this,e,s),n.updateOffset(this,t),this):xe(this,e)}}function xe(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function Pe(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&Ye(e.year())&&1===e.month()&&29===e.date()?e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),We(n,e.month())):e._d["set"+(e._isUTC?"UTC":"")+t](n))}function We(e,t){if(isNaN(e)||isNaN(t))return NaN;var n,s=(t%(n=12)+n)%n;return e+=(t-s)/12,1===s?Ye(e)?29:28:31-s%7%2}Oe=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0){var n=Array.prototype.slice.call(arguments);n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function Ee(e,t,n){var s=7+t-n;return-((7+Ve(e,0,s).getUTCDay()-t)%7)+s-1}function Ie(e,t,n,s,i){var r,a,o=1+7*(t-1)+(7+n-s)%7+Ee(e,s,i);return o<=0?a=De(r=e-1)+o:o>De(e)?(r=e+1,a=o-De(e)):(r=e,a=o),{year:r,dayOfYear:a}}function Ae(e,t,n){var s,i,r=Ee(e.year(),t,n),a=Math.floor((e.dayOfYear()-r-1)/7)+1;return a<1?s=a+je(i=e.year()-1,t,n):a>je(e.year(),t,n)?(s=a-je(e.year(),t,n),i=e.year()+1):(i=e.year(),s=a),{week:s,year:i}}function je(e,t,n){var s=Ee(e,t,n),i=Ee(e+1,t,n);return(De(e)-s+i)/7}I("w",["ww",2],"wo","week"),I("W",["WW",2],"Wo","isoWeek"),C("week","w"),C("isoWeek","W"),U("week",5),U("isoWeek",5),ue("w",B),ue("ww",B,Z),ue("W",B),ue("WW",B,Z),fe(["w","ww","W","WW"],function(e,t,n,s){t[s.substr(0,1)]=M(e)});function ze(e,t){return e.slice(t,7).concat(e.slice(0,t))}I("d",0,"do","day"),I("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),I("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),I("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),I("e",0,0,"weekday"),I("E",0,0,"isoWeekday"),C("day","d"),C("weekday","e"),C("isoWeekday","E"),U("day",11),U("weekday",11),U("isoWeekday",11),ue("d",B),ue("e",B),ue("E",B),ue("dd",function(e,t){return t.weekdaysMinRegex(e)}),ue("ddd",function(e,t){return t.weekdaysShortRegex(e)}),ue("dddd",function(e,t){return t.weekdaysRegex(e)}),fe(["dd","ddd","dddd"],function(e,t,n,s){var i=n._locale.weekdaysParse(e,s,n._strict);null!=i?t.d=i:c(n).invalidWeekday=e}),fe(["d","e","E"],function(e,t,n,s){t[s]=M(e)});var Ze="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_");var $e="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_");var qe="Su_Mo_Tu_We_Th_Fr_Sa".split("_");var Je=ae;var Be=ae;var Qe=ae;function Xe(){function e(e,t){return t.length-e.length}var t,n,s,i,r,a=[],o=[],u=[],l=[];for(t=0;t<7;t++)n=h([2e3,1]).day(t),s=this.weekdaysMin(n,""),i=this.weekdaysShort(n,""),r=this.weekdays(n,""),a.push(s),o.push(i),u.push(r),l.push(s),l.push(i),l.push(r);for(a.sort(e),o.sort(e),u.sort(e),l.sort(e),t=0;t<7;t++)o[t]=de(o[t]),u[t]=de(u[t]),l[t]=de(l[t]);this._weekdaysRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+o.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+a.join("|")+")","i")}function Ke(){return this.hours()%12||12}function et(e,t){I(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function tt(e,t){return t._meridiemParse}I("H",["HH",2],0,"hour"),I("h",["hh",2],0,Ke),I("k",["kk",2],0,function(){return this.hours()||24}),I("hmm",0,0,function(){return""+Ke.apply(this)+F(this.minutes(),2)}),I("hmmss",0,0,function(){return""+Ke.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)}),I("Hmm",0,0,function(){return""+this.hours()+F(this.minutes(),2)}),I("Hmmss",0,0,function(){return""+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)}),et("a",!0),et("A",!1),C("hour","h"),U("hour",13),ue("a",tt),ue("A",tt),ue("H",B),ue("h",B),ue("k",B),ue("HH",B,Z),ue("hh",B,Z),ue("kk",B,Z),ue("hmm",Q),ue("hmmss",X),ue("Hmm",Q),ue("Hmmss",X),ce(["H","HH"],ve),ce(["k","kk"],function(e,t,n){var s=M(e);t[ve]=24===s?0:s}),ce(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),ce(["h","hh"],function(e,t,n){t[ve]=M(e),c(n).bigHour=!0}),ce("hmm",function(e,t,n){var s=e.length-2;t[ve]=M(e.substr(0,s)),t[pe]=M(e.substr(s)),c(n).bigHour=!0}),ce("hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[ve]=M(e.substr(0,s)),t[pe]=M(e.substr(s,2)),t[we]=M(e.substr(i)),c(n).bigHour=!0}),ce("Hmm",function(e,t,n){var s=e.length-2;t[ve]=M(e.substr(0,s)),t[pe]=M(e.substr(s))}),ce("Hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[ve]=M(e.substr(0,s)),t[pe]=M(e.substr(s,2)),t[we]=M(e.substr(i))});var nt,st=be("Hours",!0),it={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:He,monthsShort:Re,week:{dow:0,doy:6},weekdays:Ze,weekdaysMin:qe,weekdaysShort:$e,meridiemParse:/[ap]\.?m?\.?/i},rt={},at={};function ot(e){return e?e.toLowerCase().replace("_","-"):e}function ut(e){var t=null;if(!rt[e]&&"undefined"!=typeof module&&module&&module.exports)try{t=nt._abbr,require("./locale/"+e),lt(t)}catch(e){}return rt[e]}function lt(e,t){var n;return e&&((n=r(t)?ht(e):dt(e,t))?nt=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),nt._abbr}function dt(e,t){if(null!==t){var n,s=it;if(t.abbr=e,null!=rt[e])T("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."),s=rt[e]._config;else if(null!=t.parentLocale)if(null!=rt[t.parentLocale])s=rt[t.parentLocale]._config;else{if(null==(n=ut(t.parentLocale)))return at[t.parentLocale]||(at[t.parentLocale]=[]),at[t.parentLocale].push({name:e,config:t}),null;s=n._config}return rt[e]=new P(x(s,t)),at[e]&&at[e].forEach(function(e){dt(e.name,e.config)}),lt(e),rt[e]}return delete rt[e],null}function ht(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return nt;if(!s(e)){if(t=ut(e))return t;e=[e]}return function(e){for(var t,n,s,i,r=0;r0;){if(s=ut(i.slice(0,t).join("-")))return s;if(n&&n.length>=t&&k(i,n,!0)>=t-1)break;t--}r++}return nt}(e)}function ct(e){var t,n=e._a;return n&&-2===c(e).overflow&&(t=n[ye]<0||n[ye]>11?ye:n[ge]<1||n[ge]>We(n[_e],n[ye])?ge:n[ve]<0||n[ve]>24||24===n[ve]&&(0!==n[pe]||0!==n[we]||0!==n[Me])?ve:n[pe]<0||n[pe]>59?pe:n[we]<0||n[we]>59?we:n[Me]<0||n[Me]>999?Me:-1,c(e)._overflowDayOfYear&&(t<_e||t>ge)&&(t=ge),c(e)._overflowWeeks&&-1===t&&(t=ke),c(e)._overflowWeekday&&-1===t&&(t=Se),c(e).overflow=t),e}function ft(e,t,n){return null!=e?e:null!=t?t:n}function mt(e){var t,s,i,r,a,o=[];if(!e._d){for(i=function(e){var t=new Date(n.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[ge]&&null==e._a[ye]&&function(e){var t,n,s,i,r,a,o,u;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)r=1,a=4,n=ft(t.GG,e._a[_e],Ae(xt(),1,4).year),s=ft(t.W,1),((i=ft(t.E,1))<1||i>7)&&(u=!0);else{r=e._locale._week.dow,a=e._locale._week.doy;var l=Ae(xt(),r,a);n=ft(t.gg,e._a[_e],l.year),s=ft(t.w,l.week),null!=t.d?((i=t.d)<0||i>6)&&(u=!0):null!=t.e?(i=t.e+r,(t.e<0||t.e>6)&&(u=!0)):i=r}s<1||s>je(n,r,a)?c(e)._overflowWeeks=!0:null!=u?c(e)._overflowWeekday=!0:(o=Ie(n,s,i,r,a),e._a[_e]=o.year,e._dayOfYear=o.dayOfYear)}(e),null!=e._dayOfYear&&(a=ft(e._a[_e],i[_e]),(e._dayOfYear>De(a)||0===e._dayOfYear)&&(c(e)._overflowDayOfYear=!0),s=Ve(a,0,e._dayOfYear),e._a[ye]=s.getUTCMonth(),e._a[ge]=s.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=o[t]=i[t];for(;t<7;t++)e._a[t]=o[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[ve]&&0===e._a[pe]&&0===e._a[we]&&0===e._a[Me]&&(e._nextDay=!0,e._a[ve]=0),e._d=(e._useUTC?Ve:function(e,t,n,s,i,r,a){var o;return e<100&&e>=0?(o=new Date(e+400,t,n,s,i,r,a),isFinite(o.getFullYear())&&o.setFullYear(e)):o=new Date(e,t,n,s,i,r,a),o}).apply(null,o),r=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[ve]=24),e._w&&void 0!==e._w.d&&e._w.d!==r&&(c(e).weekdayMismatch=!0)}}var _t=/^\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)?)?$/,yt=/^\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)?)?$/,gt=/Z|[+-]\d\d(?::?\d\d)?/,vt=[["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/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],pt=[["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/]],wt=/^\/?Date\((\-?\d+)/i;function Mt(e){var t,n,s,i,r,a,o=e._i,u=_t.exec(o)||yt.exec(o);if(u){for(c(e).iso=!0,t=0,n=vt.length;t0&&c(e).unusedInput.push(a),o=o.slice(o.indexOf(s)+s.length),l+=s.length),E[r]?(s?c(e).empty=!1:c(e).unusedTokens.push(r),me(r,s,e)):e._strict&&!s&&c(e).unusedTokens.push(r);c(e).charsLeftOver=u-l,o.length>0&&c(e).unusedInput.push(o),e._a[ve]<=12&&!0===c(e).bigHour&&e._a[ve]>0&&(c(e).bigHour=void 0),c(e).parsedDateParts=e._a.slice(0),c(e).meridiem=e._meridiem,e._a[ve]=function(e,t,n){var s;if(null==n)return t;return null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((s=e.isPM(n))&&t<12&&(t+=12),s||12!==t||(t=0),t):t}(e._locale,e._a[ve],e._meridiem),mt(e),ct(e)}else Yt(e);else Mt(e)}function Tt(e){var t=e._i,l=e._f;return e._locale=e._locale||ht(e._l),null===t||void 0===l&&""===t?m({nullInput:!0}):("string"==typeof t&&(e._i=t=e._locale.preparse(t)),p(t)?new v(ct(t)):(o(t)?e._d=t:s(l)?function(e){var t,n,s,i,r;if(0===e._f.length)return c(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:m()});function Ct(e,t){var n,i;if(1===t.length&&s(t[0])&&(t=t[0]),!t.length)return xt();for(n=t[0],i=1;i=0?new Date(e+400,t,n)-an:new Date(e,t,n).valueOf()}function ln(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-an:Date.UTC(e,t,n)}function dn(e,t){I(0,[e,e.length],0,t)}function hn(e,t,n,s,i){var r;return null==e?Ae(this,s,i).year:(t>(r=je(e,s,i))&&(t=r),function(e,t,n,s,i){var r=Ie(e,t,n,s,i),a=Ve(r.year,0,r.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}.call(this,e,t,n,s,i))}I(0,["gg",2],0,function(){return this.weekYear()%100}),I(0,["GG",2],0,function(){return this.isoWeekYear()%100}),dn("gggg","weekYear"),dn("ggggg","weekYear"),dn("GGGG","isoWeekYear"),dn("GGGGG","isoWeekYear"),C("weekYear","gg"),C("isoWeekYear","GG"),U("weekYear",1),U("isoWeekYear",1),ue("G",se),ue("g",se),ue("GG",B,Z),ue("gg",B,Z),ue("GGGG",ee,q),ue("gggg",ee,q),ue("GGGGG",te,J),ue("ggggg",te,J),fe(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,s){t[s.substr(0,2)]=M(e)}),fe(["gg","GG"],function(e,t,s,i){t[i]=n.parseTwoDigitYear(e)}),I("Q",0,"Qo","quarter"),C("quarter","Q"),U("quarter",7),ue("Q",z),ce("Q",function(e,t){t[ye]=3*(M(e)-1)}),I("D",["DD",2],"Do","date"),C("date","D"),U("date",9),ue("D",B),ue("DD",B,Z),ue("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),ce(["D","DD"],ge),ce("Do",function(e,t){t[ge]=M(e.match(B)[0])});var cn=be("Date",!0);I("DDD",["DDDD",3],"DDDo","dayOfYear"),C("dayOfYear","DDD"),U("dayOfYear",4),ue("DDD",K),ue("DDDD",$),ce(["DDD","DDDD"],function(e,t,n){n._dayOfYear=M(e)}),I("m",["mm",2],0,"minute"),C("minute","m"),U("minute",14),ue("m",B),ue("mm",B,Z),ce(["m","mm"],pe);var fn=be("Minutes",!1);I("s",["ss",2],0,"second"),C("second","s"),U("second",15),ue("s",B),ue("ss",B,Z),ce(["s","ss"],we);var mn,_n=be("Seconds",!1);for(I("S",0,0,function(){return~~(this.millisecond()/100)}),I(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),I(0,["SSS",3],0,"millisecond"),I(0,["SSSS",4],0,function(){return 10*this.millisecond()}),I(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),I(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),I(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),I(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),I(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),C("millisecond","ms"),U("millisecond",16),ue("S",K,z),ue("SS",K,Z),ue("SSS",K,$),mn="SSSS";mn.length<=9;mn+="S")ue(mn,ne);function yn(e,t){t[Me]=M(1e3*("0."+e))}for(mn="S";mn.length<=9;mn+="S")ce(mn,yn);var gn=be("Milliseconds",!1);I("z",0,0,"zoneAbbr"),I("zz",0,0,"zoneName");var vn=v.prototype;function pn(e){return e}vn.add=Bt,vn.calendar=function(e,t){var s=e||xt(),i=Vt(s,this).startOf("day"),r=n.calendarFormat(this,i)||"sameElse",a=t&&(b(t[r])?t[r].call(this,s):t[r]);return this.format(a||this.localeData().calendar(r,this,xt(s)))},vn.clone=function(){return new v(this)},vn.diff=function(e,t,n){var s,i,r;if(!this.isValid())return NaN;if(!(s=Vt(e,this)).isValid())return NaN;switch(i=6e4*(s.utcOffset()-this.utcOffset()),t=H(t)){case"year":r=Xt(this,s)/12;break;case"month":r=Xt(this,s);break;case"quarter":r=Xt(this,s)/3;break;case"second":r=(this-s)/1e3;break;case"minute":r=(this-s)/6e4;break;case"hour":r=(this-s)/36e5;break;case"day":r=(this-s-i)/864e5;break;case"week":r=(this-s-i)/6048e5;break;default:r=this-s}return n?r:w(r)},vn.endOf=function(e){var t;if(void 0===(e=H(e))||"millisecond"===e||!this.isValid())return this;var s=this._isUTC?ln:un;switch(e){case"year":t=s(this.year()+1,0,1)-1;break;case"quarter":t=s(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=s(this.year(),this.month()+1,1)-1;break;case"week":t=s(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=s(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=s(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=rn-on(t+(this._isUTC?0:this.utcOffset()*sn),rn)-1;break;case"minute":t=this._d.valueOf(),t+=sn-on(t,sn)-1;break;case"second":t=this._d.valueOf(),t+=nn-on(t,nn)-1}return this._d.setTime(t),n.updateOffset(this,!0),this},vn.format=function(e){e||(e=this.isUtc()?n.defaultFormatUtc:n.defaultFormat);var t=A(this,e);return this.localeData().postformat(t)},vn.from=function(e,t){return this.isValid()&&(p(e)&&e.isValid()||xt(e).isValid())?zt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},vn.fromNow=function(e){return this.from(xt(),e)},vn.to=function(e,t){return this.isValid()&&(p(e)&&e.isValid()||xt(e).isValid())?zt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},vn.toNow=function(e){return this.to(xt(),e)},vn.get=function(e){return b(this[e=H(e)])?this[e]():this},vn.invalidAt=function(){return c(this).overflow},vn.isAfter=function(e,t){var n=p(e)?e:xt(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=H(t)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()9999?A(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):b(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",A(n,"Z")):A(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},vn.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e="moment",t="";this.isLocal()||(e=0===this.utcOffset()?"moment.utc":"moment.parseZone",t="Z");var n="["+e+'("]',s=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",i=t+'[")]';return this.format(n+s+"-MM-DD[T]HH:mm:ss.SSS"+i)},vn.toJSON=function(){return this.isValid()?this.toISOString():null},vn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},vn.unix=function(){return Math.floor(this.valueOf()/1e3)},vn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},vn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},vn.year=Te,vn.isLeapYear=function(){return Ye(this.year())},vn.weekYear=function(e){return hn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},vn.isoWeekYear=function(e){return hn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},vn.quarter=vn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},vn.month=Ue,vn.daysInMonth=function(){return We(this.year(),this.month())},vn.week=vn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")},vn.isoWeek=vn.isoWeeks=function(e){var t=Ae(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")},vn.weeksInYear=function(){var e=this.localeData()._week;return je(this.year(),e.dow,e.doy)},vn.isoWeeksInYear=function(){return je(this.year(),1,4)},vn.date=cn,vn.day=vn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return"string"!=typeof e?e:isNaN(e)?"number"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,"d")):t},vn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")},vn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},vn.dayOfYear=function(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")},vn.hour=vn.hours=st,vn.minute=vn.minutes=fn,vn.second=vn.seconds=_n,vn.millisecond=vn.milliseconds=gn,vn.utcOffset=function(e,t,s){var i,r=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if("string"==typeof e){if(null===(e=Gt(re,e)))return this}else Math.abs(e)<16&&!s&&(e*=60);return!this._isUTC&&t&&(i=Et(this)),this._offset=e,this._isUTC=!0,null!=i&&this.add(i,"m"),r!==e&&(!t||this._changeInProgress?Jt(this,zt(e-r,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,n.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Et(this)},vn.utc=function(e){return this.utcOffset(0,e)},vn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(Et(this),"m")),this},vn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var e=Gt(ie,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},vn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?xt(e).utcOffset():0,(this.utcOffset()-e)%60==0)},vn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},vn.isLocal=function(){return!!this.isValid()&&!this._isUTC},vn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},vn.isUtc=It,vn.isUTC=It,vn.zoneAbbr=function(){return this._isUTC?"UTC":""},vn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},vn.dates=D("dates accessor is deprecated. Use date instead.",cn),vn.months=D("months accessor is deprecated. Use month instead",Ue),vn.years=D("years accessor is deprecated. Use year instead",Te),vn.zone=D("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}),vn.isDSTShifted=D("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!r(this._isDSTShifted))return this._isDSTShifted;var e={};if(y(e,this),(e=Tt(e))._a){var t=e._isUTC?h(e._a):xt(e._a);this._isDSTShifted=this.isValid()&&k(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted});var wn=P.prototype;function Mn(e,t,n,s){var i=ht(),r=h().set(s,t);return i[n](r,e)}function kn(e,t,n){if(a(e)&&(t=e,e=void 0),e=e||"",null!=t)return Mn(e,t,n,"month");var s,i=[];for(s=0;s<12;s++)i[s]=Mn(e,s,n,"month");return i}function Sn(e,t,n,s){"boolean"==typeof e?(a(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,a(t)&&(n=t,t=void 0),t=t||"");var i,r=ht(),o=e?r._week.dow:0;if(null!=n)return Mn(t,(n+o)%7,s,"day");var u=[];for(i=0;i<7;i++)u[i]=Mn(t,(i+o)%7,s,"day");return u}wn.calendar=function(e,t,n){var s=this._calendar[e]||this._calendar.sameElse;return b(s)?s.call(t,n):s},wn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,function(e){return e.slice(1)}),this._longDateFormat[e])},wn.invalidDate=function(){return this._invalidDate},wn.ordinal=function(e){return this._ordinal.replace("%d",e)},wn.preparse=pn,wn.postformat=pn,wn.relativeTime=function(e,t,n,s){var i=this._relativeTime[n];return b(i)?i(e,t,n,s):i.replace(/%d/i,e)},wn.pastFuture=function(e,t){var n=this._relativeTime[e>0?"future":"past"];return b(n)?n(t):n.replace(/%s/i,t)},wn.set=function(e){var t,n;for(n in e)b(t=e[n])?this[n]=t:this["_"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},wn.months=function(e,t){return e?s(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Ce).test(t)?"format":"standalone"][e.month()]:s(this._months)?this._months:this._months.standalone},wn.monthsShort=function(e,t){return e?s(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Ce.test(t)?"format":"standalone"][e.month()]:s(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},wn.monthsParse=function(e,t,n){var s,i,r;if(this._monthsParseExact)return function(e,t,n){var s,i,r,a=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],s=0;s<12;++s)r=h([2e3,s]),this._shortMonthsParse[s]=this.monthsShort(r,"").toLocaleLowerCase(),this._longMonthsParse[s]=this.months(r,"").toLocaleLowerCase();return n?"MMM"===t?-1!==(i=Oe.call(this._shortMonthsParse,a))?i:null:-1!==(i=Oe.call(this._longMonthsParse,a))?i:null:"MMM"===t?-1!==(i=Oe.call(this._shortMonthsParse,a))?i:-1!==(i=Oe.call(this._longMonthsParse,a))?i:null:-1!==(i=Oe.call(this._longMonthsParse,a))?i:-1!==(i=Oe.call(this._shortMonthsParse,a))?i:null}.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),s=0;s<12;s++){if(i=h([2e3,s]),n&&!this._longMonthsParse[s]&&(this._longMonthsParse[s]=new RegExp("^"+this.months(i,"").replace(".","")+"$","i"),this._shortMonthsParse[s]=new RegExp("^"+this.monthsShort(i,"").replace(".","")+"$","i")),n||this._monthsParse[s]||(r="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[s]=new RegExp(r.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[s].test(e))return s;if(n&&"MMM"===t&&this._shortMonthsParse[s].test(e))return s;if(!n&&this._monthsParse[s].test(e))return s}},wn.monthsRegex=function(e){return this._monthsParseExact?(l(this,"_monthsRegex")||Ge.call(this),e?this._monthsStrictRegex:this._monthsRegex):(l(this,"_monthsRegex")||(this._monthsRegex=Ne),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},wn.monthsShortRegex=function(e){return this._monthsParseExact?(l(this,"_monthsRegex")||Ge.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(l(this,"_monthsShortRegex")||(this._monthsShortRegex=Fe),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},wn.week=function(e){return Ae(e,this._week.dow,this._week.doy).week},wn.firstDayOfYear=function(){return this._week.doy},wn.firstDayOfWeek=function(){return this._week.dow},wn.weekdays=function(e,t){var n=s(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?ze(n,this._week.dow):e?n[e.day()]:n},wn.weekdaysMin=function(e){return!0===e?ze(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},wn.weekdaysShort=function(e){return!0===e?ze(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},wn.weekdaysParse=function(e,t,n){var s,i,r;if(this._weekdaysParseExact)return function(e,t,n){var s,i,r,a=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],s=0;s<7;++s)r=h([2e3,1]).day(s),this._minWeekdaysParse[s]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[s]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[s]=this.weekdays(r,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(i=Oe.call(this._weekdaysParse,a))?i:null:"ddd"===t?-1!==(i=Oe.call(this._shortWeekdaysParse,a))?i:null:-1!==(i=Oe.call(this._minWeekdaysParse,a))?i:null:"dddd"===t?-1!==(i=Oe.call(this._weekdaysParse,a))?i:-1!==(i=Oe.call(this._shortWeekdaysParse,a))?i:-1!==(i=Oe.call(this._minWeekdaysParse,a))?i:null:"ddd"===t?-1!==(i=Oe.call(this._shortWeekdaysParse,a))?i:-1!==(i=Oe.call(this._weekdaysParse,a))?i:-1!==(i=Oe.call(this._minWeekdaysParse,a))?i:null:-1!==(i=Oe.call(this._minWeekdaysParse,a))?i:-1!==(i=Oe.call(this._weekdaysParse,a))?i:-1!==(i=Oe.call(this._shortWeekdaysParse,a))?i:null}.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),s=0;s<7;s++){if(i=h([2e3,1]).day(s),n&&!this._fullWeekdaysParse[s]&&(this._fullWeekdaysParse[s]=new RegExp("^"+this.weekdays(i,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[s]=new RegExp("^"+this.weekdaysShort(i,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[s]=new RegExp("^"+this.weekdaysMin(i,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[s]||(r="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[s]=new RegExp(r.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[s].test(e))return s;if(n&&"ddd"===t&&this._shortWeekdaysParse[s].test(e))return s;if(n&&"dd"===t&&this._minWeekdaysParse[s].test(e))return s;if(!n&&this._weekdaysParse[s].test(e))return s}},wn.weekdaysRegex=function(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Xe.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(l(this,"_weekdaysRegex")||(this._weekdaysRegex=Je),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},wn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Xe.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(l(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Be),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},wn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Xe.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(l(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Qe),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},wn.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},wn.meridiem=function(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"},lt("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===M(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),n.lang=D("moment.lang is deprecated. Use moment.locale instead.",lt),n.langData=D("moment.langData is deprecated. Use moment.localeData instead.",ht);var Dn=Math.abs;function Yn(e,t,n,s){var i=zt(t,n);return e._milliseconds+=s*i._milliseconds,e._days+=s*i._days,e._months+=s*i._months,e._bubble()}function On(e){return e<0?Math.floor(e):Math.ceil(e)}function Tn(e){return 4800*e/146097}function bn(e){return 146097*e/4800}function xn(e){return function(){return this.as(e)}}var Pn=xn("ms"),Wn=xn("s"),Cn=xn("m"),Hn=xn("h"),Rn=xn("d"),Ln=xn("w"),Un=xn("M"),Fn=xn("Q"),Nn=xn("y");function Gn(e){return function(){return this.isValid()?this._data[e]:NaN}}var Vn=Gn("milliseconds"),En=Gn("seconds"),In=Gn("minutes"),An=Gn("hours"),jn=Gn("days"),zn=Gn("months"),Zn=Gn("years");var $n=Math.round,qn={ss:44,s:45,m:45,h:22,d:26,M:11};var Jn=Math.abs;function Bn(e){return(e>0)-(e<0)||+e}function Qn(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Jn(this._milliseconds)/1e3,s=Jn(this._days),i=Jn(this._months);e=w(n/60),t=w(e/60),n%=60,e%=60;var r=w(i/12),a=i%=12,o=s,u=t,l=e,d=n?n.toFixed(3).replace(/\.?0+$/,""):"",h=this.asSeconds();if(!h)return"P0D";var c=h<0?"-":"",f=Bn(this._months)!==Bn(h)?"-":"",m=Bn(this._days)!==Bn(h)?"-":"",_=Bn(this._milliseconds)!==Bn(h)?"-":"";return c+"P"+(r?f+r+"Y":"")+(a?f+a+"M":"")+(o?m+o+"D":"")+(u||l||d?"T":"")+(u?_+u+"H":"")+(l?_+l+"M":"")+(d?_+d+"S":"")}var Xn=Rt.prototype;return Xn.isValid=function(){return this._isValid},Xn.abs=function(){var e=this._data;return this._milliseconds=Dn(this._milliseconds),this._days=Dn(this._days),this._months=Dn(this._months),e.milliseconds=Dn(e.milliseconds),e.seconds=Dn(e.seconds),e.minutes=Dn(e.minutes),e.hours=Dn(e.hours),e.months=Dn(e.months),e.years=Dn(e.years),this},Xn.add=function(e,t){return Yn(this,e,t,1)},Xn.subtract=function(e,t){return Yn(this,e,t,-1)},Xn.as=function(e){if(!this.isValid())return NaN;var t,n,s=this._milliseconds;if("month"===(e=H(e))||"quarter"===e||"year"===e)switch(t=this._days+s/864e5,n=this._months+Tn(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(bn(this._months)),e){case"week":return t/7+s/6048e5;case"day":return t+s/864e5;case"hour":return 24*t+s/36e5;case"minute":return 1440*t+s/6e4;case"second":return 86400*t+s/1e3;case"millisecond":return Math.floor(864e5*t)+s;default:throw new Error("Unknown unit "+e)}},Xn.asMilliseconds=Pn,Xn.asSeconds=Wn,Xn.asMinutes=Cn,Xn.asHours=Hn,Xn.asDays=Rn,Xn.asWeeks=Ln,Xn.asMonths=Un,Xn.asQuarters=Fn,Xn.asYears=Nn,Xn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*M(this._months/12):NaN},Xn._bubble=function(){var e,t,n,s,i,r=this._milliseconds,a=this._days,o=this._months,u=this._data;return r>=0&&a>=0&&o>=0||r<=0&&a<=0&&o<=0||(r+=864e5*On(bn(o)+a),a=0,o=0),u.milliseconds=r%1e3,e=w(r/1e3),u.seconds=e%60,t=w(e/60),u.minutes=t%60,n=w(t/60),u.hours=n%24,a+=w(n/24),o+=i=w(Tn(a)),a-=On(bn(i)),s=w(o/12),o%=12,u.days=a,u.months=o,u.years=s,this},Xn.clone=function(){return zt(this)},Xn.get=function(e){return e=H(e),this.isValid()?this[e+"s"]():NaN},Xn.milliseconds=Vn,Xn.seconds=En,Xn.minutes=In,Xn.hours=An,Xn.days=jn,Xn.weeks=function(){return w(this.days()/7)},Xn.months=zn,Xn.years=Zn,Xn.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var s=zt(e).abs(),i=$n(s.as("s")),r=$n(s.as("m")),a=$n(s.as("h")),o=$n(s.as("d")),u=$n(s.as("M")),l=$n(s.as("y")),d=i<=qn.ss&&["s",i]||i0,d[4]=n,function(e,t,n,s,i){return i.relativeTime(t||1,!!n,e,s)}.apply(null,d)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},Xn.toISOString=Qn,Xn.toString=Qn,Xn.toJSON=Qn,Xn.locale=Kt,Xn.localeData=tn,Xn.toIsoString=D("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Qn),Xn.lang=en,I("X",0,0,"unix"),I("x",0,0,"valueOf"),ue("x",se),ue("X",/[+-]?\d+(\.\d{1,3})?/),ce("X",function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))}),ce("x",function(e,t,n){n._d=new Date(M(e))}),n.version="2.24.0",e=xt,n.fn=vn,n.min=function(){return Ct("isBefore",[].slice.call(arguments,0))},n.max=function(){return Ct("isAfter",[].slice.call(arguments,0))},n.now=function(){return Date.now?Date.now():+new Date},n.utc=h,n.unix=function(e){return xt(1e3*e)},n.months=function(e,t){return kn(e,t,"months")},n.isDate=o,n.locale=lt,n.invalid=m,n.duration=zt,n.isMoment=p,n.weekdays=function(e,t,n){return Sn(e,t,n,"weekdays")},n.parseZone=function(){return xt.apply(null,arguments).parseZone()},n.localeData=ht,n.isDuration=Lt,n.monthsShort=function(e,t){return kn(e,t,"monthsShort")},n.weekdaysMin=function(e,t,n){return Sn(e,t,n,"weekdaysMin")},n.defineLocale=dt,n.updateLocale=function(e,t){if(null!=t){var n,s,i=it;null!=(s=ut(e))&&(i=s._config),(n=new P(t=x(i,t))).parentLocale=rt[e],rt[e]=n,lt(e)}else null!=rt[e]&&(null!=rt[e].parentLocale?rt[e]=rt[e].parentLocale:null!=rt[e]&&delete rt[e]);return rt[e]},n.locales=function(){return Y(rt)},n.weekdaysShort=function(e,t,n){return Sn(e,t,n,"weekdaysShort")},n.normalizeUnits=H,n.relativeTimeRounding=function(e){return void 0===e?$n:"function"==typeof e&&($n=e,!0)},n.relativeTimeThreshold=function(e,t){return void 0!==qn[e]&&(void 0===t?qn[e]:(qn[e]=t,"s"===e&&(qn.ss=t-1),!0))},n.calendarFormat=function(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},n.prototype=vn,n.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},n});let image={width:1440,height:1080};function updateScale(){let e,t=window.innerWidth,n=window.innerHeight,s=t/image.width,i=n/image.height;e=s]h:m:ssa")} \ No newline at end of file +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.moment=t()}(this,function(){"use strict";var e,t;function n(){return e.apply(null,arguments)}function s(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function i(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function r(e){return void 0===e}function a(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function o(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function u(e,t){var n,s=[];for(n=0;n>>0,s=0;s0)for(n=0;n<_.length;n++)r(i=t[s=_[n]])||(e[s]=i);return e}var g=!1;function v(e){y(this,e),this._d=new Date(null!=e._d?e._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),!1===g&&(g=!0,n.updateOffset(this),g=!1)}function p(e){return e instanceof v||null!=e&&null!=e._isAMomentObject}function w(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function M(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=w(t)),n}function S(e,t,n){var s,i=Math.min(e.length,t.length),r=Math.abs(e.length-t.length),a=0;for(s=0;s=0?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+s}var E=/(\[[^\[]*\])|(\\)?([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=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,G={},V={};function I(e,t,n,s){var i=s;"string"==typeof s&&(i=function(){return this[s]()}),e&&(V[e]=i),t&&(V[t[0]]=function(){return F(i.apply(this,arguments),t[1],t[2])}),n&&(V[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function A(e,t){return e.isValid()?(t=j(t,e.localeData()),G[t]=G[t]||function(e){var t,n,s,i=e.match(E);for(t=0,n=i.length;t=0&&N.test(e);)e=e.replace(N,s),N.lastIndex=0,n-=1;return e}var z=/\d/,Z=/\d\d/,$=/\d{3}/,q=/\d{4}/,B=/[+-]?\d{6}/,J=/\d\d?/,Q=/\d\d\d\d?/,X=/\d\d\d\d\d\d?/,K=/\d{1,3}/,ee=/\d{1,4}/,te=/[+-]?\d{1,6}/,ne=/\d+/,se=/[+-]?\d+/,ie=/Z|[+-]\d\d:?\d\d/gi,re=/Z|[+-]\d\d(?::?\d\d)?/gi,ae=/[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,oe={};function ue(e,t,n){oe[e]=b(t)?t:function(e,s){return e&&n?n:t}}function de(e,t){return d(oe,e)?oe[e](t._strict,t._locale):new RegExp(le(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,n,s,i){return t||n||s||i})))}function le(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var he={};function ce(e,t){var n,s=t;for("string"==typeof e&&(e=[e]),a(t)&&(s=function(e,n){n[t]=M(e)}),n=0;n68?1900:2e3)};var Oe,Te=be("FullYear",!0);function be(e,t){return function(s){return null!=s?(Pe(this,e,s),n.updateOffset(this,t),this):xe(this,e)}}function xe(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function Pe(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&Ye(e.year())&&1===e.month()&&29===e.date()?e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),We(n,e.month())):e._d["set"+(e._isUTC?"UTC":"")+t](n))}function We(e,t){if(isNaN(e)||isNaN(t))return NaN;var n,s=(t%(n=12)+n)%n;return e+=(t-s)/12,1===s?Ye(e)?29:28:31-s%7%2}Oe=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0){var n=Array.prototype.slice.call(arguments);n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function Ve(e,t,n){var s=7+t-n;return-((7+Ge(e,0,s).getUTCDay()-t)%7)+s-1}function Ie(e,t,n,s,i){var r,a,o=1+7*(t-1)+(7+n-s)%7+Ve(e,s,i);return o<=0?a=De(r=e-1)+o:o>De(e)?(r=e+1,a=o-De(e)):(r=e,a=o),{year:r,dayOfYear:a}}function Ae(e,t,n){var s,i,r=Ve(e.year(),t,n),a=Math.floor((e.dayOfYear()-r-1)/7)+1;return a<1?s=a+je(i=e.year()-1,t,n):a>je(e.year(),t,n)?(s=a-je(e.year(),t,n),i=e.year()+1):(i=e.year(),s=a),{week:s,year:i}}function je(e,t,n){var s=Ve(e,t,n),i=Ve(e+1,t,n);return(De(e)-s+i)/7}I("w",["ww",2],"wo","week"),I("W",["WW",2],"Wo","isoWeek"),C("week","w"),C("isoWeek","W"),L("week",5),L("isoWeek",5),ue("w",J),ue("ww",J,Z),ue("W",J),ue("WW",J,Z),fe(["w","ww","W","WW"],function(e,t,n,s){t[s.substr(0,1)]=M(e)});function ze(e,t){return e.slice(t,7).concat(e.slice(0,t))}I("d",0,"do","day"),I("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),I("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),I("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),I("e",0,0,"weekday"),I("E",0,0,"isoWeekday"),C("day","d"),C("weekday","e"),C("isoWeekday","E"),L("day",11),L("weekday",11),L("isoWeekday",11),ue("d",J),ue("e",J),ue("E",J),ue("dd",function(e,t){return t.weekdaysMinRegex(e)}),ue("ddd",function(e,t){return t.weekdaysShortRegex(e)}),ue("dddd",function(e,t){return t.weekdaysRegex(e)}),fe(["dd","ddd","dddd"],function(e,t,n,s){var i=n._locale.weekdaysParse(e,s,n._strict);null!=i?t.d=i:c(n).invalidWeekday=e}),fe(["d","e","E"],function(e,t,n,s){t[s]=M(e)});var Ze="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_");var $e="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_");var qe="Su_Mo_Tu_We_Th_Fr_Sa".split("_");var Be=ae;var Je=ae;var Qe=ae;function Xe(){function e(e,t){return t.length-e.length}var t,n,s,i,r,a=[],o=[],u=[],d=[];for(t=0;t<7;t++)n=h([2e3,1]).day(t),s=this.weekdaysMin(n,""),i=this.weekdaysShort(n,""),r=this.weekdays(n,""),a.push(s),o.push(i),u.push(r),d.push(s),d.push(i),d.push(r);for(a.sort(e),o.sort(e),u.sort(e),d.sort(e),t=0;t<7;t++)o[t]=le(o[t]),u[t]=le(u[t]),d[t]=le(d[t]);this._weekdaysRegex=new RegExp("^("+d.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+o.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+a.join("|")+")","i")}function Ke(){return this.hours()%12||12}function et(e,t){I(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function tt(e,t){return t._meridiemParse}I("H",["HH",2],0,"hour"),I("h",["hh",2],0,Ke),I("k",["kk",2],0,function(){return this.hours()||24}),I("hmm",0,0,function(){return""+Ke.apply(this)+F(this.minutes(),2)}),I("hmmss",0,0,function(){return""+Ke.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)}),I("Hmm",0,0,function(){return""+this.hours()+F(this.minutes(),2)}),I("Hmmss",0,0,function(){return""+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)}),et("a",!0),et("A",!1),C("hour","h"),L("hour",13),ue("a",tt),ue("A",tt),ue("H",J),ue("h",J),ue("k",J),ue("HH",J,Z),ue("hh",J,Z),ue("kk",J,Z),ue("hmm",Q),ue("hmmss",X),ue("Hmm",Q),ue("Hmmss",X),ce(["H","HH"],ve),ce(["k","kk"],function(e,t,n){var s=M(e);t[ve]=24===s?0:s}),ce(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),ce(["h","hh"],function(e,t,n){t[ve]=M(e),c(n).bigHour=!0}),ce("hmm",function(e,t,n){var s=e.length-2;t[ve]=M(e.substr(0,s)),t[pe]=M(e.substr(s)),c(n).bigHour=!0}),ce("hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[ve]=M(e.substr(0,s)),t[pe]=M(e.substr(s,2)),t[we]=M(e.substr(i)),c(n).bigHour=!0}),ce("Hmm",function(e,t,n){var s=e.length-2;t[ve]=M(e.substr(0,s)),t[pe]=M(e.substr(s))}),ce("Hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[ve]=M(e.substr(0,s)),t[pe]=M(e.substr(s,2)),t[we]=M(e.substr(i))});var nt,st=be("Hours",!0),it={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Re,monthsShort:He,week:{dow:0,doy:6},weekdays:Ze,weekdaysMin:qe,weekdaysShort:$e,meridiemParse:/[ap]\.?m?\.?/i},rt={},at={};function ot(e){return e?e.toLowerCase().replace("_","-"):e}function ut(e){var t=null;if(!rt[e]&&"undefined"!=typeof module&&module&&module.exports)try{t=nt._abbr,require("./locale/"+e),dt(t)}catch(e){}return rt[e]}function dt(e,t){var n;return e&&((n=r(t)?ht(e):lt(e,t))?nt=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),nt._abbr}function lt(e,t){if(null!==t){var n,s=it;if(t.abbr=e,null!=rt[e])T("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."),s=rt[e]._config;else if(null!=t.parentLocale)if(null!=rt[t.parentLocale])s=rt[t.parentLocale]._config;else{if(null==(n=ut(t.parentLocale)))return at[t.parentLocale]||(at[t.parentLocale]=[]),at[t.parentLocale].push({name:e,config:t}),null;s=n._config}return rt[e]=new P(x(s,t)),at[e]&&at[e].forEach(function(e){lt(e.name,e.config)}),dt(e),rt[e]}return delete rt[e],null}function ht(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return nt;if(!s(e)){if(t=ut(e))return t;e=[e]}return function(e){for(var t,n,s,i,r=0;r0;){if(s=ut(i.slice(0,t).join("-")))return s;if(n&&n.length>=t&&S(i,n,!0)>=t-1)break;t--}r++}return nt}(e)}function ct(e){var t,n=e._a;return n&&-2===c(e).overflow&&(t=n[ye]<0||n[ye]>11?ye:n[ge]<1||n[ge]>We(n[_e],n[ye])?ge:n[ve]<0||n[ve]>24||24===n[ve]&&(0!==n[pe]||0!==n[we]||0!==n[Me])?ve:n[pe]<0||n[pe]>59?pe:n[we]<0||n[we]>59?we:n[Me]<0||n[Me]>999?Me:-1,c(e)._overflowDayOfYear&&(t<_e||t>ge)&&(t=ge),c(e)._overflowWeeks&&-1===t&&(t=Se),c(e)._overflowWeekday&&-1===t&&(t=ke),c(e).overflow=t),e}function ft(e,t,n){return null!=e?e:null!=t?t:n}function mt(e){var t,s,i,r,a,o=[];if(!e._d){for(i=function(e){var t=new Date(n.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[ge]&&null==e._a[ye]&&function(e){var t,n,s,i,r,a,o,u;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)r=1,a=4,n=ft(t.GG,e._a[_e],Ae(xt(),1,4).year),s=ft(t.W,1),((i=ft(t.E,1))<1||i>7)&&(u=!0);else{r=e._locale._week.dow,a=e._locale._week.doy;var d=Ae(xt(),r,a);n=ft(t.gg,e._a[_e],d.year),s=ft(t.w,d.week),null!=t.d?((i=t.d)<0||i>6)&&(u=!0):null!=t.e?(i=t.e+r,(t.e<0||t.e>6)&&(u=!0)):i=r}s<1||s>je(n,r,a)?c(e)._overflowWeeks=!0:null!=u?c(e)._overflowWeekday=!0:(o=Ie(n,s,i,r,a),e._a[_e]=o.year,e._dayOfYear=o.dayOfYear)}(e),null!=e._dayOfYear&&(a=ft(e._a[_e],i[_e]),(e._dayOfYear>De(a)||0===e._dayOfYear)&&(c(e)._overflowDayOfYear=!0),s=Ge(a,0,e._dayOfYear),e._a[ye]=s.getUTCMonth(),e._a[ge]=s.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=o[t]=i[t];for(;t<7;t++)e._a[t]=o[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[ve]&&0===e._a[pe]&&0===e._a[we]&&0===e._a[Me]&&(e._nextDay=!0,e._a[ve]=0),e._d=(e._useUTC?Ge:function(e,t,n,s,i,r,a){var o;return e<100&&e>=0?(o=new Date(e+400,t,n,s,i,r,a),isFinite(o.getFullYear())&&o.setFullYear(e)):o=new Date(e,t,n,s,i,r,a),o}).apply(null,o),r=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[ve]=24),e._w&&void 0!==e._w.d&&e._w.d!==r&&(c(e).weekdayMismatch=!0)}}var _t=/^\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)?)?$/,yt=/^\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)?)?$/,gt=/Z|[+-]\d\d(?::?\d\d)?/,vt=[["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/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],pt=[["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/]],wt=/^\/?Date\((\-?\d+)/i;function Mt(e){var t,n,s,i,r,a,o=e._i,u=_t.exec(o)||yt.exec(o);if(u){for(c(e).iso=!0,t=0,n=vt.length;t0&&c(e).unusedInput.push(a),o=o.slice(o.indexOf(s)+s.length),d+=s.length),V[r]?(s?c(e).empty=!1:c(e).unusedTokens.push(r),me(r,s,e)):e._strict&&!s&&c(e).unusedTokens.push(r);c(e).charsLeftOver=u-d,o.length>0&&c(e).unusedInput.push(o),e._a[ve]<=12&&!0===c(e).bigHour&&e._a[ve]>0&&(c(e).bigHour=void 0),c(e).parsedDateParts=e._a.slice(0),c(e).meridiem=e._meridiem,e._a[ve]=function(e,t,n){var s;if(null==n)return t;return null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((s=e.isPM(n))&&t<12&&(t+=12),s||12!==t||(t=0),t):t}(e._locale,e._a[ve],e._meridiem),mt(e),ct(e)}else Yt(e);else Mt(e)}function Tt(e){var t=e._i,d=e._f;return e._locale=e._locale||ht(e._l),null===t||void 0===d&&""===t?m({nullInput:!0}):("string"==typeof t&&(e._i=t=e._locale.preparse(t)),p(t)?new v(ct(t)):(o(t)?e._d=t:s(d)?function(e){var t,n,s,i,r;if(0===e._f.length)return c(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:m()});function Ct(e,t){var n,i;if(1===t.length&&s(t[0])&&(t=t[0]),!t.length)return xt();for(n=t[0],i=1;i=0?new Date(e+400,t,n)-an:new Date(e,t,n).valueOf()}function dn(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-an:Date.UTC(e,t,n)}function ln(e,t){I(0,[e,e.length],0,t)}function hn(e,t,n,s,i){var r;return null==e?Ae(this,s,i).year:(t>(r=je(e,s,i))&&(t=r),function(e,t,n,s,i){var r=Ie(e,t,n,s,i),a=Ge(r.year,0,r.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}.call(this,e,t,n,s,i))}I(0,["gg",2],0,function(){return this.weekYear()%100}),I(0,["GG",2],0,function(){return this.isoWeekYear()%100}),ln("gggg","weekYear"),ln("ggggg","weekYear"),ln("GGGG","isoWeekYear"),ln("GGGGG","isoWeekYear"),C("weekYear","gg"),C("isoWeekYear","GG"),L("weekYear",1),L("isoWeekYear",1),ue("G",se),ue("g",se),ue("GG",J,Z),ue("gg",J,Z),ue("GGGG",ee,q),ue("gggg",ee,q),ue("GGGGG",te,B),ue("ggggg",te,B),fe(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,s){t[s.substr(0,2)]=M(e)}),fe(["gg","GG"],function(e,t,s,i){t[i]=n.parseTwoDigitYear(e)}),I("Q",0,"Qo","quarter"),C("quarter","Q"),L("quarter",7),ue("Q",z),ce("Q",function(e,t){t[ye]=3*(M(e)-1)}),I("D",["DD",2],"Do","date"),C("date","D"),L("date",9),ue("D",J),ue("DD",J,Z),ue("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),ce(["D","DD"],ge),ce("Do",function(e,t){t[ge]=M(e.match(J)[0])});var cn=be("Date",!0);I("DDD",["DDDD",3],"DDDo","dayOfYear"),C("dayOfYear","DDD"),L("dayOfYear",4),ue("DDD",K),ue("DDDD",$),ce(["DDD","DDDD"],function(e,t,n){n._dayOfYear=M(e)}),I("m",["mm",2],0,"minute"),C("minute","m"),L("minute",14),ue("m",J),ue("mm",J,Z),ce(["m","mm"],pe);var fn=be("Minutes",!1);I("s",["ss",2],0,"second"),C("second","s"),L("second",15),ue("s",J),ue("ss",J,Z),ce(["s","ss"],we);var mn,_n=be("Seconds",!1);for(I("S",0,0,function(){return~~(this.millisecond()/100)}),I(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),I(0,["SSS",3],0,"millisecond"),I(0,["SSSS",4],0,function(){return 10*this.millisecond()}),I(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),I(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),I(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),I(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),I(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),C("millisecond","ms"),L("millisecond",16),ue("S",K,z),ue("SS",K,Z),ue("SSS",K,$),mn="SSSS";mn.length<=9;mn+="S")ue(mn,ne);function yn(e,t){t[Me]=M(1e3*("0."+e))}for(mn="S";mn.length<=9;mn+="S")ce(mn,yn);var gn=be("Milliseconds",!1);I("z",0,0,"zoneAbbr"),I("zz",0,0,"zoneName");var vn=v.prototype;function pn(e){return e}vn.add=Jt,vn.calendar=function(e,t){var s=e||xt(),i=Gt(s,this).startOf("day"),r=n.calendarFormat(this,i)||"sameElse",a=t&&(b(t[r])?t[r].call(this,s):t[r]);return this.format(a||this.localeData().calendar(r,this,xt(s)))},vn.clone=function(){return new v(this)},vn.diff=function(e,t,n){var s,i,r;if(!this.isValid())return NaN;if(!(s=Gt(e,this)).isValid())return NaN;switch(i=6e4*(s.utcOffset()-this.utcOffset()),t=R(t)){case"year":r=Xt(this,s)/12;break;case"month":r=Xt(this,s);break;case"quarter":r=Xt(this,s)/3;break;case"second":r=(this-s)/1e3;break;case"minute":r=(this-s)/6e4;break;case"hour":r=(this-s)/36e5;break;case"day":r=(this-s-i)/864e5;break;case"week":r=(this-s-i)/6048e5;break;default:r=this-s}return n?r:w(r)},vn.endOf=function(e){var t;if(void 0===(e=R(e))||"millisecond"===e||!this.isValid())return this;var s=this._isUTC?dn:un;switch(e){case"year":t=s(this.year()+1,0,1)-1;break;case"quarter":t=s(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=s(this.year(),this.month()+1,1)-1;break;case"week":t=s(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=s(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=s(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=rn-on(t+(this._isUTC?0:this.utcOffset()*sn),rn)-1;break;case"minute":t=this._d.valueOf(),t+=sn-on(t,sn)-1;break;case"second":t=this._d.valueOf(),t+=nn-on(t,nn)-1}return this._d.setTime(t),n.updateOffset(this,!0),this},vn.format=function(e){e||(e=this.isUtc()?n.defaultFormatUtc:n.defaultFormat);var t=A(this,e);return this.localeData().postformat(t)},vn.from=function(e,t){return this.isValid()&&(p(e)&&e.isValid()||xt(e).isValid())?zt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},vn.fromNow=function(e){return this.from(xt(),e)},vn.to=function(e,t){return this.isValid()&&(p(e)&&e.isValid()||xt(e).isValid())?zt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},vn.toNow=function(e){return this.to(xt(),e)},vn.get=function(e){return b(this[e=R(e)])?this[e]():this},vn.invalidAt=function(){return c(this).overflow},vn.isAfter=function(e,t){var n=p(e)?e:xt(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=R(t)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()9999?A(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):b(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",A(n,"Z")):A(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},vn.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e="moment",t="";this.isLocal()||(e=0===this.utcOffset()?"moment.utc":"moment.parseZone",t="Z");var n="["+e+'("]',s=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",i=t+'[")]';return this.format(n+s+"-MM-DD[T]HH:mm:ss.SSS"+i)},vn.toJSON=function(){return this.isValid()?this.toISOString():null},vn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},vn.unix=function(){return Math.floor(this.valueOf()/1e3)},vn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},vn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},vn.year=Te,vn.isLeapYear=function(){return Ye(this.year())},vn.weekYear=function(e){return hn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},vn.isoWeekYear=function(e){return hn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},vn.quarter=vn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},vn.month=Le,vn.daysInMonth=function(){return We(this.year(),this.month())},vn.week=vn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")},vn.isoWeek=vn.isoWeeks=function(e){var t=Ae(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")},vn.weeksInYear=function(){var e=this.localeData()._week;return je(this.year(),e.dow,e.doy)},vn.isoWeeksInYear=function(){return je(this.year(),1,4)},vn.date=cn,vn.day=vn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return"string"!=typeof e?e:isNaN(e)?"number"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,"d")):t},vn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")},vn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},vn.dayOfYear=function(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")},vn.hour=vn.hours=st,vn.minute=vn.minutes=fn,vn.second=vn.seconds=_n,vn.millisecond=vn.milliseconds=gn,vn.utcOffset=function(e,t,s){var i,r=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if("string"==typeof e){if(null===(e=Nt(re,e)))return this}else Math.abs(e)<16&&!s&&(e*=60);return!this._isUTC&&t&&(i=Vt(this)),this._offset=e,this._isUTC=!0,null!=i&&this.add(i,"m"),r!==e&&(!t||this._changeInProgress?Bt(this,zt(e-r,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,n.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Vt(this)},vn.utc=function(e){return this.utcOffset(0,e)},vn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(Vt(this),"m")),this},vn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var e=Nt(ie,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},vn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?xt(e).utcOffset():0,(this.utcOffset()-e)%60==0)},vn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},vn.isLocal=function(){return!!this.isValid()&&!this._isUTC},vn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},vn.isUtc=It,vn.isUTC=It,vn.zoneAbbr=function(){return this._isUTC?"UTC":""},vn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},vn.dates=D("dates accessor is deprecated. Use date instead.",cn),vn.months=D("months accessor is deprecated. Use month instead",Le),vn.years=D("years accessor is deprecated. Use year instead",Te),vn.zone=D("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}),vn.isDSTShifted=D("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!r(this._isDSTShifted))return this._isDSTShifted;var e={};if(y(e,this),(e=Tt(e))._a){var t=e._isUTC?h(e._a):xt(e._a);this._isDSTShifted=this.isValid()&&S(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted});var wn=P.prototype;function Mn(e,t,n,s){var i=ht(),r=h().set(s,t);return i[n](r,e)}function Sn(e,t,n){if(a(e)&&(t=e,e=void 0),e=e||"",null!=t)return Mn(e,t,n,"month");var s,i=[];for(s=0;s<12;s++)i[s]=Mn(e,s,n,"month");return i}function kn(e,t,n,s){"boolean"==typeof e?(a(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,a(t)&&(n=t,t=void 0),t=t||"");var i,r=ht(),o=e?r._week.dow:0;if(null!=n)return Mn(t,(n+o)%7,s,"day");var u=[];for(i=0;i<7;i++)u[i]=Mn(t,(i+o)%7,s,"day");return u}wn.calendar=function(e,t,n){var s=this._calendar[e]||this._calendar.sameElse;return b(s)?s.call(t,n):s},wn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,function(e){return e.slice(1)}),this._longDateFormat[e])},wn.invalidDate=function(){return this._invalidDate},wn.ordinal=function(e){return this._ordinal.replace("%d",e)},wn.preparse=pn,wn.postformat=pn,wn.relativeTime=function(e,t,n,s){var i=this._relativeTime[n];return b(i)?i(e,t,n,s):i.replace(/%d/i,e)},wn.pastFuture=function(e,t){var n=this._relativeTime[e>0?"future":"past"];return b(n)?n(t):n.replace(/%s/i,t)},wn.set=function(e){var t,n;for(n in e)b(t=e[n])?this[n]=t:this["_"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},wn.months=function(e,t){return e?s(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Ce).test(t)?"format":"standalone"][e.month()]:s(this._months)?this._months:this._months.standalone},wn.monthsShort=function(e,t){return e?s(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Ce.test(t)?"format":"standalone"][e.month()]:s(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},wn.monthsParse=function(e,t,n){var s,i,r;if(this._monthsParseExact)return function(e,t,n){var s,i,r,a=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],s=0;s<12;++s)r=h([2e3,s]),this._shortMonthsParse[s]=this.monthsShort(r,"").toLocaleLowerCase(),this._longMonthsParse[s]=this.months(r,"").toLocaleLowerCase();return n?"MMM"===t?-1!==(i=Oe.call(this._shortMonthsParse,a))?i:null:-1!==(i=Oe.call(this._longMonthsParse,a))?i:null:"MMM"===t?-1!==(i=Oe.call(this._shortMonthsParse,a))?i:-1!==(i=Oe.call(this._longMonthsParse,a))?i:null:-1!==(i=Oe.call(this._longMonthsParse,a))?i:-1!==(i=Oe.call(this._shortMonthsParse,a))?i:null}.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),s=0;s<12;s++){if(i=h([2e3,s]),n&&!this._longMonthsParse[s]&&(this._longMonthsParse[s]=new RegExp("^"+this.months(i,"").replace(".","")+"$","i"),this._shortMonthsParse[s]=new RegExp("^"+this.monthsShort(i,"").replace(".","")+"$","i")),n||this._monthsParse[s]||(r="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[s]=new RegExp(r.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[s].test(e))return s;if(n&&"MMM"===t&&this._shortMonthsParse[s].test(e))return s;if(!n&&this._monthsParse[s].test(e))return s}},wn.monthsRegex=function(e){return this._monthsParseExact?(d(this,"_monthsRegex")||Ne.call(this),e?this._monthsStrictRegex:this._monthsRegex):(d(this,"_monthsRegex")||(this._monthsRegex=Ee),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},wn.monthsShortRegex=function(e){return this._monthsParseExact?(d(this,"_monthsRegex")||Ne.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,"_monthsShortRegex")||(this._monthsShortRegex=Fe),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},wn.week=function(e){return Ae(e,this._week.dow,this._week.doy).week},wn.firstDayOfYear=function(){return this._week.doy},wn.firstDayOfWeek=function(){return this._week.dow},wn.weekdays=function(e,t){var n=s(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?ze(n,this._week.dow):e?n[e.day()]:n},wn.weekdaysMin=function(e){return!0===e?ze(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},wn.weekdaysShort=function(e){return!0===e?ze(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},wn.weekdaysParse=function(e,t,n){var s,i,r;if(this._weekdaysParseExact)return function(e,t,n){var s,i,r,a=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],s=0;s<7;++s)r=h([2e3,1]).day(s),this._minWeekdaysParse[s]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[s]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[s]=this.weekdays(r,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(i=Oe.call(this._weekdaysParse,a))?i:null:"ddd"===t?-1!==(i=Oe.call(this._shortWeekdaysParse,a))?i:null:-1!==(i=Oe.call(this._minWeekdaysParse,a))?i:null:"dddd"===t?-1!==(i=Oe.call(this._weekdaysParse,a))?i:-1!==(i=Oe.call(this._shortWeekdaysParse,a))?i:-1!==(i=Oe.call(this._minWeekdaysParse,a))?i:null:"ddd"===t?-1!==(i=Oe.call(this._shortWeekdaysParse,a))?i:-1!==(i=Oe.call(this._weekdaysParse,a))?i:-1!==(i=Oe.call(this._minWeekdaysParse,a))?i:null:-1!==(i=Oe.call(this._minWeekdaysParse,a))?i:-1!==(i=Oe.call(this._weekdaysParse,a))?i:-1!==(i=Oe.call(this._shortWeekdaysParse,a))?i:null}.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),s=0;s<7;s++){if(i=h([2e3,1]).day(s),n&&!this._fullWeekdaysParse[s]&&(this._fullWeekdaysParse[s]=new RegExp("^"+this.weekdays(i,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[s]=new RegExp("^"+this.weekdaysShort(i,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[s]=new RegExp("^"+this.weekdaysMin(i,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[s]||(r="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[s]=new RegExp(r.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[s].test(e))return s;if(n&&"ddd"===t&&this._shortWeekdaysParse[s].test(e))return s;if(n&&"dd"===t&&this._minWeekdaysParse[s].test(e))return s;if(!n&&this._weekdaysParse[s].test(e))return s}},wn.weekdaysRegex=function(e){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||Xe.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,"_weekdaysRegex")||(this._weekdaysRegex=Be),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},wn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||Xe.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Je),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},wn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||Xe.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Qe),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},wn.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},wn.meridiem=function(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"},dt("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===M(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),n.lang=D("moment.lang is deprecated. Use moment.locale instead.",dt),n.langData=D("moment.langData is deprecated. Use moment.localeData instead.",ht);var Dn=Math.abs;function Yn(e,t,n,s){var i=zt(t,n);return e._milliseconds+=s*i._milliseconds,e._days+=s*i._days,e._months+=s*i._months,e._bubble()}function On(e){return e<0?Math.floor(e):Math.ceil(e)}function Tn(e){return 4800*e/146097}function bn(e){return 146097*e/4800}function xn(e){return function(){return this.as(e)}}var Pn=xn("ms"),Wn=xn("s"),Cn=xn("m"),Rn=xn("h"),Hn=xn("d"),Un=xn("w"),Ln=xn("M"),Fn=xn("Q"),En=xn("y");function Nn(e){return function(){return this.isValid()?this._data[e]:NaN}}var Gn=Nn("milliseconds"),Vn=Nn("seconds"),In=Nn("minutes"),An=Nn("hours"),jn=Nn("days"),zn=Nn("months"),Zn=Nn("years");var $n=Math.round,qn={ss:44,s:45,m:45,h:22,d:26,M:11};var Bn=Math.abs;function Jn(e){return(e>0)-(e<0)||+e}function Qn(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Bn(this._milliseconds)/1e3,s=Bn(this._days),i=Bn(this._months);e=w(n/60),t=w(e/60),n%=60,e%=60;var r=w(i/12),a=i%=12,o=s,u=t,d=e,l=n?n.toFixed(3).replace(/\.?0+$/,""):"",h=this.asSeconds();if(!h)return"P0D";var c=h<0?"-":"",f=Jn(this._months)!==Jn(h)?"-":"",m=Jn(this._days)!==Jn(h)?"-":"",_=Jn(this._milliseconds)!==Jn(h)?"-":"";return c+"P"+(r?f+r+"Y":"")+(a?f+a+"M":"")+(o?m+o+"D":"")+(u||d||l?"T":"")+(u?_+u+"H":"")+(d?_+d+"M":"")+(l?_+l+"S":"")}var Xn=Ht.prototype;return Xn.isValid=function(){return this._isValid},Xn.abs=function(){var e=this._data;return this._milliseconds=Dn(this._milliseconds),this._days=Dn(this._days),this._months=Dn(this._months),e.milliseconds=Dn(e.milliseconds),e.seconds=Dn(e.seconds),e.minutes=Dn(e.minutes),e.hours=Dn(e.hours),e.months=Dn(e.months),e.years=Dn(e.years),this},Xn.add=function(e,t){return Yn(this,e,t,1)},Xn.subtract=function(e,t){return Yn(this,e,t,-1)},Xn.as=function(e){if(!this.isValid())return NaN;var t,n,s=this._milliseconds;if("month"===(e=R(e))||"quarter"===e||"year"===e)switch(t=this._days+s/864e5,n=this._months+Tn(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(bn(this._months)),e){case"week":return t/7+s/6048e5;case"day":return t+s/864e5;case"hour":return 24*t+s/36e5;case"minute":return 1440*t+s/6e4;case"second":return 86400*t+s/1e3;case"millisecond":return Math.floor(864e5*t)+s;default:throw new Error("Unknown unit "+e)}},Xn.asMilliseconds=Pn,Xn.asSeconds=Wn,Xn.asMinutes=Cn,Xn.asHours=Rn,Xn.asDays=Hn,Xn.asWeeks=Un,Xn.asMonths=Ln,Xn.asQuarters=Fn,Xn.asYears=En,Xn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*M(this._months/12):NaN},Xn._bubble=function(){var e,t,n,s,i,r=this._milliseconds,a=this._days,o=this._months,u=this._data;return r>=0&&a>=0&&o>=0||r<=0&&a<=0&&o<=0||(r+=864e5*On(bn(o)+a),a=0,o=0),u.milliseconds=r%1e3,e=w(r/1e3),u.seconds=e%60,t=w(e/60),u.minutes=t%60,n=w(t/60),u.hours=n%24,a+=w(n/24),o+=i=w(Tn(a)),a-=On(bn(i)),s=w(o/12),o%=12,u.days=a,u.months=o,u.years=s,this},Xn.clone=function(){return zt(this)},Xn.get=function(e){return e=R(e),this.isValid()?this[e+"s"]():NaN},Xn.milliseconds=Gn,Xn.seconds=Vn,Xn.minutes=In,Xn.hours=An,Xn.days=jn,Xn.weeks=function(){return w(this.days()/7)},Xn.months=zn,Xn.years=Zn,Xn.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var s=zt(e).abs(),i=$n(s.as("s")),r=$n(s.as("m")),a=$n(s.as("h")),o=$n(s.as("d")),u=$n(s.as("M")),d=$n(s.as("y")),l=i<=qn.ss&&["s",i]||i0,l[4]=n,function(e,t,n,s,i){return i.relativeTime(t||1,!!n,e,s)}.apply(null,l)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},Xn.toISOString=Qn,Xn.toString=Qn,Xn.toJSON=Qn,Xn.locale=Kt,Xn.localeData=tn,Xn.toIsoString=D("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Qn),Xn.lang=en,I("X",0,0,"unix"),I("x",0,0,"valueOf"),ue("x",se),ue("X",/[+-]?\d+(\.\d{1,3})?/),ce("X",function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))}),ce("x",function(e,t,n){n._d=new Date(M(e))}),n.version="2.24.0",e=xt,n.fn=vn,n.min=function(){return Ct("isBefore",[].slice.call(arguments,0))},n.max=function(){return Ct("isAfter",[].slice.call(arguments,0))},n.now=function(){return Date.now?Date.now():+new Date},n.utc=h,n.unix=function(e){return xt(1e3*e)},n.months=function(e,t){return Sn(e,t,"months")},n.isDate=o,n.locale=dt,n.invalid=m,n.duration=zt,n.isMoment=p,n.weekdays=function(e,t,n){return kn(e,t,n,"weekdays")},n.parseZone=function(){return xt.apply(null,arguments).parseZone()},n.localeData=ht,n.isDuration=Ut,n.monthsShort=function(e,t){return Sn(e,t,"monthsShort")},n.weekdaysMin=function(e,t,n){return kn(e,t,n,"weekdaysMin")},n.defineLocale=lt,n.updateLocale=function(e,t){if(null!=t){var n,s,i=it;null!=(s=ut(e))&&(i=s._config),(n=new P(t=x(i,t))).parentLocale=rt[e],rt[e]=n,dt(e)}else null!=rt[e]&&(null!=rt[e].parentLocale?rt[e]=rt[e].parentLocale:null!=rt[e]&&delete rt[e]);return rt[e]},n.locales=function(){return Y(rt)},n.weekdaysShort=function(e,t,n){return kn(e,t,n,"weekdaysShort")},n.normalizeUnits=R,n.relativeTimeRounding=function(e){return void 0===e?$n:"function"==typeof e&&($n=e,!0)},n.relativeTimeThreshold=function(e,t){return void 0!==qn[e]&&(void 0===t?qn[e]:(qn[e]=t,"s"===e&&(qn.ss=t-1),!0))},n.calendarFormat=function(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},n.prototype=vn,n.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},n});let WxData={API_BASE:"https://api.weather.com/v1",API_KEY:"089ed4e892fb0dfdf34eb81e6f2521aa",_data:{},observations:function(e){return this._data[e]&&this._data[e].observations?new Promise(t=>t(this._data[e].observations)):this._loadCurrentConditions(e)},_apiRequest:function(e,t){let n=this;return new Promise(function(t,s){let i=new XMLHttpRequest;i.onload=function(){this.status>=200&&this.status<300?t(i.response):s({status:this.status,statusText:i.statusText})},i.onerror=function(){s({status:this.status,statusText:i.statusText})},i.open("GET",n.API_BASE+e+"?apiKey="+n.API_KEY+"&language=en-US&units=e"),i.send()})},_loadCurrentConditions:function(e){let t=this;return this._apiRequest("/location/"+e+"/observations.json").then(n=>{try{let s=JSON.parse(n);return t.saveRecord(e,"observations",s.observation)}catch(e){return console.error("Error parsing current conditions"),null}})},saveRecord:function(e,t,n){return"object"!=typeof this._data&&(this._data={}),this._data[e]||(this._data[e]={}),this._data[e][t]=n,console.log("Saved "+t+" for "+e),this.saveCache(),n},init:function(){this.loadCache()},loadCache:function(){try{localStorage.wx_data&&(this._data=JSON.parse(localStorage.wx_data),console.log("Data retrieved from cache"))}catch(e){console.error("Error parsing data from localStorage")}},saveCache:function(){localStorage.wx_data=JSON.stringify(this._data),console.log("Data saved in cache")}};WxData.init(),WxData.observations("USNY0483:1:US").then(e=>{document.getElementById("city").innerText=e.obs_name,document.getElementById("current-temp").innerText=e.temp,document.getElementById("current-info").innerText=e.wx_phrase,document.getElementById("conditions-icon").src="/images/watt-icons/icon"+e.wx_icon+".png"});let image={width:1440,height:1080};function updateScale(){let e,t=window.innerWidth,n=window.innerHeight,s=t/image.width,i=n/image.height;e=s]h:m:ssa")} \ No newline at end of file